@font-face {
  font-family: 'Gotham Book';
  src: url('/fonts/Gotham-Book.woff2') format('woff2'),
    url('/fonts/Gotham-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Optima nova LT Pro';
  src: url('/fonts/OptimaNovaLTPro-Medium.woff2') format('woff2'),
    url('/fonts/OptimaNovaLTPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
}

.viewport:after {
  display: none;
  content: 'XS, smaller than 576px';
  font-size: 10px;
  background-color: #eee;
  color: #999;
  padding: 5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.text-panel {
  background-color: #cadff2;
  height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.text-panel .content {
  width: 100%;
}

.text-panel .divider {
  margin: 25px auto;
  height: 3px;
  max-width: 100px;
  background-color: #f36523;
  position: relative;
}

.text-panel .heading {
  font-family: 'Optima nova LT Pro';
  font-size: 40px;
  line-height: 100%;
  color: #162538;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 15%;
}

.text-panel .subtitle {
  font-family: 'Gotham Book';
  font-size: 20px;
  font-weight: 400;
  color: #162538;
  text-align: center;
}

.image-panel {
  background:
    linear-gradient(to bottom,
      #cadff2 0%,
      rgba(202, 223, 242, 0) 20%),
    url('../images/building.png');
  height: 60vh;
  width: 100%;
  background-size: cover;
}