@media only screen and (min-width: 768px) {
  body .fixed {
    padding: 20px;
  }

  .gallery-header {
    position: relative;
    background-color: black;
    background-size: cover;
  }

  .main-nav {
    height: 20vh;
    animation-name: slideInDown;
    -webkit-animation-name: slideInDown;
    animation-duration: 1s;
  }

  .main-nav-holder {
    height: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .main-nav .main-nav-holder .logo {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
  }

  .mobile-hamburger {
    display: none;
  }

  .main-nav .mobile-holder {
    display: flex;
    height: auto;
    width: 100%;
  }

  .main-nav .mobile-holder .mobile-items {
    display: flex;
    width: 100%;
    font-weight: bolder;
    font-size: 1.5em;
  }

  .main-nav .mobile-holder .mobile-items a {
    color: #fff;
    position: relative;
  }

  .mobile-holder .mobile-items a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }

  .mobile-holder .mobile-items a:hover:after {
    width: 100%;
    left: 0;
  }

  body section {
    padding: 5% 20%;
    line-height: 2;
  }

  #lightgallery {
    padding: 0 20% !important;
  }

  #lightgallery .projects-content {
    padding: 5% 0 !important;
  }

  #lightgallery {
    width: 100% !important;
    height: auto !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    margin: 75px 0;
  }

  #lightgallery a {
    display: flex;
    margin: 2px 0 !important;
    width: 30% !important;
    cursor: pointer;
    height: 250px;
  }

  #lightgallery div {
    width: 30% !important;
    transition: all 0.2s ease-in;
    margin: 15px 0 !important;
  }

  #lightgallery div a {
    width: 100% !important;
  }
  
  #lightgallery .project-image {
    width: 100%;
  }

  #lightgallery div:hover {
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    transform: scale(1.05);
  }

  footer .footer__column {
    width: 25%;
  }

  .triangle-down {
    box-sizing: content-box;
    width: 50%;
    height: 0;
    padding-left: 50%;
    padding-top: 5%;
    overflow: hidden;
  }

  .triangle-down div {
    width: 0;
    height: 0;
    margin-left: -1000px;
    margin-top: -100px;
  }
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}