/**
 * Params
 */
/**
 * rgb mixin
 */
/**
 * Params
 */
:root {
  --mobile-container-width: 90%;
  --pp-max-width-out-of-container: 1900px;
  --pp-theme-ff: "maverixregular";
  --pp-theme-ff2: "Arsenal";
  --pp-theme-color: #B18F62;
  --pp-theme-color2: #181818;
  --pp-theme-color3: #787878;
  --pp-theme-color4: #212121;
  --pp-theme-color5: #8c8c8c;
  --pp-theme-color6: #EEDFC8;
  --pp-theme-color-transparent: transparent;
  --pp-theme-color-white: #FFFFFF;
  --pp-theme-color-black: #000000;
  --pp-theme-color-bg: #0F0F0F;
  --pp-theme-color-text: #FFFFFF;
  --pp-theme-br0: 3px;
  --pp-theme-br1: 8px;
  --pp-theme-br2: 10px;
  --pp-theme-br3: 15px;
  --pp-theme-br4: 20px;
  --pp-theme-br5: 25px;
  --pp-theme-br6: 30px;
  --pp-theme-placeholder-color: #bbb4b4;
  --pp-theme-placeholder-color2: #000000;
  --pp-theme-bg: #10101B;
  --pp-theme-bg-rgb-code: 16, 16, 27;
  --pp-theme-bg-rgb: rgb(var(--pp-theme-bg-rgb-code));
  --nectar-page-background-color: var(--pp-theme-bg);
  --row-bg-color: var(--pp-theme-bg) !important;
  --pp-theme-text-color: #FFFFFF;
  --pp-btn-gold-gradient: linear-gradient(90deg, #B18F62 0%, #EED7AE 100%);
  --pp-btn-gold-gradient2: linear-gradient(90deg, #B18F62 -5%, #EED7AE 31%);
  --pp-btn-border-gold-gradient: linear-gradient(180deg, #B18F62 0%, #EED7AE 100%);
  --pp-btn-border-color: #B18F62;
}

:root body.admin-bar {
  --pp-admin-bar-height: 32px;
}

@media (max-width: 1199px) {
  :root {
    --pp-var-m-c-w: 88vw;
    --pp-header-height: 109px;
  }
}
/**
 * Globals
 */
/**
 * Params
 */
.text-lg {
  font-size: 24px;
  line-height: 28px;
}

.text-base {
  font-size: 18px;
  line-height: 26px;
}

.text-md {
  font-size: 16px;
  line-height: 22px;
}

.text-sm {
  font-size: 14px;
  line-height: 20px;
}

.text-xs {
  font-size: 12px;
  line-height: 16px;
}

.d-flex {
  display: flex !important;
}

.align-center {
  align-items: center !important;
}

.text-center {
  text-align: center !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.pb-none, .pb-0 {
  padding-bottom: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.h-100-inner > * {
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Background text color
 */
.text-theme-gradient {
  background-image: var(--pp-btn-gold-gradient);
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease, background-image 0.3s ease;
}

/**
 * Shadow
 */
.pp-shadow {
  box-shadow: -18.5px 18.5px 40px 0px rgba(0, 0, 0, 0.25);
}

.pp-shadow-inner > * {
  box-shadow: -18.5px 18.5px 40px 0px rgba(0, 0, 0, 0.25);
}

/**
 * Gradient
 */
.pp-b-gradient {
  position: relative;
  border-radius: 0;
  z-index: 0;
}
.pp-b-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 0;
  background: linear-gradient(180deg, #B18F62 0%, #EED7AE 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pp-b-gradient-inner > * {
  position: relative;
  border-radius: 0;
  z-index: 0;
}
.pp-b-gradient-inner > *::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 0;
  background: linear-gradient(180deg, #B18F62 0%, #EED7AE 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pp-text-gradient, .pp-text-gradient > * {
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}

/**
 * Border radius
 */
.pp-br {
  border-radius: var(--pp-theme-br1);
}
.pp-br::before {
  border-radius: var(--pp-theme-br1);
}

.pp-br0 {
  border-radius: var(--pp-theme-br0);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br0::before {
  border-radius: var(--pp-theme-br0);
}

.pp-br-inner.br0 > * {
  border-radius: var(--pp-theme-br0);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br0 > *::before {
  border-radius: var(--pp-theme-br0);
}

.pp-br1 {
  border-radius: var(--pp-theme-br1);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br1::before {
  border-radius: var(--pp-theme-br1);
}

.pp-br-inner.br1 > * {
  border-radius: var(--pp-theme-br1);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br1 > *::before {
  border-radius: var(--pp-theme-br1);
}

.pp-br2 {
  border-radius: var(--pp-theme-br2);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br2::before {
  border-radius: var(--pp-theme-br2);
}

.pp-br-inner.br2 > * {
  border-radius: var(--pp-theme-br2);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br2 > *::before {
  border-radius: var(--pp-theme-br2);
}

.pp-br3 {
  border-radius: var(--pp-theme-br3);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br3::before {
  border-radius: var(--pp-theme-br3);
}

.pp-br-inner.br3 > * {
  border-radius: var(--pp-theme-br3);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br3 > *::before {
  border-radius: var(--pp-theme-br3);
}

.pp-br4 {
  border-radius: var(--pp-theme-br4);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br4::before {
  border-radius: var(--pp-theme-br4);
}

.pp-br-inner.br4 > * {
  border-radius: var(--pp-theme-br4);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br4 > *::before {
  border-radius: var(--pp-theme-br4);
}

.pp-br5 {
  border-radius: var(--pp-theme-br5);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br5::before {
  border-radius: var(--pp-theme-br5);
}

.pp-br-inner.br5 > * {
  border-radius: var(--pp-theme-br5);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br5 > *::before {
  border-radius: var(--pp-theme-br5);
}

.pp-br6 {
  border-radius: var(--pp-theme-br6);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br6::before {
  border-radius: var(--pp-theme-br6);
}

.pp-br-inner.br6 > * {
  border-radius: var(--pp-theme-br6);
  overflow: hidden;
  transform: translateZ(0);
}
.pp-br-inner.br6 > *::before {
  border-radius: var(--pp-theme-br6);
}

/**
 * Border box
 */
.pp-border {
  border: 2px solid rgba(255, 255, 255, 0.16) !important;
}

.pp-border-inner > * {
  border: 2px solid rgba(255, 255, 255, 0.16) !important;
}

/**
 * Blur
 */
.pp-blur {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(16, 16, 27, 0.1);
}

.pp-blur-inner > * {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(16, 16, 27, 0.1);
}

/**
 * Nectar backgrounds
 */
#footer-outer, #nectar_fullscreen_rows > #footer-outer.wpb_row .full-page-inner-wrap {
  background-color: var(--pp-theme-bg) !important;
}

/**
 * Cta button
 */
.nectar-cta.pp-custom-cta .link_wrap a {
  font-size: 18px;
  letter-spacing: 5px;
}
.nectar-cta.pp-custom-cta .link_wrap a .text, .nectar-cta.pp-custom-cta .link_wrap a .text > * {
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}
/**
 * Buttons
 */
body .nectar-button {
  padding: 14px 28px;
  border: 1px solid #B18F62;
  border-radius: 60px;
  background: transparent;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body .nectar-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--pp-btn-gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
body .nectar-button span {
  position: relative;
  display: inline-block;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease, background-image 0.3s ease;
}
body .nectar-button:hover::before {
  opacity: 1;
}
body .nectar-button:hover {
  background-image: none;
  -webkit-text-fill-color: var(--pp-theme-color-white);
  color: var(--pp-theme-color-white);
}
body .nectar-button:hover span {
  background-image: none;
  -webkit-text-fill-color: var(--pp-theme-color-white);
  color: var(--pp-theme-color-white);
}

body .pp-btn a, body .pp-btn.nectar-button {
  padding: 7px 20px !important;
  min-width: 165px;
  text-transform: capitalize;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  line-height: 29px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  border-radius: var(--pp-theme-br0);
  border: 1px solid var(--pp-btn-border-color);
  z-index: 0;
  color: #B18F62;
  transition: color 0.3s ease, border-color 0.3s ease, -webkit-text-fill-color 0.3s ease;
}
body .pp-btn a::before, body .pp-btn.nectar-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: var(--pp-btn-gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}
body .pp-btn a span, body .pp-btn.nectar-button span {
  position: relative;
  display: inline-block;
  z-index: 2;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease, background-image 0.3s ease;
}
body .pp-btn a:hover::before, body .pp-btn.nectar-button:hover::before {
  opacity: 1;
}
body .pp-btn a:hover, body .pp-btn.nectar-button:hover {
  -webkit-text-fill-color: var(--pp-theme-color-white);
  color: var(--pp-theme-color-white);
}
body .pp-btn a:hover span, body .pp-btn.nectar-button:hover span {
  background-image: none;
  -webkit-text-fill-color: var(--pp-theme-color-white);
  color: var(--pp-theme-color-white);
}

.nectar-button.large {
  text-transform: none !important;
}

/**
 * Header
 */
/**
 * Params
 */
/**
 * Globals
 */
#header-outer {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}

.nectar-header-text-content > div {
  display: flex;
}
.nectar-header-text-content .nectar-button {
  margin-bottom: 0 !important;
}

/**
 * menu hamburger
 */
body.klasjet-theme #header-outer #top .slide-out-widget-area-toggle a .lines-button:after, body.klasjet-theme #header-outer #top .slide-out-widget-area-toggle a .lines:before, body.klasjet-theme #header-outer #top .slide-out-widget-area-toggle a .lines:after,
#header-outer #top .slide-out-widget-area-toggle a .lines:after, #header-outer #top .slide-out-widget-area-toggle a .lines:before, #header-outer #top .slide-out-widget-area-toggle a .lines-button:after, body.material.mobile #header-outer.transparent:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line, body.material.mobile #header-outer:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line, #search-outer .close-wrap .close-line, #header-outer:not(.transparent) #top .slide-out-widget-area-toggle .close-line, .nectar-slide-in-cart.style_slide_in_click .close-cart .close-line, .nectar-ajax-search-results h4 a:before {
  background-image: var(--pp-btn-gold-gradient);
}

#header-outer #top .slide-out-widget-area-toggle a .lines:before {
  width: 80%;
}

.slide-out-widget-area-toggle > div {
  display: flex !important;
  align-items: center;
}
.slide-out-widget-area-toggle > div:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  height: 18px;
  margin-right: 20px;
  margin-left: -15px;
  background: var(--pp-btn-gold-gradient);
}

@media (max-width: 999px) {
  .book-your-flight-mobile-btn {
    margin-right: 15px;
  }
}
body.klasjet-theme #slide-out-widget-area.fullscreen-split .left-side .menu > .menu-item .sub-menu a {
  font-size: 14px !important;
}
body.klasjet-theme #slide-out-widget-area.fullscreen-split .left-side .menu > .menu-item.menu-item-toggle-only {
  cursor: pointer;
}
body.klasjet-theme #slide-out-widget-area.fullscreen-split .left-side .menu > .menu-item.menu-item-toggle-only > a,
body.klasjet-theme #slide-out-widget-area.fullscreen-split .left-side .menu > .menu-item.menu-item-toggle-only > span:not(.ocm-dropdown-arrow) {
  cursor: pointer;
}

body.klasjet-theme #slide-out-widget-area.fullscreen-split .left-side .menu .menu-item.current-menu-item a {
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#slide-out-widget-area-bg.fullscreen-split {
  background: linear-gradient(102.57deg, #100F15 -4.77%, #121331 111.96%);
}
#slide-out-widget-area-bg.fullscreen-split:before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-image: url(../icons/bg/nav-menu.png);
  background-image: url(../icons/bg/nav-menu-bg.png);
  background-image: url(../icons/bg/nav-menu-bg.jpg);
  background-image: url(../icons/bg/nav-menu-bg-d.jpg);
}
@media (min-width: 1000px) {
  #slide-out-widget-area-bg.fullscreen-split:after {
    background: linear-gradient(to bottom, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to top, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to right, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to left, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    display: block;
    /*display: none;*/
  }
}

#slide-out-widget-area.fullscreen-split.open .left-side .menu .menu-item span:not(.ocm-dropdown-arrow) {
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--pp-theme-ff2) !important;
  font-size: 18px !important;
}
#slide-out-widget-area.fullscreen-split.open .left-side .menu .menu-item span.ocm-dropdown-arrow {
  display: flex;
  margin-top: 8px;
}
#slide-out-widget-area.fullscreen-split.open .left-side .menu .menu-item span.ocm-dropdown-arrow i:before {
  color: var(--pp-theme-color-white);
}
@media (min-width: 1000px) and (max-width: 1150px) {
  #slide-out-widget-area.fullscreen-split.open .left-side .menu .menu-item span.ocm-dropdown-arrow {
    margin-top: 15px;
  }
}
#slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: -18.62px 18.62px 39.57px 0px rgba(0, 0, 0, 0.2509803922);
  border: 2px solid rgba(255, 255, 255, 0.0705882353);
  border-radius: var(--pp-theme-br1);
  overflow: hidden;
  transform: translateZ(0);
  padding: max(7%, 40px) 12%;
}
#slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(24, 24, 24, 0.28);
  backdrop-filter: blur(40px);
  box-shadow: -18.62px 18.62px 39.57px 0px rgba(0, 0, 0, 0.2509803922);
  transform: translateZ(0);
  will-change: backdrop-filter, opacity;
  opacity: 1;
}
#slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > * {
  position: relative;
  z-index: 1;
  padding-left: max(2%, 10px);
  padding-right: max(2%, 10px);
}
@media (max-width: 999px) {
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner {
    padding: max(7%, 40px) max(4%, 10px);
    display: flex;
    flex-wrap: wrap;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *.widget {
    width: 50% !important;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *.widget .textwidget {
    margin-top: 20px;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *:nth-child(5), #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *:nth-child(6) {
    width: 100% !important;
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 0 !important;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *:nth-child(5) {
    order: 6;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *:nth-child(6) {
    order: 5;
    margin-top: 15px !important;
  }
  #slide-out-widget-area.fullscreen-split.open .right-side .right-side-inner > *.bottom-meta-wrap {
    order: 999;
    width: 100%;
    margin-top: 10px;
  }
}
#slide-out-widget-area .widget h4 {
  text-transform: none !important;
}

body.klasjet-theme #slide-out-widget-area.fullscreen-split .right-side .right-side-inner .widget h4 {
  font-family: var(--pp-theme-ff2);
  font-size: 20px;
  line-height: 20px;
  text-transform: none;
  font-weight: 400;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#slide-out-widget-area .secondary-header-text, body #slide-out-widget-area .inner-wrap .inner .nectar-header-text-content {
  background-color: transparent !important;
}

@media (max-width: 767px) {
  body.klasjet-theme.home .custom-logo-container .custom-logo {
    top: 0;
    top: 8px;
  }
}
.off-canvas-menu-container {
  max-width: 550px;
}

/**
 * Header background overwrite
 */
body #header-outer, body[data-header-color=dark] #header-outer {
  background-color: rgb(var(--pp-theme-bg-rgb)/0.5);
  background-color: rgb(var(--pp-theme-bg-rgb)/0.5);
  background-color: rgba(16, 16, 27, 0.5);
}

@media (min-width: 1000px) {
  .bottom-meta-wrap .off-canvas-social-links {
    margin-left: unset !important;
    margin-right: unset !important;
  }
}
@media (max-width: 999px) {
  body.klasjet-theme #slide-out-widget-area.fullscreen-split .right-side .right-side-inner .off-canvas-social-links {
    justify-content: center;
  }
  body.klasjet-theme #slide-out-widget-area.fullscreen-split .right-side .right-side-inner .off-canvas-social-links li {
    margin-left: 5px;
    margin-right: 5px;
    flex: inherit;
  }
}
/**
 * Footer
 */
/**
 * Params
 */
/**
 * Globals
 */
.material #footer-outer .row,
#footer-outer .row {
  padding: 30px 0;
}
@media (min-width: 1000px) {
  .material #footer-outer,
  #footer-outer {
    padding-top: 30px;
  }
}
.material #footer-outer:before,
#footer-outer:before {
  content: "";
  display: inline-block;
  height: 100px;
  width: 100%;
  position: absolute;
  top: -100px;
  left: 0;
  background: linear-gradient(0deg, var(--pp-theme-bg) 20%, rgba(16, 16, 26, 0) 85%);
  display: none;
}
.material #footer-outer #footer-widgets,
#footer-outer #footer-widgets {
  border: none !important;
}
.material #footer-outer #footer-widgets .container > .row,
#footer-outer #footer-widgets .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.material #footer-outer #footer-widgets .widget,
#footer-outer #footer-widgets .widget {
  margin-bottom: 10px;
}
.material #footer-outer #footer-widgets .widget h4,
#footer-outer #footer-widgets .widget h4 {
  text-transform: none !important;
  font-size: 14px;
  padding-bottom: 0;
  margin-bottom: 5px;
}
.material #footer-outer #footer-widgets .widget .textwidget,
#footer-outer #footer-widgets .widget .textwidget {
  font-size: 14px;
  line-height: 30px;
}
.material #footer-outer #footer-widgets .widget .textwidget, .material #footer-outer #footer-widgets .widget .textwidget p, .material #footer-outer #footer-widgets .widget .textwidget li, .material #footer-outer #footer-widgets .widget .textwidget a,
#footer-outer #footer-widgets .widget .textwidget,
#footer-outer #footer-widgets .widget .textwidget p,
#footer-outer #footer-widgets .widget .textwidget li,
#footer-outer #footer-widgets .widget .textwidget a {
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.material #footer-outer #footer-widgets .widget .textwidget ul,
#footer-outer #footer-widgets .widget .textwidget ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.material #footer-outer #footer-widgets .widget .textwidget ul li,
#footer-outer #footer-widgets .widget .textwidget ul li {
  position: relative;
  padding-left: 15px !important;
}
.material #footer-outer #footer-widgets .widget .textwidget ul li::before,
#footer-outer #footer-widgets .widget .textwidget ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body #footer-outer #copyright {
  background-color: var(--pp-theme-bg);
}
body #footer-outer #copyright p {
  font-size: 14px;
  line-height: 30px;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body #footer-outer #copyright, body #footer-outer #copyright[data-layout=centered] {
  padding: 0 0 30px;
}

/**
 * Forms
 */
/**
 * Params
 */
/**
 * Global
 */
:root {
  --pp-field-label-font-color: #000000;
  --pp-field-font-color: #000000;
  --pp-field-font-size: 14px;
  --pp-field-font-line-height: 24px;
  --pp-field-font-weight: 500;
  --pp-field-border-width: 1px;
  --pp-field-border-style: solid;
  --pp-field-border-color: #000000;
  --pp-field-border-radius: 10px;
  --pp-field-padding: 11px;
  --pp-field-padding-l: 20px;
  --pp-field-padding-r: var(--pp-field-padding-l);
  --pp-field-padding-wb: calc(var(--pp-field-padding) + var(--pp-field-border-width));
  --pp-field-padding-l-wb: calc(var(--pp-field-padding-l) + var(--pp-field-border-width));
  --pp-field-padding-r-wb: calc(var(--pp-field-padding-r) + var(--pp-field-border-width));
  --pp-field-background-color: transparent;
  --pp-field-select-arrow-w: 14px;
  --pp-form-ro-border-width: 1px;
  --pp-form-ro-default-border-color: var(--pp-field-border-color);
  --pp-form-ro-default-bg-color: var(--pp-field-background-color);
  --pp-form-ro-invalid-border-color: #ffb900;
  --pp-form-ro-invalid-bg-color: #fff9e8;
  --pp-form-ro-failed-border-color: #dc3232;
  --pp-form-ro-failed-bg-color: #fdf5f5;
  --pp-form-ro-sent-border-color: #46b450;
  --pp-form-ro-sent-bg-color: #f1fef2;
  --pp-form-field-invalid-border-color: #dc3232;
  --pp-field-shadow: 0px 4px 14px 0px #33221C40;
  --pp-field-placeholder-color: #33221C80;
  --pp-field-checkbox-color: var(--pp-field-font-color);
  --pp-field-checkbox-bg-color: transparent;
}

textarea,
select,
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date] {
  outline: none;
  background-color: var(--pp-field-background-color) !important;
  padding: var(--pp-field-padding);
  padding-left: var(--pp-field-padding-l);
  padding-right: var(--pp-field-padding-r);
  color: var(--pp-field-font-color) !important;
  font-weight: var(--pp-field-font-weight);
  font-size: var(--pp-field-font-size);
  line-height: var(--pp-field-font-line-height);
  border-width: var(--pp-field-border-width);
  border-style: var(--pp-field-border-style);
  border-color: var(--pp-field-border-color);
  border-radius: var(--pp-field-border-radius);
}
select {
  /* Add custom arrow */
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="16" height="8" viewBox="0 0 16 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.5L8 7.5L15 0.5" stroke="%2333221C" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right var(--pp-field-padding-r) center;
  background-size: var(--pp-field-select-arrow-w) 7px; /* Adjust size */
}

select {
  /* Remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.dropdown-parent {
  position: relative;
}
.dropdown-parent .select2:after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--pp-field-padding-r-wb);
  transform: translateY(-50%) rotate(0deg); /* Default */
  transition: transform 0.3s ease-in-out;
  transform-origin: 50% 50%;
  background-position: inherit;
  pointer-events: none;
  font-family: "icomoon";
  content: "\e904";
  font-size: 7px;
}
.dropdown-parent select {
  background-image: none;
}

.dropdown-parent select:focus + .dropdown-parent .select2::after,
.dropdown-parent:has(select:focus) .select2::after {
  transform: translateY(-50%) rotateX(180deg); /* Rotate when focused */
}

.wpcf7-select.wpcf7-not-valid + .select2-container .select2-selection {
  border-color: var(--pp-form-field-invalid-border-color) !important;
  box-shadow: var(--pp-field-shadow);
}

textarea::placeholder {
  color: var(--pp-field-placeholder-color);
  font-size: 12px;
  line-height: 20px;
  opacity: 1; /* Ensures visibility in Firefox */
}

/* Older versions of Microsoft Edge and IE */
textarea:-ms-input-placeholder {
  color: var(--pp-field-placeholder-color);
  font-size: 12px;
  line-height: 20px;
}

/* Older versions of Safari */
textarea::-webkit-input-placeholder {
  color: var(--pp-field-placeholder-color);
  font-size: 12px;
  line-height: 20px;
}

/* Older versions of Firefox */
textarea:-moz-placeholder {
  color: var(--pp-field-placeholder-color);
  font-size: 12px;
  line-height: 20px;
}

/* Older versions of Opera */
textarea::-moz-placeholder {
  color: var(--pp-field-placeholder-color);
  font-size: 12px;
  line-height: 20px;
}

:root {
  --form-control-color: var(--cs-color-accent);
  --form-control-disabled: #959495;
  --cs-color-checkbox-mark: var(--pp-field-checkbox-color);
}

body .wpcf7-form-control-wrap {
  display: inline-block !important;
  width: 100% !important;
}

/**
 * Acceptance field
 */
.wpcf7-acceptance, .wpcf7-acceptance a {
  color: var(--form-control-disabled) !important;
  color: inherit !important;
}
.wpcf7-acceptance a {
  text-decoration: underline;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: start;
  justify-content: flex-start;
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--pp-field-checkbox-bg-color);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  color: var(--pp-field-checkbox-color);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 3px;
  display: grid;
  place-content: center;
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: var(--cs-color-checkbox-mark);
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:checked::before {
  transform: scale(1);
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:focus {
  border-color: currentColor !important;
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  margin-left: 20px;
  color: var(--pp-field-label-font-color);
  font-size: 14px;
  line-height: 18px;
  margin-top: 5px;
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
  color: var(--pp-field-label-font-color);
}

.text-color-scheme-light .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  color: #FFFFFF;
}

.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item label input[type=checkbox][aria-invalid=true] {
  border-color: var(--pp-form-field-invalid-border-color) !important;
  box-shadow: var(--pp-field-shadow);
}

.text-color-scheme-light .wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item label input[type=checkbox][aria-invalid=true] {
  border-color: #FFFFFF !important;
}

/**
 * WPCF7 Validations
 */
.wpcf7-form .wpcf7-not-valid-tip {
  background-color: transparent;
  color: var(--pp-field-placeholder-color) !important;
  box-shadow: none;
  font-size: 12px;
  line-height: 20px;
  font-style: normal;
}
.wpcf7-form .wpcf7-not-valid-tip:before {
  content: "*";
}

.wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-width: var(--pp-field-border-width) !important;
  border-style: var(--pp-field-border-style) !important;
  border-radius: var(--pp-field-border-radius) !important;
  background-color: var(--pp-form-ro-default-border-color);
  border-color: var(--pp-form-ro-default-bg-color);
  padding: var(--pp-field-padding) !important;
  padding-left: var(--pp-field-padding-l) !important;
  padding-right: var(--pp-field-padding-r) !important;
  margin: 0 !important;
  font-size: var(--pp-field-font-size);
  line-height: var(--pp-field-font-line-height);
  box-shadow: var(--pp-field-shadow);
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: var(--pp-form-ro-sent-bg-color);
  border-color: var(--pp-form-ro-sent-border-color);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background-color: var(--pp-form-ro-invalid-bg-color);
  border-color: var(--pp-form-ro-invalid-border-color);
}

.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background-color: var(--pp-form-ro-failed-bg-color);
  border-color: var(--pp-form-ro-failed-border-color);
}

input.wpcf7-not-valid, select.wpcf7-not-valid, textarea.wpcf7-not-valid {
  border-color: var(--pp-form-field-invalid-border-color) !important;
  box-shadow: var(--pp-field-shadow);
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
}

.pp-cf-label {
  --pp-cf-label-margin-top: 20px;
  position: relative;
  display: block;
  margin-top: var(--pp-cf-label-margin-top);
  margin-bottom: 10px;
}
.pp-cf-label .label-text {
  position: absolute;
  --top-part: calc(var(--pp-field-padding) / 2);
  top: calc(var(--top-part) + var(--pp-field-border-width));
  left: 0;
  padding: 5px var(--pp-field-padding-l-wb);
  pointer-events: none;
  transition: top 0.2s;
  color: var(--pp-field-placeholder-color);
  font-weight: 500;
  font-size: 12px;
  line-height: var(--pp-field-font-line-height);
}
.pp-cf-label.has-value .label-text {
  color: var(--pp-field-font-color);
  top: -12px;
  transform: translateY(-50%);
}
.pp-cf-label.fancy-phone-parent:not(.has-value) .label-text {
  left: calc(90px + var(--pp-field-border-width));
}

/**
 * Fields grid
 */
:root {
  --gutter-form-fields: 3%;
}

.row-fields {
  margin-left: calc(var(--gutter-form-fields) * -1);
  margin-right: calc(var(--gutter-form-fields) * -1);
  display: flex;
  flex-wrap: wrap;
}
.row-fields .input {
  width: 50%;
  padding-left: var(--gutter-form-fields);
  padding-right: var(--gutter-form-fields);
  float: left;
  flex: 1;
  flex-basis: 50%;
}
.row-fields .input.col-12 {
  width: 100%;
  flex-basis: 100%;
}

@media (max-width: 576px) {
  .row-fields .input {
    width: 100%;
    flex-basis: 100%;
  }
}
/**
 * Select2 Dropdown
 */
/**
 * Number (iti)
 */
/**
 * Number (iti)
 */
body .iti {
  transition: background-color 0.3s ease-in-out;
  color: var(--pp-field-font-color);
  border-radius: var(--pp-field-border-radius);
  width: 100%;
}
body .iti .iti__flag-container {
  background-color: #D9D9D9;
  border-radius: var(--pp-field-border-radius);
}
body .iti .iti__country-container {
  background-color: #D9D9D9;
  border-radius: var(--pp-field-border-radius);
}
body .iti .iti__country-container .iti__selected-dial-code {
  padding-right: 10px;
  font-size: var(--pp-field-font-size);
}
body .iti.invalid {
  background-color: #fff6f6;
}
body .iti.valid {
  background-color: #f0fff1;
}
body .iti .iti__search-input {
  border: none !important;
  padding: 8px var(--iti-spacer-horizontal) !important;
}
body .iti .iti__search-input:focus {
  box-shadow: none !important;
}
body .iti .iti__dropdown-content {
  box-shadow: var(--pp-field-shadow);
  border: none;
  border-radius: var(--pp-field-border-radius);
  padding: 7px;
  margin-top: 7px;
}
body .iti .iti__country {
  border-radius: var(--pp-field-border-radius);
  font-size: var(--pp-field-font-size);
}

body .iti--fullscreen-popup.iti--container {
  z-index: 1000000;
  border-radius: 0 !important;
}

/**
 * Theme specific
 * ---------------------------------------------------------------------------------------------------------------------
 */
:root {
  --pp-field-font-color: var(--pp-theme-text-color);
  --pp-field-label-font-color: var(--pp-theme-text-color);
  --pp-field-placeholder-color: var(--pp-theme-color3);
  --pp-field-border-color: var(--pp-theme-color3);
  --pp-field-border-radius: var(--pp-theme-br0);
  --pp-field-border-style: solid;
  --pp-form-ro-failed-bg-color: var(--pp-theme-color-transparent);
  --pp-form-ro-sent-border-color: var(--pp-theme-color);
  --pp-form-ro-invalid-border-color: var(--pp-theme-color);
  --pp-form-ro-default-bg-color: transparent;
  --pp-form-ro-invalid-bg-color: transparent;
  --pp-form-ro-sent-bg-color: transparent;
  --pp-form-ro-error-bg-color: transparent;
  --iti-dropdown-bg: var(--pp-theme-color-bg);
  --pp-contact-form-field-height: 40px;
  --pp-contact-form-textarea-height: 112px;
  --pp-contact-form-field-padding-x: 12px;
  --pp-contact-form-field-bg: rgba(3, 4, 11, 0.5);
  --pp-contact-form-gold: #B18F62;
  --pp-contact-form-placeholder: rgba(255, 255, 255, 0.7);
  --pp-contact-form-field-gap: 21px;
  --pp-contact-form-column-gap: 15px;
}

body .iti .iti__country-container {
  background-color: var(--pp-theme-color-black);
  background-color: var(--pp-theme-color-bg);
  border-right: 1px solid var(--pp-theme-color3);
}

body .wpcf7-form:has(.pp-cf-label) .iti input[type=text]:not(.iti__search-input),
body .wpcf7-form:has(.pp-cf-label) .iti input[type=tel]:not(.iti__search-input) {
  --iti-input-padding: 90px !important;
}

body .wpcf7-form:has(.pp-cf-label) .iti .iti__search-input[type=text] {
  padding-left: 12px !important;
}

body .iti .iti__country-container .iti__selected-dial-code {
  min-width: 36px;
  text-align: right;
}

.wpcf7-form p span {
  color: var(--pp-theme-color-text);
}

body .iti.invalid {
  background-color: var(--pp-form-field-invalid-border-color);
}
body .iti.valid {
  background-color: var(--pp-form-ro-sent-border-color);
}

.wpcf7 form.sent .wpcf7-response-output {
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.select2-results__options {
  background-color: var(--pp-theme-color-bg);
  border: 1px solid var(--pp-field-border-color);
}

textarea,
select,
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date] {
  border-style: var(--pp-field-border-style) !important;
  border-radius: var(--pp-field-border-radius) !important;
}

body .wpcf7-form:has(.pp-cf-label) .row-fields {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  gap: var(--pp-contact-form-field-gap) var(--pp-contact-form-column-gap);
}
body .wpcf7-form:has(.pp-cf-label) .row-fields > div[style*=height] {
  display: none;
}
body .wpcf7-form:has(.pp-cf-label) .row-fields .input {
  width: calc((100% - var(--pp-contact-form-column-gap)) / 2);
  flex: 0 0 calc((100% - var(--pp-contact-form-column-gap)) / 2);
  padding-left: 0;
  padding-right: 0;
}
body .wpcf7-form:has(.pp-cf-label) .row-fields .input.col-12 {
  width: 100%;
  flex-basis: 100%;
}
body .wpcf7-form:has(.pp-cf-label) .row-fields .input > p {
  margin: 0;
  padding: 0;
}
body .wpcf7-form:has(.pp-cf-label) .pp-cf-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  font-family: var(--pp-theme-ff2);
  color: var(--pp-theme-color-white);
}
body .wpcf7-form:has(.pp-cf-label) .pp-cf-label br {
  display: none;
}
body .wpcf7-form:has(.pp-cf-label) .label-text-static {
  color: var(--pp-theme-color-white);
  font-family: var(--pp-theme-ff2);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-form-control-wrap {
  display: block !important;
}
body .wpcf7-form:has(.pp-cf-label) input[type=text],
body .wpcf7-form:has(.pp-cf-label) input[type=url],
body .wpcf7-form:has(.pp-cf-label) input[type=email],
body .wpcf7-form:has(.pp-cf-label) input[type=tel],
body .wpcf7-form:has(.pp-cf-label) input[type=number],
body .wpcf7-form:has(.pp-cf-label) input[type=password],
body .wpcf7-form:has(.pp-cf-label) input[type=date],
body .wpcf7-form:has(.pp-cf-label) textarea {
  width: 100%;
  min-height: var(--pp-contact-form-field-height);
  padding: 0 var(--pp-contact-form-field-padding-x) !important;
  border-color: var(--pp-contact-form-gold) !important;
  border-radius: 4px !important;
  background-color: var(--pp-contact-form-field-bg) !important;
  color: var(--pp-theme-color-white) !important;
  font-family: var(--pp-theme-ff2);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  box-shadow: none;
}
body .wpcf7-form:has(.pp-cf-label) textarea {
  height: var(--pp-contact-form-textarea-height);
  min-height: var(--pp-contact-form-textarea-height);
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  resize: vertical;
}
body .wpcf7-form:has(.pp-cf-label) input::placeholder,
body .wpcf7-form:has(.pp-cf-label) textarea::placeholder {
  color: var(--pp-contact-form-placeholder);
  font-family: var(--pp-theme-ff2);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
}
body .wpcf7-form:has(.pp-cf-label) .iti {
  border-radius: 4px;
}
body .wpcf7-form:has(.pp-cf-label) .iti .iti__country-container {
  background-color: var(--pp-contact-form-field-bg);
  border-right-color: var(--pp-contact-form-gold);
  border-radius: 4px 0 0 4px;
}
body .wpcf7-form:has(.pp-cf-label) .iti input[type=text],
body .wpcf7-form:has(.pp-cf-label) .iti input[type=tel] {
  padding-left: var(--iti-input-padding, 52px) !important;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance {
  display: block;
  font-family: var(--pp-theme-ff2);
  color: var(--pp-theme-color-white) !important;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--pp-theme-color-white);
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  width: 22px;
  height: 21px;
  min-width: 22px;
  border-color: var(--pp-contact-form-gold);
  border-radius: var(--pp-theme-br0);
  background-color: transparent;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  margin: 0;
  color: var(--pp-theme-color-white);
  font-family: var(--pp-theme-ff2);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-left: 0;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
  text-decoration: none;
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body .wpcf7-form:has(.pp-cf-label) .wpcf7-not-valid-tip {
  border: 0 !important;
  color: var(--pp-form-field-invalid-border-color) !important;
  margin-top: 6px;
  padding: 0;
}

body.klasjet-theme .wpcf7-form .nectar-cta, body.klasjet-theme .wpcf7-form .pp-btn {
  width: auto !important;
}
body.klasjet-theme .wpcf7-form .nectar-cta span, body.klasjet-theme .wpcf7-form .pp-btn span {
  font-size: 16px;
  line-height: 29px;
}

@media (max-width: 690px) {
  body .wpcf7-form:has(.pp-cf-label) .row-fields .input {
    width: 100%;
    flex-basis: 100%;
  }
}
body.klasjet-theme .wpcf7-list-item input[type=checkbox]:checked:after {
  width: 4px;
  height: 13px;
  top: 0px;
  left: 8px;
}

.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]::before {
  display: none;
}

.cf-col-submit {
  margin-top: 15px !important;
}

/**
 * Headings
 */
/**
 * Headings
 */
:root {
  --pp-headings-ff: var(--pp-theme-ff);
  --pp-zoom-font-multiplier: 1;
  --pp-title-1-zoom-font-multiplier: 0.99;
}

body.pp-zoom.pp-zoom-125 {
  --pp-zoom-font-multiplier: 0.8;
  --pp-title-1-zoom-font-multiplier: 0.56;
}

body.pp-zoom.pp-zoom-150 {
  --pp-zoom-font-multiplier: 0.6667;
  --pp-title-1-zoom-font-multiplier: 0.4667;
}

body.pp-zoom.pp-zoom-175 {
  --pp-zoom-font-multiplier: 0.5714;
  --pp-title-1-zoom-font-multiplier: 0.4;
}

body h1.pp-title-1, body h1.vc_custom_heading.pp-title-1, body h2.pp-title-1, body h2.vc_custom_heading.pp-title-1, body h3.pp-title-1, body h3.vc_custom_heading.pp-title-1, body h4.pp-title-1, body h4.vc_custom_heading.pp-title-1, body h5.pp-title-1, body h5.vc_custom_heading.pp-title-1, body h6.pp-title-1, body h6.vc_custom_heading.pp-title-1, body div.pp-title-1, body div.vc_custom_heading.pp-title-1, body span.pp-title-1, body span.vc_custom_heading.pp-title-1, body p.pp-title-1, body p.vc_custom_heading.pp-title-1,
.wpb_wrapper h1.pp-title-1,
.wpb_wrapper h1.vc_custom_heading.pp-title-1,
.wpb_wrapper h2.pp-title-1,
.wpb_wrapper h2.vc_custom_heading.pp-title-1,
.wpb_wrapper h3.pp-title-1,
.wpb_wrapper h3.vc_custom_heading.pp-title-1,
.wpb_wrapper h4.pp-title-1,
.wpb_wrapper h4.vc_custom_heading.pp-title-1,
.wpb_wrapper h5.pp-title-1,
.wpb_wrapper h5.vc_custom_heading.pp-title-1,
.wpb_wrapper h6.pp-title-1,
.wpb_wrapper h6.vc_custom_heading.pp-title-1,
.wpb_wrapper div.pp-title-1,
.wpb_wrapper div.vc_custom_heading.pp-title-1,
.wpb_wrapper span.pp-title-1,
.wpb_wrapper span.vc_custom_heading.pp-title-1,
.wpb_wrapper p.pp-title-1,
.wpb_wrapper p.vc_custom_heading.pp-title-1 {
  font-family: var(--pp-headings-ff);
  font-weight: 400;
  font-size: calc(clamp(32px, 20.7323943662px + 3.0046948357vw, 64px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(40px, 26.6197183099px + 3.5680751174vw, 78px) * var(--pp-zoom-font-multiplier)) !important;
}
body h1.pp-title-2, body h1.vc_custom_heading.pp-title-2, body h2.pp-title-2, body h2.vc_custom_heading.pp-title-2, body h3.pp-title-2, body h3.vc_custom_heading.pp-title-2, body h4.pp-title-2, body h4.vc_custom_heading.pp-title-2, body h5.pp-title-2, body h5.vc_custom_heading.pp-title-2, body h6.pp-title-2, body h6.vc_custom_heading.pp-title-2, body div.pp-title-2, body div.vc_custom_heading.pp-title-2, body span.pp-title-2, body span.vc_custom_heading.pp-title-2, body p.pp-title-2, body p.vc_custom_heading.pp-title-2,
.wpb_wrapper h1.pp-title-2,
.wpb_wrapper h1.vc_custom_heading.pp-title-2,
.wpb_wrapper h2.pp-title-2,
.wpb_wrapper h2.vc_custom_heading.pp-title-2,
.wpb_wrapper h3.pp-title-2,
.wpb_wrapper h3.vc_custom_heading.pp-title-2,
.wpb_wrapper h4.pp-title-2,
.wpb_wrapper h4.vc_custom_heading.pp-title-2,
.wpb_wrapper h5.pp-title-2,
.wpb_wrapper h5.vc_custom_heading.pp-title-2,
.wpb_wrapper h6.pp-title-2,
.wpb_wrapper h6.vc_custom_heading.pp-title-2,
.wpb_wrapper div.pp-title-2,
.wpb_wrapper div.vc_custom_heading.pp-title-2,
.wpb_wrapper span.pp-title-2,
.wpb_wrapper span.vc_custom_heading.pp-title-2,
.wpb_wrapper p.pp-title-2,
.wpb_wrapper p.vc_custom_heading.pp-title-2 {
  font-family: var(--pp-headings-ff);
  font-weight: 400;
  font-size: calc(clamp(22px, 17.4225352113px + 1.220657277vw, 35px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(36px, 31.4225352113px + 1.220657277vw, 49px) * var(--pp-zoom-font-multiplier)) !important;
}
body h1.pp-title-3, body h1.vc_custom_heading.pp-title-3, body h2.pp-title-3, body h2.vc_custom_heading.pp-title-3, body h3.pp-title-3, body h3.vc_custom_heading.pp-title-3, body h4.pp-title-3, body h4.vc_custom_heading.pp-title-3, body h5.pp-title-3, body h5.vc_custom_heading.pp-title-3, body h6.pp-title-3, body h6.vc_custom_heading.pp-title-3, body div.pp-title-3, body div.vc_custom_heading.pp-title-3, body span.pp-title-3, body span.vc_custom_heading.pp-title-3, body p.pp-title-3, body p.vc_custom_heading.pp-title-3,
.wpb_wrapper h1.pp-title-3,
.wpb_wrapper h1.vc_custom_heading.pp-title-3,
.wpb_wrapper h2.pp-title-3,
.wpb_wrapper h2.vc_custom_heading.pp-title-3,
.wpb_wrapper h3.pp-title-3,
.wpb_wrapper h3.vc_custom_heading.pp-title-3,
.wpb_wrapper h4.pp-title-3,
.wpb_wrapper h4.vc_custom_heading.pp-title-3,
.wpb_wrapper h5.pp-title-3,
.wpb_wrapper h5.vc_custom_heading.pp-title-3,
.wpb_wrapper h6.pp-title-3,
.wpb_wrapper h6.vc_custom_heading.pp-title-3,
.wpb_wrapper div.pp-title-3,
.wpb_wrapper div.vc_custom_heading.pp-title-3,
.wpb_wrapper span.pp-title-3,
.wpb_wrapper span.vc_custom_heading.pp-title-3,
.wpb_wrapper p.pp-title-3,
.wpb_wrapper p.vc_custom_heading.pp-title-3 {
  font-family: var(--pp-headings-ff);
  font-weight: 400;
  font-size: calc(clamp(20px, 18.5915492958px + 0.3755868545vw, 24px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(28px, 25.8873239437px + 0.5633802817vw, 34px) * var(--pp-zoom-font-multiplier)) !important;
}
body h1.pp-title-4, body h1.vc_custom_heading.pp-title-4, body h2.pp-title-4, body h2.vc_custom_heading.pp-title-4, body h3.pp-title-4, body h3.vc_custom_heading.pp-title-4, body h4.pp-title-4, body h4.vc_custom_heading.pp-title-4, body h5.pp-title-4, body h5.vc_custom_heading.pp-title-4, body h6.pp-title-4, body h6.vc_custom_heading.pp-title-4, body div.pp-title-4, body div.vc_custom_heading.pp-title-4, body span.pp-title-4, body span.vc_custom_heading.pp-title-4, body p.pp-title-4, body p.vc_custom_heading.pp-title-4,
.wpb_wrapper h1.pp-title-4,
.wpb_wrapper h1.vc_custom_heading.pp-title-4,
.wpb_wrapper h2.pp-title-4,
.wpb_wrapper h2.vc_custom_heading.pp-title-4,
.wpb_wrapper h3.pp-title-4,
.wpb_wrapper h3.vc_custom_heading.pp-title-4,
.wpb_wrapper h4.pp-title-4,
.wpb_wrapper h4.vc_custom_heading.pp-title-4,
.wpb_wrapper h5.pp-title-4,
.wpb_wrapper h5.vc_custom_heading.pp-title-4,
.wpb_wrapper h6.pp-title-4,
.wpb_wrapper h6.vc_custom_heading.pp-title-4,
.wpb_wrapper div.pp-title-4,
.wpb_wrapper div.vc_custom_heading.pp-title-4,
.wpb_wrapper span.pp-title-4,
.wpb_wrapper span.vc_custom_heading.pp-title-4,
.wpb_wrapper p.pp-title-4,
.wpb_wrapper p.vc_custom_heading.pp-title-4 {
  font-family: var(--pp-headings-ff);
  font-weight: 400;
  font-size: calc(clamp(16px, 15.2957746479px + 0.1877934272vw, 18px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(23px, 21.5915492958px + 0.3755868545vw, 27px) * var(--pp-zoom-font-multiplier)) !important;
}
body h1.pp-title-5, body h1.vc_custom_heading.pp-title-5, body h2.pp-title-5, body h2.vc_custom_heading.pp-title-5, body h3.pp-title-5, body h3.vc_custom_heading.pp-title-5, body h4.pp-title-5, body h4.vc_custom_heading.pp-title-5, body h5.pp-title-5, body h5.vc_custom_heading.pp-title-5, body h6.pp-title-5, body h6.vc_custom_heading.pp-title-5, body div.pp-title-5, body div.vc_custom_heading.pp-title-5, body span.pp-title-5, body span.vc_custom_heading.pp-title-5, body p.pp-title-5, body p.vc_custom_heading.pp-title-5,
.wpb_wrapper h1.pp-title-5,
.wpb_wrapper h1.vc_custom_heading.pp-title-5,
.wpb_wrapper h2.pp-title-5,
.wpb_wrapper h2.vc_custom_heading.pp-title-5,
.wpb_wrapper h3.pp-title-5,
.wpb_wrapper h3.vc_custom_heading.pp-title-5,
.wpb_wrapper h4.pp-title-5,
.wpb_wrapper h4.vc_custom_heading.pp-title-5,
.wpb_wrapper h5.pp-title-5,
.wpb_wrapper h5.vc_custom_heading.pp-title-5,
.wpb_wrapper h6.pp-title-5,
.wpb_wrapper h6.vc_custom_heading.pp-title-5,
.wpb_wrapper div.pp-title-5,
.wpb_wrapper div.vc_custom_heading.pp-title-5,
.wpb_wrapper span.pp-title-5,
.wpb_wrapper span.vc_custom_heading.pp-title-5,
.wpb_wrapper p.pp-title-5,
.wpb_wrapper p.vc_custom_heading.pp-title-5 {
  font-family: var(--pp-headings-ff);
  font-weight: 400;
  font-size: calc(clamp(14px, 14px + 0vw, 14px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(18px, 18px + 0vw, 18px) * var(--pp-zoom-font-multiplier)) !important;
}
body h1.pp-title-1, body h1.vc_custom_heading.pp-title-1, body h2.pp-title-1, body h2.vc_custom_heading.pp-title-1, body h3.pp-title-1, body h3.vc_custom_heading.pp-title-1, body h4.pp-title-1, body h4.vc_custom_heading.pp-title-1, body h5.pp-title-1, body h5.vc_custom_heading.pp-title-1, body h6.pp-title-1, body h6.vc_custom_heading.pp-title-1, body div.pp-title-1, body div.vc_custom_heading.pp-title-1, body span.pp-title-1, body span.vc_custom_heading.pp-title-1, body p.pp-title-1, body p.vc_custom_heading.pp-title-1,
.wpb_wrapper h1.pp-title-1,
.wpb_wrapper h1.vc_custom_heading.pp-title-1,
.wpb_wrapper h2.pp-title-1,
.wpb_wrapper h2.vc_custom_heading.pp-title-1,
.wpb_wrapper h3.pp-title-1,
.wpb_wrapper h3.vc_custom_heading.pp-title-1,
.wpb_wrapper h4.pp-title-1,
.wpb_wrapper h4.vc_custom_heading.pp-title-1,
.wpb_wrapper h5.pp-title-1,
.wpb_wrapper h5.vc_custom_heading.pp-title-1,
.wpb_wrapper h6.pp-title-1,
.wpb_wrapper h6.vc_custom_heading.pp-title-1,
.wpb_wrapper div.pp-title-1,
.wpb_wrapper div.vc_custom_heading.pp-title-1,
.wpb_wrapper span.pp-title-1,
.wpb_wrapper span.vc_custom_heading.pp-title-1,
.wpb_wrapper p.pp-title-1,
.wpb_wrapper p.vc_custom_heading.pp-title-1 {
  font-size: calc(clamp(32px, 20.7323943662px + 3.0046948357vw, 64px) * var(--pp-title-1-zoom-font-multiplier)) !important;
  line-height: calc(clamp(40px, 26.6197183099px + 3.5680751174vw, 78px) * var(--pp-title-1-zoom-font-multiplier)) !important;
}
body h1.fw-300, body h1.vc_custom_heading.fw-300, body h2.fw-300, body h2.vc_custom_heading.fw-300, body h3.fw-300, body h3.vc_custom_heading.fw-300, body h4.fw-300, body h4.vc_custom_heading.fw-300, body h5.fw-300, body h5.vc_custom_heading.fw-300, body h6.fw-300, body h6.vc_custom_heading.fw-300, body div.fw-300, body div.vc_custom_heading.fw-300, body span.fw-300, body span.vc_custom_heading.fw-300, body p.fw-300, body p.vc_custom_heading.fw-300,
.wpb_wrapper h1.fw-300,
.wpb_wrapper h1.vc_custom_heading.fw-300,
.wpb_wrapper h2.fw-300,
.wpb_wrapper h2.vc_custom_heading.fw-300,
.wpb_wrapper h3.fw-300,
.wpb_wrapper h3.vc_custom_heading.fw-300,
.wpb_wrapper h4.fw-300,
.wpb_wrapper h4.vc_custom_heading.fw-300,
.wpb_wrapper h5.fw-300,
.wpb_wrapper h5.vc_custom_heading.fw-300,
.wpb_wrapper h6.fw-300,
.wpb_wrapper h6.vc_custom_heading.fw-300,
.wpb_wrapper div.fw-300,
.wpb_wrapper div.vc_custom_heading.fw-300,
.wpb_wrapper span.fw-300,
.wpb_wrapper span.vc_custom_heading.fw-300,
.wpb_wrapper p.fw-300,
.wpb_wrapper p.vc_custom_heading.fw-300 {
  font-weight: 300 !important;
}
body h1.fw-400, body h1.vc_custom_heading.fw-400, body h2.fw-400, body h2.vc_custom_heading.fw-400, body h3.fw-400, body h3.vc_custom_heading.fw-400, body h4.fw-400, body h4.vc_custom_heading.fw-400, body h5.fw-400, body h5.vc_custom_heading.fw-400, body h6.fw-400, body h6.vc_custom_heading.fw-400, body div.fw-400, body div.vc_custom_heading.fw-400, body span.fw-400, body span.vc_custom_heading.fw-400, body p.fw-400, body p.vc_custom_heading.fw-400,
.wpb_wrapper h1.fw-400,
.wpb_wrapper h1.vc_custom_heading.fw-400,
.wpb_wrapper h2.fw-400,
.wpb_wrapper h2.vc_custom_heading.fw-400,
.wpb_wrapper h3.fw-400,
.wpb_wrapper h3.vc_custom_heading.fw-400,
.wpb_wrapper h4.fw-400,
.wpb_wrapper h4.vc_custom_heading.fw-400,
.wpb_wrapper h5.fw-400,
.wpb_wrapper h5.vc_custom_heading.fw-400,
.wpb_wrapper h6.fw-400,
.wpb_wrapper h6.vc_custom_heading.fw-400,
.wpb_wrapper div.fw-400,
.wpb_wrapper div.vc_custom_heading.fw-400,
.wpb_wrapper span.fw-400,
.wpb_wrapper span.vc_custom_heading.fw-400,
.wpb_wrapper p.fw-400,
.wpb_wrapper p.vc_custom_heading.fw-400 {
  font-weight: 400 !important;
}
body h1.fw-500, body h1.vc_custom_heading.fw-500, body h2.fw-500, body h2.vc_custom_heading.fw-500, body h3.fw-500, body h3.vc_custom_heading.fw-500, body h4.fw-500, body h4.vc_custom_heading.fw-500, body h5.fw-500, body h5.vc_custom_heading.fw-500, body h6.fw-500, body h6.vc_custom_heading.fw-500, body div.fw-500, body div.vc_custom_heading.fw-500, body span.fw-500, body span.vc_custom_heading.fw-500, body p.fw-500, body p.vc_custom_heading.fw-500,
.wpb_wrapper h1.fw-500,
.wpb_wrapper h1.vc_custom_heading.fw-500,
.wpb_wrapper h2.fw-500,
.wpb_wrapper h2.vc_custom_heading.fw-500,
.wpb_wrapper h3.fw-500,
.wpb_wrapper h3.vc_custom_heading.fw-500,
.wpb_wrapper h4.fw-500,
.wpb_wrapper h4.vc_custom_heading.fw-500,
.wpb_wrapper h5.fw-500,
.wpb_wrapper h5.vc_custom_heading.fw-500,
.wpb_wrapper h6.fw-500,
.wpb_wrapper h6.vc_custom_heading.fw-500,
.wpb_wrapper div.fw-500,
.wpb_wrapper div.vc_custom_heading.fw-500,
.wpb_wrapper span.fw-500,
.wpb_wrapper span.vc_custom_heading.fw-500,
.wpb_wrapper p.fw-500,
.wpb_wrapper p.vc_custom_heading.fw-500 {
  font-weight: 500 !important;
}
body h1.fw-600, body h1.vc_custom_heading.fw-600, body h2.fw-600, body h2.vc_custom_heading.fw-600, body h3.fw-600, body h3.vc_custom_heading.fw-600, body h4.fw-600, body h4.vc_custom_heading.fw-600, body h5.fw-600, body h5.vc_custom_heading.fw-600, body h6.fw-600, body h6.vc_custom_heading.fw-600, body div.fw-600, body div.vc_custom_heading.fw-600, body span.fw-600, body span.vc_custom_heading.fw-600, body p.fw-600, body p.vc_custom_heading.fw-600,
.wpb_wrapper h1.fw-600,
.wpb_wrapper h1.vc_custom_heading.fw-600,
.wpb_wrapper h2.fw-600,
.wpb_wrapper h2.vc_custom_heading.fw-600,
.wpb_wrapper h3.fw-600,
.wpb_wrapper h3.vc_custom_heading.fw-600,
.wpb_wrapper h4.fw-600,
.wpb_wrapper h4.vc_custom_heading.fw-600,
.wpb_wrapper h5.fw-600,
.wpb_wrapper h5.vc_custom_heading.fw-600,
.wpb_wrapper h6.fw-600,
.wpb_wrapper h6.vc_custom_heading.fw-600,
.wpb_wrapper div.fw-600,
.wpb_wrapper div.vc_custom_heading.fw-600,
.wpb_wrapper span.fw-600,
.wpb_wrapper span.vc_custom_heading.fw-600,
.wpb_wrapper p.fw-600,
.wpb_wrapper p.vc_custom_heading.fw-600 {
  font-weight: 600 !important;
}
body h1.fw-700, body h1.vc_custom_heading.fw-700, body h2.fw-700, body h2.vc_custom_heading.fw-700, body h3.fw-700, body h3.vc_custom_heading.fw-700, body h4.fw-700, body h4.vc_custom_heading.fw-700, body h5.fw-700, body h5.vc_custom_heading.fw-700, body h6.fw-700, body h6.vc_custom_heading.fw-700, body div.fw-700, body div.vc_custom_heading.fw-700, body span.fw-700, body span.vc_custom_heading.fw-700, body p.fw-700, body p.vc_custom_heading.fw-700,
.wpb_wrapper h1.fw-700,
.wpb_wrapper h1.vc_custom_heading.fw-700,
.wpb_wrapper h2.fw-700,
.wpb_wrapper h2.vc_custom_heading.fw-700,
.wpb_wrapper h3.fw-700,
.wpb_wrapper h3.vc_custom_heading.fw-700,
.wpb_wrapper h4.fw-700,
.wpb_wrapper h4.vc_custom_heading.fw-700,
.wpb_wrapper h5.fw-700,
.wpb_wrapper h5.vc_custom_heading.fw-700,
.wpb_wrapper h6.fw-700,
.wpb_wrapper h6.vc_custom_heading.fw-700,
.wpb_wrapper div.fw-700,
.wpb_wrapper div.vc_custom_heading.fw-700,
.wpb_wrapper span.fw-700,
.wpb_wrapper span.vc_custom_heading.fw-700,
.wpb_wrapper p.fw-700,
.wpb_wrapper p.vc_custom_heading.fw-700 {
  font-weight: 700 !important;
}
body h1.fs-italic, body h1.vc_custom_heading.fs-italic, body h2.fs-italic, body h2.vc_custom_heading.fs-italic, body h3.fs-italic, body h3.vc_custom_heading.fs-italic, body h4.fs-italic, body h4.vc_custom_heading.fs-italic, body h5.fs-italic, body h5.vc_custom_heading.fs-italic, body h6.fs-italic, body h6.vc_custom_heading.fs-italic, body div.fs-italic, body div.vc_custom_heading.fs-italic, body span.fs-italic, body span.vc_custom_heading.fs-italic, body p.fs-italic, body p.vc_custom_heading.fs-italic,
.wpb_wrapper h1.fs-italic,
.wpb_wrapper h1.vc_custom_heading.fs-italic,
.wpb_wrapper h2.fs-italic,
.wpb_wrapper h2.vc_custom_heading.fs-italic,
.wpb_wrapper h3.fs-italic,
.wpb_wrapper h3.vc_custom_heading.fs-italic,
.wpb_wrapper h4.fs-italic,
.wpb_wrapper h4.vc_custom_heading.fs-italic,
.wpb_wrapper h5.fs-italic,
.wpb_wrapper h5.vc_custom_heading.fs-italic,
.wpb_wrapper h6.fs-italic,
.wpb_wrapper h6.vc_custom_heading.fs-italic,
.wpb_wrapper div.fs-italic,
.wpb_wrapper div.vc_custom_heading.fs-italic,
.wpb_wrapper span.fs-italic,
.wpb_wrapper span.vc_custom_heading.fs-italic,
.wpb_wrapper p.fs-italic,
.wpb_wrapper p.vc_custom_heading.fs-italic {
  font-style: italic !important;
}
body h1.ff-1, body h1.vc_custom_heading.ff-1, body h2.ff-1, body h2.vc_custom_heading.ff-1, body h3.ff-1, body h3.vc_custom_heading.ff-1, body h4.ff-1, body h4.vc_custom_heading.ff-1, body h5.ff-1, body h5.vc_custom_heading.ff-1, body h6.ff-1, body h6.vc_custom_heading.ff-1, body div.ff-1, body div.vc_custom_heading.ff-1, body span.ff-1, body span.vc_custom_heading.ff-1, body p.ff-1, body p.vc_custom_heading.ff-1,
.wpb_wrapper h1.ff-1,
.wpb_wrapper h1.vc_custom_heading.ff-1,
.wpb_wrapper h2.ff-1,
.wpb_wrapper h2.vc_custom_heading.ff-1,
.wpb_wrapper h3.ff-1,
.wpb_wrapper h3.vc_custom_heading.ff-1,
.wpb_wrapper h4.ff-1,
.wpb_wrapper h4.vc_custom_heading.ff-1,
.wpb_wrapper h5.ff-1,
.wpb_wrapper h5.vc_custom_heading.ff-1,
.wpb_wrapper h6.ff-1,
.wpb_wrapper h6.vc_custom_heading.ff-1,
.wpb_wrapper div.ff-1,
.wpb_wrapper div.vc_custom_heading.ff-1,
.wpb_wrapper span.ff-1,
.wpb_wrapper span.vc_custom_heading.ff-1,
.wpb_wrapper p.ff-1,
.wpb_wrapper p.vc_custom_heading.ff-1 {
  font-family: var(--pp-theme-ff) !important;
}
body h1.ff-2, body h1.vc_custom_heading.ff-2, body h2.ff-2, body h2.vc_custom_heading.ff-2, body h3.ff-2, body h3.vc_custom_heading.ff-2, body h4.ff-2, body h4.vc_custom_heading.ff-2, body h5.ff-2, body h5.vc_custom_heading.ff-2, body h6.ff-2, body h6.vc_custom_heading.ff-2, body div.ff-2, body div.vc_custom_heading.ff-2, body span.ff-2, body span.vc_custom_heading.ff-2, body p.ff-2, body p.vc_custom_heading.ff-2,
.wpb_wrapper h1.ff-2,
.wpb_wrapper h1.vc_custom_heading.ff-2,
.wpb_wrapper h2.ff-2,
.wpb_wrapper h2.vc_custom_heading.ff-2,
.wpb_wrapper h3.ff-2,
.wpb_wrapper h3.vc_custom_heading.ff-2,
.wpb_wrapper h4.ff-2,
.wpb_wrapper h4.vc_custom_heading.ff-2,
.wpb_wrapper h5.ff-2,
.wpb_wrapper h5.vc_custom_heading.ff-2,
.wpb_wrapper h6.ff-2,
.wpb_wrapper h6.vc_custom_heading.ff-2,
.wpb_wrapper div.ff-2,
.wpb_wrapper div.vc_custom_heading.ff-2,
.wpb_wrapper span.ff-2,
.wpb_wrapper span.vc_custom_heading.ff-2,
.wpb_wrapper p.ff-2,
.wpb_wrapper p.vc_custom_heading.ff-2 {
  font-family: var(--pp-theme-ff2) !important;
}

/**
 * Theme Specific
 * ---------------------------------------------------------------------------------------------------------------------
 */
/**
 * Responsive tables
 */
@media (max-width: 1399px) {
  .pp-simple-page-content .table-responsive {
    overflow-x: auto;
  }
  .pp-simple-page-content table {
    width: 100%;
    min-width: 700px;
  }
}
@media (min-width: 1000px) {
  .pp-bg-img-desk-contain > .row-bg-wrap .row-bg.viewport-desktop {
    background-size: contain !important;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
  }
  .pp-bg-img-desk-contain > .row-bg-wrap .row-bg.viewport-desktop:before {
    content: "";
    display: inline-block;
    width: 100%;
    max-width: 1920px;
    position: absolute;
    height: 100%;
    background: linear-gradient(to bottom, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to top, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to right, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to left, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%);
  }
  .pp-bg-img-desk-contain > .row-bg-wrap .row-bg.viewport-desktop:after {
    content: "";
    display: inline-block;
    width: 100%;
    max-width: 1920px;
    position: absolute;
    height: 100%;
    background: linear-gradient(120.16deg, #100F15 16.54%, #121331 133.69%);
    background: var(--pp-theme-bg);
    opacity: 0.1;
  }
}

/**
 * ------------------------------------------
 */
/**
 * Hero section
 */
@media (min-width: 1000px) {
  .pp-page-hero .row-bg-wrap .row-bg.viewport-desktop.has-phone {
    background-size: contain !important;
  }
}
.pp-page-hero .row-bg-wrap .row-bg.viewport-phone {
  background-size: contain !important;
  background-position: top !important;
}

@media (max-width: 999px) {
  body.klasjet-theme p {
    font-size: 16px;
    line-height: 27px;
  }
}
body.klasjet-theme .homepage-front-block {
  width: 100%;
  max-width: 930px;
}

.hero-subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  font-size: clamp(14px, 13px + 0.4vw, 18px);
  line-height: 1.4;
  text-transform: uppercase;
}

/**
 * Slider
 */
.nectar-flickity.nectar-carousel[data-format=default][data-spacing*=default][data-wrap=no-wrap] .flickity-slider .cell {
  margin-right: 30px;
}

body .nectar-flickity.nectar-carousel.nectar-carousel:not(.masonry) .flickity-viewport {
  margin-bottom: 45px !important;
}

@media only screen and (min-width: 1300px) {
  .nectar-flickity.nectar-carousel[data-desktop-columns="4"][data-format=default] .cell {
    width: calc(24% - var(--subtract-from-col-width, 0px));
  }
  .nectar-flickity.nectar-carousel[data-desktop-columns="5"][data-format=default] .cell {
    width: calc(19% - var(--subtract-from-col-width, 0px));
  }
}
.flickity-page-dots + .container.normal-container {
  max-width: 100%;
}

.ico-slide {
  max-width: 35px !important;
  height: auto !important;
  margin-bottom: 15px !important;
}

.ico-doc {
  max-width: 20px !important;
  height: auto !important;
}

.nectar-flickity .visualized-total {
  height: 2px !important;
  background-color: var(--pp-theme-color-transparent) !important;
  border-radius: var(--pp-theme-br1);
  padding: 20px;
  margin-top: -20px !important;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nectar-flickity .visualized-total:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  /* position: absolute; */
  background-color: rgba(255, 255, 255, 0.5019607843) !important;
  /* padding-left: 0; */
  border-radius: var(--pp-theme-br1);
}
.nectar-flickity .visualized-total span {
  top: -0.5px !important;
  height: 3.5px !important;
  height: 3px !important;
  border-radius: var(--pp-theme-br1);
  background: var(--pp-btn-gold-gradient) !important;
  top: calc(50% - 2px) !important;
}
@media (min-width: 1000px) {
  .nectar-flickity .visualized-total {
    width: 65% !important;
  }
}

/**
 * Count metas
 */
.count-meta-items {
  display: flex;
}
.count-meta-items .vc_column-inner {
  display: flex;
  width: 100%;
}
.count-meta-items .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 500px;
  max-width: min(500px, 85%);
  width: 100%;
  margin-left: auto;
}
@media (min-width: 1000px) {
  .count-meta-items .wpb_wrapper {
    padding-top: 51px;
  }
}

.count-meta-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-box-flex: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.count-meta-item b {
  font-family: var(--pp-theme-ff);
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.count-meta-number {
  font-family: var(--pp-theme-ff);
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

@media (max-width: 999px) {
  .count-meta-items .wpb_wrapper {
    margin-left: unset;
  }
  .count-meta-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/**
 * Socials
 */
.off-canvas-social-links,
.col.centered-text ul.off-canvas-social-links,
.wpb_column.centered-text ul.off-canvas-social-links {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  max-width: 370px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0;
}

.off-canvas-social-links li {
  padding: 10px !important;
  list-style: none;
}
.off-canvas-social-links li:first-child {
  margin-left: -10px;
}
.off-canvas-social-links li a {
  padding: 5px 10px !important;
  width: 45px !important;
  height: 45px !important;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 100%);
}

@media (max-width: 999px) {
  .off-canvas-social-links li {
    padding: 0px !important;
  }
  .off-canvas-social-links li a {
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 4px;
  }
  .wpb_wrapper .off-canvas-social-links {
    justify-content: space-around;
  }
}
@media (min-width: 1000px) {
  .pp-socials-mod-align .off-canvas-social-links {
    margin-left: 0 !important;
  }
}
/**
 * Contact Us section
 */
.iwithtext {
  display: flex;
  align-items: center;
}
.iwithtext .iwt-icon {
  position: static;
  max-width: 21px;
  min-width: 21px;
}
.iwithtext .iwt-icon img {
  margin-bottom: 0;
}
.iwithtext .iwt-text {
  padding-left: 15px;
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 960, 20px);
  font-family: var(--pp-theme-ff2);
  font-weight: 700;
  letter-spacing: 0.25em;
}
.iwithtext .iwt-text, .iwithtext .iwt-text a {
  color: var(--pp-theme-color6) !important;
}

.contact-item-wrap {
  display: flex;
  flex-direction: column;
  max-width: 280px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item-wrap:last-child {
  margin-bottom: 0;
}
.contact-item-wrap .iwithtext + * {
  margin-left: 35px;
  margin-top: 5px;
}

.force-desktop-text-align-center .iwithtext {
  justify-content: center;
}
.force-desktop-text-align-center .off-canvas-social-links {
  justify-content: space-around;
}
.force-desktop-text-align-center .contact-item-wrap {
  margin-left: auto;
  margin-right: auto;
}

.bg-overlay-mod > .vc_column-inner > .column-bg-layer .column-bg-overlay {
  opacity: 0.05 !important;
}

/**
 * Toggles accordion
 */
body .toggles.accordion {
  max-width: 800px;
}
body .toggles.accordion .toggle {
  position: relative;
  border-radius: var(--pp-theme-br1);
  z-index: 0;
}
body .toggles.accordion .toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--pp-theme-br1);
  background: linear-gradient(180deg, #B18F62 0%, #EED7AE 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
body .toggles.accordion .toggle {
  overflow: hidden;
  border-radius: var(--pp-theme-br1);
  border-width: 0 !important;
  margin-bottom: 12px;
  padding: 0 20px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(16, 16, 27, 0.1);
}
body .toggles.accordion .toggle .toggle-title a,
body .toggles.accordion .toggle h3.toggle-title a {
  font-size: clamp(16px, 18px + 2 * (100vw - 480px) / 960, 18px);
  font-family: var(--pp-theme-ff2);
  font-weight: 400;
  color: var(--pp-theme-color-white);
  text-transform: none;
  padding: 12px 45px 12px 0;
  transition: color 0.15s ease;
}
@media (max-width: 999px) {
  body .toggles.accordion .toggle .toggle-title a,
  body .toggles.accordion .toggle h3.toggle-title a {
    font-size: 16px;
  }
}
body .toggles.accordion .toggle .inner-toggle-wrap p {
  color: rgba(255, 255, 255, 0.7019607843);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 22px;
  max-width: 650px;
}
body .toggles[data-style*=minimal] .toggle > .toggle-title i {
  border: none;
}
body .toggles[data-style*=minimal] .toggle > .toggle-title i:before, body .toggles[data-style*=minimal] .toggle > .toggle-title i:after {
  background-color: var(--pp-theme-color-white);
}

/**
 * <ul> List mods
 */
.wpb_text_column > .wpb_wrapper ul > li:before, .nectar-fancy-ul ul li i:before {
  content: "";
  display: inline-block; /* Ensure proper layout */
  width: 22px; /* Match SVG size */
  height: 22px;
  background-image: url("../icons/svg/ico-ul.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: transparent; /* Hide default icon */
}

.wpb_text_column > .wpb_wrapper ul > li em, .nectar-fancy-ul ul li em {
  text-transform: uppercase !important;
  font-style: normal !important;
  margin-bottom: 10px !important;
  display: inline-block;
}

.nectar-fancy-ul ul li {
  margin-bottom: 10px;
  margin-bottom: 25px;
  line-height: inherit !important;
}
.nectar-fancy-ul ul li i {
  top: 3px !important;
}
.wpb_text_column > .wpb_wrapper ul {
  list-style: none;
}
.wpb_text_column > .wpb_wrapper ul > li {
  list-style: none;
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
}
.wpb_text_column > .wpb_wrapper ul > li:before {
  position: absolute;
  left: 2px;
  top: 4px;
}

/**
 * Fleet items v2
 */
.ww-row.fleet-list-v2 {
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --bs-gutter-x: 2%;
}
.ww-row.fleet-list-v2 .fleet-list-item-inner {
  flex: 0 0 auto;
  width: 33.333333%;
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item {
  height: 100%;
  padding: max(7%, 15px);
  padding: 20px;
  padding-bottom: 0;
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info {
  display: flex;
  flex-direction: column;
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info .fleet-item-title {
  color: var(--pp-theme-color-white);
  text-transform: uppercase;
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info .fleet-registration,
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info .fleet-passengers {
  font-size: clamp(14px, 13px + 0.4vw, 18px);
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info .fleet-registration {
  color: var(--pp-theme-color6);
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .fleet-additional-info .fleet-passengers {
  color: var(--pp-theme-color-white);
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .image {
  position: relative;
  bottom: -10px;
}
.ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .image img {
  margin-bottom: 0 !important;
  transform: scaleX(-1);
  width: 120%;
  max-width: 120%;
}
.ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(-n+2) {
  width: 42%;
}
.ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(-n+2) .fleet-item .image {
  padding-right: 22%;
  padding-right: 24.35%;
  display: block;
}
.ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(2) {
  margin-left: 16%;
}

.fleet-list-v2-btn-area.items-count-odd > * {
  margin-left: 17%;
  --bs-gutter-x: 1.5%;
  --pp-temp-calc-gutter: calc(var(--bs-gutter-x) * 0.5);
  margin-left: calc(17% - var(--pp-temp-calc-gutter));
}

@media (max-width: 999px) {
  .ww-row.fleet-list-v2 {
    --bs-gutter-x: 12px;
  }
  .ww-row.fleet-list-v2 .fleet-list-item-inner {
    width: 50%;
  }
  .ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item {
    padding-bottom: 10px;
  }
  .ww-row.fleet-list-v2 .fleet-list-item-inner .fleet-item .image {
    position: static;
  }
  .ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(-n+2) {
    width: 50%;
  }
  .ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(-n+2) .fleet-item .image {
    padding-right: 0;
  }
  .ww-row.fleet-list-v2.items-count-odd .fleet-list-item-inner:nth-last-child(2) {
    margin-left: 0;
  }
  .fleet-list-v2-btn-area {
    display: flex;
    justify-content: center;
  }
  .fleet-list-v2-btn-area.items-count-odd > * {
    margin-left: 0;
  }
}
/**
 * Intro
 */
.plane-text {
  --pp-w-shadow-intro: 150px;
  --pp-w-shadow-intro: 30%;
}
.plane-text:before, .plane-text:after {
  content: "";
  display: inline-block;
  height: 100%;
  width: var(--pp-w-shadow-intro);
  position: absolute;
  top: 0;
  display: none;
}
.plane-text:before {
  left: calc(-1 * var(--pp-w-shadow-intro));
  background: linear-gradient(270deg, var(--pp-theme-bg) 20%, rgba(16, 16, 26, 0) 85%);
}
.plane-text:after {
  left: unset;
  right: calc(-1 * var(--pp-w-shadow-intro));
  background: linear-gradient(-270deg, var(--pp-theme-bg) 20%, rgba(16, 16, 26, 0) 85%);
}

/**
 * Sections
 */
.zindex-set > .row-bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, #10101b 0%, rgba(16, 16, 27, 0) 13%, rgba(16, 16, 27, 0) 87%, #10101b 100%);
}

/**
 * Sticky custom
 */
.pp-sticky-custom .n-sticky {
  overflow: visible !important;
}
.pp-sticky-custom .n-sticky > .vc_column-inner {
  position: static !important;
}

.pp-sticky-custom-col > * {
  overflow: visible !important;
}
.pp-sticky-custom-col > * > * {
  height: 100%;
}

.pp-img-sticky-parent {
  position: sticky;
  top: 140px;
  display: inline-block;
}

/*
 * Ico logo about us
 */
.ico-logo-medium {
  width: auto;
  height: 50px !important;
}

/**
 * News
 */
body.material:not([data-button-style^=rounded]) .nectar-recent-post-slide .nectar-button.has-icon.large:not(.see-through):not(.see-through-2):not(.see-through-3) {
  padding-right: 40px;
  padding-left: 40px;
  text-align: center;
}
body.material:not([data-button-style^=rounded]) .nectar-recent-post-slide .nectar-button.has-icon span {
  transform: translateX(0);
}
body.material:not([data-button-style^=rounded]) .nectar-recent-post-slide .nectar-button.has-icon i {
  display: none !important;
}

.blog-recent.columns-2 {
  padding-bottom: 50px !important;
  margin-bottom: 25px !important;
}
@media (max-width: 999px) {
  .blog-recent.columns-2 {
    margin-bottom: 100px !important;
  }
}

.main-content > .row > .wpb_row:not(.full-width-content) .nectar-recent-posts-single_featured > div:before,
body .nectar-recent-post-slide:before {
  content: "" !important;
  display: inline-block !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(5, 4, 15, 0.5098039216);
}

.blog-recent[data-style=title_only] .post-header {
  width: 90%;
  left: 0;
}

.post .post-header h1, .post .post-header h2 {
  font-family: var(--pp-theme-ff);
  text-transform: uppercase;
}

.blog-recent[data-style=title_only] .meta {
  margin-bottom: 20px;
}

.blog-recent[data-style=title_only] .col:hover .post-header .title {
  background-image: var(--pp-btn-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nectar-recent-posts-single_featured .grav-wrap .text a {
  font-weight: 400;
  font-size: calc(clamp(16px, 15.2957746479px + 0.1877934272vw, 18px) * var(--pp-zoom-font-multiplier)) !important;
  line-height: calc(clamp(23px, 21.5915492958px + 0.3755868545vw, 27px) * var(--pp-zoom-font-multiplier)) !important;
  letter-spacing: 5px;
  font-family: var(--pp-theme-ff2) !important;
  text-transform: uppercase;
}

.post .post-header h1,
.post .post-header h2 {
  font-size: calc(clamp(20px, 15.2957746479px + 0.1877934272vw, 24px) * var(--pp-zoom-font-multiplier)) !important;
}

.nectar-recent-posts-single_featured .inner-wrap {
  width: 80%;
}
.nectar-recent-posts-single_featured h2 {
  line-height: 0.5;
}
.nectar-recent-posts-single_featured h2 * {
  text-transform: uppercase;
  font-family: var(--pp-theme-ff) !important;
  font-weight: 400;
  font-size: calc(clamp(20px, 15.2957746479px + 0.1877934272vw, 24px) * var(--pp-zoom-font-multiplier)) !important;
}

/**
 * Forms
 */
@media (min-width: 1000px) {
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix {
    width: 39.666667%;
    width: 40.666667%;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix:last-child {
    margin-left: 1% !important;
    margin-left: 0.5% !important;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix:first-child {
    margin-right: 1% !important;
    margin-right: 0.5% !important;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix + .wpb_column .vc_column-inner > .wpb_wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix + .wpb_column .vc_column-inner > .wpb_wrapper > * {
    width: 100% !important;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column:has(+ .custom-margin-fix) .vc_column-inner > .wpb_wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }
  html body .vc_row-fluid > .span_12 > .wpb_column:has(+ .custom-margin-fix) .vc_column-inner > .wpb_wrapper > * {
    width: 100% !important;
  }
}
@media (max-width: 999px) {
  html body .vc_row-fluid > .span_12 > .wpb_column.custom-margin-fix {
    margin-left: 1% !important;
    margin-right: 1% !important;
    max-width: 98% !important;
  }
}
/**
 * Fleet
 */
body.klasjet-theme .section-content.section-fleet-hero .row-bg-wrap .row-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1000px) {
  body.klasjet-theme .section-content.section-fleet-hero .row-bg-wrap .row-bg {
    background-size: contain;
  }
}
@media (max-width: 999px) {
  body.klasjet-theme .section-content.section-fleet-hero .row-bg-wrap .row-bg {
    background-position: 85% center;
  }
}

body.klasjet-theme .title-fleet h1 span {
  font-family: var(--pp-theme-ff);
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body.klasjet-theme.single-post_fleet .plane-specs-item .plane-spec {
  font-family: var(--pp-theme-ff);
  font-size: 35px;
  line-height: 49px;
  text-transform: uppercase;
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body.klasjet-theme.single-post_fleet .plane-specs-item .plane-value {
  font-size: 18px;
  line-height: 30px;
  color: var(--pp-theme-color-white);
}

body.klasjet-theme.single-post_fleet .nav-tabs li.nav-item a.nav-link {
  border-bottom-width: 2px;
}
body.klasjet-theme.single-post_fleet .nav-tabs li.nav-item a.nav-link.active {
  background-image: var(--pp-btn-gold-gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-bottom-width: 3px;
}

body.klasjet-theme.single-post_fleet .plane-description-span {
  max-width: 620px;
}

body.klasjet-theme.single-post_fleet .text-bg {
  font-family: var(--pp-theme-ff);
  font-size: clamp(80px, 14.13vw, 271.21px);
  line-height: 1.4;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  bottom: clamp(-90px, -7.8vw, -60px);
}

/**
 * Career Mods
 */
.single-post .container-wrap.no-sidebar:before,
.asgc-content-container:before {
  content: "";
  display: inline-block;
  height: 100px;
  width: 100%;
  position: absolute;
  top: -100px;
  left: 0;
  background: linear-gradient(0deg, var(--pp-theme-bg) 20%, rgba(16, 16, 26, 0) 85%);
  z-index: 9;
  width: 100vw;
  --pp-precalc-fw: calc(100% - 100vw);
  margin-left: calc(var(--pp-precalc-fw) / 2);
}

@media (max-width: 999px) {
  .single-post .container-wrap.no-sidebar:before,
  .asgc-content-container:before {
    height: 50px;
    top: -50px;
  }
}
.asg-careers-container-single .first-section > .row-bg-wrap .inner-wrap .row-bg:before {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  height: 100%;
  background: linear-gradient(to bottom, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to top, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to right, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%), linear-gradient(to left, var(--pp-theme-bg) 0%, rgba(16, 16, 27, 0) 20%);
}
.asg-careers-container-single .first-section > .row-bg-wrap .inner-wrap .row-bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  height: 100%;
  background: linear-gradient(120.16deg, #100F15 16.54%, #121331 133.69%);
  background: var(--pp-theme-bg);
  opacity: 0.6;
}

/**
 * News gallery
 */
.wpb_gallery_slidesflickity_static_height_style {
  position: relative;
}
.wpb_gallery_slidesflickity_static_height_style .cell {
  border-radius: var(--pp-theme-br1);
}
.wpb_gallery_slidesflickity_static_height_style:before, .wpb_gallery_slidesflickity_static_height_style:after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(90deg, var(--pp-theme-bg) 20%, rgba(16, 16, 26, 0) 85%);
}
.wpb_gallery_slidesflickity_static_height_style:after {
  left: unset;
  right: 0;
  transform: scaleX(-1);
}

/**
 * Drag indicator
 */
.nectar-drag-indicator:before {
  visibility: hidden !important;
}

/**
 * Col fixes
 */
@media (max-width: 1199px) and (min-width: 1000px) {
  .custom-col-width-fix {
    width: 60% !important;
  }
}

/**
 * Contact Details Block
 */
.material .pp-contact-details-block .wpb_content_element,
.material .pp-contact-details-block .wpb_row {
  margin-bottom: 0.5em;
}

/*# sourceMappingURL=style.css.map */
