:root {
  --font-primary: font-family: "Urbanist", sans-serif;
  --font-secondary: Lato, sans-serif;
  --font-tertiary: "Source Code Pro", monospace;
  --main-color: #0c8ce9;
  --main-color-hover: #1799f8;
  --secondary-color: #ffffff;
  --secondary-color-hover: #f5f5f5;
  --neutral-800: #232428;
  --neutral-700: #37383c;
  --neutral-600: #4b4c50;
  --neutral-500: #696a6e;
  --neutral-400: #919296;
  --neutral-300: #b9babe;
  --neutral-200: #ebecf0;
  --neutral-100: #ffffff;
  --navBgColor: #ffffff;
  --navTextColor: #000000;
  --navDetailColor: #000000;
  --navMarginColor: #00000014;
  --navBgColorScrolled: #000000;
  --navTextColorScrolled: #ffffff;
  --navDetailColorScrolled: #ffffff;
  --navMarginColorScrolled: #ffffff;
  --nav-height: 74px;
  --langBgColor: #000000;
  --langTextColor: #ffffff;
  --langHoverColor: #323232;
  --fullmenuBgColor: var(--main-color);
  --fullmenuTextColor: #ffffff;
  --fullmenuLinksColor: #ffffff;
  --footerBgColor: #ffffff;
  --footerTextColor: #0b1f3b;
  --footerLinkColor: #0b1f3b;
  --footerLogoAspectRatio: 3/1;
  --footerLogoHeight: 53px;
  --footerLogoMargin: 0 0 20px 0;
  --footerPadding: 108px 0 108px;
  --footerColumnGutter: 6rem;
  --footerTopSectionMargin: 0 0 80px 0;
  --footerTextSize: 12px;
  --footerTitleSize: 16px;
  --footerMarginDivider: 60px 0 0 0;
  --ctaPrimaryColor: #0c8ce9;
  --ctaPrimaryColorHover: #1799f8;
  --ctaTextPrimaryColor: #fff;
  --ctaSecondaryColor: #ffffff;
  --ctaSecondaryColorHover: #f5f5f5;
  --ctaTextSecondaryColor: #0c8ce9;
  --ctaBorderPrimaryColor: #0c8ce9;
  --ctaSvgPrimaryColor: #0c8ce9;
  --ctaSvgPrimaryColorHover: #0c8ce9;
  --ctaSvgSecondaryColor: #ffffff;
  --ctaSvgSecondaryColorHover: #ffffff;
  --ctaFontSizeSmall: 14px;
  --ctaFontSizeMedium: 16px;
  --ctaFontSizeLarge: 18px;
  --ctaPaddingSmall: 10px 20px;
  --ctaPaddingMedium: 10px 25px;
  --ctaPaddingLarge: 12px 34px;
  --ctaSquareRound: 12px;
  --ctaRound: 50px;
  --small-size: 10px;
  --medium-size: 20px;
  --large-size: 30px;
  --extra-lare-size: 40px;
}

@media only screen and (max-width: 991px) {
  :root {
    --nav-height: 64px;
    --footerLogoHeight: 50px;
    --footerPadding: 63px 0 63px;
    --footerTopSectionMargin: 0 0 50px 0;
    --footerTitleSize: 14px;
    --footerCopyrightMargin: 0 0 38px 0;
    --ctaFontSizeSmall: 12px;
    --ctaFontSizeMedium: 14px;
    --ctaFontSizeLarge: 16px;
    --ctaPaddingSmall: 5px 10px;
    --ctaPaddingMedium: 5px 15px;
    --ctaPaddingLarge: 10px 18px;
    --ctaSquareRound: 6px;
    --ctaRound: 25px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --footerPadding: 42px 0 42px;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --nav-height: 54px;
    --footerLogoHeight: 53px;
    --footerTitleSize: 16px;
    --footerCopyrightMargin: 38px 0;
  }
}
/* General and Bootstrap-like classes */
:root {
  /*
  By doing this bootstrap margins and paddings (expressed in rem) will be 2.5px 5px 10px 15px 30px.
  So it is coherent with columns horizontal margins.
  */
  font-size: 62.5%;
}

/* Top and bottom margin proportional to bootstrap columns */
.mt-col-0,
.my-col-0 {
  margin-top: 0vw;
}

.mb-col-0,
.my-col-0 {
  margin-bottom: 0vw;
}

/* Top and bottom padding proportional to bootstrap columns */
.pt-col-0,
.py-col-0 {
  padding-top: 0vw;
}

.pb-col-0,
.py-col-0 {
  padding-bottom: 0vw;
}

/* Top and bottom margin proportional to bootstrap columns */
.mt-col-1,
.my-col-1 {
  margin-top: 8.3333333333vw;
}

.mb-col-1,
.my-col-1 {
  margin-bottom: 8.3333333333vw;
}

/* Top and bottom padding proportional to bootstrap columns */
.pt-col-1,
.py-col-1 {
  padding-top: 8.3333333333vw;
}

.pb-col-1,
.py-col-1 {
  padding-bottom: 8.3333333333vw;
}

/* Top and bottom margin proportional to bootstrap columns */
.mt-col-2,
.my-col-2 {
  margin-top: 16.6666666667vw;
}

.mb-col-2,
.my-col-2 {
  margin-bottom: 16.6666666667vw;
}

/* Top and bottom padding proportional to bootstrap columns */
.pt-col-2,
.py-col-2 {
  padding-top: 16.6666666667vw;
}

.pb-col-2,
.py-col-2 {
  padding-bottom: 16.6666666667vw;
}

/* Top and bottom margin proportional to bootstrap columns */
.mt-col-3,
.my-col-3 {
  margin-top: 25vw;
}

.mb-col-3,
.my-col-3 {
  margin-bottom: 25vw;
}

/* Top and bottom padding proportional to bootstrap columns */
.pt-col-3,
.py-col-3 {
  padding-top: 25vw;
}

.pb-col-3,
.py-col-3 {
  padding-bottom: 25vw;
}

/* Top and bottom margin equal to half column */
.mt-half-col,
.my-half-col {
  margin-top: 4.166667vw;
}

.mb-half-col,
.my-half-col {
  margin-bottom: 4.166667vw;
}

/* Top and bottom padding equal to half column */
.pt-half-col,
.py-half-col {
  padding-top: 4.166667vw;
}

.pb-half-col,
.py-half-col {
  padding-bottom: 4.166667vw;
}

/* Left and right margin equal to half column */
.ml-half-col,
.mx-half-col {
  margin-left: 4.166667vw;
}

.mr-half-col,
.mx-half-col {
  margin-right: 4.166667vw;
}

/* Left and right padding equal to half column */
.pl-half-col,
.px-half-col {
  padding-left: 4.166667vw;
}

.pr-half-col,
.px-half-col {
  padding-right: 4.166667vw;
}

@media (min-width: 576px) {
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-sm-0,
  .my-col-sm-0 {
    margin-top: 0vw;
  }
  .mb-col-sm-0,
  .my-col-sm-0 {
    margin-bottom: 0vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-sm-0,
  .py-col-sm-0 {
    padding-top: 0vw;
  }
  .pb-col-sm-0,
  .py-col-sm-0 {
    padding-bottom: 0vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-sm-1,
  .my-col-sm-1 {
    margin-top: 8.3333333333vw;
  }
  .mb-col-sm-1,
  .my-col-sm-1 {
    margin-bottom: 8.3333333333vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-sm-1,
  .py-col-sm-1 {
    padding-top: 8.3333333333vw;
  }
  .pb-col-sm-1,
  .py-col-sm-1 {
    padding-bottom: 8.3333333333vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-sm-2,
  .my-col-sm-2 {
    margin-top: 16.6666666667vw;
  }
  .mb-col-sm-2,
  .my-col-sm-2 {
    margin-bottom: 16.6666666667vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-sm-2,
  .py-col-sm-2 {
    padding-top: 16.6666666667vw;
  }
  .pb-col-sm-2,
  .py-col-sm-2 {
    padding-bottom: 16.6666666667vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-sm-3,
  .my-col-sm-3 {
    margin-top: 25vw;
  }
  .mb-col-sm-3,
  .my-col-sm-3 {
    margin-bottom: 25vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-sm-3,
  .py-col-sm-3 {
    padding-top: 25vw;
  }
  .pb-col-sm-3,
  .py-col-sm-3 {
    padding-bottom: 25vw;
  }
  /* Top and bottom margin equal to half column */
  .mt-half-col-sm,
  .my-half-col-sm {
    margin-top: 4.166667vw;
  }
  .mb-half-col-sm,
  .my-half-col-sm {
    margin-bottom: 4.166667vw;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col-sm,
  .py-half-col-sm {
    padding-top: 4.166667vw;
  }
  .pb-half-col-sm,
  .py-half-col-sm {
    padding-bottom: 4.166667vw;
  }
  /* Left and right margin equal to half column */
  .ml-half-col-sm,
  .mx-half-col-sm {
    margin-left: 4.166667vw;
  }
  .mr-half-col-sm,
  .mx-half-col-sm {
    margin-right: 4.166667vw;
  }
  /* Left and right padding equal to half column */
  .pl-half-col-sm,
  .px-half-col-sm {
    padding-left: 4.166667vw;
  }
  .pr-half-col-sm,
  .px-half-col-sm {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 768px) {
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-md-0,
  .my-col-md-0 {
    margin-top: 0vw;
  }
  .mb-col-md-0,
  .my-col-md-0 {
    margin-bottom: 0vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-md-0,
  .py-col-md-0 {
    padding-top: 0vw;
  }
  .pb-col-md-0,
  .py-col-md-0 {
    padding-bottom: 0vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-md-1,
  .my-col-md-1 {
    margin-top: 8.3333333333vw;
  }
  .mb-col-md-1,
  .my-col-md-1 {
    margin-bottom: 8.3333333333vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-md-1,
  .py-col-md-1 {
    padding-top: 8.3333333333vw;
  }
  .pb-col-md-1,
  .py-col-md-1 {
    padding-bottom: 8.3333333333vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-md-2,
  .my-col-md-2 {
    margin-top: 16.6666666667vw;
  }
  .mb-col-md-2,
  .my-col-md-2 {
    margin-bottom: 16.6666666667vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-md-2,
  .py-col-md-2 {
    padding-top: 16.6666666667vw;
  }
  .pb-col-md-2,
  .py-col-md-2 {
    padding-bottom: 16.6666666667vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-md-3,
  .my-col-md-3 {
    margin-top: 25vw;
  }
  .mb-col-md-3,
  .my-col-md-3 {
    margin-bottom: 25vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-md-3,
  .py-col-md-3 {
    padding-top: 25vw;
  }
  .pb-col-md-3,
  .py-col-md-3 {
    padding-bottom: 25vw;
  }
  /* Top and bottom margin equal to half column */
  .mt-half-col-md,
  .my-half-col-md {
    margin-top: 4.166667vw;
  }
  .mb-half-col-md,
  .my-half-col-md {
    margin-bottom: 4.166667vw;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col-md,
  .py-half-col-md {
    padding-top: 4.166667vw;
  }
  .pb-half-col-md,
  .py-half-col-md {
    padding-bottom: 4.166667vw;
  }
  /* Left and right margin equal to half column */
  .ml-half-col-md,
  .mx-half-col-md {
    margin-left: 4.166667vw;
  }
  .mr-half-col-md,
  .mx-half-col-md {
    margin-right: 4.166667vw;
  }
  /* Left and right padding equal to half column */
  .pl-half-col-md,
  .px-half-col-md {
    padding-left: 4.166667vw;
  }
  .pr-half-col-md,
  .px-half-col-md {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 992px) {
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-lg-0,
  .my-col-lg-0 {
    margin-top: 0vw;
  }
  .mb-col-lg-0,
  .my-col-lg-0 {
    margin-bottom: 0vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-lg-0,
  .py-col-lg-0 {
    padding-top: 0vw;
  }
  .pb-col-lg-0,
  .py-col-lg-0 {
    padding-bottom: 0vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-lg-1,
  .my-col-lg-1 {
    margin-top: 8.3333333333vw;
  }
  .mb-col-lg-1,
  .my-col-lg-1 {
    margin-bottom: 8.3333333333vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-lg-1,
  .py-col-lg-1 {
    padding-top: 8.3333333333vw;
  }
  .pb-col-lg-1,
  .py-col-lg-1 {
    padding-bottom: 8.3333333333vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-lg-2,
  .my-col-lg-2 {
    margin-top: 16.6666666667vw;
  }
  .mb-col-lg-2,
  .my-col-lg-2 {
    margin-bottom: 16.6666666667vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-lg-2,
  .py-col-lg-2 {
    padding-top: 16.6666666667vw;
  }
  .pb-col-lg-2,
  .py-col-lg-2 {
    padding-bottom: 16.6666666667vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-lg-3,
  .my-col-lg-3 {
    margin-top: 25vw;
  }
  .mb-col-lg-3,
  .my-col-lg-3 {
    margin-bottom: 25vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-lg-3,
  .py-col-lg-3 {
    padding-top: 25vw;
  }
  .pb-col-lg-3,
  .py-col-lg-3 {
    padding-bottom: 25vw;
  }
  /* Top and bottom margin equal to half column */
  .mt-half-col-lg,
  .my-half-col-lg {
    margin-top: 4.166667vw;
  }
  .mb-half-col-lg,
  .my-half-col-lg {
    margin-bottom: 4.166667vw;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col-lg,
  .py-half-col-lg {
    padding-top: 4.166667vw;
  }
  .pb-half-col-lg,
  .py-half-col-lg {
    padding-bottom: 4.166667vw;
  }
  /* Left and right margin equal to half column */
  .ml-half-col-lg,
  .mx-half-col-lg {
    margin-left: 4.166667vw;
  }
  .mr-half-col-lg,
  .mx-half-col-lg {
    margin-right: 4.166667vw;
  }
  /* Left and right padding equal to half column */
  .pl-half-col-lg,
  .px-half-col-lg {
    padding-left: 4.166667vw;
  }
  .pr-half-col-lg,
  .px-half-col-lg {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1200px) {
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xl-0,
  .my-col-xl-0 {
    margin-top: 0vw;
  }
  .mb-col-xl-0,
  .my-col-xl-0 {
    margin-bottom: 0vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xl-0,
  .py-col-xl-0 {
    padding-top: 0vw;
  }
  .pb-col-xl-0,
  .py-col-xl-0 {
    padding-bottom: 0vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xl-1,
  .my-col-xl-1 {
    margin-top: 8.3333333333vw;
  }
  .mb-col-xl-1,
  .my-col-xl-1 {
    margin-bottom: 8.3333333333vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xl-1,
  .py-col-xl-1 {
    padding-top: 8.3333333333vw;
  }
  .pb-col-xl-1,
  .py-col-xl-1 {
    padding-bottom: 8.3333333333vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xl-2,
  .my-col-xl-2 {
    margin-top: 16.6666666667vw;
  }
  .mb-col-xl-2,
  .my-col-xl-2 {
    margin-bottom: 16.6666666667vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xl-2,
  .py-col-xl-2 {
    padding-top: 16.6666666667vw;
  }
  .pb-col-xl-2,
  .py-col-xl-2 {
    padding-bottom: 16.6666666667vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xl-3,
  .my-col-xl-3 {
    margin-top: 25vw;
  }
  .mb-col-xl-3,
  .my-col-xl-3 {
    margin-bottom: 25vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xl-3,
  .py-col-xl-3 {
    padding-top: 25vw;
  }
  .pb-col-xl-3,
  .py-col-xl-3 {
    padding-bottom: 25vw;
  }
  /* Top and bottom margin equal to half column */
  .mt-half-col-xl,
  .my-half-col-xl {
    margin-top: 4.166667vw;
  }
  .mb-half-col-xl,
  .my-half-col-xl {
    margin-bottom: 4.166667vw;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col-xl,
  .py-half-col-xl {
    padding-top: 4.166667vw;
  }
  .pb-half-col-xl,
  .py-half-col-xl {
    padding-bottom: 4.166667vw;
  }
  /* Left and right margin equal to half column */
  .ml-half-col-xl,
  .mx-half-col-xl {
    margin-left: 4.166667vw;
  }
  .mr-half-col-xl,
  .mx-half-col-xl {
    margin-right: 4.166667vw;
  }
  /* Left and right padding equal to half column */
  .pl-half-col-xl,
  .px-half-col-xl {
    padding-left: 4.166667vw;
  }
  .pr-half-col-xl,
  .px-half-col-xl {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1400px) {
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xxl-0,
  .my-col-xxl-0 {
    margin-top: 0vw;
  }
  .mb-col-xxl-0,
  .my-col-xxl-0 {
    margin-bottom: 0vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xxl-0,
  .py-col-xxl-0 {
    padding-top: 0vw;
  }
  .pb-col-xxl-0,
  .py-col-xxl-0 {
    padding-bottom: 0vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xxl-1,
  .my-col-xxl-1 {
    margin-top: 8.3333333333vw;
  }
  .mb-col-xxl-1,
  .my-col-xxl-1 {
    margin-bottom: 8.3333333333vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xxl-1,
  .py-col-xxl-1 {
    padding-top: 8.3333333333vw;
  }
  .pb-col-xxl-1,
  .py-col-xxl-1 {
    padding-bottom: 8.3333333333vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xxl-2,
  .my-col-xxl-2 {
    margin-top: 16.6666666667vw;
  }
  .mb-col-xxl-2,
  .my-col-xxl-2 {
    margin-bottom: 16.6666666667vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xxl-2,
  .py-col-xxl-2 {
    padding-top: 16.6666666667vw;
  }
  .pb-col-xxl-2,
  .py-col-xxl-2 {
    padding-bottom: 16.6666666667vw;
  }
  /* Top and bottom margin proportional to bootstrap columns */
  .mt-col-xxl-3,
  .my-col-xxl-3 {
    margin-top: 25vw;
  }
  .mb-col-xxl-3,
  .my-col-xxl-3 {
    margin-bottom: 25vw;
  }
  /* Top and bottom padding proportional to bootstrap columns */
  .pt-col-xxl-3,
  .py-col-xxl-3 {
    padding-top: 25vw;
  }
  .pb-col-xxl-3,
  .py-col-xxl-3 {
    padding-bottom: 25vw;
  }
  /* Top and bottom margin equal to half column */
  .mt-half-col-xxl,
  .my-half-col-xxl {
    margin-top: 4.166667vw;
  }
  .mb-half-col-xxl,
  .my-half-col-xxl {
    margin-bottom: 4.166667vw;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col-xxl,
  .py-half-col-xxl {
    padding-top: 4.166667vw;
  }
  .pb-half-col-xxl,
  .py-half-col-xxl {
    padding-bottom: 4.166667vw;
  }
  /* Left and right margin equal to half column */
  .ml-half-col-xxl,
  .mx-half-col-xxl {
    margin-left: 4.166667vw;
  }
  .mr-half-col-xxl,
  .mx-half-col-xxl {
    margin-right: 4.166667vw;
  }
  /* Left and right padding equal to half column */
  .pl-half-col-xxl,
  .px-half-col-xxl {
    padding-left: 4.166667vw;
  }
  .pr-half-col-xxl,
  .px-half-col-xxl {
    padding-right: 4.166667vw;
  }
}
.opacity-0 {
  opacity: 0;
}

.opacity-half {
  opacity: 0.5;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-all {
  pointer-events: all;
}

.cursor-pointer {
  cursor: pointer;
}

.text-decoration-none {
  text-decoration: none;
}

.text-black,
a.text-black {
  color: #000;
}
.text-black:hover,
a.text-black:hover {
  color: #000;
}

.bg-transparent {
  background-color: transparent;
}

.filter-invert {
  filter: invert(1);
}

b,
strong {
  font-weight: 600;
}

.user-select-none {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome, Edge, Opera and Firefox */
}

.outline-none {
  outline: 0;
}
.outline-none:focus-visible {
  outline: 0;
}

/* Scale on hover, needs to be inside an element with position relative + overflow hidden */
.scale-on-hover {
  transition: transform 0.35s ease-in-out;
}
.scale-on-hover:hover {
  transform: scale(1.05);
}

.underlined-on-hover .underline-element {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.35s ease-in-out;
}
.underlined-on-hover .underline-element.underline-element-white {
  background-color: rgba(255, 255, 255, 0.2);
}
.underlined-on-hover:hover .underline-element {
  transform: scaleX(1);
}

/* Zoom image effect on scroll, needs to be inside an element with position relative + overflow hidden */
.zoom-out-intro-effect {
  display: block;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: transform 0.45s ease-in-out 0.2s;
}
.zoom-out-intro-effect.zoomed {
  transform: scale(1.05);
}

/* Fade in element */
.fade-in-intro-effect {
  display: block;
  transform: scale(1);
  opacity: 1;
  transform-origin: center bottom;
  transition: transform 0.45s ease-in-out 0.2s, opacity 0.45s ease-in-out 0.2s;
}
.fade-in-intro-effect.faded {
  transform: scale(0.98);
  opacity: 0;
}

/* Zoom image on hover */
.zoom-img-on-hover {
  overflow: hidden;
}
.zoom-img-on-hover .img-to-zoom,
.zoom-img-on-hover .img-to-zoom-sm {
  transform: scale(1);
  transition: transform 0.35s ease-in-out;
}
.zoom-img-on-hover .img-to-zoom.fix-browser-margin,
.zoom-img-on-hover .img-to-zoom-sm.fix-browser-margin {
  transform: scale(1.01);
}
.zoom-img-on-hover:hover .img-to-zoom {
  transform: scale(1.055);
}
.zoom-img-on-hover:hover .img-to-zoom-sm {
  transform: scale(1.015);
}

.w-fit-content {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.h-fit-content {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.min-w-auto {
  min-width: auto !important;
}

.min-h-auto {
  min-height: auto !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.z-index-5 {
  z-index: 5 !important;
}

.z-index-6 {
  z-index: 6 !important;
}

.z-index-7 {
  z-index: 7 !important;
}

.z-index-8 {
  z-index: 8 !important;
}

.z-index-9 {
  z-index: 9 !important;
}

.z-index-100 {
  z-index: 100 !important;
}

.z-index-200 {
  z-index: 200 !important;
}

.z-index-300 {
  z-index: 300 !important;
}

.z-index-400 {
  z-index: 400 !important;
}

.z-index-500 {
  z-index: 500 !important;
}

.z-index-600 {
  z-index: 600 !important;
}

.z-index-700 {
  z-index: 700 !important;
}

.z-index-800 {
  z-index: 800 !important;
}

.z-index-900 {
  z-index: 900 !important;
}

.z-index-1000 {
  z-index: 1000 !important;
}

.z-index-1100 {
  z-index: 1100 !important;
}

.row-gap-10 {
  row-gap: 10px !important;
}

.row-gap-20 {
  row-gap: 20px !important;
}

.row-gap-30 {
  row-gap: 30px !important;
}

.row-gap-40 {
  row-gap: 40px !important;
}

.row-gap-50 {
  row-gap: 50px !important;
}

.row-gap-60 {
  row-gap: 60px !important;
}

.row-gap-70 {
  row-gap: 70px !important;
}

.row-gap-80 {
  row-gap: 80px !important;
}

.row-gap-90 {
  row-gap: 90px !important;
}

.row-gap-100 {
  row-gap: 100px !important;
}

.column-gap-10 {
  -moz-column-gap: 10px !important;
       column-gap: 10px !important;
}

.column-gap-20 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.column-gap-30 {
  -moz-column-gap: 30px !important;
       column-gap: 30px !important;
}

.column-gap-40 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.column-gap-50 {
  -moz-column-gap: 50px !important;
       column-gap: 50px !important;
}

.column-gap-60 {
  -moz-column-gap: 60px !important;
       column-gap: 60px !important;
}

.column-gap-70 {
  -moz-column-gap: 70px !important;
       column-gap: 70px !important;
}

.column-gap-80 {
  -moz-column-gap: 80px !important;
       column-gap: 80px !important;
}

.column-gap-90 {
  -moz-column-gap: 90px !important;
       column-gap: 90px !important;
}

.column-gap-100 {
  -moz-column-gap: 100px !important;
       column-gap: 100px !important;
}

.hide {
  transform: translateY(-100%);
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 53px;
  height: 53px;
  border: 1px solid var(--neutral-400);
  color: #fff;
  border-radius: 30px;
}

.swiper-button {
  cursor: pointer;
}

.m-w-100 {
  max-width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
}

#wp-contact-form input {
  color: #000;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#wp-contact-form ::-moz-placeholder {
  color: #000;
}
#wp-contact-form ::placeholder {
  color: #000;
}

.error-page-container {
  display: flex;
  flex-direction: column;
  color: #000;
  padding-top: var(--nav-height);
}
.error-page-container .error_number {
  font-size: 156px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-page-container .error_number span {
  font-size: 2.604vw;
  font-weight: 700;
  color: #000;
}
.error-page-container .error_number span.number {
  font-size: 17.188vw;
  line-height: 0.7;
}
.error-page-container .error_number hr {
  margin-top: 40px;
  margin-bottom: 0;
  width: 50px;
}
.error-page-container .error_title {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
}
.error-page-container .error_description {
  font-size: 20px;
  font-weight: 400;
}
.error-page-container .error_description a {
  color: #000;
}
.error-page-container .error_description a:hover {
  color: #292929;
}

.error-outer-container {
  background-color: #fff;
}

@media only screen and (max-width: 575px) {
  .mt-half-col,
  .my-half-col {
    margin-top: 4rem;
  }
  .mb-half-col,
  .my-half-col {
    margin-bottom: 4rem;
  }
  /* Top and bottom padding equal to half column */
  .pt-half-col,
  .py-half-col {
    padding-top: 4rem;
  }
  .pb-half-col,
  .py-half-col {
    padding-bottom: 4rem;
  }
  /* Left and right margin equal to half column */
  .ml-half-col,
  .mx-half-col {
    margin-left: 4rem;
  }
  .mr-half-col,
  .mx-half-col {
    margin-right: 4rem;
  }
  /* Left and right padding equal to half column */
  .pl-half-col,
  .px-half-col {
    padding-left: 4rem;
  }
  .pr-half-col,
  .px-half-col {
    padding-right: 4rem;
  }
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .container-fluid .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
/*
--------------------------------------
                TITLES
--------------------------------------
*/
.title-xl,
.title-l,
.title-m,
.title-d,
.title-s,
.title-xs {
  font-family: var(--font-primary);
  font-weight: 700;
}

.title-xl {
  font-size: 72px;
  line-height: 90px;
}

.title-l {
  font-size: 60px;
  line-height: 72px;
}

.title-m {
  font-size: 48px;
  line-height: 60px;
}

.title-d {
  font-size: 36px;
  line-height: 44px;
}

.title-s {
  font-size: 30px;
  line-height: 38px;
}

.title-xs {
  font-size: 24px;
  line-height: 32px;
}

/*
--------------------------------------
                BODY
--------------------------------------
*/
.font-xl,
.font-l,
.font-m,
.font-s,
.font-xs {
  font-family: var(--font-primary);
}

.font-xl {
  font-size: 20px;
  line-height: 30px;
}

.font-l {
  font-size: 18px;
  line-height: 28px;
}

.font-m {
  font-size: 16px;
  line-height: 24px;
}

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

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

@media only screen and (max-width: 991px) {
  /*
  --------------------------------------
                  TITLES
  --------------------------------------
  */
  .title-xl {
    font-size: 48px;
    line-height: 60px;
  }
  .title-l {
    font-size: 40px;
    line-height: 50px;
  }
  .title-m {
    font-size: 38px;
    line-height: 48px;
  }
  .title-d {
    font-size: 30px;
    line-height: 38px;
  }
  .title-s {
    font-size: 28px;
    line-height: 34px;
  }
  .title-xs {
    font-size: 20px;
    line-height: 28px;
  }
  /*
  --------------------------------------
                  BODY
  --------------------------------------
  */
  .font-xl {
    font-size: 18px;
    line-height: 28px;
  }
  .font-l {
    font-size: 16px;
    line-height: 24px;
  }
  .font-m {
    font-size: 14px;
    line-height: 20px;
  }
  .font-s {
    font-size: 12px;
    line-height: 18px;
  }
  .font-xs {
    font-size: 10px;
    line-height: 16px;
  }
}
.nav-search-section {
  transform: translateY(-100%);
  transition: all 0.35s;
  position: fixed;
  width: 100%;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--main-color-hover);
}
.nav-search-section .search-form {
  margin-bottom: 0;
}
.nav-search-section .search-form .input-text {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.nav-search-section .search-form .input-text input {
  background-color: var(--main-color);
  color: #ffffff;
  padding: 10px;
  border: 0;
  border-radius: 100px;
  font-weight: 600;
  outline: 0;
  box-shadow: none;
}
.nav-search-section .search-form .input-text ::-moz-placeholder {
  border: 0;
  color: rgba(255, 255, 255, 0.5176470588);
}
.nav-search-section .search-form .input-text ::placeholder {
  border: 0;
  color: rgba(255, 255, 255, 0.5176470588);
}
.nav-search-section .search-form .input-text .search-button {
  background-color: var(--main-color);
  color: #ffffff;
  padding: 10px;
  border: 0;
  border-radius: 100px;
  outline: 0;
  box-shadow: none;
  aspect-ratio: 1/1;
}
.nav-search-section .search-form .input-text .search-button i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-search-section.active {
  transform: translateY(var(--nav-height));
  transition: all 0.35s;
}

@media only screen and (max-width: 991px) {
  .nav-search-section.active {
    transform: translateY(var(--nav-height));
  }
}
@media only screen and (max-width: 575px) {
  .nav-search-section.active {
    transform: translateY(var(--nav-height));
  }
}
.newsletter-outer-container {
  background-color: var(--main-color);
  color: var(--neutral-100);
  font-family: var(--font-primary);
  margin-block: 40px;
  padding-inline: 0px;
}
.newsletter-outer-container .newsletter-inner-container {
  padding-block: 60px;
}
.newsletter-outer-container .newsletter-inner-container h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 20px;
}
.newsletter-outer-container .newsletter-inner-container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container {
  padding-top: 40px;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input {
  position: relative;
  background-color: transparent;
  color: var(--neutral-100);
  border: 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding: 7px 0;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::-moz-placeholder {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-100);
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::placeholder {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-100);
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input:not(:-moz-placeholder) {
  outline: 0;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input:focus, .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input:not(:placeholder-shown) {
  outline: 0;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container {
  margin-top: 20px;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container input:checked ~ .contact-checkmark {
  background-color: transparent;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container input:checked ~ .contact-checkmark:after {
  display: block;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .contact-checkmark {
  display: flex;
  justify-content: center;
  height: 18px;
  width: 18px;
  border-radius: 3px;
  border: 1px solid #fff;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .contact-checkmark:after {
  content: "";
  display: none;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .contact-checkmark:after {
  width: 6px;
  height: 11px;
  margin-top: 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .newsletter-privacy {
  margin-left: 19px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .newsletter-privacy a {
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 700;
}
.newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .sended {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.newsletter-outer-container input:-webkit-autofill,
.newsletter-outer-container input:-webkit-autofill:hover,
.newsletter-outer-container input:-webkit-autofill:focus,
.newsletter-outer-container textarea:-webkit-autofill,
.newsletter-outer-container textarea:-webkit-autofill:hover,
.newsletter-outer-container textarea:-webkit-autofill:focus,
.newsletter-outer-container select:-webkit-autofill,
.newsletter-outer-container select:-webkit-autofill:hover,
.newsletter-outer-container select:-webkit-autofill:focus {
  border-bottom: 0;
  -webkit-text-fill-color: var(--neutral-100);
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #9b9b9b !important;
  font-weight: bold;
}

@media only screen and (max-width: 991px) {
  .newsletter-outer-container .newsletter-inner-container {
    padding-block: 40px;
  }
  .newsletter-outer-container .newsletter-inner-container h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .newsletter-outer-container .newsletter-inner-container p {
    font-size: 14px;
    line-height: 20px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input {
    font-size: 14px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .newsletter-privacy {
    font-size: 10px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .newsletter-outer-container {
    margin-block: 10px;
  }
  .newsletter-outer-container .newsletter-inner-container {
    padding: 30px;
  }
}
#container-yt-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.627);
  z-index: 1090;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
#container-yt-video.open {
  opacity: 1;
}

#video-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#close-yt-video {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  cursor: pointer;
}

.play-video-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 125px !important;
  transition: transform 0.35s ease-in-out;
  cursor: pointer;
}

.play-video-img:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Vimeo modal */
#container-vimeo-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

#container-vimeo-video.open {
  opacity: 1;
}

#close-vimeo-video {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 10;
}

#container-vimeo-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1090;
}
#container-vimeo-video iframe {
  height: 90vh !important;
  width: 90% !important;
  top: 4% !important;
}

.player {
  height: 90% !important;
}

@media only screen and (max-width: 575px) {
  #close-yt-video,
  #close-vimeo-video {
    right: 16px;
    top: 16px;
  }
}
.available-langs-list {
  border-radius: 0;
  opacity: 1 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8.333vw;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.available-langs-list.dropdown-menu {
  top: calc(var(--nav-height) / 2.5);
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 0;
  background-color: transparent;
}
.available-langs-list.dropdown-menu .lang {
  line-height: 1;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: #4a494a;
  text-decoration: none;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  transition: all 0.3s ease-out;
  font-size: 1.4rem;
  font-weight: 700;
}

.language-menu {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.extra-select-lang {
  display: flex;
}
.extra-select-lang .extra-select-lang-bg-transparent {
  background-color: transparent;
  width: 70%;
  top: 0;
}
.extra-select-lang .extra-select-lang-bg-black {
  height: 15px;
  background-color: #000;
  width: 30%;
  top: 0;
}

.rectangle-menu-lang {
  background-color: #fff;
  color: transparent;
  top: -15px;
  left: -1px;
  height: 14px;
  width: 65% !important;
  text-align: center;
}

.cta {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.35s;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--ctaTextPrimaryColor);
  border: 1px solid transparent;
  cursor: pointer;
}
.cta span {
  line-height: 1;
}
.cta:hover {
  color: var(--ctaTextPrimaryColor);
}
.cta:hover .cta-svg-primary {
  stroke: var(--ctaSvgPrimaryColorHover);
}
.cta:hover .cta-svg-primary.cta-svg-large {
  fill: var(--ctaSvgPrimaryColorHover);
}
.cta:hover .cta-svg-secondary {
  stroke: var(--ctaSvgSecondaryColorHover);
}
.cta:hover .cta-svg-secondary.cta-svg-large {
  fill: var(--ctaSvgSecondaryColorHover);
}
.cta.cta-bg-hover-primary:hover {
  background-color: var(--ctaPrimaryColorHover);
  color: var(--ctaTextPrimaryColorHover);
}
.cta.cta-bg-hover-secondary:hover {
  background-color: var(--ctaSecondaryColorHover);
  color: var(--ctaTextSecondaryColorHover);
}
.cta.cta-bg-hover-filter:hover {
  filter: grayscale(0.2);
}

.cta-bg-primary {
  background-color: var(--ctaPrimaryColor);
  color: var(--ctaTextPrimaryColor);
}
.cta-bg-primary.cta-bg-hover-custom, .cta-bg-primary.cta-bg-hover-filter {
  color: var(--ctaTextPrimaryColor);
}

.cta-bg-secondary {
  background-color: var(--ctaSecondaryColor);
  color: var(--ctaTextSecondaryColor);
}
.cta-bg-secondary.cta-bg-hover-custom, .cta-bg-secondary.cta-bg-hover-filter {
  color: var(--ctaTextSecondaryColor);
}

.cta-bg-none {
  background-color: transparent;
  color: var(--ctaPrimaryColor);
}
.cta-bg-none.cta-border-none {
  padding: 0 !important;
}
.cta-bg-none:hover {
  color: var(--ctaPrimaryColorHover);
  background-color: transparent;
}
.cta-bg-none:hover .cta-svg-primary {
  stroke: var(--ctaSvgPrimaryColor);
}
.cta-bg-none:hover .cta-svg-primary.cta-svg-large {
  fill: var(--ctaSvgPrimaryColor);
}
.cta-bg-none:hover .cta-svg-secondary {
  stroke: var(--ctaSvgSecondaryColor);
}
.cta-bg-none:hover .cta-svg-secondary.cta-svg-large {
  fill: var(--ctaSvgSecondaryColor);
}

.cta-font-regular {
  font-weight: 400;
}

.cta-font-bold {
  font-weight: 700;
}

.cta-font-underline {
  text-decoration: underline;
}

.cta-text-only {
  color: var(--ctaPrimaryColor) !important;
  background-color: transparent;
  border: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cta-text-only:hover {
  color: var(--ctaPrimaryColorHover) !important;
}

.cta-small {
  padding: var(--ctaPaddingSmall);
  font-size: var(--ctaFontSizeSmall);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.cta-small .cta-font-underline {
  font-size: 16px;
}
.cta-small .cta-icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.cta-medium {
  padding: var(--ctaPaddingMedium);
  font-size: var(--ctaFontSizeMedium);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.cta-medium .cta-font-underline {
  font-size: 18px;
}
.cta-medium .cta-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.cta-large {
  padding: var(--ctaPaddingLarge);
  font-size: var(--ctaFontSizeLarge);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.cta-large .cta-font-underline {
  font-size: 20px;
}
.cta-large .cta-icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.cta-border-primary {
  border-color: var(--ctaBorderPrimaryColor);
}

.cta-border-secondary {
  border-color: var(--ctaBorderSecondaryColor);
}

.cta-square {
  border-radius: 0px;
}

.cta-square-round {
  border-radius: var(--ctaSquareRound);
}

.cta-round {
  border-radius: var(--ctaRound);
}

.cta-svg-white {
  stroke: #fff;
}
.cta-svg-white.cta-svg-large {
  fill: #fff;
}

.cta-svg-dark {
  stroke: var(--neutral-800);
}
.cta-svg-dark.cta-svg-large {
  fill: var(--neutral-800);
}

.cta-svg-primary {
  stroke: var(--ctaSvgPrimaryColor);
}
.cta-svg-primary.cta-svg-large {
  fill: var(--ctaSvgPrimaryColor);
}

.cta-svg-secondary {
  stroke: var(--ctaSvgSecondaryColor);
}
.cta-svg-secondary.cta-svg-large {
  fill: var(--ctaSvgSecondaryColor);
}

@media only screen and (max-width: 991px) {
  .cta-small .cta-font-underline {
    font-size: 12px;
  }
  .cta-medium .cta-font-underline {
    font-size: 14px;
  }
  .cta-large .cta-font-underline {
    font-size: 16px;
  }
}
.ptdc-container {
  padding: 100px 0;
}
.ptdc-container.ptdc-bg-light {
  background-color: #ffffff;
}
.ptdc-container.ptdc-bg-dark {
  background-color: #555555;
}

.ptdc {
  display: flex;
  flex-direction: column;
  color: var(--neutral-800);
}
.ptdc h4 {
  font-weight: 400;
  font-size: 16px;
  color: var(--neutral-800);
}
.ptdc h3 {
  font-weight: 700;
  font-size: 1.88vw;
  margin-bottom: 20px;
  color: var(--neutral-800);
}
.ptdc .description,
.ptdc .description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-800);
}
.ptdc .description {
  margin-bottom: 30px;
}
.ptdc .description p {
  margin: 0;
}
.ptdc.ptdc-text-white h4,
.ptdc.ptdc-text-white h3,
.ptdc.ptdc-text-white .description,
.ptdc.ptdc-text-white .description p {
  color: var(--neutral-100);
}
.ptdc.ptdc-text-black h4,
.ptdc.ptdc-text-black h3,
.ptdc.ptdc-text-black .description,
.ptdc.ptdc-text-black .description p {
  color: var(--neutral-800);
}
.ptdc.ptdc-align-center {
  align-items: center;
  text-align: center;
}
.ptdc.ptdc-align-right {
  align-items: flex-end;
  text-align: right;
}
.ptdc.ptdc-extra-large h4 {
  font-size: 20px;
}
.ptdc.ptdc-extra-large h3 {
  font-size: 72px;
}
.ptdc.ptdc-extra-large .description,
.ptdc.ptdc-extra-large .description p {
  font-size: 20px;
}
.ptdc.ptdc-large h4 {
  font-size: 18px;
}
.ptdc.ptdc-large h3 {
  font-size: 60px;
}
.ptdc.ptdc-large .description,
.ptdc.ptdc-large .description p {
  font-size: 18px;
}
.ptdc.ptdc-medium h4 {
  font-size: 16px;
}
.ptdc.ptdc-medium h3 {
  font-size: 48px;
}
.ptdc.ptdc-medium .description,
.ptdc.ptdc-medium .description p {
  font-size: 16px;
}
.ptdc.ptdc-default h4 {
  font-size: 16px;
}
.ptdc.ptdc-default h3 {
  font-size: 36px;
}
.ptdc.ptdc-default .description,
.ptdc.ptdc-default .description p {
  font-size: 16px;
}
.ptdc.ptdc-small h4 {
  font-size: 14px;
}
.ptdc.ptdc-small h3 {
  font-size: 30px;
}
.ptdc.ptdc-small .description,
.ptdc.ptdc-small .description p {
  font-size: 16px;
}
.ptdc.ptdc-extra-small h4 {
  font-size: 12px;
}
.ptdc.ptdc-extra-small h3 {
  font-size: 24px;
}
.ptdc.ptdc-extra-small .description,
.ptdc.ptdc-extra-small .description p {
  font-size: 14px;
}

@media only screen and (max-width: 991px) {
  .ptdc.ptdc-extra-large h4 {
    font-size: 18px;
  }
  .ptdc.ptdc-extra-large h3 {
    font-size: 48px;
  }
  .ptdc.ptdc-extra-large .description,
  .ptdc.ptdc-extra-large .description p {
    font-size: 18px;
  }
  .ptdc.ptdc-large h4 {
    font-size: 18px;
  }
  .ptdc.ptdc-large h3 {
    font-size: 40px;
  }
  .ptdc.ptdc-large .description,
  .ptdc.ptdc-large .description p {
    font-size: 18px;
  }
  .ptdc.ptdc-medium h4 {
    font-weight: 400;
    font-size: 16px;
  }
  .ptdc.ptdc-medium h3 {
    font-size: 38px;
  }
  .ptdc.ptdc-medium .description,
  .ptdc.ptdc-medium .description p {
    font-size: 16px;
  }
  .ptdc.ptdc-default h4 {
    font-size: 16px;
  }
  .ptdc.ptdc-default h3 {
    font-size: 30px;
  }
  .ptdc.ptdc-default .description,
  .ptdc.ptdc-default .description p {
    font-size: 16px;
  }
  .ptdc.ptdc-small h4 {
    font-size: 14px;
  }
  .ptdc.ptdc-small h3 {
    font-size: 28px;
  }
  .ptdc.ptdc-small .description,
  .ptdc.ptdc-small .description p {
    font-size: 16px;
  }
  .ptdc.ptdc-extra-small h4 {
    font-size: 12px;
  }
  .ptdc.ptdc-extra-small h3 {
    font-size: 20px;
  }
  .ptdc.ptdc-extra-small .description,
  .ptdc.ptdc-extra-small .description p {
    font-size: 14px;
  }
}
.article-card-section {
  padding: 100px 0;
}

.article-card-container {
  text-decoration: none;
  transition: 0.2s;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.article-card-container .image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
.article-card-container .content-box {
  color: var(--neutral-800);
}
.article-card-container .content-box .badge-box {
  position: absolute;
  top: 3.3%;
  left: 2.5%;
  width: 100%;
}
.article-card-container .content-box .author-date {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.article-card-container .content-box .author-date h5 {
  font-size: 12px;
  line-height: normal;
  margin-bottom: 7px;
  font-weight: 400;
}
.article-card-container .content-box .article-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}
.article-card-container .content-box .article-card-description {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}
.article-card-container .content-box .article-type {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 22px;
  margin-bottom: 0;
  padding: 2px 8px 2px 8px;
  border-radius: 36px;
  background-color: var(--neutral-800);
  color: var(--neutral-100);
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 991px) {
  .article-card-container .content-box .author-date {
    margin-top: 20px;
  }
  .article-card-container .content-box .author-date h5 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .article-card-container .content-box .author-date h5 {
    margin-bottom: 10px;
  }
}
.faqs-section {
  padding-bottom: 150px;
  color: #4a4a4a;
}
.faqs-section .collapse-title-col {
  background-color: var(--main-color);
  transition: all 0.25s ease-out;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faqs-section .collapse-title-col h2 {
  margin-bottom: 0;
}
.faqs-section .accordion-button {
  transition: all 0.35s ease-in-out;
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  padding-left: 60px;
  padding-right: 60px;
}
.faqs-section .collapsed.collapse-title-col,
.faqs-section .accordion-button:not(.collapsed) {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  background-color: transparent;
  color: var(--neutral-800);
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0px !important;
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--neutral-800);
}
.faqs-section .accordion-button::after {
  display: none;
}
.faqs-section .accordion-body {
  background-color: transparent;
  padding: 25px 0;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faqs-section .accordion-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.96px;
  color: var(--neutral-800);
}
.faqs-section .collapse-text-col {
  transition: all 0.35s ease-out;
  max-width: 100%;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faqs-section .show.collapse-text-col,
.faqs-section .collapsing.collapse-text-col {
  z-index: 1;
  position: relative;
}
.faqs-section .accordion-item {
  background-color: transparent;
  border: 0px solid transparent;
  padding: 0;
}
.faqs-section .accordion-header {
  background: transparent;
  transition: 0.5s;
}
.faqs-section .accordion-header:has([aria-expanded=true]) {
  border-radius: 30px;
}
.faqs-section .collapse-status-indicator-container {
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-out;
  aspect-ratio: 1;
  padding: 14px;
}
.faqs-section .collapsed .collapse-status-indicator-container {
  transition: all 0.25s ease-out;
}
.faqs-section .collapse-status-indicator {
  top: 50%;
  right: 60px;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--main-color);
  width: 25px;
  height: 5px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
.faqs-section .collapse-status-indicator::before {
  content: "";
  display: block;
  transform: rotate(90deg);
  background-color: var(--main-color);
  width: 25px;
  height: 5px;
  border-radius: 100px;
  transition: all 0.35s ease-out;
}
.faqs-section .collapsed .collapse-status-indicator {
  transform: translateY(-50%) rotate(0deg);
}

@media only screen and (max-width: 991px) {
  .faqs-section {
    padding-top: 80px;
  }
  .faqs-section .faq-section-title {
    font-size: 50px;
  }
  .faqs-section .faq-section-description {
    font-size: 21px;
  }
  .faqs-section .accordion-button {
    padding-left: 30px;
    padding-right: 30px;
  }
  .faqs-section .accordion-header:has([aria-expanded=true]) {
    border-radius: 20px;
  }
  .faqs-section .collapse-status-indicator-container {
    height: 30px;
    width: 30px;
  }
  .faqs-section .collapse-status-indicator {
    width: 15px;
    height: 2px;
  }
  .faqs-section .collapse-status-indicator::before {
    width: 15px;
    height: 2px;
  }
}
@media only screen and (max-width: 575px) {
  .faqs-section .faq-section-title {
    font-size: 30px;
  }
  .faqs-section .faq-section-description {
    font-size: 15px;
  }
  .faqs-section .collapse-title-col {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .faqs-section .accordion-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .faqs-section .accordion-header:has([aria-expanded=true]) {
    border-radius: 10px;
  }
}
footer {
  background-color: var(--footerBgColor);
  padding: var(--footerPadding);
  color: var(--neutral-100);
  overflow-x: hidden;
}
footer .gy-5 {
  --bs-gutter-y: var(--footerColumnGutter);
}
footer .top-section {
  text-align: left;
  color: var(--footerTextColor);
  margin: var(--footerTopSectionMargin);
}
footer .top-section.template-center .footer-template {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .top-section.template-left .footer-template .footer-description {
  margin-bottom: 10px !important;
}
footer .top-section .footer-description-d-none .footer-description {
  display: none;
}
footer .top-section .footer-col-link-1.footer-first-col-margin {
  margin-left: 8.3333333333%;
}
footer .top-section .footer-logo {
  display: flex;
}
footer .top-section .footer-logo img {
  aspect-ratio: var(--footerLogoAspectRatio);
  height: var(--footerLogoHeight);
  margin: var(--footerLogoMargin);
}
footer .top-section .footer-col-link-without-margin,
footer .top-section .footer-social-right.footer-social-without-margin {
  margin-top: -10px;
}
footer .top-section .footer-link-container {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 0;
}
footer .top-section .footer-link-container li {
  font-weight: 400;
  font-size: var(--footerTextSize);
  color: var(--footerTextColor);
  text-decoration: none;
}
footer .top-section .footer-link-container li.title, footer .top-section .footer-link-container li.title a {
  font-weight: 700;
  text-decoration: none;
  font-size: var(--footerTitleSize);
}
footer .top-section .footer-link-container li a {
  font-weight: 400;
  color: var(--footerLinkColor);
  text-decoration: none;
}
footer .top-section .social-icons-center .social-icons {
  justify-content: center;
}
footer .top-section .social-icons {
  list-style: none;
  display: flex;
  padding-left: 0;
  align-items: center;
}
footer .top-section .social-icons img {
  height: 26px;
  width: 26px;
}
footer .top-section .social-icons li {
  margin-right: 0.8rem;
}
footer .top-section .social-icons li:last-of-type {
  margin-right: 0;
}
footer .top-section.template-left .footer-description-d-none:has(.footer-logo.justify-content-center) .footer-social-left {
  display: flex;
  justify-content: center;
}
footer .bottom-section {
  text-align: left;
  color: var(--footerTextColor);
}
footer .bottom-section p {
  font-weight: 400;
  font-size: var(--footerTextSize);
  margin-bottom: 0;
  line-height: 1.4;
}
footer .bottom-section p a {
  color: var(--footerLinkColor);
}
footer .bottom-section .arrow-top-only-mobile {
  display: none !important;
}
footer .row-margin {
  margin-top: 10px;
  margin-bottom: 50px;
}
footer hr.hr-divider {
  display: block;
  height: 2px;
  width: 100% !important;
  margin: 0;
}
footer .hr-divider-with-margin {
  margin: var(--footerMarginDivider);
}
footer .img-align-end {
  text-align: end;
  padding: 0;
}

@media only screen and (max-width: 991px) {
  footer {
    padding: var(--footerPadding);
  }
  footer .top-section {
    margin: var(--footerTopSectionMargin);
  }
  footer .top-section .footer-col-link-1.footer-first-col-tablet-margin {
    margin-left: 8.3333333333%;
  }
  footer .top-section .footer-col-link-3.footer-third-col-exeption-margin,
  footer .top-section .footer-col-link-4.footer-col-exeption-margin,
  footer .top-section .footer-col-link-5.footer-col-exeption-margin {
    width: 33.3333333333% !important;
    margin-left: 0 !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-left-exception {
    margin-left: 33.3333333333% !important;
    width: 25% !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-center-exception {
    margin-left: 33.3333333333% !important;
    width: 33.3333333333% !important;
  }
  footer .top-section .footer-social-right.footer-social-without-margin,
  footer .top-section .footer-col-link-4.footer-col-link-without-margin,
  footer .top-section .footer-col-link-5.footer-col-link-without-margin {
    margin-top: 6rem;
  }
  footer .top-section .footer-link-container li.title {
    font-size: var(--footerTitleSize);
  }
  footer .top-section .footer-none-tablet-margin {
    margin-left: unset !important;
  }
  footer .footer-copyright {
    margin: var(--footerCopyrightMargin);
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: var(--footerPadding);
  }
  footer .img-align-end {
    text-align: unset;
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  footer .top-section.template-left .footer-template .icon-center-mobile {
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .top-section .footer-col-link-1.footer-first-col-margin,
  footer .top-section .footer-first-col-tablet-margin {
    margin-left: unset !important;
  }
  footer .top-section .footer-col-link-3.footer-third-col-exeption-margin,
  footer .top-section .footer-col-link-4.footer-col-exeption-margin,
  footer .top-section .footer-col-link-5.footer-col-exeption-margin {
    width: 100% !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-left-exception {
    margin-left: unset !important;
    width: unset !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-center-exception {
    margin-left: unset !important;
    width: unset !important;
  }
  footer .top-section .footer-col-link-3.footer-col-link-without-margin {
    margin-top: 6rem;
  }
  footer .top-section .footer-link-container li.title {
    font-size: var(--footerTitleSize);
  }
  footer .footer-copyright {
    margin: var(--footerCopyrightMargin);
  }
  footer .bottom-section .arrow-top-only-mobile {
    display: flex !important;
  }
}
nav {
  position: fixed;
  height: var(--nav-height);
  z-index: 1000 !important;
  background-color: var(--navBgColor);
  color: var(--navTextColor);
  transition: 0.35s;
  border-bottom: 0;
  padding: 0 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom: 1px solid var(--navMarginColor);
}
nav.scrolled {
  transition: 0.35s;
  background-color: var(--navBgColorScrolled);
  color: var(--navTextColorScrolled);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--navMarginColor);
}
nav .nav-left-section {
  height: 100%;
  width: 20%;
  display: flex;
  align-items: center;
  position: relative;
}
nav .nav-left-section a:has(.brand-logo) {
  position: absolute;
  left: 0;
}
nav .nav-left-section .brand-logo {
  height: 51px;
  transition: 0.35s;
}
nav .nav-left-section .brand-logo-base {
  opacity: 1;
}
nav .nav-left-section .brand-logo-scrolled {
  opacity: 0;
}
nav.scrolled .nav-left-section .brand-logo-base {
  opacity: 0;
}
nav.scrolled .nav-left-section .brand-logo-scrolled {
  opacity: 1;
}
nav .nav-center-section {
  display: flex;
  align-items: center;
}
nav .nav-center-section .links-array-container {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  -moz-column-gap: 50px;
       column-gap: 50px;
  list-style: none;
  padding: 0;
}
nav .nav-center-section .links-array-container a {
  font-weight: 400;
  color: var(--navTextColor);
  text-decoration: none;
}
nav .nav-center-section .links-array-container a.active {
  font-weight: 700;
}
nav .nav-center-section .links-array-container a:hover {
  color: var(--navTextColor);
  text-decoration: none;
}
nav .nav-center-section .links-array-container .dropdown .dropdown-toggle {
  font-weight: 400;
  color: var(--navTextColor);
  text-decoration: none;
  background: transparent;
  padding: 0;
  border: 0;
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
nav .nav-center-section .links-array-container .dropdown .dropdown-toggle::after {
  display: none;
}
nav .nav-center-section .links-array-container .dropdown .dropdown-menu {
  font-size: 15px;
  padding: 10px 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  font-weight: 700;
  border: 0;
}
nav .nav-center-section .links-array-container .dropdown .dropdown-menu.show {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
nav .nav-center-section .links-array-container .dropdown .dropdown-menu .dropdown-item {
  color: var(--navTextColor);
  padding: 0;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu {
  padding: 15px;
  border-radius: 0px 0px 15px 15px;
  width: 700px;
  flex-wrap: wrap;
  flex-direction: row;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a {
  width: calc(50% - 5px);
  background-color: var(--neutral-200);
  border-radius: 5px;
  padding: 15px;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a li {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a li img {
  height: auto;
  width: 40px;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a li h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu.show {
  display: flex;
  gap: 10px;
}
nav.scrolled .nav-center-section .links-array-container a {
  color: var(--navTextColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-center-section .dropdown .dropdown-toggle {
  color: var(--navTextColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-center-section .dropdown .dropdown-menu .dropdown-item {
  transition: 0.35s;
  color: var(--navTextColor);
}
nav.scrolled .nav-center-section li svg path {
  stroke: var(--navTextColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-center-section li a {
  color: var(--navTextColorScrolled);
  transition: 0.35s;
}
nav .nav-right-section {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 20%;
  justify-content: flex-end;
}
nav .nav-right-section .profile-pic-container i {
  font-size: 35px;
  display: flex;
}
nav .nav-right-section .search-icon-container {
  cursor: pointer;
}
nav .nav-right-section .search-icon-container i {
  font-size: 20px;
  display: flex;
}
nav .nav-right-section .hmbrgr-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 40px;
}
nav .nav-right-section .hmbrgr-container .hmbrgr {
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
nav .nav-right-section .hmbrgr-container .hmbrgr .line-top {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
}
nav .nav-right-section .hmbrgr-container .hmbrgr .line-center {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
  opacity: 1;
}
nav .nav-right-section .hmbrgr-container .hmbrgr .line-bottom {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
}
nav .nav-right-section .hmbrgr-container.active .hmbrgr .line-top {
  transform: rotate(45deg) translateY(1px) translateX(6px);
  transition: 0.35s;
  background-color: #ffffff;
}
nav .nav-right-section .hmbrgr-container.active .hmbrgr .line-center {
  transform: translateX(-20px);
  transition: 0.35s;
  opacity: 0;
  background-color: #ffffff;
}
nav .nav-right-section .hmbrgr-container.active .hmbrgr .line-bottom {
  transform: rotate(-45deg) translateY(-1px) translateX(6px);
  transition: 0.35s;
  background-color: #ffffff;
}
nav .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: var(--navTextColor);
}
nav.scrolled .nav-right-section .hmbrgr-container .hmbrgr {
  transition: 0.35s;
}
nav.scrolled .nav-right-section .hmbrgr-container .hmbrgr .line-top {
  background-color: var(--navDetailColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-right-section .hmbrgr-container .hmbrgr .line-center {
  background-color: var(--navDetailColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-right-section .hmbrgr-container .hmbrgr .line-bottom {
  background-color: var(--navDetailColorScrolled);
  transition: 0.35s;
}
nav.scrolled .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: var(--navDetailColor);
}
nav.scrolled .nav-right-section .vertical-divider {
  background-color: var(--navDetailColor);
  transition: 0.35s;
}
nav.menu-is-open {
  background-color: var(--fullmenuBgColor);
  transition: 0.35s;
  box-shadow: none;
}
nav.menu-is-open .nav-right-section {
  transition: 0.35s;
  color: #fff;
}
nav.menu-is-open .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: #fff;
}
nav.menu-is-open .nav-center-section {
  transition: 0.35s;
  display: none;
}
nav.menu-is-open .nav-left-section .brand-logo-base {
  opacity: 0;
}
nav.menu-is-open .nav-left-section .brand-logo-scrolled {
  opacity: 1;
}
nav.menu-is-open .cta.cta-first-color {
  background-color: var(--main-color);
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-left-section .brand-logo-base {
  opacity: 0;
}
nav.scrolled.menu-is-open .nav-left-section .brand-logo-scrolled {
  opacity: 1;
}
nav.scrolled.menu-is-open .nav-center-section ul li svg path {
  stroke: #fff;
}
nav.scrolled.menu-is-open .nav-center-section ul li a {
  color: #fff;
}
nav.scrolled.menu-is-open .nav-center-section ul li a:hover {
  color: #fff;
}
nav.scrolled.menu-is-open .nav-right-section .hmbrgr-container .hmbrgr .line-top {
  background-color: #fff;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-right-section .hmbrgr-container .hmbrgr .line-center {
  background-color: #fff;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-right-section .hmbrgr-container .hmbrgr .line-bottom {
  background-color: #fff;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: #fff;
}
nav.scrolled.menu-is-open .nav-right-section .vertical-divider {
  background-color: #fff;
  transition: 0.35s;
}

@media only screen and (max-width: 991px) {
  nav {
    height: var(--nav-height);
  }
  nav .nav-left-section img {
    height: 43px;
  }
  nav .nav-center-section {
    display: none;
  }
  nav .nav-right-section {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  nav .nav-right-section a.cta {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  nav {
    height: var(--nav-height);
    padding: 0 1rem !important;
  }
  nav .nav-left-section img {
    height: 38px;
  }
}
#full-page-menu {
  background-color: var(--fullmenuBgColor);
  color: var(--fullmenuTextColor);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 900;
  width: 100%;
  height: 100%;
  transform: translateY(-100vh);
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.35s ease-in-out;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#full-page-menu a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--fullmenuLinksColor);
}
#full-page-menu h1,
#full-page-menu h2,
#full-page-menu h3,
#full-page-menu h4,
#full-page-menu h5,
#full-page-menu h6,
#full-page-menu p,
#full-page-menu button {
  color: var(--fullmenuTextColor);
}
#full-page-menu .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#full-page-menu .marketing-label {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
#full-page-menu .marketing-label a {
  text-decoration: none;
  color: var(--fullmenuLinksColor);
}
#full-page-menu .search-cta-container {
  margin-bottom: 80px;
}
#full-page-menu .contacts {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
#full-page-menu .contacts h3 {
  font-weight: 400;
  font-size: 35px;
  color: #000;
}
#full-page-menu .contacts p {
  font-weight: 400;
  font-size: 19px;
  color: #000;
}
#full-page-menu .disclaimer p {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}
#full-page-menu .disclaimer p a {
  color: #fff;
}
#full-page-menu.open {
  transform: translateY(0%);
  padding-top: calc(var(--nav-height) + 50px);
}
#full-page-menu .half-menu .page-titles {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
#full-page-menu .half-menu .page-titles .page-title {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
}
#full-page-menu .half-menu .page-titles .page-subtitle {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
}
#full-page-menu .half-menu .page-titles .accordion .accordion-item {
  background-color: transparent;
  border: 0;
}
#full-page-menu .half-menu .page-titles .accordion .accordion-item .accordion-button {
  background-color: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 48px;
  box-shadow: none;
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
#full-page-menu .half-menu .page-titles .accordion .accordion-item .accordion-button:focus {
  border: 0;
  box-shadow: none;
}
#full-page-menu .half-menu .page-titles .accordion .accordion-item .accordion-button::after {
  background-image: url("/assets/img/svg/chevron_down_white.svg");
  width: 25px;
  height: 19px;
  background-size: 25px;
}
#full-page-menu .full-menu,
#full-page-menu .menu-footer {
  row-gap: 60px;
}
#full-page-menu .full-menu .page-titles,
#full-page-menu .menu-footer .page-titles {
  display: flex;
  flex-direction: column;
}
#full-page-menu .full-menu .page-titles h6,
#full-page-menu .menu-footer .page-titles h6 {
  font-size: 24px;
  font-weight: 700;
}
#full-page-menu .full-menu .page-titles ul,
#full-page-menu .menu-footer .page-titles ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
#full-page-menu .full-menu .page-titles ul li,
#full-page-menu .menu-footer .page-titles ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
#full-page-menu .full-menu .page-titles ul li span,
#full-page-menu .menu-footer .page-titles ul li span {
  text-transform: uppercase;
  font-weight: 700;
}
#full-page-menu .menu-footer {
  justify-content: space-between;
}

@media only screen and (max-width: 1499px) {
  #full-page-menu {
    padding-bottom: 70px;
  }
  #full-page-menu.open {
    padding-top: calc(var(--nav-height) + 40px);
  }
  .search-support-container {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  #full-page-menu {
    padding-bottom: 100px;
  }
  #full-page-menu .search-cta-container {
    display: flex;
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-bottom: 80px;
  }
  #full-page-menu .contacts {
    margin-top: 120px;
    row-gap: 15px;
  }
  #full-page-menu .contacts h3 {
    font-size: 27px;
  }
  #full-page-menu .contacts p {
    font-size: 16px;
  }
  #full-page-menu .disclaimer p {
    font-size: 15px;
  }
  #full-page-menu .cta.cta-first-color {
    background-color: var(--main-color);
    transition: 0.35s;
  }
  #full-page-menu.open {
    padding-top: calc(var(--nav-height) + 35px);
  }
  .search-support-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 575px) {
  #full-page-menu {
    padding-bottom: 60px;
  }
  #full-page-menu .search-cta-container {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 15px;
    margin-bottom: 50px;
  }
  #full-page-menu .contacts {
    row-gap: 5px;
    margin-top: 55px;
  }
  #full-page-menu .contacts h3 {
    font-size: 23px;
  }
  #full-page-menu .contacts p {
    font-size: 15px;
  }
  #full-page-menu .disclaimer p {
    font-size: 13px;
  }
  #full-page-menu .marketing-label {
    margin-top: 0px;
    margin-bottom: 60px;
    font-size: 15px;
  }
}
.content-slider .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 40px;
  bottom: unset;
}
.content-slider .swiper-pagination .swiper-pagination-bullet {
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  background: unset;
  display: block;
  border-radius: unset;
  font-size: 12px;
  color: var(--neutral-800);
  opacity: 1;
  border: none !important;
}
.content-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: unset;
  font-weight: 700;
  text-decoration: underline;
}
.content-slider .swiper-wrapper {
  margin-top: 50px;
}
.content-slider .swiper-slide {
  display: flex;
  gap: 8.3333333333%;
  align-items: center;
  opacity: 0 !important;
  background-color: #fff;
}
.content-slider .swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
}
.content-slider .swiper-slide .image-container {
  width: 33.3333333333%;
}
.content-slider .swiper-slide .image-container img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.content-slider .swiper-slide .content {
  width: 58.3333333333%;
}
.content-slider .swiper-slide .content .ptdc .description {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .content-slider .swiper-pagination {
    justify-content: space-between;
    row-gap: 20px;
  }
  .content-slider .swiper-wrapper {
    margin-top: 40px;
  }
  .content-slider .swiper-slide {
    gap: var(--bs-gutter-x);
  }
  .content-slider .swiper-slide .image-container {
    width: 41.6666666667%;
  }
  .content-slider .swiper-slide .content {
    width: 61.1%;
  }
}
@media only screen and (max-width: 575px) {
  .content-slider .swiper-slide {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .content-slider .swiper-slide .image-container {
    order: 2;
    width: 100%;
  }
  .content-slider .swiper-slide .content {
    order: 1;
    width: 100%;
  }
}
.wp-card {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}
.wp-card.shadow {
  box-shadow: 0px 0px 6px 0px rgba(0, 32, 16, 0.2509803922);
}
.wp-card.no-clamp {
  box-shadow: 0px 0px 6px 0px rgba(0, 32, 16, 0.2509803922);
}
.wp-card .card-content {
  height: 100%;
  width: 100%;
}
.wp-card .card-content .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wp-card .card-content .content .text {
  color: var(--neutral-800);
}
.wp-card .card-content .content .text .pretitle,
.wp-card .card-content .content .text .title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.wp-card .card-content .content .text .pretitle img,
.wp-card .card-content .content .text .title img {
  height: 14.4px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wp-card .card-content .content .text .pretitle h3,
.wp-card .card-content .content .text .title h3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0px;
}
.wp-card .card-content .content .text h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
.wp-card .card-content .content .text .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.wp-card .card-content.logo, .wp-card .card-content.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px;
}
.wp-card .card-content.logo .graphic, .wp-card .card-content.text .graphic {
  width: 100%;
}
.wp-card .card-content.logo .graphic img, .wp-card .card-content.text .graphic img {
  width: 80px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wp-card .card-content.logo .content, .wp-card .card-content.text .content {
  width: 100%;
  height: 100%;
}
.wp-card .card-content.image {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
}
.wp-card .card-content.image .graphic {
  width: 41.6666666667%;
  order: 2;
}
.wp-card .card-content.image .graphic img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-card .card-content.image .content {
  order: 1;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .wp-card .card-content .content .text .pretitle img,
  .wp-card .card-content .content .text title img {
    height: 14.4px;
  }
  .wp-card .card-content .content .text .pretitle h3,
  .wp-card .card-content .content .text title h3 {
    font-size: 12px;
  }
  .wp-card .card-content .content .text h2 {
    font-size: 20px;
  }
  .wp-card .card-content .content .text .description {
    font-size: 14px;
  }
  .wp-card .card-content.logo, .wp-card .card-content.text {
    gap: 10px;
    flex-direction: column;
    align-items: start;
    padding: 15px;
  }
  .wp-card .card-content.logo .graphic, .wp-card .card-content.text .graphic {
    width: 20%;
  }
  .wp-card .card-content.image .content {
    padding: 0;
  }
}
.form-select {
  height: 35px;
  font-size: 15px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: none;
  border-radius: 0;
}
.form-select.not-loaded {
  opacity: 0;
}
.form-select:focus {
  outline: none;
  border-color: none;
  box-shadow: none;
}

.search-package-form select:-webkit-autofill,
.search-package-form select:-webkit-autofill:hover,
.search-package-form select:-webkit-autofill:focus {
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--secondary-color) !important;
  caret-color: var(--secondary-color);
}

.select-custom {
  width: 100%;
  position: relative;
}
.select-custom .select-custom-choice {
  border-bottom: 1px solid var(--main-color) !important;
  width: 100%;
  display: block;
  color: var(--secondary-color);
  padding: 0.375rem 0.75rem;
  line-height: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.select-custom .suggestions-list {
  position: absolute;
  width: calc(100% - var(--bs-gutter-x));
  top: 38px;
  left: calc(var(--bs-gutter-x) / 2);
  padding: 0;
  display: none;
  background-color: var(--neutral-100);
  border-radius: 20px;
  border: 2px solid rgba(11, 31, 59, 0.14);
  padding-top: 15px;
  padding-bottom: 15px;
  max-height: 200px;
  overflow-y: scroll;
}
.select-custom .suggestions-list li {
  padding: 10px 15px;
  cursor: pointer;
}
.select-custom .suggestions-list li img {
  display: none;
}
.select-custom .suggestions-list li:hover {
  color: var(--neutral-100);
  background-color: var(--main-color);
}
.select-custom .suggestions-list li:hover img {
  display: block;
}
.select-custom .suggestions-list.suggestions-show {
  display: block;
}
.select-custom input {
  z-index: 4;
}
.select-custom .suggestions-list {
  z-index: 3;
}

.select2-container {
  height: 30px;
  min-height: 30px;
  max-height: 30px;
}
.select2-container .select2-search {
  display: none;
}

.select2-container--bootstrap-5 .select2-selection--single {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #d0d5d2;
  border-radius: 0;
  display: flex;
  align-items: center;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  background: transparent !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  font-size: 15px;
  color: var(--neutral-800);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: var(--neutral-800);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-bottom: 1px solid #d0d5d2;
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  padding: 10px 15px;
  cursor: pointer;
  color: var(--neutral-800);
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option:hover {
  color: var(--neutral-100);
  background-color: var(--main-color);
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option:hover img {
  display: block;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option:not(:last-child) {
  border-bottom: 1px solid var(--neutral-600);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-size: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 7px;
}

.select2-container--bootstrap-5 .select2-dropdown {
  background-color: var(--neutral-100);
  border: 0 !important;
  padding-left: 3px;
  padding-right: 3px;
  top: 50%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.select2-container--bootstrap-5 .select2-dropdown ::-webkit-scrollbar {
  width: 6px;
}
.select2-container--bootstrap-5 .select2-dropdown ::-webkit-scrollbar-thumb {
  background: var(--neutral-500);
  border-radius: 3px;
}
.select2-container--bootstrap-5 .select2-dropdown ::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-600);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true],
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true].select2-results__option--highlighted {
  background-color: var(--main-color) !important;
  color: var(--neutral-800) !important;
  font-weight: 700;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: var(--neutral-300) !important;
  color: var(--neutral-100);
  font-weight: 700;
}

.select2-selection--single .select2-selection__arrow b {
  background-image: url("/assets/img/svg/chevron_down_black.svg");
  background-color: transparent;
  background-size: contain;
  width: 13px;
  height: 13px;
  margin-right: 1.5rem;
  display: block;
  background-repeat: no-repeat;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 15px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.select-option-image {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 18px !important;
  max-width: 32px !important;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.select2-container--bootstrap-5 .select2-selection--single {
  background-image: none;
}

.search-container .search-package-form .selects-container {
  justify-content: space-around;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
  background-image: url("/assets/img/svg/icon_close_white.svg");
  background-position: center;
  background-size: contain;
  right: 30px;
  width: 20px;
  height: 20px;
  padding-right: 0;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover {
  background-image: url("/assets/img/svg/icon_close_white.svg");
  background-position: center;
  background-size: contain;
  right: 30px;
  width: 20px;
  height: 20px;
  padding-right: 0;
}

@media only screen and (max-width: 575px) {
  .select-custom-choice {
    font-size: 15px;
  }
  .suggestions-list li {
    font-size: 15px;
  }
  .select2-dropdown {
    width: 100% !important;
  }
  .select2-container.select2-container--bootstrap-5.select2-container--open {
    width: 85%;
    left: 8% !important;
  }
  .select2.select2-container.select2-container--bootstrap-5.select2-container--below.select2-container--focus.select2-container--open {
    left: 0 !important;
  }
  .search-container .search-package-form .selects-container .search-divider {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.form-container .form-label-group-file {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 1px solid #d0d5d2;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0.75rem;
}
.form-container .form-label-group-file .label-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-container .form-label-group-file label {
  border-bottom: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.form-container .form-label-group-file .upload-icon-separator {
  font-weight: 700;
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-100);
  border-radius: 50px;
  padding: 10px 20px;
  background: var(--main-color);
  cursor: pointer;
}
.form-container .form-label-group-file #file-chosen {
  white-space: wrap;
  word-wrap: break-word;
}
.form-container .form-label-group {
  font-weight: unset;
  line-height: 1;
  font-size: unset;
  margin-top: 10px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-container .form-label-group .reason-contact {
  width: 100%;
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.379);
  border-radius: 0;
  margin-bottom: 60px;
  padding-bottom: 10px;
}
.form-container .form-label-group .reason-contact:focus {
  outline: none;
  border-color: none;
  box-shadow: none;
}
.form-container .form-label-group label {
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  transform: translate(7px, -30px);
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  color: var(--neutral-800);
  caret-color: var(--neutral-800);
}
.form-container .form-label-group input,
.form-container .form-label-group textarea {
  min-height: 30px;
  font-size: 15px;
  border-radius: 0px;
  border: 0;
  border-bottom: 1px solid #d0d5d2;
  caret-color: var(--neutral-800);
}
.form-container .form-label-group input:focus,
.form-container .form-label-group textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 0 black;
  color: var(--neutral-800);
  caret-color: var(--neutral-800);
}
.form-container .form-label-group input:focus + label,
.form-container .form-label-group textarea:focus + label {
  /* color: rgba(0,0,0,.65); */
  transform: translate(7px, -60px) scale(0.8);
}
.form-container .form-label-group input:not(:-moz-placeholder), .form-container .form-label-group textarea:not(:-moz-placeholder) {
  outline: 0;
  box-shadow: 0 0 0 0 black;
  color: var(--neutral-800);
}
.form-container .form-label-group input:not(:placeholder-shown),
.form-container .form-label-group textarea:not(:placeholder-shown) {
  outline: 0;
  box-shadow: 0 0 0 0 black;
  color: var(--neutral-800);
}
.form-container .form-label-group input:not(:-moz-placeholder) + label, .form-container .form-label-group textarea:not(:-moz-placeholder) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translate(7px, -60px) scale(0.8);
}
.form-container .form-label-group input:not(:placeholder-shown) + label,
.form-container .form-label-group textarea:not(:placeholder-shown) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translate(7px, -60px) scale(0.8);
}
.form-container .form-label-group textarea {
  height: 30px;
  max-height: 195px;
  overflow: hidden;
  transition: 0.25s ease-in;
  caret-color: var(--neutral-800);
}
.form-container .form-label-group input:-webkit-autofill,
.form-container .form-label-group input:-webkit-autofill:hover,
.form-container .form-label-group input:-webkit-autofill:focus,
.form-container .form-label-group textarea:-webkit-autofill,
.form-container .form-label-group textarea:-webkit-autofill:hover,
.form-container .form-label-group textarea:-webkit-autofill:focus,
.form-container .form-label-group select:-webkit-autofill,
.form-container .form-label-group select:-webkit-autofill:hover,
.form-container .form-label-group select:-webkit-autofill:focus {
  border-bottom: 1px solid #979797;
  -webkit-text-fill-color: var(--neutral-800);
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--neutral-800) !important;
  caret-color: var(--neutral-800);
}
.form-container .form-label-group .form-select {
  height: 35px;
  font-size: 15px;
  border-bottom: 1px solid #979797;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: none;
  border-radius: 0;
}
.form-container .form-label-group .form-select:focus {
  outline: none;
  border-color: none;
  box-shadow: none;
}
.form-container .form-label-group input::-webkit-outer-spin-button,
.form-container .form-label-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-container .form-label-group input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.form-container .form-btn {
  font-size: 25px;
  background-color: var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 35px;
  border: 1px solid var(--secondary-color);
  width: 280px;
  height: 52px;
  line-height: 50px;
  display: block;
}
.form-container .form-privacy {
  font-size: 15px;
  color: #4a4a4a;
  width: 600px;
}
.form-container .form-privacy a {
  color: var(--neutral-800);
  text-decoration: none;
}
.form-container .form-privacy a:hover, .form-container .form-privacy a:visited {
  text-decoration: none;
  color: #fff;
}
.form-container .form-control {
  color: var(--neutral-800);
  background-color: unset;
}
.form-container .form-control:focus {
  border-bottom: 1px solid #979797;
}
.form-container .form-control:focus-visible {
  outline: none;
}
.form-container .form-label-group textarea:not(:-moz-placeholder) {
  height: 80px;
  transform: scaleY(100px);
  -moz-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.form-container .form-label-group textarea:not(:placeholder-shown),
.form-container .form-label-group textarea:focus {
  height: 80px;
  transform: scaleY(100px);
  transition: 0.25s ease-in;
}
.form-container .contact-message label {
  position: absolute;
  top: 30px;
}
.form-container .contact-checkbox-container {
  position: relative;
  margin: 0;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.form-container .contact-checkbox-container p {
  color: var(--neutral-800);
  cursor: pointer;
  font-size: 12px !important;
  line-height: 1.15 !important;
}
.form-container .contact-checkbox-container p a {
  color: var(--neutral-800);
  text-decoration: none;
  font-weight: 700;
}
.form-container .contact-checkbox-container a {
  text-decoration-color: var(--neutral-800);
}
.form-container .contact-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-container .contact-checkbox-container input:checked ~ .contact-checkmark {
  background-color: transparent;
}
.form-container .contact-checkbox-container input:checked ~ .contact-checkmark:after {
  display: block;
}
.form-container .contact-checkmark {
  position: absolute;
  display: flex;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--neutral-800);
}
.form-container .contact-checkmark:after {
  content: "";
  display: none;
}
.form-container .contact-checkbox-container .contact-checkmark:after {
  width: 6px;
  height: 11px;
  margin-top: 0;
  border: solid var(--main-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#contact-form .select2-container {
  width: 100% !important;
}

.contacts-row {
  display: flex;
  justify-content: space-evenly;
}
.contacts-row .contact-block {
  padding-top: 40px;
  text-align: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 24.999999%;
}
.contacts-row .contact-block p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.contacts-row .contact-block .description {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

@media only screen and (max-width: 991px) {
  .contacts-row .contact-block {
    padding-top: 40px;
  }
  .contacts-row .contact-block p {
    font-size: 10px;
  }
  .contacts-row .contact-block .description {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .contacts-row {
    flex-direction: column;
  }
  .contacts-row .contact-block {
    width: 100%;
  }
}
.search-result-container {
  margin-top: 100px;
}
.search-result-container .search-result h2 {
  font-weight: 700;
  font-size: 60px;
  color: #000;
  margin-bottom: 20px;
}
.search-result-container .search-result p {
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 45px;
  line-height: 1.1;
}

.pagination-search svg {
  height: 25px;
}
.pagination-search .flex.items-center.justify-between {
  margin: 0 auto;
}
.pagination-search .flex.justify-between.flex-1 {
  display: none;
}
.pagination-search .text-sm.text-gray-700.leading-5 {
  display: none;
}
.pagination-search span[aria-disabled=true] {
  display: none;
}

@media only screen and (max-width: 991px) {
  header {
    padding-top: calc(var(--nav-height) + 120px);
    padding-bottom: 120px;
  }
  header h1 {
    font-size: 6vw;
    line-height: 0.95;
  }
  .search-result-container {
    margin-top: 70px;
  }
  .search-result-container .search-result h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .search-result-container .search-result p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
    width: 74.9999997vw;
  }
}
@media only screen and (max-width: 575px) {
  header {
    padding-top: calc(var(--nav-height) + 100px);
    padding-bottom: 100px;
  }
  header h1 {
    font-size: 12vw;
  }
  .search-result-container {
    margin-top: 45px;
  }
  .search-result-container .search-result h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .search-result-container .search-result p {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.25;
    width: 100%;
  }
}
.section-codeblock {
  margin: 5px 25px 20px 25px;
  display: flex;
  justify-content: center;
}

.content-codeblock {
  width: 100%;
  max-width: 1600px;
}

.content-codeblock-title {
  margin: 0 0 4px 0;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.codeblock-chip {
  margin-right: 8px;
  padding: 1px 9px;
  border-radius: 4px;
  font-style: normal;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.type-blade {
  background-color: #f10000;
  color: #ffffff;
}

.type-blade:after {
  content: "COMPONENT";
}

.blade-line {
  border-left: 4px solid #f10000;
}

.type-php {
  background-color: #858fbc;
  color: #21232f;
}

.type-php:after {
  content: "PHP";
}

.php-line {
  border-left: 4px solid #858fbc;
}

.content-codeblock pre {
  border-radius: 4px;
  background-color: #282c34;
}

/*

Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

base:    #282c34
mono-1:  #abb2bf
mono-2:  #818896
mono-3:  #5c6370
hue-1:   #56b6c2
hue-2:   #61aeee
hue-3:   #c678dd
hue-4:   #98c379
hue-5:   #e06c75
hue-5-2: #be5046
hue-6:   #d19a66
hue-6-2: #e6c07b

*/
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd;
}

.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66;
}

.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}

.tab-styles-handoff h2 {
  font-size: 50px;
  font-weight: 400;
  width: 100%;
  margin-top: 75px;
}
.tab-styles-handoff .color-box-container .boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tab-styles-handoff .color-box-container .color-box {
  border: 1px solid var(--Neutral-400, #d9dbe9);
  border-radius: 32px;
  width: calc(25% - 1.5rem);
  overflow: hidden;
}
.tab-styles-handoff .color-box-container .color-box .color {
  height: 250px;
  background: attr(attr-color);
}
.tab-styles-handoff .color-box-container .color-box .value {
  padding: 30px 25px;
}
.tab-styles-handoff .color-box-container .color-box .value .text {
  font-size: 24px;
  font-weight: 700;
}
.tab-styles-handoff .color-box-container .color-box .value .hex::after {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.tab-styles-handoff .bg-letters {
  margin-bottom: 100px;
  position: relative;
}
.tab-styles-handoff .bg-letters::after {
  content: "Aa";
  font-size: 30vw;
  color: var(--neutral-300);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  line-height: 0.75;
}
.tab-styles-handoff .font-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab-styles-handoff .font-box.bg {
  background-color: var(--neutral-400);
  border-radius: 40px;
  padding: 40px;
  margin-bottom: 50px;
}
.tab-styles-handoff .font-box .name {
  font-size: 34px;
  font-weight: 700;
}
.tab-styles-handoff .font-box .regular,
.tab-styles-handoff .font-box .bold {
  margin-top: 20px;
  font-size: 24px;
}
.tab-styles-handoff .font-box .aa-letters {
  font-size: 10vw;
}
.tab-styles-handoff .font-box.box {
  align-items: start;
  margin-bottom: 35px;
}
.tab-styles-handoff .font-box.box .prop {
  min-width: 200px;
  margin-right: 100px;
  max-width: 200px;
}
.tab-styles-handoff .font-box.box .prop .title {
  font-size: 34px;
  font-weight: 700;
}
.tab-styles-handoff .font-box.box .prop .desc {
  font-size: 18px;
  font-weight: 400;
}
.tab-styles-handoff .font-box.box .prop .size {
  font-size: 18px;
  font-weight: 400;
}

.tab-pages-handoff .cta {
  width: 100%;
}
.tab-pages-handoff .cta span {
  width: 100%;
  text-align: start;
}

* {
  font-family: var(--font-primary);
}

body {
  margin: 0;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-size: 1.6rem;
  line-height: 1.15;
}
body.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}
body.no-scrollbar::-webkit-scrollbar {
  display: none;
}

header {
  padding: 0 0 0 0;
}

main {
  padding: 0 0 0 0;
  padding-top: calc(var(--nav-height) + 30px);
}
