/* CSS Document */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: #5c5c5c;
}
* {
  box-sizing: border-box;
}
.skipper {
  position: fixed;
  top: -100px;
  right: 10px;
  background: #000;
  padding: 3px 10px;
  color: #fff !important;
	z-index: 10000;
}
.skipper:active, .skipper:focus {
  top: 10px;
}
strong {
  font-weight: 400;
}
a {
  color: #79add3;
  transition: color .3s;
  text-decoration: none;
  font-weight: 600;
}
h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
h1 {
  font-size: 28px;
}
h2 {
  font-size: 20px;
  margin-bottom: 0;
}
p {
  max-width: 930px;
  margin: auto;
  line-height: 180%;
  margin-bottom: 14px;
}
img {
  max-width: 100%;
}
/* HEADER */
header {
  margin: 50px 0 30px 0;
    z-index: 1000;
    position: relative;
}
#logo {
  width: 158px;
  height: 40px;
  margin-bottom: 24px;
}
nav a {
  padding: 24px 12px;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;
  font-size: 15px;
  color: #5c5c5c;
  font-weight: 300;
}
nav a:hover {
  color: #79add3;
}
nav a.currentpage {
  color: #79add3;
}
/* MAIN SLIDESHOW ANIMATION */
@keyframes desaturate {
  0% {
    filter: saturate(100%);
  }
  65% {
    filter: saturate(100%);
  }
  100% {
    filter: saturate(0%);
  }
}
@keyframes logo-slide {
  0% {
    opacity: 0;
    bottom: -110px;
  }
  20% {
    opacity: .1;
    bottom: -110px;
  }
  100% {
    opacity: 1;
    bottom: 99px;
  }
}
@keyframes contact-pics {
  0% {
    opacity: 0;
    filter: saturate(0%);
  }
  40% {
    opacity: 0;
    filter: saturate(0%);
  }
  70% {
    opacity: 1;
  }
  100% {
    filter: saturate(100%);
  }
}
@keyframes contact1 {
  0% {
    opacity: 0;
    filter: saturate(0%);
    margin-left: -50px;
  }
  40% {
    margin-left: -50px;
    opacity: 0;
    filter: saturate(0%);
  }
  70% {
    opacity: 1;
    filter: saturate(20%);
  }
  100% {
    margin-left: 0;
    filter: saturate(100%);
  }
}
@keyframes contact3 {
  0% {
    opacity: 0;
    filter: saturate(0%);
    margin-right: -50px;
  }
  40% {
    margin-right: -50px;
    opacity: 0;
    filter: saturate(0%);
  }
  70% {
    opacity: 1;
    filter: saturate(20%);
  }
  100% {
    margin-right: 0;
    filter: saturate(100%);
  }
}
.header-slideshow {
  width: 100%;
  height: calc(100% - 200px);
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 3.5s;
  filter: saturate(0%);
  border: 100px #fff solid;
}
.slide.active {
  opacity: 1;
  animation-name: desaturate;
  animation-duration: 8s;
}
#hero-logo {
  position: absolute;
  width: calc(100% - 198px);
  left: 99px;
  opacity: 1;
  bottom: 99px;
  z-index: 10;
}
#hero-logo.active {
  animation-name: logo-slide;
  animation-duration: 6s;
}
/* PRESS */
.press-item {
  text-transform: uppercase;
  margin-bottom: 60px;
}
.press-item h2 {
  font-size: 15px;
  margin-bottom: 15px;
}
.press-item a {
  color: #5c5c5c;
}
.press-item img {
  max-width: 260px;
  transition: filter .3s;
}
.press-item a img:hover {
  filter: saturate(0);
}
/* PROJECTS */
.project {
  font-family: "Montserrat", sans-serif;
  max-width: 930px;
  margin: 0 auto 60px auto;
}
.project p {
  margin-top: 20px;
  line-height: 180%;
  letter-spacing: 1px;
}
.project-image {
  padding-bottom: 62.5%;
  position: relative;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.project-architect {
  font-family: "Montserrat", sans-serif;
}
.project-detail h2 {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: -15px;
}
/* CONTACT */
#contact-company, #contact-address, #contact-phone {
  margin-bottom: 8px;
}
#contact-company {
  font-weight: 400;
}
#contact-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
#contact-email a {
  font-weight: 300;
}
#contact-phone a, #contact-email a {
  color: #5c5c5c;
}
#contact-phone a:hover, #contact-email a:hover, #contact-phone a:active, #contact-email a:active, #contact-phone a:focus, #contact-email a:focus {
  color: #79add3;
}
#contact-pics {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 930px;
  margin: 60px auto;
}
#contact-pics img#contact2 {
  display: block;
  max-width: 29%;
  animation: contact-pics;
  animation-duration: 3s;
}
#contact-pics img#contact1 {
  display: block;
  max-width: 29%;
  animation: contact1;
  animation-duration: 3s;
}
#contact-pics img#contact3 {
  display: block;
  max-width: 29%;
  animation: contact3;
  animation-duration: 3s;
}
/* FOOTER */
.home footer {
  position: absolute;
  bottom: 100px;
  width: 100%;
  left: 0;
  z-index: 11;
  line-height: 180%;
  margin: 0;
}
footer {
  margin: 60px 0;
}
#enter {
  margin-bottom: 20px;
}
#enter a {
  font-family: "Montserrat", sans-serif;
  color: #79add3;
  font-weight: 600;
  font-size: 14px;
}
#enter a:hover, .project a:hover {
  color: #999999;
}
#homelink svg, #homelink img {
  fill: currentColor;
  width: 11px;
  height: 11px;
}
#copyright {
  color: #5c5c5c;
  font-size: 12px;
  display: block;
  margin: auto;
  line-height: 180%;
}
#credit, #phone, #social {
  margin: auto;
  font-size: 12px;
  color: #a3a7a8;
  font-weight: 300;
  line-height: 180%;
}
#phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #5c5c5c;
}
#credit:hover, #phone:hover, #credit:active, #phone:active, #credit:focus, #phone:focus {
  color: #7C8283;
}
#social {
  margin-top: 15px;
}
#social a {
  color: #c8cacb;
  opacity: .5;
	transition:opacity .3s;
}
#social a:hover, #social a:active, #social a:focus {
  color: #7badd3;
  opacity: 1;
}
#social img {
  fill: currentColor;
  width: 23px;
  height: 23px;
}
/* Reset the default appearance */
progress {
  display: none;
}
.home progress {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  transition: opacity 1s;
}
/* background: */
.home progress::-webkit-progress-bar {
  background-color: #cccccc;
  width: 100%;
}
.home progress {
  background-color: #cccccc;
}
/* value: */
.home progress::-webkit-progress-value {
  background-color: #79add3 !important;
}
.home progress::-moz-progress-bar {
  background-color: #79add3 !important;
}
.home progress {
  color: #79add3;
}
.home progress[value="100"] {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width:570px){
   span.breakFirst{display:block;font-size:0;opacity:0;line-height:0;}
}
@media screen and (max-width:1070px) {
  h1, h2, p {
    margin-left: 30px;
    margin-right: 30px;
  }
  #contact-pics {
    margin: 60px;
  }
  .header-slideshow {
    max-height: calc(100% - 200px);
    height: auto;
    font-size: 0;
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 70vh;
  }
  @keyframes desaturate {
    0% {
      filter: saturate(100%);
    }
    65% {
      filter: saturate(100%);
    }
    100% {
      filter: saturate(0%);
    }
  }
  .slide {
    border: 100px #fff solid;
    border-left: 0;
    border-right: 0;
  }
  .slide.active {
    opacity: 1;
    animation-name: desaturate;
    animation-duration: 8s;
  }
  #hero-logo {
    width: 100%;
    left: 0;
    bottom: 99px;
    z-index: 10;
  }
}