/*--- GENERAL STYLES ---*/
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.reveal-inplace {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.reveal-inplace.visible {
  opacity: 1;
}
@keyframes stagger {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.stagger-reveal {
  animation-name: stagger;
  animation-play-state: paused;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
  animation-duration: 1s;
}
.reveal-inplace.visible .stagger-reveal {
  animation-play-state: running !important;
}
@font-face {
  font-family: 'Press Style';
  src: url('../../../assets/fonts/Press-Style.ttf.woff') format('woff'), url('../../../assets/fonts/Press-Style.ttf.svg#Press-Style') format('svg'), url('../../../assets/fonts/Press-Style.ttf.eot'), url('../../../assets/fonts/Press-Style.ttf.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Press Style';
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 400;
  padding-bottom: 0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1em;
}
h3 {
  font-size: 40px;
}
.site-wrapper {
  display: grid;
  grid-template-columns: 100%;
  position: relative;
}
body {
  line-height: 1.8em;
  font-size: 18px;
  background: url(../../../assets/img/white-bg.jpg);
  color: #1d1d1d;
}
html, body, .site-wrapper {
  min-height: 100vh;
  font-family: 'Lato';
}
.page-content {
  max-width: 1200px;
  margin: 50px auto;
}
.page-content a, .content a {
  color: #7f8a8c;
  font-weight: 700;
}
.page-content a:hover, .content a:hover {
  color: #1d1d1d;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .page-content {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
/*--- MENU ---*/
#header {
  font-family: 'Press Style';
  padding-left: 1%;
  padding-right: 1%;
  padding-top: 10px;
  padding-bottom: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  letter-spacing: 1px;
  z-index: 99;
  font-size: 30px;
}
.header-inner .social {
  padding-top: 5px;
}
.header-inner .social {
  font-size: 20px;
  color: #fff;
}
.header-inner .social i {
  margin-left: 20px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 30px;
  padding-top: 10px;
  padding-left: 1%;
  padding-right: 1%;
}
.header-inner a {
  color: #fff;
  text-transform: uppercase;
}
#header i {
  font-size: 26px;
  position: relative;
  top: -1px;
}
ul.dropdown li {
  padding-right: 20px !important;
}
ul.dropdown li a {
  padding-left: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 5px !important;
}
ul.dropdown li a:hover {
  border-bottom: 2px solid #fff;
}
.main_menu ul {
  display: flex;
  padding: 0;
  list-style: none;
  margin: 0;
}
.main_menu ul li a {
  padding: 0 10px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.main_menu {
  padding: 1% 0;
  display: flex;
  justify-content: center;
}
.main_menu > ul > li:hover .nav-drop {
  height: auto !important;
}
ul.nav-drop {
  flex-direction: column;
  height: 0;
  position: absolute;
  overflow: hidden;
  background-color: #000;
}
.header-underlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
/*--- HOME ---*/
.home-header img {
  width: 100%;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (min-width: 1920px) {
  .home-header {
    margin-top: -30px;
  }
}
@media screen and (max-width: 980px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.section-title {
  font-size: 60px;
  font-family: 'Press Style';
  text-align: left;
  text-transform: uppercase;
  line-height: 2em;
}
.what-i-do, .work-home, .testimonials-home {
  padding-top: 90px;
  padding-bottom: 120px;
  width: 100%;
  clear: both;
  float: left;
}
.what-i-do .inner-content, .work-home .inner-content, .testimonials-home .inner-content {
  max-width: 1200px;
  margin: 0 auto;
}
#footer {
  clear: both;
}
.what-i-do {
  text-align: center;
  background: url(../../../assets/img/blue-bg.jpg);
  color: #fff;
}
.work-home {
  background: url(../../../assets/img/grey-bg.jpg);
  color: #fff;
}
.testimonials-home {
  background: url(../../../assets/img/white-bg.jpg);
  color: #141414;
}
.services-cols {
  width: 1200px;
  align-items: center;
  align-content: center;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  font-size: 40px;
  font-family: 'Press Style';
  text-transform: uppercase;
}
.services-cols div {
  text-align: center;
}
.services-cols div i {
  width: 60px;
  padding-left: 5px;
  padding-right: 5px;
}
.work-content {
  width: 1200px;
  align-items: center;
  align-content: center;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  font-size: 40px;
  font-family: 'Press Style';
  text-transform: uppercase;
  padding-bottom: 50px;
}
.work-content img {
  max-width: 100%;
  height: auto;
}
.work-content iframe {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .what-i-do .inner-content, .work-home .inner-content, .testimonials-home .inner-content {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0 auto;
  }
  .work-content {
    width: 100%;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    font-size: 40px;
    font-family: 'Press Style';
    text-transform: uppercase;
  }
}
@media screen and (max-width: 980px) {
  .services-cols {
    width: 80%;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .services-cols {
    width: 90%;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .work-content {
    width: 980px;
    max-width: 90%;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    font-size: 40px;
    font-family: 'Press Style';
    text-transform: uppercase;
  }
  .section-title {
    text-align: center;
  }
  .more {
    float: none;
    display: block;
    margin: 20px auto;
    width: 150px;
    text-align: center;
  }
}
/*--- SLIDER ---*/
.slick-prev:before, .slick-next:before {
  color: #1d1d1d;
}
.slick-next {
  right: -30px;
}
.slick-prev {
  left: -40px;
}
.h-testimonials {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.slick-dots {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .h-testimonials {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .slick-prev:before, .slick-next:before {
    display: none;
  }
  .slick-dots {
    display: block;
  }
}
/*--- HEADER ---*/
.page-header {
  height: auto;
}
.page-header img {
  width: 100%;
  height: auto;
}
/*--- FOOTER ---*/
#footer {
  background: url(../../../assets/img/grey-bg.jpg);
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
#footer a {
  color: #7d8a8c;
  font-weight: 400;
}
#footer a:hover {
  color: #fff;
  font-weight: 400;
}
/*--- SERVICES ---*/
.service-title {
  font-size: 40px;
  font-family: 'Press Style';
  text-transform: uppercase;
}
/*--- CONTACT ---*/
.form {
  text-transform: uppercase;
  text-align: left;
  max-width: 800px;
  margin: 40px 0;
}
.form input, .form textarea {
  width: 100%;
  background: none;
  color: #1d1d1d;
  border: 2px solid #1d1d1d;
  padding: 10px;
}
.form input {
  height: 50px;
}
.form textarea {
  height: 250px;
}
.form .wpcf7-submit {
  background: url(../../../assets/img/blue-bg.jpg);
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  margin: 0;
  display: block;
  border: 0;
  font-family: 'Press Style';
  font-size: 32px;
  letter-spacing: 1px;
  height: 60px;
}
.form .wpcf7-submit:hover {
  color: #7d8a8c !important;
  border: 0;
  background: url(../../../assets/img/grey-bg.jpg);
  cursor: pointer !important;
}
/*--- MORE ---*/
.more {
  float: right;
  margin-top: 20px;
  background: url(../../../assets/img/blue-bg.jpg);
  color: #fff !important;
  padding: 20px;
  text-transform: uppercase;
  font-family: 'Press Style';
  font-size: 30px;
}
.more:hover {
  background: url(../../../assets/img/grey-bg.jpg);
}
