:root {
  --grey-700: #3c4247;
  --grey-900: #181c1f;
  --blue: #1470cc;
  --green: #009b4a;
  --cyan: #65def1;
  --orange: #ff9f1c;
  --cyan-dark: #0f3d3d;
  --grey-200: #e6e8eb;
  --grey-100: #f5f6f7;
  --grey-800: #292e33;
  --grey-600: #565e66;
  --grey-500: #6d7985;
  --grey-400: #96a4b2;
  --grey-300: #b8c2cc;
  --green-light: #dcf5e8;
  --white: white;
  --green-dark: #006631;
  --green-800: #004722;
  --cyan-light: #b8e6e6;
  --cyan-light-2: #e0fbff;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--grey-700);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

h1 {
  color: var(--grey-900);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
}

h2 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
}

h3 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

h4 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

h5 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

h6 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--grey-900);
  font-weight: 700;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 15px;
  line-height: 150%;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.bg-green {
  background-color: var(--green);
}

.bg-cyan {
  background-color: var(--cyan);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-cyan-dark {
  background-color: var(--cyan-dark);
}

.bg-cyan-medium {
  background-color: #237a7a;
}

.bg-grey-900 {
  background-color: var(--grey-900);
}

.bg-grey-700 {
  background-color: var(--grey-700);
}

.bg-grey-200 {
  background-color: var(--grey-200);
}

.bg-grey-100 {
  background-color: var(--grey-100);
}

.bg-grey-800 {
  background-color: var(--grey-800);
}

.bg-grey-600 {
  background-color: var(--grey-600);
}

.bg-grey-500 {
  background-color: var(--grey-500);
}

.bg-grey-400 {
  background-color: var(--grey-400);
}

.bg-gray-300 {
  background-color: var(--grey-300);
}

.text-900 {
  color: var(--grey-900);
}

.text-800 {
  color: var(--grey-800);
}

.text-700 {
  color: var(--grey-700);
}

.text-600 {
  color: var(--grey-600);
}

.text-500 {
  color: var(--grey-500);
}

.text-400 {
  color: var(--grey-400);
}

.text-300 {
  color: var(--grey-300);
}

.text-200 {
  color: var(--grey-200);
}

.text-100 {
  color: var(--grey-100);
}

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

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

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

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

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

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

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

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

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

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

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

.grid-3 {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.icon-square {
  background-color: var(--green-light);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.bg-green-light {
  background-color: var(--green-light);
}

.icon {
  width: 28px;
  height: 28px;
}

.flex-cc {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.max-width-760 {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.grid-4 {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-18 {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.grid-2-alt {
  grid-column-gap: 88px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button {
  background-color: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--green-dark);
}

.button:active {
  background-color: var(--green-800);
}

.button.is--filter {
  cursor: pointer;
}

.steps__rectangle {
  background-color: var(--grey-200);
  border-radius: 16px;
  width: 100%;
  padding-bottom: 66.66%;
  position: relative;
}

.steps__inner {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.steps__image {
  width: 100%;
  max-width: 220px;
}

.steps__num {
  background-color: var(--grey-900);
  color: var(--white);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  position: absolute;
  inset: auto auto 12px 12px;
}

.link-bold {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.faq__heading {
  width: 100%;
  max-width: 360px;
}

.accordion__heading {
  grid-column-gap: 20px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.heading-16 {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.accordion__icon-container {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: relative;
}

.accordion {
  padding-top: 8px;
  padding-bottom: 8px;
}

.accordion-text {
  overflow: hidden;
}

.accordion__icon {
  position: absolute;
  transform: rotate(90deg);
}

.line {
  background-color: var(--grey-300);
  width: 100%;
  height: 1px;
}

.accordion__group {
  margin-top: -24px;
  margin-bottom: -24px;
}

.cta-partners {
  background-color: var(--cyan-dark);
  background-image: url('../images/cta-bg.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  padding: 100px 40px;
}

.heading-40 {
  letter-spacing: -.01em;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
}

.text-18 {
  font-size: 18px;
  line-height: 150%;
}

.color-white {
  color: var(--white);
}

.footer {
  padding-left: 48px;
  padding-right: 48px;
}

.footer__grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 32.1429fr 67.8571fr;
  grid-auto-columns: 1fr;
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
}

.footer__grid-inner {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer__link {
  color: var(--grey-700);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.footer__link:hover {
  color: var(--grey-900);
}

.footer__small-text {
  font-size: 13px;
  line-height: 150%;
}

.footer__social-icon {
  width: 20px;
  height: 20px;
  line-height: 100%;
}

.footer__social-link {
  color: var(--grey-500);
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.footer__social-link:hover {
  color: var(--grey-900);
}

.footer__social-links {
  grid-column-gap: 20px;
  display: flex;
}

.footer__bottom {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  border-top: 1px solid var(--grey-300);
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.footer__bottom-text {
  font-size: 13px;
  line-height: 150%;
}

.footer__bottom-link {
  color: var(--grey-700);
  font-size: 13px;
  line-height: 150%;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.footer__bottom-link:hover {
  color: var(--grey-900);
}

.destination__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.destination {
  grid-column-gap: 16px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  align-items: center;
  padding: 16px;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.destination:hover {
  border-color: var(--green);
  background-color: var(--green-light);
}

.destination__flag {
  border: 1px solid var(--grey-300);
  border-radius: 4px;
  flex: none;
  width: 30px;
  height: 22px;
}

.destination__text {
  color: var(--grey-900);
  white-space: nowrap;
  max-width: 196px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  overflow: hidden;
}

.about {
  background-color: var(--cyan-dark);
  padding-top: 216px;
}

.max-width-620 {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.text-white {
  color: var(--white);
}

.text-cyan-light {
  color: var(--cyan-light);
}

.heading-56 {
  color: var(--grey-900);
  letter-spacing: -.015em;
  font-size: 56px;
  font-weight: 600;
  line-height: 125%;
}

.our-leadership {
  background-color: var(--cyan-light-2);
  padding: 160px 48px;
}

.icon-square__num {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.testimonial-partnership {
  background-color: var(--cyan-dark);
  padding: 160px 40px;
}

.testimonial-parnership__grid {
  grid-column-gap: 72px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 39.3382fr 60.6618fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-24 {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

.business-features {
  background-color: var(--grey-100);
  padding: 160px 48px;
}

.business-features__image-container {
  margin: -40px;
}

.testimonials-business {
  padding: 160px 48px;
}

.text-black {
  color: var(--grey-900);
}

.header {
  z-index: 100;
  background-color: var(--white);
  width: 100%;
  padding: 24px 48px;
  position: fixed;
  inset: 0% 0% auto;
}

.header__flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header__logo-link {
  flex: none;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
}

.header__logo-link:hover {
  opacity: .66;
}

.header__logo {
  width: 192px;
}

.header__cta {
  background-color: var(--green-light);
  color: var(--green-dark);
  border-radius: 8px;
  flex: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.header__cta:hover {
  background-color: var(--green);
  color: var(--white);
}

.header__cta:active {
  background-color: var(--green-dark);
}

.header__left {
  grid-column-gap: 32px;
  display: flex;
}

.header__right {
  grid-column-gap: 40px;
  justify-content: flex-end;
  display: flex;
}

.header__menu {
  grid-column-gap: 32px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header__menu-link {
  color: var(--grey-900);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.header__menu-link:hover {
  color: var(--grey-500);
}

.intro {
  margin-top: 96px;
  padding-top: 80px;
}

.intro__logos {
  grid-column-gap: 48px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-section-partnership {
  background-color: var(--grey-100);
  padding: 120px 48px;
  overflow: hidden;
}

.form-section__grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 58.9285fr 41.0715fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.steps-list {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 28px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.steps-list__num {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-weight: 600;
  line-height: 28px;
}

.steps-list__right {
  padding-top: 2px;
}

.steps-list__left {
  background-image: url('../images/steps-list-line.svg');
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: 28px 28px;
}

.form-logos {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.form {
  z-index: 10;
  background-color: var(--white);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
}

.form-section__left {
  padding-top: 48px;
}

.form__label {
  color: var(--grey-900);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.form__field {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  height: 48px;
  margin-bottom: 16px;
  padding: 13.5px 16px;
  font-size: 14px;
  line-height: 150%;
}

.form__textarea {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  min-height: 80px;
  margin-bottom: 16px;
  padding: 13.5px 16px;
}

.form__button {
  background-color: var(--green);
  color: var(--white);
  border-radius: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 13.5px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.form__button:hover {
  background-color: var(--green-dark);
}

.max-width-540 {
  width: 100%;
  max-width: 540px;
}

.max-width-460 {
  width: 100%;
  max-width: 460px;
}

.form-section__right {
  flex: none;
  width: 460px;
  position: relative;
}

.form-section-business__background {
  margin-top: -96px;
  margin-left: -100px;
  margin-right: -100px;
  position: absolute;
  inset: 0%;
}

.form-get-in-touch {
  background-color: var(--grey-100);
  margin-top: 96px;
  padding: 120px 48px;
  overflow: hidden;
}

.review {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 40px;
}

.review__flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.review__left {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.review__flags {
  grid-column-gap: 4px;
  align-items: center;
  display: flex;
}

.review__flag {
  border: 1px solid var(--grey-300);
  border-radius: 4px;
  width: 23px;
  height: 17px;
}

.review__right {
  grid-column-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.review__photo {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.review__name {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.blog-featured {
  background-color: var(--cyan-dark);
  margin-top: 96px;
  padding: 80px 40px;
}

.blog-featured__image-container {
  border-radius: 16px;
  overflow: hidden;
}

.blog-featured__text {
  margin-left: 24px;
}

.blog-featured__small-text {
  color: var(--cyan-light);
  font-size: 14px;
  line-height: 150%;
}

.blog-featured__date {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.blog-featured__label {
  background-color: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 3.5px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  display: inline-block;
}

.blog__thumbnail-container {
  border-radius: 16px;
  overflow: hidden;
}

.blog__label {
  background-color: var(--green-light);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 3.5px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  display: inline-block;
}

.blog__date {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.blog__small-text {
  color: var(--grey-700);
  font-size: 14px;
  line-height: 150%;
}

.blog {
  padding: 80px 40px;
}

.blog-featured__min-read {
  grid-column-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog__min-read {
  grid-column-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.newsletter {
  background-color: var(--grey-100);
  padding: 80px 40px;
}

.newsletter__field {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  height: 48px;
  margin-bottom: 16px;
  padding: 13.5px 16px;
}

.newsletter__button {
  background-color: var(--green);
  border-radius: 8px;
  width: 100%;
  padding: 13.5px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.newsletter__button:hover {
  background-color: var(--green-dark);
}

.newsletter__form {
  width: 100%;
  max-width: 360px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__small-text {
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 150%;
}

.newsletter__small-text-link {
  color: var(--blue);
  text-decoration: underline;
}

.newsletter__small-text-link:hover {
  text-decoration: none;
}

.quote__wrapper {
  position: relative;
}

.quote__author {
  grid-column-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quote__image {
  border-radius: 50%;
  flex: none;
  width: 64px;
  height: 64px;
}

.quote__marks-left {
  width: 20px;
  height: 16px;
  position: absolute;
  inset: 0% auto auto -32px;
}

.quote__marks-right {
  width: 20px;
  height: 16px;
  position: absolute;
  inset: auto -32px 0% auto;
}

.quote {
  background-image: url('../images/quote-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-top: 160px;
  margin-bottom: 160px;
  padding: 48px;
}

.grid-bullets {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.unordered-list {
  margin-bottom: 0;
  padding-left: 0;
}

.unordered-list__item {
  background-image: url('../images/bullet.svg');
  background-position: 0 2px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 36px;
  list-style-type: none;
}

.form-section-business {
  background-color: var(--grey-100);
  padding: 120px 48px;
  overflow: hidden;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.search {
  grid-column-gap: 8px;
  border: 1px solid var(--grey-300);
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 3px;
  display: flex;
}

.search.is--hidden {
  display: none;
}

.search.is--combo-box {
  position: relative;
}

.search__input {
  background-color: #0000;
  border: 1px #000;
  height: 52px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
  font-size: 15px;
}

.search__button {
  background-color: var(--green);
  background-image: url('../images/search.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 50%;
  flex: none;
  width: 52px;
  height: 52px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  overflow: visible;
}

.search__button:hover {
  background-color: var(--green-dark);
}

.search__button:active {
  background-color: var(--green-800);
}

.search__button.is-decorate:hover {
  background-color: var(--green);
}

.form-contacts {
  background-color: var(--cyan-dark);
  background-image: url('../images/contact-bg.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 96px;
  padding: 80px 48px;
  overflow: hidden;
}

.form-section-contacts__bg {
  margin-top: -110px;
  margin-left: -100px;
  margin-right: -100px;
  position: absolute;
  inset: 0%;
}

.contacts-links {
  background-color: var(--grey-100);
  padding: 80px 48px;
}

.contacts-links__item {
  border: 1px solid var(--grey-300);
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
}

.contacts-links__link {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.text-gray {
  color: var(--grey-700);
}

.form-section-contacts__image {
  width: 660px;
  height: 899px;
  display: block;
}

.footer__logo-link {
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
}

.footer__logo-link:hover {
  opacity: .66;
}

.for-personal-use {
  margin-top: 96px;
  padding-left: 8px;
  padding-right: 8px;
}

.for-personal-use__bg {
  background-color: var(--cyan-dark);
  background-image: url('../images/for-personal-use-bg.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: 16px;
  align-items: center;
  width: 100%;
  max-width: 1408px;
  min-height: 580px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 40px;
  display: flex;
}

.search-for-personal-use {
  grid-column-gap: 8px;
  border: 1px solid var(--grey-900);
  background-color: var(--white);
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 3px;
  display: flex;
}

.for-personal-use__logos {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.cta-unleash__bg {
  background-color: var(--cyan-dark);
  background-image: url('../images/unleash-bg.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 532px;
  border-radius: 16px;
  padding: 120px 64px;
}

.countries {
  margin-top: 96px;
  padding-top: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

.cta-countries {
  background-color: var(--cyan-light-2);
  background-image: url('../images/cta-bg.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 600px;
  border-radius: 16px;
  padding: 120px 64px;
}

.country {
  padding-left: 8px;
  padding-right: 8px;
}

.country__bg {
  background-color: var(--grey-900);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  align-items: center;
  width: 100%;
  max-width: 1408px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.country__flag {
  border-radius: 4px;
  width: 56px;
  height: 40px;
}

.country__name {
  z-index: 1;
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  transform: translate(0, -32px);
}

.cards {
  z-index: 5;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.cards__bg {
  z-index: 100;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
}

.cards__bg.is--hidden {
  display: none;
}

.cards__table-head {
  border-top: 1px solid var(--grey-300);
  display: flex;
}

.cards__grid {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 3fr 4fr 6fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-14 {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.heading-14.text-green-700 {
  color: var(--green-dark);
}

.cards__item {
  border-top: 1px solid var(--grey-300);
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.text-15 {
  flex: none;
  font-size: 15px;
  line-height: 150%;
}

.text-15.text-gray.text-600 {
  font-weight: 600;
}

.text-15.text-gray.tablet-displayed {
  display: none;
}

.cards__icon {
  grid-column-gap: 16px;
  border-radius: 4px;
  flex: none;
  align-items: center;
  height: 60px;
  display: flex;
}

.cards__icon.is--small {
  width: 64px;
  height: auto;
}

.card {
  padding-left: 8px;
  padding-right: 8px;
}

.card__bg {
  border-radius: 16px;
  width: 100%;
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.card__container {
  z-index: 5;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.card__heading {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.card__image {
  border-radius: 24px;
}

.card__details {
  background-color: #ffffff14;
  background-image: linear-gradient(#fff0, #ffffff14);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
}

.card__detail {
  grid-column-gap: 20px;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.card__icon {
  grid-column-gap: 16px;
  display: flex;
}

.card__line {
  background-color: #fff3;
  width: 100%;
  height: 1px;
}

.card__button {
  background-color: var(--white);
  color: var(--grey-900);
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: 600;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
}

.card__button:hover {
  opacity: .66;
}

.card__cta {
  justify-content: center;
  padding-top: 56px;
  display: flex;
}

.card__gradient {
  opacity: .2;
  background-image: linear-gradient(#000, #fff);
  border-radius: 16px;
  position: absolute;
  inset: 0%;
}

.divider {
  background-color: var(--grey-300);
  width: 100%;
  height: 1px;
}

.about__dashboard-wrapper {
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  box-shadow: 0 12px 24px #0000000f, 0 24px 48px #0000000f;
}

.about__dashboard-image {
  border-radius: 16px;
  width: 100%;
}

.about__inner-shadow {
  z-index: 5;
  opacity: .08;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  box-shadow: inset 0 1px #fff;
}

.about__dashboard {
  background-image: url('../images/round.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  padding-top: 80px;
  padding-left: 48px;
  padding-right: 48px;
}

.about__dashboard-1 {
  position: absolute;
  inset: auto auto 88px -172px;
}

.about__dashboard-2 {
  position: absolute;
  inset: 32px -163px auto auto;
}

.about__dashboard-3 {
  position: absolute;
  inset: auto -140px 96px auto;
}

.about__image-container {
  background-image: url('../images/round.svg'), url('../images/about-bg.svg');
  background-position: 50%, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: cover, auto;
  padding-bottom: 64px;
  padding-left: 48px;
  padding-right: 48px;
}

.partnership__image-container {
  background-image: url('../images/round.svg'), url('../images/partnership-bg.svg');
  background-position: 50% 45%, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: cover, auto;
  padding: 36px 48px 72px;
}

.partnership {
  background-color: var(--cyan-dark);
  padding-top: 216px;
}

.carousel {
  justify-content: center;
  align-items: center;
  max-width: 2400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.carousel__item {
  background-color: var(--grey-900);
  border-radius: 20px;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  width: 300px;
  height: 300px;
  padding: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel__subgroup {
  grid-column-gap: 20px;
  flex-direction: row;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.carousel__gradient {
  z-index: 5;
  opacity: .5;
  background-image: linear-gradient(#0000, #000);
  width: 100%;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.carousel__heading {
  z-index: 10;
  color: var(--white);
  text-shadow: 0 2px 4px #00000040;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  position: relative;
}

.carousel__text {
  z-index: 5;
  color: var(--white);
  text-shadow: 0 2px 4px #00000040;
  font-size: 14px;
  line-height: 150%;
  position: relative;
}

.bold {
  font-weight: 600;
}

.carousel__price {
  z-index: 10;
  grid-column-gap: 4px;
  display: flex;
  position: relative;
}

.carousel__background {
  position: absolute;
  inset: 0%;
}

.carousel__group {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.carousel__fade {
  flex: none;
  width: 2400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.carousel__fade-left {
  z-index: 5;
  background-image: linear-gradient(270deg, #fff0, #fff);
  width: 80px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.carousel__fade-right {
  z-index: 5;
  background-image: linear-gradient(270deg, #fff, #fff0);
  width: 80px;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.carousel__link {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
}

.section {
  padding-left: 48px;
  padding-right: 48px;
}

.reviews-grid, .faq-grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta-partners__image {
  display: none;
}

.for-personal-use__content {
  width: 100%;
  max-width: 560px;
}

.cards__tabs {
  grid-column-gap: 8px;
  padding: 16px 20px;
  display: flex;
}

.cards__tab-link {
  color: var(--grey-900);
  background-color: #0000;
  border-radius: 8px;
  flex: none;
  padding: 9.5px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.cards__tab-link:hover {
  background-color: var(--green-light);
  color: var(--green-dark);
}

.cards__tab-link.w--current {
  background-color: var(--green-light);
  color: var(--green-dark);
  flex: none;
}

.cta-countries__text {
  width: 100%;
  max-width: 472px;
}

.cta-countries__image {
  display: none;
}

.blog-fetured__grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-max-width {
  width: 100%;
  max-width: 536px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.about__image-mobile, .partnership__image-mobile {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.cta-unleash {
  padding-left: 8px;
  padding-right: 8px;
}

.cta-unleash__text {
  width: 100%;
  max-width: 420px;
}

.cta-unleash__tablet-image, .for-personal-use__image {
  display: none;
}

.contact-links__grid {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card__details-grid, .card__features-grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-32 {
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
}

.header__menu-dropdown {
  grid-column-gap: 8px;
  cursor: default;
  align-items: center;
  display: flex;
  position: relative;
}

.header__menu-dropdown-triangle {
  line-height: 100%;
}

.header__menu-dropdown-links {
  grid-row-gap: 16px;
  flex-direction: column;
  width: 200px;
  margin-left: -20px;
  padding-top: 12px;
  display: none;
  position: absolute;
  inset: 24px 0% auto;
}

.header__menu-dropdown-link {
  color: var(--grey-700);
  font-size: 14px;
  line-height: 150%;
  transition: color .2s cubic-bezier(.25, .46, .45, .94);
}

.header__menu-dropdown-link:hover {
  color: var(--grey-900);
}

.header__menu-dropdown-wrapper {
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 8px;
  flex-direction: column;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 4px #0000001f, 0 4px 8px #00000029;
}

.header__mob-lottie, .header__mob-menu {
  display: none;
}

.tabs {
  grid-column-gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  display: flex;
}

.tabs__button {
  background-color: var(--white);
  color: var(--grey-800);
  border-radius: 8px;
  flex: none;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.tabs__button:hover, .tabs__button.w--current {
  background-color: var(--green-light);
  color: var(--green-dark);
}

.destanation__grid-regions {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.destination__region {
  grid-row-gap: 24px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.destination__region:hover {
  border-color: var(--green);
  background-color: var(--green-light);
}

.tabs__align-left {
  grid-column-gap: 8px;
  justify-content: flex-start;
  margin-bottom: 64px;
  display: flex;
}

.cards__grid-price {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.cards__label {
  color: var(--grey-900);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  display: none;
}

.cards__arrow-tablet {
  color: var(--green-dark);
  flex: none;
  width: 12px;
  height: 20px;
  line-height: 100%;
  display: none;
}

.cards__icon-wrapper {
  grid-column-gap: 16px;
  border-radius: 8px;
  flex-direction: row;
  flex: none;
  align-items: center;
  display: flex;
}

.blog-post {
  margin-top: 80px;
  padding-bottom: 120px;
  padding-left: 48px;
  padding-right: 48px;
}

.blog-post__container {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__heading {
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__date {
  grid-column-gap: 8px;
  justify-content: center;
  display: flex;
}

.text-14 {
  font-size: 14px;
  line-height: 150%;
}

.text-14.text-gray.tablet-displayed {
  display: none;
}

.div-block {
  grid-column-gap: 4px;
  display: flex;
}

.blog-post__text-container {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__cover {
  border-radius: 16px;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.blog-post__cover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-post__rich-text h2 {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  line-height: 150%;
}

.blog-post__rich-text p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 150%;
}

.blog-post__rich-text h4 {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__rich-text h3 {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 150%;
}

.blog-post__rich-text img {
  border-radius: 16px;
  width: 100%;
  max-width: none;
  display: block;
}

.blog-post__rich-text figure {
  max-width: 100%;
  margin: 80px 0;
  display: block;
}

.blog-post__rich-text ol {
  max-width: 660px;
  margin: 32px auto;
  padding-left: 24px;
}

.blog-post__rich-text ul {
  max-width: 660px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  font-size: 18px;
  line-height: 150%;
}

.blog-post__rich-text li {
  padding-left: 8px;
}

.blog-post__rich-text a:hover {
  text-decoration: underline;
}

.blog-post__cta {
  background-color: var(--grey-100);
  border-radius: 16px;
  width: 100%;
  max-width: 660px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
}

.blog-post__share {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 660px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-post__share-link {
  border: 1px solid var(--grey-300);
  border-radius: 50%;
  flex: none;
  width: 48px;
  height: 48px;
}

.blog-post__share-links {
  grid-column-gap: 4px;
  flex: none;
  display: flex;
}

.search-results {
  border-bottom: 1px solid var(--grey-300);
  margin-top: 176px;
  padding-bottom: 80px;
  padding-left: 48px;
  padding-right: 48px;
}

.search-result {
  margin-bottom: 40px;
}

.search-result__link {
  color: var(--grey-900);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.search-result__path {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 150%;
}

.header__menu-link-dropdown {
  color: var(--grey-900);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.contact-links__arrow {
  color: var(--blue);
  width: 16px;
  height: 16px;
  line-height: 100%;
}

.text-page {
  margin-top: 96px;
  padding: 80px 48px;
  overflow: hidden;
}

.text-page__container {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.hide {
  display: none;
}

.card__price {
  display: flex;
}

.country__bg-overlay {
  opacity: .45;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.card__coverage {
  color: var(--white);
  text-align: right;
  white-space: nowrap;
  flex: 0 auto;
  width: 130px;
  overflow: hidden;
}

.cards__price {
  display: flex;
}

.cards__price.is--mr {
  margin-left: 8px;
}

.cards__price.tablet-displayed {
  display: none;
}

.destination__regional-text {
  color: var(--grey-900);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.card__country {
  grid-column-gap: 12px;
  color: var(--grey-900);
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.card__country:hover {
  opacity: .66;
}

.card__list {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.cards__margin-left {
  margin-left: 4px;
}

.card__flex-hor {
  grid-column-gap: 4px;
  display: flex;
}

.cards__promo-code {
  color: var(--grey-900);
  white-space: nowrap;
  margin-right: -20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.cards__link {
  color: var(--blue);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

.promo-code {
  z-index: 9999;
  background-color: #181c1f80;
  justify-content: center;
  align-items: center;
  min-height: 800px;
  padding: 20px;
  display: none;
  position: fixed;
  inset: 0%;
}

.promo-code__card {
  background-color: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 48px 20px;
  position: relative;
}

.promo-code__img {
  object-fit: cover;
  border-radius: 12px;
  width: 140px;
  height: 88px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.promo-code__border {
  border: 1.5px dashed var(--green);
  background-color: var(--green-light);
  border-radius: 8px;
  padding: 4.5px 20px;
}

.promo-code__flex {
  grid-column-gap: 8px;
  justify-content: center;
  display: flex;
}

.promo-code__button {
  background-color: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 13.5px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.promo-code__button:hover {
  background-color: var(--green-dark);
}

.promo-code__button:active {
  background-color: var(--green-800);
}

.promo-code__close {
  background-color: var(--grey-200);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  inset: 24px 24px auto auto;
}

.promo-code__close:hover {
  background-color: var(--grey-300);
}

.cards__link-card {
  flex: 1;
  padding: 16px 20px;
  transition: background-color .2s;
}

.cards__link-card:hover {
  background-color: var(--green-light);
}

.cards__link-promo {
  align-items: center;
  width: 120px;
  height: 92px;
  padding-left: 10px;
  display: flex;
}

.cards__link-promo.is--hidden {
  display: none;
}

.cards__table-left {
  flex: 1;
  padding: 16px 10px 16px 20px;
}

.cards__table-right {
  width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.cards__table-right.is--hidden {
  display: none;
}

.destanation__grid-regions-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.country-text {
  grid-column-gap: 24px;
  border: 1px solid var(--grey-300);
  background-color: var(--grey-100);
  border-radius: 8px;
  align-items: center;
  padding: 32px;
  display: flex;
}

.breadcrumbs {
  border-top: 1px solid var(--grey-300);
  margin-top: 96px;
  padding: 16px 48px;
}

.breadcrumbs__flex {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.breadcrumbs__link {
  color: var(--grey-700);
  font-size: 13px;
  line-height: 150%;
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__divider {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
}

.breadcrumbs__text {
  color: var(--grey-700);
  font-size: 13px;
  line-height: 150%;
}

.combobox_input {
  background-color: #0000;
  border: 1px #000;
  height: 52px;
  margin-bottom: 0;
  padding: 0 20px;
  font-size: 16px;
}

.combobox_input.is--country {
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.combobox_wrapper {
  z-index: 1;
  background-color: var(--white);
  border-radius: 8px;
  max-height: 20rem;
  position: absolute;
  inset: 110% 0% auto;
  overflow: auto;
  box-shadow: 0 0 8px #0000000a, 12px 0 24px #0000000f, 0 24px 48px #0000000f;
}

.country-list {
  display: none;
}

.country-list_list {
  max-height: 20rem;
  overflow: auto;
}

.list {
  margin-bottom: 0;
}

.list-term {
  color: var(--grey-900);
  align-items: center;
  width: 100%;
  padding: 12px 24px;
  font-weight: 600;
  transition: background-color .3s;
  display: flex;
}

.list-term:hover {
  background-color: var(--green-light);
}

.list-term.hide {
  display: none;
}

.autofill-title {
  color: var(--grey-900);
  align-items: center;
  padding: 8px 16px;
  font-weight: 600;
  display: flex;
}

.search-flag {
  border: 1px solid var(--grey-300);
  border-radius: 2px;
  width: 27px;
  height: 20px;
  margin-right: 16px;
}

.rd__wrapper {
  margin-bottom: 40px;
}

.cards__offset {
  margin-top: -64px;
}

.rd__collection-list {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rd__link-item {
  background-color: var(--white);
  color: var(--grey-900);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
}

.rd__link-item:hover {
  transform: translate(0, -10px);
  box-shadow: 0 12px 24px #0000000a, 0 24px 48px #00000026;
}

.rd__price-wrapper {
  display: flex;
}

.rd__size-wrapper {
  margin-top: 8px;
  margin-bottom: 16px;
  display: flex;
}

.rd__price-divider {
  margin-left: 4px;
  margin-right: 4px;
}

.rd__arrow-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.empty-hidden {
  display: none;
}

.cards__sort-link {
  color: var(--grey-900);
  background-image: url('../images/icon-arrow-default.svg');
  background-position: 88%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 8px;
  flex: none;
  align-items: center;
  padding: 9.5px 40px 9.5px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  transition: background-color .2s, color .2s;
  display: flex;
}

.cards__sort-link:hover {
  background-color: var(--green-light);
}

.cards__sort-link.w--current {
  background-color: var(--green-light);
  color: var(--green-dark);
  flex: none;
}

.cards__sort-link.is-asc {
  background-color: var(--green-light);
  color: var(--green-dark);
  background-image: url('../images/icon-arrow-up.svg');
}

.cards__sort-link.is-desc {
  background-color: var(--green-light);
  color: var(--green-dark);
  background-image: url('../images/icon-arrow-down.svg');
}

.card__sorting-panel {
  z-index: 1;
  justify-content: space-between;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.sort__items {
  grid-column-gap: 8px;
  display: flex;
}

.filter__wrapper {
  position: relative;
}

.filter__button {
  border: 1px solid var(--grey-100);
  background-color: var(--grey-100);
  color: var(--grey-900);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.filter__button:hover {
  background-color: var(--green-light);
}

.filter__button.is--active {
  background-color: var(--green-light);
  color: var(--green);
}

.filter__icon {
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  display: flex;
}

.filter__panel {
  z-index: 3;
  background-color: var(--white);
  opacity: 0;
  border-radius: 8px;
  min-width: 360px;
  padding: 24px;
  transition: opacity .2s;
  display: none;
  position: absolute;
  inset: 110% 0% auto auto;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000a, 0 12px 24px #0000000a, 0 24px 48px #0000000f;
}

.filter__panel.is--active {
  opacity: 1;
  display: block;
}

.rangeslider_wrapper {
  color: var(--grey-900);
  align-items: center;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
  display: block;
  position: relative;
}

.rangeslider_track {
  background-color: var(--grey-300);
  border-radius: 999rem;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.rangeslider_handle {
  z-index: 1;
  cursor: grab;
  background-color: #fff;
  border-radius: 100rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 1px 1px 12px #0000001f;
}

.rangeslider_handle:focus {
  background-color: var(--green);
  outline-offset: 0px;
  outline: 3px #181c1f;
}

.rangeslider_fill {
  background-color: var(--green);
  border-radius: 999px;
  width: 20%;
  height: 100%;
  position: absolute;
}

.rangeslider_input {
  display: none;
}

.range_values {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.filter__item {
  margin-bottom: 32px;
}

.rangeslider_handle-dot {
  background-color: var(--green);
  border-radius: 100rem;
  width: 8px;
  height: 8px;
}

.span__brackets {
  font-size: 14px;
}

.checkbox_toggle {
  cursor: pointer;
  border-radius: 100rem;
  align-items: center;
  width: 40px;
  height: 24px;
  margin-bottom: 0;
  padding: 4px;
  display: flex;
  position: relative;
}

.checkbox_label {
  display: none;
}

.checkbox_toggle-dot {
  z-index: 2;
  background-color: var(--white);
  border-radius: 100rem;
  flex: none;
  width: 16px;
  height: 16px;
  position: relative;
}

.checkbox_button {
  border-style: none;
  border-radius: 100rem;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.checkbox_button.w--redirected-checked {
  background-color: #0000;
  background-image: none;
  border-style: none;
}

.checkbox_button.w--redirected-focus {
  box-shadow: none;
}

.checkbox_mask {
  z-index: 1;
  background-color: var(--grey-300);
  border-radius: 100rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.toggle__wrapper {
  grid-column-gap: 12px;
  align-items: center;
  display: none;
}

.filter__footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.clear-filter {
  grid-column-gap: 8px;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.promo-code__switcher {
  display: none;
}

.filter__container {
  grid-column-gap: 12px;
  flex-direction: row;
  display: flex;
}

.filter__country {
  grid-column-gap: 1rem;
  border: 1px solid var(--grey-100);
  background-color: var(--grey-100);
  color: var(--grey-900);
  cursor: pointer;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  min-width: 240px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.filter__country:hover {
  background-color: var(--green-light);
}

.filter__country.is--active {
  border-color: var(--grey-300);
  background-color: var(--white);
}

.filter__country-flag {
  border-radius: 4px;
  width: 20px;
}

.filter__country-name {
  grid-column-gap: 16px;
  transition: opacity .2s;
  display: flex;
}

.filter__country-name.is--active {
  opacity: 0;
}

.search__country {
  opacity: 0;
  width: 100%;
  margin-bottom: 0;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.search__country.is--active {
  opacity: 1;
}

.change__country {
  grid-column-gap: 8px;
  border: 1px none var(--grey-300);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.change__country.is--combo-box {
  position: relative;
}

.search__form {
  width: 100%;
  height: 100%;
}

.country__change-text {
  transition: opacity .2s;
}

.country__change-text.is--active {
  opacity: 0;
}

.cards__arrow {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.card__price-tablet {
  display: none;
}

.cookie-modal_content-wrap {
  padding: 1.75rem 2rem;
}

.cookie-modal_content-wrap.is-small {
  padding: 1.5rem;
}

.cookie-modal_closebutton {
  z-index: 5;
  cursor: pointer;
  background-color: #f3f7f2;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.cookie-modal_closebutton.is-sticky {
  position: sticky;
  top: -1rem;
}

.cookie-modal_button {
  background-color: var(--green);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button:hover {
  background-color: var(--green-dark);
}

.cookie-modal_button.is-secondary {
  color: #515750;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-size: .875rem;
  font-weight: 700;
}

.cookie-modal_button.is-secondary:hover {
  text-decoration: underline;
}

.cookie-modal_component {
  background-color: #fff;
  border-radius: .25rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 4px 1rem #2629260d;
}

.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-modal_styles {
  display: none;
}

.cookie-modal_closebutton_line {
  background-color: #515750;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.cookie-modal_closebutton_line.is-right {
  transform: rotate(-45deg);
}

.cookie-modal_closebutton_line.is-left {
  transform: rotate(45deg);
}

.cookie-modal_title {
  margin-bottom: .1875em;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookie-modal_title.is-small {
  font-size: 1.1875rem;
}

.cookie-popup_component {
  z-index: 9500;
  max-width: 25rem;
  position: fixed;
  inset: auto 1.25rem 1.25rem auto;
}

.cookie-modal_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f3f7f2;
  border-radius: 0 0 .25rem .25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.cookie-modal_button-wrap.is-small {
  justify-content: flex-start;
  padding: 1.5rem;
}

.cookie-modal_button-wrap.in-pref-manger {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 2rem -2rem -2.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.cookie-modal_link {
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-preference_wrapper {
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.cookie-preference_background {
  opacity: 1;
  -webkit-backdrop-filter: blur(.5rem);
  backdrop-filter: blur(.5rem);
  cursor: pointer;
  background-color: #d7e7d580;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cookie-preference_component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.cookie-modal_radio_description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.cookie-modal_radio {
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio.is--not-allowed {
  cursor: not-allowed;
}

.cookie-modal_radio_button {
  float: left;
  border: 1.75px solid #999c98;
  border-radius: .375rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio_button.w--redirected-checked {
  background-color: #515750;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border: 1px solid #515750;
}

.cookie-modal_radio_button.w--redirected-focus {
  box-shadow: none;
}

.cookie-modal_radio_button.is-always-active {
  cursor: not-allowed;
  background-color: #515750;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border-color: #515750;
}

.cookie-modal_form {
  padding-top: 1.25rem;
  padding-bottom: .5rem;
}

.cookie-modal_form-wrap {
  margin-bottom: 0;
}

.cookie-modal_radio_label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 600;
}

.cookie-preference-button {
  z-index: 9475;
  color: #262926;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 9rem;
}

.cookie-preference-button:hover {
  text-decoration: underline;
}

.cookie-preference-button_flex {
  color: #262926;
  background-color: #fff;
  border-radius: .5rem .5rem 0 0;
  align-items: center;
  margin-bottom: -.125rem;
  padding: .75em 1em .875em;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: margin-bottom .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.cookie-preference-button_flex:hover {
  margin-bottom: 0;
  text-decoration: underline;
}

.cookie-preference-button_icon {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: .5rem;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 991px) {
  .grid-3, .grid-4 {
    grid-column-gap: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-alt {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .faq__heading {
    max-width: none;
  }

  .cta-partners {
    background-image: url('../images/cta-bg-tablet.svg');
    background-repeat: no-repeat;
    background-size: auto;
  }

  .footer__grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .footer__grid-inner {
    grid-column-gap: 28px;
  }

  .destination__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .our-leadership {
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonial-parnership__grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .business-features, .testimonials-business, .header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .header__flex {
    z-index: 5;
    position: relative;
  }

  .header__right {
    display: none;
  }

  .form-section-partnership {
    padding-left: 40px;
    padding-right: 40px;
  }

  .form-section__grid {
    grid-row-gap: 120px;
    flex-direction: column-reverse;
  }

  .form-logos {
    margin-right: 0;
  }

  .form-section__left {
    padding-top: 0;
  }

  .form-section__right {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-section-business__background {
    margin-top: 0;
    inset: auto 0% -48px;
  }

  .form-get-in-touch {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-featured__text {
    margin-left: 0;
  }

  .quote__marks-left {
    width: 40px;
    height: 32px;
    margin-bottom: 12px;
    position: static;
  }

  .quote__marks-right {
    display: none;
  }

  .quote, .form-section-business {
    padding-left: 40px;
    padding-right: 40px;
  }

  .form-contacts {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding: 80px 40px;
  }

  .form-section-contacts__bg {
    margin-top: -100px;
  }

  .contacts-links {
    padding-left: 40px;
    padding-right: 40px;
  }

  .for-personal-use__bg {
    grid-row-gap: 100px;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-direction: column;
    padding: 120px 0 0;
    overflow: hidden;
  }

  .search-for-personal-use {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .for-personal-use__logos {
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    justify-content: center;
  }

  .cta-unleash__bg {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .cta-countries {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .cards__table-head {
    display: none;
  }

  .cards__grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .cards__item {
    flex-direction: column;
    align-items: stretch;
  }

  .text-15.text-gray.tablet-displayed {
    display: block;
  }

  .text-15.text-gray.tablet-text-600 {
    font-weight: 600;
  }

  .cards__icon {
    width: auto;
  }

  .card__bg {
    padding-left: 32px;
    padding-right: 32px;
  }

  .about__dashboard {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about__dashboard-1 {
    bottom: -8px;
    left: -92px;
  }

  .about__dashboard-2 {
    display: none;
  }

  .about__dashboard-3 {
    bottom: 72px;
    right: -92px;
  }

  .about__image-container {
    background-size: cover, 124%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .partnership__image-container {
    background-position: 50% 45%, 50% 20%;
    background-size: cover, 170%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .reviews-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .cta-partners__image {
    width: 100%;
    max-width: 521px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .for-personal-use__content {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .cta-countries__text {
    text-align: center;
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cta-countries__image {
    margin-top: 120px;
    display: block;
  }

  .blog-fetured__grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .testimonial-parnership__image {
    width: 100%;
    max-width: 428px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .cta-unleash__text {
    text-align: center;
    max-width: none;
  }

  .cta-unleash__tablet-image {
    width: 100%;
    max-width: 700px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .for-personal-use__image {
    width: 100%;
    max-width: none;
    display: block;
  }

  .contact-links__grid {
    grid-column-gap: 28px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .header__mob-lottie {
    background-color: var(--green-light);
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: block;
  }

  .header__mob-menu {
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 96px 40px 24px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .header__mob-link {
    grid-column-gap: 16px;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
  }

  .header__mob-arrow {
    background-color: var(--green);
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
  }

  .header__mob-line {
    background-color: var(--grey-200);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
  }

  .header__mob-cta {
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    display: flex;
  }

  .destanation__grid-regions {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cards__grid-price {
    grid-column-gap: 4px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .cards__label {
    font-weight: 400;
    display: block;
  }

  .cards__arrow-tablet {
    display: block;
  }

  .cards__icon-wrapper {
    grid-column-gap: 16px;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .blog-post {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-14.text-gray.tablet-displayed {
    display: block;
  }

  .blog-post__cta {
    padding: 40px;
  }

  .search-results, .text-page {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cards__price {
    background-color: var(--grey-100);
    text-align: center;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 8px;
  }

  .cards__price.tablet-displayed {
    background-color: #0000;
    padding: 0;
    display: flex;
  }

  .cards__link-card {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cards__link-card:hover {
    background-color: var(--white);
  }

  .cards__link-promo {
    width: 100%;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
  }

  .breadcrumbs {
    padding-left: 40px;
    padding-right: 40px;
  }

  .rd__collection-list {
    grid-column-gap: 12px;
  }

  .rd__link-item {
    padding: 16px;
  }

  .rd__link-item:hover {
    transform: none;
    box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
  }

  .card__sorting-panel {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .filter__country {
    flex: 1;
  }

  .cards__arrow {
    display: none;
  }

  .card__name-wrapper {
    grid-row-gap: 2px;
    flex-direction: column;
    display: flex;
  }

  .tablet-hidden {
    display: none;
  }

  .card__price-tablet {
    flex-direction: column;
    align-items: flex-end;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .button:hover {
    background-color: var(--green);
  }

  .cta-partners, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer__grid-inner {
    grid-row-gap: 64px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__link:hover {
    color: var(--grey-700);
  }

  .footer__social-link:hover {
    color: var(--grey-500);
  }

  .footer__bottom-link:hover {
    color: var(--grey-700);
  }

  .destination__grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination:hover {
    border-color: var(--grey-300);
    background-color: #0000;
  }

  .our-leadership, .testimonial-partnership, .business-features, .testimonials-business, .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__logo-link.w--current:hover {
    opacity: 1;
  }

  .form-section-partnership, .form-get-in-touch, .blog-featured, .blog, .newsletter {
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsletter__button:hover {
    background-color: var(--green);
  }

  .quote, .form-section-business {
    padding-left: 20px;
    padding-right: 20px;
  }

  .search__button:hover {
    background-color: var(--green);
  }

  .form-contacts, .contacts-links, .cta-unleash__bg, .countries, .cards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards__item:hover {
    background-color: #0000;
  }

  .card {
    padding-left: 0;
    padding-right: 0;
  }

  .card__bg {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card__heading {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .card__button:hover {
    opacity: 1;
  }

  .about__dashboard {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about__dashboard-1, .about__dashboard-3 {
    display: none;
  }

  .about__image-container {
    background-image: url('../images/round.svg');
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
    padding-left: 20px;
    padding-right: 20px;
  }

  .partnership__image-container {
    background-image: url('../images/round.svg');
    background-position: 50% 45%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
  }

  .carousel__item, .carousel__link {
    width: 240px;
    height: 240px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-partners__image {
    max-width: 420px;
    margin-bottom: 24px;
  }

  .for-personal-use__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards__tab-link:hover {
    background-color: var(--white);
    color: var(--grey-900);
  }

  .cta-countries__text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about__image {
    display: none;
  }

  .about__image-mobile {
    display: block;
  }

  .form-section-business__image {
    width: 666px;
    max-width: none;
    display: block;
  }

  .partnership__image {
    display: none;
  }

  .partnership__image-mobile {
    display: block;
  }

  .card__features-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .header__mob-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tabs__button:hover {
    background-color: var(--white);
    color: var(--grey-900);
  }

  .destanation__grid-regions {
    grid-template-columns: 1fr 1fr;
  }

  .destination__region:hover {
    border-color: var(--grey-300);
    background-color: #0000;
  }

  .tabs__align-left {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .blog-post {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-post__rich-text a:hover {
    text-decoration: none;
  }

  .search-results, .text-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card__coverage {
    width: auto;
  }

  .card__country:hover {
    opacity: 1;
  }

  .promo-code__button:hover {
    background-color: var(--green);
  }

  .destanation__grid-regions-2 {
    grid-template-columns: 1fr 1fr;
  }

  .breadcrumbs {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .rd__wrapper {
    margin-bottom: 0;
  }

  .rd__collection-list {
    grid-column-gap: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    overflow: auto;
  }

  .rd__link-item {
    box-shadow: 0 12px 24px #0000000a, 0 24px 48px #0000000f;
  }

  .rd__collection-item {
    flex: none;
  }

  .sort__items {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .filter__panel {
    width: 100%;
  }

  .filter__container {
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .cookie-modal_content-wrap {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-modal_closebutton {
    margin-right: 1.25rem;
  }

  .cookie-modal_closebutton.is-sticky {
    top: -1rem;
  }

  .cookie-modal_button-wrap {
    padding: 1.5rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    margin: 1.5rem -1.5rem -2rem;
    padding-top: 1.25rem;
    position: sticky;
    bottom: -2rem;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }

  .cookie-modal_form {
    padding-top: .75rem;
  }

  .cookie-preference-button_icon {
    margin-right: 0;
  }

  .cookie-preference-button_text {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: 0;
    font-size: 32px;
    line-height: 140%;
  }

  .mb-160 {
    margin-bottom: 120px;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .button.is--filter {
    width: auto;
  }

  .cta-partners {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .heading-40 {
    letter-spacing: 0;
    font-size: 32px;
    line-height: 140%;
  }

  .footer__grid-inner {
    grid-template-columns: 1fr;
  }

  .destination__grid {
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 160px;
  }

  .testimonial-partnership {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .intro {
    padding-top: 48px;
  }

  .form-section-partnership {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .form-section__grid {
    grid-row-gap: 80px;
  }

  .form {
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding: 80px 20px;
  }

  .form-section-business__background {
    display: none;
  }

  .form-get-in-touch {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .review {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review__flex {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-featured {
    padding-top: 64px;
  }

  .newsletter__form {
    max-width: none;
  }

  .form-section-business {
    border-top: 1px solid var(--grey-300);
    padding-top: 0;
  }

  .form-contacts {
    padding-top: 0;
  }

  .for-personal-use {
    padding-left: 0;
    padding-right: 0;
  }

  .for-personal-use__bg {
    border-radius: 0;
    padding-top: 64px;
  }

  .cta-unleash__bg {
    border-radius: 0;
  }

  .countries {
    padding-top: 48px;
  }

  .country {
    padding-left: 0;
    padding-right: 0;
  }

  .country__bg {
    border-radius: 0;
    height: 280px;
  }

  .country__name {
    transform: none;
  }

  .cards__bg {
    border-bottom: 1px solid var(--grey-300);
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
  }

  .cards__icon {
    flex: 0 auto;
    height: 48px;
  }

  .card__details {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .card__detail {
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .partnership {
    padding-top: 160px;
  }

  .cards__tabs {
    overflow: scroll;
  }

  .cta-unleash, .cta-unleash__tablet-image {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-links__grid {
    grid-template-columns: 1fr;
  }

  .card__details-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .header__mob-menu {
    justify-content: space-between;
  }

  .tabs {
    justify-content: center;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .tabs__button {
    flex: none;
  }

  .destanation__grid-regions {
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .tabs__align-left {
    overflow: scroll;
  }

  .cards__icon-wrapper {
    flex: 0 auto;
  }

  .blog-post__rich-text p {
    font-size: 16px;
  }

  .blog-post__rich-text ul {
    font-size: 16px;
    line-height: 150%;
  }

  .blog-post__cta {
    border-radius: 0;
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding: 80px 20px;
  }

  .text-page {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .card__coverage {
    text-align: left;
  }

  .mb-mob-ls-8 {
    margin-bottom: 8px;
  }

  .promo-code {
    min-height: 720px;
  }

  .promo-code__border {
    text-align: center;
  }

  .promo-code__flex {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .promo-code__button {
    text-align: center;
    width: 100%;
  }

  .destanation__grid-regions-2 {
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .rd__wrapper {
    margin-top: -48px;
    margin-bottom: -32px;
  }

  .cards__offset {
    margin-top: 0;
    margin-left: -20px;
    margin-right: -20px;
  }

  .rd__collection-list {
    margin-left: 0;
    margin-right: 0;
  }

  .filter__panel {
    min-width: auto;
  }

  .checkbox_button {
    opacity: 0;
  }

  .cookie-modal_content-wrap.is-small {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cookie-modal_closebutton {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cookie-modal_button {
    flex: auto;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .cookie-modal_component {
    max-width: 100%;
  }

  .cookie-popup_component {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .cookie-modal_button-wrap.is-small {
    justify-content: space-between;
    padding: 1.25rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    bottom: 0;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cookie-preference_component {
    align-items: flex-end;
  }

  .cookie-preference-button {
    left: 1rem;
  }
}

#w-node-_9cab1a3b-9c3b-8b7f-8036-d77d41dbb639-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_1190a875-8a44-c96f-0690-eb360bae6819-a89407bd, #w-node-ad69be14-8582-deb9-6f31-86aae494c9a8-a89407bd, #w-node-_244393b7-678b-1280-0b05-986133276129-a89407bd, #w-node-_289fbe47-c38c-7e8c-d914-32b08c7303c6-a89407bd, #w-node-_72c7c94a-7c64-482e-972d-62953b591e41-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_13397465-3f4c-3389-c78a-71e8b6cbdaea-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4393d524-b785-8016-a520-b325f0fca26a-a89407bd, #w-node-_2622a551-b451-1796-8b2f-202997263001-a89407bd, #w-node-bcafaf1e-e072-50b5-caf2-ae969adf78b4-a89407bd, #w-node-b9cec42c-1d01-45df-87da-87fc9f74220b-a89407bd, #w-node-b9cec42c-1d01-45df-87da-87fc9f74220f-a89407bd, #w-node-e544bcfb-d18c-cade-2b89-6b0d105f2ccb-a89407bd, #w-node-e544bcfb-d18c-cade-2b89-6b0d105f2ccf-a89407bd, #w-node-_10340962-2789-a66b-bcd7-e4b2cdb986e1-a89407bd, #w-node-_10340962-2789-a66b-bcd7-e4b2cdb986e5-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d951983-9e62-7f58-5ab5-04389e3261fc-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4d951983-9e62-7f58-5ab5-04389e3261fd-a89407bd, #w-node-_4d951983-9e62-7f58-5ab5-04389e326201-a89407bd, #w-node-_4d951983-9e62-7f58-5ab5-04389e326204-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d951983-9e62-7f58-5ab5-04389e32620b-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4d951983-9e62-7f58-5ab5-04389e32620c-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6df020df-61c9-76fe-9052-0cc94a22b782-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6df020df-61c9-76fe-9052-0cc94a22b783-a89407bd, #w-node-_6df020df-61c9-76fe-9052-0cc94a22b787-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6df020df-61c9-76fe-9052-0cc94a22b791-a89407bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-ac584d09-9c4e-faee-18b6-8f8b35ccd7a2-35ccd79f, #w-node-ac584d09-9c4e-faee-18b6-8f8b35ccd7b1-35ccd79f, #w-node-ac584d09-9c4e-faee-18b6-8f8b35ccd7b2-35ccd79f, #w-node-ac584d09-9c4e-faee-18b6-8f8b35ccd7c8-35ccd79f, #w-node-ac584d09-9c4e-faee-18b6-8f8b35ccd7d2-35ccd79f, #w-node-_733cbdc0-a50e-76a3-1420-4cee689dff69-689dff62, #w-node-_733cbdc0-a50e-76a3-1420-4cee689dff80-689dff62, #w-node-c103ab8a-1716-7932-a7d9-6adf78e41c30-78e41c30, #w-node-ee925ea4-a806-80fd-27e8-ff8585a39b40-85a39b40, #w-node-_70ef8a97-6481-4b32-7301-c8b912878c51-12878c50, #w-node-_94c15bf8-9041-e272-e12d-f6739c19b27b-722caf9c, #w-node-a48f518c-d027-b356-cdbf-960d9e082dfb-722caf9c, #w-node-_09fbd335-4593-ff0d-0df0-4d41a0efc361-722caf9c, #w-node-_09fbd335-4593-ff0d-0df0-4d41a0efc362-722caf9c, #w-node-f2252570-7413-cadd-c840-0f3088e14f15-722caf9c, #w-node-f2252570-7413-cadd-c840-0f3088e14f16-722caf9c, #w-node-_3ef07053-2f45-f717-4e58-636e8e9c6fdb-722caf9c, #w-node-_11a66c09-8b8a-f56d-9224-5e594a175ec9-722caf9c, #w-node-_11a66c09-8b8a-f56d-9224-5e594a175eca-722caf9c, #w-node-_18ff052d-d016-79b1-2436-e222533fa1b6-722caf9c, #w-node-_18ff052d-d016-79b1-2436-e222533fa1b7-722caf9c, #w-node-_89ad1e71-9ff6-f4c8-c67c-f6cc976e0339-722caf9c, #w-node-_3fe34932-c0be-bf10-64b3-2f2cbb0747d2-722caf9c, #w-node-_79d91e54-1063-64d0-c368-6997d918d098-d918d098, #w-node-_79d91e54-1063-64d0-c368-6997d918d099-d918d098, #w-node-_204af5f3-97e0-d7b3-3f13-43640c89073a-f91022d4, #w-node-_204af5f3-97e0-d7b3-3f13-43640c890740-f91022d4, #w-node-_204af5f3-97e0-d7b3-3f13-43640c890746-f91022d4, #w-node-_204af5f3-97e0-d7b3-3f13-43640c89074c-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9d5-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9d6-f91022d4, #w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9da-f91022d4, #w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9dd-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9e0-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9e1-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd79fcd3-fb27-c28f-ee28-76855a798875-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-dd79fcd3-fb27-c28f-ee28-76855a798876-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd79fcd3-fb27-c28f-ee28-76855a79886c-f91022d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-dd79fcd3-fb27-c28f-ee28-76855a79886d-f91022d4, #w-node-dd79fcd3-fb27-c28f-ee28-76855a798871-f91022d4, #w-node-dd79fcd3-fb27-c28f-ee28-76855a798873-f91022d4, #w-node-e0913a1f-62ec-92e9-7929-7eb0604b6e52-aad22265, #w-node-_6e5362a1-417c-10f6-5f2e-f8768c3d18c2-aad22265, #w-node-_7344418b-0684-b862-3eb2-d81792f2d2a7-aad22265, #w-node-_7d87dc80-6dcb-9add-da88-304453693f2f-aad22265, #w-node-_2dd1a9a7-0ea4-06dd-7810-b052116caa2c-aad22265, #w-node-a4d2e255-4bab-a4ff-52a0-2c0d9e769e02-aad22265, #w-node-_8fee828b-833a-0120-2675-7f28b112c4f1-aad22265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-afbd061b-7d44-e7f3-cbc8-abdd04f1bf7d-aad22265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9d32a12e-a828-eef5-9ea7-52dcf33997fd-aad22265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4248f1f-3982-4a0f-8a73-819d1144acc2-aad22265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_08a38604-30d8-ec5d-740e-07077a1a4f31-aad22265, #w-node-_620d88f5-5e64-e5bf-8d0a-d5bf39df78f4-aad22265, #w-node-cd4daced-c95f-ee7b-ac3f-327dd5830f2d-aad22265, #w-node-_4f1e09f6-abbb-3718-ac8e-33b86b8ba16c-aad22265, #w-node-e79aaca0-45e4-a232-8ece-17f044af3c0a-aad22265, #w-node-_3b446be3-7759-d081-a42a-26b0c81ad8f1-aad22265, #w-node-_11f62892-b216-2177-4470-4f3aa75d40a9-aad22265, #w-node-dba5cc50-4291-5140-100e-37250fe1be5c-aad22265, #w-node-c1cca96b-0460-f317-597b-e004509f1468-aad22265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4ed2eb7-1b96-d151-4652-a614d77f4806-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c4ed2eb7-1b96-d151-4652-a614d77f4807-c79700e9, #w-node-c4ed2eb7-1b96-d151-4652-a614d77f480b-c79700e9, #w-node-_4ea922d2-0e8b-8f42-52ef-5636cad7467a-c79700e9, #w-node-_0d483aaa-fc00-2658-24a9-2207ec0cf1f6-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4ed2eb7-1b96-d151-4652-a614d77f480f-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c4ed2eb7-1b96-d151-4652-a614d77f4810-c79700e9, #w-node-_2dd1a9a7-0ea4-06dd-7810-b052116caa2c-c79700e9, #w-node-a4d2e255-4bab-a4ff-52a0-2c0d9e769e02-c79700e9, #w-node-_8fee828b-833a-0120-2675-7f28b112c4f1-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4755413e-6fbd-4b9f-2974-af7e42974ac0-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4755413e-6fbd-4b9f-2974-af7e42974ac1-c79700e9, #w-node-_4755413e-6fbd-4b9f-2974-af7e42974ac5-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4755413e-6fbd-4b9f-2974-af7e42974aca-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4755413e-6fbd-4b9f-2974-af7e42974acb-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58ee8add-14aa-43d5-0892-c777eef97dae-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_58ee8add-14aa-43d5-0892-c777eef97daf-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58ee8add-14aa-43d5-0892-c777eef97da5-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_58ee8add-14aa-43d5-0892-c777eef97da6-c79700e9, #w-node-_58ee8add-14aa-43d5-0892-c777eef97daa-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f32b529b-95d9-c773-23ca-2dbd7ba5bb5e-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-f32b529b-95d9-c773-23ca-2dbd7ba5bb5f-c79700e9, #w-node-f32b529b-95d9-c773-23ca-2dbd7ba5bb63-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f32b529b-95d9-c773-23ca-2dbd7ba5bb67-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-f32b529b-95d9-c773-23ca-2dbd7ba5bb68-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_926181ac-6e9f-d85c-a810-a7e5220bc57b-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_926181ac-6e9f-d85c-a810-a7e5220bc57c-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_926181ac-6e9f-d85c-a810-a7e5220bc572-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_926181ac-6e9f-d85c-a810-a7e5220bc573-c79700e9, #w-node-_926181ac-6e9f-d85c-a810-a7e5220bc577-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-afbd061b-7d44-e7f3-cbc8-abdd04f1bf7d-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9d32a12e-a828-eef5-9ea7-52dcf33997fd-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4248f1f-3982-4a0f-8a73-819d1144acc2-c79700e9, #w-node-caca65e5-2c18-4841-ded4-184919adc2b3-c79700e9, #w-node-caca65e5-2c18-4841-ded4-184919adc2b1-c79700e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-caca65e5-2c18-4841-ded4-184919adc2b2-c79700e9, #w-node-d19927e9-17d7-bb1a-5173-3bd05730941d-c79700e9, #w-node-d19927e9-17d7-bb1a-5173-3bd057309425-c79700e9, #w-node-d19927e9-17d7-bb1a-5173-3bd057309449-c79700e9, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac2d-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac35-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac3b-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac3e-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac42-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac45-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac49-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac4c-f834d9a2, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac59-f834d9a2, #w-node-c660b8c4-d155-939b-a630-23bf6885bdcc-9c3d5a23, #w-node-_0dad0a96-f49f-a934-5063-e1a8326f5a82-9c3d5a23 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54839cf0-e9cc-cd4a-2293-121978983cda-9c3d5a23 {
  align-self: center;
}

#w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac2d-409779b5, #w-node-daf35e2f-32d1-31d2-ed9f-a3ebc968ac59-409779b5, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c7818-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c781b-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c781e-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c781f-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c7822-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c7825-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c7835-1d28cbe1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ec4fae0c-9328-17bf-6b9e-15eca57c783a-1d28cbe1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-ec4fae0c-9328-17bf-6b9e-15eca57c783c-1d28cbe1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ec4fae0c-9328-17bf-6b9e-15eca57c783d-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c7845-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c784d-1d28cbe1, #w-node-ec4fae0c-9328-17bf-6b9e-15eca57c785d-1d28cbe1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-bbcdee31-95b8-487c-b4ba-c9f138e02dc4-1d28cbe1, #w-node-_2016ac1a-0805-5127-47fc-a0339c048705-ca86afce, #w-node-_05ef3dca-4753-58f5-8f99-2e4741847a91-a1984404, #w-node-d1668a9f-0576-9a06-6326-33b5494f9452-a1984404, #w-node-cd9b4b97-06a4-be0e-fed7-1ce715dfc64d-a1984404, #w-node-cd9b4b97-06a4-be0e-fed7-1ce715dfc64e-a1984404, #w-node-cd9b4b97-06a4-be0e-fed7-1ce715dfc664-a1984404 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0fab066d-4a08-32b1-d146-21efe260df5e-d8e4aa40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-ea27d406-add2-303f-2eda-ae04cc9b10de-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10e1-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10e4-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10e5-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10e8-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10eb-4c8acec8, #w-node-ea27d406-add2-303f-2eda-ae04cc9b10ee-4c8acec8, #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebbd-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebc3-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebc6-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebc7-4c8acec8, #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebd0-4c8acec8, #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebd9-4c8acec8, #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebe1-4c8acec8, #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebea-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e213-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e216-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e219-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e21a-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e21d-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e220-4c8acec8, #w-node-b170e5d0-25a1-1dfa-49c7-c4df8506e223-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee728a-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_109da25d-beaa-4fe0-9fba-978f95ee728f-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_109da25d-beaa-4fe0-9fba-978f95ee7291-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_109da25d-beaa-4fe0-9fba-978f95ee7292-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee729a-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee72a2-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee72a9-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee72b1-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fad2-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fad5-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fad8-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fad9-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fadc-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fadf-4c8acec8, #w-node-f587afd4-5bf2-e6b0-9e17-fae57e96fae2-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd18-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5e982560-7d48-20b3-b729-70097624cd1d-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_5e982560-7d48-20b3-b729-70097624cd1f-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5e982560-7d48-20b3-b729-70097624cd20-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd28-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd30-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd37-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd3f-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7a2f6d50-6499-998c-1295-c5221579e0bb-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0be-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0c1-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0c2-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0c5-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0c8-4c8acec8, #w-node-_7a2f6d50-6499-998c-1295-c5221579e0cb-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580b96-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0086b37b-87af-e738-6011-8ddc89580b9b-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0086b37b-87af-e738-6011-8ddc89580b9d-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0086b37b-87af-e738-6011-8ddc89580b9e-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580ba6-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580bae-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580bb5-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580bbd-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3821cf9d-f359-e694-e89d-9f572dde6135-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde6138-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde613b-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde613c-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde613f-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde6142-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde614f-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3821cf9d-f359-e694-e89d-9f572dde615f-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3821cf9d-f359-e694-e89d-9f572dde6161-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3821cf9d-f359-e694-e89d-9f572dde6162-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde6168-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde616e-4c8acec8, #w-node-_3821cf9d-f359-e694-e89d-9f572dde617a-4c8acec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-edd59673-72b0-874e-0639-a4dab7c09afc-4c8acec8, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba0-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba1-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba4-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba5-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba8-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462feba9-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462febac-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462febb0-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462febb1-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462febb4-fa9c4d7a, #w-node-d934cfab-15e7-28ae-8c07-8ea1462febb5-fa9c4d7a, #w-node-f4ba2a66-49b3-3d13-9f57-203bb8919f97-fa9c4d7a, #w-node-f4ba2a66-49b3-3d13-9f57-203bb8919f9b-fa9c4d7a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_13397465-3f4c-3389-c78a-71e8b6cbdaea-a89407bd, #w-node-_4d951983-9e62-7f58-5ab5-04389e32620b-a89407bd, #w-node-_83f47371-b23e-3e42-7ac8-5dff20fed9e0-f91022d4, #w-node-caca65e5-2c18-4841-ded4-184919adc2b1-c79700e9 {
    order: -9999;
  }

  #w-node-_2b52e1f5-128a-b707-f9f6-f4169229ebe1-4c8acec8, #w-node-_109da25d-beaa-4fe0-9fba-978f95ee72a9-4c8acec8, #w-node-_5e982560-7d48-20b3-b729-70097624cd37-4c8acec8, #w-node-_0086b37b-87af-e738-6011-8ddc89580bb5-4c8acec8 {
    grid-column: span 3 / span 3;
  }
}


