@font-face {
  font-family: 'SctoGrotesk';
  src: url(fonts/SctoGroteskA-Bold.otf);
  font-weight: bold;
}
@font-face {
  font-family: 'SctoGrotesk';
  src: url(fonts/SctoGroteskA-Light.otf);
  font-weight: 200;
}
@font-face {
  font-family: 'SctoGrotesk';
  src: url(fonts/SctoGroteskA-Medium.otf);
  font-weight: medium;
}

body {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  height: 100vh;
}

div {
  box-sizing: border-box;
}

h1 {
  font-family: 'SctoGrotesk', sans-serif;
  text-align: center;
  font-weight: 200;
  margin: 0;
}

p,
a {
  font-size: 19px;
  line-height: 25px;
  font-family: 'SctoGrotesk', sans-serif;
  font-weight: medium;
}

strong {
  font-weight: bold;
}

span {
  font-size: 12px;
  line-height: 14px;
  font-family: 'SctoGrotesk', sans-serif;
  font-weight: 200;
}

a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  font-family: 'SctoGrotesk', sans-serif;
}

a:hover {
  color: #DE6D45;
}

.side-wrap {
  flex: 2.66;
  flex-direction: row;
  display: flex;
}

.section {
  flex: 1;
  height: 100vh;
  position: relative;
  padding: 50px;
}

#section-1 {
  background-color: #000;
  color: #FFF;
  text-align: right;
}

#section-2 {
  background-image: url(photo-1.png);
  background-size: cover;
  background-position: 50%;
}

#section-3 {
  background-color: #FFF;
  text-align: center;
}
#section-3 h1 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8vw;
}
#section-3 .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
}
#section-3 .contact {
  text-align: center;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translatex(-50%);
}
#section-3 .contact p {
  white-space: nowrap;
}

#section-4 {
  background-image: url(photo-2.png);
  background-size: cover;
  background-position: 50%;
}

#section-5 {
  background-color: #DE6D45;
}

@media(max-width: 1200px) {
  .side-wrap {
    flex-direction: column;
    flex: 1.33;
  }

  .section:not(#section-3) {
    height: 50vh;
  }

  #section-3 .contact p,
  #section-3 .contact a {
    font-size: 16px;
  }
  #section-3 h1 {
    font-size: 4.2vw;
  }
}

@media(max-width: 992px) {
  body {
    flex-direction: column;
    min-height: 100vh;
    height: auto;
  }
  .section {
    height: auto !important;
    flex-direction: column;
    width: 100vw;
    flex: 1.33 1.33 0;
  }
  #section-2,
  #section-4 {
    background-position-y: 45%;
  }
  #section-2 {
    background-image: url(photo-1-2.jpg);
  }
  #section-4 {
    background-image: url(photo-2-2.jpg);
  }
  .side-wrap {
    flex-direction: column;
    flex: 2.66;
    width: 100vw;
  }
  #section-3 .contact {
    bottom: 30px;
  }
  #section-3 .contact p {
    margin: 0;
  }
  #section-3 h1 {
    font-size: 56px;
  }
  #section-3 .logo {
    width: 50%;
    min-width: 250px;
  }
}

@media(max-width: 768px) {
  .section {
  }
}
