/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 05-Jan-2024, 9:35:02 pm
    Author     : Vaibhavi
*/

@media screen and  (min-device-width:340px) and (max-device-width: 900px)
{
    /*about_us*/   
    
    /*appear*/ 
.appear {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.appear.inview{
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.appear.inview:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.appear.inview:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.appear.inview:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.appear.inview:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.appear.inview:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.about_us{
     margin-top: 21%;
}
.about_us_block{
    display: block;
    height: auto;
    font-family: "Lato", sans-serif;
    width: 99%;

}
.about_us_head{
    text-align: center;
    background-color: #112a78;
    color: white;
}

.about_us_head p{
    font-size: 35px;
}
 
.about_us_info{
    background-color: #ffac32;
    padding: 35px;
    font-size: 15px;
}

.about_us_info h4{

    font-size: 20px;
}

.about_us_info p{
    font-size: 17px;
}

/*why us*/

.why_us_block{
    display: block;
    height: auto;
    font-family: "Lato", sans-serif;
}

.why_us_head{
    text-align: center;
    
}

.why_us_head i{
    border-bottom: 2px solid #d6a716;
}

.why_us_head p{

    font-size: 32px;
}

.why_us_info{

    font-size: 22px;
    color: gray;
} 

/* mv*/
    .mv_block{
       display: flex;
    }
   .flip-card {
       background-color: transparent;
       width: 40%;
       height: 225px;
       perspective: 1000px;
       margin-left: 6.5%;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        font-family: "Lato", sans-serif;
    }

    .flip-card-front {
        background-color: #112a78;
        color: white;
    }
    .flip-card-front h1{
        font-size:29px;
        font-family: "Lato", sans-serif;
    }

    .flip-card-back {
        background-color: #ffac32;;
        color: white;
        transform: rotateY(180deg);
    }
    .flip-card-front img{
        width: 100%;
    }
    .flip-card-back p{
        font-size: 16px;
        padding: 4px;
        color: #112a78;
    
    }

    
/*founder*/
    
.founder_block{
    display: block;
    height: auto;
    margin-top: 10px;
    font-family: "Lato", sans-serif;
    border-radius: 10px;

}
.founder_info{
    background-color: lightgrey;
    background-color: lightgrey;
}
.founder_img{
    text-align: center;
    color: black;
}

.founder_img img{
    width: 100%;
    
}

.founder_info h2{
    color: #112a78;
    font-size: 30px;
    padding-left: 7px;
}

.founder_info i{
    font-size: 28px;
    color: #ffac32;
}

.founder_info h4{
    font-size: 15px;
    padding: 10px;
}

.founder_info p{
    text-align: center;
    background-color: #112a78;
    font-size: 35px;
    font-family: "Lato", sans-serif;
    color: white;
}

.founder_head img{

}

}