/*---------- Fonts ----------*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500&family=Open+Sans:wght@300;400;500&family=Oswald:wght@300;400;500&display=swap");
/*---------- Universal ----------*/
html {
  overflow-x: hidden; }

.center-me {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%); }

.center-it {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.object-fit {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%; }

a {
  transition: all .3s; }

.noScroll {
  overflow-y: hidden; }

.inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto; }

/*---------- Nav ----------*/
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  z-index: 10;
  transition: all .3s; }
  nav .inner {
    max-width: 1400px;
    margin: 0 auto; }
    nav .inner .logo {
      display: block;
      float: left;
      color: #ffffff;
      font-size: 30px;
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      text-decoration: none; }
    nav .inner ul {
      list-style-type: none;
      float: right; }
      nav .inner ul li {
        display: inline-block;
        font-family: 'Open Sans', sans-serif;
        margin-right: 30px; }
        nav .inner ul li a {
          color: #ffffff;
          font-size: 13px;
          text-transform: uppercase;
          text-decoration: none; }
        nav .inner ul li a:hover {
          color: #F2DC99; }
      nav .inner ul li:last-child {
        margin-right: 0px; }

.isScrolled nav {
  background-color: #3E4C59; }

/*---------- Header ----------*/
header {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center; }
  header .logo {
    width: 200px;
    height: auto; }
  header h1 {
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif; }
  header p {
    color: #ffffff;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }

/*---------- Sections ----------*/
.intro {
  position: relative;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover; }
  .intro h1 {
    color: #000000;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif; }
    .intro h1 span {
      font-family: 'Open Sans', sans-serif; }
  .intro p {
    color: #000000;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }
  .intro .parallax-container {
    /*  this is where the magic happens:  */
    background-image: url("https://images.unsplash.com/photo-1519120944692-1a8d8cfc107f");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 300px;
    /* you are free to lay out the container items with flexbox or whatever means you wish */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

.portfolio {
  position: relative;
  width: 100%;
  margin-top: 100px; }
  .portfolio h1 {
    color: #000000;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center; }
    @media only screen and (max-width: 680px) {
      .portfolio h1 {
        font-size: 30px; } }
  .portfolio p {
    color: #000000;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }
  .portfolio .col {
    position: relative;
    text-align: center;
    margin-bottom: 50px; }
    .portfolio .col .view-more {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 100%;
      width: calc(100% - 47px);
      margin-left: 24px;
      background-color: rgba(0, 0, 0, 0.7);
      transition: all .3s;
      opacity: 0;
      cursor: pointer; }
      .portfolio .col .view-more h2 {
        color: #ffffff;
        font-size: 30px;
        margin-bottom: 40px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: 'Oswald', sans-serif;
        text-align: center; }
        @media only screen and (max-width: 680px) {
          .portfolio .col .view-more h2 {
            font-size: 20px;
            margin-bottom: 20px; } }
      .portfolio .col .view-more span {
        display: block;
        margin: 0 auto;
        color: #ffffff;
        font-size: 12px;
        font-family: 'Open Sans', sans-serif;
        text-transform: uppercase; }
      .portfolio .col .view-more a {
        position: relative;
        top: 40px;
        display: block;
        max-width: 135px;
        margin-top: 30px;
        text-align: center;
        background-color: #3E4C59;
        padding: 10px 15px 10px 15px;
        color: #ffffff;
        margin: 0 auto;
        text-decoration: none;
        font-size: 13px;
        text-transform: uppercase;
        transition: all .3s; }
        .portfolio .col .view-more a:hover {
          background-color: #000000; }
        @media only screen and (max-width: 680px) {
          .portfolio .col .view-more a {
            top: 10px; } }
    @media only screen and (max-width: 680px) {
      .portfolio .col {
        width: 100%;
        display: block; } }
  .portfolio .col:hover .view-more {
    opacity: 1; }

.services {
  position: relative;
  width: 100%;
  margin-top: 100px; }
  .services h1 {
    color: #000000;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center; }
  .services p {
    color: #000000;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }

.contact {
  position: relative;
  width: 100%;
  margin-top: 100px; }
  .contact h1 {
    color: #000000;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center; }
  .contact p {
    color: #000000;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }

.portfolio-detail {
  position: relative;
  width: 100%;
  margin-top: 100px; }
  .portfolio-detail h1 {
    color: #000000;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center; }
  .portfolio-detail p {
    color: #000000;
    margin-top: 30px;
    font-size: 20px;
    font-family: 'Lora'; }
  .portfolio-detail a {
    color: #3E4C59;
    text-decoration: none; }

footer {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #12161a;
  text-align: center; }
  footer h3 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center; }
  footer i {
    font-size: 24px;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 auto; }
  footer p {
    color: #fff;
    margin-top: 30px;
    font-size: 14px;
    font-family: 'Lora';
    text-align: center; }

/*---------- Overlay ----------*/
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 3000;
  overflow-y: scroll;
  overflow-x: hidden; }

.overlay-section {
  position: static; }

.overlay-slidedown {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s; }

.overlay-slidedown.open {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out; }

.close {
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer; }

.close:before, .close:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 4px;
  background: #000;
  border-radius: 4px; }

.close:before {
  transform: rotate(45deg); }

.close:after {
  transform: rotate(-45deg); }

.close span {
  display: block; }

/*---------- Preloader ----------*/
#overlayer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
  background: #4a4a4a;
  transition: all .3s; }
  #overlayer.done {
    height: 0%; }

.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 30;
  transition: all .3s; }
  .loading .logo {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 40px; }
  .loading.done {
    height: 0%; }

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  z-index: 3;
  border: 4px solid #Fff;
  animation: loader 3s infinite ease; }

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 3s infinite ease-in; }

@keyframes loader {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(180deg); }
  50% {
    transform: rotate(180deg); }
  75% {
    transform: rotate(360deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes loader-inner {
  0% {
    height: 0%; }
  25% {
    height: 0%; }
  50% {
    height: 100%; }
  75% {
    height: 100%; }
  100% {
    height: 0%; } }

/*# sourceMappingURL=styles.css.map */
