/**
 * Functions for ViewPort Calculating
============
  SCSS
  .selector {
    font-size: px(18);
    @include md
      font-size: pxm(14);
    @include xs
      font-size: pxs(12);
  }

  CSS RESULT
  .selector {
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .selector {
      font-size: 14px;
    }
  }
  @media (max-width: 320px) {
    .selector {
      font-size: 12px;
    }
  }
============
*/
/**
  function VA => use for calculate letter-spacing from photoshop
============
  SCSS
  .selector {
    letter-spacing: VA(120, 14);
  }

  CSS RESULT
  .selector {
    letter-spacing: 1.68px;
  }
============
  $unit => VA value in photoshop
  $font_size => how px font-size in photoshop ||| default 16
  $return px | em ||| default px
 */
 body {
    background-color: #f9fafb;
    color: #424549;
    -webkit-text-size-adjust: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
  }
  @media (max-width: 1024px) {
    .container {
      max-width: 636px;
    }
  }
  
  .global-title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    text-transform: capitalize;
    color: #27292c;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: -3px;
  }
  @media (max-width: 1024px) {
    .global-title {
      font-size: 28px;
    }
  }
  @media (max-width: 576px) {
    .global-title {
      line-height: 28px;
      font-size: 26px;
    }
  }
  
  .global-subtitle {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #27292c;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 30px;
  }
  .global-subtitle b {
    font-weight: 500;
    position: relative;
  }
  .global-subtitle b::after {
    width: 100%;
    height: 7px;
    opacity: 0.3000000119;
    background: #55D789;
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
  }
  @media (max-width: 1024px) {
    .global-subtitle {
      font-size: 16px;
      line-height: 22px;
    }
  }
  @media (max-width: 576px) {
    .global-subtitle {
      font-size: 14px;
      line-height: 20px;
    }
  }
  
  .global-uppertitle {
    font-family: "Caveat";
    font-weight: 700;
    font-size: 26px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: capitalize;
    color: #27292c;
  }
  @media (max-width: 1024px) {
    .global-uppertitle {
      font-size: 24px;
    }
  }
  @media (max-width: 576px) {
    .global-uppertitle {
      font-size: 18px;
      margin-bottom: 7px;
    }
  }
  @media (max-width: 450px) {
    .global-uppertitle {
      max-width: 310px;
      margin: 0 auto;
      margin-bottom: 7px;
    }
  }
  
  .global-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-column-gap: 18px;
    grid-row-gap: 9px;
    margin-bottom: 23px;
  }
  @media (max-width: 1024px) {
    .global-list {
      margin-bottom: 20px;
    }
  }
  @media (max-width: 576px) {
    .global-list {
      margin-bottom: 24px;
      grid-column-gap: 0px;
      grid-row-gap: 8px;
    }
  }
  .global-list li {
    width: calc(50% - 9px);
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    color: #304659;
    padding-left: 28px;
    position: relative;
    text-transform: capitalize;
  }
  @media (max-width: 576px) {
    .global-list li {
      width: 100%;
      font-size: 15px;
      line-height: 24px;
    }
  }
  .global-list li::before {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url("../../assets/svg/marker.svg") no-repeat;
    background-size: 100% 100%;
    content: "";
  }
  
  .ghost-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 37px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media screen and (min-width: 1025px) {
    .ghost-btn:hover {
      background-color: #fff;
      color: #55D789;
    }
  }
  
  .filled-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 40px;
    padding: 13px;
    min-width: 123px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    background: #55D789;
    color: #fff;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #55D789;
  }
  .filled-btn.form__submit {
    background: #3da6b0;
    border: 1px solid #3da6b0;
  }
  .filled-btn .arrow {
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    min-width: 10px;
    margin-left: 6px;
  }
  .filled-btn .arrow::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url("../../assets/svg/arrow-green.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
    opacity: 0;
  }
  .filled-btn .arrow::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url("../../assets/svg/arrow-white.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
  }
  @media (min-width: 1025px) {
    .filled-btn:hover {
      background: rgba(85, 215, 137, 0.15);
      border-color: transparent;
      color: #55D789;
    }
    .filled-btn:hover .arrow::before {
      opacity: 1;
    }
    .filled-btn:hover .arrow::after {
      opacity: 0;
    }
  }
  .filled-btn.xl-btn {
    min-height: 57px;
    min-width: 312px;
    font-size: 20px;
    line-height: 22px;
    padding: 13px 20px;
  }
  @media (max-width: 1024px) {
    .filled-btn.xl-btn {
      min-width: 256px;
      min-height: 47px;
      font-size: 16px;
      line-height: 18px;
      padding: 10px 15px;
    }
  }
  @media (max-width: 450px) {
    .filled-btn.xl-btn {
      min-width: auto;
      width: 100%;
      max-width: 256px;
    }
  }
  .filled-btn.xl-btn .arrow {
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin-left: 11px;
  }
  @media (max-width: 1024px) {
    .filled-btn.xl-btn .arrow {
      width: 14px;
      height: 14px;
      min-width: 14px;
      margin-left: 9px;
    }
  }
  
  .outline-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 40px;
    padding: 13px;
    min-width: 123px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    background: #fff;
    color: #55D789;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #55D789;
  }
  .outline-btn .arrow {
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    min-width: 10px;
    margin-left: 6px;
  }
  .outline-btn .arrow::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url("../../assets/svg/arrow-green.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
    opacity: 0;
  }
  .outline-btn .arrow::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url("../../assets/svg/arrow-white.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
  }
  @media (min-width: 1025px) {
    .outline-btn:hover {
      background: rgba(58, 209, 242, 0.1);
      border-color: transparent;
      color: #55D789;
    }
    .outline-btn:hover .arrow::before {
      opacity: 1;
    }
    .outline-btn:hover .arrow::after {
      opacity: 0;
    }
  }
  
  .global-play-storie-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0s;
    transition: 0s;
    pointer-events: none;
    outline: none;
    background: transparent;
  }
  .global-play-storie-btn .icon {
    width: inherit;
    height: inherit;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    fill: #fff;
  }
  @media (min-width: 1025px) {
    .global-play-storie-btn:hover .icon {
      fill: #55D789;
    }
  }
  .global-play-storie-btn.hide {
    opacity: 0;
    visibility: hidden;
  }
  
  .global-play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    outline: none;
    background: transparent;
  }
  .global-play-button .icon {
    width: inherit;
    height: inherit;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    fill: #fff;
  }
  @media (max-width: 1024px) {
    .global-play-button {
      width: 63px;
      height: 63px;
    }
  }
  @media (max-width: 576px) {
    .global-play-button {
      width: 33px;
      height: 33px;
    }
  }
  @media (min-width: 1025px) {
    .global-play-button:hover .icon {
      fill: #55D789;
    }
  }
  .global-play-button.hide {
    opacity: 0;
    visibility: hidden;
  }
  
  .global-slider-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: none;
    width: auto;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 50px;
    gap: 24px;
  }
  @media (max-width: 1024px) {
    .global-slider-btns {
      gap: 8px;
      bottom: 0;
    }
  }
  @media (max-width: 700px) {
    .global-slider-btns {
      position: relative;
      bottom: unset;
      right: unset;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 27px;
    }
  }
  
  .global-slider-btn {
    pointer-events: all;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #D6DADE;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 5px;
    background: transparent;
    -webkit-box-shadow: 0px 14.02px 30.08px rgba(52, 60, 71, 0.05);
            box-shadow: 0px 14.02px 30.08px rgba(52, 60, 71, 0.05);
  }
  @media (max-width: 576px) {
    .global-slider-btn {
      width: 56px;
      height: 56px;
    }
  }
  .global-slider-btn .icon {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
       object-fit: contain;
    fill: transparent;
    stroke: #27292c;
    stroke-width: 1.5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .global-slider-btn .icon {
      width: 24px;
      height: 24px;
    }
  }
  @media (min-width: 1025px) {
    .global-slider-btn:hover {
      border-color: #55D789;
    }
  }
  .global-slider-btn.swiper-button-disabled {
    pointer-events: none !important;
    opacity: 0.7 !important;
  }
  
  .swiper-pagination {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.200000003;
    background: #27292c;
    margin-top: 21px;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #55D789;
    opacity: 1;
  }
  @media (max-width: 1024px) {
    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
    }
  }
  
  .sent-message-status {
    max-width: 500px;
    width: calc(100% - 60px);
    padding: 35px 40px 41px;
    position: fixed;
    top: 25%;
    left: 50%;
    z-index: 9999;
    -webkit-transform: translate(-50%, calc(-50% - 10px));
            transform: translate(-50%, calc(-50% - 10px));
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media (max-height: 520px) {
    .sent-message-status {
      top: 50%;
    }
  }
  @media screen and (max-width: 375px) {
    .sent-message-status {
      width: calc(100% - 40px);
    }
  }
  .sent-message-status.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sent-message-status__icon {
    display: block;
    width: 35px;
    min-width: 35px;
    height: 35px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .sent-message-status__title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
  }
  @media screen and (max-width: 1024px) {
    .sent-message-status__title {
      font-size: 24px;
    }
  }
  .sent-message-status__text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
  }
  
  .email-subscribe {
    width: 100%;
  }
  .email-subscribe.invalid .email-subscribe__field {
    border-color: #FF6174;
  }
  @media screen and (max-width: 650px) {
    .email-subscribe.invalid .email-subscribe__input {
      border-color: #FF6174;
    }
  }
  .email-subscribe.invalid .email-subscribe__input::-webkit-input-placeholder {
    color: #FF6174;
  }
  .email-subscribe.invalid .email-subscribe__input::-moz-placeholder {
    color: #FF6174;
  }
  .email-subscribe.invalid .email-subscribe__input:-ms-input-placeholder {
    color: #FF6174;
  }
  .email-subscribe.invalid .email-subscribe__input::-ms-input-placeholder {
    color: #FF6174;
  }
  .email-subscribe.invalid .email-subscribe__input::placeholder {
    color: #FF6174;
  }
  .email-subscribe__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    padding: 7px;
    background-color: #fff;
    border: 1.046px solid #D6DADE;
    -webkit-backdrop-filter: blur(16.7417125702px);
            backdrop-filter: blur(16.7417125702px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media screen and (max-width: 650px) {
    .email-subscribe__field {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0;
      background-color: transparent;
      border: 0;
      -webkit-backdrop-filter: blur(0);
              backdrop-filter: blur(0);
    }
  }
  .email-subscribe__input {
    display: block;
    width: 100%;
    height: auto;
    min-height: 42px;
    padding: 10px 8px;
    color: #646E76;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media screen and (max-width: 650px) {
    .email-subscribe__input {
      min-height: 46px;
      margin-bottom: 12px;
      padding: 13px 11px;
      color: #646E76;
      font-size: 14px;
      border: 1px solid #D6DADE;
      background: rgba(255, 255, 255, 0.15);
      -webkit-backdrop-filter: blur(16px);
              backdrop-filter: blur(16px);
    }
  }
  .email-subscribe__submit-btn {
    min-width: 215px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
  }
  @media screen and (max-width: 650px) {
    .email-subscribe__submit-btn {
      width: 100%;
      min-height: 46px;
      font-size: 14px;
    }
  }
  .email-subscribe__submit-btn .arrow {
    width: 15px;
    height: 13px;
    margin-left: 8px;
  }
  .email-subscribe__error {
    display: none;
    margin-top: 9px;
    color: #FF6174;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .email-subscribe__message {
    display: block;
    padding-top: 7px;
    text-align: center;
    color: #424549;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  @media screen and (max-width: 1024px) {
    .email-subscribe__message {
      padding-top: 15px;
    }
  }
  @media screen and (max-width: 576px) {
    .email-subscribe__message {
      padding-top: 12px;
    }
  }
  
  .header {
    padding: 10px 30px;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    z-index: 99;
    min-height: 55px;
    max-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
  }
  @media (max-width: 576px) {
    .header {
      min-height: 66px;
      max-height: 66px;
    }
  }
  @media (max-width: 375px) {
    .header {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (max-width: 1024px) {
    .header .container {
      max-width: 668px !important;
    }
  }
  .header-side {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
  .header-start-btn {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 5px 8px;
    min-height: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    background: #55D789;
    border: 1px solid #55D789;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    margin-left: 20px;
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
  }
  @media (max-width: 576px) {
    .header-start-btn {
      margin-left: 18px;
      min-height: 31px;
      min-width: 93px;
    }
  }
  @media (min-width: 1025px) {
    .header-start-btn:hover {
      background: rgba(85, 215, 137, 0.15);
      border-color: transparent;
      color: #55D789;
    }
  }
  .header__logo-mobile {
    max-width: 96px;
    margin-bottom: 32px;
    display: none;
    -webkit-box-ordinal-group: -998;
        -ms-flex-order: -999;
            order: -999;
  }
  .header__logo-mobile img {
    width: 100%;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  @media (max-width: 576px) {
    .header__logo-mobile {
      display: block;
    }
  }
  .header__logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 105px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 27px;
  }
  @media (max-width: 1024px) {
    .header__logo {
      margin-right: 20px;
    }
  }
  @media (max-width: 576px) {
    .header__logo {
      max-width: 96px;
    }
  }
  .header__logo img {
    width: 100%;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .header-secure {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #27292c;
    margin-right: 30px;
  }
  @media (max-width: 576px) {
    .header-secure {
      font-size: 14px;
      color: #fff;
      margin-bottom: 20px;
      margin-right: 0;
    }
  }
  .header-secure .symbol {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 5px;
  }
  .header-secure .icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    fill: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-secure .icon.stroke {
    fill: transparent;
    stroke: #27292c;
    stroke-width: 1.5px;
  }
  @media (max-width: 576px) {
    .header-secure .icon {
      fill: #fff;
    }
    .header-secure .icon.stroke {
      fill: transparent;
      stroke: #fff;
      stroke-width: 1.5px;
    }
  }
  @media (max-width: 576px) {
    .header-secure .value-desctop {
      display: none;
    }
  }
  @media (min-width: 577px) {
    .header-secure .value-mobile {
      display: none;
    }
  }
  .header-body__inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  @media (max-width: 576px) {
    .header-body__inner {
      height: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      overflow: hidden;
      overflow-y: auto;
    }
  }
  .header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  @media (max-width: 576px) {
    .header__body.hide-content .header-body__inner {
      overflow: hidden !important;
    }
  }
  @media (max-width: 1024px) {
    .header__body {
      width: auto;
      margin-left: auto;
    }
  }
  @media (max-width: 576px) {
    .header__body {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      -webkit-transform: translateX(-110%);
              transform: translateX(-110%);
      padding: 20px 30px;
      padding-bottom: 35px;
      -webkit-transition: all 0.4s;
      transition: all 0.4s;
      background: rgba(0, 0, 0, 0.7);
      z-index: 10;
      flex-direction: column;
      -webkit-box-pack: initial;
          -ms-flex-pack: initial;
              justify-content: initial;
      visibility: hidden;
      width: 100%;
      height: calc(var(--vh, 1vh) * 100);
      overflow: hidden;
    }
    .header__body::after {
      width: 100%;
      height: 100%;
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      z-index: -1;
    }
  }
  @media (max-width: 576px) and (max-width: 576px) {
    .header__body::after {
      -webkit-backdrop-filter: blur(30px);
              backdrop-filter: blur(30px);
    }
  }
  @media (max-width: 576px) {
    .header__body.active {
      visibility: visible;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  .header__body-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 11px;
    right: 11px;
    display: none;
    cursor: pointer;
  }
  .header__body-close .icon {
    width: 13px;
    height: 13px;
    fill: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__body-close:active .icon {
    fill: #A5EBFB;
  }
  @media (max-width: 576px) {
    .header__body-close {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .header__toggle {
    display: none;
    width: 20px;
    height: 17px;
    min-width: 20px;
    position: relative;
  }
  .header__toggle .icon {
    width: 20px;
    height: 17px;
    stroke: #27292C;
    stroke-width: 1.7px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .header__toggle .icon {
      width: 24px;
      height: 20px;
      stroke-width: 2px;
    }
  }
  .header__toggle:active .icon {
    stroke: #A5EBFB;
  }
  @media (max-width: 576px) {
    .header__toggle {
      margin-left: auto;
      width: 24px;
      height: 20px;
      min-width: 24px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  .header-lang-dropbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (max-width: 576px) {
    .header-lang-dropbox {
      position: static;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .header-lang__holder {
    display: none;
  }
  @media (max-width: 576px) {
    .header-lang__holder {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      margin-bottom: 14px;
      font-family: "Montserrat";
      font-style: normal;
      font-weight: 600;
      font-size: 14px;
      line-height: 21px;
      text-transform: capitalize;
      text-align: center;
      color: #fff;
    }
  }
  .header-lang__trigger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  @media (min-width: 1025px) {
    .header-lang__trigger:hover .header-lang__value {
      color: #55D789;
    }
    .header-lang__trigger:hover .icon {
      stroke: #55D789;
    }
  }
  .header-lang__trigger:active .header-lang__value {
    color: #55D789;
  }
  .header-lang__trigger:active .icon {
    stroke: #55D789;
  }
  .header-lang__trigger.active .header-lang__value {
    color: #55D789;
  }
  .header-lang__trigger.active .icon {
    stroke: #55D789;
  }
  .header-lang__icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 6px;
  }
  @media (max-width: 576px) {
    .header-lang__icon {
      width: 22px;
      height: 22px;
      min-width: 22px;
      margin-right: 7px;
    }
  }
  .header-lang__icon .icon {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
       object-fit: contain;
    fill: transparent;
    stroke: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    stroke-width: 1.5px;
  }
  @media (max-width: 576px) {
    .header-lang__icon .icon {
      width: 22px;
      height: 22px;
      stroke: #fff;
    }
  }
  .header-lang__value {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.78125px;
    text-transform: uppercase;
    color: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .header-lang__value {
      font-size: 14px;
      color: #fff;
    }
  }
  .header-lang__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
    color: #fff;
    text-align: left;
    padding: 5px 15px;
    padding-right: 32px;
    position: relative;
  }
  @media (max-width: 1024px) {
    .header-lang__option {
      font-size: 12px;
      min-height: 34px;
      padding: 4px 13px;
      padding-right: 25px;
    }
  }
  @media (max-width: 576px) {
    .header-lang__option {
      font-size: 14px;
      min-height: 40px;
      line-height: 20px;
      min-height: auto;
      margin-bottom: 20px;
      padding: 0;
      padding-right: 30px;
    }
    .header-lang__option:last-child {
      margin-bottom: 0;
    }
  }
  .header-lang__option .flag {
    display: none;
  }
  @media (max-width: 576px) {
    .header-lang__option .flag {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 26px;
      height: 26px;
      min-width: 26px;
      position: relative;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 9px;
    }
    .header-lang__option .flag img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      pointer-events: none;
    }
  }
  .header-lang__option::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: url("../../assets/svg/help-icon.svg") no-repeat;
    background-size: 100% 100%;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
  @media (max-width: 1024px) {
    .header-lang__option::before {
      width: 12px;
      height: 12px;
      right: 11px;
    }
  }
  @media (max-width: 576px) {
    .header-lang__option::before {
      right: 0;
      width: 20px;
      height: 20px;
    }
  }
  @media (min-width: 1025px) {
    .header-lang__option:hover {
      background: rgba(247, 248, 251, 0.1);
    }
  }
  .header-lang__option:active {
    background: rgba(247, 248, 251, 0.1);
  }
  @media (max-width: 576px) {
    .header-lang__option:active {
      background: transparent;
    }
  }
  .header-lang__option.active {
    background: rgba(247, 248, 251, 0.1);
  }
  .header-lang__option.active::before {
    opacity: 1;
  }
  @media (max-width: 576px) {
    .header-lang__option.active {
      background: transparent;
    }
  }
  .header-lang__dropdown {
    position: absolute;
    display: block;
    bottom: -18px;
    left: 0;
    width: 158px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  @media (max-width: 1024px) {
    .header-lang__dropdown {
      width: 135px;
    }
  }
  @media (max-width: 576px) {
    .header-lang__dropdown {
      bottom: unset;
      position: fixed;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-transform: none;
              transform: none;
      z-index: 4;
      padding: 35px 30px;
      background: rgba(0, 0, 0, 0.3);
    }
  }
  .header-lang__dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  .header-lang__list {
    overflow: hidden;
    overflow-y: auto;
    max-height: 400px;
  }
  @media (max-width: 1024px) {
    .header-lang__list {
      max-height: 341px;
    }
  }
  @media (max-width: 576px) {
    .header-lang__list {
      max-height: 100%;
      margin-bottom: 30px;
    }
  }
  .header-lang-controls {
    display: none;
  }
  @media (max-width: 576px) {
    .header-lang-controls {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      position: relative;
      grid-column-gap: 20px;
      grid-row-gap: 10px;
      margin-top: auto;
    }
  }
  .header-lang-apply {
    min-height: 36px;
    min-width: 129px;
    padding: 5px 10px;
    font-size: 14px;
  }
  .header-lang__close {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #424848;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 36px;
    min-width: 126px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  .header-lang__close:active {
    background-color: transparent;
    color: #fff;
  }
  
  .header.header-option .header-lang-dropbox {
    margin-left: 30px;
  }
  @media (max-width: 576px) {
    .header.header-option .header-lang-dropbox {
      margin-top: 20px;
      margin-left: 0;
    }
  }
  
  .header-contact-dropbox {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 20px;
  }
  @media (max-width: 1024px) {
    .header-contact-dropbox {
      position: static;
    }
  }
  @media (max-width: 576px) {
    .header-contact-dropbox {
      width: 100%;
      margin-left: 0;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      padding-top: 31px;
      padding-bottom: 37px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      margin-bottom: 29px;
    }
  }
  .header-contact-mobile {
    display: none;
  }
  @media (max-width: 576px) {
    .header-contact-mobile {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-top: 31px;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      background: rgba(255, 255, 255, 0.1);
      padding: 21px;
      padding-top: 42px;
    }
  }
  .header-contact-mobile__avatar {
    width: 62px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-contact-mobile__avatar::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #55D789;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
  }
  .header-contact-mobile__avatar img {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .header-contact-mobile__name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
  }
  .header-contact-mobile__status {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 15px;
  }
  .header-contact-mobile-btn {
    min-width: 93px;
    min-height: 35px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .header-contact-trigger {
    max-width: 111px;
    min-width: 111px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    background: transparent;
    border: 1px solid #D6DADE;
    cursor: pointer;
    overflow: hidden;
    padding: 3px 6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    max-height: 35px;
  }
  @media (max-width: 576px) {
    .header-contact-trigger {
      display: none;
    }
  }
  @media (min-width: 1025px) {
    .header-contact-trigger:hover {
      border-color: #55D789;
    }
    .header-contact-trigger:hover .header-contact-trigger__name {
      color: #55D789;
    }
    .header-contact-trigger:hover .header-contact-trigger__arrowlink {
      color: #55D789;
    }
    .header-contact-trigger:hover .header-contact-trigger__arrowlink .icon {
      fill: #55D789;
    }
  }
  .header-contact-trigger:active {
    border-color: #55D789;
  }
  .header-contact-trigger:active .header-contact-trigger__name {
    color: #55D789;
  }
  .header-contact-trigger:active .header-contact-trigger__arrowlink {
    color: #55D789;
  }
  .header-contact-trigger:active .header-contact-trigger__arrowlink .icon {
    fill: #55D789;
  }
  .header-contact-trigger.active {
    border-color: #55D789;
  }
  .header-contact-trigger.active .header-contact-trigger__name {
    color: #55D789;
  }
  .header-contact-trigger.active .header-contact-trigger__arrowlink {
    color: #55D789;
  }
  .header-contact-trigger.active .header-contact-trigger__arrowlink .icon {
    fill: #55D789;
  }
  .header-contact-trigger__photo {
    width: 27px;
    height: 27px;
    min-width: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 4px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
  }
  .header-contact-trigger__photo img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .header-contact-trigger__info {
    width: 100%;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-contact-trigger__name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 10.0144px;
    line-height: 11px;
    color: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .header-contact-trigger__arrowlink {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 8.34532px;
    line-height: 11px;
    color: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-contact-trigger__arrowlink .arrow {
    width: 4px;
    height: 7px;
    min-width: 7px;
    margin-left: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1px;
  }
  .header-contact-trigger__arrowlink .arrow .icon {
    width: 7px;
    height: 4px;
    fill: #27292c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header-contact-dropdown {
    position: absolute;
    bottom: -9.5px;
    right: 0;
    width: 798px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
  }
  @media (max-width: 1024px) {
    .header-contact-dropdown {
      right: 50%;
      -webkit-transform: translateY(100%) translateX(50%);
              transform: translateY(100%) translateX(50%);
      width: 100%;
      max-width: 668px;
      bottom: -1px;
    }
  }
  @media (max-width: 576px) {
    .header-contact-dropdown {
      padding: 42px 30px;
      background: rgba(0, 0, 0, 0.1);
      -webkit-backdrop-filter: blur(30px);
              backdrop-filter: blur(30px);
      bottom: unset;
      -webkit-transform: none;
              transform: none;
      right: unset;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 4;
    }
  }
  .header-contact-dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  .header-contact-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 11px;
    right: 11px;
    display: none;
    cursor: pointer;
  }
  .header-contact-close .icon {
    width: 13px;
    height: 13px;
    fill: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-contact-close:active .icon {
    fill: #A5EBFB;
  }
  @media (max-width: 576px) {
    .header-contact-close {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .header-contact-dropdown-wrapp {
    overflow: hidden;
    overflow-y: auto;
    max-height: 100%;
  }
  .header-contact-dropdown-inner {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (max-width: 576px) {
    .header-contact-dropdown-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  .header-contact__sidebar {
    width: 100%;
    max-width: 308px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(31.5799999237px);
            backdrop-filter: blur(31.5799999237px);
    padding: 32px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (max-width: 1024px) {
    .header-contact__sidebar {
      max-width: 202px;
      padding: 34px 24px;
      padding-bottom: 33px;
    }
  }
  @media (max-width: 576px) {
    .header-contact__sidebar {
      max-width: none;
      padding: 28px 0;
      padding-bottom: 32px;
      border-bottom: 1px solid #d6dade;
      background: transparent;
      -webkit-backdrop-filter: none;
              backdrop-filter: none;
    }
  }
  .header-contact-details {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-contact__person {
    width: 100%;
    max-width: 155px;
    position: relative;
  }
  @media (max-width: 576px) {
    .header-contact__person {
      max-width: 183px;
    }
  }
  .header-contact__person-top {
    width: 100%;
    position: relative;
    margin-bottom: 17px;
  }
  @media (max-width: 576px) {
    .header-contact__person-top {
      margin-bottom: 20px;
    }
  }
  .header-contact__avatar {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-contact__avatar::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #55D789;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-contact__avatar img {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .header-contact__country {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 8px;
  }
  @media (max-width: 1024px) {
    .header-contact__country {
      width: 29px;
      height: 29px;
      left: 7px;
    }
  }
  @media (max-width: 576px) {
    .header-contact__country {
      width: 40px;
      height: 40px;
      left: 10px;
    }
  }
  .header-contact__country img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .header-contact__medal {
    width: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 7px;
  }
  @media (max-width: 1024px) {
    .header-contact__medal {
      width: 29px;
      height: 29px;
      right: 6px;
    }
  }
  @media (max-width: 576px) {
    .header-contact__medal {
      width: 40px;
      height: 40px;
      right: 8px;
    }
  }
  .header-contact__medal img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .header-contact__person-info {
    width: 100%;
    position: relative;
    margin-bottom: 60px;
  }
  @media (max-width: 576px) {
    .header-contact__person-info {
      margin-bottom: 30px;
    }
  }
  .header-contact__person-name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 18.0451px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 6px;
  }
  @media (max-width: 576px) {
    .header-contact__person-name {
      font-size: 21px;
      line-height: 26px;
      margin-bottom: 7px;
    }
  }
  .header-contact__person-status {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12.0301px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
  }
  @media (max-width: 576px) {
    .header-contact__person-status {
      margin-bottom: 17px;
      font-size: 14px;
      line-height: 19px;
    }
  }
  .header-contact__person-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-column-gap: 13px;
    grid-row-gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media (max-width: 576px) {
    .header-contact__person-socials {
      grid-column-gap: 16px;
    }
  }
  .header-contact__person-social {
    width: 14px;
    height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .header-contact__person-social {
      width: 16px;
      height: 16px;
    }
  }
  @media (min-width: 1025px) {
    .header-contact__person-social:hover {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
    }
  }
  .header-contact__person-social:active {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .header-contact__person-social .icon {
    width: 14px;
    height: 14px;
    -o-object-fit: contain;
       object-fit: contain;
    fill: #55D789;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .header-contact__person-social .icon {
      width: 16px;
      height: 16px;
    }
  }
  .header-contact__person-links {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-contact__person-links li {
    margin-bottom: 8px;
  }
  @media (max-width: 576px) {
    .header-contact__person-links li {
      margin-bottom: 12px;
    }
  }
  .header-contact__person-links li:last-child {
    margin-bottom: 0;
  }
  .header-contact__person-link {
    overflow-wrap: anywhere;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12.0301px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 576px) {
    .header-contact__person-link {
      font-size: 14px;
      line-height: 18px;
    }
  }
  @media (min-width: 1025px) {
    .header-contact__person-link:hover {
      color: #55D789;
    }
  }
  .header-contact__person-link:active {
    color: #55D789;
  }
  .header-contact-join-btn {
    min-width: 132px;
    min-height: 34px;
    background: #fff;
    margin-top: auto;
    font-size: 12px;
    padding: 5px;
  }
  @media (max-width: 576px) {
    .header-contact-join-btn {
      min-width: 155px;
      min-height: 40px;
      font-size: 14px;
      line-height: 17px;
    }
  }
  .header-contact-form {
    width: 100%;
    position: relative;
    padding: 27px 33px;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(31.5799999237px);
            backdrop-filter: blur(31.5799999237px);
  }
  @media (max-width: 1024px) {
    .header-contact-form {
      padding: 34px 20px;
      padding-bottom: 33px;
    }
  }
  @media (max-width: 576px) {
    .header-contact-form {
      padding: 0;
      padding-top: 35px;
      background: transparent;
      -webkit-backdrop-filter: none;
              backdrop-filter: none;
    }
  }
  @media (max-width: 1024px) {
    .header-contact-form .form__row {
      row-gap: 13px;
    }
  }
  @media (max-width: 576px) {
    .header-contact-form .form__row {
      row-gap: 18px;
    }
  }
  @media (max-width: 1024px) {
    .header-contact-form .form__row:not(:last-child) {
      margin-bottom: 13px;
    }
  }
  @media (max-width: 576px) {
    .header-contact-form .form__row:not(:last-child) {
      margin-bottom: 18px;
    }
  }
  .header-contact-form .form__field-name {
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 4.5px;
    color: #fff;
  }
  @media (max-width: 576px) {
    .header-contact-form .form__field-name {
      font-size: 13px;
      line-height: 18px;
      margin-bottom: 5px;
    }
  }
  .header-contact-form .form__input {
    height: 34px;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 16px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }
  .header-contact-form .form__input:focus {
    border-color: #fff;
  }
  @media (max-width: 576px) {
    .header-contact-form .form__input {
      min-height: 39px;
      padding: 5px 10px;
      font-size: 13px;
      line-height: 18px;
    }
  }
  .header-contact-form .form-input-area {
    padding: 10px;
    font-size: 11px;
    line-height: 16px;
    min-height: 86px;
  }
  @media (max-width: 576px) {
    .header-contact-form .form-input-area {
      padding: 14px;
      font-size: 13px;
      line-height: 18px;
      min-height: 101px;
    }
  }
  .header-contact-form .select__trigger {
    border-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-height: 34px;
  }
  @media (max-width: 576px) {
    .header-contact-form .select__trigger {
      min-height: 39px;
    }
  }
  .header-contact-form .select__value {
    color: #fff;
    font-size: 11px;
    line-height: 16px;
  }
  @media (max-width: 576px) {
    .header-contact-form .select__value {
      font-size: 13px;
      line-height: 18px;
    }
  }
  .header-contact-form .select-arrow .icon {
    stroke: #fff;
  }
  .header-contact-form .select-info.active .select__trigger {
    border-color: #fff;
  }
  .header-contact-form .select-info.changed .select__value {
    color: #fff;
  }
  .header-contact-form .form__error {
    color: #FF7D8D;
    font-size: 11px;
    line-height: 15px;
    margin-top: 4.5px;
  }
  @media (max-width: 576px) {
    .header-contact-form .form__error {
      font-size: 13px;
      line-height: 16px;
    }
  }
  .header-contact-form .form__field.invalid .select__trigger {
    border-color: #FF7D8D;
  }
  .header-contact-form .form__field.invalid .form__input {
    border-color: #FF7D8D;
  }
  .header-contact-form__header {
    margin-bottom: 20px;
    position: relative;
    border-bottom: 0.75188px solid rgba(214, 218, 222, 0.4);
    padding-bottom: 21px;
  }
  @media (max-width: 576px) {
    .header-contact-form__header {
      margin-bottom: 23px;
      padding-bottom: 0;
      border: none;
    }
  }
  .header-contact-form__name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 15.0376px;
    line-height: 22px;
    color: #fff;
  }
  @media (max-width: 576px) {
    .header-contact-form__name {
      font-size: 17.5px;
      line-height: 26px;
      margin-bottom: 6px;
    }
  }
  .header-contact-form__description {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 9px;
  }
  @media (max-width: 576px) {
    .header-contact-form__description {
      font-size: 16px;
      line-height: 22px;
    }
  }
  .header-contact-form__content {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-contact-form__text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #fff;
  }
  @media (max-width: 576px) {
    .header-contact-form__text {
      font-size: 14px;
      line-height: 19px;
    }
  }
  .header-contact-form__submit {
    min-width: 132px;
    min-height: 34px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    margin-left: auto;
    position: relative;
    z-index: 1;
    padding: 7px 20px;
  }
  @media (max-width: 1024px) {
    .header-contact-form__submit {
      min-width: 127px;
    }
  }
  @media (max-width: 576px) {
    .header-contact-form__submit {
      min-width: 156px;
      min-height: 40px;
      font-size: 14px;
      line-height: 16px;
      margin-left: 0;
    }
  }
  @media (min-width: 1025px) {
    .header-contact-form__submit:hover {
      background: #fff;
      color: #55D789;
    }
  }
  
  .header--transparent .header {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: rgba(12, 12, 12, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-secure {
      color: #fff;
    }
    .header--transparent .header .header-secure .icon {
      stroke: #fff;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-lang__trigger .header-lang__value {
      color: #fff;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-lang__trigger .icon {
      stroke: #fff;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-lang__trigger.active .header-lang__value {
      color: #383d44;
    }
    .header--transparent .header .header-lang__trigger.active .icon {
      stroke: #383d44;
    }
  }
  @media (min-width: 1025px) {
    .header--transparent .header .header-lang__trigger:hover .header-lang__value {
      color: #383d44;
    }
    .header--transparent .header .header-lang__trigger:hover .icon {
      stroke: #383d44;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-lang__dropdown {
      left: unset;
      right: 0;
    }
  }
  .header--transparent .header .header-contact-dropbox {
    margin-left: 30px;
  }
  @media (max-width: 1024px) {
    .header--transparent .header .header-contact-dropbox {
      margin-left: 24px;
    }
  }
  @media (max-width: 576px) {
    .header--transparent .header .header-contact-dropbox {
      margin-left: 0;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-contact-trigger {
      border-color: #fff;
    }
    .header--transparent .header .header-contact-trigger.active {
      border-color: #383d44;
    }
    .header--transparent .header .header-contact-trigger.active .header-contact-trigger__name, .header--transparent .header .header-contact-trigger.active .header-contact-trigger__arrowlink {
      color: #383d44;
    }
    .header--transparent .header .header-contact-trigger.active .header-contact-trigger__name .icon, .header--transparent .header .header-contact-trigger.active .header-contact-trigger__arrowlink .icon {
      fill: #383d44;
    }
  }
  @media (min-width: 1025px) {
    .header--transparent .header .header-contact-trigger:hover {
      border-color: #383d44;
    }
    .header--transparent .header .header-contact-trigger:hover .header-contact-trigger__name, .header--transparent .header .header-contact-trigger:hover .header-contact-trigger__arrowlink {
      color: #383d44;
    }
    .header--transparent .header .header-contact-trigger:hover .header-contact-trigger__name .icon, .header--transparent .header .header-contact-trigger:hover .header-contact-trigger__arrowlink .icon {
      fill: #383d44;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header .header-contact-trigger__name, .header--transparent .header .header-contact-trigger__arrowlink {
      color: #fff;
    }
    .header--transparent .header .header-contact-trigger__name .icon, .header--transparent .header .header-contact-trigger__arrowlink .icon {
      fill: #fff;
    }
  }
  .header--transparent .header .header__toggle .icon {
    stroke: #fff;
  }
  .header--transparent .header.fixed {
    background: #383d44;
  }
  @media (min-width: 577px) {
    .header--transparent .header.fixed .header-lang__trigger.active .header-lang__value {
      color: #55D789;
    }
    .header--transparent .header.fixed .header-lang__trigger.active .icon {
      stroke: #55D789;
    }
  }
  @media (min-width: 1025px) {
    .header--transparent .header.fixed .header-lang__trigger:hover .header-lang__value {
      color: #55D789;
    }
    .header--transparent .header.fixed .header-lang__trigger:hover .icon {
      stroke: #55D789;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header.fixed .header-contact-trigger.active {
      border-color: #55D789;
    }
    .header--transparent .header.fixed .header-contact-trigger.active .header-contact-trigger__name, .header--transparent .header.fixed .header-contact-trigger.active .header-contact-trigger__arrowlink {
      color: #55D789;
    }
    .header--transparent .header.fixed .header-contact-trigger.active .header-contact-trigger__name .icon, .header--transparent .header.fixed .header-contact-trigger.active .header-contact-trigger__arrowlink .icon {
      fill: #55D789;
    }
  }
  @media (min-width: 1025px) {
    .header--transparent .header.fixed .header-contact-trigger:hover {
      border-color: #55D789;
    }
    .header--transparent .header.fixed .header-contact-trigger:hover .header-contact-trigger__name, .header--transparent .header.fixed .header-contact-trigger:hover .header-contact-trigger__arrowlink {
      color: #55D789;
    }
    .header--transparent .header.fixed .header-contact-trigger:hover .header-contact-trigger__name .icon, .header--transparent .header.fixed .header-contact-trigger:hover .header-contact-trigger__arrowlink .icon {
      fill: #55D789;
    }
  }
  @media (min-width: 577px) {
    .header--transparent .header.fixed .header-contact-trigger__name, .header--transparent .header.fixed .header-contact-trigger__arrowlink {
      color: #fff;
    }
    .header--transparent .header.fixed .header-contact-trigger__name .icon, .header--transparent .header.fixed .header-contact-trigger__arrowlink .icon {
      fill: #fff;
    }
  }
  
  .modal {
    padding: 15vh 0 5vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s ease, padding 0s;
    transition: all 0.5s ease, padding 0s;
  }
  .modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .modal__dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 9px;
    max-width: 1120px;
    width: calc(100% - 60px);
    max-height: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    aspect-ratio: 1.8/1;
    -webkit-box-shadow: 0px 12.6368px 27.1123px rgba(52, 60, 71, 0.05);
            box-shadow: 0px 12.6368px 27.1123px rgba(52, 60, 71, 0.05);
  }
  @media (max-width: 1024px) {
    .modal__dialog {
      padding: 5px;
    }
  }
  @media screen and (max-width: 768px) {
    .modal__dialog {
      max-width: 715px;
    }
  }
  @media (max-width: 576px) {
    .modal__dialog {
      padding: 9px;
    }
  }
  @media screen and (max-width: 390px) {
    .modal__dialog {
      max-width: 410px;
    }
  }
  @media screen and (max-width: 375px) {
    .modal__dialog {
      width: calc(100% - 30px);
    }
  }
  .modal__dialog video,
  .modal__dialog .video-js,
  .modal__dialog iframe {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .modal__dialog .vjs-big-play-button {
    display: none !important;
  }
  
  .modal-wraper {
    position: fixed;
    z-index: 110;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
  }
  .modal-wraper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .modal-wraper.info-stat-modal {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  @media (max-width: 1024px) {
    .modal-wraper.info-stat-modal {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }
  .modal-wraper.info-stat-modal .modal-box {
    background: #fff;
    -webkit-backdrop-filter: blur(21.5px);
            backdrop-filter: blur(21.5px);
    border-radius: 12px;
    padding: 31px 35px;
    max-width: 746px;
    margin-bottom: 0;
  }
  @media (max-width: 1024px) {
    .modal-wraper.info-stat-modal .modal-box {
      max-width: 636px;
      padding: 30px;
    }
  }
  @media (max-width: 576px) {
    .modal-wraper.info-stat-modal .modal-box {
      margin-bottom: auto;
      padding: 20px;
      padding-right: 15px;
      border-radius: 6px;
    }
  }
  .modal-wraper.info-stat-modal .info-stat__details {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    width: 100%;
    font-size: 22px;
    line-height: 100%;
    color: #27292c;
  }
  .modal-wraper.info-stat-modal .info-stat__details .xl {
    line-height: 134%;
  }
  @media (max-width: 1024px) {
    .modal-wraper.info-stat-modal .info-stat__details {
      font-size: 18px;
    }
  }
  @media (max-width: 576px) {
    .modal-wraper.info-stat-modal .info-stat__details {
      font-size: 13px;
    }
  }
  .modal-wraper.info-stat-modal .modal-close-btn {
    width: 17px;
    height: 17px;
    top: 26px;
    right: 26px;
  }
  @media (max-width: 576px) {
    .modal-wraper.info-stat-modal .modal-close-btn {
      width: 13px;
      height: 13px;
      top: 14px;
      right: 14px;
    }
  }
  .modal-wraper.info-stat-modal .modal-close-btn .icon {
    width: 17px;
    height: 17px;
  }
  @media (max-width: 576px) {
    .modal-wraper.info-stat-modal .modal-close-btn .icon {
      width: 13px;
      line-height: 13px;
    }
  }
  @media (min-width: 1025px) {
    .modal-wraper.info-stat-modal .modal-close-btn:hover .icon {
      fill: #3AD1F2;
    }
  }
  .modal-wraper.info-stat-modal .modal-close-btn:active .icon {
    fill: #3AD1F2;
  }
  .modal-wraper.info-stat-modal .modal-close-btn .icon {
    fill: #27292C;
  }
  .modal-box {
    width: 100%;
    max-width: 950px;
    background: linear-gradient(100.84deg, #2A78B3 -3.18%, #45B9AF 112.02%);
    position: relative;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px;
    color: #fff;
  }
  @media (max-width: 1024px) {
    .modal-box {
      max-width: 636px;
      padding: 30px;
    }
  }
  @media (max-width: 576px) {
    .modal-box {
      max-width: 636px;
      padding: 40px 25px;
      padding-bottom: 45px;
    }
  }
  .modal-close-btn {
    width: 13px;
    height: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 2;
    top: 14px;
    right: 14px;
    position: absolute;
  }
  .modal-close-btn .icon {
    width: 13px;
    height: 13px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    fill: #fff;
  }
  @media (max-width: 1024px) {
    .modal-close-btn {
      top: 10px;
      right: 9px;
    }
  }
  @media (max-width: 576px) {
    .modal-close-btn {
      top: 15px;
      right: 15px;
    }
  }
  @media (min-width: 1025px) {
    .modal-close-btn:hover .icon {
      fill: #a5ebfb;
    }
  }
  .modal-close-btn:active .icon {
    fill: #a5ebfb;
  }
  .modal-box__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal-box__icon {
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
  @media (max-width: 1024px) {
    .modal-box__icon {
      width: 46px;
      height: 46px;
      margin-bottom: 11px;
    }
  }
  @media (max-width: 576px) {
    .modal-box__icon {
      width: 43px;
      height: 43px;
      margin-bottom: 14px;
    }
  }
  .modal-box__icon .icon {
    width: 55px;
    height: 55px;
    fill: #fff;
    -o-object-fit: contain;
       object-fit: contain;
  }
  @media (max-width: 1024px) {
    .modal-box__icon .icon {
      width: 46px;
      height: 46px;
    }
  }
  @media (max-width: 576px) {
    .modal-box__icon .icon {
      width: 43px;
      height: 43px;
    }
  }
  .modal-box__title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 11px;
  }
  @media (max-width: 1024px) {
    .modal-box__title {
      margin-bottom: 8px;
      font-size: 24px;
      line-height: 30px;
    }
  }
  @media (max-width: 576px) {
    .modal-box__title {
      margin-bottom: 24px;
      font-size: 28px;
      line-height: 28px;
    }
  }
  .modal-box__text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
  }
  @media (max-width: 1024px) {
    .modal-box__text {
      font-size: 13px;
      line-height: 20px;
      margin-bottom: 18px;
    }
  }
  @media (max-width: 576px) {
    .modal-box__text {
      font-size: 14px;
      line-height: 19px;
      margin-bottom: 60px;
    }
  }
  .modal-box__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-width: 204px;
    min-height: 37px;
    padding: 5px 10px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #fff;
    background: transparent;
  }
  @media (max-width: 1024px) {
    .modal-box__btn {
      font-size: 13px;
      line-height: 16px;
    }
  }
  @media (max-width: 576px) {
    .modal-box__btn {
      font-size: 14px;
      line-height: 17px;
    }
  }
  @media (min-width: 1025px) {
    .modal-box__btn:hover {
      background-color: #fff;
      color: #389BB0;
    }
  }
  .modal-box__btn:active {
    background-color: #fff;
    color: #389BB0;
  }
  
  .modal-wraper .payment-successful-modal__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 5px 10px;
    min-height: 36px;
    max-width: 272px;
    text-transform: none;
  }
  
  .payment-error-modal__box {
    width: 100%;
    max-width: 496px;
    background-color: #fff;
    padding: 35px 30px;
    position: relative;
    margin: auto;
  }
  @media (max-width: 576px) {
    .payment-error-modal__box {
      padding: 35px 15px;
    }
  }
  .payment-error-modal__content {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .payment-error-modal__icon {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .payment-error-modal__icon img {
    width: 100%;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .payment-error-modal__title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #27292c;
    margin-bottom: 4px;
  }
  @media (max-width: 370px) {
    .payment-error-modal__title {
      font-size: 24px;
      line-height: 30px;
    }
  }
  .payment-error-modal__text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #7b8086;
    margin-bottom: 13px;
  }
  @media (max-width: 370px) {
    .payment-error-modal__text {
      font-size: 14px;
      line-height: 17px;
    }
  }
  @media (max-width: 576px) {
    .payment-error-modal__text br {
      display: none;
    }
  }
  .payment-error-modal__text-warn {
    margin-bottom: 21px;
    color: #7B8086;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .payment-error-modal__btn {
    min-height: 36px;
    padding: 5px 10px;
    min-width: 173px;
    text-transform: none;
  }
  
  .modal-claim {
    padding-top: 150px;
  }
  @media screen and (max-width: 650px) {
    .modal-claim {
      padding-top: 240px;
    }
  }
  @media screen and (max-width: 375px) {
    .modal-claim {
      padding-inline: 5px;
    }
  }
  .modal-claim__box {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 45px 40px;
    position: relative;
    background: #55D789;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__box {
      max-width: 635px;
      padding: 30px 24px 31px 22px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__box {
      padding: 0 23px 30px 27px;
    }
  }
  .modal-claim__box.sent {
    padding: 43px 30px 26px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__box.sent {
      padding: 30px 30px 31px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__box.sent {
      padding: 39px 25px 38px;
    }
  }
  .modal-claim__box.sent .modal-claim__close-btn {
    top: 17px;
    right: 19px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__box.sent .modal-claim__close-btn {
      top: 12px;
      right: 8px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__box.sent .modal-claim__close-btn {
      top: 16px;
      right: 16px;
    }
  }
  .modal-claim__box.sent .modal-claim__bg:before {
    width: 866px;
    top: 30%;
    left: 62%;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__box.sent .modal-claim__bg:before {
      width: 649px;
      top: 50%;
      left: 58%;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__box.sent .modal-claim__bg:before {
      width: 486px;
      top: 35%;
      left: 61%;
    }
  }
  .modal-claim__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  .modal-claim__bg:before {
    content: "";
    display: block;
    width: 600px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 35%;
    left: 63%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(-33deg, #55D789 17%, #30784d 100%);
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__bg:before {
      width: 486px;
      top: 53%;
      left: 68%;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__bg:before {
      top: 30%;
      left: 52%;
    }
  }
  .modal-claim__close-btn {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
  }
  @media (max-width: 1024px) {
    .modal-claim__close-btn {
      right: 9px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__close-btn {
      top: 48px;
      right: 15px;
    }
  }
  .modal-claim__close-btn .icon {
    width: 15px;
    min-width: 15px;
    height: 15px;
    fill: #fff;
  }
  .modal-claim__body {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .modal-claim__icon {
    width: 100%;
    margin-bottom: 15px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__icon {
      margin-bottom: 11px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__icon {
      margin-bottom: 14px;
    }
  }
  .modal-claim__icon .icon-bigmail {
    display: block;
    margin: 0 auto;
    width: 55px;
    min-width: 55px;
    height: 55px;
    fill: #fff;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__icon .icon-bigmail {
      width: 46px;
      min-width: 46px;
      height: 46px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__icon .icon-bigmail {
      width: 43px;
      min-width: 43px;
      height: 43px;
    }
  }
  .modal-claim__secondary-title {
    margin-bottom: 11px;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__secondary-title {
      margin-bottom: 9px;
      color: #fff;
      text-align: center;
      font-size: 24px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__secondary-title {
      margin-bottom: 14px;
      font-size: 28px;
      line-height: 28px;
    }
  }
  .modal-claim__content {
    max-width: 583px;
    margin: 0 auto 17px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__content {
      max-width: 436px;
      margin: 0 auto 21px;
      font-size: 13px;
      line-height: 19px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__content {
      margin-bottom: 24px;
      font-size: 14px;
    }
    .modal-claim__content .hide-on-mobile {
      display: none;
    }
  }
  .modal-claim__content b {
    font-weight: 600;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__content b {
      font-weight: 500;
    }
  }
  .modal-claim__content *:not(:last-child) {
    margin-bottom: 21px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__content *:not(:last-child) {
      margin-bottom: 19px;
    }
  }
  .modal-claim__change-mail-btn {
    margin: 0 auto;
    font-size: 13px;
  }
  .modal-claim__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 40px);
    margin-inline: -20px;
    position: relative;
    z-index: 2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__row {
      width: calc(100% + 20px);
      margin-inline: -10px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .modal-claim__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    padding-inline: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__col {
      padding-inline: 10px;
    }
  }
  .modal-claim__col:nth-child(1) {
    max-width: 358px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__col:nth-child(1) {
      max-width: 232px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__col:nth-child(1) {
      padding-top: 121px;
    }
  }
  .modal-claim__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 650px) {
    .modal-claim__picture {
      max-width: 295px;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      position: absolute;
      left: 50%;
      top: 0;
      -webkit-transform: translate(-48%, -58%);
              transform: translate(-48%, -58%);
      pointer-events: none;
    }
  }
  .modal-claim__picture__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .modal-claim__title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__title {
      margin-bottom: 6px;
      font-size: 24px;
    }
  }
  @media (max-width: 650px) {
    .modal-claim__title {
      line-height: 28px;
    }
  }
  @media screen and (max-width: 425px) {
    .modal-claim__title {
      margin-bottom: 12px;
      max-width: 220px;
    }
  }
  .modal-claim__subtitle {
    display: block;
    max-width: 476px;
    margin-bottom: 26px;
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__subtitle {
      margin-bottom: 23px;
      font-size: 13px;
      line-height: 16px;
    }
  }
  @media screen and (max-width: 425px) {
    .modal-claim__subtitle {
      margin-bottom: 20px;
      max-width: 245px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__email-subscribe {
      max-width: 100%;
      width: 100%;
    }
  }
  .modal-claim__email-subscribe .email-subscribe__field {
    border-color: transparent;
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__email-subscribe .email-subscribe__field {
      margin-bottom: 8px;
      padding-top: 6px;
      padding-bottom: 6px;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__email-subscribe .email-subscribe__field {
      margin-bottom: 6px;
    }
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__email-subscribe .email-subscribe__input {
      min-height: 32px;
      padding: 8px 7px;
      font-size: 13px;
      line-height: 1;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__email-subscribe .email-subscribe__input {
      color: #fff;
      font-weight: 500;
      min-height: 46px;
      padding: 7px 11px;
      font-size: 14px;
    }
    .modal-claim__email-subscribe .email-subscribe__input::-webkit-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .modal-claim__email-subscribe .email-subscribe__input::-moz-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .modal-claim__email-subscribe .email-subscribe__input:-ms-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .modal-claim__email-subscribe .email-subscribe__input::-ms-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .modal-claim__email-subscribe .email-subscribe__input::placeholder {
      color: #fff;
      font-weight: 500;
    }
  }
  .modal-claim__email-subscribe .email-subscribe__message {
    text-align: start;
    color: #fff;
    font-weight: 600;
  }
  @media (max-width: 1024px) {
    .modal-claim__email-subscribe .email-subscribe__message {
      padding-top: 0;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__email-subscribe .email-subscribe__message {
      text-align: center;
    }
  }
  @media screen and (max-width: 1024px) {
    .modal-claim__email-subscribe .email-subscribe__submit-btn {
      min-height: 32px;
      min-width: 182px;
      padding: 8px 13px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
    }
  }
  @media screen and (max-width: 650px) {
    .modal-claim__email-subscribe .email-subscribe__submit-btn {
      background-color: #fff;
      color: #55D789;
      border-color: #fff;
      min-height: 46px;
      font-size: 14px;
      line-height: 16px;
    }
    .modal-claim__email-subscribe .email-subscribe__submit-btn .arrow:before {
      opacity: 1;
    }
    .modal-claim__email-subscribe .email-subscribe__submit-btn .arrow:after {
      opacity: 0;
    }
  }
  
  .hero-homepage-section {
    padding-top: 51px;
    padding-bottom: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(134.45deg, rgba(85, 215, 137, 0) 7.32%, rgba(85, 215, 137, 0.2) 70%);
  }
  @media (max-width: 1024px) {
    .hero-homepage-section {
      padding-bottom: 26px;
      padding-top: 53px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-section {
      padding-top: 42px;
      padding-bottom: 23px;
      background: linear-gradient(169deg, rgba(85, 215, 137, 0) 30.33%, rgba(85, 215, 137, 0.17) 60%);
    }
  }
  .hero-homepage-section::after {
    position: absolute;
    top: 99px;
    left: -326px;
    z-index: -1;
    content: "";
    border-radius: 50%;
    background: linear-gradient(4.81deg, #FBFFFD 9.66%, #FAFEFC 89.56%);
    width: 636px;
    height: 636px;
    opacity: 0.75;
  }
  @media (max-width: 1024px) {
    .hero-homepage-section::after {
      display: none;
    }
  }
  .hero-homepage-section::before {
    position: absolute;
    bottom: 0;
    right: -250px;
    z-index: -1;
    content: "";
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #F0FFF6), color-stop(60.23%, #DDF7E7));
    background: linear-gradient(180deg, #F0FFF6 30%, #DDF7E7 60.23%);
    width: 427px;
    height: 592px;
    opacity: 0.75;
  }
  @media (max-width: 1024px) {
    .hero-homepage-section::before {
      display: none;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .hero-homepage-section .container {
      max-width: 636px;
    }
  }
  .hero-homepage__title {
    text-align: center;
    font-size: 36px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: -3px;
    text-transform: capitalize;
    color: #27292c;
    margin-bottom: 4px;
  }
  .hero-homepage__title b {
    font-weight: 700;
    color: #55D789;
  }
  @media (max-width: 1024px) {
    .hero-homepage__title {
      line-height: 50px;
      margin-bottom: 4px;
      margin-top: 4px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage__title {
      font-size: 26px;
      line-height: 28px;
      margin-bottom: 11px;
    }
  }
  @media (min-width: 577px) {
    .hero-homepage__title br {
      display: none;
    }
  }
  .hero-homepage__subtitle {
    margin-bottom: 34px;
  }
  @media (max-width: 1024px) {
    .hero-homepage__subtitle {
      margin-bottom: 36px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage__subtitle {
      margin-bottom: 32px;
      width: calc(100% + 10px);
      margin-left: -5px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage__subtitle br {
      display: none;
    }
  }
  @media (min-width: 577px) {
    .hero-homepage__uppertitle br {
      display: none;
    }
  }
  .hero-homepage__text {
    color: #27292c;
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  @media (max-width: 1024px) {
    .hero-homepage__text {
      max-width: 430px;
      margin: 0 auto;
      margin-bottom: 18px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage__text {
      max-width: 285px;
      line-height: 16px;
      margin-bottom: 17px;
    }
  }
  .hero-homepage-device {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    aspect-ratio: 1.40699747/1;
    position: relative;
    margin: 0 auto;
    padding: 3.8% 3.85%;
  }
  @media (max-width: 1024px) {
    .hero-homepage-device {
      max-width: 636px;
    }
  }
  .hero-homepage-device img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .hero-homepage-device__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero-homepage-videobox {
    width: 100%;
    aspect-ratio: 1.98321343/1;
    position: relative;
    z-index: 1;
  }
  .hero-homepage-videobox video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-homepage-audio {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 19px;
    left: 19px;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media (max-width: 1024px) {
    .hero-homepage-audio {
      bottom: 13px;
      left: 13px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-audio {
      bottom: 7px;
      left: 7px;
    }
  }
  .hero-homepage-audio.hide {
    opacity: 0;
    visibility: hidden;
  }
  .hero-homepage-audio__icon {
    width: 38px;
    min-width: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 12px;
  }
  .hero-homepage-audio__icon img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  @media (max-width: 1024px) {
    .hero-homepage-audio__icon {
      width: 27px;
      min-width: 27px;
      margin-right: 8px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-audio__icon {
      width: 14px;
      min-width: 14px;
      margin-right: 4px;
    }
  }
  .hero-homepage-audio__text {
    color: #1D1D1D;
    font-size: 20px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
  }
  @media (max-width: 1024px) {
    .hero-homepage-audio__text {
      font-size: 14px;
      line-height: 10px;
      letter-spacing: -0.353px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-audio__text {
      font-size: 7px;
      line-height: 5px;
      letter-spacing: -0.183px;
    }
  }
  .hero-homepage-audio__text p {
    margin-bottom: 4px;
  }
  @media (max-width: 1024px) {
    .hero-homepage-audio__text p {
      margin-bottom: 3px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-audio__text p {
      margin-bottom: 1.5px;
    }
  }
  .hero-homepage-audio__text p:last-child {
    margin-bottom: 0;
  }
  .hero-homepage-audio__text p.xl {
    font-size: 27px;
    line-height: 19px;
  }
  @media (max-width: 1024px) {
    .hero-homepage-audio__text p.xl {
      font-size: 19px;
      line-height: 14px;
    }
  }
  @media (max-width: 576px) {
    .hero-homepage-audio__text p.xl {
      font-size: 10px;
      line-height: 7px;
    }
  }
  
  .reviews-section {
    padding-top: 33px;
    padding-bottom: 28px;
    background: linear-gradient(6deg, rgba(85, 215, 137, 0) 73.5%, rgba(85, 215, 137, 0.2) 90.63%);
  }
  @media (max-width: 1024px) {
    .reviews-section {
      padding-top: 26px;
      padding-bottom: 21px;
    }
  }
  @media (max-width: 700px) {
    .reviews-section {
      padding-top: 23px;
    }
  }
  @media (max-width: 576px) {
    .reviews-section {
      padding-bottom: 0;
      background: -webkit-gradient(linear, left bottom, left top, color-stop(80.9%, rgba(85, 215, 137, 0)), to(rgba(85, 215, 137, 0.17)));
      background: linear-gradient(0deg, rgba(85, 215, 137, 0) 80.9%, rgba(85, 215, 137, 0.17) 100%);
    }
  }
  .reviews-rating {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 8px;
  }
  @media (max-width: 576px) {
    .reviews-rating {
      margin-bottom: 12px;
    }
  }
  .reviews-rating-star {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reviews-rating-star .icon {
    width: inherit;
    height: inherit;
    fill: #424549;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .reviews-rating-star.highlight .icon {
    fill: #55D789;
  }
  @media (min-width: 577px) {
    .reviews-title br {
      display: none;
    }
  }
  @media (max-width: 576px) {
    .reviews-title {
      margin-bottom: 11px;
    }
  }
  @media (max-width: 450px) {
    .reviews-title {
      max-width: 300px;
      margin: 0 auto;
      margin-bottom: 11px;
    }
  }
  .reviews-subtitle {
    margin-bottom: 40px;
  }
  @media (max-width: 576px) {
    .reviews-subtitle {
      margin-bottom: 34px;
    }
  }
  @media (max-width: 450px) {
    .reviews-subtitle {
      max-width: 240px;
      margin: 0 auto;
      margin-bottom: 34px;
    }
  }
  .reviews__slider {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  @media (max-width: 1024px) {
    .reviews__slider {
      margin-bottom: 48px;
    }
  }
  @media (max-width: 576px) {
    .reviews__slider {
      margin-bottom: 30px;
    }
  }
  .reviews__slider .swiper-container {
    overflow: visible;
  }
  .reviews-slide {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-column-gap: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .reviews-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
  }
  @media (max-width: 1024px) {
    .reviews-slide {
      grid-column-gap: 30px;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      height: auto;
    }
  }
  .reviews-slide__saved {
    width: 100%;
    max-width: 410px;
    min-width: 410px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media (max-width: 1024px) {
    .reviews-slide__saved {
      max-width: 278px;
      min-width: 278px;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide__saved {
      max-width: 400px;
      min-width: auto;
      margin-bottom: 45px;
    }
  }
  .reviews-slide__saved-photo {
    width: 100%;
    position: relative;
    aspect-ratio: 1.57692308/1;
  }
  @media (max-width: 1024px) {
    .reviews-slide__saved-photo {
      aspect-ratio: 1.06923077/1;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide__saved-photo {
      aspect-ratio: 1.25475285/1;
    }
  }
  .reviews-slide__saved-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  .reviews-slide__saved-textwrap {
    min-height: 47px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    padding: 10px 17px;
    width: 100%;
    -webkit-box-shadow: 0px 14.02px 30.08px rgba(52, 60, 71, 0.15);
            box-shadow: 0px 14.02px 30.08px rgba(52, 60, 71, 0.15);
  }
  @media (max-width: 1024px) {
    .reviews-slide__saved-textwrap {
      min-height: 60px;
      padding: 10px;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide__saved-textwrap {
      min-height: 47px;
      padding: 10px 17px;
    }
  }
  .reviews-slide__saved-text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #55D789;
  }
  @media (min-width: 1025px) {
    .reviews-slide__saved-text br {
      display: none;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide__saved-text br {
      display: none;
    }
  }
  .reviews-slide__info {
    width: 100%;
    max-width: 492px;
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  @media (max-width: 1024px) {
    .reviews-slide__info {
      padding: 0;
    }
  }
  @media (max-width: 700px) {
    .reviews-slide__info {
      max-width: none;
      height: 100%;
      width: calc(100% + 4px);
      margin-left: -2px;
    }
  }
  @media (max-width: 375px) {
    .reviews-slide__info {
      width: 100%;
      margin: 0;
    }
  }
  .reviews-text {
    width: 100%;
    position: relative;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #424549;
    margin-bottom: 24px;
  }
  @media (max-width: 1024px) {
    .reviews-text {
      max-width: 330px;
    }
  }
  @media (max-width: 700px) {
    .reviews-text {
      max-width: none;
    }
  }
  @media (max-width: 576px) {
    .reviews-text {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 70px;
    }
  }
  .reviews-userrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: auto;
    width: 100%;
    padding-right: 130px;
  }
  @media (max-width: 1024px) {
    .reviews-userrow {
      padding-right: 100px;
    }
  }
  @media (max-width: 700px) {
    .reviews-userrow {
      padding-right: 0;
    }
  }
  .reviews-user__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-right: 12px;
  }
  @media (max-width: 576px) {
    .reviews-user__icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      margin-right: 16px;
    }
  }
  .reviews-user__icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .reviews-user__data {
    position: relative;
  }
  .reviews-user__name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    color: #27292c;
    margin-bottom: 3px;
  }
  @media (max-width: 576px) {
    .reviews-user__name {
      font-size: 16px;
      line-height: 21px;
      margin-bottom: 9px;
    }
  }
  .reviews-user__status {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #424549;
  }
  @media (max-width: 576px) {
    .reviews-user__status {
      font-size: 14px;
      line-height: 18px;
    }
  }
  .reviews-footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reviews-footer__email-subscribe {
    max-width: 631px;
    width: 100%;
  }
  @media screen and (max-width: 1024px) {
    .reviews-footer__email-subscribe {
      max-width: 100%;
    }
  }
  .reviews-btn {
    margin-bottom: 6px;
  }
  @media (max-width: 1024px) {
    .reviews-btn {
      margin-bottom: 8px;
    }
  }
  .reviews-notif {
    color: #424549;
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  
  .await-section {
    padding-top: 34px;
    padding-bottom: 12px;
    position: relative;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#E0F8E9));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #E0F8E9 100%);
  }
  @media (max-width: 1024px) {
    .await-section {
      padding-top: 21px;
      padding-bottom: 30px;
    }
  }
  @media (max-width: 576px) {
    .await-section {
      padding-top: 37px;
      padding-bottom: 16px;
    }
  }
  .await-section::after {
    position: absolute;
    bottom: 44px;
    left: -229px;
    z-index: -1;
    content: "";
    border-radius: 50%;
    background: linear-gradient(5deg, #FBFEFF 0%, #FCFEFF 100%);
    width: 500px;
    height: 500px;
    opacity: 0.5;
  }
  @media (max-width: 1024px) {
    .await-section::after {
      display: none;
    }
  }
  .await-title {
    margin-bottom: 4px;
  }
  .await-subtitle {
    margin-bottom: 26px;
  }
  @media (max-width: 1024px) {
    .await-subtitle {
      margin-bottom: 28px;
    }
  }
  @media (max-width: 450px) {
    .await-subtitle {
      max-width: 260px;
      margin: 0 auto;
      margin-bottom: 29px;
    }
  }
  .await-list {
    width: calc(100% + 24px);
    margin-inline: -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  @media (max-width: 1024px) {
    .await-list {
      width: calc(100% + 36px);
      margin-inline: -18px;
    }
  }
  @media (max-width: 700px) {
    .await-list {
      width: calc(100% + 24px);
      margin-inline: -12px;
    }
  }
  @media (max-width: 576px) {
    .await-list {
      width: calc(100% + 20px);
      margin-inline: -10px;
      margin-bottom: 20px;
    }
  }
  .await-card-wrap {
    width: 33.3333333333%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 12px;
    margin-bottom: 24px;
  }
  @media (max-width: 1024px) {
    .await-card-wrap {
      width: 50%;
      padding-inline: 18px;
    }
  }
  @media (max-width: 700px) {
    .await-card-wrap {
      padding-inline: 12px;
    }
  }
  @media (max-width: 576px) {
    .await-card-wrap {
      width: 100%;
      padding-inline: 10px;
      margin-bottom: 24px;
    }
    .await-card-wrap:last-child {
      margin-bottom: 0;
    }
  }
  .await-card {
    width: 100%;
    height: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0px 10.4689998627px 31.3500003815px 0px rgba(52, 60, 71, 0.11);
            box-shadow: 0px 10.4689998627px 31.3500003815px 0px rgba(52, 60, 71, 0.11);
    padding: 21px 18.5px 17px;
    min-height: 214px;
  }
  @media (max-width: 576px) {
    .await-card {
      padding: 21px 25px 17px;
    }
  }
  .await-card__name {
    color: #27292c;
    text-align: center;
    font-size: 20px;
    font-family: "Montserrat";
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 5px;
  }
  .await-card__name.smaller {
    font-size: 18px;
  }
  .await-card__description {
    color: #424549;
    text-align: center;
    font-size: 14px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
  }
  @media (max-width: 1024px) {
    .await-card__description br {
      display: none;
    }
  }
  .await-card__icon {
    width: 74px;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 14px;
    background-color: #55D789;
  }
  .await-card__icon.await-hotels {
    -webkit-mask: url("../../assets/svg/await-hotels.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-hotels.svg") 0 0/contain no-repeat;
  }
  .await-card__icon.await-savings {
    -webkit-mask: url("../../assets/svg/await-savings.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-savings.svg") 0 0/contain no-repeat;
  }
  .await-card__icon.await-support {
    -webkit-mask: url("../../assets/svg/await-support.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-support.svg") 0 0/contain no-repeat;
  }
  .await-card__icon.await-pricing {
    -webkit-mask: url("../../assets/svg/await-pricing.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-pricing.svg") 0 0/contain no-repeat;
  }
  .await-card__icon.await-credits {
    -webkit-mask: url("../../assets/svg/await-credits.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-credits.svg") 0 0/contain no-repeat;
  }
  .await-card__icon.await-passes {
    -webkit-mask: url("../../assets/svg/await-passes.svg") 0 0/contain no-repeat;
            mask: url("../../assets/svg/await-passes.svg") 0 0/contain no-repeat;
  }
  .await-reviews {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .await-reviews__holder {
    color: #27292c;
    text-align: center;
    font-size: 14px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
  }
  .await-reviews__photo {
    width: 100%;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    max-width: 116px;
  }
  .await-reviews__photo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  
  .stories-section {
    padding-top: 40px;
    padding-bottom: 28px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(70.26%, #FFFFFF), to(#DFF8E9));
    background: linear-gradient(0deg, #FFFFFF 70.26%, #DFF8E9 100%);
  }
  @media (max-width: 1024px) {
    .stories-section {
      padding-top: 6px;
      padding-bottom: 13px;
      background: -webkit-gradient(linear, left bottom, left top, color-stop(79.23%, #FFFFFF), to(#E0F6E9));
      background: linear-gradient(0deg, #FFFFFF 79.23%, #E0F6E9 100%);
    }
  }
  @media (max-width: 576px) {
    .stories-section {
      padding-top: 28px;
      padding-bottom: 20px;
      background: -webkit-gradient(linear, left bottom, left top, color-stop(80.79%, #FFFFFF), to(#E3F8EC));
      background: linear-gradient(0deg, #FFFFFF 80.79%, #E3F8EC 100%);
    }
  }
  @media (max-width: 576px) {
    .stories-title {
      margin-bottom: 8px;
    }
  }
  .stories-subtitle {
    margin-bottom: 30px;
  }
  @media (max-width: 1024px) {
    .stories-subtitle {
      margin-bottom: 40px;
    }
  }
  @media (max-width: 576px) {
    .stories-subtitle {
      width: calc(100% + 14px);
      margin-left: -7px;
      margin-bottom: 34px;
    }
  }
  .stories-slider {
    width: 100%;
    position: relative;
  }
  @media (max-width: 1120px) {
    .stories-slider {
      max-width: 840px;
      margin: 0 auto;
    }
  }
  @media (max-width: 1024px) {
    .stories-slider {
      max-width: 215px;
    }
  }
  @media (max-width: 576px) {
    .stories-slider {
      max-width: 215px;
      margin-bottom: 36px;
    }
  }
  .stories-slider .global-slider-btns {
    bottom: unset;
    right: unset;
    top: 50%;
    left: 50%;
    position: absolute;
    margin-top: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transform: translate(-50%, -90%);
            transform: translate(-50%, -90%);
    width: calc(100% + 150px);
  }
  @media (max-width: 1200px) {
    .stories-slider .global-slider-btns {
      width: calc(100% + 110px);
    }
  }
  @media (max-width: 1024px) {
    .stories-slider .global-slider-btns {
      width: calc(100% + 444px);
    }
  }
  @media (max-width: 750px) {
    .stories-slider .global-slider-btns {
      width: calc(100% + 140px);
    }
  }
  @media (max-width: 576px) {
    .stories-slider .global-slider-btns {
      width: calc(100% + 112px);
      -webkit-transform: translate(-50%, -85%);
              transform: translate(-50%, -85%);
    }
  }
  @media (max-width: 360px) {
    .stories-slider .global-slider-btns {
      width: calc(100% + 100px);
    }
  }
  @media (max-width: 350px) {
    .stories-slider .global-slider-btns {
      width: 100%;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 36px;
      position: relative;
      top: unset;
      left: unset;
      -webkit-transform: none;
              transform: none;
    }
  }
  @media (max-width: 576px) {
    .stories-slider .global-slider-btn {
      width: 46px;
      height: 46px;
    }
  }
  .stories-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1 !important;
    padding-right: 6px;
  }
  @media (min-width: 1025px) {
    .stories-card {
      max-width: 215px;
      margin-right: 30px;
    }
  }
  .stories-card img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
    z-index: 2 !important;
    position: relative;
  }
  .stories-card__videobox {
    overflow: hidden;
    position: relative;
    z-index: 1 !important;
    cursor: pointer;
  }
  .stories-card__video {
    width: 94%;
    height: 98%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1 !important;
    top: 1%;
    left: 3%;
    z-index: 0;
    border-radius: 10%;
    pointer-events: none;
  }
  .stories-card__flag {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 2 !important;
    max-width: calc(100% - 6px);
  }
  .stories-card__flag::after {
    width: 9px;
    height: 9px;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    content: "";
    background: #BDDCE3;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0%);
            clip-path: polygon(0 0, 0 100%, 100% 0%);
    position: absolute;
    z-index: 2 !important;
    display: block;
  }
  .stories-card__name {
    color: #000;
    position: relative;
    z-index: 2 !important;
    text-align: center;
    font-size: 18px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    padding: 4px 20px;
    padding-left: 26px;
    background: #DCFFEC;
    -webkit-clip-path: polygon(100% 50%, 100% 100%, 0 100%, 11px 50%, 0 0%, 100% 0);
            clip-path: polygon(100% 50%, 100% 100%, 0 100%, 11px 50%, 0 0%, 100% 0);
  }
  .stories-footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stories-btn {
    margin-bottom: 6px;
  }
  @media (max-width: 1024px) {
    .stories-btn {
      margin-bottom: 8px;
    }
  }
  .stories-notif {
    color: #424549;
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  
  .benefits-section {
    padding-top: 38px;
    padding-bottom: 25px;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#DFF7E9));
    background: linear-gradient(180deg, #FFFFFF 0%, #DFF7E9 100%);
  }
  @media screen and (max-width: 576px) {
    .benefits-section {
      padding-top: 2px;
      padding-bottom: 32px;
    }
  }
  .benefits-title {
    margin-bottom: 4px;
  }
  @media screen and (max-width: 576px) {
    .benefits-title {
      margin-bottom: 12px;
    }
  }
  .benefits-subtitle {
    margin-bottom: 35px;
  }
  @media screen and (max-width: 576px) {
    .benefits-subtitle {
      max-width: 241px;
      margin: 0 auto 24px;
    }
  }
  .benefits-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + 24px);
    margin-inline: -12px;
  }
  @media screen and (max-width: 576px) {
    .benefits-row {
      width: calc(100% + 32px);
      margin-inline: -16px;
      row-gap: 35px;
    }
  }
  .benefits-col {
    padding-inline: 12px;
  }
  @media screen and (max-width: 576px) {
    .benefits-col {
      padding-inline: 16px;
    }
  }
  .benefits-col.card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
    width: 26%;
  }
  @media screen and (max-width: 1024px) {
    .benefits-col.card {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 37%;
              flex: 0 0 37%;
      width: 37%;
    }
  }
  @media screen and (max-width: 576px) {
    .benefits-col.card {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  .benefits-col.logos {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37%;
            flex: 0 0 37%;
    width: 37%;
  }
  @media screen and (max-width: 1024px) {
    .benefits-col.logos {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 31.5%;
              flex: 0 0 31.5%;
      width: 31.5%;
    }
  }
  @media screen and (max-width: 576px) {
    .benefits-col.logos {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  .benefits-logos {
    display: grid;
    grid-template-columns: repeat(2, auto);
    width: 100%;
    height: 100%;
    row-gap: 22px;
  }
  @media screen and (max-width: 1024px) {
    .benefits-logos {
      grid-template-columns: repeat(1, auto);
      row-gap: 0;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logos {
      row-gap: 23px;
    }
  }
  .benefits-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .benefits-logo.four-seasons, .benefits-logo.best-western {
      display: none;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.crowne-plaza, .benefits-logo.hyatt {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.marriott, .benefits-logo.hilton-worldwide {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.stregis, .benefits-logo.wyndham {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .benefits-logo.four-seasons, .benefits-logo.best-western {
      display: none;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.crowne-plaza, .benefits-logo.hyatt {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.marriott, .benefits-logo.hilton-worldwide {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  @media screen and (max-width: 1024px) {
    .benefits-logo.stregis, .benefits-logo.wyndham {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
  .benefits-logo__img {
    max-width: 148px;
    max-height: 74px;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .benefits-logo__img {
      max-width: 136px;
      max-height: 39px;
    }
  }
  .benefits-card {
    width: 100%;
    height: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 29px 20px 24px;
    min-height: 155px;
    -webkit-box-shadow: 0px 10.4689998627px 31.3500003815px 0px rgba(52, 60, 71, 0.11);
            box-shadow: 0px 10.4689998627px 31.3500003815px 0px rgba(52, 60, 71, 0.11);
  }
  @media screen and (max-width: 576px) {
    .benefits-card {
      max-width: 219px;
      margin: 0 auto;
    }
  }
  .benefits-card__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .benefits-card__icon img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .benefits-card__name {
    color: #27292C;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
  }
  
  .explore-section {
    padding-top: 30px;
    padding-bottom: 84px;
    position: relative;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60.47%, #FFF), to(#DFF7E9));
    background: linear-gradient(0deg, #FFF 60.47%, #DFF7E9 100%);
  }
  @media screen and (max-width: 1024px) {
    .explore-section {
      padding-top: 27px;
      padding-bottom: 81px;
    }
  }
  @media (max-width: 700px) {
    .explore-section {
      padding-top: 0;
      padding-bottom: 152px;
    }
  }
  @media screen and (max-width: 576px) {
    .explore-section {
      padding-bottom: 163px;
    }
  }
  .explore-section::after {
    position: absolute;
    content: "";
    background: url("../../assets/img/content/modules/free/homepage/explore-map.png") center -7px no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  @media screen and (max-width: 1024px) {
    .explore-section::after {
      background: url("../../assets/img/content/modules/free/homepage/explore-map.png") center 57px/900px 360px no-repeat;
    }
  }
  @media screen and (max-width: 576px) {
    .explore-section::after {
      background: url("../../assets/img/content/modules/free/homepage/explore-map.png") center 10px/600px 220px no-repeat;
    }
  }
  .explore-box {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0px 11.0200004578px 33px 0px rgba(52, 60, 71, 0.11);
            box-shadow: 0px 11.0200004578px 33px 0px rgba(52, 60, 71, 0.11);
    margin-bottom: 17px;
  }
  @media (max-width: 1024px) {
    .explore-box {
      margin-bottom: 24px;
    }
  }
  @media (max-width: 576px) {
    .explore-box {
      margin-bottom: 16px;
    }
  }
  .explore-description-bottom {
    color: #818181;
    text-align: center;
    font-size: 11px;
    font-family: "Montserrat";
    font-weight: 500;
    line-height: 12.6px;
    max-width: 390px;
    margin: 0 auto;
  }
  @media screen and (max-width: 1024px) {
    .explore-description-bottom {
      max-width: 383px;
    }
  }
  @media (max-width: 576px) {
    .explore-description-bottom br {
      display: none;
    }
  }
  .explore-description-bottom .tablet {
    display: none;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .explore-description-bottom .tablet {
      display: block;
    }
  }
  @media (max-width: 576px) {
    .explore-description-bottom {
      max-width: 304px;
    }
  }
  .explore-header {
    width: 100%;
    position: relative;
    min-height: 58px;
    padding: 5px 27px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #55D789;
  }
  @media (max-width: 1024px) {
    .explore-header {
      font-size: 18px;
      line-height: 23px;
      min-height: 48px;
      padding: 5px 15px;
    }
  }
  @media (max-width: 576px) {
    .explore-header {
      font-size: 15px;
      line-height: 20px;
      min-height: 45px;
      padding: 7px 10px;
    }
  }
  .explore-slider {
    height: 390px;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
  }
  .explore-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
  }
  @media (max-width: 1024px) {
    .explore-slider {
      height: 324px;
    }
  }
  @media (max-width: 576px) {
    .explore-slider {
      height: 144px;
    }
  }
  .explore-slide {
    overflow: hidden;
    height: 97.5px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 27px;
    position: relative;
  }
  .explore-slide::after {
    width: calc(100% - 54px);
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 1px;
    content: "";
    position: absolute;
    background: #D6DADE;
  }
  @media (max-width: 1024px) {
    .explore-slide::after {
      width: calc(100% - 46px);
    }
  }
  @media (max-width: 576px) {
    .explore-slide::after {
      width: calc(100% - 20px);
    }
  }
  @media (max-width: 1024px) {
    .explore-slide {
      padding: 10px 23px;
      height: 81px !important;
    }
  }
  @media (max-width: 576px) {
    .explore-slide {
      padding: 7px 10px;
      height: 72px !important;
    }
  }
  .explore-slide__info {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .explore-slide__row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column-gap: 18px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (max-width: 576px) {
    .explore-slide__row {
      grid-column-gap: 15px;
    }
  }
  .explore-slide__user {
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    background: #55D789;
    border-radius: 50%;
    overflow: hidden;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    min-width: 54px;
    text-transform: uppercase;
    margin-right: 22px;
  }
  @media (max-width: 1024px) {
    .explore-slide__user {
      width: 44px;
      height: 44px;
      margin-right: 18px;
      min-width: 44px;
      font-size: 14px;
      line-height: 14px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__user {
      width: 35px;
      height: 35px;
      margin-right: 8px;
      min-width: 35px;
      font-size: 11px;
      line-height: 11px;
    }
  }
  .explore-slide__user img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .explore-slide__userinfo {
    width: 100%;
    max-width: 500px;
  }
  @media (max-width: 1024px) {
    .explore-slide__userinfo {
      max-width: 420px;
    }
  }
  @media (max-width: 700px) {
    .explore-slide__userinfo {
      max-width: 280px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__userinfo {
      max-width: 160px;
    }
  }
  @media (max-width: 370px) {
    .explore-slide__userinfo {
      max-width: 120px;
    }
  }
  .explore-slide__username {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18.7px;
    line-height: 24px;
    color: #27292c;
    margin-bottom: 4.5px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  @media (max-width: 1024px) {
    .explore-slide__username {
      font-size: 15px;
      margin-bottom: 4px;
      line-height: 20px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__username {
      font-size: 12px;
      margin-bottom: 2px;
      line-height: 15px;
    }
  }
  .explore-slide__userdescription {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #424848;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  @media (max-width: 1024px) {
    .explore-slide__userdescription {
      font-size: 12px;
      line-height: 14px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__userdescription {
      font-size: 10px;
    }
  }
  .explore-slide__save {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 18.7px;
    line-height: 24px;
    text-align: right;
    background: #55D789;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 3px;
  }
  .explore-slide__save span {
    margin-right: 4px;
  }
  .explore-slide__save span:last-child {
    margin-right: 0;
  }
  @media (max-width: 1024px) {
    .explore-slide__save {
      font-size: 15px;
      line-height: 20px;
      margin-bottom: 0;
      margin-bottom: 2px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__save {
      font-size: 12px;
      margin-bottom: 0;
      line-height: 19px;
    }
  }
  .explore-slide__date {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #424848;
  }
  @media (max-width: 1024px) {
    .explore-slide__date {
      font-size: 12px;
    }
  }
  @media (max-width: 576px) {
    .explore-slide__date {
      font-size: 10px;
      line-height: 13px;
    }
  }
  
  .claim-section {
    padding-top: 65px;
    padding-bottom: 53px;
    background: #55D789;
    position: relative;
    z-index: 2;
  }
  @media screen and (max-width: 1024px) {
    .claim-section {
      padding-top: 45px;
      padding-bottom: 39px;
    }
  }
  @media (max-width: 700px) {
    .claim-section {
      padding-top: 132px;
      padding-bottom: 30px;
    }
  }
  .claim-section::before {
    width: 419px;
    height: 419px;
    border-radius: 50%;
    background: linear-gradient(318.79deg, rgba(255, 255, 255, 0.47) -6.42%, #55D789 68.63%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transform: translate(-268px, -176px);
            transform: translate(-268px, -176px);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 176px, 0 176px);
            clip-path: polygon(0 100%, 100% 100%, 100% 176px, 0 176px);
    z-index: -1;
  }
  @media (max-width: 1024px) {
    .claim-section::before {
      display: none;
    }
  }
  .claim-section::after {
    width: 419px;
    height: 419px;
    border-radius: 50%;
    background: linear-gradient(4.81deg, rgba(255, 255, 255, 0.47) 9.66%, #55D789 89.56%);
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    -webkit-transform: translate(213px, 212px);
            transform: translate(213px, 212px);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 207px, 0 207px);
            clip-path: polygon(0 0, 100% 0, 100% 207px, 0 207px);
    z-index: -1;
  }
  @media (max-width: 1024px) {
    .claim-section::after {
      display: none;
    }
  }
  .claim-banner {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-column-gap: 30px;
  }
  @media (max-width: 1024px) {
    .claim-banner {
      grid-column-gap: 15px;
    }
  }
  @media (max-width: 700px) {
    .claim-banner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      position: static;
    }
  }
  .claim-banner__photo {
    width: 100%;
    max-width: 437px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: -80px;
    top: -105px;
  }
  @media (max-width: 1150px) {
    .claim-banner__photo {
      position: relative;
      top: unset;
      right: unset;
      max-width: 380px;
    }
  }
  @media (max-width: 1024px) {
    .claim-banner__photo {
      max-width: 293px;
      margin-right: -20px;
      margin-top: -205px;
    }
  }
  @media (max-width: 700px) {
    .claim-banner__photo {
      width: calc(100% - 40px);
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-125px);
              transform: translateX(-50%) translateY(-125px);
      top: 0;
      max-width: 307px;
      margin: 0;
    }
  }
  @media (max-width: 340px) {
    .claim-banner__photo {
      -webkit-transform: translateX(-50%) translateY(-110px);
              transform: translateX(-50%) translateY(-110px);
    }
  }
  @media (max-width: 320px) {
    .claim-banner__photo {
      -webkit-transform: translateX(-50%) translateY(-100px);
              transform: translateX(-50%) translateY(-100px);
    }
  }
  @media (max-width: 300px) {
    .claim-banner__photo {
      -webkit-transform: translateX(-50%) translateY(-80px);
              transform: translateX(-50%) translateY(-80px);
    }
  }
  .claim-banner__photo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .claim-banner__info {
    width: 100%;
    max-width: calc(100% - 400px);
    position: relative;
  }
  @media (max-width: 1024px) {
    .claim-banner__info {
      max-width: 336px;
      min-width: 336px;
    }
  }
  @media (max-width: 700px) {
    .claim-banner__info {
      max-width: none;
      min-width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  .claim-banner-title {
    font-size: 34px;
    font-family: "Montserrat";
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 13px;
  }
  @media (max-width: 1024px) {
    .claim-banner-title {
      margin-bottom: 10px;
      font-size: 28px;
      font-weight: 700;
      line-height: 43px;
      letter-spacing: -3px;
    }
  }
  @media (max-width: 700px) {
    .claim-banner-title {
      font-weight: 600;
      text-align: center;
      letter-spacing: 0;
    }
  }
  @media (max-width: 576px) {
    .claim-banner-title {
      font-size: 28px;
      line-height: 28px;
      margin-bottom: 11px;
    }
  }
  .claim-banner__subtitle {
    font-size: 17px;
    font-family: "Montserrat";
    font-weight: 500;
    line-height: 21px;
    color: #fff;
    margin-bottom: 39px;
    max-width: 539px;
  }
  @media (max-width: 1024px) {
    .claim-banner__subtitle {
      margin-bottom: 37px;
      max-width: 280px;
      font-size: 16px;
    }
  }
  @media (max-width: 700px) {
    .claim-banner__subtitle {
      text-align: center;
      max-width: 370px;
    }
  }
  @media (max-width: 576px) {
    .claim-banner__subtitle {
      font-size: 14px;
      line-height: 19px;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 1024px) {
    .claim-banner__subtitle br {
      display: none;
    }
  }
  .claim-banner__btn {
    background: #fff;
    color: #3AD1F2;
    border-color: #fff;
    min-width: 100%;
    margin-bottom: 6px;
  }
  @media (max-width: 1024px) {
    .claim-banner__btn {
      min-width: auto !important;
      width: 100%;
      max-width: 256px;
    }
  }
  .claim-banner__btn .arrow::before {
    opacity: 1;
  }
  .claim-banner__btn .arrow::after {
    opacity: 0;
  }
  @media (min-width: 1025px) {
    .claim-banner__btn:hover {
      background: #3AD1F2;
      color: #fff;
      border-color: #fff;
    }
    .claim-banner__btn:hover .arrow::after {
      opacity: 1;
    }
    .claim-banner__btn:hover .arrow::before {
      opacity: 0;
    }
  }
  .claim-banner__email-subscribe {
    max-width: 542px;
  }
  @media screen and (max-width: 1024px) {
    .claim-banner__email-subscribe {
      max-width: initial;
      width: 158%;
    }
  }
  @media screen and (max-width: 700px) {
    .claim-banner__email-subscribe {
      max-width: initial;
      width: 100%;
    }
  }
  .claim-banner__email-subscribe .email-subscribe__field {
    border-color: transparent;
  }
  @media screen and (max-width: 650px) {
    .claim-banner__email-subscribe .email-subscribe__input {
      color: #fff;
      font-weight: 500;
    }
    .claim-banner__email-subscribe .email-subscribe__input::-webkit-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .claim-banner__email-subscribe .email-subscribe__input::-moz-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .claim-banner__email-subscribe .email-subscribe__input:-ms-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .claim-banner__email-subscribe .email-subscribe__input::-ms-input-placeholder {
      color: #fff;
      font-weight: 500;
    }
    .claim-banner__email-subscribe .email-subscribe__input::placeholder {
      color: #fff;
      font-weight: 500;
    }
  }
  .claim-banner__email-subscribe .email-subscribe__message {
    text-align: start;
    color: #fff;
    font-weight: 600;
  }
  @media screen and (max-width: 700px) {
    .claim-banner__email-subscribe .email-subscribe__message {
      text-align: center;
    }
  }
  @media screen and (max-width: 650px) {
    .claim-banner__email-subscribe .email-subscribe__submit-btn {
      background-color: #fff;
      color: #55D789;
      border-color: #fff;
    }
    .claim-banner__email-subscribe .email-subscribe__submit-btn .arrow:before {
      opacity: 1;
    }
    .claim-banner__email-subscribe .email-subscribe__submit-btn .arrow:after {
      opacity: 0;
    }
  }
  .claim-banner__notif {
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    text-align: center;
  }
  @media (max-width: 1024px) {
    .claim-banner__notif {
      text-align: left;
    }
  }
  @media (max-width: 700px) {
    .claim-banner__notif {
      text-align: center;
    }
  }
  
  .auth-page {
    width: 100%;
    min-height: 100vh;
    background: #fff;
  }
  @media screen and (max-width: 576px) {
    .auth-page {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  @media (min-width: 1025px) {
    .auth-page .form__input-hidden-btn:hover .icon {
      fill: #55D789;
    }
  }
  .auth-page .form__primary-btn {
    color: #3da6b0;
  }
  @media (min-width: 1025px) {
    .auth-page .form__primary-btn:hover {
      border-color: #3da6b0;
    }
  }
  @media (max-width: 1024px) {
    .auth-page .form__row {
      max-width: 383px;
    }
  }
  @media (max-width: 576px) {
    .auth-page .form__row {
      max-width: none;
    }
  }
  .auth-page .form__input {
    height: 44px;
    font-size: 13px;
    line-height: 13px;
    padding: 7px 14px;
  }
  .auth-page .form__field-name {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  .auth-page .form__col--flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .auth-page .form__error {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
  }
  @media (max-width: 576px) {
    .auth-page .form__recaptcha {
      max-width: 232px;
      overflow: hidden;
    }
    .auth-page .form__recaptcha * {
      max-width: 232px !important;
    }
  }
  .auth-page .form__submit {
    min-height: 44px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 5px;
  }
  .auth-page .header-lang-dropbox {
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .auth-page .header-lang__dropdown {
    right: unset;
    left: 0;
  }
  .auth-page .header-lang__trigger .header-lang__icon .icon {
    width: 17px;
    min-width: 17px;
    height: 17px;
    stroke: #7b8086;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media (max-width: 1024px) {
    .auth-page .header-lang__trigger .header-lang__icon .icon {
      stroke: #fff;
    }
  }
  .auth-page .header-lang__trigger .header-lang__value {
    font-size: 11px;
    line-height: 14px;
    text-align: right;
    letter-spacing: 0.78125px;
    text-transform: uppercase;
    color: #7b8086;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  @media (max-width: 1024px) {
    .auth-page .header-lang__trigger .header-lang__value {
      color: #fff;
    }
  }
  @media (min-width: 1025px) {
    .auth-page .header-lang__trigger:hover .header-lang__icon .icon {
      stroke: #55D789;
    }
    .auth-page .header-lang__trigger:hover .header-lang__value {
      color: #55D789;
    }
  }
  .auth-page .header-lang__trigger.active .header-lang__icon .icon {
    stroke: #55D789;
  }
  .auth-page .header-lang__trigger.active .header-lang__value {
    color: #55D789;
  }
  .auth-page .header-lang__dropdown {
    z-index: 100;
  }
  @media (min-width: 577px) and (max-width: 1024px) {
    .auth-page .header-lang__dropdown {
      bottom: -15px;
    }
  }
  .auth-page .header-secure {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #7b8086;
    margin-bottom: 0;
    margin-right: 0;
  }
  @media (max-width: 1024px) {
    .auth-page .header-secure {
      color: #fff;
    }
  }
  .auth-page .header-secure .icon {
    stroke: #7b8086;
    fill: transparent;
  }
  @media (max-width: 1024px) {
    .auth-page .header-secure .icon {
      fill: transparent;
      stroke: #fff;
    }
  }
  .auth-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__row {
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      height: auto;
      min-height: 100vh;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
    }
  }
  .auth-page__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
    position: relative;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__col {
      min-height: auto;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media (max-width: 1024px) {
    .auth-page__col.auth-page__col-static {
      position: static;
      min-height: calc(100vh - 200px);
    }
  }
  .auth-page__header {
    padding-top: 30px;
    padding-inline: 30px;
    padding-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__header {
      padding-top: 10px;
      padding-bottom: 10px;
      background: rgba(51, 51, 51, 0.2);
      min-height: 48px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
    }
    .auth-page__header::before {
      width: 100%;
      height: 100%;
      z-index: -1;
      top: 0;
      left: 0;
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      content: "";
      position: absolute;
    }
  }
  @media (max-width: 375px) {
    .auth-page__header {
      padding-inline: 20px;
    }
  }
  .auth-page__header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .auth-page__header-col {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .auth-page__head {
    margin-bottom: 16px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (max-width: 1024px) {
    .auth-page__head {
      max-width: 359px;
    }
  }
  .auth-page__content-wrapp {
    position: relative;
  }
  @media (max-width: 1024px) {
    .auth-page__content-wrapp {
      width: 100%;
      background: #F7F8FB;
      border-radius: 12px;
      padding: 44px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 40px auto;
      max-width: 668px;
    }
  }
  @media (max-width: 576px) {
    .auth-page__content-wrapp {
      margin-top: 32px;
      margin-bottom: 24px;
      padding: 31px 25px;
    }
  }
  .auth-page__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 30px;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__content {
      min-height: unset;
      padding-block: 40px 50px;
      padding-top: 0;
    }
  }
  @media screen and (max-width: 576px) {
    .auth-page__content {
      padding-inline: 30px;
      padding-block: 34px;
      padding-top: 0;
    }
  }
  @media screen and (max-width: 375px) {
    .auth-page__content {
      padding-inline: 20px;
      padding-block: 65px;
      padding-top: 0;
    }
  }
  .auth-page__hideheading, .auth-page__hidefooter {
    display: none;
  }
  @media (max-width: 1024px) {
    .auth-page__hideheading, .auth-page__hidefooter {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: 668px;
      width: 100%;
      margin: 0 auto;
    }
  }
  @media (max-width: 576px) {
    .auth-page__hideheading, .auth-page__hidefooter {
      width: calc(100% + 4px);
      margin-left: -2px;
    }
  }
  @media (max-width: 576px) {
    .auth-page__hidefooter {
      width: 100%;
      padding: 0 10px;
    }
  }
  .auth-page__hidefooter .auth-page__welcome-content {
    font-size: 14px;
    line-height: 21px;
    max-width: 510px;
  }
  .auth-page__hidefooter .auth-page__welcome-content a {
    font-weight: 500;
  }
  .auth-page__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media screen and (max-width: 576px) {
    .auth-page__body {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .auth-page__body .form {
    margin-bottom: 63px;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__body .form {
      margin-bottom: 0;
    }
  }
  .auth-page__body .form__field--checkbox {
    padding-block: 6px;
  }
  .auth-page__body .form__input {
    border-radius: 6px;
  }
  @media (max-width: 1024px) {
    .auth-page__body .form__input {
      background: transparent;
    }
  }
  .auth-page__body .form__input-wrap {
    margin-bottom: 3px;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__body .form__password-rules {
      margin-bottom: 4px;
    }
  }
  @media screen and (max-width: 576px) {
    .auth-page__body .form__question {
      margin-top: 6px;
    }
  }
  .auth-page__container {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  @media (max-width: 1024px) {
    .auth-page__container {
      max-width: 668px;
    }
  }
  @media screen and (max-width: 576px) {
    .auth-page__container {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .auth-page__logo {
    display: block;
    max-width: 182px;
    width: 100%;
  }
  @media screen and (max-width: 576px) {
    .auth-page__logo {
      margin: 0 auto;
      max-width: 151px;
    }
  }
  .auth-page__logo__img {
    width: 100%;
  }
  .auth-page__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    text-transform: capitalize;
    color: #304659;
  }
  @media screen and (max-width: 576px) {
    .auth-page__title {
      margin-bottom: 4px;
    }
  }
  .auth-page__subtitle {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #304659;
  }
  @media screen and (max-width: 576px) {
    .auth-page__subtitle {
      margin-bottom: 32px;
    }
  }
  .auth-page__picture {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
  .auth-page__picture__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__picture__img.pc {
      display: none;
    }
  }
  @media screen and (min-width: 1024.9px) {
    .auth-page__picture__img.mobile {
      display: none;
    }
  }
  .auth-page__footer {
    padding-bottom: 17px;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #475467;
    text-align: center;
  }
  .auth-page__footer a {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #475467;
    text-align: center;
  }
  @media (min-width: 1025px) {
    .auth-page__footer a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 1024px) {
    .auth-page__footer {
      padding-bottom: 20px;
    }
  }
  @media screen and (max-width: 576px) {
    .auth-page__footer {
      display: block;
      padding-bottom: 10px;
    }
    .auth-page__footer p {
      max-width: 225px;
      margin: 0 auto;
    }
  }
  .auth-page__welcome-box-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 30px;
    overflow-y: auto;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__welcome-box-wrap {
      padding: 55px 30px;
      margin-bottom: 0;
      min-height: 200px;
      max-height: 200px;
      padding: 20px;
    }
  }
  @media screen and (max-width: 374px) {
    .auth-page__welcome-box-wrap {
      padding: 30px 15px;
    }
  }
  .auth-page__welcome-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 33px;
    max-width: 444px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    border-radius: 16px;
  }
  @media (max-width: 1024px) {
    .auth-page__welcome-box {
      display: none;
    }
  }
  @media screen and (max-width: 576px) {
    .auth-page__welcome-box {
      padding: 30px 25px;
    }
  }
  .auth-page__welcome-title {
    margin-bottom: 23px;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #14475d;
  }
  @media (max-width: 1024px) {
    .auth-page__welcome-title {
      margin-bottom: 21px;
      max-width: 520px;
    }
  }
  @media (max-width: 576px) {
    .auth-page__welcome-title {
      margin-bottom: 16px;
    }
  }
  .auth-page__welcome-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #14475d;
  }
  @media screen and (max-width: 1024px) {
    .auth-page__welcome-content {
      font-size: 16px;
      line-height: 21px;
      max-width: 520px;
    }
  }
  .auth-page__welcome-content a {
    position: relative;
    color: #3da6b0;
    font-weight: 600;
    text-decoration: underline;
  }
  @media screen and (min-width: 1025px) {
    .auth-page__welcome-content a:hover {
      text-decoration: none;
    }
  }
  
  .error-page {
    background: linear-gradient(169deg, rgba(85, 215, 137, 0) 1.33%, rgba(85, 215, 137, 0.2) 100%);
  }
  .error-page .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .error-page .content::after {
    position: absolute;
    content: "";
    width: 636px;
    height: 636px;
    background: linear-gradient(5deg, #FBFEFF 0%, #FCFEFF 100%);
    border-radius: 50%;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-50%, 40%);
            transform: translate(-50%, 40%);
    z-index: -1;
  }
  @media (max-width: 1024px) {
    .error-page .content::after {
      width: 520px;
      height: 520px;
      -webkit-transform: translate(-415px, 133px);
              transform: translate(-415px, 133px);
    }
  }
  @media (max-width: 576px) {
    .error-page .content::after {
      display: none;
    }
  }
  .error-page-section {
    width: 100%;
    position: relative;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
    padding: 50px 30px;
  }
  @media (max-width: 576px) {
    .error-page-section {
      padding: 86px 30px;
    }
  }
  @media (max-width: 375px) {
    .error-page-section {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .error-page-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .error-page__icon {
    width: 100%;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 212px;
    line-height: 1;
    color: #CDDBD3;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 18px;
  }
  .error-page__icon img {
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 231px;
    -o-object-fit: contain;
       object-fit: contain;
    bottom: 0;
    pointer-events: none;
  }
  @media (max-width: 576px) {
    .error-page__icon {
      font-size: 168px;
      padding-bottom: 20px;
      margin-bottom: 22px;
    }
  }
  @media (max-width: 370px) {
    .error-page__icon {
      font-size: 140px;
    }
  }
  .error-page__icon.error-page-connect-icon {
    margin-bottom: 27px;
  }
  .error-page__icon.error-page-connect-icon img {
    position: relative;
    bottom: unset;
    left: unset;
    -webkit-transform: none;
            transform: none;
    max-width: 296px;
  }
  .error-page__title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 48px;
    text-align: center;
    color: #27292C;
    margin-bottom: 14px;
  }
  @media (max-width: 576px) {
    .error-page__title {
      font-size: 36px;
      line-height: 38px;
      margin-bottom: 20px;
    }
  }
  @media (max-width: 370px) {
    .error-page__title {
      font-size: 30px;
      line-height: 34px;
    }
  }
  .error-page__text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #7B8086;
    margin-bottom: 12px;
  }
  @media (max-width: 576px) {
    .error-page__text {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 6px;
    }
  }
  .error-page__colorlink {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #55D789;
  }
  
  .error-page-connect-page .error-page__icon {
    margin-bottom: 27px;
    padding-bottom: 0;
  }
  .error-page-connect-page .error-page__icon img {
    bottom: unset;
    left: unset;
    -webkit-transform: none;
            transform: none;
    position: relative;
    max-width: 296px;
  }
  .error-page-connect-page .error-page__title {
    margin-bottom: 23px;
  }
  @media (max-width: 576px) {
    .error-page-connect-page .error-page__title {
      margin-bottom: 26px;
    }
  }
  
  .member-register-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    min-height: calc(100vh - 100px);
    padding: 80px 30px 42px;
    position: relative;
  }
  @media screen and (max-width: 1024px) {
    .member-register-hero {
      min-height: calc(100vh - 76px);
      padding: 82px 30px 52px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-hero {
      padding: 61px 30px 51px;
    }
  }
  @media screen and (max-width: 375px) {
    .member-register-hero {
      padding: 61px 15px 51px;
    }
  }
  .member-register-hero .container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    z-index: 2;
  }
  .member-register-hero__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
  .member-register-hero__bg__img {
    display: none;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  @media screen and (min-width: 1025px) {
    .member-register-hero__bg__img.pc {
      display: block;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .member-register-hero__bg__img.tablet {
      display: block;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-hero__bg__img.mobile {
      display: block;
    }
  }
  .member-register-hero__uppertitle {
    margin-bottom: 6px;
    color: #27292C;
    text-align: center;
    font-family: "Playfair Display", sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 3px;
    text-transform: capitalize;
  }
  @media screen and (max-width: 1024px) {
    .member-register-hero__uppertitle {
      margin-bottom: 0;
      font-size: 15px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-hero__uppertitle {
      margin-bottom: 10px;
    }
  }
  .member-register-hero__title {
    margin: 0 auto 11px;
    color: #27292C;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    text-transform: capitalize;
  }
  @media screen and (max-width: 1024px) {
    .member-register-hero__title {
      margin-bottom: 14px;
      font-size: 32px;
    }
  }
  .member-register-hero__subtitle {
    max-width: 475px;
    margin: 0 auto;
    color: #27292C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  @media screen and (max-width: 1024px) {
    .member-register-hero__subtitle {
      margin-bottom: 46px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-hero__subtitle {
      margin-bottom: 26px;
    }
  }
  
  .member-register-form {
    padding-top: 41px;
    position: relative;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form {
      padding-top: 22px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form {
      padding-top: 47px;
    }
  }
  .member-register-form .form {
    padding: 26px 30px 26px;
    position: relative;
    background: linear-gradient(160deg, rgba(55, 46, 35, 0.8) 0%, rgba(74, 65, 51, 0.8) 100%);
    -webkit-backdrop-filter: blur(21px);
            backdrop-filter: blur(21px);
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form {
      padding: 21px 40px 28px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form {
      padding: 46px 20px 27px;
    }
  }
  .member-register-form .form__row {
    width: calc(100% + 14px);
    margin-inline: -7px;
    margin-bottom: 8px;
    row-gap: 14px;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__row {
      margin-bottom: 16px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__row {
      row-gap: 20px;
      margin-bottom: 20px;
    }
  }
  .member-register-form .form__col {
    margin: 0;
    padding: 0 7px;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-first-name {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__col.f-first-name {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-last-name {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__col.f-last-name {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-email {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__col.f-email {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-password {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__col.f-password {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4;
    }
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-confirmation-password {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form .form__col.f-confirmation-password {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5;
    }
  }
  @media screen and (max-width: 1024px) {
    .member-register-form .form__col.f-checkbox {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
    }
  }
  .member-register-form .form__field-name {
    margin-bottom: 6px;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .member-register-form .form__input {
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  }
  .member-register-form .form .password-hidden__field .form__input-hidden-btn .icon {
    fill: #fff;
  }
  .member-register-form .form .password-hidden__field .form__input-hidden-btn:hover .icon {
    fill: #55D789;
  }
  .member-register-form__card {
    width: 100%;
    max-width: 142px;
    position: absolute;
    top: 0;
    left: 33px;
    z-index: 3;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form__card {
      max-width: 112px;
      left: 25px;
    }
  }
  @media screen and (max-width: 576px) {
    .member-register-form__card {
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  .member-register-form__card__img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .member-register-form__title {
    margin: 0 auto 27px;
    color: #A5FBBD;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
    text-align: center;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form__title {
      margin: 0 auto 21px;
    }
  }
  .member-register-form__submit-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    padding-top: 25px;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form__submit-box {
      padding-top: 7px;
    }
  }
  @media screen and (max-width: 425px) {
    .member-register-form__submit-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 28px;
    }
  }
  .member-register-form__submit-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
  }
  @media screen and (max-width: 1024px) {
    .member-register-form__submit-checkbox {
      max-width: 280px;
    }
  }
  @media screen and (max-width: 425px) {
    .member-register-form__submit-checkbox {
      max-width: 100%;
    }
  }
  .member-register-form__submit-checkbox a {
    color: #55D789;
  }
  .member-register-form__submit-checkbox a:hover {
    text-decoration: underline;
  }
  .member-register-form__submit-checkbox .checkbox {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .member-register-form__submit-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 103px;
    min-height: 44px;
    padding: 9px 18px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
  @media screen and (max-width: 425px) {
    .member-register-form__submit-btn {
      margin: 0 auto;
      min-width: 141px;
    }
  }
  .member-register-form__content {
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 13px;
  }
  @media screen and (max-width: 576px) {
    .member-register-form__content {
      max-width: 260px;
    }
    .member-register-form__content br {
      display: none;
    }
  }
  .member-register-form__content b {
    font-weight: 400;
    color: #A5FBBD;
  }
  .member-register-form__content > *:not(:last-child) {
    margin-bottom: 9px;
  }
  
  .page-french * {
    text-transform: unset;
  }
  @media screen and (max-width: 1024px) {
    .page-french .hero-homepage__text {
      max-width: 453px;
    }
  }
  @media screen and (max-width: 390px) {
    .page-french .hero-homepage__text {
      max-width: 293px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-french .reviews-subtitle {
      max-width: 255px;
    }
  }
  .page-french .reviews-footer__email-subscribe {
    max-width: 780px;
  }
  .page-french .email-subscribe__submit-btn {
    min-width: 345px;
  }
  @media screen and (max-width: 700px) {
    .page-french .email-subscribe__submit-btn {
      min-width: 330px;
    }
  }
  @media screen and (max-width: 375px) {
    .page-french .email-subscribe__submit-btn {
      min-width: 260px;
      white-space: pre-wrap;
    }
  }
  @media (max-width: 450px) {
    .page-french .header-contact-form__description {
      max-width: 300px;
    }
  }
  @media (min-width: 651px) {
    .page-french .header-contact-dropbox .country-select .select__dropdown {
      width: 114%;
      right: 0;
      left: unset;
    }
  }
  @media screen and (max-width: 390px) {
    .page-french .await-card-wrap:nth-child(2) .await-card__description,
    .page-french .await-card-wrap:nth-child(3) .await-card__description {
      max-width: 263px;
    }
  }
  .page-french .await-card-wrap:last-child .await-card__description {
    max-width: 239px;
  }
  .page-french .await-reviews__photo {
    margin-top: -8px;
  }
  @media screen and (max-width: 390px) {
    .page-french .stories-title {
      max-width: 305px;
      margin-inline: auto;
    }
  }
  .page-french .stories-subtitle {
    max-width: 650px;
    margin-inline: auto;
  }
  @media screen and (max-width: 535px) {
    .page-french .stories-subtitle {
      margin-left: -11px;
      width: calc(100% + 22px);
    }
  }
  @media screen and (max-width: 390px) {
    .page-french .benefits-title {
      max-width: 216px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 390px) {
    .page-french .benefits-subtitle {
      max-width: 320px;
    }
  }
  @media screen and (max-width: 490px) {
    .page-french .explore-header {
      padding-inline: 20px;
    }
  }
  @media screen and (max-width: 390px) {
    .page-french .explore-slide__userdescription {
      -webkit-line-clamp: 3;
    }
  }
  .page-french .explore-description-bottom {
    max-width: 342px;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-french .explore-description-bottom {
      max-width: 500px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-french .explore-description-bottom {
      max-width: 304px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-french .claim-banner__info {
      max-width: calc(100% - 360px);
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-french .claim-banner-title {
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 1024px) {
    .page-french .claim-banner__subtitle {
      max-width: 304px;
    }
  }
  .page-french .claim-banner__email-subscribe {
    max-width: 619px;
  }
  @media screen and (min-width: 701px) and (max-width: 1024px) {
    .page-french .claim-banner__email-subscribe {
      width: 190%;
    }
  }
  .page-french .modal-claim__box {
    padding-right: 17px;
  }
  .page-french .modal-claim__email-subscribe .email-subscribe__submit-btn {
    min-width: 306px;
    padding: 12px 14px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  @media screen and (max-width: 1024px) {
    .page-french .modal-claim__email-subscribe .email-subscribe__submit-btn {
      padding: 3px 10px 3px 13px;
      min-width: 171px;
      white-space: pre-wrap;
      font-size: 11px;
    }
    .page-french .modal-claim__email-subscribe .email-subscribe__submit-btn .arrow {
      margin-left: 7px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-french .modal-claim__email-subscribe .email-subscribe__submit-btn {
      padding: 6px 40px 6px 40px;
      font-size: 14px;
    }
    .page-french .modal-claim__email-subscribe .email-subscribe__submit-btn .arrow {
      min-width: 14px;
      margin-left: 8px;
    }
  }
  .page-french .modal-claim__content {
    max-width: 655px;
  }
  @media screen and (max-width: 1024px) {
    .page-french .modal-claim__content {
      max-width: 487px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-french .modal-claim__box.sent .modal-claim__bg:before {
      left: 61.25%;
    }
  }
  .page-french .member-register-hero__subtitle {
    max-width: 475px;
  }
  @media screen and (max-width: 576px) {
    .page-french .footer__links {
      max-width: 320px;
      grid-column-gap: 5px;
    }
  }
  @media screen and (max-width: 425px) {
    .page-french .member-register-form__submit-btn {
      min-width: 203px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-french .auth-page .auth-page__subtitle {
      margin-bottom: 16px;
    }
  }
  .page-french .auth-page__welcome-content a:hover span, .page-french .auth-page__welcome-content a:active span {
    border-bottom: 1px solid #399db1;
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .page-french .member-register-form .form__col.f-confirmation-password,
    .page-french .member-register-form .form__col.f-password {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
    }
  }
  @media screen and (max-width: 1024px) {
    .page-french .member-register-form__submit-checkbox {
      max-width: none;
    }
  }
  .page-french .member-register-form__submit-checkbox br {
    display: none;
  }
  @media screen and (max-width: 1024px) {
    .page-french .member-register-form__submit-checkbox br {
      display: block;
    }
  }
  @media screen and (max-width: 420px) {
    .page-french .error-page__text {
      width: calc(100% + 31px);
    }
  }
  
  .page-italy * {
    text-transform: none;
  }
  .page-italy .global-subtitle {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .page-italy .global-subtitle b {
    font-weight: inherit;
    font-size: inherit;
  }
  @media screen and (max-width: 1024px) {
    .page-italy .global-subtitle {
      font-weight: 500;
      font-size: 16px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-italy .global-subtitle {
      font-size: 14px;
    }
  }
  @media (max-width: 450px) {
    .page-italy .header-contact-form__description {
      max-width: 300px;
    }
  }
  @media (min-width: 651px) {
    .page-italy .header-contact-dropbox .country-select .select__dropdown {
      width: 114%;
      right: 0;
      left: unset;
    }
  }
  @media screen and (max-width: 450px) {
    .page-italy .hero-homepage__uppertitle {
      max-width: 207px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-italy .hero-homepage__title br {
      display: none;
    }
  }
  @media screen and (max-width: 576px) {
    .page-italy .hero-homepage__subtitle {
      margin-bottom: 15px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-italy .hero-homepage__subtitle {
      max-width: 260px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 1024px) {
    .page-italy .reviews-title {
      max-width: 407px;
      margin-inline: auto;
      line-height: 35px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-italy .reviews-subtitle {
      max-width: 262px;
    }
  }
  .page-italy .await-card-wrap {
    min-height: 235px;
  }
  @media screen and (max-width: 576px) {
    .page-italy .await-subtitle {
      max-width: none;
    }
  }
  .page-italy .await-card-wrap:first-child .await-card {
    padding-inline: 27px;
  }
  @media screen and (max-width: 450px) {
    .page-italy .await-card-wrap:nth-child(3) .await-card__description,
    .page-italy .await-card-wrap:nth-child(4) .await-card__description,
    .page-italy .await-card-wrap:last-child .await-card__description {
      max-width: 253px;
    }
  }
  .page-italy .await-card {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-italy .await-card__name {
    font-size: 18px;
  }
  @media screen and (max-width: 450px) {
    .page-italy .await-reviews {
      width: calc(100% + 38px);
      margin-left: -19px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-italy .stories-title {
      max-width: 250px;
      margin-inline: auto;
    }
  }
  .page-italy .stories-subtitle .mobile-wrap {
    display: none;
  }
  @media screen and (max-width: 450px) {
    .page-italy .stories-subtitle .mobile-wrap {
      display: block;
    }
  }
  @media screen and (max-width: 450px) {
    .page-italy .stories-subtitle b {
      display: block;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-inline: auto;
    }
    .page-italy .stories-subtitle br {
      display: none;
    }
  }
  @media screen and (min-width: 411px) {
    .page-italy .benefits-title br {
      display: none;
    }
  }
  @media screen and (max-width: 1024px) {
    .page-italy .claim-banner__subtitle {
      max-width: none;
    }
  }
  @media screen and (min-width: 701px) {
    .page-italy .claim-banner .email-subscribe {
      width: 110%;
    }
  }
  .page-italy .email-subscribe__submit-btn {
    min-width: 243px;
  }
  .page-italy .form__error {
    font-weight: 400;
  }
  .page-italy .form__primary-btn {
    color: #3da6b0;
  }
  @media screen and (max-width: 1024px) {
    .page-italy .auth-page__hidefooter .auth-page__welcome-content {
      max-width: 454px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-italy .auth-page__footer {
      padding-inline: 32px;
    }
  }
  .page-italy .auth-page__footer p br {
    display: none;
  }
  @media screen and (max-width: 576px) {
    .page-italy .auth-page__footer p {
      max-width: none;
    }
    .page-italy .auth-page__footer p br {
      display: block;
    }
  }
  .page-italy .error-page__title {
    font-weight: 700;
  }
  .page-italy .payment-error-modal__text {
    color: #27292C;
  }
  .page-italy .payment-error-modal__text-warn {
    width: calc(100% + 20px);
  }
  @media screen and (max-width: 450px) {
    .page-italy .sent-message-status-success .sent-message-status__text {
      max-width: 230px;
      margin-inline: auto;
    }
  }
  .page-italy .modal-claim .email-subscribe__field {
    width: 102%;
  }
  .page-italy .modal-claim .modal-claim__subtitle {
    max-width: 493px;
  }
  @media screen and (max-width: 420px) {
    .page-italy .modal-claim .modal-claim__subtitle {
      max-width: 272px;
    }
  }
  .page-italy .modal-claim__content {
    max-width: 655px;
  }
  @media screen and (max-width: 1024px) {
    .page-italy .modal-claim__content {
      max-width: 458px;
    }
  }
  @media (min-width: 1025px) {
    .page-italy .modal-claim__email-subscribe .email-subscribe__submit-btn {
      min-width: 220px;
      font-size: 13px;
      line-height: 16px;
    }
  }
  @media (max-width: 1024px) and (min-width: 651px) {
    .page-italy .modal-claim__email-subscribe .email-subscribe__submit-btn {
      min-width: 171px;
      white-space: normal;
      padding-top: 5px;
      padding-bottom: 5px;
      font-size: 11px;
      line-height: 12px;
    }
  }
  @media screen and (max-width: 420px) {
    .page-italy .modal-claim__email-subscribe .email-subscribe__message {
      max-width: 190px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 576px) {
    .page-italy .modal-claim__email-subscribe .email-subscribe__submit-btn,
    .page-italy .modal-claim__email-subscribe .email-subscribe__input {
      min-height: 42px;
    }
  }
  
  .page-portugal * {
    text-transform: unset;
  }
  .page-portugal .header-contact-form__description {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
  }
  @media screen and (max-width: 576px) {
    .page-portugal .header-contact-form__description {
      font-size: 16px;
      font-weight: 500;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .header-contact-form__description {
      max-width: 265px;
    }
  }
  @media (min-width: 651px) {
    .page-portugal .header-contact-dropbox .country-select .select__dropdown {
      width: 114%;
      right: 0;
      left: unset;
    }
  }
  @media screen and (max-width: 576px) {
    .page-portugal .footer__links {
      max-width: 320px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .footer__copyright {
      width: calc(100% + 10px);
      margin-left: -5px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .hero-homepage__subtitle {
      max-width: 200px;
      margin: 0 auto;
      margin-bottom: 16px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .hero-homepage__text {
      max-width: 280px;
    }
  }
  @media (min-width: 1025px) {
    .page-portugal .reviews-slide__saved-textwrap {
      min-height: 66px;
    }
  }
  .page-portugal .reviews-slide__saved-text br {
    display: block;
  }
  @media (min-width: 751px) and (max-width: 1024px) {
    .page-portugal .reviews-subtitle {
      width: calc(100% + 66px);
      margin-left: -33px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .reviews-subtitle {
      max-width: 320px;
    }
  }
  @media (min-width: 651px) {
    .page-portugal .email-subscribe__submit-btn {
      min-width: 227px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .email-subscribe__message {
      max-width: 270px;
      margin: 0 auto;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .await-subtitle {
      max-width: 280px;
    }
  }
  .page-portugal .await-card {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .await-card__name.w-calc-t-10 {
      width: calc(100% + 10px);
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .await-card__description.m-w-t-231 {
      max-width: 231px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .await-card__description.w-calc-t-20 {
      width: calc(100% + 20px);
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .await-card__description.w-calc-t-1 {
      width: calc(100% + 1px);
    }
  }
  @media screen and (max-width: 400px) {
    .page-portugal .await-card__description.m-w-m-246 {
      max-width: 246px;
    }
  }
  @media screen and (max-width: 400px) {
    .page-portugal .await-card__description.m-w-m-226 {
      max-width: 226px;
    }
  }
  .page-portugal .stories-subtitle {
    max-width: 580px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  @media (max-width: 1024px) {
    .page-portugal .stories-subtitle {
      max-width: 500px;
      margin-bottom: 40px;
    }
  }
  @media (max-width: 1024px) {
    .page-portugal .stories-subtitle {
      margin-bottom: 34px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .stories-subtitle {
      max-width: 310px;
    }
  }
  @media (max-width: 700px) {
    .page-portugal .claim-banner__subtitle br {
      display: none;
    }
  }
  .page-portugal .claim-banner__subtitle br {
    display: none;
  }
  @media (min-width: 1025px) {
    .page-portugal .claim-banner__subtitle br {
      display: block;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .claim-banner__subtitle {
      max-width: 270px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .sent-message-status-success .sent-message-status__text {
      padding: 0 5px;
    }
  }
  @media (max-width: 1024px) {
    .page-portugal .modal-claim .modal-claim__subtitle {
      max-width: 340px;
    }
  }
  @media (max-width: 1024px) and (min-width: 651px) {
    .page-portugal .modal-claim .email-subscribe__submit-btn {
      min-width: 182px;
      padding: 5px;
    }
  }
  @media (max-width: 450px) {
    .page-portugal .modal-claim .modal-claim__box.sent .modal-claim__content {
      width: calc(100% + 18px);
      margin-left: -9px;
      margin-right: -9px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-portugal .member-register-hero__title {
      line-height: 34px;
    }
  }
  @media screen and (min-width: 577px) {
    .page-portugal .member-register-hero__subtitle {
      max-width: 500px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-portugal .member-register-hero__subtitle {
      width: calc(100% + 4px);
      margin-left: -2px;
    }
  }
  @media screen and (max-width: 400px) {
    .page-portugal .member-register-form__title {
      width: calc(100% + 6px);
      margin-left: -3px;
    }
  }
  .page-portugal .auth-page__welcome-title {
    width: calc(100% + 2px);
    margin-left: -1px;
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .auth-page__hideheading .auth-page__welcome-title {
      max-width: 505px;
    }
  }
  @media screen and (max-width: 400px) {
    .page-portugal .auth-page__hideheading .auth-page__welcome-title {
      max-width: 300px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .auth-page__hideheading .auth-page__welcome-content {
      max-width: 554px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .auth-page__hidefooter .auth-page__welcome-content {
      max-width: 454px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-portugal .auth-page__footer p {
      max-width: none;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-portugal .payment-error-modal__box.p-i-d-8 {
      padding-inline: 8px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-portugal .payment-error-modal__box.p-i-d-8 {
      padding-inline: 22px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-portugal .payment-error-modal__box.p-i-d-8 .payment-error-modal__text-warn {
      max-width: 250px;
    }
  }
  
  .page-romanian * {
    text-transform: none;
  }
  .page-romanian .header-btn .mobile {
    display: none;
  }
  @media screen and (max-width: 402px) {
    .page-romanian .header-btn .mobile {
      display: block;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .header-contact-dropdown {
      right: -100%;
    }
    .page-romanian .header-contact__sidebar {
      max-width: 302px;
    }
  }
  @media screen and (min-width: 576px) {
    .page-romanian .header-contact-form__content .w-d-calc-10 {
      width: calc(100% + 10px);
    }
  }
  @media screen and (max-width: 460px) {
    .page-romanian .hero-homepage__uppertitle {
      max-width: 244px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 576px) {
    .page-romanian .hero-homepage__subtitle {
      margin-bottom: 15px;
    }
  }
  @media screen and (max-width: 510px) {
    .page-romanian .hero-homepage__subtitle {
      max-width: 324px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .reviews-title {
      max-width: 223px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .reviews-subtitle {
      max-width: 280px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-romanian .reviews-slide__saved-text br {
      display: block;
    }
  }
  .page-romanian .reviews-footer__email-subscribe .email-subscribe__submit-btn br {
    display: none;
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .reviews-footer__email-subscribe {
      max-width: 722px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .reviews-footer__email-subscribe {
      max-width: none;
      width: 100%;
    }
  }
  @media screen and (min-width: 577px) {
    .page-romanian .reviews-footer__email-subscribe .email-subscribe__submit-btn {
      min-width: 286px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .await-subtitle {
      max-width: 270px;
    }
  }
  @media screen and (min-width: 577px) {
    .page-romanian .await-card {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .await-card.m-h-d-230 {
      min-height: 230px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-romanian .await-card__name br {
      display: none;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .await-card__name.m-w-m-170 {
      max-width: 170px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .await-card__description.w-d-calc-4 {
      width: calc(100% + 4px);
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .await-card__description.w-t-calc-1 {
      width: calc(100% + 1px);
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .await-card__description.m-w-m-263 {
      max-width: 263px;
    }
  }
  @media screen and (max-width: 400px) {
    .page-romanian .await-card__description.m-w-m-203 {
      max-width: 203px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .stories-subtitle {
      max-width: 422px;
      margin-inline: auto;
    }
  }
  .page-romanian .stories-subtitle .mobile {
    display: none;
  }
  @media screen and (max-width: 450px) {
    .page-romanian .stories-subtitle .mobile {
      display: block;
    }
  }
  @media screen and (max-width: 1024px) {
    .page-romanian .stories-subtitle br {
      display: none;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .explore-header {
      font-size: 20px;
    }
  }
  .page-romanian .explore-header br {
    display: none;
  }
  @media screen and (max-width: 450px) {
    .page-romanian .explore-header br {
      display: block;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .claim-banner__subtitle {
      max-width: 304px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .claim-banner__subtitle {
      max-width: 241px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .claim-banner__email-subscribe {
      max-width: 553px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .claim-banner__email-subscribe {
      max-width: 632px;
      width: 200%;
    }
  }
  .page-romanian .claim-banner__email-subscribe .email-subscribe__submit-btn br {
    display: none;
  }
  @media screen and (min-width: 577px) {
    .page-romanian .claim-banner__email-subscribe .email-subscribe__submit-btn {
      min-width: 286px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .error-page__title, .page-romanian .error-page__text {
      max-width: 262px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .error-page__text.m-w-m-250 {
      max-width: 250px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .member-register-hero__subtitle {
      max-width: 534px;
    }
  }
  .page-romanian .payment-successful-modal__link .value span {
    text-decoration: underline;
  }
  @media screen and (min-width: 651px) and (max-width: 1024px) {
    .page-romanian .modal-claim__box.claim .email-subscribe__message {
      padding-top: 0;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .modal-claim__box.claim .modal-claim__col.d-pr-0 {
      padding-right: 0;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .modal-claim__box.claim .claim-modal-btn {
      min-width: 286px;
    }
  }
  @media screen and (min-width: 651px) and (max-width: 1024px) {
    .page-romanian .modal-claim__box.claim .claim-modal-btn {
      text-align: left;
    }
  }
  .page-romanian .modal-claim__box.claim .claim-modal-btn br {
    display: none;
  }
  @media screen and (min-width: 651px) and (max-width: 1024px) {
    .page-romanian .modal-claim__box.claim .claim-modal-btn br {
      display: block;
    }
  }
  @media screen and (min-width: 651px) and (max-width: 1024px) {
    .page-romanian .modal-claim__box.claim .email-subscribe__input::-webkit-input-placeholder {
      max-width: 120px;
      white-space: pre-line;
      position: relative;
      top: -8px;
    }
    .page-romanian .modal-claim__box.claim .email-subscribe__input::-moz-placeholder {
      max-width: 120px;
      white-space: pre-line;
      position: relative;
      top: -8px;
    }
    .page-romanian .modal-claim__box.claim .email-subscribe__input:-ms-input-placeholder {
      max-width: 120px;
      white-space: pre-line;
      position: relative;
      top: -8px;
    }
    .page-romanian .modal-claim__box.claim .email-subscribe__input::-ms-input-placeholder {
      max-width: 120px;
      white-space: pre-line;
      position: relative;
      top: -8px;
    }
    .page-romanian .modal-claim__box.claim .email-subscribe__input::placeholder {
      max-width: 120px;
      white-space: pre-line;
      position: relative;
      top: -8px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .modal-claim__box.sent .modal-claim__content {
      max-width: 623px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-romanian .modal-claim__box.sent .modal-claim__content {
      max-width: 474px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .auth-page__welcome-box-wrap .auth-page__welcome-box {
      padding-inline: 40px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-romanian .auth-page__welcome-box-wrap .auth-page__welcome-title {
      max-width: 267px;
      margin-inline: auto;
    }
  }
  @media screen and (min-width: 576px) and (max-width: 1024px) {
    .page-romanian .auth-page__hideheading .auth-page__welcome-content {
      max-width: 554px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .auth-page__hideheading .auth-page__welcome-content {
      width: calc(100% + 2px);
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .auth-page__hidefooter {
      width: calc(100% + 22px);
      margin-left: -11pxpx;
    }
  }
  @media screen and (min-width: 576px) and (max-width: 1024px) {
    .page-romanian .auth-page__hidefooter .auth-page__welcome-content {
      max-width: 541px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-romanian .auth-page__footer {
      max-width: 327px;
      margin-inline: auto;
    }
    .page-romanian .auth-page__footer p {
      max-width: none;
    }
  }
  
  .page-spain * {
    text-transform: none;
  }
  @media screen and (min-width: 1025px) {
    .page-spain .header-contact-dropdown {
      right: -50%;
    }
  }
  @media screen and (max-width: 700px) {
    .page-spain .footer__links {
      max-width: none;
    }
  }
  @media screen and (max-width: 408px) {
    .page-spain .footer__copyright {
      width: calc(100% + 20px);
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .hero-homepage__uppertitle {
      max-width: 240px;
    }
  }
  @media screen and (max-width: 405px) {
    .page-spain .hero-homepage__title {
      width: calc(100% + 15px);
      margin-left: -7.5px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .hero-homepage__subtitle {
      max-width: 258px;
      margin-inline: auto;
      margin-bottom: 16px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .hero-homepage__text {
      max-width: 461px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .hero-homepage__text {
      max-width: 318px;
    }
  }
  @media screen and (min-width: 651px) {
    .page-spain .reviews-section .email-subscribe__submit-btn {
      min-width: 237px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .reviews-subtitle {
      letter-spacing: -0.5px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .reviews-subtitle {
      max-width: 280px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .await-subtitle {
      max-width: none;
    }
  }
  .page-spain .await-card {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  @media screen and (min-width: 1025px) {
    .page-spain .await-card__name.w-d-calc-6 {
      width: calc(100% + 6px);
    }
  }
  @media screen and (max-width: 1024px) {
    .page-spain .await-card__name.m-w-t-207 {
      max-width: 207px;
    }
    .page-spain .await-card__name.m-w-t-207 br {
      display: none;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .await-card__description.m-w-d-259 {
      max-width: 259px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .await-card__description.m-w-t-228 {
      max-width: 228px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .await-card__description.m-w-m-251 {
      max-width: 251px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .await-card__description.m-w-m-219 {
      max-width: 219px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .stories-title {
      width: calc(100% + 14px);
      margin-left: -7px;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .stories-subtitle br {
      display: none;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .stories-subtitle {
      max-width: 261px;
      margin-inline: auto;
      letter-spacing: -0.5px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .explore-header {
      font-size: 20px;
    }
  }
  @media screen and (min-width: 577px) {
    .page-spain .claim-section .email-subscribe__submit-btn {
      min-width: 237px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .claim-section .claim-banner__email-subscribe {
      width: calc(100% + 20px);
      max-width: none;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .claim-section .claim-banner__email-subscribe {
      max-width: 583px;
      width: 200%;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .claim-banner__subtitle {
      max-width: 304px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .claim-banner__subtitle {
      max-width: 263px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .email-subscribe__submit-btn {
      min-width: 237px;
    }
  }
  @media screen and (min-width: 651px) and (max-width: 1024px) {
    .page-spain .email-subscribe__submit-btn {
      min-width: 189px;
    }
  }
  @media screen and (max-width: 410px) {
    .page-spain .email-subscribe__message {
      max-width: 202px;
      margin-inline: auto;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .modal-claim__box.sent .modal-claim__content {
      max-width: 670px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .modal-claim__box.sent .modal-claim__content {
      max-width: 510px;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .payment-error-modal__box {
      padding-inline: 22px;
    }
  }
  .page-spain .payment-error-modal__box .value {
    text-decoration: underline;
  }
  @media screen and (min-width: 1025px) {
    .page-spain .member-register-hero__subtitle {
      max-width: 520px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .member-register-hero__subtitle {
      max-width: 536px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .member-register-hero__subtitle {
      max-width: 294px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .member-register-form .f-password,
    .page-spain .member-register-form .f-confirmation-password {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .member-register-form__title {
      width: calc(100% + 18px);
      margin-left: -9px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .member-register-form__content p {
      max-width: 486px;
    }
    .page-spain .member-register-form__content p br {
      display: none;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .member-register-form__content {
      max-width: none;
    }
  }
  @media screen and (min-width: 1025px) {
    .page-spain .auth-page__welcome-box {
      padding-inline: 10px;
    }
  }
  @media screen and (min-width: 577px) and (max-width: 1024px) {
    .page-spain .auth-page__hidefooter .auth-page__welcome-content {
      max-width: 454px;
    }
  }
  @media screen and (max-width: 450px) {
    .page-spain .auth-page__hidefooter {
      max-width: 288px;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 576px) {
    .page-spain .auth-page__footer p {
      max-width: none;
    }
  }
  
  @media screen and (min-width: 1025px) {
    #flockler-embed-17541ee8b330170b437fce1fbd720adb article{
        width:33.33% !important;
    }
  }
  @media screen and (min-width: 700px) and (max-width: 1024px) {
    #flockler-embed-17541ee8b330170b437fce1fbd720adb article {
        width: 50% !important;
    }
  }
  @media screen and (max-width: 699px) {
    #flockler-embed-17541ee8b330170b437fce1fbd720adb article{
        width:100% !important;
    }
  }
  .flockler-wall_v2-items a.flockler-btn-load-more:hover{
    background:linear-gradient(100.84deg, #2A78B3 -3.18%, #45B9AF 112.02%) !important;
    color:white !important;
    transition:0.3s ease;
  }
  .flockler-wall_v2-items a.flockler-btn-load-more {
      border: 1px solid !important;
      border-image: linear-gradient(100.84deg, #2A78B3 -3.18%, #45B9AF 112.02%) !important;
      border-image-slice: 1 !important;
      font-family: "Montserrat", sans-serif !important;
      font-weight: 600 !important;
      color:#2A78B3 !important;
      max-width: 210px !important;
      min-height: 48px !important;
      padding:0px;
      display:flex !important;
      justify-content: center !important;
      align-items: center !important;

      /* font-size: 12px !important; */
  }    

  .uppercase {
      text-transform: uppercase;
  }
  /*# sourceMappingURL=maps/free.css.map */
  