
// Fonts

// Variables
@import "variables";
@import "slider";

// Bootstrap
@import '~bootstrap/scss/bootstrap';
@import '~font-awesome/css/font-awesome';

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");


html, body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  font-size: 14px;
}

@font-face {
  font-family: GothamBold;
  src: url(fonts/Gotham-Bold.otf);
}
@font-face {
  font-family: Gotham;
  src: url(fonts/Gotham-Book-Regular.otf);
}

h1, h2, h3, h4, h5, h6 {
  font-family: GothamBold, 'Open Sans', sans-serif !important;
}

.navbar {
  width: 100%;
  z-index: 101;
  letter-spacing: .1em;
  font-size: .9em;
  padding: .5rem 0rem;

  .navbar__container {
    justify-content: flex-end;
  }
  
  .navbar__menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 50%;
    right: 200px;
    font-weight: 300;
    color: #ffffff;
    &.filters {
      right: 200px;
      position: fixed
    }
    li {
      list-style: none;
      a {
        font-size: .70rem;
      }
      &.active {
        font-weight: bold;
      }
    }
  }
}

.project-bg {
  background-position: center;
  width: 100%;
  height: 680px;
  background-size: cover;
}

.project__page {
  position: relative;
  z-index: 10000;
  background-color: #ffffff;
  
  .project__hero {
    margin-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 80px;
    height: 83vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 90;
    overflow: hidden;
    

    .video__bg {
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: 10;
      
      video {
        width: 100%;
        opacity: .8;
        @media (min-width: 1420px) {
            width: 100%;
            transform: scale(1.2);
        }
        @media (max-width: 1419px) {
            height: 100%;
            transform: scale(1.5);
        }
        @media (max-width: 1024px) {
            height: 100%;
            transform: scale(2.5);
        }
        @media (max-width: 720px) {
            height: 100%;
            transform: scale(3);
        }
      }
    }

    &::after {
      position: absolute;
      top: 0px;
      z-index: 5;
      content: " ";
      left: 0px;
      width: 100%;
      height: 100%;
      background-color: rgba(99, 145, 207, .1);
    }
    
    .hero__container {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 100;
      display: flex;
      align-items: center;
      //padding-bottom: 180px;
      z-index: 1000;
      justify-content: center;
    }
    
    h2 {
      z-index: 100;  
      color: #ffffff;
      font-size: 5.5rem;
      font-weight: bold;
    }
  }

  
  .fake_height_for_menu {
    height: 96px;
    display: none;
    &.active {
      display: block;
    }
  }
  
  .project__menu {
    //   border-bottom: 1px solid rgba(0,0,0,.1);
    
    &.hidden {
      visibility: hidden;
      opacity: 0;
    }
    &.project__menu__fixed {
      position: fixed;
      width: 100%;
      top: 0px;
      right: 60px;
      z-index: 1010;
      opacity: 1;
      background-color: #ffffff;
      // box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    }
    .container {
      display: flex;
      width: 100%;
      max-width: 100%;
      justify-content: flex-end;
      padding-top: 35px;
      padding-bottom: 35px;
      ul {
        display: flex;
        justify-content: space-between;
        width: 250px;
        margin: 0px;
        padding: 0px;
        
        li {
          list-style: none;
          a {
            font-weight: 600;
            color: #000000;
            transition: all .4s ease-in;
            font-size: .8rem;
            &:hover {
              text-decoration: none;
              color: rgba(0,0,0,.85);              
            }
          }
        }
      }
    }
  }
  .next__project__button {
    position: fixed;
    right: 0px;
    top: 25%;
    transform: translateY(-50%);
    z-index: 10000;

    a {
      background-color: #ffffff;
      color: #000000;
      padding-right: 30px;
      padding-left: 50px;
      padding-top: 15px;
      padding-bottom: 15px;
      display: block;
      letter-spacing: .1em;
      border-radius: 2px;
      font-size: .8em;
      i {
        padding-left: 20px;
        transition: all .3s ease;
      }
      transition: all .3s ease;
      &:hover {
        cursor: pointer;
        background-color: #000;
        color: #fff;
        text-decoration: none;
        i {
          transform: translateX(4px);
        }
      }
    }

  }
  .project__view {
    .slider__page__details {
      position: relative;
      width: 100%;
      text-align: right;
      padding-right: 15px;
      padding-left: 15px;
      margin-top: 20px;
    }
    .slider, .slider-desenhos {
      position: relative;
      height: 680px;
      max-height: 680px;

      @media (max-width: 1640px) {
          height: 480px;
          max-height: 480px;
      }
      
      .owl-nav {
        z-index: 100;
        .owl-next {
          position: absolute;
          right: 0px;
          top: 50%;
          transform: translateY(-50%);
        }
        .owl-prev {
          position: absolute;
          left: 0px;
          top: 50%;
          transform: translateY(-50%);
        }
        button {
          img {
            width: 40px;
          }
        }
      }
    }
    &.container {
      padding-left: 6rem;
      padding-right: 6rem;
    }
    color: #262626;
    &.v2 {
      margin-top: -30rem;
    }
    .project__title {
      font-size: 2.85714em;
      margin-bottom: 0.3em;
      font-weight: bold;
      font-family: "Open Sans";
      line-height: 1.2em;
      color: #262626;
      //margin-left: 16.4%;
    }
    .project-desc {
      position: relative;
      height: 680px;
      @media (max-width: 1640px) {
        height: 580px;
      }
      border-top: 1px solid #000;
      width: 50%;
      padding-top: 20px;
      h1 {
        font-size: 1.4rem;
      }
      p {
        color: #a0a0a0;
        margin-top: 15px;
        font-size: 12px;
      }
    }
    .project__info {
      display: none;
      padding-top: 80px;
      padding-bottom: 40px;
      width: 100%;
      .btn-close {
        position: absolute;
        top: 0px;
        right: 0px;
        img {
          width: 18px;
        }
        &:hover {
          cursor: pointer;
        }
      }
      .desc {
        padding-top: 20px;
        font-size: .8rem;
        padding-bottom: 40px;
        color: #a0a0a0;
      }
      .project__desc__section {
        margin-bottom: 30px;
        h5 {
          font-size: .8rem;
          color: #3d3d3d;
        }
        p {
          font-size: .8rem;
          padding-bottom: 5px;
          color: #a0a0a0;
        }
      }
      h3 {
        font-size: .7rem;
        color: #c6c6c6;
        font-weight: 400;
        margin-bottom: 30px;
      }
      h2 {
        color: #3d3d3d;
        font-size: 2rem;
      }

      @media (max-width: 997px) {
        display: block;
        padding-top: 40px;
        width: 100%;

        .btn-close {
          display: none;
        }
      }
    }
  }
  .mora__info__btns {
    position: absolute;
    bottom: 30px;
    left: 0px;
    list-style: none;
    display: flex;
    padding: 0px;
    margin: 0px;

    li {
      margin-right: 20px 
    }
    .no__info__pressed {
      display: none;
    }
    .l {
      border: none;
      font-size: .85rem;
      color: #000;
      padding: 0px;
      font-family: Gotham, "Open Sans", sans-serif;
      transition: all .8s ease-in-out;
      &:hover {
        cursor: pointer;
        text-decoration: none;
        color: lighten(#000000, 60%);
      }
      &.active {
        font-family: GothamBold, 'Open Sans', sans-serif
      }
    }
    @media (max-width: 997px) {
      display: none;
    }
  }
}


.page {
  padding-top: 30px;
  padding-left: 90px;
  padding-right: 90px;
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
  .navbar {
    display: flex;
    justify-content: space-between;
    .navbar__menu {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-end;
      flex-direction: row;
      width: 50%;
      a {
          transition: all .4s ease-in-out;
          font-weight: normal;
          color: #000;
          font-family: Gotham, 'Open Sans', sans-serif;
          font-weight: 400;

          &:hover {
            font-weight: 800;
            text-decoration: none;
            font-family: GothamBold, 'Open Sans', sans-serif;       
          }
      }      
      li {
        list-style: none;
        margin-right: 2rem;
        &.active {
          a {
          font-family: GothamBold, 'Open Sans', sans-serif;
          font-weight: bold;
          }
        }
      }
    }
    .main-menu {
      li {
        margin-right: 3rem;
      }
    }
    .logo {
      width: 80px; 
    }
    .menu-bars {
      transition: all .3s ease;
      &.isCross {
        transform: scale(1.3);
      }
      &:hover {
        transform: scale(1.3);
      }
      #line_1,#line_2, #line_3 {
        background-color: #231F20;
        height: 1px;
        width: 24px;
        display: block;
        margin-top: 5px;        
      }
      width: 25px;
      svg {
        width: 100%;
        rect {
          fill:#231F20;
        }
      }
    }
  }
  .hero {
    flex: 1;
    width: 100%;
    margin-top: 30px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 80vh;
    .hero__container {
      height: 80vh;
    }

    .video__bg {
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: 10;
      video {
        width: 100%;
      }
    }
    .projects__button {
      position: absolute;
      top: 150px;
      right: 0px;
      z-index: 25;
      a {
        background-color: #ffffff;
        color: #000000;
        padding-right: 30px;
        padding-left: 50px;
        padding-top: 15px;
        padding-bottom: 15px;
        display: block;
        letter-spacing: .1em;
        border-radius: 2px;
        font-size: .9em;
        i {
          padding-left: 20px;
          transition: all .3s ease;
        }
        transition: all .3s ease;
        &:hover {
          cursor: pointer;
          background-color: #000;
          color: #fff;
          text-decoration: none;
          i {
            transform: translateX(4px);
          }
        }
      }
    }
    .hero__container {
      text-align: center;
      display: flex;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 20;
      .hero__project__name {
        overflow: hidden;
      }
      h3, h2 {
        color: #fff;
        font-size: 5.5rem;
        font-weight: bold;
      }
    }
  }
}
.section-selection {
  position: fixed;
  width: 60px; 
  top: 0px;
  right: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  .dots {
    margin: 0px;
    padding: 0px; 
    li {
      list-style: none;
      height: 30px;
      span {
        height: 12px;
        width: 12px;
        border-radius: 200px;
        display: block;
        background-color: #000;
        &.active {
          background-color: rgba(0,0,0,.3); 
        }
      }
    }
  }
}
footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 120px;
  padding-top: 80px; 
  padding-bottom: 80px;
  background-color: #e6e7e8;
  color: rgba(0, 0, 0, 0.5); 
  .footer__top {
    display: flex;
    justify-content: space-between;
    .logo {
      width: 130px;
    }
    .social-links {
      display: flex;
      justify-content: space-between;
      margin: 0;
      padding: 0;
      li {
        list-style: none;
        width: 60px;
        svg {
          width: 40px;
          path, rect {
            fill:#231F20;
          }
        }
      }
    }
  }
  .footer_bottom {
    padding-top: 40px;
    font-size: .8rem; 
  }
}

.works-page {
  position: relative;
  z-index: 10000;
  background-color: #fff;
  .page-title {
    font-size: 5.5rem;
    font-weight: bold;
    z-index: 1000;
    position: relative;
    margin-top: 6rem;
    color: #000000;
    padding-bottom: 120px;
  }
  .content-area {
    margin-top: 26px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .filters {
    display: flex;
    //padding-left: 30px;
    a {
      font-size: .9rem;
      color: #000000;
      margin-right: 1rem;
      font-weight: normal;
      font-family: Gotham, "Open Sans", sans-serif;
      transition: all .4s ease-in-out;
      &.active {
        font-family: GothamBold, "Open Sans", sans-serif;
      }
      &::first-child {
        margin-right: 4rem;
      }

      &:hover {
        font-family: GothamBold, "Open Sans", sans-serif;
        cursor: pointer;
      }
    }
  }
  .navbar-works {
    display: flex;
    justify-content: space-between;
    
    .logo {
      width: 130px; 
    }
    .menu-bars {
      width: 25px;
      svg {
        width: 100%;
        rect {
          fill:#231F20;
        }
      }
    }
  }
  .projects {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -5px;
    .project {
      color: #fff;
      text-decoration: none;
      display: flex;
      justify-content: center;
      flex-direction: column;
      height: 255px;
      overflow: hidden;
      display: block;
      padding: 10px;
      margin-bottom: 10px;
      position: relative;

      @media (max-width: 1650px) {
        height: 240px;
      }

      @media (max-width: 1460px) {
        height: 200px;
      }

      &:hover {
        .project__title {
          opacity: 1;
          transform: translateY(0px);
        }
        .image {
          overflow: hidden;
          position: relative;
        }
        .image video {
          width: 100%;
          position: absolute;
          top: 0px;
          left: 0px;
          z-index: 2;
        }
        .image img {
          filter: grayscale(0);
        }
      }
      .image {
        display: block;
        img {
          transition: all .4s ease-in-out;
          display: block;
          filter: grayscale(70);
          &:hover {
            filter: grayscale(0);
          } 
        }
      }
      .project__title {
        text-align: left;
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 20;
        opacity: 0;
        transform: translateY(20px);
        transition: all .4s ease-in-out;
        h5 {
          color: #fff;
          margin-bottom: 5px;
          font-size: 1rem;
          font-weight: 500;
          font-family: "Open Sans", sans-serif;
          font-weight: normal;
          &:hover {
            color: #fff;
            text-decoration: none;
          }
        }
        h3 {
          margin-top: 1.5rem;
          font-family: "Open Sans", sans-serif;
          font-weight: 500;
          font-size: 1.7rem;
          margin-top: 0px;
          span {
            font-weight: light;
            color: #fff;
          }
        }
      }
    }
  }
  .side {
    //padding-top: 30px;
    //padding-right: 80px;
  }
}

@media(min-width: 1440px) {
  .container {
    width: 61%;
  }
}


.info-block {
  position: fixed;
  bottom: 3.5rem;
  left: 45px;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 120px;
  z-index: 1000000;
  padding-right: 140px;
  padding-left: 30px;
  display: none;
  h4 {
    font-size: .9rem;
    text-transform: uppercase;
    padding-top: 30px;
    padding-bottom: 5px;
  }
  p {
    font-size: .9rem;
    color: #808080;
  }
  .social-links {
    padding-top: 30px;

    ul {
      display: flex;
      padding: 0px;
      margin: 0px;
      li {
        list-style: none;
        width: 25px;
        text-align: left;
        margin-right: 20px;
        a {
          color: #808080;
          font-size: 1.4rem;
        }
      }
    }
  }
}
.info-btn {
  color: #000;
  font-size: 1.2rem;
  transition: all .4s ease-in-out;
  font-weight: 600;
  display: block;
  position: fixed;
  bottom: 1.5rem;
  left: 60px;

  &:hover {
    transform: scale(1.2);
    text-decoration: underline;
    cursor: pointer;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 90px;
  padding-right: 90px;

  ul.social-links {
    display: flex;
    margin-left: 0px;
    padding-left: 0px;
  
    li {
      margin-left: 0px;
      padding-left: 0px; 
      list-style: none;
      width: 14px;
      margin-right: 1rem;
      
      img {
        width: 14px;
        display: block;
      }
    }
  }
}



.content-area {
  //padding: 0.5rem 1rem;
 // padding-top: 2rem;
  margin-top: 30px;
  position: relative;
}

@media(max-width: 1660px) {
  .content-area {
    height: 630px;
  }
}
@media(max-width: 1240px) {
  .content-area {
    height: auto;
  }
}
@media(min-width: 1660px) {
  .content-area {
    height: 780px;
  }
}

#map-view {
  display: none;
  opacity: 0;
}

#map {
  width: 100%;
  height: 690px;
}

#map-contacts {
  width: 100%;
  height: 450px;
}

.submenu__links {
  position: absolute;
  bottom: 30px;
  left: 0px;
  display: flex;
  padding: 0px;
  li {
    padding: 0px;
    list-style: none;
    margin-right: 25px;
    font-size: .85rem;
    font-family: Gotham;
    &.active {
      a {
        font-family: GothamBold;
      }
      font-weight: 600;
    }
    a {
      color: #000;
      font-family: Gotham;
      transition: all .8s ease-in-out;
      &:hover {
        color: lighten(#000000, 60%);
        text-decoration: none;
      }
    }
  }
}

.owl-carousel { 
  height: 210px;
  overflow: hidden;
}


@media (min-width: 997px) {
  .owl-carousel {
    height: 680px;
    overflow: hidden;
  }
}

@media (max-width: 1640px) {
  .owl-carousel, .project-bg {
    height: 580px;
    max-height: 580px;
    overflow: hidden;
  }
}

@media (max-width: 997px) {
  .owl-carousel {
    height: 210px;
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .owl-carousel {
    height: 300px;
    overflow: hidden;
  }
}

@media (max-width: 540px) {
  .owl-carousel {
    height: 218px;
    overflow: hidden;
  }
}

.section-bg {
  height: 450px;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.section-content {
  padding-top: 40px;
  color: #a0a0a0;
  font-size: 13px;
}

#team {
  opacity: 0;
  display: none;
}

#clients {
  opacity: 0;
  display: none;
}

.team {
  margin-top: 60px;
  .team-item {
    border-top: 1px solid #000;
    margin-bottom: 30px;
  
    .name {
      font-size: 13px;
      font-weight: bold;
      color: #000;
      margin-top: 10px;
      margin-bottom: 0px;
    }
    .email {
      font-size: 11px;
      font-weight: 300;
      color: #000;
      margin-top: 0px;
      margin-bottom: 5px;
    }
  }
}

.side-contects {
  height: 780px;
  position: relative;
}

.contacts-address {
  margin-top: 40px;
  color: #a0a0a0;
  font-size: 13px;
  .country {
    color: #000;
    font-weight: bold;
  } 
}

@media (max-width: 992px) {
  .hidden-md-down {
    visibility: hidden;
    display: none;
  }
}

@media (min-width: 992px) {
  .hidden-md-up {
    visibility: hidden;
    display: none;
  }
}

.contact-form {
  padding: 20px;

  h3 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  p.sub {
    font-size: 12px;
    margin-bottom: 2rem;
    color: #a0a0a0;
  }

  form {
    margin-top: 60px; 
  }

  .form-control {
    padding: 0 1.42857em;
    border-radius: 0;
    color: #a0a0a0;
    font-weight: 400;
    height: 46px;
    line-height: 46px;
  }
  .form-control::placeholder {
    color: #a0a0a0;
  }
  .btn.btn-contact {
    margin-top: 40px;
    padding: 0 3.42857em;
    border-radius: 0;
    background: #fff;
    border: 1px solid #a0a0a0;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    height: 46px;
    line-height: 46px;
    transition: all .8s ease-in-out;
    box-shadow: 0 2px 3px rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.1);

    &:hover {
      color: #fff;
      background: #000;
    }
  }
  textarea.form-control {
    height: 200px;
  }
}
.copyright {
  font-size: 11px;
  color: #a0a0a0;
}

.client-link {
  img {
    transition: all .8s ease-in-out;
  }

  &:hover {
    img {
      transform: scale(1.3)
    }
  }
}


.contact-buttons {
  margin-top: 80px;
  .btn-default {
    background: #f1f1f1;
    color: #505050;
    margin-right: 1rem;
    padding: 0 2.43rem;
    line-height: 35px;
    font-size: 12px;
    border-radius: 1rem;
  }
}


@media(max-width: 970px) {
  .page {
    padding-left: 20px;
    padding-right: 20px;
  } 
  .video__bg {
    video {
      position: absolute;
      top: 50%;
      left: 0px;
      transform: translateY(-50%) scale(2.5);
    }
  }
  .page .hero {
    max-height: 510px;
  }
  .footer-bottom {
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    right: auto; 
    bottom: auto; 
  }
  .page .hero .hero__container h3, .page .hero .hero__container h2 {
    font-size: 3rem;
  }
  .page .navbar .navbar__menu {
    background-color: #fff;
    left: 0px;
    position: fixed;
  }
  .project__page .project__view {
    margin-bottom: 60px;

  }
  .copyright {
    margin-top: 1rem;
  }

  .submenu__links {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .contact-buttons {
    height: auto;
    justify-content: center;
    align-content: center;
    margin-bottom: 40px;
  }
  #map-contacts {
    width: 100%;
    height: 400px;
  }

  .page .navbar .navbar__menu {
    background-color: #fff;
    left: 0px;
    z-index: 1000;
    top: 80px;
    padding: 30px;
    width: 100%;
    position: fixed;
  }

  .section-bg {
    height: 250px;
  } 

  .slider,.project-bg {
    height: 210px!important;
    max-height: 210px!important;
  }

  .contact-buttons {
    margin-top: 30px;
  }
  .side-contects {
    height: auto;
    position: relative;
  }
  
  .contacts-address {
    position: relative;
  }
}


.b-prev, .b-next {
  background: transparent;
  border: none;
  padding: 0px;
  margin-right:1rem;
  outline: none;
  font-size: 16px;
}
.b-prev:hover, .b-next:hover {
  cursor: pointer;
}

.b-prev:focus, .b-next:focus {
  outline: none;
}

.menu-icon {
  width: 20px;
  margin-left: 1rem;
}

.contacts-row {
  &.top {
    flex-wrap: wrap;
  }
  .col-md-6:nth-child(1) {
    padding-right: 0px;
  }
  .col-md-6:nth-child(2) {
    padding-left: 0px;
  }
  .bg-image {
    height: 100%;
    width: 100%;
    flex: 1;
    background-size: cover;
    background-position: center;
  }
  padding-bottom: 40px;
}

.back__to__menu__li {
  margin-right: 4rem!important;
  display: flex; 
  a {
    display: flex;
    color: #ababad!important;
  }
  img {
    width: 22px;
  }
}
.is-projects {
  position: relative;

  .menu-forward {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translate(-50%);
    img {
      width: 22px;
    }
  }
}

.slider-desenhos {
  display: none;
  opacity: 0;
}

.back-projects {
  position: absolute;
  right: 15px;
  top: 0px;
  width: 40px;
  height: 40px;
  display: flex;
  background: rgba(255,255,255, .5);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  img {
    width: 25px;
  }
  &:hover {
    cursor: pointer;
  }
}
#clients.subpage {
  display: none;
  align-items: center;
  height: 680px;
}


.grid-item {
  opacity: 0;
  &.shown {
    opacity: 1;
  }
}

.animated  {
  animation-duration : 1000 ms  ;
  animation-fill-mode : both  ;
}
.fadeIn  {
  animation-name : fadeIn;
} 
.owl-animated-out {
  z-index : 1 
   }
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */ 
.owl-animated-in {
  z-index : 0 
}
@keyframes  fadeIn  {
  0% {
    opacity : 0;
  }  
  100% {
    opacity : 1;
  }  
}

.fadeOut {
  animation-name : fadeOut;
}
@keyframes  fadeOut  {
  0% {
    opacity : 1;
  }  
  100% {
    opacity : 0;
  }  
}

.owl-next:focus {
  outline: none;
}

.owl-prev:focus {
  outline: none;
}
