
/*================================================= Case Study  ===============================================*/


.aboutss{
  width: 80%;
  margin: 5% auto 3%;
}
.aboutss img{
  float: right; 
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  border-radius: 5px;
  margin: 20px;
  width: 350px;
}
.aboutss p{
  text-align: justify;
  margin: 20px;
}
@media (max-width: 992px){
    .aboutss{
        width: 85%;
    }
}
@media (max-width: 767px){
    .aboutss{
        width: 90%;
    }
}
@media (max-width: 650px){
   
    .aboutss img{
        width: 90%;
    }
}
@media (max-width: 450px){
    .aboutss{
        width: 96%;
        margin:20px auto;
    }
    .aboutss p{
        margin:5%;
    }
}

/*================================================= Case Study  ===============================================*/

.proj{
    width: 90%;
    margin: 0 auto;
    padding:5% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.proj .proj1{
    position: relative;
    height: 400px;
    width:32%;
    transition:  0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 5px;
}
.proj .proj1.active{
    width: 67%;
}
.proj .proj1 .content{
    position: absolute;
    bottom: 0;
    padding-bottom: 10%;
}
.proj .proj1.active .content{
    position: relative;
    padding-top: 20%;
    width: 100%;
    height: 400px;
    background-image:url('/assets/uploads/case/div-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.proj .proj1 .content h3{
    width: 100%;
    padding:  20px ;
    color: #fff;
}
.proj .proj1.active .content h3{
    width: 40%;
    font-weight: 100;
}

.proj .proj1 .content  a{
    margin:0 20px ;
    padding: 5px 20px ;
    background: #fff;
    text-decoration: none;
    color: var(--secondary);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.proj .proj1 .content a:hover{
    color: black;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
@media(max-width: 992px){
    .proj .proj1.active .content{
        background-position: left;
    }
}
@media(max-width: 767px){
  .proj{
    width: 96%;
  }  
  .proj .proj1{
    position: relative;
    height: 300px;
    width:50%;
    margin: 5% 0 2%;
  }
  .proj .proj1.active{
    width: 100%;
  }
  .proj .proj1.active .content{
    width: 100%;
    height: 300px;
    padding-top: 10%;
  }
}
@media(max-width: 600px){
  .proj .proj1{
    height: 250px;
    width:100%;
  }
  .proj .proj1 .content{
    position: absolute;
    bottom: 0;
    padding-bottom: 5%;
}
 .proj .proj1.active .content{
    height: 250px;
  }
  
}
@media(max-width: 450px){
    .proj .proj1.active .content h3{
        width: 100%;
    }
}

/*================================================= Animation ===============================================*/

 img {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
 }

  @keyframes appear {
    from {
      transform: scale(0.4);
    }
    to {
      transform: scale(1);
    
    }
  }
