@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400..900&display=swap');

* {
  font-style: inherit;
  margin: 0;
  padding: 0;
  line-height: 1em;
  text-decoration: inherit;
  color: inherit;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  background: #161616;
  color: #fff;
}

.header {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  --logo-width: min(400px, 75vw);
}

.header__logo {
  color: transparent;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: calc(400 / 131);
  width: var(--logo-width);
  margin-bottom: 20px;
}

.header__slogan {
  font-weight: 500;
  font-size: calc(0.78px * var(--logo-width) / 1ch);
  color: #ccc;
}

.header__nav {
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.header__spacer {
  margin-top: 40px;
}

.cta-button {
  cursor: pointer;
  background: #fff;
  font-size: 22px;
  color: #161616;
  padding: 0 20px;
  height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.cta-button--invert {
  color: #fff;
  background-color: #161616;
}

.social-button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}

.social-button img {
  width: 26px;
}

.icon {
  display: inline-block;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--invert {
  filter: invert(1);
}

.location-section {
  color: #161616;
  background-color: #fff;
}

.location-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.location-section__title {
  margin: 0 auto;
  max-width: 600px;
  margin-top: 24px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-section__map {
  width: 100%;
  height: 50vh;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.section-title__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: #161616;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title__icon--invert {
  background-color: #fff;
}

.section-description {
  line-height: 1.5em;
  margin-top: 10px;
}

.emphasis {
  font-weight: 600;
}

.section-footer {
  padding: 30px;
  text-align: center;
  line-height: 1.5em;
  color: #999;
  font-size: 14px;
}

.mt-20 {
  margin-top: 20px;
}

.features-section__image {
  width: 100%;
  color: transparent;
  pointer-events: none;
}

.features-section__features {
  padding: 30px;
  margin-top: 40px;
}

.feature-list {
  margin-top: 70px;
}

.feature-list i.icon {
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.feature-list dt {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-top: 40px;
}

.feature-list dd {
  color: #888;
}

.features-section__ctas {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

@media screen and (min-width: 800px) {
  .features-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
  }

  .features-section__image {
    width: 35vw;
    object-fit: cover;
  }

  .features-section__features {
    flex: 1;
    align-self: center;
  }
}
