@font-face {
  font-family: 'NHaasGroteskTXPro';
  font-weight: normal;
  font-style: normal;
  src: url('./fonts/NHaasGroteskTXPro-regular.ttf');
}

@font-face {
  font-family: 'NHaasGroteskTXPro';
  font-weight: 600;
  font-style: normal;
  src: url('./fonts/NHaasGroteskTXPro-Medium.ttf');
}

@font-face {
  font-family: 'NHaasGroteskTXPro';
  font-weight: bold;
  font-style: normal;
  src: url('./fonts/NHaasGroteskTXPro-Bold.ttf');
}

html, body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: 'NHaasGroteskTXPro';
}

a {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

a:hover {
  color: #fff;
}

.hero {
  width: 100%;
  background-image: url('./img/ryan-stone-bpcOR-sES5w-unsplash.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.container {
  width: 1580px;
  margin: auto;
  padding: 62px 0 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.content {
  padding: 0 75px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: translateY(5%);
  width: 60%;
}

.content .title {
  font-style: normal;
  font-weight: normal;
  font-size: 86px;
  line-height: 100px;
  color: #DA3228;
}

.content .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 42px;
  color: #FFFFFF;
  margin: 40px 0;
}

a {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 75px;
}

.footer-left {
  display: flex;
  align-items: flex-end;
  width: 60%;
}

.footer-left > div {
  width: 30%;
  margin-right: 3.3%;
}

.mobile-footer {
  display: none;
}

/* Desktop */
@media (max-width: 1680px) {
  .container {
    width: 1140px;
    padding: 46px 0 30px;
  }

  .content .title {
    font-size: 64px;
    line-height: 72px;
  }

  .content .desc {
    font-size: 20px;
    line-height: 28px;
    margin: 32px 0;
  }

  a {
    font-size: 18px;
    line-height: 20px;
  }

  .footer-left {
    width: auto;
    flex: 1;
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .header img {
    height: 35px;
  }

  .container {
    width: 800px;
    padding: 27px 0 20px;
  }

  .content {
    padding: 0 50px;
    transform: translateY(5%);
    width: 75%;
  }

  .content .title {
    font-size: 64px;
    line-height: 72px;
  }

  .content .desc {
    font-size: 20px;
    line-height: 28px;
    margin: 32px 0;
  }

  .footer {
    padding: 0 50px;
  }

  .footer-left > div {
    width: 25%;
    margin-right: 0;
  }

  .footer-left > div.address {
    width: 50%;
  }
}


/* Tablet */
@media (max-width: 860px) {
  .header img {
    height: 35px;
  }

  .container {
    max-width: 800px;
    width: 100%;
    padding: 27px 20px 20px;
  }

  .footer-left {
    white-space: nowrap;
    flex-flow: row wrap;
  }

  .footer-left > div {
    width: 50%;
    margin-right: 0;
  }

  .footer-left > div.address {
    width: 100%;
    margin-bottom: 1em;
  }
}


/* Tablet */
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .content {
    padding: 0;
    transform: translateY(5%);
    width: 100%;
  }

  .content .title {
    font-size: 36px;
    line-height: 42px;
  }

  .content .desc {
    font-size: 18px;
    line-height: 24px;
    margin: 22px 0;
  }

  .footer {
    display: none;
  }

  .mobile-footer {
    display: block;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-footer .footer-bottom {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}