* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #111;
  font-family: Arial, sans-serif;
}

.page {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@font-face {
  font-family: "FontB";
  src: url("/fonts/Europa-Bold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "FontR";
  src: url("/fonts/EuropaNuova-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "FontL";
  src: url("/fonts/Europa-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* shared header */
.top-index {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 2.5rem;
  align-items: start;
  padding: 24px 0 72px 0;
  border-bottom: 1px solid #d9d9d9;
}

.top-index__item {
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top-index__item:last-child {
  margin-right: 32px;
}

.top-index__title {
  display: block;
  color: #141414;
  font-family: "FontL", sans-serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.top-index__desc {
  display: block;
  color: #141414;
  font-family: "FontL", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.top-index__sub {
  display: block;
  font-size: 15px;
  color: #a2acb8;
  line-height: 1.2;
  font-family: "FontL", sans-serif;
}

.top-index__item--active .top-index__title {
  color: #111;
}

.top-index__item--active .top-index__sub {
  color: #6f7782;
}

/* shared footer */
.contact-section {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 72px;
  border-top: 1px solid #d9d9d9;
}

.cta-line,
.cta-line:link,
.cta-line:visited,
.cta-line:hover,
.cta-line:active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 32px 0;
  border-bottom: 1px solid #d9d9d9;
  text-decoration: none;
  color: #111;
}

.cta-line h2 {
  font-family: "FontR", sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 0.95;
}

.cta-arrow {
  font-size: 110px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 40px;
  color: #a7b0bc;
  font-size: 16px;
  line-height: 1.2;
}

.footer-col p {
  margin: 0 0 0.15rem 0;
  font-family: "FontL", sans-serif;
}

.footer-col--center {
  justify-self: center;
}

.footer-col--right {
  justify-self: end;
  text-align: left;
}

.footer-col a {
  color: #111;
  text-decoration: none;
  font-family: "FontL", sans-serif;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* shared responsive */
@media (max-width: 1200px) {
  .page {
    padding: 0 12px;
  }

  .cta-line h2 {
    font-size: 78px;
  }

  .cta-arrow {
    font-size: 86px;
  }
}

@media (max-width: 900px) {
  .page {
    padding: 0 8px;
  }

  .top-index {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    padding-bottom: 48px;
  }

  .top-index__item:last-child {
    margin-right: 0;
  }

  .top-index__desc {
    white-space: normal;
  }

  .cta-line h2 {
    font-size: 56px;
  }

  .cta-arrow {
    font-size: 64px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
  }

  .footer-col--center,
  .footer-col--right {
    justify-self: start;
  }

  .contact-section {
    padding-bottom: 48px;
  }
}