
 
@media (max-width: 768px) {
    .gsap-content-container .gsap-content-images {
        display: none;
    }
}

@media (max-width: 768px) {
    .gsap-content-container .gsap-content-text {
        width: 100%;
    }
    
}



/* 404 page css */

#notfound {
    position: relative;
    height: 100vh;
    margin-top: 5%;
  }
  
  #notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .notfound {
    max-width: 410px;
    width: 100%;
    text-align: center;
  }
  
  .notfound .notfound-404 {
    height: 100px;
    position: relative;
    z-index: -1;
  }
  

   .notfound .notfound-404 h1 {
    font-family: "Poppins", sans-serif !important;
    color: #166fff;
    font-size: 230px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    left: -30%;
    margin-top: 50px;
   }
  .notfound h2 {
    font-family: "Poppins", sans-serif !important;
    color: #0c0c0c;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 70px;
  }
  
  .notfound p {
    font-family: "Poppins", sans-serif !important;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  
  .notfound a {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    background: #166fff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 15px -5px #166fff;
            box-shadow: 0px 4px 15px -5px #166fff;
  }
  
  
  @media only screen and (max-width: 767px) {
      .notfound .notfound-404 {
        height: 142px;
      }
      .notfound .notfound-404 h1 {
        font-size: 112px;
        position: absolute;
        left: 50px;
      }
      .notfound h2 {
        margin-top: 0;
      }
  }
  