* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body {
    background-image: url("/assets/images/home/about/overview_bg-abt.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
} */

.saugata_nav {
    height: auto;
    width: 100%;
    z-index: 400;
    position: sticky;
    top: -66px;
     /* border-bottom: 2px solid rgb(196, 196, 196); */
     box-shadow: 0 0 7px 2px #abaaaa;
}

.saugata_nav .nav_top {
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* gap: 800px; */
    flex-wrap: wrap;
    align-items: center;
}

.saugata_nav .nav_top .nav_top_left {
    width: 400px;
    height: 65px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    background-color: var(--font-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.saugata_nav .nav_top .social_media {
    display: flex;
    /* width: 40%; */
    width: 250px;
    /* margin-right: 30px; */
    padding: 15px 10px;
    justify-content: center;
    /* transform: skew(20deg); */
    gap: 10px;
    align-items: center;
}
.nav_top .social_media .follow {
    font-size: 17px;
    font-weight: 560;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.nav_top .social_media .icon {
    color: #fff;
    font-size: 17px;
    margin: 0;
    cursor: pointer;
}


/* nav-top-right................................ */
.saugata_nav .nav_top .nav_top_right {
    width: 80%;
    display: flex;
    height: auto;
    flex-wrap: wrap;
    /* margin: 0 200px 0 auto; */
    justify-content: flex-end;
    padding: 5px 105px 5px 0px;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 0;
    background: var(--bg-color);
    /* border: 1px solid red; */
    clip-path: polygon(3% 0, 100% 0%, 100% 100%, 0% 100%);


}

.nav_top_right .call_section {
    display: flex;
    width: 170px;
    /* border: 1px solid red; */
    justify-content: flex-start;
    align-items: center;
    gap: 5px;

    line-height: 20px;
    font-size: 14px;
    /* padding: 0px; */
}

.call_section .call_img {
    height: 39px;
    width: 38px;
}

.call_section .call_img img {
    height: 100%;
    /* width: 100%; */
    object-fit: cover;
}

.call_section .call_number {
    color: #c8c8c8;
    font-family: 'Poppins', sans-serif !important;
}

.call_section .call_number p {
    font-size: 13px;
    color: #c8c8c8;
    margin: 0 !important;
}

.call_section .call_number .number {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

/* mail.......... */
.nav_top_right .mail_section {
    display: flex;
    width: 170px;
    /* border: 1px solid red; */
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    line-height: 20px;
    cursor: pointer;
}

.mail_section .mail_img {
    height: 35px;
    width: 35px;
}

.mail_section .mail_img img {
    height: 100%;
    /* width: 100%; */
    object-fit: cover;
}

.mail_section .mail_content {
    color: #c8c8c8;
    font-family: 'Poppins', sans-serif !important;
}

.mail_section .mail_content p {
    font-size: 13px;
    color: #c8c8c8;
    margin: 0 !important;
}

.mail_section .mail_content .mail {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    /* line-height: 20px; */
}


/* bottom nav................................. */
.saugata_nav .nav_bottom {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
   
    background-color: #fff;
}


.saugata_nav .nav_bottom .logo_img {
    height: 80px;
}

.nav_bottom .logo_img img {
    height: 100%;
    object-fit: cover;
}

.nav_bottom .menu {
    list-style-type: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    ;
    font-weight: 600;
    /* color: #3f3f3f; */
    color: var(--bg-color);
    /* align-items: center; */
    margin: 0;
}


.saugata_nav .nav_bottom2{
    display: none;
}

.menu .sub a {
    text-decoration: none;
    color:var(--bg-color);


}

.nav_bottom .menu .sub {
    padding: 5px 0px 35px 0px;
    /* border: 1px solid red; */
    position: relative;
    display: flex;
    cursor: pointer;
    margin-top: 25px;
    transition: .4s;
    align-items: center;

}

.menu .sub::before {
    content: '';
    position: absolute;
    height: 2.4px;
    width: 0%;
    background: var(--bg-color);
    top: 55%;
    left: 50%;
    transition: .4s ease;

}

.menu .sub::after {
    content: '';
    position: absolute;
    height: 50%;
    width: 0%;
    /* background-image:linear-gradient(180deg,rgb(61, 61, 255),rgba(23, 23, 114, 0.694),rgba(0, 0, 255, 0.48),#ffffff00,#fff); */

    top: 0%;
    left: 50%;
    transition: .4s ease;
}

.menu .sub:hover::before {
    left: 0px;
    width: 100%;
}

.menu .sub:hover::after {
    left: 0;
    width: 80%;
}

.menu .sub .fa-angle-down {
   /* padding-left: 7px; */

    /* padding-bottom: 5px; */

    transition: .5s;

    transform: rotate(-90deg);
}

.menu .sub:hover .fa-angle-down {
    /* padding-left: 7px; */
    /* padding-top: 3px; */
    transform: rotate(0deg);
    transition: .5s;
}

.menu .sub .dropdown {
    list-style-type: none;
    background-color: #fff;
    position: absolute;
    /* border: 1px solid red; */
    max-height: 0px;
    visibility: hidden;
    overflow: hidden;
    top: 100%;
    margin: 0 !important;
    padding: 0 !important;
    transition: .7s ease;
    border: 1px solid #878787aa;
    z-index: 9999;
    width:280px ;
}

 .menu .sub:hover .dropdown {
    max-height: 500px;
    transition: 1s ease;
    visibility: visible;
    top: 100%;

}
.nav_bottom2 .menu .click{
    height: auto;

}
 .dropdown .child {
    border-bottom: 1px solid #e2e2e2;

    font-size: 14px;
    display: flex;
    transition: .4s;

}

  .dropdown .child a {
    display: flex;
    font-family: 'Poppins', sans-serif !important;
    width: max-content;
    transition: .4s ease;
    padding: 12px 20px 12px 15px;

}

 .dropdown .child a i {
    transform: rotate(-135deg);
    padding: 0 4px;
    transition: .4s ease;
}

 .dropdown .child a:hover i {
    transform: rotate(-90deg);

}

 .dropdown .child:hover {
    background-color:#f8981a;

}

 .dropdown .child a:hover {
    color: #fff;
    padding: 12px 20px 12px 25px;
}

/* menu_btn............... ....................*/
.nav_bottom .menu_btn {
    background-color: var(--font-color);
    border-radius: 10px;
    color: #ffffff;
    display: none;
    
    width: 40px;

}

.nav_bottom .menu_btn i {
    padding: 8px 10px;
    font-size: 20px;

}





/* admission_button_hidden */
/* .nav_bottom .addmitionn {
    background-color: var(--font-color);
    border-radius: 20px;
 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    width: 150px;
    height: 50px;
    display: none;
    transition: .5s ease;

}

.nav_bottom .addmitionn .btn {
    color: #fff;
    padding: 28px 4px 12px 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold;

}

.addmitionn .icon {
    background-color: #2d358e;
    border-radius: 20px;
    padding: 5px 7px;
    margin-right: 5px;
}
.nav_bottom .addmitionn:hover .icon{
    background-color: var(--font-color);
    
}

.addmitionn .icon i {
    color: #f8981a;
    font-size: 16px;
}
.addmitionn:hover .icon i{
   color: #2d358e;
} */





/* nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn */
.nav_bottom .addmitionn{
   background-color: var(--font-color);
    border-radius: 20px;
 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    height: 45px;
    display: none;
    transition: .5s ease;
}
.addmitionn:hover{
    background-color: #2d358e;
}

.nav_bottom .addmitionn .btn {
    color: #fff;
    /* padding: 28px 4px 12px 12px; */
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold;
    transition: .5s ease;

}

.addmitionn .icon {
     background: var(--bg-color);
    border-radius: 20px;
    padding: 5px 7px;
    margin-right: 5px;
    transition: .5s ease !important;
}
.nav_bottom .addmitionn:hover .icon{
    background: var(--font-color);
    color: #2d358e;
    transition: .5s ease-in-out;
}
.addmitionn:hover .icon i{
   color: #2d358e;
}
.addmitionn .icon i {
    color: #f8981a;
    font-size: 16px;
}








/* admission_button ....................................*/
.nav_bottom .addmition{
    background: var(--font-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    /* width: 150px; */
    height: 45px;
    transition: .5s ease !important;
}
.addmition:hover{
    background-color: #2d358e;
}

.nav_bottom .addmition .btn {
    color: #fff;
    /* padding: 28px 4px 12px 12px; */
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold;
    transition: .5s ease;

}

.addmition .icon {
     background: #2d358e;
    border-radius: 20px;
    padding: 5px 7px;
    margin-right: 5px;
    transition: .5s ease !important;
}
.nav_bottom .addmition:hover .icon{
    background: var(--font-color);
    color: #2d358e;
    transition: .5s ease-in-out;
}
.addmition:hover .icon i{
   color: #2d358e;
}
.addmition .icon i {
    color: #f8981a;
    font-size: 16px;
}





.nav_bottom2{
    max-height: 650px;
    width: 100%;
   position: sticky;
    top: 72px;
    left: 0;
     z-index: 9999;
}
.nav_bottom2 .menu {
    list-style-type: none;
    gap: 5px;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    position: absolute;
    transition: .9s ease;
    width: 100%;
    font-weight: 600;
    color: #3f3f3f;
    display: none;
    background-color: #2d358edc;
    height: auto;
    margin: 0 !important;
    padding: 0;
}

.nav_bottom2 .menu .sub {
    padding: 10px 10px 10px 10px;
    color: #fff;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #fff;
    transition: .4s;
    z-index: 0;
    margin: 0 !important;
}

.nav_bottom2 .menu .sub .dropdown {
    width: 100%;
    background-color: #f8981a;
    z-index: 999;
    position: relative;
    right: 0;
    top: 10px;

}

.nav_bottom2 .menu .sub a {
    color: #fff;


}

.nav_bottom2 .menu .sub:hover::before {
    left: 0;
    width: 0%;
}