* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
  }




/* navbar section */

.navbar{
    position: sticky;
    z-index: 2;
    top: 0;
    width:100%;
    height:90px;
}

/* Mobile devices */
@media only screen and (max-width: 767px) {
  /* Your mobile-specific CSS styles go here */
    .navbar-nav{
        width: 100%;
        display: flex;
        align-items: flex-center;
        justify-content: flex-center;
        background-color:white !important;
    }
    .nav-item{
        margin-bottom: 10px !important;
    }
    .dropdown-item.active, .dropdown-item:active{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        padding: 5px 20px !important;
        margin: 0px 0px !important;
    }
  
  /* Any other mobile-specific styles can be added here */
}

/* Desktop devices */
@media only screen and (min-width: 768px) {
  /* Your desktop-specific CSS styles go here */
     .navbar-nav{
        width: 100%;
        height: 75px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        
    }
    .dropdown-item.active, .dropdown-item:active{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        /*padding: 5px 20px !important;*/
        /*margin: 0px 0px !important;*/
    }

    /* Any other desktop-specific styles can be added here */
}

.navbar-brand img{
    width: 110px;
    padding: 1px 0px;
}

.nav-item a{
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    color: #1774ba !important;
    font-size: 16px !important;
    /*margin: 0px 20px;*/
    /*padding: 5px 20px !important;*/
}

.nav-item a:hover{
    background-color: #1774ba;
    color: white !important;
    border-radius: 30px;
    /*padding: 5px 20px !important;*/
}

.active a{
    background-color: #1774ba;
    color: white !important;
    border-radius: 30px;
    /*padding: 5px 20px !important;*/

}

.nav-link{
    margin: 0px 35px;
}

/* navbar section end */

/* hero section */

#hero{
    height: 100%;
    width: 100%;
}

#hero img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    -o-object-fit: contain;
}

/* hero section end */

/* content section */

#content .col-md-6{
    padding: 3% 1%;
}

#content .col-md-6 p{
    font-size: 20px;
    color: #1774ba;
}

@media only screen and (max-width: 767px){
    #content .col-md-6:nth-child(1){
        padding: 5% 3% 0% 3%;
    }

    #content .col-md-6:nth-child(2){
        padding: 0% 3% 3% 3%;
    }

    #content .col-md-6 p{
        font-size: 18px;
        text-align: center;
    }
}

/* content section end */


/* team section */

#team{
    background-color: #F5F5F7;
    padding: 0% 0% 5%;
}

#team h3{
    text-align: center;
    background-color: #34447c;
    padding: 7px;
    color: whitesmoke;
    font-size: 40px;
}

.designation{
    color: #3cace3;
}

.top-three{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    align-items: center;
}

.bottom-four{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.card{
    height: 350px;
    width: 250px;
    margin: 50px 50px 0px 50px;
    text-align: center;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    
}

.card-body{
    padding: 7px !important;
    background: #34447c;
    color: white;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.card-title{
    margin: 3px 0px !important;
}

@media only screen and (max-width: 767px){
    #team h3{
        font-size: 30px;
    }
}


/* team section */

/* contact section */

#contact{
    padding: 50px 0px;
    background-color: white !important;
    width: 100%;
    overflow: hidden;
}

.social-icons{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-icons i{
    font-size: 27px !important;
    margin: 0px 10px;
    background-color: #34447c;
    color: white;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-bottom{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.logo-bottom img{
    width: 200px;
}

.bottom-menu{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left !important;
}

.bottom-menu-box a h6{
    font-size: 20px !important;
    font-weight: bold;
}

@media only screen and ( max-width: 767px){
    .social-icons, .logo-bottom, .bottom-menu{
        margin-top: 50px;
    }
    
    #contact{
        padding: 20px 0px;
    }

    .bottom-menu-box{
        text-align: center;
    }
}

@media only screen and ( max-width: 990px){
    .card{
        margin: 30px 15px 0px 15px;
               
    }
}

/* contact section end */

/* adress section */

#bottom-address{
    padding-bottom: 25px;
    background-color: white !important;
}

.address-column{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.address-box{
    border-left: 5px solid #34447c;
    padding-left: 10px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-box p{
    padding: 0px !important;
    margin: 0px !important;
}

@media only screen and ( max-width: 767px){
    .address-box{
        border-left: none;
        text-align: center !important;
    }
}

/* adress section end */

/* footer */

#footer{
    background-color: #34447c;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p{
    margin: 0px;
    padding: 0px;
    font-size: 16px;
}

.footer-copyright p a{
    color: gold !important;
    font-weight: bold;
}

/* footer end */
/* contact section */

#contact{
    padding: 50px 0px;
    background: rgb(237, 243, 245);
    width: 100% !important;
}

.social-icons{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-icons i{
    font-size: 27px !important;
    margin: 0px 10px;
    background-color: #34447c;
    color: white;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-bottom{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.logo-bottom img{
    width: 200px;
}

.bottom-menu{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left !important;
}

.bottom-menu-box a h6{
    font-size: 20px !important;
    font-weight: bold;
    color: #34447c !important;
}

.bottom-menu-box a:hover{
    text-decoration: none !important;
    color: black !important;
}

@media only screen and ( max-width: 767px){
    .social-icons, .logo-bottom, .bottom-menu{
        margin-top: 50px;
    }

    #contact{
        padding: 20px 0px;
    }

    .social-icons i{
        font-size: 20px !important;
        height: 40px;
        width: 40px;
    }

    .logo-bottom img{
        width: 150px;
    }

    .bottom-menu-box a h6{
        font-size: 16px !important;
    }
}


/* contact section end */

/* adress section */

#bottom-address{
    padding-bottom: 25px;
    background: rgb(237, 243, 245);
    color: #34447c !important;
    width: 100%;
}

.address-column{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.address-box{
    border-left: 3px solid #34447c;
    padding-left: 10px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-box p{
    padding: 0px !important;
    margin: 0px !important;
    font-weight: 500;
}

@media only screen and ( max-width: 767px){
    .address-box{
        border-left: none;
        text-align: center !important;
    }

    .address-box p{
        font-size: 16px;
    }
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* adress section end */

/* footer */

#footer{
    background-color: #34447c;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p{
    margin: 0px;
    padding:5px;
    font-size: 16px;
    font-weight: 500;
}

.footer-copyright p a{
    color: gold !important;
    font-weight: bold;
}

/* footer end */

