@import url("../fonts/lato.css");

:root {
  --blue: #005cda;
  --blue-dark: #004db7;
  --cyan: #00eee7;
  --lime: #baef00;
  --white: #ffffff;
  --text: #005cda;
  --max: 1265px;
  --pad: 72px;
  --akira: "Akira Expanded", "Arial Black", "Impact", "Lato", Arial, sans-serif;
  --body: "Lato", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.akira-title {
  font-family: var(--akira);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--blue);
}

.header-inner {
  width: min(100%, 1301px);
  margin: 0 auto;
  min-height: 96px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 0;
}

.brand img {
  width: 240px;
  height: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 900;
  font-size: 21px;
  line-height: 1.08;
  text-align: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lime);
}

.site-nav .nav-whatsapp {
  color: var(--blue);
  background: var(--lime);
  padding: 9px 15px;
}

.site-nav .nav-whatsapp:hover,
.site-nav .nav-whatsapp:focus-visible {
  color: var(--blue-dark);
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  height: clamp(480px, 43vw, 720px);
  min-height: 0;
  overflow: hidden;
  background: var(--blue);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1301px);
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 78px 64px 62px;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 78px;
}

.hero h1 span {
  display: block;
}

.hero h1 .cyan {
  color: var(--cyan);
}

.hero-title-image {
  width: clamp(320px, 35vw, 460px);
  height: auto;
}

.history-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.history-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 8.4%;
  height: 100%;
  background: var(--lime);
}

.history-wrap {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  padding-bottom: 0;
}

.history-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.history-heading img {
  width: 84px;
  height: auto;
}

.history-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--body);
  font-size: 54px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.history-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 78px;
  align-items: start;
}

.history-photo {
  width: 320px;
  aspect-ratio: 370 / 556;
  object-fit: cover;
  object-position: center top;
}

.history-copy {
  padding-top: 0;
  padding-right: 72px;
  margin-top: -112px;
}

.quote {
  max-width: 590px;
  margin: 0 0 34px auto;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.08;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.columns {
  column-count: 2;
  column-gap: 38px;
}

.history-copy .columns p {
  margin: 0 0 18px;
  break-inside: avoid;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 400;
  text-align: justify !important;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.cards-section {
  background: var(--blue);
  padding: 150px 0 196px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  max-width: 1042px;
}

.feature-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  color: var(--blue);
  background: var(--lime);
}

.feature-card-art {
  width: 100%;
  aspect-ratio: 1015 / 1206;
  object-fit: cover;
}

.feature-card::after {
  display: none;
}

.lime-card {
  background: var(--lime);
  color: var(--lime);
}

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

.feature-card-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  bottom: 0;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 24px 32px;
  color: var(--blue);
  font-family: var(--akira);
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.cyan-card .feature-card-label {
  color: var(--white);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-lime {
  background: var(--lime);
  color: var(--blue);
}

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

.ticker-track {
  display: inline-flex;
  min-width: max-content;
  animation: tickerMove 17s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 96px;
  padding-right: 48px;
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
}

.ticker strong {
  font-weight: 900;
}

.ticker span > strong {
  margin-left: 0.18em;
}

.ticker span::after {
  content: "\2022";
  padding-left: 48px;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.journey-section {
  background: var(--white);
  padding: 78px 0 80px;
}

.journey-title {
  margin: 0 0 54px;
  color: var(--blue);
  font-family: var(--body);
  font-size: 52px;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  width: min(100%, 1304px);
  margin: 0 auto;
}

.journey-button {
  min-height: 154px;
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1.02;
  font-weight: 900;
}

.lime-button {
  background: var(--lime);
  color: var(--blue);
}

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

.video-section {
  position: relative;
  overflow: hidden;
  min-height: 1018px;
  background: var(--lime);
}

.video-green,
.video-blue {
  position: absolute;
  inset: 0;
}

.video-green {
  right: 0;
  background: var(--lime);
}

.video-blue {
  left: 60%;
  top: 238px;
  background: var(--blue);
}

.video-wrap {
  position: relative;
  z-index: 1;
  min-height: 1018px;
  padding-top: 58px;
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  grid-template-areas:
    "title side"
    "video side"
    "caption side";
  align-content: start;
}

.video-title {
  grid-area: title;
  margin: 0 0 38px 150px;
  color: var(--blue);
  font-size: 48px;
  line-height: 1.06;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card {
  grid-area: video;
  position: relative;
  width: min(780px, calc(100vw - 340px));
  margin-left: 150px;
  display: block;
  text-decoration: none;
}

.video-card img {
  width: 100%;
  aspect-ratio: 760 / 485;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 68px;
  background: #ff0000;
  border-radius: 16px;
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 23px solid var(--white);
}

.video-caption {
  grid-area: caption;
  margin: 34px 0 0 150px;
}

.video-caption img {
  width: min(440px, 100%);
  height: auto;
}

.footer-contact {
  background: linear-gradient(90deg, var(--white) 0 60%, var(--blue) 60% 100%);
  padding: 66px 0 78px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: center;
}

.footer-contact .section-wrap {
  width: 100%;
  max-width: none;
  padding-left: 72px;
  padding-right: 80px;
}

.social-title {
  margin: 0 0 34px;
}

.social-title-text {
  display: none;
}

.social-title-image {
  width: min(520px, 100%);
  height: auto;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: var(--blue);
  text-decoration: none;
}

.social-links img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.social-links a:nth-child(2) img {
  width: 31px;
}

.whatsapp-box {
  color: var(--white);
  padding-left: 52px;
}

.whatsapp-box p {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
}

.whatsapp-number {
  width: min(100%, 520px);
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  color: var(--white);
  border: 3px solid var(--lime);
  text-decoration: none;
  white-space: nowrap;
}

.whatsapp-number img {
  width: 54px;
  height: 54px;
}

.whatsapp-number span {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.whatsapp-number strong {
  color: var(--white);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
}

.stripe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 42px;
  background: var(--blue);
}

.stripe span:nth-child(1),
.stripe span:nth-child(3) {
  background: var(--blue);
}

.stripe span:nth-child(2),
.stripe span:nth-child(4) {
  background: var(--lime);
}

.flag-section {
  background: var(--cyan);
  overflow: hidden;
}

.flag-section img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.page-hero {
  background: var(--blue);
  color: var(--white);
  padding: 86px 0 76px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--body);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.content-page {
  padding: 70px 0 86px;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  min-height: 230px;
  padding: 28px;
  background: var(--blue);
  color: var(--white);
}

.info-card h2 {
  margin: 0 0 16px;
  color: var(--lime);
  font-family: var(--body);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.simple-footer {
  background: var(--blue);
  padding: 34px 0;
  color: var(--white);
}

.simple-footer .section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-footer img {
  width: 230px;
  background: var(--white);
}

.simple-footer a {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 20px;
    padding: 0 22px;
  }

  .brand,
  .brand img {
    width: 220px;
    flex-basis: 220px;
  }

  .site-nav a {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .history-grid {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .history-photo {
    width: 320px;
  }

  .history-copy {
    padding-right: 70px;
  }

  .quote {
    font-size: 24px;
  }

  .video-title,
  .video-card,
  .video-caption {
    margin-left: 80px;
  }

  .video-card {
    width: min(780px, calc(100vw - 190px));
  }

  .journey-title {
    font-size: 44px;
  }

  .footer-contact .section-wrap {
    padding-left: 42px;
    padding-right: 42px;
  }

  .whatsapp-box {
    padding-left: 42px;
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --pad: 22px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 78px;
    padding: 0 18px;
    justify-content: space-between;
    position: relative;
    gap: 0;
  }

  .brand,
  .brand img {
    width: 210px;
    flex-basis: 210px;
  }

  .menu-toggle {
    display: block !important;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    padding: 18px 22px 24px;
    background: var(--blue);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    z-index: 2;
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    display: grid;
    place-items: center;
    font-size: 18px;
  }

  .hero,
  .hero-content {
    min-height: 500px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    padding-top: 58px;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: 42px;
  }

  .history-accent {
    display: none;
  }

  .history-heading h2 {
    font-size: 42px;
  }

  .history-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
  }

  .history-photo {
    width: min(100%, 430px);
  }

  .history-copy {
    width: 100%;
    padding-right: 0;
    margin-top: 0;
    min-width: 0;
  }

  .quote {
    margin-left: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .columns {
    column-count: 1;
    width: 100%;
    min-width: 0;
  }

  .quote,
  .columns,
  .columns p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .cards-section {
    padding: 74px 0 90px;
  }

  .cards-grid,
  .journey-actions,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .feature-card {
    display: block;
  }

  .feature-card::after {
    display: none;
  }

  .feature-card-label {
    min-height: 0;
    font-size: 52px;
  }

  .ticker span {
    min-height: 72px;
    font-size: 24px;
  }

  .journey-title,
  .page-hero h1 {
    font-size: 42px;
  }

  .journey-title {
    white-space: normal;
  }

  .journey-button {
    min-height: 118px;
    font-size: 34px;
  }

  .video-section,
  .video-wrap {
    min-height: auto;
  }

  .video-green,
  .video-blue {
    display: none;
  }

  .video-section {
    background: var(--lime);
  }

  .video-wrap {
    display: block;
    padding-bottom: 58px;
  }

  .video-title,
  .video-card,
  .video-caption {
    margin-left: 0;
  }

  .video-card {
    width: 100%;
  }

  .video-title {
    font-size: 38px;
  }

  .video-caption {
    margin-top: 24px;
  }

  .video-caption img {
    width: min(100%, 440px);
  }

  .footer-contact {
    background: var(--white);
    padding: 54px 0 0;
  }

  .footer-contact .section-wrap {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .contact-grid {
    gap: 46px;
  }

  .social-title {
    font-size: 38px;
    overflow-wrap: break-word;
  }

  .social-title-image {
    display: block;
    width: min(100%, 430px);
  }

  .social-title-text {
    display: none;
  }

  .social-links a {
    background: var(--blue);
  }

  .social-links img {
    filter: none;
  }

  .simple-footer .section-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-box {
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    padding: 42px var(--pad) 56px;
    background: var(--blue);
  }

  .whatsapp-number {
    width: 100%;
    max-width: 420px;
    min-width: 0;
  }

  .whatsapp-number span,
  .whatsapp-number strong {
    min-width: 0;
  }

  .stripe {
    height: 16px;
  }

  .flag-section img {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  :root {
    --pad: 18px;
  }

  .brand,
  .brand img {
    width: 164px;
    flex-basis: 164px;
  }

  .menu-toggle {
    width: 42px;
    height: 38px;
    top: 20px;
    right: 16px;
  }

  .hero,
  .hero-content {
    min-height: 500px;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-title-image {
    width: min(78vw, 330px);
  }

  .history-heading {
    gap: 14px;
  }

  .history-heading img {
    width: 54px;
  }

  .history-heading h2 {
    font-size: 34px;
  }

  .history-photo {
    width: 100%;
  }

  .quote {
    font-size: 21px;
  }

  .columns p {
    font-size: 17px;
    text-align: left;
    hyphens: manual;
  }

  .cards-grid {
    gap: 34px;
  }

  .feature-card {
    display: block;
  }

  .feature-card::after {
    display: none;
  }

  .feature-card-label {
    min-height: 0;
    font-size: 40px;
  }

  .journey-title,
  .page-hero h1 {
    font-size: 31px;
  }

  .journey-button {
    font-size: 28px;
  }

  .video-title {
    font-size: 31px;
  }

  .play-button {
    width: 74px;
    height: 52px;
    border-radius: 12px;
  }

  .play-button::after {
    left: 31px;
    top: 15px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .video-caption {
    font-size: 27px;
  }

  .social-links a {
    width: 64px;
    height: 64px;
  }

  .social-title {
    font-size: 32px;
  }

  .social-links {
    gap: 12px;
  }

  .whatsapp-box p {
    font-size: 26px;
  }

  .whatsapp-number {
    gap: 12px;
    padding: 12px;
    max-width: 100%;
  }

  .whatsapp-number strong {
    font-size: 25px;
  }

  .whatsapp-number span {
    font-size: 18px;
  }

  .whatsapp-number img {
    width: 36px;
    height: 36px;
  }

  .ticker span {
    font-size: 21px;
  }

  .stripe {
    height: 14px;
  }
}
