@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
::selection{
    color: #fff;
    background: #031f42;
  }

/* .......Navbar messege........ */
.nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #031f42;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
}

.line{
    height: 25px;
    width: 1px;
    background-color: white;
    margin-right: 15px;
}

#location{
    color: rgb(202, 202, 202);
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn button{
    background-color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    color: #031f42;
    font-weight: 600;
    cursor: pointer;
}


/* .....navbar...... */





.nav-container{
    width: 100%;
    height: 110px;
    padding: 0 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #031f42;

    position: sticky;
    top: 0px;
    z-index: 10000;


    box-shadow: rgba(50, 50, 93, 0.08) 0px 13px 27px -5px, rgba(0, 0, 0, 0.08) 0px 8px 16px -8px;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 105px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}

.menu ul li a {
    color: #142525;
    text-decoration: none;
    padding: 20px 10px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;

    &:hover{
        color: #006e00;
    }
}











.fa{
    transition: all .5s ease;
}

.menu .drop:hover .fa{
    transform: rotate(180deg);
}


.dropdown-menu{
    display: none;
    border-radius: 5px;
    background-color: #fff;
}

.drop:hover .dropdown-menu{
    display: block;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-decoration: none;
    margin-left: -15px;
}




/* ///sub-menu///// */



.sub-drop .sub-menu{
    display: none;
    top: 55%;
    left: 82%;
    width: 200px;
    margin-top: 30px;
  }
  
  .dropdown-menu .sub-drop:hover .sub-menu{
    display: block;
  }
  
  .sub-drop:hover .fa-solid{
    transform: rotate(-90deg);
    transition: all .3s ease;
  }
  
  @media (max-width: 730px){
    .sub-drop .sub-menu{
        width: 550px;
        margin-left: 50px;
        background-color: #f5f5f5;
    }
  }
  










/* phone view menu//////// */


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #031f42;
    color: white;
    z-index: 100000000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    padding: 20px 20px 50px 20px;
}

.sidebar-content {
    padding: 20px;
    font-size: 30px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 730px) {
    .menu ul {
        display: none;
    }
    .nav-container .logo img{
        height: 100px;
    }
    #menu-bar {
        display: block;
        font-size: 70px;
        background-color: #031f42;
        color: #ffffff;
        text-align: end;
        padding: 8px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

   
    .sidebar-content {
        font-size: 40px;
    }
    .sidebar-content ul li a {
        font-size: 40px;
    }
    .drop .dropdown-menu ul li a{
        font-size: 35px;
        
    }



}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    width: auto;
    padding: 25px 0;
    border-bottom: 4px solid #031f42;

}

.dropdown-menu ul li a{
    font-size: 16px;
    padding: 10px 40px 10px 20px;
    width: auto;
    color: #142525;
}





/* .......hero section.........  */
/* 
.hero-section{
    background-image: url(./images/our-management-banner.JPG);
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}

.hero-section::after{
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.323);
}


.hero-info{
    position: absolute;
    top: 20%;
    left: 5%;
    right: 5%;
    color: white;
    display: flex;
}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 85vh;
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 25px;

}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}
 */






/* ////////// Top Heading ///////// */




.top-heading {
    margin-top: 20px;
    width: 100%;
    height: auto ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.top-heading h1{
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.society-para p{
    padding-top: 2px;
    font-size: 17px;
    text-align: justify;
    line-height: 1.7;
}

.top-heading span{
    color: #031f42;
}

.society-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: start;
}

.society-para{
    width: 70%;
    padding: 30px;
}

.society-box{
    width: 25%;
    height: auto;
    margin-top: 37px;
    /* padding: 20px; */
}

.soci-color1{
    background-color: #e06666;
    width: 100%;
    height: 110px;
}

.soci-color2{
    background-color: #674ea7;
    width: 100%;
    height: 110px;
}


.soci-color3{
    background-color: #3c78d8;
    width: 100%;
    height: 110px;
}

.soci-color4{
    background-color: #134f59;
    width: 100%;
    height: 110px;
}

.society-box:hover{
    
}

.soc-box-design{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    &:hover{
        background-color: #031f42;
    }
}

.soc-box-design p{
    font-weight: 600;
    margin-top: 10px;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
}

.soc-box-design img{
    width: 60px;
}










/* ////////// Team ///////////// */



.team-back-img{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    background-color: #eaffff;
}

.founder-container{
    width: 100%;
    height: auto;
    padding: 40px 10px;
    margin-top: 30px;
    /* background-color: #ffffffe5; */
}

.founder-container-heading{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 50px;
}

.founder-container-heading h2{
    font-size: 17px;
    font-weight: 500;
    color: #777777;
}

.founder-container-heading h1{
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 40px;
    color: #031f42;
    padding: 10px 0;
    text-transform: uppercase;
}
.founder-container-heading h1 span{
    color: #031f42;
}

.founder-name-details-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: start;
}

.founder-img-container{
    margin: auto 10px;
    margin-top: 30px;
    margin-bottom: 40px;
    width: 23.4%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    transition: all .3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

.founder-details{
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.founder-details img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all .4s ease-in-out;
}

.founder-img-container:hover .founder-details img{
    transform: scale(1.1);
}


.team-name{
    padding: 15px 20px 10px 10px;
}

.team-name h1{
    font-size: 20px;
    color: #303433;
    text-transform: uppercase;
}

.team-name p{
    font-size: 12px;
    color: #767e7c;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: justify;
}

#team-desi{
    margin-top: 0px;
    margin-bottom: 11px;
    font-size: 15px;
    color: #1e1e1e;
}






























/* ////////// Footer ///////// */





.footer-container{
    background-color: #f0efef;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
}

.footer-box{
    width: 95%;
    height: auto;
    padding: 0 0 40px 0;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 30%;
}
.fsize p{
    color: #031f42;
    font-size: 28px;
    font-family: 900;
}

.fsize hr{
    margin: 20px 0 20px 0;
    border: none;
    height: 1px;
    background-color: #031f42;
}

.fsize-img{
    margin-left: -20px;
    display: flex;
    justify-content: space-around;
   align-items: center;
}

.fsize-img h3{
    color: #031f42;
    margin-top: 10px;
}

.fbox1 img{
    height: 125px;
    width: 110px;
}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    width: 230px;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.fbox3 .cont-name{
    font-size: 18px;
    color: #031f42;
    margin-bottom: 10px;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #1a1b1e;
    margin-top: 5px;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #1a1b1e;
    margin-top: 5px;
}




.footer1{
    height: 50px;
    width: 100%;
    background-color: #031f42;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.footer1 a{
    color: #ffffff;
    text-decoration: none;

    &:hover{
        color: #fca119;
    }
}







/* //////////// Responcive view ////////////// */





@media(max-width: 1064px) {
    .nav-msg{
        width: 1064px;
    }
    .society-container,
    .footer1,
    .footer-container,
    .team-back-img,
    .top-heading,
    .nav-container{
        width: 1064px;
    }




}










@media(max-width: 600px){
    .top-heading h1{
        font-size: 70px;
        margin-top: 20px;
    }
    .society-container{
        flex-direction: column;
    }
    .society-box{
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    .soc-box-design{
        height: 240px;
        
    }
    .soc-box-design img{
        height: 120px;
        width: auto;
    }
    .soc-box-design p{
        font-size: 45px;
    }
    .society-para{
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    .society-para p{
        font-size: 40px;
    }







    
  .founder-container-heading h1{
    font-size: 60px;
}
.team-line{
    width: 120px;
}
.founder-name-details-container{
    flex-wrap: wrap;
    margin-top: 40px;
}
.founder-img-container{
    width: 100%;
}
.founder-details{
    width: 100%;
    height: 550px;
}

.team-name h1{
    font-size: 40px;
}
.team-name p{
    font-size: 35px;
    /* margin-top: 20px; */
}
#team-desi{
    font-size: 35px;
    margin-bottom: 30px;
}


}














/* /////////// Phone view Responcive ////////// */






@media(max-width: 600px){
    .nav-msg a{
        font-size: 40px;
  }
  .nav-msg p{
    font-size: 40px;
  }
  #location{
    margin-left: 25px;
  }
  #phone-hide{
    display: none;
  }
  .subnav-btn button{
    font-size: 30px;
  }



  .nav-msg{
    height: 100px;
  }
  .nav-container{
    height: 250px;
  }
  .nav-container .logo img{
    height: 240px;
  }





/*   
.hero-section{
    min-width: 100%;
    height: 1000px;
}
  .hero-content{
    margin-top: 70px;
  }
  .hero-content .hero-heading h1{
    font-size: 76px;
} */










  


  


.footer-container{
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 50px 20px;
}
.footer-box{
    height: auto;
    flex-direction: column;
}
.fsize{
    width: 100%;
}
.fsize p{
    font-size: 55px;
    margin-top: 40px;
}
.fsize ul li{
    font-size: 40px;
    width: 100%;
}

.fbox1 img{
    height: 250px;
    width: 240px;
}

.fsize-img h3{
    font-size: 45px;
}



.fbox3{
    width: 100%;
    margin-top: 60px;
}
.fbox3 .cont-name{
    font-size: 50px;
}
.fbox3 .fAddre{
    font-size: 40px;
}
p .fphone{
    font-size: 40px;
}





.footer1{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.footer1 p{
    font-size: 40px;
    text-align: center;
}

.footer1 a{
    font-size: 40px;
    text-align: center;
}



}
