/**
 * 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
 */
:root {
  --header-height: 55px;
}

body {
  background-color: #f9fafb;
  color: #424549;
  -webkit-text-size-adjust: 100%;
}
body.pt-header-height {
  padding-top: 0 !important;
}
body.pt-header-height .wrapper {
  padding-top: var(--header-height);
}

.global-section {
  padding: 30px;
}

@media (max-width: 1024px) {
  .container {
    max-width: 660px;
  }
}

.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;
  letter-spacing: -0.5px;
}
.global-subtitle b {
  font-weight: 500;
  position: relative;
}
.global-subtitle b::after {
  width: 100%;
  height: 7px;
  opacity: 0.3000000119;
  background: #3AD1F2;
  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;
  margin-bottom: 2px;
  letter-spacing: 3px;
  text-transform: capitalize;
  color: #27292c;
}
@media (max-width: 1024px) {
  .global-uppertitle {
    font-size: 24px;
    margin-bottom: 0;
  }
}
@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: "";
}

.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: #3AD1F2;
  color: #fff;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #3AD1F2;
}
.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-teel.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(58, 209, 242, 0.1);
    border-color: transparent;
    color: #3AD1F2;
  }
  .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: #3AD1F2;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #3AD1F2;
}
.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-teel.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: #3AD1F2;
  }
  .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: #3AD1F2;
  }
}
.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: #3AD1F2;
  }
}
.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: #3AD1F2;
  }
}
.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: #3AD1F2;
  opacity: 1;
}
@media (max-width: 1024px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.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: #3AD1F2;
  border: 1px solid #3AD1F2;
  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(58, 209, 242, 0.1);
    border-color: transparent;
    color: #3AD1F2;
  }
}
.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: #3AD1F2;
  }
  .header-lang__trigger:hover .icon {
    stroke: #3AD1F2;
  }
}
.header-lang__trigger:active .header-lang__value {
  color: #3AD1F2;
}
.header-lang__trigger:active .icon {
  stroke: #3AD1F2;
}
.header-lang__trigger.active .header-lang__value {
  color: #3AD1F2;
}
.header-lang__trigger.active .icon {
  stroke: #3AD1F2;
}
.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: linear-gradient(100.84deg, #2a78b3 -3.18%, #45b9af 112.02%);
  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: #3AD1F2;
  }
  .header-contact-trigger:hover .header-contact-trigger__name {
    color: #3AD1F2;
  }
  .header-contact-trigger:hover .header-contact-trigger__arrowlink {
    color: #3AD1F2;
  }
  .header-contact-trigger:hover .header-contact-trigger__arrowlink .icon {
    fill: #3AD1F2;
  }
}
.header-contact-trigger:active {
  border-color: #3AD1F2;
}
.header-contact-trigger:active .header-contact-trigger__name {
  color: #3AD1F2;
}
.header-contact-trigger:active .header-contact-trigger__arrowlink {
  color: #3AD1F2;
}
.header-contact-trigger:active .header-contact-trigger__arrowlink .icon {
  fill: #3AD1F2;
}
.header-contact-trigger.active {
  border-color: #3AD1F2;
}
.header-contact-trigger.active .header-contact-trigger__name {
  color: #3AD1F2;
}
.header-contact-trigger.active .header-contact-trigger__arrowlink {
  color: #3AD1F2;
}
.header-contact-trigger.active .header-contact-trigger__arrowlink .icon {
  fill: #3AD1F2;
}
.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;
  -webkit-backdrop-filter: blur(31.5799999237px);
          backdrop-filter: blur(31.5799999237px);
}
@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;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.header-contact__sidebar {
  width: 100%;
  max-width: 308px;
  background: rgba(0, 0, 0, 0.8);
  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: linear-gradient(100.84deg, #2a78b3 -3.18%, #45b9af 112.02%);
  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: #a5ebfb;
  -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: #a5ebfb;
  }
}
.header-contact__person-link:active {
  color: #a5ebfb;
}
.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);
}
@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;
  }
}
.header-contact-form__description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 9px;
}
@media (max-width: 576px) {
  .header-contact-form__description {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 450px) {
  .header-contact-form__description {
    max-width: 300px;
  }
}
.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: #3AD1F2;
  }
}

.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: #3AD1F2;
  }
  .header--transparent .header.fixed .header-lang__trigger.active .icon {
    stroke: #3AD1F2;
  }
}
@media (min-width: 1025px) {
  .header--transparent .header.fixed .header-lang__trigger:hover .header-lang__value {
    color: #3AD1F2;
  }
  .header--transparent .header.fixed .header-lang__trigger:hover .icon {
    stroke: #3AD1F2;
  }
}
@media (min-width: 577px) {
  .header--transparent .header.fixed .header-contact-trigger.active {
    border-color: #3AD1F2;
  }
  .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: #3AD1F2;
  }
  .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: #3AD1F2;
  }
}
@media (min-width: 1025px) {
  .header--transparent .header.fixed .header-contact-trigger:hover {
    border-color: #3AD1F2;
  }
  .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: #3AD1F2;
  }
  .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: #3AD1F2;
  }
}
@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-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: 8px;
}
@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: 27px;
}
@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__btn {
  min-height: 36px;
  padding: 5px 10px;
  min-width: 173px;
  text-transform: none;
}

.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.sent-message-status-error .sent-message-status__title {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .sent-message-status.sent-message-status-error .sent-message-status__title {
    font-size: 22px;
  }
}
.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;
}

.hero-homepage-section {
  padding-top: 45px;
  padding-bottom: 31px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(169deg, rgba(109, 206, 236, 0) 30.33%, rgba(109, 206, 236, 0.2) 60%);
}
@media (max-width: 1024px) {
  .hero-homepage-section {
    padding-bottom: 24px;
    padding-top: 46px;
    background: linear-gradient(169deg, rgba(109, 206, 236, 0) 30.33%, rgba(109, 206, 236, 0.07) 60%);
  }
}
@media (max-width: 576px) {
  .hero-homepage-section {
    padding-top: 42px;
    background: linear-gradient(169deg, rgba(109, 206, 236, 0) 30.33%, rgba(109, 206, 236, 0.17) 60%);
  }
}
.hero-homepage-section::after {
  position: absolute;
  top: 99px;
  left: -326px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(5deg, #FBFEFF 0%, #FCFEFF 100%);
  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%, #F8FDFF), color-stop(60.23%, #E4F6FB));
  background: linear-gradient(180deg, #F8FDFF 30%, #E4F6FB 60.23%);
  width: 427px;
  height: 592px;
  opacity: 0.75;
}
@media (max-width: 1024px) {
  .hero-homepage-section::before {
    display: none;
  }
}
.hero-homepage__title {
  text-align: center;
  font-size: 40px;
  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: #3AD1F2;
}
@media (max-width: 1024px) {
  .hero-homepage__title {
    font-size: 36px;
    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: 37px;
}
@media (max-width: 1024px) {
  .hero-homepage__subtitle {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .hero-homepage__subtitle {
    margin-bottom: 34px;
  }
}
@media (max-width: 450px) {
  .hero-homepage__subtitle {
    max-width: 277px;
    margin: 0 auto;
    margin-bottom: 34px;
  }
}
@media (max-width: 576px) {
  .hero-homepage__subtitle br {
    display: none;
  }
}
.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: 24px;
  padding-bottom: 36px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(69.9%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.2)));
  background: linear-gradient(0deg, rgba(109, 206, 236, 0) 69.9%, rgba(109, 206, 236, 0.2) 100%);
}
@media (max-width: 1024px) {
  .reviews-section {
    padding-top: 24px;
    padding-bottom: 10px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(79.79%, #FFF), to(#E9F8FC));
    background: linear-gradient(0deg, #FFF 79.79%, #E9F8FC 100%);
  }
}
@media (max-width: 700px) {
  .reviews-section {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .reviews-section {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(80.9%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.17)));
    background: linear-gradient(0deg, rgba(109, 206, 236, 0) 80.9%, rgba(109, 206, 236, 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: #3AD1F2;
}
@media (min-width: 577px) {
  .reviews-title br {
    display: none;
  }
}
@media (max-width: 576px) {
  .reviews-title {
    margin-bottom: 11px;
  }
}
.reviews-subtitle {
  margin-bottom: 42px;
}
@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: 52px;
}
@media (max-width: 1024px) {
  .reviews__slider {
    margin-bottom: 44px;
  }
}
@media (max-width: 576px) {
  .reviews__slider {
    margin-bottom: 28px;
  }
}
.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: #3AD1F2;
}
@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: 320px;
  }
}
@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-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: 18px;
  padding-bottom: 8px;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10.53%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.2)));
  background: linear-gradient(180deg, rgba(109, 206, 236, 0) 10.53%, rgba(109, 206, 236, 0.2) 100%);
}
@media (max-width: 1024px) {
  .await-section {
    padding-top: 27px;
    padding-bottom: 33px;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EAF8FC));
    background: linear-gradient(180deg, #FFF 0%, #EAF8FC 100%);
  }
}
@media (max-width: 576px) {
  .await-section {
    padding-top: 20px;
    padding-bottom: 13px;
  }
}
.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.7;
}
@media (max-width: 1024px) {
  .await-section::after {
    display: none;
  }
}
.await-subtitle {
  margin-bottom: 26px;
}
@media (max-width: 1024px) {
  .await-subtitle {
    margin-bottom: 38px;
  }
}
@media (max-width: 450px) {
  .await-subtitle {
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 35px;
  }
}
.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-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 18px 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 {
  max-width: 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;
}
.await-card__icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.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: 36px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(69.9%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.2)));
  background: linear-gradient(0deg, rgba(109, 206, 236, 0) 69.9%, rgba(109, 206, 236, 0.2) 100%);
}
@media (max-width: 1024px) {
  .stories-section {
    padding-top: 3px;
    padding-bottom: 7px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(69.9%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.07)));
    background: linear-gradient(0deg, rgba(109, 206, 236, 0) 69.9%, rgba(109, 206, 236, 0.07) 100%);
  }
}
@media (max-width: 576px) {
  .stories-section {
    padding-top: 29px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .stories-title {
    margin-bottom: 8px;
  }
}
.stories-subtitle {
  margin-bottom: 36px;
}
@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;
  margin-bottom: 36px;
}
@media (max-width: 1120px) {
  .stories-slider {
    max-width: 840px;
    margin: 0 auto;
    margin-bottom: 36px;
  }
}
@media (max-width: 1024px) {
  .stories-slider {
    max-width: 215px;
    margin-bottom: 44px;
  }
}
@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: #E4FAFF;
  -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: 37px;
  padding-bottom: 3px;
  position: relative;
  z-index: 2;
  background: linear-gradient(173deg, rgba(109, 206, 236, 0) 21.7%, rgba(109, 206, 236, 0.2) 78.97%);
}
@media (max-width: 1024px) {
  .benefits-section {
    padding-bottom: 14px;
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .benefits-section {
    padding-top: 20px;
    padding-bottom: 16px;
  }
}
.benefits-section::after {
  position: absolute;
  top: 94px;
  right: -189px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(5deg, #FBFEFF 0%, #FCFEFF 100%);
  width: 419px;
  height: 419px;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .benefits-section::after {
    display: none;
  }
}
@media (max-width: 450px) {
  .benefits-subtitle {
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.benefits-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) {
  .benefits-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 700px) {
  .benefits-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .benefits-list {
    width: calc(100% + 20px);
    margin-inline: -10px;
  }
}
.benefits-card-wrap {
  /* width: 25%; */
  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) {
  .benefits-card-wrap {
    width: 33.3333333%;
  }
}
@media (max-width: 700px) {
  .benefits-card-wrap {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .benefits-card-wrap {
    padding-inline: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .benefits-card-wrap {
    width: 100%;
  }
}
.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: 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 (max-width: 576px) {
  .benefits-card {
    min-height: 124px;
    padding: 18px;
  }
}
.benefits-card__name {
  color: #27292c;
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 600;
  line-height: 26px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .benefits-card__name {
    font-size: 16px;
    line-height: 20px;
  }
}
.benefits-card__icon {
  max-width: 80px;
  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 (max-width: 576px) {
  .benefits-card__icon {
    max-width: 65px;
  }
}
.benefits-card__icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.explore-section {
  padding-top: 70px;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
  background: url("../../assets/img/content/modules/vip/homepage/explore-map.png") center 60px no-repeat;
}
@media (max-width: 1024px) {
  .explore-section {
    padding-top: 13px;
    padding-bottom: 60px;
    background: url("../../assets/img/content/modules/vip/homepage/explore-map.png") center 45px no-repeat;
    background-size: 120% 356px;
  }
}
@media (max-width: 700px) {
  .explore-section {
    padding-top: 0;
    padding-bottom: 152px;
  }
}
@media (max-width: 576px) {
  .explore-section {
    background: url("../../assets/img/content/modules/vip/homepage/explore-map.png") center 0 no-repeat;
    background-size: 155% 237px;
  }
}
.explore-section::after {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(69.9%, rgba(109, 206, 236, 0)), to(rgba(109, 206, 236, 0.2)));
  background: linear-gradient(0deg, rgba(109, 206, 236, 0) 69.9%, rgba(109, 206, 236, 0.2) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.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: 25px;
  }
}
@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 (max-width: 576px) {
  .explore-description-bottom br {
    display: none;
  }
}
@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: #3AD1F2;
}
@media (max-width: 1024px) {
  .explore-header {
    font-size: 20px;
    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: #3AD1F2;
  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: #3AD1F2;
  -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: 57px;
  padding-bottom: 48px;
  background: #3AD1F2;
  position: relative;
  z-index: 2;
}
.claim-section::before {
  width: 419px;
  height: 419px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.47)), color-stop(65.78%, #3AD1F2));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.47) 0%, #3AD1F2 65.78%);
  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(5deg, rgba(255, 255, 255, 0.47) 0%, #3AD1F2 100%);
  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;
  }
}
@media (max-width: 1024px) {
  .claim-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .claim-section {
    padding-top: 120px;
    padding-bottom: 30px;
  }
}
.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;
  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;
  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: 324px;
    margin-right: -15px;
    margin-top: -70px;
  }
}
@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: 17px;
}
@media (max-width: 1024px) {
  .claim-banner-title {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 43px;
    letter-spacing: -3px;
  }
}
@media (max-width: 700px) {
  .claim-banner-title {
    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: 31px;
  max-width: 490px;
}
@media (max-width: 1024px) {
  .claim-banner__subtitle {
    margin-bottom: 28px;
    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__footer {
  width: 100%;
  max-width: 312px;
  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) {
  .claim-banner__footer {
    max-width: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .claim-banner__footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.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;
  }
}

.guest-member-hero-section {
  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;
  min-height: 423px;
  padding-top: 90px;
  padding-bottom: 150px;
  background: url("../../assets/img/content/modules/vip/member-option/hero-desktop.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .guest-member-hero-section {
    background: url("../../assets/img/content/modules/vip/member-option/hero-tablet.webp") no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 380px;
    padding-bottom: 112px;
  }
}
@media (max-width: 576px) {
  .guest-member-hero-section {
    min-height: 451px;
    padding-bottom: 140px;
    background: url("../../assets/img/content/modules/vip/member-option/hero-mobile.webp") no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.guest-member-hero-section .container {
  margin: auto;
}
.guest-member-hero-box {
  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;
}
.guest-member-hero-uppertitle {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .guest-member-hero-uppertitle {
    color: #304659;
  }
}
@media (max-width: 576px) {
  .guest-member-hero-uppertitle {
    margin-bottom: 16px;
  }
}
.guest-member-hero-title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #000;
}
@media (max-width: 1024px) {
  .guest-member-hero-title {
    color: #304659;
  }
}
@media (max-width: 576px) {
  .guest-member-hero-title {
    font-size: 28px;
    line-height: 28px;
    max-width: 350px;
    margin: 0 auto;
  }
}

.guest-member-option {
  margin-top: -115px;
  padding-bottom: 36px;
  position: relative;
  z-index: 2;
  padding-inline: 30px;
}
@media screen and (max-width: 1024px) {
  .guest-member-option {
    margin-top: -95px;
    padding-bottom: 52px;
  }
}
@media screen and (max-width: 576px) {
  .guest-member-option {
    margin-top: -120px;
    padding-bottom: 52px;
  }
}
@media (max-width: 375px) {
  .guest-member-option {
    padding-inline: 20px;
  }
}
.guest-member-option__wrap {
  padding: 38px 22px 21px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
          box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
}
@media (max-width: 1024px) {
  .guest-member-option__wrap {
    padding-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .guest-member-option__wrap {
    padding: 100px 15px 22px;
  }
}
.guest-member-option__tariff-wrap:not(:last-child) {
  margin-bottom: 27px;
}
@media (max-width: 1024px) {
  .guest-member-option__tariff-wrap:not(:last-child) {
    margin-bottom: 26px;
  }
}
@media (max-width: 700px) {
  .guest-member-option__tariff-wrap:not(:last-child) {
    margin-bottom: 25px;
  }
}
.guest-member-option__tariff-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 14px);
  margin-inline: -7px;
  row-gap: 20px;
}
@media (max-width: 700px) {
  .guest-member-option__tariff-row {
    row-gap: 107px;
  }
}
.guest-member-option__tariff-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding-inline: 7px;
}
@media screen and (max-width: 1024px) {
  .guest-member-option__tariff-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.guest-member-option__form-wrap {
  width: 100%;
}
.guest-member-option__form-wrap:not(:last-child) {
  margin-bottom: 25px;
}
.guest-member-option__form-head {
  margin-bottom: 20px;
  padding: 6px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 576px) {
  .guest-member-option__form-head {
    padding: 6px 12px;
  }
}
.guest-member-option__form-head-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
  text-transform: capitalize;
  color: #344054;
}
@media (max-width: 576px) {
  .guest-member-option__form-head-title {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .guest-member-option__form-head-title.xs {
    font-size: 12px;
  }
}
.guest-member-option__form-head__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #535961;
  font-size: 11px;
  line-height: 12px;
  font-family: "Montserrat";
  font-weight: 500;
}
@media (max-width: 576px) {
  .guest-member-option__form-head__link {
    font-size: 9px;
    line-height: 10px;
  }
}
@media (min-width: 577px) {
  .guest-member-option__form-head__link br {
    display: none;
  }
}
.guest-member-option__form-head__link .symbol {
  width: 15px;
  min-width: 15px;
  height: 15px;
  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;
}
@media (max-width: 576px) {
  .guest-member-option__form-head__link .symbol {
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-right: 4px;
  }
}
.guest-member-option__form-head__link .symbol .icon {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: transparent;
  stroke: #535961;
  stroke-width: 1.2px;
}
@media (min-width: 1025px) {
  .guest-member-option__form-head__link:hover .value {
    text-decoration: underline;
  }
}
.guest-member-option__form-body .form .form__footer {
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .guest-member-option__form-body .form .form__footer {
    row-gap: 27px;
  }
}
@media (max-width: 576px) {
  .guest-member-option__form-body .form .form__footer {
    row-gap: 24px;
  }
}
@media (max-width: 576px) {
  .guest-member-option__form-body .form .form__footer {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .guest-member-option__form-body .form .form__footer .form__col--7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59.5%;
            flex: 0 0 59.5%;
    width: 59.5%;
  }
}
@media screen and (min-width: 1025px) {
  .guest-member-option__form-body .form .form__footer .form__col--5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40.5%;
            flex: 0 0 40.5%;
    width: 40.5%;
  }
}
@media (max-width: 1024px) {
  .guest-member-option__form-body .form .form__footer .form__col--5 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.guest-member-option__form-body .form .form__footer .form__field {
  margin-right: 11px;
  max-width: 190px;
}
@media (min-width: 1025px) {
  .guest-member-option__form-body .form .form__footer .form__field {
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .guest-member-option__form-body .form .form__footer .form__field {
    max-width: 256px;
  }
}
@media (max-width: 650px) {
  .guest-member-option__form-body .form .form__footer .form__field {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }
}
.guest-member-option__form-body .form .form__footer .guest-member-btn {
  background: #3AD1F2;
  border: 1px solid #3AD1F2;
  min-width: 110px;
  min-height: 34px;
  font-size: 13px;
  line-height: 13px;
  width: auto;
  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;
  padding: 4px 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat";
}
@media (max-width: 576px) {
  .guest-member-option__form-body .form .form__footer .guest-member-btn {
    min-height: 44px;
    min-width: 141px;
    font-size: 14px;
    line-height: 14px;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .guest-member-option__form-body .form .form__footer .guest-member-btn:hover {
    background: rgba(58, 209, 242, 0.1);
    border-color: transparent;
    color: #3AD1F2;
  }
}
.guest-member-option__form-body .form .form__footer .guest-member-btn.disabled {
  pointer-events: none !important;
  color: #fff !important;
  background: #D6DADE !important;
  border-color: #D6DADE !important;
}
.guest-member-option__form-body .form .form__footer .guest-member-btn.disabled .value {
  color: #fff !important;
}
.guest-member-option__form-body .form .form__footer .checkbox__wrap {
  border-radius: 0;
  width: 13px;
  height: 13px;
  min-width: 13px;
}
.guest-member-option__form-body .form .form__footer .checkbox__wrap .checkbox__custom {
  -webkit-mask: url(../../assets/svg/checkbox-butt-2.svg) 0 0/contain no-repeat;
  mask: url(../../assets/svg/checkbox-butt-2.svg) 0 0/contain no-repeat;
}
.guest-member-option__form-body .form .form__footer.disabled-sent {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.guest-member-option__form-body .form .form__footer.disabled-sent .form__col.form__col--7 {
  display: none;
}
.guest-member-option__form-body .form .form__footer.disabled-sent .form__field {
  display: none;
}
.guest-member-option__form-body .form .form__footer.disabled-sent .form__col--5 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.guest-member-option__form-body .form .form__footer.disabled-sent .guest-member-btn {
  pointer-events: none;
  color: #fff;
  background: #D6DADE;
  border-color: #D6DADE;
}
.guest-member-option__form-body .form__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.guest-member-option__form-body .form__col.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.guest-member-option__form-body .form__col.hidden {
  display: none;
}
@media screen and (max-width: 650px) {
  .guest-member-option__form-body .form__col {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.guest-member-option__form-body .form__col .form__card-date,
.guest-member-option__form-body .form__col .form__card-cvc {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 650px) {
  .guest-member-option__form-body .form__col .form__card-date,
  .guest-member-option__form-body .form__col .form__card-cvc {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.guest-member-option__form-body .form__col .form__card-cvc .form__link {
  background: #5BCBED;
}
.guest-member-option__text {
  font-weight: 500;
  color: #475467;
}
.guest-member-option__text a {
  text-decoration: underline;
  color: #3da6b0;
}
.guest-member-option__text.s {
  margin-top: 2px;
  font-size: 12px;
  line-height: 16px;
}
.guest-member-option__text.s a {
  text-decoration: none;
  color: #3AD1F2;
  font-weight: inherit;
}
@media (min-width: 1025px) {
  .guest-member-option__text.s a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 650px) {
  .guest-member-option__text.s {
    max-width: 290px;
    font-size: 13px;
    line-height: 20px;
    margin-top: 0;
  }
}
.guest-member-option__text.m {
  max-width: 511px;
  font-size: 14px;
  line-height: 16px;
  background: #F5F5F5;
  padding: 12px;
  color: #667085;
}
@media (max-width: 1024px) {
  .guest-member-option__text.m {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .guest-member-option__text.m {
    padding-left: 14px;
  }
}
.guest-member-option__text.m .price-value {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .guest-member-option .form__row.token-method .form__col.form__col--7 {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .guest-member-option .form__row.token-method .form__question {
    font-size: 10.8px;
    line-height: 16px;
    margin-top: 6px;
  }
}
@media (max-width: 1024px) and (min-width: 577px) and (max-width: 1024px) {
  .guest-member-option .form__row.token-method .form__question {
    font-size: 13.2px;
  }
}
.guest-member-option__samerow {
  width: 100%;
  position: relative;
  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;
  gap: 20px;
}
@media (max-width: 650px) {
  .guest-member-option__samerow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.guest-member-option__samerow-holder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #27292C;
}
@media (max-width: 650px) {
  .guest-member-option__samerow-holder {
    max-width: 200px;
  }
}
.guest-member-option__samerow-radios {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 30px;
}
.guest-member-option__samerow-radios .checkbox__custom {
  background: #5BCBED;
}
.guest-member-option__cardrow {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 20px;
  padding-bottom: 4px;
}
@media (max-width: 370px) {
  .guest-member-option__cardrow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
.guest-member-option__cardrow .radio__custom {
  background: #5BCBED;
}
.guest-member-option__cards {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guest-member-option__card-item {
  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: 25px;
}
.guest-member-option__card-item img {
  width: 100%;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  overflow: hidden;
}
.guest-member-option__billing-otherbox {
  width: 100%;
  position: relative;
  margin-bottom: 21px;
  display: none;
}

.popover {
  cursor: default;
  position: relative;
}
.popover:hover .popover__body {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popover__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popover__body {
  padding-bottom: 10px;
  min-width: 200px;
  max-width: 300px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 50;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popover__body::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  -webkit-box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
          box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
}
.popover__content {
  padding: 13px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.2;
  background-color: #fff;
  -webkit-box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
          box-shadow: 0px 10.9531px 23.5px rgba(52, 60, 71, 0.05);
}

.tariff-card {
  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;
  background: rgba(230, 245, 254, 0.5);
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 700px) {
  .tariff-card {
    padding-top: 94px;
  }
}
.tariff-card-content {
  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;
  padding-left: 186px;
}
@media (max-width: 700px) {
  .tariff-card-content {
    padding-left: 0;
  }
}
.tariff-card .radio__wrap::before {
  display: none;
}
.tariff-card.active {
  -webkit-box-shadow: 0px 0.02px 17px rgba(99, 188, 207, 0.51);
          box-shadow: 0px 0.02px 17px rgba(99, 188, 207, 0.51);
}
.tariff-card.active .tariff-card__btn {
  color: #5BCBED;
  background: #fff;
}
.tariff-card.blue {
  background: #F3F6FF;
}
.tariff-card.blue.active {
  -webkit-box-shadow: 0px 0.02px 17px rgba(99, 123, 207, 0.51);
          box-shadow: 0px 0.02px 17px rgba(99, 123, 207, 0.51);
}
.tariff-card.blue.active .tariff-card__btn {
  color: #3A8DF1;
  background: #fff;
}
.tariff-card.blue .popover__icon {
  color: #3A8DF1 !important;
  background: #D8EAFF !important;
}
.tariff-card.blue .tariff-card__title {
  color: #0448a1;
}
.tariff-card.blue .tariff-card__col:last-child {
  background: #E9EDFD;
}
.tariff-card.blue .tariff-card__col.best-price {
  color: #3A8DF1;
}
.tariff-card.blue .tariff-card__btn {
  background: #3A8DF1;
  border-color: #3A8DF1;
}
@media (min-width: 1025px) {
  .tariff-card.blue .tariff-card__btn:hover {
    background: #fff;
    color: #3A8DF1;
  }
}
.tariff-card.purple {
  background: #FBF7FC;
}
.tariff-card.purple.active {
  -webkit-box-shadow: 0px 0.02px 17px rgba(173, 99, 207, 0.51);
          box-shadow: 0px 0.02px 17px rgba(173, 99, 207, 0.51);
}
.tariff-card.purple.active .tariff-card__btn {
  color: #BA45FF;
  background: #fff;
}
.tariff-card.purple .popover__icon {
  color: #BA45FF !important;
  background: rgba(224, 183, 245, 0.23) !important;
}
.tariff-card.purple .tariff-card__title {
  color: #9b59b6;
}
.tariff-card.purple .tariff-card__col:last-child {
  background: rgba(224, 183, 245, 0.13);
}
.tariff-card.purple .tariff-card__col.best-price {
  color: #BA45FF;
}
.tariff-card.purple .tariff-card__btn {
  background: #BA45FF;
  border-color: #BA45FF;
}
@media (min-width: 1025px) {
  .tariff-card.purple .tariff-card__btn:hover {
    background: #fff;
    color: #BA45FF;
  }
}
.tariff-card .popover .popover__icon {
  background: rgba(180, 237, 254, 0.7);
  color: #5BCBED;
}
@media screen and (min-width: 1025px) {
  .tariff-card .popover:hover .popover__icon {
    color: #fff !important;
    background: #3da6b0 !important;
  }
}
.tariff-card .line-through,
.tariff-card .line-through * {
  text-decoration-line: line-through !important;
}
.tariff-card__head .tariff-card__col {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: #344054;
  padding-top: 19px;
  padding-bottom: 14px;
}
@media (max-width: 1024px) {
  .tariff-card__head .tariff-card__col {
    padding-top: 13px;
  }
}
@media (max-width: 700px) {
  .tariff-card__head .tariff-card__col {
    padding-top: 11px;
  }
}
@media screen and (max-width: 1024px) {
  .tariff-card__head .tariff-card__col:first-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.tariff-card-photo {
  position: absolute;
  top: 0;
  left: 20px;
  max-width: 164px;
  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;
  pointer-events: none;
}
.tariff-card-photo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 700px) {
  .tariff-card-photo {
    max-width: 220px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-97px);
            transform: translateX(-50%) translateY(-97px);
  }
}
.tariff-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.tariff-card__body .tariff-card__col {
  padding-block: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #304659;
}
.tariff-card__body .tariff-card__col:nth-child(1) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start;
}
.tariff-card__body .tariff-card__row:last-child .tariff-card__col {
  padding-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .tariff-card__body .tariff-card__row:last-child .tariff-card__col {
    padding-bottom: 14px;
  }
}
@media (max-width: 700px) {
  .tariff-card__body .tariff-card__row:last-child .tariff-card__col {
    padding-bottom: 17px;
  }
}
.tariff-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  grid-column-gap: 5px;
}
@media (max-width: 700px) {
  .tariff-card__row {
    grid-column-gap: 8px;
  }
}
.tariff-card__col {
  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: 5px;
  padding: 5px 2px;
  min-width: 142px;
  max-width: 142px;
}
@media (min-width: 1025px) {
  .tariff-card__col br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tariff-card__col {
    min-width: 96px;
    max-width: 96px;
  }
}
@media (max-width: 700px) {
  .tariff-card__col {
    min-width: 65px;
    max-width: 65px;
  }
}
.tariff-card__col:not(:nth-child(1)) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tariff-card__col:first-child {
  padding-left: 18px;
  margin-right: auto;
  min-width: auto;
  max-width: none;
}
.tariff-card__col:last-child {
  background: #E3F4FC;
}
.tariff-card__col.best-price {
  color: #02AF72;
}
@media (max-width: 576px) {
  .tariff-card__col.best-price {
    color: #43AAC9;
  }
}
.tariff-card__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: #5BCBED;
}
.tariff-card__benefit {
  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;
  text-align: center;
  width: 142px;
  min-height: 20px;
  padding: 4px 3px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background-color: #02af72;
}
@media (max-width: 1024px) {
  .tariff-card__benefit {
    width: 96px;
  }
}
@media (max-width: 700px) {
  .tariff-card__benefit {
    width: 65px;
    font-size: 9px;
  }
}
.tariff-card__btn {
  min-height: 28px;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 4px 5px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  background: #5BCBED;
  border: 1px solid #5BCBED;
  margin-top: auto;
}
@media (min-width: 1025px) {
  .tariff-card__btn:hover {
    color: #5BCBED;
    background: #fff;
  }
}

.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 (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: 6px;
  background: linear-gradient(144deg, #2a78b3 0%, #45b9af 100%);
  position: relative;
  /* Shadow/xs */
  -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);
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.auth-page .form__submit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: 6px;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: linear-gradient(-36deg, #2a78b3 0%, #45b9af 100%);
  -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);
}
.auth-page .form__submit:hover {
  color: #fff;
}
.auth-page .form__submit:hover::after {
  opacity: 1;
}
.auth-page .form__submit .value {
  position: relative;
  z-index: 2;
}
.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: #a5ebfb;
  }
  .auth-page .header-lang__trigger:hover .header-lang__value {
    color: #a5ebfb;
  }
}
.auth-page .header-lang__trigger.active .header-lang__icon .icon {
  stroke: #a5ebfb;
}
.auth-page .header-lang__trigger.active .header-lang__value {
  color: #a5ebfb;
}
.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: #3ba1b0;
  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(109, 206, 236, 0) 1.33%, rgba(109, 206, 236, 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: #D6DADE;
  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: #3AD1F2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .error-page__colorlink:hover {
    text-decoration: underline;
  }
}
@media (max-width: 576px) {
  .error-page__colorlink {
    font-size: 14px;
  }
}

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

.page-french * {
  text-transform: none;
}
@media (max-width: 576px) {
  .page-french .filled-btn.xl-btn {
    max-width: none;
    font-size: 14px;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .page-french .claim-banner__footer {
    max-width: 465px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1025px) {
  .page-french .claim-banner__notif {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .page-french .claim-banner__notif {
    max-width: 240px;
    line-height: 15px;
  }
}
@media (max-width: 1024px) {
  .page-french .claim-banner__btn {
    max-width: none;
  }
}
@media (max-width: 450px) {
  .page-french .claim-banner__btn {
    max-width: 256px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-french .claim-banner__info {
    min-width: 373px;
    max-width: 373px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-french .claim-banner-title {
    max-width: 200px;
    line-height: 30px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-french .claim-banner__subtitle {
    max-width: 310px;
    margin-bottom: 19px;
  }
}
@media (max-width: 450px) {
  .page-french .claim-banner__subtitle {
    max-width: 280px;
    margin-bottom: 17px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-french .claim-section {
    padding-bottom: 18px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-french .claim-banner__photo {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .page-french .form__message-description {
    width: calc(100% + 5px);
  }
}
@media (max-width: 1024px) {
  .page-french .hero-homepage__subtitle br {
    display: none;
  }
}
.page-french .hero-homepage__subtitle br.mobile {
  display: none;
}
@media (max-width: 450px) {
  .page-french .hero-homepage__subtitle br.mobile {
    display: block;
  }
}
@media (max-width: 1024px) and (min-width: 577px) {
  .page-french .hero-homepage__subtitle {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .page-french .hero-homepage__subtitle {
    max-width: 280px;
  }
}
@media (max-width: 450px) {
  .page-french .hero-homepage__uppertitle {
    max-width: 260px;
  }
}
@media (max-width: 450px) {
  .page-french .await-subtitle {
    max-width: 300px;
  }
}
@media (max-width: 1024px) {
  .page-french .benefits-subtitle br {
    display: none;
  }
}
.page-french .benefits-subtitle br.tablet {
  display: none;
}
@media (min-width: 577px) and (max-width: 1024px) {
  .page-french .benefits-subtitle br.tablet {
    display: block;
  }
}
@media (max-width: 450px) {
  .page-french .benefits-subtitle {
    max-width: 300px;
  }
}
@media (min-width: 451px) {
  .page-french .benefits-title br {
    display: none;
  }
}
@media (min-width: 451px) {
  .page-french .reviews-title br {
    display: none;
  }
}
@media (max-width: 450px) {
  .page-french .reviews-subtitle {
    max-width: 280px;
  }
}
@media (max-width: 450px) {
  .page-french .reviews-notif {
    max-width: 240px;
    margin: 0 auto;
    line-height: 15px;
  }
}
@media (max-width: 450px) {
  .page-french .stories-title {
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 8px;
  }
}
@media (max-width: 1024px) {
  .page-french .stories-subtitle br {
    display: none;
  }
}
@media (max-width: 450px) {
  .page-french .stories-subtitle {
    max-width: 340px;
    margin: 0 auto;
    margin-bottom: 34px;
  }
}
@media (max-width: 450px) {
  .page-french .stories-notif {
    max-width: 240px;
    margin: 0 auto;
    line-height: 15px;
  }
}
@media (min-width: 451px) {
  .page-french .explore-header br {
    display: none;
  }
}
@media (max-width: 450px) {
  .page-french .explore-header {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .page-french .guest-member-option__samerow-holder {
    max-width: 260px;
  }
}
@media (max-width: 1024px) and (min-width: 577px) {
  .page-french .tariff-card__body .tariff-card__col {
    font-size: 11.4px;
  }
}
.page-french .auth-page__hidefooter .auth-page__welcome-content {
  max-width: 470px;
}
@media (max-width: 1024px) {
  .page-french .auth-page__welcome-content {
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .page-french .auth-page__footer p {
    max-width: 345px;
  }
}
@media (max-width: 576px) {
  .page-french .payment-error-modal__text {
    padding: 0 5px;
    margin-bottom: 15px;
  }
}
@media (min-width: 651px) {
  .page-french .header-contact-dropbox .country-select .select__dropdown {
    width: 114%;
    right: 0;
    left: unset;
  }
}

.page-italy * {
  text-transform: none;
}
@media (max-width: 1024px) {
  .page-italy .hero-homepage__subtitle br {
    display: none;
  }
}
@media (max-width: 576px) {
  .page-italy .hero-homepage__subtitle br {
    display: block;
  }
}
.page-italy .hero-homepage__subtitle br.tablet {
  display: none;
}
@media (max-width: 1024px) {
  .page-italy .hero-homepage__subtitle br.tablet {
    display: block;
  }
}
@media (max-width: 700px) {
  .page-italy .hero-homepage__subtitle br.tablet {
    display: none;
  }
}
@media (max-width: 450px) {
  .page-italy .hero-homepage__subtitle {
    max-width: 250px;
  }
}
@media (min-width: 1025px) {
  .page-italy .reviews-btn {
    padding: 13px 25px;
  }
}
@media (max-width: 1024px) {
  .page-italy .reviews-btn {
    min-width: 338px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .page-italy .reviews-btn {
    min-width: auto;
    width: 100%;
    font-size: 16px;
    max-width: 268px;
  }
}
@media (max-width: 450px) {
  .page-italy .reviews-notif {
    max-width: 240px;
    margin: 0 auto;
    line-height: 15px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-italy .reviews-text {
    max-width: 325px;
  }
}
@media (max-width: 450px) {
  .page-italy .reviews-subtitle {
    max-width: 278px;
  }
}
@media (min-width: 1025px) {
  .page-italy .stories-btn {
    padding: 13px 22px;
  }
}
@media (max-width: 1024px) {
  .page-italy .stories-btn {
    font-size: 18px;
    min-width: 338px;
  }
}
@media (max-width: 576px) {
  .page-italy .stories-btn {
    min-width: auto;
    width: 100%;
    font-size: 16px;
    max-width: 284px;
  }
}
@media (max-width: 450px) {
  .page-italy .stories-notif {
    max-width: 240px;
    margin: 0 auto;
    line-height: 15px;
  }
}
@media (max-width: 450px) {
  .page-italy .stories-title {
    max-width: 240px;
    margin: 0 auto;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .page-italy .stories-subtitle br {
    display: none;
  }
}
@media (max-width: 450px) {
  .page-italy .stories-subtitle {
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 34px;
  }
}
.page-italy .benefits-card__name {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 1024px) {
  .page-italy .benefits-card__name {
    width: 100%;
    margin: 0;
    line-height: 20px;
  }
}
@media (max-width: 450px) {
  .page-italy .benefits-subtitle {
    max-width: 310px;
  }
}
@media (min-width: 1025px) {
  .page-italy .claim-banner__footer {
    max-width: 356px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .page-italy .claim-banner__notif {
    max-width: 240px;
    line-height: 15px;
  }
}
.page-italy .claim-banner__btn {
  max-width: 356px;
  min-width: auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .page-italy .claim-banner__btn {
    max-width: none;
    min-width: 293px;
    width: auto;
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .page-italy .claim-banner__btn {
    max-width: 284px;
    font-size: 16px;
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-italy .claim-banner__info {
    min-width: 373px;
    max-width: 373px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-italy .claim-banner-title {
    line-height: 30px;
    margin-bottom: 14px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-italy .claim-banner__subtitle {
    max-width: 330px;
    margin-bottom: 27px;
  }
}
@media (max-width: 450px) {
  .page-italy .claim-banner__subtitle {
    max-width: 285px;
  }
}
@media (max-width: 1024px) and (min-width: 701px) {
  .page-italy .claim-banner__photo {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .page-italy .error-page-content {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (max-width: 576px) {
  .page-italy .payment-error-modal__title {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media (max-width: 576px) {
  .page-italy .payment-error-modal__text {
    padding: 0 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .page-italy .auth-page__welcome-box {
    padding: 32px 40px;
  }
}
.page-italy .auth-page__welcome-content {
  max-width: 454px;
}
@media (max-width: 576px) {
  .page-italy .auth-page__footer p {
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .page-italy .form__double-radio-wrap {
    gap: 7px;
  }
}
@media (max-width: 650px) {
  .page-italy .guest-member-option__samerow-holder {
    max-width: 260px;
  }
}
@media (max-width: 450px) {
  .page-italy .tariff-card__body .tariff-card__col {
    font-size: 11.5px;
  }
}
@media (max-width: 1024px) {
  .page-italy .guest-member-hero-title {
    max-width: 440px;
    margin: 0 auto;
  }
}
@media (min-width: 451px) {
  .page-italy .guest-member-hero-title br {
    display: none;
  }
}
@media (min-width: 651px) {
  .page-italy .header-contact-dropbox .country-select .select__dropdown {
    width: 114%;
    right: 0;
    left: unset;
  }
}
@media (min-width: 577px) {
  .page-italy .explore-header br {
    display: none;
  }
}
.page-italy .error-page__title {
  font-weight: 700;
}
@media (min-width: 1025px) {
  .page-italy .form__col.mt-minus-col {
    margin-top: -50px;
  }
}

.page-romanian * {
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .page-romanian .filled-btn.xl-btn {
    max-width: 354px;
    width: 100%;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .filled-btn.xl-btn {
    max-width: 282px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .filled-btn.xl-btn {
    padding-inline: 5px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .hero-homepage__title b {
    display: block;
  }
}
.page-romanian .hero-homepage__subtitle {
  margin-bottom: 29px;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .hero-homepage__subtitle {
    margin-bottom: 39px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .hero-homepage__subtitle {
    margin-bottom: 34px;
    max-width: none;
  }
  .page-romanian .hero-homepage__subtitle br {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .reviews-section {
    padding-bottom: 16.5px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .reviews-section {
    padding-top: 50px;
    background: linear-gradient(183deg, rgba(109, 206, 236, 0.13) 12%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 100%);
  }
}
.page-romanian .reviews-title {
  margin-bottom: 8px;
}
.page-romanian .reviews-subtitle {
  margin-bottom: 46px;
}
@media screen and (max-width: 576px) {
  .page-romanian .reviews-subtitle {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 450px) {
  .page-romanian .reviews-subtitle {
    max-width: 285px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .reviews__slider {
    margin-bottom: 48px;
  }
}
.page-romanian .reviews-slide {
  height: auto;
}
.page-romanian .await-section {
  padding-top: 21px;
}
@media screen and (min-width: 1025px) {
  .page-romanian .await-section {
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .await-section {
    padding-top: 31px;
  }
}
.page-romanian .await-subtitle br {
  display: none;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .await-subtitle {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .await-subtitle {
    margin-bottom: 25px;
  }
  .page-romanian .await-subtitle br {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .await-card {
    padding-bottom: 32px;
    min-height: 244px;
  }
  .page-romanian .await-card.pb-d-23 {
    padding-bottom: 23px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .await-card.h-t-232 {
    min-height: 232px;
  }
  .page-romanian .await-card.h-t-258 {
    min-height: 258px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .await-card.h-m-230 {
    min-height: 230px;
  }
  .page-romanian .await-card.h-m-232 {
    min-height: 232px;
  }
  .page-romanian .await-card.h-m-238 {
    min-height: 238px;
  }
  .page-romanian .await-card.h-m-254 {
    min-height: 254px;
  }
  .page-romanian .await-card.h-m-258 {
    min-height: 258px;
  }
}
.page-romanian .await-card__name {
  line-height: 22px;
}
@media screen and (min-width: 1025px) {
  .page-romanian .await-card__name.w-d-243 {
    max-width: 243px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .await-card__name {
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .await-card__description.w-d-225 {
    max-width: 225px;
  }
  .page-romanian .await-card__description.m-w-d-243 {
    max-width: 243px;
  }
  .page-romanian .await-card__description.w-calc-5 {
    width: calc(100% + 5px);
  }
  .page-romanian .await-card__description.w-d-243 {
    max-width: 243px;
  }
}
@media screen and (max-width: 400px) {
  .page-romanian .await-card__description.m-w-mob-244 {
    max-width: 244px;
  }
}
.page-romanian .stories-subtitle {
  margin-bottom: 28px;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .stories-subtitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .stories-subtitle {
    max-width: 277px;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .page-romanian .stories-subtitle br {
    display: none;
  }
}
.page-romanian .stories-section {
  padding-bottom: 28px;
}
@media screen and (max-width: 576px) {
  .page-romanian .stories-section {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .stories-slider {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .stories-btn {
    max-width: 306px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .explore-section {
    padding-bottom: 115px;
  }
}
.page-romanian .explore-header br {
  display: none;
}
@media screen and (max-width: 576px) {
  .page-romanian .explore-header br {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .explore-description-bottom.m-w-d-348 {
    max-width: 348px;
  }
}
@media screen and (min-width: 577px) {
  .page-romanian .explore-description-bottom {
    max-width: 406px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .benefits-section {
    padding-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .benefits-subtitle {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .benefits-card.p-m-10 {
    padding-inline: 10px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .benefits-card__name.w-t-calc {
    width: calc(100% + 12px);
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .claim-section {
    padding-bottom: 35px;
  }
}
.page-romanian .claim-banner-title {
  text-transform: capitalize;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .claim-banner__subtitle {
    max-width: 318px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .claim-banner__subtitle {
    max-width: 284px;
    margin-bottom: 17px;
  }
}
.page-romanian .claim-banner__btn {
  max-width: 282px;
}
@media screen and (min-width: 1025px) {
  .page-romanian .claim-banner__footer {
    max-width: 354px;
  }
}
.page-romanian .claim-banner__notif {
  max-width: 354px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  .page-romanian .claim-banner__notif {
    max-width: 282px;
  }
}
.page-romanian .header-start-btn .mobile {
  display: none;
}
@media screen and (max-width: 400px) {
  .page-romanian .header-start-btn .mobile {
    display: block;
  }
}
@media screen and (min-width: 651px) {
  .page-romanian .flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .header-contact-dropdown {
    right: -130px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .header-contact-dropdown {
    max-width: 695px;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .header-contact__sidebar {
    max-width: 302px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .header-contact__sidebar {
    max-width: 229px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact__sidebar {
    padding-bottom: 31px;
  }
}
@media screen and (min-width: 577px) {
  .page-romanian .header-contact__person {
    max-width: none;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact__person {
    max-width: 210px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact__person-info {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact__person-links {
    font-size: 14px;
  }
}
@media screen and (min-width: 577px) {
  .page-romanian .header-contact__person-top {
    max-width: 155px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact__person-top {
    max-width: 183px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 577px) {
  .page-romanian .header-contact-form__name {
    line-height: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact-form__name {
    font-size: 18px;
  }
}
.page-romanian .header-contact-form__description {
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact-form__description {
    line-height: 26px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .header-contact-form__content .form__field-name.w-calc-6 {
    width: calc(100% + 6px);
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .header-contact-form__content .name {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-romanian .header-contact-form__content .email {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-romanian .header-contact-form__content .contact {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .page-romanian .header-contact-form__content .country {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .page-romanian .header-contact-form__content .phone {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .page-romanian .header-contact-form__content .time {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .page-romanian .header-contact-form__content .message {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}
.page-romanian .auth-page__welcome-title {
  text-transform: capitalize;
}
.page-romanian .auth-page__welcome-content {
  max-width: 364px;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .auth-page__welcome-content {
    max-width: 554px;
  }
}
@media screen and (max-width: 450px) {
  .page-romanian .auth-page__welcome-content {
    max-width: 337px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .auth-page__hidefooter .auth-page__welcome-content {
    max-width: 498px;
  }
}
@media screen and (max-width: 400px) {
  .page-romanian .auth-page__hidefooter .auth-page__welcome-content p {
    margin-left: -11px;
    width: calc(100% + 22px);
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .tariff-card__benefit {
    font-size: 9px;
  }
}
@media screen and (max-width: 650px) {
  .page-romanian .guest-member-option__samerow-holder {
    max-width: none;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .guest-member-option .form__question p {
    font-size: 11px;
    font-weight: 400;
    line-height: 15.625px;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian.guest-member-option-page .header-contact-dropdown {
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .page-romanian.error-page .error-page__title {
    max-width: 298px;
  }
}
@media screen and (max-width: 400px) {
  .page-romanian .info-stat-modal .modal-box {
    padding-inline: 14px 9px;
  }
}
@media screen and (max-width: 576px) {
  .page-romanian .payment-error-modal__title.mw-m-225 {
    max-width: 225px;
  }
}
@media screen and (max-width: 494px) {
  .page-romanian .payment-error-modal__text.mw-m-232 {
    max-width: 232px;
  }
}
@media screen and (min-width: 1025px) {
  .page-romanian .payment-error-modal__text.mb-d-15 {
    margin-bottom: 15px;
  }
}
.page-romanian .payment-error-modal__text.br-t-none {
  max-width: 286px;
  margin-bottom: 21px;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-romanian .payment-error-modal__text.br-t-none br {
    display: none;
  }
}
.page-romanian .payment-successful-modal__link .underline {
  text-decoration: underline;
}

.page-spain * {
  text-transform: none;
}
.page-spain .underline._pc:after {
  display: block;
}
@media screen and (max-width: 1024px) {
  .page-spain .underline._pc:after {
    display: none;
  }
}
.page-spain .underline._tablet:after {
  display: block;
}
@media screen and (min-width: 1025px) {
  .page-spain .underline._tablet:after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .underline._tablet:after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .underline._sm:after {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .page-spain .br-pc {
    display: none;
  }
}
.page-spain .br-tablet {
  display: none;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .br-tablet {
    display: block;
  }
}
@media screen and (min-width: 577px) {
  .page-spain .br-sm {
    display: none;
  }
}
.page-spain .payment-error-modal__text.mw-343 {
  max-width: 343px;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 500px) {
  .page-spain .payment-error-modal__text.mb-16 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .hero-homepage__subtitle {
    margin-bottom: 29px;
  }
}
.page-spain .reviews-subtitle {
  max-width: 100%;
}
@media screen and (min-width: 1025px) {
  .page-spain .reviews-btn {
    min-width: 348px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .reviews-slide {
    height: auto;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .await-section {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .await-subtitle {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .await-card.card-2 .await-card__description {
    max-width: 263px;
  }
}
@media screen and (min-width: 577px) {
  .page-spain .await-card.card-3 .await-card__name br {
    display: none;
  }
}
@media screen and (min-width: 577px) {
  .page-spain .await-card.card-3 .await-card__description {
    max-width: 258px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .await-card__name {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .stories-section {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .stories-subtitle {
    max-width: 296px;
    margin-inline: auto;
    margin-bottom: 24px;
  }
  .page-spain .stories-subtitle br:not(.br-mobile) {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .stories-subtitle .br-mobile {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .stories-subtitle .br-mobile {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .stories-slider {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .stories-btn {
    min-width: 348px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .stories-btn {
    min-width: 272px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .benefits-section {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .benefits-subtitle {
    margin-bottom: 47px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .benefits-card {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .benefits-card {
    padding-inline: 5px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .claim-banner {
    grid-column-gap: 13px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .claim-banner-title {
    font-weight: 700;
  }
}
@media screen and (max-width: 1024px) {
  .page-spain .claim-banner__subtitle {
    max-width: 292px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .claim-banner__footer {
    max-width: 358px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .claim-banner__footer .claim-banner__btn {
    min-width: 275px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .claim-banner__footer .claim-banner__btn {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .claim-banner__footer .claim-banner__btn {
    min-width: 273px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .claim-banner__footer .claim-banner__notif {
    white-space: nowrap;
  }
}
@media screen and (min-width: 577px) {
  .page-spain .claim-banner__footer .claim-banner__notif br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .claim-banner__footer .claim-banner__notif {
    line-height: 14px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .claim-banner__photo {
    max-width: 326px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .form__message-description {
    width: calc(100% + 1px);
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-spain .guest-member-option {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .page-spain .guest-member-option__form-body .form .form__footer .form__field {
    max-width: 306px;
  }
  .page-spain .guest-member-option__form-body .form .form__footer .form__field br {
    display: none;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .page-spain .guest-member-option__samerow-holder {
    line-height: 1;
  }
}
@media screen and (max-width: 650px) {
  .page-spain .guest-member-option__samerow-holder {
    max-width: 280px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .guest-member-option__cardrow {
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .guest-member-option__cardrow .guest-member-option__cards,
  .page-spain .guest-member-option__cardrow .flex-fight {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .footer__links {
    max-width: 100%;
    grid-column-gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .page-spain .footer__links li:after {
    right: -10px;
  }
}
@media screen and (min-width: 1025px) {
  .page-spain .header-contact-form__content .form__error.w-desk {
    width: calc(100% + 9px);
  }
}
.page-spain .auth-page__welcome-box {
  padding-inline: 16px;
}

.page-portugal * {
  text-transform: none;
}
@media screen and (max-width: 576px) {
  .page-portugal .hero-homepage__subtitle {
    max-width: 295px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .reviews-section {
    padding-block: 33px 25px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .reviews-title {
    max-width: 266px;
    margin-inline: auto;
  }
}
.page-portugal .reviews-subtitle .tablet {
  display: none;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .reviews-subtitle .tablet {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .reviews-subtitle {
    max-width: 297px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .reviews-slide__saved-textwrap {
    min-height: 40px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .await-section {
    padding-block: 20px 10px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .await-subtitle {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .await-subtitle {
    margin-bottom: 26px;
    max-width: none;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .await-list {
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .await-card {
    min-height: 240px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .await-card {
    min-height: 248px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .await-card.m-h-mob-234 {
    min-height: 234px;
  }
  .page-portugal .await-card.m-h-mob-250 {
    min-height: 250px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .await-card-wrap {
    margin-bottom: 37px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .await-card-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .await-card__name.w-d-calc_5 {
    width: calc(100% + 6px);
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .await-card__description.mw-d-239 {
    max-width: 239px;
  }
}
@media screen and (max-width: 400px) {
  .page-portugal .await-card__description.mw-m-263 {
    max-width: 263px;
  }
}
@media screen and (max-width: 400px) {
  .page-portugal .await-card__description.mw-m-233 {
    max-width: 233px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .stories-subtitle {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .stories-subtitle {
    margin-bottom: 20px;
  }
  .page-portugal .stories-subtitle br {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .page-portugal .stories-subtitle {
    max-width: 271px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .stories-slider {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .benefits-subtitle {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .page-portugal .explore-header {
    padding: 3px 6px;
  }
}
@media screen and (max-width: 450px) {
  .page-portugal .explore-description-bottom {
    max-width: 289px;
  }
}
.page-portugal .claim-banner-title {
  text-transform: capitalize;
}
@media screen and (max-width: 450px) {
  .page-portugal .claim-banner__subtitle {
    max-width: none;
    width: calc(100% + 6px);
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .header-contact-form__description {
    font-weight: 500;
    font-size: 12px;
  }
}
@media screen and (min-width: 577px) {
  .page-portugal .sent-message-status.sent-message-status-success {
    padding-inline: 36px;
  }
}
@media screen and (min-width: 577px) {
  .page-portugal .sent-message-status.sent-message-status-success .sent-message-status__text {
    line-height: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .sent-message-status.sent-message-status-success .sent-message-status__text {
    max-width: 229px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 400px) {
  .page-portugal .payment-error-modal__box {
    padding-inline: 9px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .payment-error-modal .payment-error-modal__title.mw-344 {
    max-width: 344px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .payment-error-modal .payment-error-modal__text.mb-21 {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 425px) {
  .page-portugal .payment-error-modal .payment-error-modal__text.mw-m-224 {
    max-width: 224px;
  }
}
.page-portugal .payment-error-modal .payment-successful-modal__link .underline {
  text-decoration: underline;
}
@media screen and (max-width: 576px) {
  .page-portugal .payment-error-modal__btn.mw-m-226 {
    max-width: 226px;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .page-portugal .footer__links {
    max-width: none;
  }
}
@media screen and (max-width: 400px) {
  .page-portugal .footer__copyright {
    width: calc(100% + 8px);
  }
}
@media (max-width: 650px) {
  .page-portugal .guest-member-option__samerow-holder {
    max-width: 280px;
  }
}
@media screen and (min-width: 1025px) {
  .page-portugal .guest-member-option__wrap .form__col--7.flex-68 {
    -ms-flex-preferred-size: 68%;
        flex-basis: 68%;
  }
  .page-portugal .guest-member-option__wrap .form__col--7.flex-68 input.form__input {
    max-width: 532px;
  }
  .page-portugal .guest-member-option__wrap .form__col--7.flex-68 .typography-d {
    font-size: 11px;
    font-weight: 400;
    margin-top: 13px;
  }
}
.page-portugal .guest-member-option__wrap .form__col--7.max-w-0 {
  max-width: none;
}
.page-portugal .guest-member-option__wrap .guest-member-option__text br {
  display: none;
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .guest-member-option__wrap .guest-member-option__text br {
    display: block;
  }
}
.page-portugal .auth-page__welcome-title br {
  display: none;
}
@media screen and (min-width: 1025px) {
  .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__welcome-title {
    max-width: 505px;
  }
}
@media screen and (max-width: 450px) {
  .page-portugal .auth-page__welcome-title br {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .page-portugal .auth-page__subtitle {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .auth-page__hideheading .auth-page__welcome-content {
    max-width: 554px;
    width: 100%;
  }
}
@media screen and (min-width: 577px) and (max-width: 1024px) {
  .page-portugal .auth-page__hidefooter .auth-page__welcome-content {
    max-width: 454px;
    width: 100%;
  }
}
.page-portugal .auth-page__footer br {
  display: none;
}
@media screen and (max-width: 576px) {
  .page-portugal .auth-page__footer p {
    max-width: none;
  }
  .page-portugal .auth-page__footer br {
    display: block;
  }
}
/*# sourceMappingURL=maps/vip.css.map */
