@media (min-width: 576px) {
  .container-sm {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .container-md {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}
:root {
  --font-primary: "Metropolis", sans-serif;
  --font-secondary: "Syne", sans-serif;
  --font-tertiary: "Source Code Pro", monospace;
  --main-color: #a80011;
  --main-color-hover: #82000d;
  --neutral-800: #020a0c;
  --neutral-700: #37383c;
  --neutral-600: #4b4c50;
  --neutral-500: #696a6e;
  --neutral-400: #919296;
  --neutral-300: #e1e0e0;
  --neutral-200: #f8f8f8;
  --neutral-100: #ffffff;
  --navBgColor: #ffffff;
  --navTextColor: #020a0c;
  --navDetailColor: #020a0c;
  --navMarginColor: #00000014;
  --navBgColorScrolled: #ffffff;
  --navTextColorScrolled: #020a0c;
  --navDetailColorScrolled: #020a0c;
  --navMarginColorScrolled: #020a0c;
  --nav-height: 74px;
  --langBgColor: #000000;
  --langTextColor: #ffffff;
  --langHoverColor: #323232;
  --fullmenuBgColor: #ffffff;
  --fullmenuTextColor: #020a0c;
  --fullmenuLinksColor: #020a0c;
  --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: 14px;
  --footerTitleSize: 18px;
  --footerMarginDivider: 60px 0 0 0;
  --ctaPrimaryColor: #a80011;
  --ctaPrimaryColorHover: #82000d;
  --ctaTextPrimaryColor: #fff;
  --ctaTextPrimaryColorHover: #fff;
  --ctaSecondaryColor: #ffffff;
  --ctaSecondaryColorHover: #f5f5f5;
  --ctaTextSecondaryColor: #181818;
  --ctaBorderPrimaryColor: #a80011;
  --ctaSvgPrimaryColor: #a80011;
  --ctaSvgPrimaryColorHover: #82000d;
  --ctaSvgSecondaryColor: #ffffff;
  --ctaSvgSecondaryColorHover: #ffffff;
  --ctaFontSizeSmall: 16px;
  --ctaFontSizeMedium: 18px;
  --ctaFontSizeLarge: 20px;
  --ctaPaddingSmall: 8px 20px;
  --ctaPaddingMedium: 8px 25px;
  --ctaPaddingLarge: 10px 34px;
  --ctaSquareRound: 12px;
  --ctaRound: 50px;
  --small-size: 10px;
  --medium-size: 20px;
  --large-size: 30px;
  --extra-large-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;
    --ctaSquareRound: 6px;
    --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: 576pxpx) {
  /* 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: 768pxpx) {
  /* 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: 992pxpx) {
  /* 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: 1200pxpx) {
  /* 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: 1400pxpx) {
  /* 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 {
  transform: scale(1);
  opacity: 1;
  transform-origin: center bottom;
  transition: transform 0.65s ease-in-out 0.35s, opacity 0.65s ease-in-out 0.35s;
}
.fade-in-intro-effect.faded {
  transform: scale(0.98);
  opacity: 0;
}

/* Fade left in element */
.fade-in-intro-effect-left {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  transform-origin: center bottom;
  transition: transform 0.55s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.2s;
}
.fade-in-intro-effect-left.faded {
  transform: translateX(-100%);
  opacity: 0;
}
.fade-in-intro-effect-left.block {
  display: block !important;
}

/* Fade right in element (container must have "overflow: hidden;" property) */
.fade-in-intro-effect-right {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  transform-origin: center bottom;
  transition: transform 0.55s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.2s;
}
.fade-in-intro-effect-right.faded {
  transform: translateX(100%);
  opacity: 0;
}
.fade-in-intro-effect-right.block {
  display: block !important;
}

/* 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;
}

.swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--neutral-800);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--neutral-800);
  scale: 1.25;
}

.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;
  }
}
.m-5 {
  margin: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.p-5 {
  padding: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.m-15 {
  margin: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.p-15 {
  padding: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.m-20 {
  margin: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.p-20 {
  padding: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.m-25 {
  margin: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.p-25 {
  padding: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.m-30 {
  margin: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.p-30 {
  padding: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.m-35 {
  margin: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.p-35 {
  padding: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.m-40 {
  margin: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.m-45 {
  margin: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.p-45 {
  padding: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.m-50 {
  margin: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.p-50 {
  padding: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.m-55 {
  margin: 55px;
}

.mt-55 {
  margin-top: 55px;
}

.mb-55 {
  margin-bottom: 55px;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.p-55 {
  padding: 55px;
}

.pt-55 {
  padding-top: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.m-60 {
  margin: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.p-60 {
  padding: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.m-65 {
  margin: 65px;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.p-65 {
  padding: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.m-70 {
  margin: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.p-70 {
  padding: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.m-75 {
  margin: 75px;
}

.mt-75 {
  margin-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.p-75 {
  padding: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.m-80 {
  margin: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.p-80 {
  padding: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.m-85 {
  margin: 85px;
}

.mt-85 {
  margin-top: 85px;
}

.mb-85 {
  margin-bottom: 85px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.p-85 {
  padding: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.m-90 {
  margin: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.p-90 {
  padding: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.m-95 {
  margin: 95px;
}

.mt-95 {
  margin-top: 95px;
}

.mb-95 {
  margin-bottom: 95px;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.p-95 {
  padding: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.m-100 {
  margin: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.p-100 {
  padding: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.search-icon .s-i-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.search-icon .s-i-container .lens, .search-icon .s-i-container .handle, .search-icon .s-i-container .bar-left, .search-icon .s-i-container .bar-right {
  transition: all 0.35s ease-out;
}
.search-icon .s-i-container .lens {
  border: 2px solid #000;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translate(0%, 0%);
  height: 16px;
  width: 16px;
  background-color: transparent;
  border-radius: 50%;
}
.search-icon .s-i-container .handle {
  background-color: #000;
  position: absolute;
  width: 9px;
  height: 2px;
  bottom: 2px;
  right: 0px;
  transform: rotate(45deg);
}
.search-icon .s-i-container .bar-left, .search-icon .s-i-container .bar-right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 2px;
  background-color: #000;
}
.search-icon .s-i-container .bar-left {
  transform: translate(-50%, -50%) rotate(45deg);
}
.search-icon .s-i-container .bar-right {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close.search-icon .s-i-container .lens {
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
}
.close.search-icon .s-i-container .handle {
  transform: rotate(45deg) scale(0);
}
.close.search-icon .s-i-container .bar-left, .close.search-icon .s-i-container .bar-right {
  opacity: 1 !important;
  width: 21.21px;
}

/*
	useful to override colors
.search-icon{
	.s-i-container{
		.lens{
			border:2px solid #000;
		}
		.handle{
			background-color:#000;
		}
		.bar-left, .bar-right{
			background-color:#000;
		}
	}
} 
*/
:root {
  --bs-gutter-x: 16px;
}

.dropdown-toggle,
.dropdown-toggle:hover {
  all: unset;
  cursor: pointer;
}

.dropdown-menu {
  font-size: 16px;
}

@media (min-width: 1750px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1680px;
  }
}
/*
--------------------------------------
                TITLES
--------------------------------------
*/
.title-xl,
.title-l,
.title-m,
.title-d,
.title-s,
.title-xs {
  font-family: var(--font-secondary);
  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-form {
  background-color: var(--neutral-200);
  border-radius: 10px;
  padding: 12px;
  margin-left: 40px;
  margin-bottom: 0;
}
.nav-search-form .input-text {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 100%;
}
.nav-search-form .input-text .search-button {
  background-color: transparent;
  padding: 0;
  border: 0;
}
.nav-search-form .input-text input {
  background-color: transparent;
  border: 0;
  width: 100%;
}
.nav-search-form .input-text input:focus-within {
  outline: 0;
}

@media only screen and (max-width: 991px) {
  .nav-search-form {
    margin-left: 20px;
  }
}
.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;
  margin-bottom: 20px;
}
.newsletter-outer-container .newsletter-inner-container p {
  font-size: 20px;
  font-weight: 400;
  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: 18px;
  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: 18px;
  color: var(--neutral-100);
}
.newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::placeholder {
  font-weight: 700;
  font-size: 18px;
  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: 14px;
  font-weight: 400;
  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;
  }
  .newsletter-outer-container .newsletter-inner-container p {
    font-size: 18px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input {
    font-size: 18px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::-moz-placeholder {
    font-size: 18px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-form-container .newsletter-input::placeholder {
    font-size: 18px;
  }
  .newsletter-outer-container .newsletter-inner-container .newsletter-privacy-container .contact-checkbox-container .newsletter-privacy {
    font-size: 12px;
  }
}
@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;
}

.clients-section {
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.clients-section .clients-row {
  gap: 20px;
}
.clients-section .clients-title {
  width: 100%;
  color: var(--neutral-100);
  margin: unset;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.clients-section .clients-slider img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 991px) {
  .clients-section .clients-title {
    font-size: 18px;
  }
}
:root {
  --hero-height-mobile: 335px;
  --hero-height-tablet: 550px;
  --hero-height-desktop: 600px;
  --hero-font-size-mobile: 50px;
  --hero-font-size-tablet: 140px;
  --hero-font-size-desktop: 200px;
}

.hero {
  height: var(--hero-height-mobile);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .hero {
    padding-top: var(--nav-height);
  }
}
.hero__title {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--hero-font-size-mobile);
}
@media (min-width: 768px) {
  .hero {
    height: var(--hero-height-tablet);
  }
  .hero__title {
    font-size: 12.5vw;
  }
}
@media (min-width: 1200px) {
  .hero {
    height: var(--hero-height-desktop);
  }
  .hero__title {
    font-size: var(--hero-font-size-desktop);
  }
}

:root {
  --page-heading-subtitle-font-size-mobile: 28px;
  --page-heading-subtitle-font-size-tablet: 38px;
  --page-heading-subtitle-font-size-desktop: 48px;
  --page-heading-max-width-tablet: 600px;
  --page-heading-max-width-desktop: 800px;
  --page-heading-margin-bottom-mobile: 80px;
  --page-heading-margin-bottom-tablet: 70px;
  --page-heading-margin-bottom-desktop: 140px;
}

.page-heading {
  margin-top: 60px;
  text-align: center;
  margin-bottom: var(--page-heading-margin-bottom-mobile);
}
.page-heading__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 11px;
}
.page-heading__title::after {
  content: url("/assets/img/svg/curve-black.svg");
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-heading__subtitle {
  font-size: var(--page-heading-subtitle-font-size-mobile);
  font-weight: bold;
}
.page-heading__content {
  margin-top: 16px;
  line-height: 25px;
}
@media (min-width: 768px) {
  .page-heading {
    margin-bottom: var(--page-heading-margin-bottom-tablet);
    max-width: var(--page-heading-max-width-tablet);
  }
  .page-heading__subtitle {
    font-size: var(--page-heading-subtitle-font-size-tablet);
  }
}
@media (min-width: 1200px) {
  .page-heading {
    max-width: var(--page-heading-max-width-desktop);
    margin-bottom: var(--page-heading-margin-bottom-desktop);
  }
  .page-heading__title {
    padding-bottom: 0;
  }
  .page-heading__title::after {
    display: none;
  }
  .page-heading__subtitle {
    font-size: var(--page-heading-subtitle-font-size-desktop);
  }
}

.back-button.cta {
  padding: 10px 14px;
  -moz-column-gap: 0;
       column-gap: 0;
}
.back-button__arrow {
  width: 25px;
}
.back-button__text {
  position: relative;
}
.back-button__modal-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .back-button__modal-ctas {
    flex-direction: row;
  }
}

.business-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
}
.business-card__authors-dropdown-button {
  border: none;
  display: flex !important;
  align-items: center !important;
}
.business-card__authors-dropdown-button .images {
  display: flex;
  margin-right: 10px;
}
.business-card__authors-dropdown-button .images img::before {
  display: none;
}
.business-card__authors-dropdown-button .images.im-1 {
  width: 65px;
}
.business-card__authors-dropdown-button .images.im-2 {
  width: 105px;
}
.business-card__authors-dropdown-button .images.im-3 {
  width: 120px;
}
.business-card__authors-dropdown-button:hover, .business-card__authors-dropdown-button:active, .business-card__authors-dropdown-button:focus {
  background: none;
  border: none;
  color: unset;
  box-shadow: none !important;
}
.business-card__authors-dropdown-button::before {
  display: none !important;
}
.business-card__authors-dropdown {
  width: -moz-fit-content;
  width: fit-content;
  padding: 27px 40px;
  flex-direction: column;
  gap: 15px;
}
.business-card__authors-dropdown.show {
  display: flex;
}
.business-card__name {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--neutral-800) !important;
}
.business-card__name:hover {
  color: var(--neutral-800) !important;
}
.business-card__name.author-name {
  font-size: 26px;
  color: var(--neutral-800);
}
@media (min-width: 1200px) {
  .business-card__name {
    font-size: 26px;
    font-family: var(--font-secondary);
    font-weight: 700;
  }
}
.business-card__username {
  color: var(--neutral-500);
}
.business-card__username.author-username {
  font-size: 15px;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .business-card__username {
    font-size: 20px;
  }
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d9d9d9;
}
@media (min-width: 1200px) {
  .avatar {
    width: 115px;
    height: 115px;
  }
}
.avatar__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.avatar__image.author-image {
  height: 100%;
  aspect-ratio: 1;
  width: 15%;
  border-radius: 100%;
}
.avatar.image-shadow {
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.5);
}
.avatar.layer-1 {
  margin-left: 0;
}
.avatar.layer-2, .avatar.layer-3 {
  margin-left: -25%;
}
.avatar.layer-1, .avatar.layer-2, .avatar.layer-3 {
  aspect-ratio: 1;
  border: 3px solid white;
}
.avatar--small {
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  .avatar--small {
    width: 44px;
    height: 44px;
  }
}
.avatar--large {
  width: 64px;
  height: 64px;
}
@media (min-width: 768px) {
  .avatar--large {
    width: 94px;
    height: 94px;
  }
}
@media (min-width: 1200px) {
  .avatar--large {
    width: 160px;
    height: 160px;
  }
}

.separator {
  margin: 16px 0;
  height: 1px;
  width: 100%;
  background-color: #343434;
}
@media (min-width: 1200px) {
  .separator {
    margin: 24px 0;
  }
}
.separator--large {
  margin: 46px 0;
}
@media (min-width: 1200px) {
  .separator--large {
    margin: 60px 0;
  }
}
.separator--light {
  background-color: #BFCBC9;
}

.comments__title {
  font-size: 30px;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .comments__title {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.comments__cta {
  margin-top: 46px;
  width: 100%;
  background-color: #f4f4f4;
  color: #343434;
  border: none;
  padding: 12px;
  text-align: left;
}
.comments__modal textarea {
  width: 100%;
  background-color: #E8EEED;
  border: none;
  padding: 10px 14px;
  border-radius: 5px;
}
.comments__modal textarea:focus {
  outline: none;
}
@media (min-width: 1200px) {
  .comments__modal textarea {
    font-size: 20px;
    padding: 26px 20px;
  }
}
.comments__modal-counter {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.comment__header {
  display: flex;
  gap: 15px;
}
.comment__username {
  flex: 1;
  align-self: center;
  font-size: 20px;
  font-weight: bold;
}
.comment__content {
  margin-top: 15px;
}
.comment__warning {
  background-color: transparent;
  border: none;
}

.pea-swiper {
  position: relative;
}
.pea-swiper .swiper-button-prev,
.pea-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: #fdf475;
  position: initial;
  margin-top: 0;
}
.pea-swiper .swiper-button-prev:after,
.pea-swiper .swiper-button-next:after {
  content: "";
}
@media (min-width: 768px) {
  .pea-swiper .swiper-button-prev,
  .pea-swiper .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1200px) {
  .pea-swiper .swiper-button-prev,
  .pea-swiper .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}
.pea-swiper .swiper-button-prev {
  left: 0;
}
.pea-swiper .swiper-button-next {
  right: 0;
}
.pea-swiper__navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .pea-swiper__navigation {
    position: absolute;
    z-index: 1;
    top: calc(50% - 40px);
    width: calc(100% + 180px);
    left: -90px;
    right: -90px;
  }
}

.pea-banner {
  background-color: var(--main-color);
  padding: 40px 0;
  margin: 60px 0;
}
.pea-banner__subtitle {
  margin-bottom: 18px;
}
.pea-banner__links {
  display: grid;
  row-gap: 30px;
  margin-top: 32px;
}
.pea-banner__image {
  width: 100%;
  height: 290px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: var(--main-color);
}
.pea-banner__link, .pea-banner__link:hover, .pea-banner__link:visited {
  all: unset;
  cursor: pointer;
}
.pea-banner__link-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 25px;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .pea-banner {
    margin-bottom: 90px;
  }
  .pea-banner__image {
    height: 250px;
  }
  .pea-banner__links {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 25px;
         column-gap: 25px;
    margin-top: 66px;
  }
  .pea-banner__text {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .pea-banner {
    background-color: transparent;
  }
  .pea-banner__content {
    padding: 40px 80px;
    background-color: var(--main-color);
  }
  .pea-banner__image {
    height: 350px;
  }
  .pea-banner__links {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 35px;
         column-gap: 35px;
    margin-top: 35px;
  }
  .pea-banner__text {
    width: 33.33%;
  }
}

.file-uploader__container {
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23A80011' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-uploader__container--active {
  background-color: rgba(10, 176, 163, 0.1);
}
.file-uploader__input {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.file-uploader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: absolute;
  height: 100%;
  width: 100%;
}
.file-uploader__title {
  margin-top: 12px;
  margin-bottom: 2px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .file-uploader__title {
    font-size: 22px;
  }
}
.file-uploader__subtitle {
  margin: 0;
}
@media (min-width: 1200px) {
  .file-uploader__subtitle {
    font-size: 22px;
  }
}
.file-uploader--horizontal {
  height: 100%;
  margin-top: 40px;
}
.file-uploader--horizontal .file-uploader__title {
  margin-top: 0;
}
.file-uploader--horizontal .file-uploader__content {
  justify-content: center;
  gap: 16px;
  flex-direction: row;
  text-align: left;
}
.file-uploader--horizontal .file-uploader__image {
  align-self: flex-start;
  height: 100%;
  width: 50px;
}
.file-uploader--square {
  width: 250px;
  height: 250px;
  margin-top: 40px;
}
.file-uploader--square .file-uploader__title {
  margin-top: 0;
}
.file-uploader--square .file-uploader__content {
  justify-content: center;
  gap: 16px;
  flex-direction: row;
  text-align: left;
}
.file-uploader--square .file-uploader__image {
  align-self: flex-start;
  height: 100%;
  width: 50px;
}
.file-uploader--large .file-uploader__content {
  padding: 40px 20px;
}
@media (min-width: 1200px) {
  .file-uploader--large .file-uploader__content {
    padding: 100px 20px;
  }
}
.file-uploader__preview {
  height: 100%;
  width: 100%;
}
.file-uploader__preview-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
}

.autocomplete__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.autocomplete__chip {
  border-radius: 60px;
  color: var(--main-color);
  padding: 7px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.autocomplete__chip-value {
  margin: 0;
}
.autocomplete__chip.author-chip {
  width: 100%;
  justify-content: space-between;
}
.autocomplete__chip-button {
  border: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
}
.autocomplete__chip-button img {
  width: 16px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.autocomplete__chip .info-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.autocomplete__chip .info-container .user-photo {
  background-color: #505a75;
  border-radius: 100%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.autocomplete__chip .info-container .user-photo span {
  color: white;
  font-size: 15px;
  font-weight: 300;
  line-height: 68px;
}
.autocomplete__container {
  position: relative;
}
.autocomplete__input {
  position: relative;
  height: 35px;
  background-color: #ccdad8;
  border-radius: 11px;
  border: none;
  padding: 8px 12px;
  width: 100%;
}
.autocomplete__input::-moz-placeholder {
  color: #343434;
}
.autocomplete__input::placeholder {
  color: #343434;
}
@media (min-width: 1200px) {
  .autocomplete__input {
    font-size: 22px;
    height: 46px;
  }
}
.autocomplete__panel {
  position: absolute;
  background-color: white;
  padding: 8px 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  top: 38px;
  width: 100%;
}
@media (min-width: 1200px) {
  .autocomplete__panel {
    top: 49px;
    font-size: 22px;
  }
}
.autocomplete__option {
  cursor: pointer;
  padding: 4px 0;
}
.autocomplete__option--selected {
  color: #858585;
  cursor: not-allowed;
}

.select2:not(.select-custom) .select2.select2-container {
  width: 100% !important;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection {
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 34px;
  margin-bottom: 15px;
  outline: none !important;
  transition: all 0.15s ease-in-out;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection .select2-selection__rendered {
  color: #333;
  line-height: 32px;
  padding-right: 33px;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection .select2-selection__arrow {
  background: #f8f8f8;
  border-left: 1px solid #ccc;
  border-radius: 0 3px 3px 0;
  height: 32px;
  width: 33px;
}
.select2:not(.select-custom) .select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background: #f8f8f8;
}
.select2:not(.select-custom) .select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  border-radius: 0 3px 0 0;
}
.select2:not(.select-custom) .select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 34px;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}
.select2:not(.select-custom) .select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #010101;
  font-weight: bold;
  font-size: 16px;
}
.select2:not(.select-custom) .select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: -5px;
}
.select2:not(.select-custom) .select2-container .select2-dropdown .select2-search {
  padding: 0;
}
.select2:not(.select-custom) .select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #34495e !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
}
.select2:not(.select-custom) .select2-container .select2-dropdown .select2-results {
  padding: 0;
}
.select2:not(.select-custom) .select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #34495e;
}
.select2:not(.select-custom) .select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #3498db;
}
.select2:not(.select-custom) .select2-selection__rendered {
  margin-bottom: 0 !important;
}
.select2:not(.select-custom) .select2-selection__rendered .select2-selection__choice {
  display: none !important;
}

.vimeo-player {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .vimeo-player {
    height: 360px;
  }
}
@media (min-width: 1200px) {
  .vimeo-player {
    height: 620px;
  }
}
.vimeo-player__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vimeo-player__button {
  position: absolute;
  z-index: 10;
  background-color: transparent;
  border: none;
}
.vimeo-player__button img {
  height: 38px;
}
@media (min-width: 1200px) {
  .vimeo-player__button img {
    height: 120px;
  }
}

.player {
  height: 100% !important;
}

.avatar-uploader {
  justify-content: center;
  display: flex;
}
.avatar-uploader__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .avatar-uploader__image-container {
    justify-content: flex-start;
  }
}
.avatar-uploader__preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .avatar-uploader__preview {
    justify-content: flex-start;
    justify-self: flex-start;
    flex-direction: row !important;
    gap: 45px;
  }
}
@media (min-width: 1200px) {
  .avatar-uploader__preview {
    justify-content: flex-start;
    justify-self: flex-start;
    flex-direction: row !important;
    gap: 45px;
  }
}
.avatar-uploader__preview-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .avatar-uploader__preview-text {
    align-items: flex-start;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .avatar-uploader__preview-text {
    text-align: center;
    align-items: flex-start;
  }
}
.avatar-uploader__title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .avatar-uploader__title {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .avatar-uploader__title {
    font-size: 26px;
  }
}
.avatar-uploader__description {
  font-size: 16px;
}
.avatar-uploader__cta {
  margin-top: 16px;
}
.avatar-uploader__tabs {
  display: flex;
}
.avatar-uploader__tabs .cta:not(.cta--yellow) {
  background-color: transparent;
}
.avatar-uploader__default-avatars {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 14px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .avatar-uploader__default-avatars {
    grid-template-columns: repeat(4, auto);
  }
}
@media (min-width: 1200px) {
  .avatar-uploader__default-avatars {
    grid-template-columns: repeat(7, auto);
  }
}
.avatar-uploader__default-avatars-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.avatar-uploader__default-avatar {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.avatar-uploader__default-avatar img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.avatar-uploader__default-avatar--selected {
  outline: 3px solid black;
}
.avatar-uploader__upload-custom {
  margin: 64px auto 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.avatar-uploader__preview-modal {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar-uploader__preview-modal-content {
  position: relative;
}
.avatar-uploader__preview-modal-image {
  width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.avatar-uploader__preview-modal-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: red;
  height: 58px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
}

.pea-modal.pea-modal-show {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pea-modal {
  display: none;
}
.pea-modal__container {
  padding: 24px;
  margin: 0 24px;
  border-radius: 24px;
  box-shadow: 0 4px 54px 0 rgba(0, 0, 0, 0.2509803922);
  background-color: white;
  width: 100%;
  transition: all 0.35s;
}
@media (min-width: 768px) {
  .pea-modal__container {
    width: 80%;
    padding: 35px 25px;
  }
}
.pea-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.pea-modal__title {
  flex: 1;
  margin: 0;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
  font-family: var(--font-secondary);
}
@media (min-width: 1200px) {
  .pea-modal__title {
    font-size: 40px;
  }
}
.pea-modal__close-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  padding: 5px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .pea-modal__close-btn {
    width: 58px;
    height: 58px;
  }
}
.pea-modal__close-btn img {
  width: 20px;
  height: 20px;
}
@media (min-width: 1200px) {
  .pea-modal__close-btn img {
    height: 24px;
    width: 24px;
  }
}
.pea-modal__content {
  margin-top: 24px;
}
.pea-modal__content .nav-pills {
  gap: 15px;
}
.pea-modal__content .nav-pills .nav-link.active,
.pea-modal__content .nav-pills .show > .nav-link {
  color: var(--neutral-200);
  background-color: var(--main-color);
  outline: none;
  border: 1px solid var(--main-color);
}
.pea-modal__content .nav-pills .nav-link {
  color: var(--main-color);
  outline: none;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--main-color);
  font-weight: 700;
}
.pea-modal__footer {
  margin-top: 60px;
}
.pea-modal textarea {
  width: 100%;
  background-color: #e8eeed;
  border: none;
  padding: 10px 14px;
  border-radius: 5px;
}
.pea-modal textarea:focus {
  outline: none;
}
@media (min-width: 1200px) {
  .pea-modal textarea {
    font-size: 20px;
    padding: 26px 20px;
  }
}

.input-uploader {
  display: flex;
  align-items: center;
  border: none;
  color: #343434;
  font-size: 20px;
  font-weight: bold;
  height: 49px;
}
@media (min-width: 1200px) {
  .input-uploader {
    font-size: 25px;
    height: 54.75px;
  }
}
.input-uploader__label {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #F8F8F8;
  flex: 1;
  height: 100%;
  padding: 13px 20px;
  margin-bottom: 0 !important;
}
.input-uploader__input {
  display: none;
}
.input-uploader__cta {
  border-radius: 0 12px 12px 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-select {
  position: relative;
}
.multi-select__input:focus {
  outline: none;
}
.multi-select__input--open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 1px solid var(----neutral-600) !important;
}
.multi-select__panel {
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #f8f8f8;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  list-style: none;
  max-height: 200px;
  overflow-y: scroll;
}
.multi-select__panel--enter-start, .multi-select__panel--leave-end {
  max-height: 0;
}
.multi-select__panel--enter-end, .multi-select__panel--leave-start {
  max-height: 200px;
}
.multi-select__option {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-left: 18px;
  font-size: 20px;
  font-weight: bold;
}
.multi-select__option-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0 !important;
}
.multi-select__option:last-child {
  padding-bottom: 18px;
}
.multi-select input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #fdf475;
}

.project-card {
  position: relative;
}
.project-card__badge {
  position: absolute;
  right: 8px;
  top: 12px;
  background-color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .project-card__badge {
    padding: 8px 12px;
  }
}
.project-card__link, .project-card__link:hover {
  display: block;
  all: unset;
  cursor: pointer;
}
.project-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.project-card__title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  margin-top: 8px;
}
.project-card__author {
  font-size: 18px;
  margin-top: 2px;
}

@media only screen and (max-width: 991px) {
  .project-card__title {
    font-size: 24px;
  }
  .project-card__author {
    font-size: 16px;
  }
}
.single-project-header__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1200px) {
  .single-project-header__image {
    aspect-ratio: 16/9;
    border-radius: 20px;
  }
}

.single-project-box {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-200);
  border-radius: 13px;
}
.single-project-box__data {
  display: grid;
  row-gap: 16px;
  margin: 0;
  padding: 0 24px 15px 24px;
}
.single-project-box__data-item {
  cursor: pointer;
  display: flex;
  font-weight: normal;
  gap: 16px;
}
.single-project-box__data-item a,
.single-project-box__data-item a:hover {
  display: flex;
  gap: 16px;
  color: #343434;
  text-decoration: none;
}
.single-project-box__data-item span {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .single-project-box {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .single-project-box {
    max-width: 100%;
    position: sticky;
    top: 90px !important;
  }
}
.single-project-box hr {
  opacity: 1;
  background-color: var(--neutral-300);
  margin: 20px 0;
}

.share-modal__links {
  list-style: none;
  display: flex;
  gap: 40px;
}
@media (min-width: 1200px) {
  .share-modal__links {
    gap: 50px;
  }
}
.share-modal__links button {
  border: none;
  background-color: transparent;
}
.share-modal__links img {
  height: 45px;
}

.project-box-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  font-size: 20px;
}
.project-box-support__counter {
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 0;
  font-family: var(--font-secondary);
}
@media (min-width: 1200px) {
  .project-box-support__counter {
    font-size: 72px;
  }
}
.project-box-support__subtitle {
  font-size: 18px;
  font-weight: 700;
}
.project-box-support__cta {
  width: 100%;
  font-size: 17px;
  display: inline-flex;
  justify-content: center;
  border: none;
  padding: 16px 0;
  margin-top: 12px;
  text-transform: uppercase;
}
.project-box-support__thanks-msg {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--main-color);
  font-size: 20px;
  margin-top: 13px;
}
@media (min-width: 1200px) {
  .project-box-support__thanks-msg {
    font-size: 30px;
    margin-top: 18px;
  }
}
.project-box-support__input {
  margin-top: 14px;
  padding-top: 15px;
  border-top: 1px solid #343434;
  text-align: start;
  width: 100%;
}
.project-box-support__input-container {
  margin-bottom: 14px;
}
.project-box-support__input-range {
  accent-color: var(--main-color);
  margin-top: 12px;
  width: 100%;
}
.project-box-support__input-label {
  display: flex;
  justify-content: space-between;
}
.project-box-support__input-description {
  font-size: 17px;
}
@media (min-width: 1200px) {
  .project-box-support__input-description {
    font-size: 20px;
  }
}

.project-box-preorder {
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-box-preorder__text {
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .project-box-preorder__text {
    font-size: 20px;
  }
}
.project-box-preorder__cta {
  margin-top: 14px;
}
@media (min-width: 1200px) {
  .project-box-preorder__cta {
    margin-top: 40px;
  }
}

.profile-header__cover {
  height: 280px;
  position: relative;
}
.profile-header__cover-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.profile-header__edit-cta {
  position: absolute;
  bottom: 12px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 768px) {
  .profile-header__edit-cta {
    width: 40px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .profile-header__edit-cta {
    bottom: 16px;
    right: 0;
    width: 40px;
    height: 40px;
  }
}
.profile-header__edit-cta img {
  height: 100%;
  width: auto;
}
.profile-header__content {
  display: grid;
  row-gap: 27px;
  margin-top: -32px;
}
.profile-header__details {
  z-index: 2;
  grid-row: 1;
}
.profile-header__social {
  grid-row: 2;
  display: flex;
  gap: 18px;
}
.profile-header__name-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.profile-header__name {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 0px;
}
.profile-header__username {
  margin-bottom: 0;
  font-family: var(--font-secondary);
  font-size: 30px;
}
.profile-header__verified {
  height: 34px;
  aspect-ratio: 1;
}
.profile-header__link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-header__link img {
  height: 100%;
}
@media (min-width: 768px) {
  .profile-header__content {
    margin-top: -47px;
  }
  .profile-header__details {
    grid-column: 1;
  }
  .profile-header__social {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .profile-header__name-container {
    margin-top: 37px;
  }
  .profile-header__name {
    font-size: 38px;
  }
  .profile-header__nickname {
    margin-top: 37px;
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .profile-header__cover {
    height: 300px;
  }
  .profile-header__content {
    margin-top: -80px;
  }
  .profile-header__name-container {
    margin-top: 20px;
  }
  .profile-header__link {
    width: 24px;
    height: 24px;
  }
}

.cover-image-uploader__image-container {
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .cover-image-uploader__image-container {
    justify-content: flex-start;
  }
}
.cover-image-uploader__preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1200px) {
  .cover-image-uploader__preview {
    justify-content: flex-start;
    justify-self: flex-start;
    flex-direction: row !important;
    gap: 45px;
  }
}
.cover-image-uploader__preview-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .cover-image-uploader__preview-text {
    align-items: flex-start;
  }
}
.cover-image-uploader__title {
  font-weight: bold;
  margin-top: 16px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .cover-image-uploader__title {
    font-size: 30px;
  }
}
.cover-image-uploader__description {
  font-size: 20px;
  margin-top: 5px;
}
.cover-image-uploader__cta {
  margin-top: 16px;
}
.cover-image-uploader__default-cover-images {
  display: grid;
  row-gap: 14px;
  margin-top: 40px;
  max-height: 300px;
  overflow-y: scroll;
}
.cover-image-uploader__default-cover-images-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.cover-image-uploader__default-cover-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
}
.cover-image-uploader__default-cover-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-image-uploader__default-cover-image--selected {
  border-color: black;
}
.cover-image-uploader__upload-custom {
  width: 100%;
  height: 150px;
}
.cover-image-uploader__preview-modal {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover-image-uploader__preview-modal-content {
  position: relative;
  width: 100%;
}
.cover-image-uploader__preview-modal-image {
  width: 100%;
  height: 150px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-image-uploader__preview-modal-cta {
  position: absolute;
  right: 30px;
  bottom: -29px;
  background-color: red;
  height: 58px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
}

.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;
  padding-top: 2px;
}
.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.cta-full-width {
  width: 100%;
}

.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 span {
  padding-top: 1px;
}
.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;
  }
}
@media only screen and (max-width: 575px) {
  .cta-square-round {
    border-radius: var(--ctaSquareRound);
  }
  .cta {
    padding: 10px 15px;
  }
}
.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);
  font-family: var(--font-secondary);
}
.ptdc h3 {
  font-weight: 700;
  font-size: 1.88vw;
  margin-bottom: 20px;
  color: var(--neutral-800);
  font-family: var(--font-secondary);
}
.ptdc .description,
.ptdc .description p {
  font-weight: 400;
  font-size: 18px;
  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: 24px;
}
.ptdc.ptdc-large h4 {
  font-size: 20px;
}
.ptdc.ptdc-large h3 {
  font-size: 60px;
}
.ptdc.ptdc-large .description,
.ptdc.ptdc-large .description p {
  font-size: 22px;
}
.ptdc.ptdc-medium h4 {
  font-size: 18px;
}
.ptdc.ptdc-medium h3 {
  font-size: 48px;
}
.ptdc.ptdc-medium .description,
.ptdc.ptdc-medium .description p {
  font-size: 20px;
}
.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: 18px;
}
.ptdc.ptdc-small h4 {
  font-size: 16px;
}
.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: 14px;
}
.ptdc.ptdc-extra-small h3 {
  font-size: 24px;
}
.ptdc.ptdc-extra-small .description,
.ptdc.ptdc-extra-small .description p {
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .ptdc.ptdc-extra-large h4 {
    font-size: 20px;
  }
  .ptdc.ptdc-extra-large h3 {
    font-size: 48px;
  }
  .ptdc.ptdc-extra-large .description,
  .ptdc.ptdc-extra-large .description p {
    font-size: 22px;
  }
  .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: 20px;
  }
  .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: 18px;
  }
  .ptdc.ptdc-default h4 {
    font-size: 14px;
  }
  .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: 14px;
  }
  .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;
  height: 100%;
  background: var(--neutral-200);
  border-radius: 13px;
}
.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-top-right-radius: 13px;
  border-top-left-radius: 13px;
}
.article-card-container .content-box {
  color: var(--neutral-800);
  padding: 15px 10px;
}
.article-card-container .content-box .badge-box {
  position: absolute;
  top: 3.3%;
  left: 2.5%;
  width: 100%;
}
.article-card-container .content-box .article-category {
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.article-card-container .content-box .article-category h5 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 0px;
  font-weight: 400;
}
.article-card-container .content-box .article-card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0px;
  line-height: 1.15;
}
.article-card-container .content-box .article-card-description {
  font-size: 16px;
  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: 14px;
  font-weight: 400;
}

@media only screen and (max-width: 991px) {
  .article-card-container .content-box .article-category {
    margin-top: 20px;
  }
  .article-card-container .content-box .article-category h5 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .article-card-container .content-box .article-category h5 {
    margin-bottom: 10px;
  }
}
.people-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--neutral-200);
  border: 1px solid var(--neutral-300);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.people-card .thumb {
  position: relative;
}
.people-card .thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.people-card .thumb .category-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--neutral-800);
  color: var(--neutral-100);
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 700;
}
.people-card .thumb .category-badge .category-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.people-card .content {
  color: #000;
  padding: 15px;
}
.people-card .content .role {
  font-size: 16px;
  margin-bottom: 4px;
}
.people-card .content .nickname {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-secondary);
}
.people-card .content .real-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 8px;
}
.people-card .content .description {
  font-size: 18px;
  margin-bottom: 16px;
}
.people-card .content .socials {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.people-card .content .socials .social-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.people-card .content .socials .social-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.people-card .bottom-cta {
  margin-top: auto;
  padding: 15px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--neutral-300);
}

.match-card {
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  background-color: var(--neutral-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: space-between;
}
.match-card .match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.match-card .match-header .event-logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
}
.match-card .match-header .event-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.match-card .match-header .match-info {
  flex-grow: 1;
  padding: 0 16px;
}
.match-card .match-header .match-info .event-name {
  font-weight: 700;
  font-size: 16px;
}
.match-card .match-header .match-info .event-date {
  font-size: 14px;
  color: var(--neutral-800);
}
.match-card .match-header .match-status .status-badge {
  background: var(--neutral-800);
  color: var(--neutral-100);
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 12px;
  display: flex;
  gap: 6px;
  font-weight: 700;
}
.match-card .match-header .match-status .status-badge .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00c48c;
}
.match-card .match-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 16px;
  gap: 12px;
}
.match-card .match-body .team {
  width: 35%;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.match-card .match-body .team img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.match-card .match-body .team .team-name {
  font-weight: bold;
  font-size: 20px;
  margin-top: 8px;
  word-break: break-word;
}
.match-card .match-body .result {
  width: 30%;
  min-width: 80px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.match-card .match-body .result .mid-separator {
  margin: 0 4px;
}
.match-card .match-body .result .light-score {
  color: var(--neutral-500);
}
.match-card .match-body .result .result-label {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}
.match-card .match-footer {
  padding: 15px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--neutral-300);
}

.event-card {
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  background-color: var(--neutral-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: space-between;
  color: var(--neutral-800);
  text-decoration: none;
  cursor: pointer;
}
.event-card:hover {
  color: var(--neutral-800);
  text-decoration: none;
}
.event-card .event-header {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px 0px 15px;
}
.event-card .event-header .event-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 43px;
}
.event-card .event-header .event-status .status-badge {
  background: var(--neutral-800);
  color: var(--neutral-100);
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 12px;
  display: flex;
  gap: 6px;
  font-weight: 700;
}
.event-card .event-header .event-status .status-badge .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00c48c;
}
.event-card .event-body {
  padding: 0px 15px;
}
.event-card .event-body h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.event-card .event-body h4 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.event-card .event-footer {
  padding: 15px;
  border-top: 1px solid var(--neutral-300);
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.calendar-card {
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  background-color: var(--neutral-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 14px;
  color: var(--neutral-800);
}
.calendar-card:hover {
  color: var(--neutral-800);
}
.calendar-card .calendar-header .top-section {
  display: flex;
  justify-content: space-between;
}
.calendar-card .calendar-header .top-section .calendar-logo {
  margin-bottom: 9px;
}
.calendar-card .calendar-header .top-section .calendar-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 43px;
}
.calendar-card .calendar-header .top-section .calendar-status .status-badge {
  background: var(--neutral-800);
  color: var(--neutral-100);
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 12px;
  display: flex;
  gap: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.calendar-card .calendar-header .top-section .calendar-status .status-badge .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00c48c;
}
.calendar-card .calendar-header .bottom-section {
  margin-bottom: 15px;
}
.calendar-card .calendar-header .bottom-section h5 {
  font-size: 16px;
  font-weight: 400;
}
.calendar-card .calendar-header .bottom-section h4 {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  -webkit-text-decoration: underline 0.15em rgba(168, 0, 17, 0);
          text-decoration: underline 0.15em rgba(168, 0, 17, 0);
  transition: text-decoration-color 300ms;
}
.calendar-card .calendar-body {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-top: 1px solid var(--neutral-300);
  row-gap: 15px;
}
.calendar-card .single-event-info {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.calendar-card .single-event-info img {
  width: 20px;
}
.calendar-card .single-event-info span {
  font-size: 16px;
}
.calendar-card .calendar-footer {
  padding-top: 15px;
  border-top: 1px solid var(--neutral-300);
}
.calendar-card:hover {
  color: var(--neutral-800);
}
.calendar-card:hover .calendar-header .bottom-section h4 {
  text-decoration-color: var(--main-color);
}

.case-history-card {
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid var(--neutral-300);
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: all 0.3s ease-in-out;
}
.case-history-card .case-top {
  z-index: 2;
}
.case-history-card .case-top h5 {
  font-size: 16px;
  font-weight: 400;
}
.case-history-card .case-top h4 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.case-history-card .case-bottom {
  z-index: 2;
}
.case-history-card .case-bottom .call-to-action {
  padding: 8px 20px;
  border: 1px solid var(--neutral-100);
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-100);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
}
.case-history-card .case-bottom .call-to-action.hover-primary-left-right {
  background: linear-gradient(to right, #ffffff 50%, transparent 50%);
  background-size: 202% 100%;
  background-position: right bottom;
  transition: all 0.35s ease-out;
}
.case-history-card .overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 30, 30, 0.5019607843);
}
.case-history-card img {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease-in-out;
}
.case-history-card:hover .case-bottom .call-to-action.hover-primary-left-right {
  background-position: left bottom !important;
  color: #020a0c;
}
.case-history-card:hover img {
  transform: scale(1.2);
}

.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: 22px;
  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: 20px;
  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 {
  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 {
    margin-left: 0 !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-left-exception {
    margin-left: 33.3333333333% !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-center-exception {
    margin-left: 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-col-tp-left-exception {
    margin-left: unset !important;
  }
  footer .top-section .footer-col-link-3.footer-col-tp-center-exception {
    margin-left: 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%;
  margin-right: 40px;
  display: flex;
  align-items: center;
  position: relative;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
nav .nav-left-section .brand-logo {
  height: 29px;
  transition: 0.35s;
}
nav .nav-left-section .brand-logo-base {
  opacity: 1;
}
nav .nav-left-section .hmbrgr-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 40px;
}
nav .nav-left-section .hmbrgr-container .hmbrgr {
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
nav .nav-left-section .hmbrgr-container .hmbrgr .line-top {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
  border-radius: 50px;
}
nav .nav-left-section .hmbrgr-container .hmbrgr .line-center {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
  opacity: 1;
  border-radius: 50px;
}
nav .nav-left-section .hmbrgr-container .hmbrgr .line-bottom {
  width: 20px;
  height: 2px;
  background-color: var(--navDetailColor);
  transition: 0.35s;
  border-radius: 50px;
}
nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-top {
  transform: rotate(45deg) translateY(5px) translateX(6px);
  transition: 0.35s;
  background-color: #020a0c;
}
nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-center {
  transform: translateX(-20px);
  transition: 0.35s;
  opacity: 0;
  background-color: #020a0c;
}
nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-bottom {
  transform: rotate(-45deg) translateY(-5px) translateX(6px);
  transition: 0.35s;
  background-color: #020a0c;
}
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: 40px;
       column-gap: 40px;
  list-style: none;
  padding: 0;
  font-size: 16px;
}
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.show {
  font-weight: 800;
}
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: 1000px;
  flex-wrap: wrap;
  flex-direction: row;
}
nav .nav-center-section .links-array-container .dropdown.dropdown-cards .dropdown-menu a {
  width: calc(33% - 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: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
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;
  justify-content: flex-end;
}
nav .nav-right-section .profile-pic-container i {
  font-size: 35px;
  display: flex;
}
nav .nav-right-section .auth-container .dropdown-toggle {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
nav .nav-right-section .auth-container .dropdown-toggle::after {
  display: none;
}
nav .nav-right-section .auth-container .dropdown-toggle .empty-photo {
  height: 41px;
  width: 41px;
}
nav .nav-right-section .auth-container .dropdown-toggle .user-photo {
  background-color: #505a75;
  border-radius: 100%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-right-section .auth-container .dropdown-toggle .user-photo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
nav .nav-right-section .auth-container .dropdown-toggle .user-photo span {
  color: white;
  font-size: 15px;
  font-weight: 300;
  line-height: 68px;
}
nav .nav-right-section .auth-container .dropdown-toggle .user-name p {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  text-decoration-line: underline;
  margin: 0;
  padding: 0;
}
nav .nav-right-section .auth-container .empty-photo {
  width: 41px;
  height: 41px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
nav .nav-right-section .auth-container .dropdown-menu {
  width: 160px;
  padding: 0;
  border-radius: 6px;
  filter: drop-shadow(0px 4px 7px rgba(80, 90, 117, 0.5));
  left: 50% !important;
  transform: translate(-80%, 55px) !important;
  border: 0;
}
nav .nav-right-section .auth-container .dropdown-menu .triang {
  rotate: 45deg;
  background: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -5px;
  right: 24px;
  border-radius: 2px;
}
nav .nav-right-section .auth-container .dropdown-menu ul {
  padding-left: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
nav .nav-right-section .auth-container .dropdown-menu ul li {
  width: 100%;
  font-weight: 500;
  color: #343434;
  text-decoration: none;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
nav .nav-right-section .auth-container .dropdown-menu ul li a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 500;
  color: #343434;
  text-decoration: none;
}
nav .nav-right-section .auth-container .dropdown-menu ul li {
  cursor: pointer;
}
nav .nav-right-section .auth-container .dropdown-menu ul li::marker {
  display: none;
}
nav .nav-right-section .auth-container .dropdown-menu ul li.login {
  background-color: #505a75;
  color: white;
}
nav .nav-right-section .auth-container .dropdown-menu ul:last-child {
  border-top: 1px solid #343434;
}
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 .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: #020a0c;
}
nav.menu-is-open .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: #020a0c;
}
nav.menu-is-open .nav-center-section .links-array-container {
  transition: 0.35s;
  display: none;
}
nav.menu-is-open .cta.cta-first-color {
  background-color: var(--main-color);
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-left-section .hmbrgr-container .hmbrgr .line-top {
  background-color: #020a0c;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-left-section .hmbrgr-container .hmbrgr .line-center {
  background-color: #020a0c;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-left-section .hmbrgr-container .hmbrgr .line-bottom {
  background-color: #020a0c;
  transition: 0.35s;
}
nav.scrolled.menu-is-open .nav-center-section ul li svg path {
  stroke: #020a0c;
}
nav.scrolled.menu-is-open .nav-center-section ul li a {
  color: #020a0c;
}
nav.scrolled.menu-is-open .nav-center-section ul li a:hover {
  color: #020a0c;
}
nav.scrolled.menu-is-open .nav-right-section .language-menu .lang-chevron-down g g {
  transition: 0.15s;
  stroke: #020a0c;
}
nav.scrolled.menu-is-open .nav-right-section .vertical-divider {
  background-color: #020a0c;
  transition: 0.35s;
}

@media only screen and (max-width: 991px) {
  nav {
    height: var(--nav-height);
  }
  nav .nav-left-section {
    margin-right: 0;
  }
  nav .nav-left-section img {
    height: 43px;
  }
  nav .nav-left-section .hmbrgr-container {
    display: flex;
  }
  nav .nav-center-section .links-array-container {
    display: none;
  }
  nav .nav-right-section {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  nav .nav-right-section .auth-container .dropdown-toggle .user-photo {
    width: 27px;
    height: 27px;
  }
  nav .nav-right-section .auth-container .empty-photo {
    width: 27px;
    height: 27px;
  }
}
@media only screen and (max-width: 575px) {
  nav {
    height: var(--nav-height);
    padding: 0 1rem !important;
  }
  nav .nav-left-section .brand-logo {
    height: 23px;
  }
  nav .nav-left-section .hmbrgr-container .hmbrgr {
    height: 16px;
  }
  nav .nav-left-section .hmbrgr-container .hmbrgr .line-top {
    width: 18px;
  }
  nav .nav-left-section .hmbrgr-container .hmbrgr .line-center {
    width: 18px;
  }
  nav .nav-left-section .hmbrgr-container .hmbrgr .line-bottom {
    width: 18px;
  }
  nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-top {
    transform: rotate(45deg) translateY(4px) translateX(6px);
    transition: 0.35s;
    background-color: #020a0c;
  }
  nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-center {
    transform: translateX(-20px);
    transition: 0.35s;
    opacity: 0;
    background-color: #020a0c;
  }
  nav .nav-left-section .hmbrgr-container.active .hmbrgr .line-bottom {
    transform: rotate(-45deg) translateY(-4px) translateX(6px);
    transition: 0.35s;
    background-color: #020a0c;
  }
}
#full-page-menu {
  background-color: var(--fullmenuBgColor);
  color: var(--fullmenuTextColor);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 998;
  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;
  height: 100%;
}
#full-page-menu .nav-search-form {
  margin-left: 0;
}
#full-page-menu hr {
  margin-top: 30px;
  margin-bottom: 25px;
}
#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 .full-menu {
  row-gap: 60px;
  padding-bottom: 60px;
}
#full-page-menu .full-menu .page-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
  font-family: var(--font-secondary);
}
#full-page-menu .full-menu ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
#full-page-menu .full-menu ul li {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}
#full-page-menu .full-menu .accordion .accordion-item {
  background-color: transparent;
  border: 0;
}
#full-page-menu .full-menu .accordion .accordion-item .accordion-header {
  display: flex;
  margin-bottom: 7px;
}
#full-page-menu .full-menu .accordion .accordion-item .accordion-button {
  background-color: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 24px;
  box-shadow: none;
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-secondary);
  justify-content: space-between;
  width: 100%;
}
#full-page-menu .full-menu .accordion .accordion-item .accordion-button:focus {
  border: 0;
  box-shadow: none;
}
#full-page-menu .full-menu .accordion .accordion-item .accordion-button::after {
  background-image: url("/assets/img/svg/chevron_down_black.svg");
  width: 10px;
  height: 10px;
  background-size: 10px;
}
#full-page-menu .full-menu .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg) translateY(50%);
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container {
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  padding: 0;
  justify-content: space-between;
  row-gap: 10px;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single {
  width: calc(50% - 5px);
  background: var(--neutral-200);
  color: var(--neutral-100);
  border-radius: 5px;
  padding: 15px;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li img {
  aspect-ratio: 1;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#full-page-menu .full-menu .accordion.dropdown-cards .list-container.show {
  display: flex;
  gap: 10px;
}

@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;
  }
  #full-page-menu .full-menu .page-title {
    font-size: 24px;
  }
  #full-page-menu .full-menu ul li {
    font-size: 24px;
  }
  #full-page-menu .full-menu .accordion .accordion-item .accordion-button {
    font-size: 24px;
  }
  #full-page-menu .full-menu .accordion .accordion-item .accordion-button:focus {
    border: 0;
    box-shadow: none;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single {
    border-radius: 5px;
    padding: 15px;
    width: 100%;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li img {
    height: 40px;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li h6 {
    font-size: 15px;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container .dropdown-card-single li p {
    font-size: 14px;
    line-height: 1.25;
  }
  #full-page-menu .full-menu .accordion.dropdown-cards .list-container.show {
    display: flex;
    gap: 10px;
  }
}
.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: 18px;
  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-pagination .swiper-pagination-bullet {
    font-size: 16px;
  }
  .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 .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: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0px;
}
.wp-card .card-content .content .text h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  font-family: var(--font-secondary);
}
.wp-card .card-content .content .text .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.wp-card .card-content .content .cta {
  margin-top: 0.75rem;
}
.wp-card .card-content .content .cta.hover-primary-left-right {
  background: linear-gradient(to right, var(--ctaPrimaryColor) 50%, transparent 50%);
  background-size: 202% 100%;
  background-position: right bottom;
  transition: all 0.35s ease-out;
}
.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%;
}
.wp-card:hover .card-content .content .cta.hover-primary-left-right {
  background-position: left bottom !important;
  color: #fff;
}

@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: 16px;
  }
  .wp-card .card-content .content .text h2 {
    font-size: 24px;
  }
  .wp-card .card-content .content .text .description {
    font-size: 18px;
  }
  .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: 18px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: none;
  border-radius: 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 #d0d5d2;
  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: #fff;
  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) !important;
  background-color: var(--main-color) !important;
}
.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;
}

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

.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(--secondary-color);
}
.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-selection--single .select2-selection__rendered {
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 7px;
}

.select2-container--bootstrap-5 .select2-dropdown {
  background-color: #fff;
  border: 2px solid rgba(11, 31, 59, 0.14);
  top: 0%;
}
.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]:not(.select2-results__option--highlighted) {
  background-color: unset;
  color: var(--main-color);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted[aria-selected=true] {
  background-color: unset;
  color: var(--main-color);
}

.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: 18px;
  display: flex;
  align-items: center;
}

.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;
}

@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;
}
.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: 18px;
  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: 18px;
  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: 18px;
  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 {
  /* Chrome, Safari, Edge, Opera */
}
.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 {
  /* Firefox */
}
.form-container .form-label-group input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.form-container .form-btn {
  font-size: 16px;
  background-color: var(--main-color);
  color: var(--main-color);
  border-radius: 35px;
  border: 1px solid var(--main-color);
  width: 280px;
  height: 52px;
  line-height: 50px;
  display: block;
}
.form-container .form-privacy {
  font-size: 14px;
  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: 14px;
  -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: 14px !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;
}

#bracket {
  overflow-x: scroll;
}
#bracket .jQBracket .teamContainer .team {
  border: 1px solid var(--neutral-800);
  background: unset;
}
#bracket .jQBracket .teamContainer .team.lose, #bracket .jQBracket .teamContainer .team.highlightLoser {
  background-color: unset;
}
#bracket .jQBracket .teamContainer .team.highlight {
  background: var(--main-color) !important;
  color: white !important;
}
#bracket .jQBracket .teamContainer .team.highlight .score {
  background-color: rgba(255, 255, 255, 0.5);
}
#bracket .jQBracket .teamContainer .team.highlightWinner {
  background: linear-gradient(90deg, #d4af37 0%, #e9d490 46.4%, #d4af37 100%);
}
#bracket .jQBracket .teamContainer .team:nth-child(1) {
  border-radius: 5px 5px 0px 0px;
}
#bracket .jQBracket .teamContainer .team:nth-child(2) {
  border-top: none;
  border-radius: 0px 0px 5px 5px;
}
#bracket .jQBracket .teamContainer .team .label {
  padding: 5px;
  height: 100%;
  text-overflow: ellipsis;
  font-family: var(--font-secondary);
}
#bracket .jQBracket .teamContainer .team .score {
  padding: 5px;
  height: 100%;
}
#bracket .jQBracket .connector {
  border-width: 1px;
  transform: translateX(-1px);
  border-color: var(--neutral-800);
}
#bracket .jQBracket .connector.highlight {
  border-color: var(--main-color);
}
#bracket .jQBracket .connector.highlightLoser {
  border-color: var(--neutral-800);
}
#bracket .jQBracket .connector .connector {
  border-width: 1px;
}
#bracket .jQBracket .connector .connector.highlightLoser {
  border-color: var(--neutral-800);
}
#bracket .jQBracket .win .bubble {
  background: #d4af37;
  color: var(--neutral-600);
}

.meeting-container {
  direction: ltr;
}
.meeting-container .meeting-box {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 23px 0;
  margin: 0;
}
.meeting-container .meeting-box .calendar-card {
  border: 0;
  padding: 0;
}
.meeting-container .meeting-box .meeting-main-section {
  display: flex;
  flex-direction: column;
  padding: 0 23px;
}
.meeting-container .meeting-box .meeting-main-section .logo-img {
  width: 50%;
  aspect-ratio: 16/5;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.meeting-container .meeting-box .meeting-main-section .location-img {
  margin-right: 10px;
}
.meeting-container .meeting-box .meeting-main-section h4 {
  font-size: 1.979vw;
  font-weight: 700;
}
.meeting-container .meeting-box .meeting-main-section .date-time-meeting,
.meeting-container .meeting-box .meeting-main-section .location-meeting {
  font-size: 0.833vw;
  font-weight: 700;
  margin: 0;
  line-height: 25px;
}
.meeting-container .meeting-box .meeting-main-section .date-time-meeting span,
.meeting-container .meeting-box .meeting-main-section .location-meeting span {
  font-size: 0.781vw;
  font-weight: 400;
  text-transform: uppercase;
}
.meeting-container .meeting-box .meeting-main-section .date-time-meeting {
  margin: 0 5px;
}
.meeting-container .meeting-box .meeting-main-section .meeting-subtitle {
  font-size: 0.99vw;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 20px;
}
.meeting-container .meeting-box .meeting-description-open-section {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0 32px 10px;
  border-left: 1px solid rgba(11, 31, 59, 0.4);
}
.meeting-container .meeting-box .meeting-description-open-section .divider-tablet {
  display: none;
  margin: 0;
  padding: 0;
}
.meeting-container .meeting-box .meeting-description-open-section h5 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.meeting-container .meeting-box .meeting-description-open-section p {
  font-size: 18px;
  font-weight: 400;
}
.meeting-container .meeting-box .meeting-description-open-section .cta-box {
  height: 100%;
  padding-top: 27px;
  font-size: 15px !important;
}
.meeting-container .meeting-box .meeting-description-open-section .cta-box a {
  background-color: transparent;
  color: var(--main-color);
}
.meeting-container .meeting-box .icon-share {
  width: 1.563vw;
  height: 2.031vh;
}
.meeting-container .meeting-date-short-section {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  border: 0.6px solid #d9d9d9;
  border-radius: 13px;
  padding: 10px;
  font-size: 10px;
  font-weight: 400;
  display: flex;
}
.meeting-container .meeting-date-short-section p:first-of-type {
  font-size: 17px;
}

.agenda-text-box {
  margin: 0;
  padding: 10px 0;
}
.agenda-text-box .subtitle-agenda {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.agenda-text-box .title-agenda {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
}

.agenda-scroll-box a {
  text-decoration: none;
  color: initial;
}
.agenda-scroll-box {
  flex-wrap: wrap;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: 758px;
  margin: 0;
  padding: 0;
}
.agenda-scroll-box .agenda-scroll-inside {
  row-gap: 15px;
}
.agenda-scroll-box::-webkit-scrollbar {
  display: inline-block;
  width: 4px;
}
.agenda-scroll-box {
  /* Track */
}
.agenda-scroll-box::-webkit-scrollbar-track {
  background: #a8a8a8;
  border-radius: 32px;
}
.agenda-scroll-box {
  /* Handle */
}
.agenda-scroll-box::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 32px;
}
.agenda-scroll-box {
  /* Handle on hover */
}
.agenda-scroll-box::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

.agenda-overlay {
  background: linear-gradient(180deg, rgba(11, 31, 59, 0) 80%, #0b1f3b 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.meeting-share-box .dropdown-toggle {
  cursor: pointer;
}
.meeting-share-box .dropdown-menu {
  padding: 0;
  background-color: transparent;
  border: none;
}
.meeting-share-box .meeting-share-icon {
  background-color: var(--main-color);
  box-shadow: 1px 2px 3px 0px #827f7f;
  height: 32px;
  width: 32px;
  padding: 6px;
  border-radius: 50%;
  margin: 2px;
  cursor: pointer;
  transition: all 0.35s;
  opacity: 1;
}
.meeting-share-box .meeting-share-icon img {
  width: 100%;
}
.meeting-share-box .meeting-share-icon:hover {
  transition: all 0.35s;
  opacity: 0.7;
}

.meeting-share-box-short .dropdown-menu.show {
  transform: translate3d(-5px, -35px, 0px) !important;
}

.meeting-share-box-extend .dropdown-menu.show {
  transform: translate3d(0px, 35px, 0px) !important;
}

@media only screen and (max-width: 1200px) {
  .meeting-share-box-short .dropdown-menu.show {
    transform: translate3d(-5px, -25px, 0px) !important;
  }
}
@media only screen and (max-width: 990px) {
  .meeting-share-box-short .dropdown-menu.show {
    transform: translate3d(-3px, -40px, 0px) !important;
  }
}
@media only screen and (max-width: 991px) {
  .meeting-container .meeting-box {
    padding: 15px 0;
  }
  .meeting-container .meeting-box .meeting-main-section {
    width: -webkit-fill-available;
    padding: 0 15px;
  }
  .meeting-container .meeting-box .meeting-main-section h5 {
    font-size: 16px;
  }
  .meeting-container .meeting-box .meeting-main-section h4 {
    font-size: 24px;
  }
  .meeting-container .meeting-box .meeting-main-section .single-event-info {
    font-size: 16px;
  }
  .meeting-container .meeting-box .meeting-main-section .single-event-info span {
    font-size: 16px;
  }
  .meeting-container .meeting-box .meeting-main-section .date-time-meeting {
    font-size: 19px;
  }
  .meeting-container .meeting-box .meeting-main-section .date-time-meeting span {
    font-size: 15px;
  }
  .meeting-container .meeting-box .meeting-main-section .location-meeting {
    font-size: 16px;
  }
  .meeting-container .meeting-box .meeting-main-section .location-meeting span {
    font-size: 15px;
  }
  .meeting-container .meeting-box .meeting-main-section .logo-img {
    width: 103px;
    height: 42px;
    margin-top: 12px;
  }
  .meeting-container .meeting-box .meeting-main-section .meeting-subtitle {
    font-size: 19px;
  }
  .meeting-container .meeting-box .meeting-description-open-section {
    width: -webkit-fill-available;
    border-left: none;
    margin: 0;
    padding: 12px 12px 0px 12px;
  }
  .meeting-container .meeting-box .meeting-description-open-section h5 {
    font-size: 24px;
  }
  .meeting-container .meeting-box .meeting-description-open-section p {
    font-size: 16px;
  }
  .meeting-container .meeting-box .meeting-description-open-section .icon-share {
    width: 23px;
    height: 23px;
  }
  .meeting-container .meeting-box .meeting-description-open-section .cta-box {
    height: auto;
    font-size: 15px !important;
  }
  .meeting-container .meeting-box .icon-share {
    width: 30px;
    height: 39px;
  }
  .agenda-border-bottom {
    padding-bottom: 8px;
  }
  .meeting-share-box-extend .dropdown-menu.show {
    transform: translate3d(-3px, -155px, 0px) !important;
  }
}
@media only screen and (max-width: 575px) {
  .meeting-container {
    margin-right: 0;
    margin-left: -10px;
    border-left-width: 11px;
  }
  .meeting-container .meeting-box {
    padding: 12px 0;
  }
  .meeting-container .meeting-box .meeting-main-section {
    padding: 0 12px;
  }
  .meeting-container .meeting-box .meeting-main-section .logo-img {
    margin-bottom: 12px;
  }
  .meeting-container .meeting-box .meeting-main-section .meeting-subtitle {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .meeting-container .meeting-box .meeting-description-open-section {
    border-top: 1px solid var(--neutral-300);
    margin-top: 10px;
  }
  .meeting-container .meeting-box .meeting-description-open-section .cta-box {
    padding-top: 12px;
  }
  .meeting-container .meeting-box .meeting-description-open-section .cta-box .cta {
    padding: 10px 10px;
  }
  .meeting-container .meeting-date-short-section {
    display: none;
  }
  .meeting-container .width-short-version {
    width: unset;
  }
  .agenda-text-box .subtitle-agenda {
    font-size: 12px;
  }
  .agenda-text-box .title-agenda {
    font-size: 26px;
  }
  .agenda-border-bottom {
    padding-bottom: 5px;
  }
}
.agenda-scroll-red {
  /* Track */
}
.agenda-scroll-red::-webkit-scrollbar-track {
  background: #fff !important;
}
.agenda-scroll-red::-webkit-scrollbar-thumb {
  background-color: var(--main-color) !important;
}

.agenda-scroll-inside-100 {
  width: 100%;
}

.reveal {
  position: relative;
  opacity: 0.2;
  transition: 2s all;
}
.reveal .meeting-container .meeting-box,
.reveal .meeting-container .meeting-date-short-section {
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.5));
}

.reveal.active {
  opacity: 1;
}
.reveal.active .meeting-container .meeting-box,
.reveal.active .meeting-container .meeting-date-short-section {
  background: #ffffff;
}

#page-loader .white-section {
  width: 100%;
  height: 60vh;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: absolute;
  top: 0;
}
#page-loader .white-section .top-s {
  height: 80%;
  background-color: #fff;
}
#page-loader .white-section .loader-logo {
  display: flex;
}
#page-loader .white-section .loader-logo .left-logo,
#page-loader .white-section .loader-logo .right-logo {
  background: white;
  width: 100%;
  height: 100%;
  flex: 1;
}
#page-loader .white-section .loader-logo img {
  flex-shrink: 0;
  width: 100%;
  margin-top: -2px;
}

.main-slider .main-swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.main-slider .main-swiper .swiper-slide .text-container {
  position: relative;
  z-index: 2;
  padding: 45px 38px;
  width: 60%;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 16px;
}
.main-slider .main-swiper .swiper-slide .text-container .pretitle {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.main-slider .main-swiper .swiper-slide .text-container .pretitle .type,
.main-slider .main-swiper .swiper-slide .text-container .pretitle .date,
.main-slider .main-swiper .swiper-slide .text-container .pretitle .tag {
  font-size: 18px;
  font-weight: 400;
}
.main-slider .main-swiper .swiper-slide .text-container .pretitle .date {
  padding: 5px 9px;
  border: 1px solid var(--neutral-800);
  border-radius: 8px;
  line-height: 1;
}
.main-slider .main-swiper .swiper-slide .text-container .title {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
}
.main-slider .main-swiper .swiper-slide .text-container .description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 10px;
}
.main-slider .main-swiper .swiper-slide .text-container .cta {
  margin-top: 25px;
}
.main-slider .main-swiper .swiper-slide .creators-tag {
  display: flex;
  z-index: 1;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  -moz-column-gap: 80px;
       column-gap: 80px;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.main-slider .main-swiper .swiper-slide .creators-tag .single-creator {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-slider .main-swiper .swiper-slide .creators-tag .single-creator img {
  border-radius: 50%;
  height: 46px;
  width: 46px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-slider .main-swiper .swiper-slide .creators-tag .single-creator .nickname {
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--neutral-500);
  text-underline-offset: 2px;
}
.main-slider .main-swiper .swiper-slide .image-container {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.main-slider .swiper-pagination-main {
  position: relative;
  bottom: 40px;
}

.services-section {
  margin-top: 80px;
}
.services-section .big-ptd {
  margin-bottom: 30px;
}
.services-section .services-list {
  overflow: hidden;
}
.services-section .services-list .label {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 13px;
}
.services-section .services-list .single-service {
  padding: 30px 0;
}
.services-section .services-list .single-service .service-name {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  height: 100%;
}
.services-section .services-list .single-service .service-name .number-of {
  background-color: var(--neutral-800);
  border-radius: 50%;
  height: 38px;
  width: 38px;
  position: relative;
}
.services-section .services-list .single-service .service-name .number-of .number-container {
  height: 38px;
  width: 38px;
}
.services-section .services-list .single-service .service-name .number-of span {
  position: absolute;
  color: var(--neutral-300);
  font-size: 18px;
  font-weight: 700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.services-section .services-list .single-service .service-name .name {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.services-section .services-list .single-service .service-name .name::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.services-section .services-list .single-service:hover .service-name .name::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.services-section .services-list .single-service:hover .hover-primary-left-right {
  background-position: left bottom !important;
  color: #fff;
}
.services-section .services-list .single-service .service-description {
  display: flex;
  align-items: center;
  height: 100%;
}
.services-section .services-list .single-service .service-link {
  display: flex;
  justify-content: flex-end;
}
.services-section .services-list .single-service .service-link .hover-primary-left-right {
  background: linear-gradient(to right, var(--ctaPrimaryColor) 50%, white 50%);
  background-size: 202% 100%;
  background-position: right bottom;
  transition: all 0.35s ease-out;
}
.services-section .services-list .single-service {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.services-section .services-list:not(.faded) .single-service {
  opacity: 1;
  transform: translateY(0);
}
.services-section .services-list .single-service:nth-child(1) {
  transition-delay: 0s;
}
.services-section .services-list .single-service:nth-child(2) {
  transition-delay: 0.2s;
}
.services-section .services-list .single-service:nth-child(3) {
  transition-delay: 0.4s;
}
.services-section .services-list .single-service:nth-child(4) {
  transition-delay: 0.6s;
}
.services-section .services-list .single-service:nth-child(5) {
  transition-delay: 0.8s;
}
.services-section .services-list .single-service:nth-child(6) {
  transition-delay: 1s;
}
.services-section .services-list .single-service:nth-child(7) {
  transition-delay: 1.2s;
}
.services-section .services-list .single-service:nth-child(8) {
  transition-delay: 1.4s;
}
.services-section .services-list .single-service:nth-child(9) {
  transition-delay: 1.6s;
}
.services-section .services-list .single-service:nth-child(10) {
  transition-delay: 1.8s;
}
.services-section .services-list .single-service:nth-child(11) {
  transition-delay: 2s;
}
.services-section .services-list .single-service:nth-child(12) {
  transition-delay: 2.2s;
}
.services-section .services-list .single-service:nth-child(13) {
  transition-delay: 2.4s;
}
.services-section .services-list .single-service:nth-child(14) {
  transition-delay: 2.6s;
}
.services-section .services-list .single-service:nth-child(15) {
  transition-delay: 2.8s;
}
.services-section .services-list .single-service:nth-child(16) {
  transition-delay: 3s;
}
.services-section .services-list .single-service:nth-child(17) {
  transition-delay: 3.2s;
}
.services-section .services-list .single-service:nth-child(18) {
  transition-delay: 3.4s;
}
.services-section .services-list .single-service:nth-child(19) {
  transition-delay: 3.6s;
}
.services-section .services-list .single-service:nth-child(20) {
  transition-delay: 3.8s;
}

.ambassadors-section {
  margin-top: 100px;
}

.clients-section .big-ptd {
  margin-top: 60px;
}

.long-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.long-cta strong {
  margin-left: 3px;
}
.long-cta img {
  margin: 0px 15px;
}

.big-ptd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.big-ptd h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
}
.big-ptd h3 {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 80px);
  line-height: 1;
}

.events-section {
  margin-top: 60px;
  margin-bottom: 60px;
}
.events-section .swiper-slide {
  height: auto;
}
.events-section .calendar-pagination {
  position: relative;
  bottom: -10px;
}

.case-section {
  margin-top: 60px;
  margin-bottom: 60px;
}
.case-section .case-pagination {
  position: relative;
  bottom: -10px;
}

.people-swiper .swiper-slide {
  height: auto;
}

@media only screen and (max-width: 991px) {
  #page-loader .white-section {
    height: 40vh;
  }
  .main-slider .main-swiper .swiper-slide {
    aspect-ratio: unset;
    position: relative;
  }
  .main-slider .main-swiper .swiper-slide .text-container {
    padding: 25px 0px;
    width: 100%;
  }
  .main-slider .main-swiper .swiper-slide .text-container .pretitle {
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 10px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .type,
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .date,
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .tag {
    font-size: 16px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .date {
    padding: 4px 8px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .title {
    font-size: 38px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .description {
    font-size: 18px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .cta {
    margin-top: 15px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag {
    position: relative;
    bottom: unset;
    left: unset;
    transform: translateX(0);
    border-radius: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 25px 0px 0px 0px;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: center;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator {
    gap: 20px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator img {
    height: 36px;
    width: 36px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator .nickname {
    font-size: 18px;
  }
  .main-slider .main-swiper .swiper-slide .image-container {
    aspect-ratio: 16/9;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
  }
  .main-slider .swiper-pagination-main {
    position: relative;
    bottom: -10px;
  }
  .services-section {
    margin-top: 50px;
  }
  .services-section .services-list {
    overflow: hidden;
  }
  .services-section .services-list .label {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .services-section .services-list .single-service {
    padding: 20px 0;
  }
  .services-section .services-list .single-service .service-name {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .services-section .services-list .single-service .service-name .number-of .number-container {
    height: 25px;
    width: 25px;
  }
  .services-section .services-list .single-service .service-name .number-of {
    height: 25px;
    width: 25px;
  }
  .services-section .services-list .single-service .service-name .number-of span {
    font-size: 14px;
  }
  .services-section .services-list .single-service .service-name .name {
    font-size: 24px;
  }
  .services-section .services-list .single-service .service-name .name .underline {
    height: 2px;
    background-color: var(--main-color);
    width: 100%;
  }
  .services-section .services-list .single-service .service-description {
    height: 100%;
  }
  .big-ptd h4 {
    font-size: 16px;
  }
  .big-ptd h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 575px) {
  .main-slider .main-swiper .swiper-slide {
    aspect-ratio: unset;
    position: relative;
  }
  .main-slider .main-swiper .swiper-slide .text-container {
    padding: 25px 0px;
    width: 100%;
  }
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .type,
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .date,
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .tag {
    font-size: 16px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .pretitle .date {
    padding: 4px 8px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .title {
    font-size: 38px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .description {
    font-size: 18px;
  }
  .main-slider .main-swiper .swiper-slide .text-container .cta {
    margin-top: 15px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator {
    gap: 20px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator img {
    height: 46px;
    width: 46px;
  }
  .main-slider .main-swiper .swiper-slide .creators-tag .single-creator .nickname {
    display: none;
  }
  .main-slider .main-swiper .swiper-slide .image-container {
    aspect-ratio: 16/9;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
  }
  .main-slider .swiper-pagination-main {
    position: relative;
    bottom: -10px;
  }
  .services-section .big-ptd h3,
  .clients-section .big-ptd h3,
  .case-section .big-ptd h3,
  .related-section .big-ptd h3 {
    font-size: 37px;
  }
}
.main-section .big-ptd {
  margin-bottom: 30px;
}
.main-section .big-ptd p {
  margin-bottom: 0;
}
.main-section img {
  width: 100%;
  border-radius: 30px;
}

.content-section {
  margin-top: 50px;
}
.content-section p {
  line-height: 1.25;
  font-size: 18px;
}

.blocks-section-ptd {
  margin-top: 170px;
  margin-bottom: 20px;
}
.blocks-section-ptd .big-ptd {
  margin-bottom: 70px;
}

.blocks-section .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.blocks-section .text-container h3 {
  font-size: 72px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 20px;
}
.blocks-section .text-container h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blocks-section .text-container p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.blocks-section .image-container img {
  width: 100%;
  border-radius: 30px;
}

.creators-section {
  margin-top: 95px;
}

.recall-section-bg {
  background-color: var(--neutral-200);
  margin-top: 50px;
}

.recall-section {
  padding: 90px 0px;
  row-gap: 60px;
}
.recall-section .text-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.recall-section .image-container img {
  width: 100%;
  border-radius: 30px;
}

.related-section {
  margin-top: 50px;
}
.related-section .related-slider {
  margin-top: 30px;
}

.related-pagination {
  position: relative;
  bottom: -10px !important;
}

.related-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.related-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .main-section .big-ptd {
    margin-bottom: 20px;
  }
  .content-section {
    margin-top: 30px;
  }
  .blocks-section-ptd {
    margin-top: 125px;
  }
  .blocks-section-ptd .big-ptd {
    margin-bottom: 35px;
  }
  .blocks-section .text-container h3 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .blocks-section .text-container h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .blocks-section .text-container p {
    font-size: 16px;
  }
  .blocks-section .image-container img {
    border-radius: 30px;
  }
  .creators-section {
    margin-top: 75px;
  }
  .related-section {
    margin-top: 55px;
  }
  .related-section .related-slider {
    margin-top: 25px;
  }
  .recall-section-bg {
    margin-top: 50px;
  }
  .recall-section {
    padding: 80px 0px;
    row-gap: 90px;
  }
  .recall-section .image-container img {
    border-radius: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .main-section .big-ptd {
    margin-bottom: 25px;
  }
  .main-section img {
    border-radius: 8px;
  }
  .content-section {
    margin-top: 40px;
  }
  .blocks-section-ptd {
    margin-top: 75px;
  }
  .blocks-section-ptd .big-ptd {
    margin-bottom: 35px;
  }
  .blocks-section-ptd .big-ptd h3 {
    font-size: 37px;
  }
  .creators-section {
    margin-top: 75px;
  }
  .recall-section-bg {
    margin-top: 75px;
  }
  .related-section {
    margin-top: 75px;
  }
  .related-section .related-slider {
    margin-top: 35px;
  }
  .recall-section {
    padding: 50px 0px;
    row-gap: 100px;
  }
  .recall-section .text-container {
    margin-bottom: 20px;
  }
}
.single-case-page .content-section {
  margin-top: 50px;
}
.single-case-page .content-section p {
  line-height: 1.25;
  font-size: 18px;
}
.single-case-page .main-section .big-ptd {
  margin-bottom: 15px;
}
.single-case-page .main-section .big-ptd h3 {
  text-transform: none;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
}
.single-case-page .main-section img {
  border-radius: 30px;
  width: 100%;
}
.single-case-page .main-section .tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
.single-case-page .main-section .tags .tag {
  height: 34px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 8px;
  border: 1px solid var(--neutral-800);
}
.single-case-page .main-section .tags .tag img {
  height: 22px;
  width: 22px;
}
.single-case-page .main-section .tags .tags {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
  .single-case-page .main-section .big-ptd h3 {
    font-size: 37px;
  }
  .single-case-page .main-section .tags .tag {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .single-case-page .main-section img {
    border-radius: 8px;
  }
  .single-case-page .main-section .tags {
    flex-direction: column;
    justify-content: unset;
    align-items: flex-start;
  }
  .single-case-page .main-section .tags .tags {
    justify-content: flex-start;
  }
}
.order-tournaments {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.order-tournaments h4 {
  color: var(--Neutral-700, #1f1e1e);
  font-size: 18px;
  font-weight: 400;
  text-align: end;
}
.order-tournaments .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.order-tournaments .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border: unset;
}
.order-tournaments .select2-container--bootstrap-5 .select2-selection--single {
  border: unset;
}
.order-tournaments .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  justify-content: end;
}
.order-tournaments .select2-selection--single .select2-selection__arrow b {
  margin-right: 0;
}

.single-tournament-page .main-section .single-category {
  text-transform: capitalize;
  font-size: 18px;
  padding: 8px 15px;
  border: 1px solid var(--neutral-800);
  border-radius: 10px;
  background-color: transparent;
  color: var(--neutral-800);
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.single-tournament-page .main-section .single-category img {
  height: 20px;
  width: 20px;
}
.single-tournament-page .main-section .big-ptd h3 {
  font-size: 60px;
  font-weight: 700;
}
.single-tournament-page .tournament-info-container {
  margin-top: 50px;
  margin-bottom: 40px;
}
.single-tournament-page .tournament-info-container .tournament-info span {
  font-weight: 400;
  font-size: 20px;
}
.single-tournament-page .tournament-info-container .tournament-info h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
}
.single-tournament-page .matches-container {
  row-gap: 1.5rem;
  justify-content: center;
}
.single-tournament-page .bracket-container {
  margin-top: 95px;
  margin-bottom: 65px;
}
.single-tournament-page .bracket-container .bracket-wrapper {
  border: 1px solid var(--neutral-800);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}
.single-tournament-page .bracket-container .bracket-wrapper .bracket-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--neutral-800);
  border-bottom: 2px solid var(--neutral-800);
  text-transform: uppercase;
}
.single-tournament-page .bracket-container .bracket-wrapper .bracket-header h4 {
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.single-tournament-page .bracket-container .bracket-wrapper .bracket-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-tournament-page .leaderboard-container {
  margin-top: 95px;
  margin-bottom: 65px;
}
.single-tournament-page .leaderboard-container .table-wrapper {
  border: 1px solid var(--neutral-800);
  border-radius: 20px;
  overflow: hidden;
  overflow-x: auto;
  margin-top: 30px;
}
.single-tournament-page .leaderboard-container .leaderboard {
  width: 100%;
  border-collapse: collapse;
  font-size: 22px;
}
.single-tournament-page .leaderboard-container .leaderboard thead {
  background: var(--neutral-800);
  border-bottom: 2px solid var(--neutral-800);
  color: #fff;
  text-transform: uppercase;
}
.single-tournament-page .leaderboard-container .leaderboard thead th {
  padding: 12px 8px 10px 8px;
  text-align: left;
  font-weight: bold;
}
.single-tournament-page .leaderboard-container .leaderboard thead th.w-small {
  width: 70px;
}
.single-tournament-page .leaderboard-container .leaderboard thead th:nth-child(n+3) {
  text-align: center;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr {
  border-bottom: 1px solid var(--neutral-800);
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr:last-child {
  border-bottom: none;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr td {
  padding: 12px 8px;
  vertical-align: middle;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr td:nth-child(n+3) {
  text-align: center;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-position {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 48px;
  width: 120px;
  padding-left: 20px;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell {
  font-size: 18px;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info img {
  width: 47px;
  height: 47px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text {
  display: flex;
  flex-direction: column;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text .team-name {
  font-weight: bold;
  white-space: nowrap;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text .team-country {
  font-size: 16px;
}
.single-tournament-page .leaderboard-container .leaderboard tbody tr .positive {
  color: #00aa00;
  font-weight: bold;
}
.single-tournament-page .case-section {
  background-color: var(--neutral-200);
  padding: 70px 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .single-tournament-page .main-section .single-category {
    padding: 6px 15px;
  }
  .single-tournament-page .main-section .single-category span {
    padding-top: 2px;
  }
  .single-tournament-page .main-section .big-ptd {
    margin-bottom: 0;
  }
  .single-tournament-page .main-section .big-ptd h3 {
    font-size: 40px;
    margin-bottom: 0;
  }
  .single-tournament-page .leaderboard-container {
    margin-top: 50px;
    margin-bottom: 45px;
  }
  .single-tournament-page .leaderboard-container .table-wrapper {
    margin-top: 20px;
  }
  .single-tournament-page .leaderboard-container .leaderboard {
    font-size: 16px;
  }
  .single-tournament-page .leaderboard-container .leaderboard thead th {
    padding: 12px 8px 10px 8px;
    font-size: 14px;
  }
  .single-tournament-page .leaderboard-container .leaderboard thead th.w-small {
    width: 50px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr td {
    padding: 12px 8px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-position {
    font-size: 28px;
    width: 40px;
    padding-left: 10px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell {
    font-size: 18px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info {
    gap: 15px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info img {
    width: 35px;
    height: 35px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text {
    display: flex;
    flex-direction: column;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text .team-name {
    font-size: 16px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text .team-country {
    font-size: 14px;
  }
  .single-tournament-page .tournament-info-container {
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .single-tournament-page .tournament-info-container .tournament-info {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }
  .single-tournament-page .tournament-info-container .tournament-info span {
    font-size: 18px;
  }
  .single-tournament-page .tournament-info-container .tournament-info h5 {
    font-size: 22px;
  }
  .big-ptd h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .single-tournament-page .leaderboard-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .single-tournament-page .leaderboard-container .table-wrapper {
    margin-top: 20px;
  }
  .single-tournament-page .leaderboard-container .leaderboard {
    font-size: 16px;
  }
  .single-tournament-page .leaderboard-container .leaderboard thead th {
    padding: 12px 8px 10px 8px;
    font-size: 14px;
  }
  .single-tournament-page .leaderboard-container .leaderboard thead th.w-small {
    width: 30px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr td {
    padding: 12px 8px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-position {
    font-size: 28px;
    width: 40px;
    padding-left: 10px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell {
    font-size: 18px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info {
    gap: 15px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info img {
    width: 35px;
    height: 35px;
  }
  .single-tournament-page .leaderboard-container .leaderboard tbody tr .team-cell .team-info .team-text {
    display: none;
    flex-direction: column;
  }
  .single-tournament-page .big-ptd h3 {
    font-size: 23px;
  }
  .tournament-info-container {
    margin-top: 35px;
    margin-bottom: 20px;
  }
}
.staff-section {
  margin-top: 120px;
}

.people-pagination {
  position: relative;
  bottom: -10px !important;
}

.contact-us-section {
  margin-top: 5vw;
}
.contact-us-section .contact-us-container {
  background-color: var(--neutral-200);
  border-radius: 20px;
  display: flex;
}
.contact-us-section .contact-us-container .text-container {
  width: 50%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
}
.contact-us-section .contact-us-container .image-container {
  position: relative;
  width: 50%;
}
.contact-us-section .contact-us-container .image-container img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
}

.blocks-section {
  row-gap: 40px;
}

.wwa-content-section {
  margin-top: 25px;
}
.wwa-content-section .content-image img {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  border-radius: 30px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.wwa-content-section .big-ptd {
  margin-top: 50px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
  .contact-us-section {
    margin-top: 80px;
  }
  .contact-us-section .contact-us-container .text-container {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .contact-us-section .contact-us-container .image-container {
    width: 50%;
  }
  .contact-us-section .contact-us-container .image-container img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 8px;
  }
  .blocks-section .image-container img {
    border-radius: 8px;
  }
  .wwa-content-section {
    margin-top: 45px;
  }
  .wwa-content-section .big-ptd {
    margin-top: 50px;
    margin-bottom: 25px;
  }
  .wwa-content-section .content-image img {
    border-radius: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-us-section .contact-us-container {
    flex-direction: column;
  }
  .contact-us-section .contact-us-container .text-container {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .contact-us-section .contact-us-container .image-container {
    width: 100%;
  }
  .contact-us-section .contact-us-container .image-container img {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .wwa-content-section .big-ptd h3 {
    font-size: 37px;
  }
}
.peoples-main-title {
  margin-top: 50px;
}
.peoples-main-title h1 {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: clamp(40px, 9vw, 80px);
  line-height: 1;
  text-transform: uppercase;
}
.peoples-main-title p {
  font-size: 20px;
  margin-bottom: 0;
}

.peoples-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.peoples-categories .single-category {
  text-transform: capitalize;
  font-size: 18px;
  padding: 8px 15px;
  border: 1px solid var(--neutral-800);
  border-radius: 10px;
  background-color: transparent;
  color: var(--neutral-800);
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}
.peoples-categories .single-category img {
  height: 20px;
  width: 20px;
}
.peoples-categories .single-category.active {
  box-shadow: inset 0 0 0 2px var(--main-color);
  background-color: #fff;
  border-color: var(--main-color);
  color: var(--neutral-800);
}

.esports-categories {
  justify-content: flex-start;
}
.esports-categories .single-category {
  padding: 6px 15px;
}
.esports-categories .single-category span {
  padding-top: 2px;
}
.esports-categories .single-category.active {
  box-shadow: inset 0 0 0 2px var(--main-color);
  background-color: #fff;
  border-color: var(--main-color);
  color: var(--neutral-800);
}

.people-list-container .filtered-people-card {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.people-list-container:not(.faded) .filtered-people-card {
  opacity: 1;
  transform: translateY(0);
}
.people-list-container .filtered-people-card:nth-child(1) {
  transition-delay: 0s;
}
.people-list-container .filtered-people-card:nth-child(2) {
  transition-delay: 0.2s;
}
.people-list-container .filtered-people-card:nth-child(3) {
  transition-delay: 0.4s;
}
.people-list-container .filtered-people-card:nth-child(4) {
  transition-delay: 0.6s;
}
.people-list-container .filtered-people-card:nth-child(5) {
  transition-delay: 0.8s;
}
.people-list-container .filtered-people-card:nth-child(6) {
  transition-delay: 1s;
}
.people-list-container .filtered-people-card:nth-child(7) {
  transition-delay: 1.2s;
}
.people-list-container .filtered-people-card:nth-child(8) {
  transition-delay: 1.4s;
}
.people-list-container .filtered-people-card:nth-child(9) {
  transition-delay: 1.6s;
}
.people-list-container .filtered-people-card:nth-child(10) {
  transition-delay: 1.8s;
}
.people-list-container .filtered-people-card:nth-child(11) {
  transition-delay: 2s;
}
.people-list-container .filtered-people-card:nth-child(12) {
  transition-delay: 2.2s;
}
.people-list-container .filtered-people-card:nth-child(13) {
  transition-delay: 2.4s;
}
.people-list-container .filtered-people-card:nth-child(14) {
  transition-delay: 2.6s;
}
.people-list-container .filtered-people-card:nth-child(15) {
  transition-delay: 2.8s;
}
.people-list-container .filtered-people-card:nth-child(16) {
  transition-delay: 3s;
}
.people-list-container .filtered-people-card:nth-child(17) {
  transition-delay: 3.2s;
}
.people-list-container .filtered-people-card:nth-child(18) {
  transition-delay: 3.4s;
}
.people-list-container .filtered-people-card:nth-child(19) {
  transition-delay: 3.6s;
}
.people-list-container .filtered-people-card:nth-child(20) {
  transition-delay: 3.8s;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: sans-serif;
}
.custom-pagination a,
.custom-pagination span {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
}
.custom-pagination a:hover,
.custom-pagination span:hover {
  background-color: #f0f0f0;
}
.custom-pagination .current {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}
.custom-pagination .disabled {
  color: #aaa;
  border-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}

@media only screen and (max-width: 991px) {
  .peoples-main-title {
    margin-top: 30px;
  }
  .peoples-main-title h1 {
    font-size: clamp(60px, 9vw, 130px);
  }
  .peoples-main-title p {
    font-size: 18px;
  }
  .peoples-categories {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .peoples-main-title {
    margin-top: 20px;
  }
  .peoples-main-title h1 {
    font-size: 40px;
  }
  .peoples-categories .single-category {
    font-size: 14px;
  }
}
.case-list-container .filtered-case-card {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.case-list-container:not(.faded) .filtered-case-card {
  opacity: 1;
  transform: translateY(0);
}
.case-list-container .filtered-case-card:nth-child(1) {
  transition-delay: 0s;
}
.case-list-container .filtered-case-card:nth-child(2) {
  transition-delay: 0.2s;
}
.case-list-container .filtered-case-card:nth-child(3) {
  transition-delay: 0.4s;
}
.case-list-container .filtered-case-card:nth-child(4) {
  transition-delay: 0.6s;
}
.case-list-container .filtered-case-card:nth-child(5) {
  transition-delay: 0.8s;
}
.case-list-container .filtered-case-card:nth-child(6) {
  transition-delay: 1s;
}
.case-list-container .filtered-case-card:nth-child(7) {
  transition-delay: 1.2s;
}
.case-list-container .filtered-case-card:nth-child(8) {
  transition-delay: 1.4s;
}
.case-list-container .filtered-case-card:nth-child(9) {
  transition-delay: 1.6s;
}
.case-list-container .filtered-case-card:nth-child(10) {
  transition-delay: 1.8s;
}
.case-list-container .filtered-case-card:nth-child(11) {
  transition-delay: 2s;
}
.case-list-container .filtered-case-card:nth-child(12) {
  transition-delay: 2.2s;
}
.case-list-container .filtered-case-card:nth-child(13) {
  transition-delay: 2.4s;
}
.case-list-container .filtered-case-card:nth-child(14) {
  transition-delay: 2.6s;
}
.case-list-container .filtered-case-card:nth-child(15) {
  transition-delay: 2.8s;
}
.case-list-container .filtered-case-card:nth-child(16) {
  transition-delay: 3s;
}
.case-list-container .filtered-case-card:nth-child(17) {
  transition-delay: 3.2s;
}
.case-list-container .filtered-case-card:nth-child(18) {
  transition-delay: 3.4s;
}
.case-list-container .filtered-case-card:nth-child(19) {
  transition-delay: 3.6s;
}
.case-list-container .filtered-case-card:nth-child(20) {
  transition-delay: 3.8s;
}

.agenda-adv-masthead > div {
  height: 150px;
}

.agenda-page h1 {
  font-family: var(--font-secondary);
  font-size: 2.6vw;
  font-weight: 700;
  margin-bottom: 2.08vw;
  margin-top: 3.13vw;
}

.agenda-page-events-box {
  background-color: var(--neutral-700);
  padding: 20px;
  border-radius: 18px;
  margin: 50px auto 100px auto;
  position: relative;
}
.agenda-page-events-box .agenda-page-overlay {
  background: linear-gradient(180deg, rgba(11, 31, 59, 0) 80%, #0b1f3b 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.agenda-page-events-box .tabs-box .navigation-section {
  background-color: #fff;
  display: flex;
  padding: 10px 0;
  border-radius: 18px;
  align-items: center;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.agenda-page-events-box .tabs-box .navigation-section .navigation-btn {
  background-color: #ed312d;
  height: 51px;
  width: 51px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  justify-content: center;
  margin: 0 10px;
  padding: 13px 13px 13px 18px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.agenda-page-events-box .tabs-box .navigation-section .navigation-btn-left {
  transform: rotate(180deg);
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills::-webkit-scrollbar {
  display: none;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-item button.disabled {
  opacity: 0.5;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link {
  width: auto;
  height: auto;
  background-color: transparent;
  margin: 0 10px;
  color: var(--neutral-700);
  padding: 13px 18px 12px 18px;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link p:first-of-type {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link p:last-of-type {
  font-size: 15px;
  font-weight: 400;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link.active,
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .show > .nav-link {
  background-color: transparent;
  border: 1px solid #535353;
  border-radius: 10px;
}
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link.active p,
.agenda-page-events-box .tabs-box .navigation-section .nav-pills .show > .nav-link p {
  font-weight: 700;
}
.agenda-page-events-box .tabs-box .meeting-agenda-section {
  background-color: transparent;
  padding: 0;
}

.no-event-scheduled {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

@media only screen and (max-width: 991px) {
  .agenda-adv-masthead > div {
    height: 110px;
  }
  .agenda-page h1 {
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .agenda-page-events-box {
    padding: 15px;
    margin: 45px auto 80px auto;
  }
  .agenda-page-events-box .tabs-box .navigation-section {
    margin-bottom: 20px;
  }
  .agenda-page-events-box .tabs-box .navigation-section .navigation-btn {
    height: 45px;
    width: 45px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 575px) {
  .agenda-adv-masthead > div {
    height: 90px;
  }
  .agenda-page h1 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 17px;
  }
  .agenda-page .big-ptd h3 {
    font-size: 23px;
  }
  .agenda-page-events-box {
    padding: 10px;
    margin: 35px auto 45px auto;
  }
  .agenda-page-events-box .tabs-box .navigation-section {
    padding: 8px 0;
    margin-bottom: 10px;
  }
  .agenda-page-events-box .tabs-box .navigation-section .navigation-btn {
    height: 27px;
    width: 27px;
    margin: 0 5px;
    padding: 6px 6px 6px 8px;
  }
  .agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link {
    width: 101px;
    height: 46px;
    padding: 0;
    margin: 0 5px;
  }
  .agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link p:first-of-type {
    font-size: 15px;
    margin: 0;
  }
  .agenda-page-events-box .tabs-box .navigation-section .nav-pills .nav-link p:last-of-type {
    font-size: 15px;
    margin: 0;
  }
}
.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: 14px;
  font-weight: 400;
}
.contacts-row .contact-block .description {
  font-size: 26px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .contacts-row .contact-block {
    padding-top: 40px;
  }
  .contacts-row .contact-block p {
    font-size: 12px;
  }
  .contacts-row .contact-block .description {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .contacts-row {
    flex-direction: column;
  }
  .contacts-row .contact-block {
    width: 100%;
  }
}
.results-header {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: center;
}
.results-header h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.search-result-container {
  margin-top: 60px;
}
.search-result-container .search-result {
  padding: 10px 0;
}
.search-result-container .search-result .number-of {
  font-size: 36px;
  font-family: var(--font-secondary);
  font-weight: 700;
}
.search-result-container .search-result h4 {
  font-size: 16px;
  font-weight: 400;
}
.search-result-container .search-result h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0px;
  font-family: var(--font-secondary);
}

.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) {
  .results-header {
    -moz-column-gap: 21px;
         column-gap: 21px;
  }
  .results-header h1 {
    font-size: 38px;
  }
  .search-result-container {
    margin-top: 40px;
  }
  .search-result-container .search-result .number-of {
    font-size: 30px;
  }
  .search-result-container .search-result h4 {
    font-size: 14px;
  }
  .search-result-container .search-result h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .results-header {
    -moz-column-gap: 21px;
         column-gap: 21px;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 18px;
  }
  .results-header h1 {
    font-size: 38px;
  }
  .search-result-container {
    margin-top: 40px;
  }
  .search-result-container .search-result .number-of {
    font-size: 30px;
  }
  .search-result-container .search-result h4 {
    font-size: 14px;
  }
  .search-result-container .search-result h2 {
    font-size: 28px;
  }
  .search-result-container .search-result .cta {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }
}
.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;
}

.article-container .share-social-container {
  top: 50%;
  transform: translateY(-50%);
  position: sticky;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
.article-container .share-social-container .share-social {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 14px;
  margin-bottom: 0;
}
.article-container .share-social-container .share-social li {
  list-style: none;
  background-color: var(--main-color);
  height: 23px;
  width: 23px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s;
}
.article-container .share-social-container .share-social li img {
  width: 100%;
}
.article-container .share-social-container .share-social li:hover {
  transform: scale(1.1);
  transition: all 0.35s;
}
.article-container .social-share-transparent li {
  background-color: transparent !important;
}
.article-container .article-content-container .article-top-info {
  margin-bottom: 20px;
}
.article-container .article-content-container .article-top-info .cta span {
  color: var(--neutral-800);
}
.article-container .article-content-container .article-top-info .cta {
  border: 1px solid var(--neutral-800);
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 18px;
}
.article-container .article-content-container .article-top-info .author,
.article-container .article-content-container .article-top-info .date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.article-container .article-content-container .article-top-section {
  text-align: center;
}
.article-container .article-content-container .article-top-section h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 18px;
}
.article-container .article-content-container .article-top-section h2 {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 35px;
}
.article-container .article-content-container .article-top-section .image-container {
  text-align: center;
}
.article-container .article-content-container .article-top-section .image-container img {
  border-radius: 30px;
  aspect-ratio: 1.78;
  width: 100%;
  margin-bottom: 15px;
}
.article-container .article-content-container .article-top-section .image-container p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
.article-container .article-content-container .article-top-section .swiper-article-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}
.article-container .article-content-container .article-content {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}
.article-container .article-content-container .article-content img.center {
  max-width: 30px;
}
.article-container .article-content-container .article-content .cta img {
  margin-top: unset;
  margin-bottom: unset;
}
.article-container .article-content-container .article-content a:not(.cta) {
  font-size: bold;
  color: var(--main-color);
}
.article-container .article-content-container .article-content blockquote {
  border-left: 13px solid var(--main-color);
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.article-container .article-content-container .article-content blockquote p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-secondary);
}
.article-container .article-content-container .article-content p,
.article-container .article-content-container .article-content li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
.article-container .article-content-container .article-content p strong,
.article-container .article-content-container .article-content li strong {
  font-weight: 700;
}
.article-container .article-content-container .article-content h1,
.article-container .article-content-container .article-content h1 strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 20px 0;
}
.article-container .article-content-container .article-content h2,
.article-container .article-content-container .article-content h2 strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 20px 0;
}
.article-container .article-content-container .article-content h3,
.article-container .article-content-container .article-content h3 strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 20px 0;
}
.article-container .article-content-container .article-content h4,
.article-container .article-content-container .article-content h4 strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 20px 0;
}
.article-container .article-content-container .article-content h5,
.article-container .article-content-container .article-content h5 strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 20px 0;
}
.article-container .article-content-container .article-content img {
  margin-bottom: 15px;
  margin-top: 30px;
}
.article-container .article-content-container .article-content .video-responsive {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.article-container .article-content-container .article-content .video-responsive iframe {
  width: 100%;
  height: unset;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.article-container .article-content-container .article-tags-container {
  margin-top: 60px;
  margin-bottom: 120px;
}
.article-container .article-content-container .article-tags-container ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-container .article-content-container #contact-form {
  padding: 0;
  margin-top: 20px;
}
.article-container .sidebar-container {
  top: 90px;
  position: sticky;
  padding-bottom: 120px;
  padding-left: 1.5vw;
}
.article-container .sidebar-container .related-articles-container {
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.article-container .sidebar-container .related-articles-container h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 35px;
}

.article-swiper-section {
  position: relative;
  margin-bottom: 50px;
}
.article-swiper-section .big-ptd {
  margin-bottom: 50px;
}
.article-swiper-section .swiper-nav-container {
  display: block;
  padding-top: 27px;
}
.article-swiper-section .swiper-nav-container .swiper-button-prev-related,
.article-swiper-section .swiper-nav-container .swiper-button-next-related {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1;
  margin-top: unset !important;
  background-color: var(--main-color);
}
.article-swiper-section .swiper-nav-container .swiper-button-prev-related img,
.article-swiper-section .swiper-nav-container .swiper-button-next-related img {
  height: 100%;
  width: 40px;
  aspect-ratio: 1;
  padding: 8px;
}
.article-swiper-section .swiper-nav-container .swiper-button-prev-related::after,
.article-swiper-section .swiper-nav-container .swiper-button-next-related::after {
  display: none !important;
}
.article-swiper-section .swiper-collections .swiper-slide {
  position: relative;
  border-radius: 20px;
}
.article-swiper-section .swiper-collections .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.article-swiper-section .swiper-collections .swiper-slide .text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.article-swiper-section .swiper-collections .swiper-slide .text .titles h5 {
  font-size: 0.83vw;
  font-weight: 400;
  color: var(--neutral-100);
  margin-bottom: 10px;
}
.article-swiper-section .swiper-collections .swiper-slide .text .titles h2 {
  font-size: 1.56vw;
  font-weight: 700;
  color: var(--neutral-100);
}

.swiper-related .swiper-slide {
  height: auto;
}

.swiper-pagination-related {
  position: relative;
  bottom: -20px !important;
}

.article-related-section {
  background-color: var(--neutral-200);
  padding: 50px 0;
  margin-top: 70px;
}

@media only screen and (min-width: 1200px) {
  .article-container .share-social-container .share-social li {
    height: 35px;
    width: 35px;
    padding: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .article-container .article-content-container .article-top-info .author,
  .article-container .article-content-container .article-top-info .date {
    font-size: 14px;
    line-height: 20px;
  }
  .article-container .article-content-container .article-top-section h1 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .article-container .article-content-container .article-top-section h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .article-container .article-content-container .article-top-section .image-container {
    padding-right: 0;
    padding-left: 0;
  }
  .article-container .article-content-container .article-top-section .image-container p {
    font-size: 12px;
    line-height: 18px;
  }
  .article-container .article-content-container .article-content {
    margin-top: 20px;
    font-size: 16px;
  }
  .article-container .article-content-container .article-content blockquote {
    padding-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .article-container .article-content-container .article-content blockquote p {
    font-size: 28px;
  }
  .article-container .article-content-container .article-content p {
    font-size: 16px;
  }
  .article-container .article-content-container .article-content h1,
  .article-container .article-content-container .article-content h1 strong {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0;
  }
  .article-container .article-content-container .article-content h2,
  .article-container .article-content-container .article-content h2 strong {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0;
  }
  .article-container .article-content-container .article-content h3,
  .article-container .article-content-container .article-content h3 strong {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0;
  }
  .article-container .article-content-container .article-content h4,
  .article-container .article-content-container .article-content h4 strong {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0;
  }
  .article-container .article-content-container .article-content h5,
  .article-container .article-content-container .article-content h5 strong {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0;
  }
  .article-container .article-content-container .article-tags-container {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .article-container .share-social-container .share-social {
    margin-left: -15px;
  }
  .article-container .sidebar-container {
    padding-left: 0;
    padding-right: 0;
  }
  .article-container .sidebar-container .related-articles-container {
    margin-top: 35px;
    padding-left: 0;
    padding-right: 0;
  }
  .article-container .sidebar-container .related-articles-container h3 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .article-swiper-section {
    margin-bottom: 40px;
  }
  .article-swiper-section .big-ptd {
    margin-bottom: 25px;
  }
  .article-swiper-section .big-ptd h3 {
    font-size: 48px;
  }
  .article-swiper-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .article-swiper-section .swiper-nav-container {
    padding-top: 48px;
  }
  .swiper-collections .swiper-slide .text .titles h5 {
    font-size: 14px;
  }
  .swiper-collections .swiper-slide .text .titles h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .article-container .share-social-container .share-social {
    row-gap: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .article-container .share-social-container {
    padding-top: 18px;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    position: static;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .article-container .share-social-container .share-social {
    flex-direction: row;
    row-gap: 0;
    -moz-column-gap: 12px;
         column-gap: 12px;
    margin-left: 0;
  }
  .article-container .share-social-container .share-social li {
    height: 27px;
    width: 27px;
  }
  .article-container .article-content-container {
    padding-left: 0px;
  }
  .article-container .article-content-container .article-content {
    margin-top: 20px;
  }
  .article-container .article-content-container .article-content blockquote {
    padding-left: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .article-container .article-content-container .article-content blockquote p {
    font-size: 28px;
  }
  .article-container .article-content-container .article-tags-container {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .article-container .sidebar-container .related-articles-container {
    margin-top: 25px;
  }
  .article-container .sidebar-container .related-articles-container h3 {
    font-size: 20px;
  }
  .article-swiper-section {
    margin-bottom: 40px;
  }
  .article-swiper-section h2 {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 30px;
  }
  .article-swiper-section .swiper-nav-container {
    padding-top: 22px;
  }
}
.policy-page {
  margin-bottom: 90px;
  color: var(--neutral-800);
}
.policy-page h1 {
  font-size: 72px;
  font-weight: 700;
  margin-top: 40px;
  padding-bottom: 30px;
}
.policy-page .content strong {
  font-weight: 700;
}
.policy-page .content p {
  font-size: 22px;
  font-weight: 400;
}
.policy-page .content h1,
.policy-page .content h2,
.policy-page .content h3 {
  font-size: 30px;
  font-weight: 700;
  padding: 20px 0;
}
.policy-page .content h4,
.policy-page .content h5,
.policy-page .content h6 {
  font-size: 26px;
  font-weight: 700;
  padding: 20px 0;
}

@media only screen and (max-width: 991px) {
  .policy-page h1 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  .policy-page .content p {
    font-size: 20px;
    line-height: 20px;
  }
  .policy-page .content h1,
  .policy-page .content h2,
  .policy-page .content h3 {
    font-size: 28px;
    padding: 15px 0;
  }
  .policy-page .content h4,
  .policy-page .content h5,
  .policy-page .content h6 {
    font-size: 24px;
    padding: 15px 0;
  }
}
:root {
  --pea-lab-grid-row-gap-mobile: 20px;
  --pea-lab-grid-row-gap-tablet: 28px;
  --pea-lab-grid-row-gap-desktop: 44px;
  --pea-lab-grid-margin-top-mobile: 80px;
  --pea-lab-grid-margin-top-tablet: 70px;
  --pea-lab-grid-margin-top-desktop: 140px;
}

.pea-lab-list__projects-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
  row-gap: var(--pea-lab-grid-row-gap-mobile);
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .pea-lab-list__projects-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--pea-lab-grid-row-gap-tablet);
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .pea-lab-list__projects-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: var(--pea-lab-grid-row-gap-desktop);
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.creators-section {
  background: var(--Neutral-200, #f8f8f8);
}

.pea-lab-detail {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .pea-lab-detail {
    padding-top: var(--nav-height);
  }
}
.pea-lab-detail__grid {
  display: grid;
  grid-template-columns: 100%;
  align-content: start;
  row-gap: 20px;
}
.pea-lab-detail__grid h1 {
  font-size: 40px;
  font-family: var(--font-secondary);
  font-weight: 700;
}
@media (min-width: 768px) {
  .pea-lab-detail__grid {
    row-gap: 20px;
  }
  .pea-lab-detail__grid h1 {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-secondary);
  }
}
@media (min-width: 1200px) {
  .pea-lab-detail__grid {
    grid-template-columns: 2fr minmax(350px, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .pea-lab-detail__grid h1 {
    margin-bottom: 0;
    font-size: 60px;
    font-family: var(--font-secondary);
    font-weight: 700;
  }
}
.pea-lab-detail__side-bar {
  grid-row: 3;
}
.pea-lab-detail__content {
  grid-row: 4;
}
@media (min-width: 1200px) {
  .pea-lab-detail__content {
    font-size: 20px;
    line-height: 24px;
  }
}
.pea-lab-detail__content p {
  margin-bottom: 16px;
}
.pea-lab-detail__content img {
  width: 100% !important;
  margin: 16px 0 32px 0;
}
.pea-lab-detail__comments {
  grid-row: 5;
}
.pea-lab-detail__register {
  grid-column: 1;
  grid-row: 6;
}
.pea-lab-detail__works {
  grid-column: 1;
  grid-row: 6;
}
@media (min-width: 1200px) {
  .pea-lab-detail__title, .pea-lab-detail__cover, .pea-lab-detail__content, .pea-lab-detail__comments {
    grid-column: 1;
  }
  .pea-lab-detail__cover {
    grid-row: 2;
  }
  .pea-lab-detail__side-bar {
    grid-column: 2;
    grid-row: 2/7;
  }
  .pea-lab-detail__content {
    grid-row: 3;
  }
  .pea-lab-detail__comments {
    grid-row: 4;
  }
  .pea-lab-detail__works {
    grid-column: 1/3;
    grid-row: 5;
  }
}
.pea-lab-detail__cta {
  margin-top: 20px;
  margin-bottom: 40px;
}
.pea-lab-detail__title {
  font-size: 30px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .pea-lab-detail__title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .pea-lab-detail__title {
    font-size: 50px;
  }
}

.public-profile {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .public-profile {
    padding-top: var(--nav-height);
  }
}
.public-profile__projects {
  margin-top: 46px;
  display: grid;
  gap: 18px;
  position: relative;
}
@media (min-width: 768px) {
  .public-profile__projects {
    margin-top: 64px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .public-profile__projects {
    margin-top: 80px;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.public-profile__project {
  position: relative;
}
.public-profile__project-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1200px) {
  .public-profile__project-image {
    height: 400px;
  }
}
.public-profile__project .edit-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
}
.public-profile__project .edit-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.private-profile {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .private-profile {
    padding-top: var(--nav-height);
  }
}
.private-profile__header {
  position: relative;
}
.private-profile__back-wrapper {
  position: absolute;
  top: 21px;
  z-index: 2;
}
.private-profile__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.private-profile__tabs {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .private-profile__tabs {
    margin-top: 40px;
  }
}
.private-profile__tabs-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .private-profile__tabs-buttons {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    gap: 32px;
  }
}
.private-profile__edit-link {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}
.private-profile__edit-link, .private-profile__edit-link:hover {
  color: var(--main-color);
}
@media (min-width: 768px) {
  .private-profile__edit-link {
    margin: 0;
    order: 1;
  }
}
.private-profile__projects {
  display: grid;
  margin-top: 33px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .private-profile__projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1200px) {
  .private-profile__projects {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
.private-profile__add-project, .private-profile__add-project:hover, .private-profile__add-project:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.private-profile__add-project {
  border: 2px dashed var(--main-color);
  padding: 25px 20px 15px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 15px;
}
.private-profile__add-project .add-project-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.private-profile__add-project .add-project-content img {
  width: 45px;
}
.private-profile__add-project-icon {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .private-profile__add-project-icon {
    height: 60px;
  }
}
.private-profile__add-project-title {
  font-weight: bold;
  font-size: 25px;
  margin-top: 4px;
}
@media (min-width: 1200px) {
  .private-profile__add-project-title {
    font-size: 38px;
    margin-top: 14px;
  }
}
.private-profile__add-project-description {
  margin-bottom: 0;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .private-profile__add-project-description {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .private-profile__add-project-description {
    margin-top: 70px;
  }
}
.private-profile__add-project h3 {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
.private-profile__add-project p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
}
.private-profile__courses {
  display: grid;
  margin-top: 33px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .private-profile__courses {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1200px) {
  .private-profile__courses {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
.private-profile__courses-title {
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 33px;
  font-size: 25px;
}
@media (min-width: 768px) {
  .private-profile__courses-title {
    margin-bottom: 21px;
  }
}
@media (min-width: 1200px) {
  .private-profile__courses-title {
    margin-top: 60px;
  }
}
.private-profile__suggested-courses {
  margin-top: 90px;
}
@media (min-width: 768px) {
  .private-profile__suggested-courses {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .private-profile__suggested-courses {
    margin-top: 80px;
  }
}

.proj-swiper-container .swiper-pagination {
  position: relative !important;
}

.project-upload {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .project-upload {
    padding-top: var(--nav-height);
  }
}
.project-upload {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .project-upload {
    margin-bottom: 44px;
  }
}
@media (min-width: 1200px) {
  .project-upload {
    margin-bottom: 100px;
  }
}
.project-upload__form {
  display: grid;
}
.project-upload__title {
  margin-top: 30px;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 14px;
  border: none;
  color: #343434;
}
.project-upload__title:focus {
  outline: none;
}
.project-upload__title::-moz-placeholder {
  color: #858585;
}
.project-upload__title::placeholder {
  color: #858585;
}
.project-upload__cover-image {
  margin-bottom: 24px;
  height: 200px;
}
@media (min-width: 768px) {
  .project-upload__cover-image {
    height: 360px;
  }
}
@media (min-width: 1200px) {
  .project-upload__cover-image {
    height: 580px;
  }
}
.project-upload__authors {
  border: 1px solid #343434;
  padding: 22px 14px;
  margin-top: 21px;
}
@media (min-width: 768px) {
  .project-upload__authors {
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .project-upload__authors {
    margin-top: 0;
  }
}
.project-upload__authors-label {
  font-size: 20px;
  margin-bottom: 14px;
}
.project-upload__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.project-upload__cta .cta-delete img {
  width: 35px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1200px) {
  .project-upload__form {
    -moz-column-gap: 100px;
         column-gap: 100px;
    grid-template-columns: 2fr minmax(350px, 1fr);
  }
  .project-upload__title {
    font-size: 50px;
  }
  .project-upload__form-content {
    grid-column: 1;
    grid-row: 2;
  }
  .project-upload__authors {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

.notifications__title {
  margin-top: 30px;
  text-align: center;
  font-family: var(--font-secondary);
}
@media (min-width: 768px) {
  .notifications__title {
    margin-top: 54px;
  }
}
@media (min-width: 1200px) {
  .notifications__title {
    font-size: 75px;
    margin-top: 60px;
  }
}
.notifications__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}
@media (min-width: 768px) {
  .notifications__list {
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .notifications__list {
    gap: 12px;
  }
}
.notifications__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
  margin-bottom: 27px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .notifications__actions {
    margin-bottom: 18px;
  }
}
@media (min-width: 1200px) {
  .notifications__actions {
    margin-bottom: 32px;
    margin-top: 80px;
  }
}
.notifications__action {
  border: none;
  background-color: transparent;
  height: 30px;
}
.notifications__action img {
  height: 100%;
}
@media (min-width: 1200px) {
  .notifications__action {
    height: 35px;
  }
}
.notifications__action--trash {
  margin-bottom: 4px;
}
.notifications__toggle-all {
  display: flex;
  align-items: center;
}
.notifications__toggle-all__label {
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .notifications__toggle-all__label {
    margin-right: 22px;
  }
}
.notifications__pagination {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .notifications__pagination {
    margin-bottom: 60px;
  }
}
.notifications__pagination .cta:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.notification {
  color: #4a4a4a;
  display: grid;
  grid-template-columns: min-content 1fr;
  border-radius: 5px;
  border: 1px solid var(--main-color);
}
.notification--new {
  border: 3px solid var(--main-color);
}
.notification--new .notification__avatar {
  background-color: var(--main-color);
  border-right-color: var(--main-color);
}
.notification--new .notification__description {
  border-top-color: var(--main-color);
}
.notification--new .notification__ctas {
  border-top-color: var(--main-color);
}
.notification__avatar {
  border-right: 1px solid var(--main-color);
  padding: 16px;
}
.notification__text {
  grid-column: 2;
  grid-row: 1;
  padding: 10px;
}
.notification__ctas {
  grid-row: 2;
  grid-column: 1/3;
  padding: 16px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--main-color);
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .notification__ctas {
    border-top: none;
    gap: 24px;
    grid-column: 3;
    grid-row: 1;
  }
}
.notification__description {
  border-top: 1px solid var(--main-color);
  grid-column: 1/4;
  grid-row: 3;
  padding: 16px;
}
@media (min-width: 1200px) {
  .notification__description {
    padding-left: 108px;
  }
}
.notification__title, .notification__text-value {
  margin: 0;
}
.notification__title {
  font-weight: bold;
  margin-bottom: 6px;
}
.notification__arrow--hidden {
  visibility: hidden;
}

.register-page .header,
.edit-profile-page .header {
  margin-top: 30px;
}
.register-page .form__section,
.edit-profile-page .form__section {
  margin-bottom: 3rem;
}
.register-page .form__section-title,
.edit-profile-page .form__section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.register-page .form__section-content,
.edit-profile-page .form__section-content {
  width: 100%;
}
.register-page .form__section-row .input-container,
.edit-profile-page .form__section-row .input-container {
  margin-bottom: 1.5rem;
}
.register-page .form__section-row label,
.edit-profile-page .form__section-row label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.register-page .form__section-row .form-control,
.edit-profile-page .form__section-row .form-control {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.register-page .form__checkbox-wrapper,
.edit-profile-page .form__checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.register-page .form__checkbox-wrapper input[type=checkbox],
.edit-profile-page .form__checkbox-wrapper input[type=checkbox] {
  margin-top: 0.3rem;
}
.register-page .form__checkbox-wrapper label,
.edit-profile-page .form__checkbox-wrapper label {
  font-size: 14px;
}
.register-page .form__checkbox-wrapper label a,
.edit-profile-page .form__checkbox-wrapper label a {
  text-decoration: underline;
  font-weight: bold;
}
.register-page .form__photo-placeholder,
.edit-profile-page .form__photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #c4c4c4;
}
.register-page .form__photo-label,
.edit-profile-page .form__photo-label {
  font-weight: bold;
  font-size: 1.1rem;
}
.register-page .form__photo-subtitle,
.edit-profile-page .form__photo-subtitle {
  font-size: 0.9rem;
  color: #777;
}
.register-page .cta--large,
.edit-profile-page .cta--large {
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #a10000;
  color: white;
  border: none;
  border-radius: 8px;
}
.register-page .cta--large:hover,
.edit-profile-page .cta--large:hover {
  background-color: #850000;
}

.login {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .login {
    padding-top: var(--nav-height);
  }
}
.login {
  display: flex;
  flex-direction: column;
  padding-top: 150px !important;
}
.login__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.login__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.login__title {
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  font-family: var(--font-secondary);
}
@media (min-width: 1200px) {
  .login__title {
    font-size: 60px;
  }
}
.login__social-links {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin-top: 21px;
}
@media (min-width: 1200px) {
  .login__social-links {
    margin-top: 25px;
  }
}
.login__social-link {
  border: 1px solid #343434;
  width: 42px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.login__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 1200px) {
  .login__inputs {
    gap: 10px;
    margin-top: 40px;
  }
}
.login__input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1200px) {
  .login__input {
    gap: 4px;
  }
}
.login__input input {
  border: 1px solid #343434;
  padding: 13px 0px 13px 13px;
  border-radius: 7px;
  font-size: 20px;
  color: #343434;
}
.login__input input,
.login__input input:-webkit-autofill,
.login__input input:-webkit-autofill:hover,
.login__input input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #343434 !important;
}
.login__input-password {
  display: flex;
}
.login__input-password input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  width: 100%;
}
.login__input-password-btn {
  border-radius: 0 7px 7px 0;
  height: auto;
  width: 64px;
  justify-content: center;
  border: 1px solid #343434;
  border-left: none;
}
.login__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.login .long-cta {
  margin-top: 20px;
}

@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-100-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-100-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-100-italic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-100-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-100-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-100-normal.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-200-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-200-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-200-italic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-200-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-200-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-200-normal.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-300-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-300-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-300-italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-300-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-300-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-300-normal.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-400-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-400-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-400-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-400-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-400-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-400-normal.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-500-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-500-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-500-italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-500-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-500-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-500-normal.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-600-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-600-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-600-italic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-600-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-600-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-600-normal.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-700-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-700-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-700-italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-700-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-700-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-700-normal.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-800-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-800-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-800-italic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-800-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-800-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-800-normal.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-900-italic.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-900-italic.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-900-italic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("/fonts/Metropolis/metropolis-latin-900-normal.woff2") format("woff2"), url("/fonts/Metropolis/metropolis-latin-900-normal.woff") format("woff"), url("/fonts/Metropolis/metropolis-latin-900-normal.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
  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;
  color: var(--neutral-800);
}
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);
}

.below-navbar {
  padding-top: var(--nav-height);
}
@media only screen and (min-width: 991px) {
  .below-navbar {
    padding-top: var(--nav-height);
  }
}
