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

@font-face {
  font-family: 'AvenirBook';
  src: url('/fonts/AvenirBook.ttf') format('truetype'),
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirLight';
  src: url('/fonts/AvenirLight.ttf') format('truetype'),
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirRegular';
  src: url('/fonts/AvenirRegular.ttf') format('truetype'),
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirBlack';
  src: url('/fonts/AvenirBlack.ttf') format('truetype'),
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirHeavy';
  src: url('/fonts/AvenirHeavy.ttf') format('truetype'),
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}

body, html {
  height: 100%;
  font-family: 'Avenir', sans-serif;
  color: white;
  background: #fff;
  font-weight: 100;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Full-screen hero image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  z-index: 1;
}
img.hero-image {
    padding: 1em;
    border-radius: 2em;
}
/* Overlayed text */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.5rem;
}

/* Topbar (logo + contact) */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: normal;
}

.hero-logo {
  height: 120px;
}
  
.contact-info {
  margin-top: 10px;
}
span.contact-info {
    text-align: right;
    font-weight: 500;
}
/* Main text */
.hero-text {
  margin-top: auto;
  padding: 1em;
}

h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.break {
  height: 1px;
  margin-bottom: 20px;
  background-color: #fff;
}

.content-section {
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
}

.sub-heading,
.description {
  width: 50%;
  padding: 0 0.5rem;
}
p.sub-heading {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }

  .content-section {
    flex-direction: column;
  }

  .sub-heading,
  .description {
    width: 100%;
    padding: 0;
  }
  .sub-heading {
    margin-bottom: 1em;
  }
  .topbar {
    align-items: center;
  }
  .hero-text {
    padding: 1em 0;
    text-align: left;
  }
img.hero-image {
  padding: 1em;
}
.hero-overlay {
  padding: 2rem;
}
  .contact-info {
    font-size: 11px;
    margin-top: -5px;
  }
}
@media (min-width: 768px) {
  #mobile-rspnsv {
    display: none;
  }
}
@media (max-width: 768px) {
  #desktop-rspnsv {
    display: none;
  }
  img.email {
    width: 40px;
  }
}

@media (max-width: 400px) {
  .hero-logo {
    height: 22vw;
  }
}