@font-face {
  font-family: "BTG Pactual Sans";
  src: url("../assets/fonts/Moderat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BTG Pactual Sans";
  src: url("../assets/fonts/Moderat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BTG Pactual Sans";
  src: url("../assets/fonts/Moderat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "BTG Pactual Sans", Moderat, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #05132a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

h1, h2, h3, h4, p, figure, blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 70px;
}
@media (max-width: 900px) {
  .container {
    padding-inline: 24px;
  }
}

.section {
  padding-block: 128px;
}
.section--compact {
  padding-block: 64px;
}
.section--gray {
  background: #eeeeee;
}
.section--navy {
  background: #0e1e34;
  color: rgba(255, 255, 255, 0.96);
}
@media (max-width: 900px) {
  .section {
    padding-block: 64px;
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-head__title {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.42px;
  color: inherit;
}
.section-head__lead {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: #69717f;
}
.section--navy .section-head__lead {
  color: rgba(255, 255, 255, 0.74);
}

.u-note {
  font-size: 15px;
  line-height: 1.55;
  color: #69717f;
}

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

.u-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

:where(a, button, input, iframe):focus-visible {
  outline: 2px solid #195ab4;
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "BTG Pactual Sans", Moderat, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn svg {
  flex: none;
  width: 16px;
  height: 16px;
}
.btn--primary {
  background: #195ab4;
  color: rgba(255, 255, 255, 0.96);
}
.btn--primary:hover {
  background: #14488f;
}
.btn--outline {
  background: transparent;
  color: #05132a;
  border-color: #c9ccd2;
}
.btn--outline:hover {
  border-color: #05132a;
}
.btn--inverse {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.96);
}
.btn--inverse:hover {
  background: #f0f0f0;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
  .grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.15s ease;
}
.card:hover {
  border-color: #c9ccd2;
}
.card__media {
  aspect-ratio: 3/2;
  min-height: 0;
  background: #eeeeee;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.card__eyebrow {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #69717f;
}
.card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #05132a;
}
.card__text {
  font-size: 15px;
  line-height: 1.55;
  color: #69717f;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  color: #195ab4;
}
.card__link:hover {
  text-decoration: underline;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 4px;
}
.feature__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature__label {
  font-size: 15px;
  line-height: 1.35;
  color: #05132a;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 24px;
  padding-bottom: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #c9ccd2 transparent;
}
.rail > * {
  scroll-snap-align: start;
}
.rail::-webkit-scrollbar {
  height: 6px;
}
.rail::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}
.rail::-webkit-scrollbar-thumb {
  background: #c9ccd2;
  border-radius: 3px;
}

.brand {
  display: grid;
  place-items: center;
  width: 176px;
  height: 100px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 4px;
}
.brand img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
.quote__mark {
  font-size: 56px;
  line-height: 0.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}
.quote__text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
}
.quote__author {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.collage img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.collage img:nth-child(1) {
  aspect-ratio: 1/1;
}
.collage img:nth-child(2) {
  aspect-ratio: 3/2;
}
.collage img:nth-child(3) {
  grid-column: 2;
  grid-row: 1/span 2;
  height: calc(100% - 40px);
  margin-top: 40px;
}
@media (max-width: 600px) {
  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .collage img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    margin-top: 0;
    aspect-ratio: 3/4;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #e6e7ea;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 900px) {
  .site-header {
    height: 56px;
  }
  .site-header__logo img {
    height: 30px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0e1e34;
  color: rgba(255, 255, 255, 0.96);
}
.hero__media {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 52%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0e1e34 0%, rgba(14, 30, 52, 0.55) 28%, rgba(14, 30, 52, 0) 62%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 560px;
  padding-block: 104px 132px;
}
.hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.42px;
}
.hero__lead {
  margin-top: 24px;
  max-width: 440px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.74);
}
@media (max-width: 900px) {
  .hero__media {
    position: relative;
    width: 100%;
    height: 260px;
  }
  .hero__media::after {
    background: linear-gradient(0deg, #0e1e34 0%, rgba(14, 30, 52, 0) 55%);
  }
  .hero__content {
    max-width: none;
    padding-block: 40px 72px;
  }
}

.embed {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  margin-top: -61px;
}
.embed__viewport {
  max-width: 1062px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 4px;
  background: #eeeeee;
  box-shadow: 0 10px 30px rgba(5, 19, 42, 0.22);
}
.embed__frame {
  display: block;
  width: 111.1111%;
  max-width: none;
  margin-left: -5.5555%;
  height: 120px;
  border: 0;
}
@media (max-width: 1023px) {
  .embed {
    margin-top: 0;
    padding-block: 64px;
  }
  .embed__frame {
    height: 336px;
  }
}
@media (max-width: 600px) {
  .embed__frame {
    height: 310px;
  }
}
@media (max-width: 480px) {
  .embed__frame {
    height: 522px;
  }
}

.purpose__features {
  margin-bottom: 40px;
}
.purpose__note {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.55;
  color: #69717f;
}
.purpose .card__media {
  aspect-ratio: 3/4;
}

.brands .rail {
  margin-top: 40px;
}

.hotels-large .card__media {
  aspect-ratio: 16/9;
}

.hotels-small .card__media {
  aspect-ratio: 4/5;
}

.testimonials .quote {
  height: 100%;
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__body p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.55;
  color: #69717f;
}
.split__body strong {
  font-weight: 500;
  color: #05132a;
}
.split__cta {
  margin-top: 32px;
}
.split--reverse .split__text {
  order: 2;
}
@media (max-width: 900px) {
  .split__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split--reverse .split__text {
    order: 0;
  }
}

.blog .card__media {
  aspect-ratio: 3/2;
}

.site-footer {
  background: #0e1e34;
  color: rgba(255, 255, 255, 0.96);
}
.site-footer__top {
  padding-block: 64px;
}
.site-footer__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}
.site-footer__brands img {
  height: 48px;
  width: auto;
}
@media (max-width: 600px) {
  .site-footer__brands {
    gap: 24px;
  }
  .site-footer__brands img {
    height: 36px;
  }
}
.site-footer__intro {
  max-width: 660px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.site-footer__intro strong {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 900px) {
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}
.site-footer__title {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}
.site-footer__list {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.site-footer__list li + li {
  margin-top: 10px;
}
.site-footer__list a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
}
.site-footer__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
@media (max-width: 600px) {
  .site-footer__groups {
    grid-template-columns: 1fr;
  }
}
.site-footer__grouptitle {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__block + .site-footer__block {
  margin-top: 32px;
}
.site-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__pay img {
  height: 28px;
  width: auto;
  border-radius: 2px;
}
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: all 0.15s ease;
}
.site-footer__social a:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.site-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.site-footer__bottom {
  background: #071833;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottominner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}
.site-footer__bottominner a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
}
.site-footer__powered {
  margin-left: auto;
}
