html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}

.clearfix:after {
clear: both;
}

.resp-img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}

.full {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/************ nav *************/
.nav-container,
.max-container {
  max-width: 1000px;
  margin: 0 auto;
}
.nav-container-relative {
  position: relative;
}
.top-nav {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 14px 10px;
  background-color: #000;
}
.about .top-nav {
  background-color: #000;
  padding: 14px 10px;
}
.top-nav {
  font-family: 'Teko', sans-serif;
}
.logo {
  display: inline-block;
  vertical-align: middle;
  height: 90px;
}
.nav-items {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.nav-item {
  float: left;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  margin: 0 60px 0 0;
  font-size: 21px;
  letter-spacing: 1.1px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
}
.nav-item:last-child {
  margin: 0;
}
.nav-item-active:after {
  content: " ";
  position: absolute;
  bottom: 2px;
  height: 2px;
  background-color: #54b2e9;
  left: 0;
  right: 0;
}
.mobile-nav-items {
  visibility: hidden;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background-color: #000;
  padding: 100px 0 0 0;
}
.active-nav.mobile-nav-items {
  visibility: visible;
}
.mobile-nav-item {
  font-family: 'Teko', sans-serif;
  letter-spacing: 1.4px;
  font-size: 27px;
  display: table;
  color: #fff;
  text-decoration: none;
  margin: 40px auto;
  position: relative;
}
.mobile-nav-item:first-child {
  margin-top: 0;
}
.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-logo {
  display: none;
  float: left;
}

.mobile-burger {
  display: none;
  float: right;
  position: relative;
  z-index: 9102;
  cursor: pointer;
}


.full .bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.bottom-nav {
  padding: 15px;
  background-color: #000000;
}
.nav__social-btns {
  overflow: hidden;
}
.nav__social-btn {
  float: left;
  margin: 0 25px 0 0;
  cursor: pointer;
}
.nav__social-btn:last-child {
  margin: 0;
}
.nav__extra-infos {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.nav__extra-info {
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  float: left;
  margin: 0 30px 0 0;
  color: #fff;
  font-size: 12px;
}
.nav__extra-info:last-child {
  margin: 0;
}
.mobile-nav-small {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
/************ END nav *************/

/************ home *************/
.main-slides {
  position: absolute;
  top: 118px;
  left: 0;
  right: 0;
  bottom: 50px;
}
@media screen and (max-width: 720px) {
  .main-slides {
    top: 59px;
    bottom: 0;
  }
}
.main-slide {
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.slide-caption {
  position: absolute;
  bottom: 95px;
  right: 35px;
  padding: 0 5px 5px 0;
}
.slide-caption-icon {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.slide-caption-content {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0,0,0,.85);
  min-width: 200px;
}
.active-caption .slide-caption-content {
  visibility: visible;
}
.slide-caption-content-title {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-family: 'Teko', sans-serif;
  color: #fff;
  font-size: 18px;
}
.slide-caption-content-location {
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2px;
  color: #ccc;
  font-size: 12px;
  margin: 0 0 15px 0;
}
.slide-caption-content-link {
  white-space: nowrap;
  color: #54b2e9;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  letter-spacing: 0.8px;
  font-size: 16px;
}
/************ END home *************/

@media (max-width: 720px) {
  /**** nav ********/
  .logo {
    display: none;
  }
  .nav-items {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .mobile-burger {
    display: block;
  }
  .mobile-nav-items {
    display: block;
  }

  /**** footer ********/
  .bottom-nav {
    display: none;
  }

  /******* home ********/
  .slide-caption {
    bottom: 20px;
    right: 20px;
  }
}



/************* about ***************/
.about-top-container {
  overflow: hidden;
  position: relative;
}
.about-image-side {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
}
.about-copy-side {
  padding: 3vw 5vw;
  position: relative;
  left: 50%;
  width: 50%;
}
.about-title {
  text-transform: uppercase;
  font-family: 'Teko', sans-serif;
  margin: 0 0 28px 0;
  font-size: 48px;
  color: #262626;
  letter-spacing: 2.4px;
  font-weight: 300;
}
.about-copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #262626;
  letter-spacing: 0.3px;
}
.about-cta-container {
  overflow: hidden;
  margin: 60px 0 0;
}
.about-cta {
  float: left;
  text-align: center;
  margin: 0 30px 0 0;
  padding: 14px 0;
  width: 200px;
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1;
}
.about-cta:last-child {
  margin: 0;
}
.hollow-cta {
  border: solid 2px #262626;
  color: #262626;
}
.fill-cta {
  color: #fff;
  background-color: #262626;
}

.about-bio-container {
  background-color: #eee;
}
.about-bios-intro {
  padding: 90px 0 0;
}
.about-bios-title {
  text-transform: uppercase;
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2.4px;
  text-align: center;
  color: #262626;
  margin: 0;
  line-height: 1;
  padding: 0 0 56px 0;
}
.about-bio-content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px 60px 10px;
}
.about-bio {
  float: left;
  max-width: 323px;
  width: 100%;
  padding: 0 60px 0 0;
}
.bio-name {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #262626;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0 0 0;
  line-height: 1.1;
}
.bio-title {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.8px;
  color: #262626;
  margin: 0;
  line-height: 1.1;
}
.about-bio-content {
  overflow: hidden;
  max-width: 930px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #262626;
}
.about-bio-paragraph:first-child {
  margin-top: 0;
}
.about-bio-paragraph:last-child {
  margin-bottom: 0;
}

/*
@media screen and (max-width: 1333px) {
  .about-title {
    font-size: 30px;
    letter-spacing: 2.1px;
  }

  .about-copy {
    font-size: 14px;
    letter-spacing: 0.3px;
  }

  .about-cta-container {
    margin: 40px 0 0 0;
  }

  .about-cta {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1.2px;
  }

  .about-bio-content {
    text-align: center;
  }

}
*/

@media screen and (max-width: 768px) {
  .about-top-side {
    max-width: 480px;
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  .about-image-side {
    position: static;
    height: 360px;
  }
  .about-copy-side {
    max-width: 800px;
    padding: 44px 20px;
    position: static;
  }
  .about-cta-container {
    margin: 0;
    padding: 10px 0 0 0;
    overflow: hidden;
  }
  .about-copy {
    font-size: 16px;
  }
  .about-cta,
  .about-cta:last-child {
    width: 100%;
    float: none;
    margin: 15px 0;
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  .about-bio-content-container {
    font-size: 16px;
  }
  .about-bio {
    float: none;
    margin: 0 auto;
    padding: 0;
  }
  .bio-name {
    padding: 20px 0 16px 0;
    text-align: center;
  }
  .bio-title {
    text-align: center;
    padding: 0 0 40px 0;
  }
}

/************* projects LIST ***************/
.projects {
  margin:  0 auto;
  max-width: 1140px;
  padding: 90px 10px;
}
.projects-container {
  margin: 0 0 0 -30px;
  text-align: center;
}
.project-container {
  display: inline-block;
  padding: 0 0 55px 30px;
  width: 33.3333333333333%;
  vertical-align: top;
}
.project {
  display: block;
  text-decoration: none;
  transition: color .35s ease;
  color: #000;
}
.project:visited {
  color: #000;
}
.project:hover {
  color: #54b2e9;
}
.project-title {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 300;
  text-decoration: none;
  margin: 18px 0 0;
  line-height: 1;
}

@media (max-width: 656px) {
  .projects {
    padding: 30px 10px;
  }
  .projects-container {
    margin-left: -14px;
  }
  .project-container {
    width: 50%;
    padding-bottom: 40px;
    padding-left: 14px;
  }
  .project-title {
    margin: 10px 0 0;
    font-size: 18px;
    letter-spacing: 1.1px;
  }
}


/************* project INDIVIDUAL ***************/
.project-individual-top {
  padding: 80px 10px;
  background-color: #eeeeee;
}
.project-individual-title {
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1.5px;
}
.project-individual-paragraph {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.project-images {

}
.project-image-row {
  margin-top: 30px;
  margin-bottom: 30px;
}
.project-image-large {
  max-width: 100%;
  display: block;
}
.project-images-small-row {
  margin-left: -30px;
}
.project-image-small {
  float: left;
  padding-left: 30px;
  width: 50%;
  max-width: 100%;
}

@media screen and (max-width: 500px) {
  .project-images-small-row {
    margin-left: 0;
  }
  .project-image-small {
    display: block;
    padding-left: 0;
    width: 100%;
    margin: 0 0 30px 0;
  }
  .project-image-small:last-child {
    margin: 0;
  }
}

.other-projects-title {
  display: table;
  margin: 0 auto 30px;
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.other-projects {
  padding: 0 10px;
}
.other-projects-container {
  margin: 10px 0 10px -30px;
}
.other-project-container {
  display: inline-block;
  vertical-align: top;
  width: 33.33333333%;
  padding: 0 0 60px 30px;
}
.other-project {
  text-decoration: none;
  color: #000;
  transition: color .35s ease;
}
.other-project:visited {
  color: #000;
}
.other-project:hover {
  color: #54b2e9;
}
.other-project-title {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-align: center;
  margin: 20px 0 0;
}


@media (max-width: 656px) {
  .project-individual-title {
    font-size: 30px;
    font-weight: 300;
    line-height: 0.8;
    letter-spacing: 1.5px;
  }
  .project-individual-paragraph {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.3px;
  }
  .other-projects-container {
    margin-left: -14px;
  }
  .other-project-container {
    width: 50%;
    padding-bottom: 40px;
    padding-left: 14px;
  }
  .other-project-title {
    margin: 10px 0 0;
    font-size: 18px;
    letter-spacing: 1.1px;
  }
}

/************* contact ******/
.contact-sides {
  position: absolute;
  top: 100px;
  bottom: 30px;
  left: 0;
  right: 0;
}
.contact-side {
  width: 50%;
  float: left;
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  padding: 0 0 0 10%;
}
.contact-image-side {
  background-image: url(/images/contact.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact-title-main {
  margin: 0;
  line-height: 1;
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  letter-spacing: 2.1px;
  color: #000000;
  font-weight: normal;
  padding-bottom: 20px;
}
.contact-title-sub {
  margin: 0;
  line-height: 1;
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #000000;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 20px;
}
.contact-title-link {
  display: block;
  text-decoration: none;
  color: #000;
  font-family: 'Open Sans', sans-serif;
}
.contact-title-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .contact-sides {
    position: static;
  }
  .contact-side {
    float: none;
    height: auto;
    width: 100%;
    padding: 0;
    display: block;
  }
  .contact-image-side {
    height: 190px;
  }
  .contact-info {
    padding: 0 0 30px 0;
  }
  .contact-title-main {
    text-align: center;
    font-size: 30px;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 42px 0 5px;
  }
  .contact-title-sub {
    text-align: center;
    font-size: 21px;
    letter-spacing: 1.1px;
    margin: 0;
    padding: 25px 0 5px;
  }
  .contact-title-link {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
}
/************* END contact ******/
