    /*
    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:910px) and (max-device-width: 1920px)
{
    /*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*/   

.about_us{
    margin-top: 9%;
 }

.about_us_block{
    display: flex;
    height: auto;
    font-family: "Lato", sans-serif;
}

.about_us_head{
    text-align: center;
    background-color: #112a78;
    color: white;
}

.about_us_head p{
    margin: 130px;
    font-size: 50px;
}

.about_us_info{
    background-color: #ffac32;
    padding: 35px;
    font-size: 15px;
}

.m_about_us_head{
    display: none;
}

 /*why us*/

.why_us_block{
    display: flex;
    height: auto;
    font-family: "Lato", sans-serif;
}

.why_us_head{
    text-align: center;
    margin: 60px;
}

.why_us_head i{
    border-bottom: 2px solid #d6a716;
}

.why_us_head p{
    font-size: 50px;
}

.why_us_info{

    padding: 35px;
    font-size: 22px;
    color: gray;
} 

/*MISSION VALUES*/

.mv_block{
    display: flex;
    margin-top: 25px;
}
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    font-family: "Lato", sans-serif;
}

.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;
}

.flip-card-front {
    background-color: #112a78;
    color: white;
}

.flip-card-back {
    background-color: #ffac32;
    color: #112a7;
    transform: rotateY(180deg);
}
.flip-card-front img{
    width: 100%;
}
.flip-card-back p{
    font-size: 26px;
    padding: 10px;
}

  /*founder*/

.founder_block{
    display: flex;
    height: auto;
    font-family: "Lato", sans-serif;
    margin-left: 100px;
    background-color: #e1dfdf;
    border-radius: 22px;
    margin-top: 50px;

}
.founder_img{
    text-align: center;
    color: black;
}

.founder_img img{
    width: 100%;
    height: 85%;
    margin-top: 30px;
    border-radius: 70px 10px 70px 10px;
    margin-left: 40px;
}

.founder_info{
    margin-left:  8%;
}

.founder_info i{
    font-size: 25px;
    color: #ffac32;
}

.founder_info h4{
    font-size: 20px;
}

.founder_info h2{
    color: #112a78;
    font-size: 35px;
}

}