:root {
  --white: white;
  --maroon: #680202;
  --black: black;
}

.hero {
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.footer {
  background-color: #28323a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 10vh;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.herotop {
  background-color: var(--white);
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 25px 8%;
  display: flex;
  position: static;
}

.brandtext {
  color: var(--maroon);
  font-family: Spectral SC, sans-serif;
  font-size: 32px;
  line-height: 25px;
}

.hero-section {
  background-image: url('../images/Empire_State.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 75%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 11%;
  padding-left: 8%;
  padding-right: 20%;
  display: flex;
}

.heading {
  color: var(--black);
  text-align: left;
  width: 50%;
  font-family: Spectral SC, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.footer-link {
  border-right: 1px solid var(--white);
  color: var(--white);
  padding-left: 15px;
  padding-right: 15px;
  font-family: Spectral SC, sans-serif;
  text-decoration: none;
}

.footer-link.emd {
  border-right-style: none;
}

.contact-div {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footertext {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-family: Spectral SC, sans-serif;
  line-height: 32px;
}

.link {
  color: var(--white);
}

.copy-text {
  color: #818181;
  margin-top: 20px;
  font-family: Spectral SC, sans-serif;
  font-size: 12px;
}

.nav-contact-div {
  justify-content: space-between;
  width: 85px;
  display: flex;
}

.icondiv {
  width: 20px;
  height: 20px;
  margin-left: 0;
  transition: opacity .2s;
}

.icondiv:hover {
  opacity: .5;
}

.icondiv.lesspad {
  margin-left: 2px;
}

.divider {
  background-color: var(--maroon);
  width: 50px;
  height: 3px;
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .brandtext {
    font-size: 28px;
  }

  .hero-section {
    background-position: 100% 0;
  }

  .heading {
    width: 66%;
  }
}

@media screen and (max-width: 767px) {
  .herotop {
    background-color: #0000;
    padding-left: 5%;
    padding-right: 5%;
  }

  .brandtext {
    font-size: 20px;
  }

  .hero-section {
    background-position: 120% 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading {
    width: 66%;
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    background-image: none;
  }

  .herotop {
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    padding-left: 3%;
    padding-right: 3%;
  }

  .brandtext {
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .hero-section {
    background-image: url('../images/osman-rana-dI9KhXi0ooE-unsplash.jpg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  .heading {
    width: 66%;
    font-size: 16px;
    line-height: 18px;
  }

  .footer-link {
    border-right-style: none;
    margin-bottom: 3px;
  }

  .contact-div {
    flex-direction: column;
  }

  .footertext {
    line-height: 24px;
  }

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

  .icondiv {
    width: 18px;
    margin-left: 4px;
  }
}


