/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 400 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 120px;
    z-index: 99;
}

.bg-dark{
    background-color: #064970 !important;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #000;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* font-weight: 600; */
}

.navbar.fixed-top {
    /* transition: .5s; */
    /* background: #e8e8e8;
background: linear-gradient(180deg,rgb(243, 243, 243) 0%, rgb(199, 199, 199) 50%, rgb(248, 248, 248) 100%); */
    background: #ffe6e6;
    border-radius: 0 0 30px 30px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: #ffe6e6;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .30);
    overflow: hidden;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 100%;
    }

    .header-carousel .owl-carousel-item img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translatex(-50%);
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item{
    position:relative;
    
}
.breadcrumb-item img{
    max-height:50px;
    padding:6px 20px 6px 20px;
}

.mbb+.mbb::before {
    color: #545454;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #545454;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 90px;
    height: 90px;
}
.testimonial-carousel .owl-item .testimonial-item{
    
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #064970 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: #064970;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #064970;
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #4491bd;
}
.bg-gra {
    padding-block: 2px;
    background: #C7020200;
    background: linear-gradient(90deg,rgba(199, 2, 2, 0) 0%, rgba(255, 255, 255, 1) 50%,  rgba(255, 255, 255, 0) 100%);
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: #064970;
}
.my-bbg{
    background: #00000060;
    padding: 180px 50px;
}
.navbar-brand img{
    max-width: 250px;
    margin-bottom: 0px;
}
.deg-90{
    rotate: 90deg;
}
.abbb{
    background: url('../img/student.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    margin-top: 20px;
    border-radius: 40px;
    
}

.abbb-col{
    background: #0000005e;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 400px 0px 200px 0px;
    position: relative;
    border-radius: 40px;
}

.my-ba{
    background:#064970;
    position: absolute;
    max-width: 600px;
    right: 30px;
    bottom: -30px;
    padding: 20px;
    border-radius: 30px;
}
.my-ba p, .my-ba h2{
    color:#fff
}
.prog{
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.prog img{
}
.prog .conn{
    position: absolute;
    bottom: 0;
    z-index: 99;
    padding: 12px;
    background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8014803333442753) 50%, rgba(0,0,0,0.5549817339044993) 78%, rgba(0,0,0,0) 100%);
}
.prog .conn p{
    color:#fff;
    margin: 0;

}
.prog .conn h4{
    color:#fff;
}
.bg-second{
    background-color: #064970;
}
.text-shadow{
    text-shadow: 2px 2px 6px #00000080;
}
.my-btn-ap{
    background-color: #fff;
    border: 1px solid #ffffff00;
    padding: 8px 10px 4px 10px;
    display: block;
    width: 100%;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0px 0px 0px 4px #ffffff60;
}
.my-btn-ap:hover{
    background-color: #ffffff1f;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 0px 6px #ffffff60;
    color:#fff;
}
.text-justify{
    text-align: justify;
}
.bg-school{
    background: url('../img/student-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    margin-top: 20px;
    border-radius: 40px;
    
}

.bg-school-col{
    background: rgb(0,31,61);
    background: linear-gradient(180deg, rgba(0,31,61,0.9) 0%, rgba(253,208,91,0.9) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 150px 200px 150px;
    position: relative;
    border-radius: 40px;
    opacity:1;
}
.bg-school-col h1{
    color:#fff;
}
.bg-school-col p{
    color:#fff;
    font-size: 18px;
}

.bg-sc-co{
    padding-top: 40px;
    position: relative;
    z-index: 99;
}

.cardd{
    background: url('../img/student-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    margin-top: 20px;
    border-radius: 0px;
    
}

.cardd-col{
    background:#ffffffdd;
    /* background: linear-gradient(180deg, rgba(0,31,61,0.9) 0%, rgba(253,208,91,0.9) 100%); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 25px 20px;
    position: relative;
    border-radius: 0px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: 3px 3px 8px #00000040;
    border:1px solid #00000080;
    text-align:center;
    
}
@media(min-width:992px){
.mmhh{
    min-height:600px !important;
}
.cardd-col{
    min-height: 500px;
}
.col-md-20{
    width:20%;
}
}


.cardd-col p{
    margin: 0%;
    color: #000000bb;
    font-size: 16px;
}
.cardd-col h3{
    color:#064970;
    font-weight: 500 !important;
        font-size: 20px;
            font-family: "Roboto", sans-serif;
    
}
.cardd-col h4{
    border: solid #d50000;
    border-width: 1px 0 1px 0;
    padding: 5px;
    margin-top: 3px;
    color: #d50000;
    font-family:auto;
}
.cardd-col hr{
    margin-block:3px;
    background:#d50000;
        opacity: .5;
}
.cardd-col h5{
    font-size: 16px;
    font-family:auto;
}
.cardd-col i{
    font-size:55px;
    color:#006699;
}
.cardd-col .coll{
    color:#d50000;
}
.cardd-col .coll-2{
    color:#006699;
    border: solid #006699;
    border-width: 1px 0 1px 0;
}
.cardd-col .knn{
    background:#eaa636;
    padding:8px 14px;
    display:block;
    width:90%;
    position:absolute;
        bottom: 20px;
    left: 50%;
    transform:translatex(-50%);
    color:#fff;
    box-shadow:0px 0px 5px #00000040;
}
.bg-light-2{
    background:#064970;
}
.bg-light-2 .my-coo {
    background: #ffffff25;
    /* border: 1px solid #ffffff40; */
    padding: 15px;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0px 0px 10px #ffffff00;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bg-light-2 .my-coo p{
    text-align:justify;
    color:#fff;
}
.bg-light-2 .my-coo h3{
    color:#edb354;
}

.my-h-1:after{
     content:'';
    display:block;
    position:relative;
    height:1px;
    width:100px;
    margin:11px 0;
    background:#fff;
   
}
.breadcrumb{
    font-size:20px;
}
.gallery img {
    border-radius: 20px;
    box-shadow: 0px 0px 8px #00000060;
}
.my-h-center::after {
    content: '';
    display: block;
    position: relative;
    height: 2px;
    width: 140px;
    margin: 10px auto;
    background: #BE0E27;
background: linear-gradient(90deg,rgba(190, 14, 40, 0) 0%, rgba(190, 14, 39, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.my-h::after {
    content: '';
    display: block;
    position: relative;
    height: 2px;
    width: 100px;
    margin: 10px 0px;
    background: #BE0E27;
background: linear-gradient(90deg,rgba(190, 14, 39, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.rounded-pattern{
    border-radius:50px 50px 0 0;
}
.my-foot{
    background:#ffffff20;
    padding:6px 10px;
    border-radius:5px;
    border:1px solid #ffffff10;
    box-shadow:3px 3px 8px #00000050;
font-size:14px;
}
.col-md-20 .plla{
    clip-path: polygon(50% 15%, 100% 0%, 90% 100%, 10% 100%, 0 0);
    background:#064970;
    text-align:center;
    padding: 30px 15px 5px 15px;
    margin-top: -60px;
}
.col-md-20 .plla img{
    width:100%;
}
.col-md-20 .plla h4{
    color:#fff;
    font-size: 20px;
}
.col-md-20 .plla p{
    color:#fff;
    
}
.col-md-20 .plla p span{
    color:#edb354;
}
section{
    max-width:100vw;
    overflow:hidden;
}
.rounded-md-pill{
        border-radius:50rem;
    }
@media(max-width:992px){
    .navbar-brand img{
        max-width:230px;
        margin-block: 10px;
    }
    .bg-school-col{
        padding: 50px 15px 180px 15px;
    }
    .rounded-md-pill{
        border-radius:15px;
    }
    .bo-r-p{
    border-right:1px dashed #fff;
}
.navbar-toggler-icon{
    color: #064970 !important;
    height: 1em !important;
    font-size: 25px;
}
.my-toggler{
    display:flex;
    justify-content:center;
    align-items:center;
}
.navbar-toggler:focus{
    box-shadow:0px 0px 0px 0px #000 !important;
}
.my-bg-dark{
    background:#064970;
}
}

@media(min-width:992px){
        .bo-r{
    border-right:1px dashed #fff;
}

}
.bg-agri{
    background: url('../img/agri-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: visible;
    /* margin-block:150px; */
}
.bg-agri img{
    /* margin-block: -100px; */
    position: relative;
    z-index: 99;
}
.agri-bg-col{
    background-color: #000000aa;
}
.sch .carrd{
    background-color: #064970;
    padding: 30px 20px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0px 0px 8px #00000050, inset -3px -3px 8px #ffffff30;
    i{
        color:#064970;
        background-color: #fff;
        border-radius: 50%;
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin-inline: auto;
        margin-bottom: 20px;
    }
    h3{
        color:#fff;
    }
    h5{
        color:#fff;
    }
}
.my-color{
    color:#064970;
}
.bx-ad{
    background-color: #fff;
    box-shadow: 1px 1px 6px #00000040;
    border-radius: 20px;
    padding:20px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;

    .icoo{
        width:50px;
        height: 50px;
        background:#254AA51A;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        margin-bottom: 15px;
        transition: .5s all;
    i{
        font-size:20px;
        color:#254AA5;
        transition: .5s all;
    }
}

    h4{
        font-family: "Roboto", sans-serif;
        color:#064970;
        font-weight: 400 !important;
        font-size: 16px;
    }
    h4:after{
        content:'';
        background-color: #064970;
        position: relative;
        display: block;
        margin:10px 0;
        height:1px;
        width:50px;
    }
    p{
        font-size: 14px;
    }
}
.bx-ad:hover{
    .icoo{
        background:#254AA5;
    i{
        color:#fff;
    }
}
}


.cardd-new{
    position:relative;
    min-height:400px;
    box-shadow:1px 1px 6px #00000040;
    background-position:top center;
    background-size: cover;
    background-repeat: no-repeat;

    .cardd-coll{
        position: absolute;
        bottom:0px;
        left:0;
        width:100%;
        background: #000000;
        background: linear-gradient(0deg,rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
        padding: 140px 20px 20px 20px;

        i{
            font-size: 50px;
            color: #ffa007;
            margin-bottom:20px;
        }

        h4{
            color:#fff;
            margin-bottom:20px;
        }

        h4:after{
            content:'';
            background-color: #fff;
            position: relative;
            display: block;
            margin:10px 0;
            height:1px;
            width:50px;
        }

        h5{
            color:#fff;
            margin-bottom:30px;
            font-family: sans-serif;
            font-weight: 200 !important;
        }

        .bor{
            border-right: 1px dotted #fff;
        }

        a{
            font-weight: 300;
            cursor: pointer;

            i{
                font-size: 15px;
                margin: 0px 10px 0 0;
            }
        }
    }
}
.bg-cou{
    background:url('../img/cou-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    h1{
        color: #c9a72c;
        line-height: 1.5;
        display: inline-flex;
        padding-inline: 5px;
        font-size: 34px;
        font-family: sans-serif;

        span{
            background: transparent !important;
            color: #0056d2;
            display: inline-block;
            
            
        }
        img{
            max-width: 200px;
            object-fit: contain;
        }
    }

    h3{
        font-family: sans-serif;
    }

.mi-li{
    list-style:none;
    
    li{
    padding-left:5px;
    position:relative;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}

li:before{
 content: '';
    height: 25px;
    width: 25px;
    background: url('../img/check.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

}
.im1{
    max-width: 180px;
    margin-bottom: 20px;
}
.im2{
    max-width: 280px;
    margin-top: 20px;
}

}

.bg-cou-sc{
    background:url('../img/bg-sc.webp');
    background-repeat: no-repeat;
    background-position:bottom center;
    background-size: cover;
    padding-block:  40px;
    border-radius: 0px;
    margin-top: 0px;
    h1{
        color: #c9a72c;
        line-height: 1.5;
        display: inline-flex;
        padding-inline: 5px;
        font-size: 44px;
        font-family: sans-serif;

        span{
            background: transparent !important;
            color: #0056d2;
            display: inline-block;
            
            
        }
        img{
            max-width: 200px;
            object-fit: contain;
        }
    }

    h3{
        font-family: sans-serif;
    }

.mi-li{
    list-style:none;
    
    li{
    padding-left:5px;
    position:relative;
    margin-bottom: 16px;
    font-size: 20px;
    color: #000;
}

li:before{
 content: '';
    height: 25px;
    width: 25px;
    background: url('../img/check.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

}
.im1{
    max-width: 180px;
    margin-bottom: 20px;
}
.im2{
    max-width: 280px;
    margin-top: 20px;
}

}
.dw-btn{
    background-color: #064970;
    padding:12px 25px;
    border-radius: 10px;
    border: 1px solid #fff;
    font-size: 20px;
    margin-top: 30px;
    display: inline-block;
}

@media (max-width:992px) {
    .bg-cou-sc{
        h1{
            font-size: 30px;
        }
        .mi-li {
            li {
                font-size: 14px;
            }
        }
    }
    .bg-cou{
        h1{
            font-size: 22px;
            img {
                max-width: 120px;
                object-fit: contain;
            }
        }
        .mi-li {
            li {
                font-size: 14px;
            }
        }
    }
    .gallery img {
        border-radius: 8px;
    }
}

.ban-se{
    background: url('../img/bg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    .ban-se-col{
        height:100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-inline: 40px;
        /* background: #000000;
background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%); */

        h5{
            color:#fff;
        }
        h1{
            color:#9bbc05;
        }
        .bg-wh{
            background: #ffffffc5;
            backdrop-filter: blur(1px);
            display: inline-block;
            padding:10px 20px;
            border-radius: 12px;
            box-shadow: 1px 1px 6px #00000040;
        h2{
            color:#000;
            font-size: 20px;
            font-family: sans-serif;

            span{
                -webkit-text-stroke: 0px;
                -webkit-text-stroke-color: #d40000;
                color: #064970;
                font-weight: 200;
                font-family: cursive;
                font-size: 30px;
                filter: drop-shadow(1px 1px 2px #00000054);
            }

            i:after{
                content: '';
                background: #d20005;
                height: 1px ;
                width: 50px;
                margin: 8px 0px;
                position: relative;
                display: block;
            }
        }
    }
    }
}

.he-ap{
    .border-r{
        border:1px solid #d20005;
        background: #ffe6e6;
        position: relative;
        i{
            color: #d20005;
        }
    }
    p{
        background-color: #d20005;
        padding: 3px 10px 3px 20px;
        font-size: 12px !important;
        border-radius: 0 6px 6px 0;
    }
    .ms-min{
        margin-left: -15px;
    }
    small{
        color:#064970;
    }
}
.he-ap2{
    .border-r{
        border:1px solid #064970;
        background: #ffe6e6;
        position: relative;
        i{
            color: #064970;
        }
    }
    p{
        background-color: #064970;
        padding: 3px 10px 3px 20px;
        font-size: 12px !important;
        border-radius: 0 6px 6px 0;
    }
    .ms-min{
        margin-left: -15px;
    }
    small{
        color:#d20005;
    }
}

.he-app{
    .border-r{
        border:1px solid #d20005;
        background: #ffe6e6;
        position: relative;
        padding: 30px;
        
        i{
            color: #d20005;
            font-size: 22px;
        }
    }
    p{
        background-color: #d20005;
        padding: 3px 10px 3px 20px;
        font-size: 15px !important;
        border-radius: 0 6px 6px 0;
        
    }
    .ms-min{
        margin-left: -15px;
        text-align: left !important;
    }
    small{
        color:#064970;
        text-align: left !important;
        padding-left: 22px;
    }
}
.he-app2{
    .border-r{
        border:1px solid #064970;
        background: #ffe6e6;
        position: relative;
        padding: 30px;
        i{
            color: #064970;
            font-size: 30px;
        }
    }
    p{
        background-color: #064970;
        padding: 3px 10px 3px 20px;
        font-size: 15px !important;
        border-radius: 0 6px 6px 0;
        text-align: left;
    }
    .ms-min{
        margin-left: -15px;
    }
    small{
        color:#d20005;
        text-align: left !important;
    }
}

.appro{
    box-shadow: 0px 0px 8px #00000020;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding:20px;
    border-radius: 10px;
    img{
        max-height: 100px;
        height: 100%;
        object-fit: contain;
    }

}
.text-heading{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 30px;
}

.about{
    position: relative;
    z-index: 9;
    margin-top: -40px;
}
.drop-shadow{
    filter: drop-shadow(0px 0px 6px #00000020);
}
.posi-ab{
    position: absolute;
    top:0;
    right:-100px;
    max-width:1000px;
    z-index: -1;
}

.cta{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;

    .ab-se{
        position: absolute;
        left: 50%;
        top:50%;
        width: 100%;
        transform: translate(-50%, -50%);
        h1{
            color:#064970;
        }
        p{
            color:#000;
            font-size: 20px;
        }
    }
}
.bg-bx{
    background: #b80004;
padding: 16px;
margin-bottom:25px;
min-height:250px;

img{
max-width:80px;
margin-bottom:16px;
}
h4{
color:#fff;
font-weight:600;
font-size:20px;
}
p{
    font-size: 12px !important;
line-height: 1.5;
color:#fff;
text-align:left !important;
margin: 0;
font-family: "Montserrat", sans-serif;
font-weight: 500;

}
}
.bg-bx2{
    background: #e9ebea;
padding: 16px;
margin-bottom:25px;
min-height:250px;

img{
max-width:80px;
margin-bottom:16px;
}
h4{
color:#000;
font-weight:600;
font-size:20px;
}
p{
    font-size: 12px !important;
line-height: 1.5;
text-align:left !important;
margin: 0;
font-family: "Montserrat", sans-serif;
font-weight: 500;
color: #000;

}

}
#scroll-div {
    position: fixed;
    right: 0%; /* Hide off-screen to the left */
     top: 350px;
     border-radius:20px 0 0 20px;
     overflow:hidden;
    transform: translateY(-50%);
    transition: .5s ease-in-out;
    padding:20px 20px 20px 20px;
    background: #06497033;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
/*        background: rgb(174,34,32);*/
/*background: linear-gradient(270deg, rgba(174,34,32,1) 0%, rgba(0,0,0,0) 100%);*/
    max-width: 400px;
    height: 420px;
    /* background:#ffffff60; */
    border: solid #064970;
    border-width: 1px 0 1px 1px;
    width:100%;
    z-index:9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    h5{
        font-family:"Montserrat", sans-serif;
        font-weight: 600 !important;
        color: #064970;
    }
    h6{
        font-weight: 300 !important;
        color: #000000;
        text-align: center;
    }
}
.bg-pro{
    background: #c70202;
background: linear-gradient(120deg,rgba(199, 2, 2, 1) 0%, rgba(150, 15, 15, 1) 100%);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    height: 100%;

    p{
        color:#fff;
        margin-bottom: 5px;
    }

    .cou{
        display: flex;
        align-items: center;
        gap:20px;

        i{
            height: 40px;
            width: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            color: #d20005;
            background: #fff;
            border-radius: 50%;
        }

        h5{
            color: #fff;
            margin: 0px;
        }
        h6{
            color: #fff;
            font-size: 10px;
            margin-bottom: 5px;
        }
    }
}
.bg-pro::after{
    content: '';
    width:100%;
    height: 60px;
    background: url(../img/bottom-shadow.png);
    position: absolute;
    bottom:-40px;
    left:0px;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.grad-line{
    width:100%;
    height:2px;
    display: block;
    margin-block:15px;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgba(0,0,0,0) 100%);
}
.grad-line-footer{
    width:100%;
    height:1px;
    display: block;
    margin-block:0px;
    position: relative;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(0,0,0,0) 100%);
}
.admis-process{
    background:url('../img/lab-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.admis-process-col{
    background:#f9e6e7da;
}
.applybox:before {
    content: '';
    position: absolute;
    top: 39%;
    right: -50px;
    width: 60px;
    height: 24px;
    background: url(https://static.collegedekho.com/media/img/users/arow.png) no-repeat center center;
    background-size: contain;
    z-index: 1;
}
.applybox.arrow-none:before {
    content: '';
    display: none;
}
.applybox {
    position: relative;
}
.applybox figure {
    padding: 1rem 0.5rem 0.5rem;
    width: 170px;
    height: 170px;
    border-radius: 100%;
    border: solid 0px #707070;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 5% auto;
    background: #fff;
}
.applybox figure img {
    width: 40px !important;
    text-align: center;
    margin: auto;
}
.applybox figure p {
    font-size: 16px;
    color: #b80004;
    font-weight: 500;
    padding-top: 15px;
}
.applybox span
 {
    position: absolute;
    width: 100%;
    z-index: 0;
    bottom: -63px;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.applybox span img {
    width: 75% !important;
    margin: auto;
}
.applybox span.odd {
    position: absolute;
    width: 100%;
    z-index: 0;
    bottom: 62px;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    rotate: 180deg;
    transform: scaleX(-1);
}
.blog-text {
    background: #b80004;
    color: #ffffff;
    padding: 13px 20px;
    border: 1px solid #b8000400;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: .5s all;
}
.blog-text:hover {
    background: #b8000400;
    color: #b80004;
    border: 1px solid #b80004;
}
.color-black{
    color: #000 !important;
    font-weight: 400;
}
.textal{
    text-align: center;
    position: absolute;
    left: 50%;
    top:40px;
    transform: translateX(-50%);
    width: 100%;
    display: block;


    h2{
        color: #000;
        font-weight: 600;

        span{
            color: #b80004;
        }
    }


}
.choose-dv {
    background: #fff;
    border-bottom: 4px solid #d20005;
    padding: 15px;
    border-radius: 20px;
    height: 160px;
    box-shadow: 1px 1px 8px 0px #0000003b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.choose-dv i{
    color:#d20005;
    font-size: 20px;
    margin-bottom: 15px;
}

.choose-dv h3 {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}
.bg-whiteer{
    background:url('images/15628854_5651107.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

    .venn{
        
        img{
        max-width:45px;
        margin-bottom:15px;
    }
    }
    .counter-box {
    position: relative;
    display: inline-block;
    padding:30px 20px;
    border: 2px solid transparent;
    /* Transparent border to show the gradient */
    background: linear-gradient(white, white) padding-box,
        linear-gradient(98.24deg, #6DDCFF 0%, #7F60F9 100%) border-box;
    border-radius: 10px;
    /* Optional: Adjust based on your needs */
    width: 100%;
    height: 100%;
    align-content: center;
    text-align: center; 
    box-shadow:1px 1px 6px #00000030;
}

.count h3 {
    color: #003777;
    font-weight: 800;
    font-size: 50px;
}

.count h5{
    color:#000;
    margin:0px;
}


.count p {
    background: #3B4353;
}

hr.gradient-line {
    border: none;
    height: 2px;
    background: linear-gradient(98.24deg, #6DDCFF 0%, #7F60F9 100%);
    margin: 20px 0;
    opacity: 1;
}

.count.border-right {
    border-right: 2px solid transparent;
    /* Transparent border to show the gradient */
    background: linear-gradient(white, white) padding-box, linear-gradient(100.24deg, #6DDCFF 95%, #7F60F9 100%) border-box
}
.bg-footer{
    background: #4491bd;

    img{
        filter: drop-shadow(0px 10px 2px #00000020);
        margin-top:-50px;
    }
}
.redd{
    background: url('../img/labs-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    .redd-col{
        background-color: #b80003e3;

        .hediim{
            color:#fff;
            text-align: center;
        }

        .bx-lab{
            display: flex;
            align-items: center;
            gap:15px;

            .imgdiv img{
                aspect-ratio: 2/2;
                object-fit: cover;
                object-position: center;
                border-radius: 50%;
                border:3px solid #fff;
                min-width: 150px;
                max-width:150px;
                width: 100%;
            }
            .conntt{
                h4{
                    color:#fff;
                    font-size: 20px;
                }
                p{
                    color:#fff;
                    font-size: 13px;
                }
            }
        }
    }

}


@media(max-width:992px) {
    .he-app2 {
        p {
            font-size: 12px !important;
        }
    }
    .he-app {
        p {
            font-size: 12px !important;
        }
    }
    .he-app2 {
    small {
        padding-left: 12px;
    }
}
    .count h3 {
        color: #003777;
        font-weight: 800;
        font-size: 26px;
    }
    .count h5 {
        color: #000;
        margin: 0px;
        font-size: 16px;
    }
    .redd {
        .redd-col {
            .bx-lab {
                .imgdiv img{
                    min-width: 120px;
                max-width: 120px;
                }
                .conntt {
                    h4 {
                        color: #fff;
                        font-size: 14px;
                    }
                    p {
                        color: #fff;
                        font-size: 11px;
                    }
                }
            }
        }
    }    
    .applybox span img {
        width: 55% !important;
        margin: auto;
    }
    .blog-text {
        background: #b80004;
        color: #ffffff;
        padding: 9px 15px;
        border: 1px solid #b8000400;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 500;
        transition: .5s all;
    }
    .applybox:before {
        content: '';
        position: absolute;
        top: 132%;
        right: 41%;
        width: 60px;
        height: 12px;
        background: url(https://static.collegedekho.com/media/img/users/arow.png) no-repeat center center;
        background-size: contain;
        z-index: 1;
        rotate: 90deg;
        transform: translateX(-50%);
    }
    .applybox {
        position: relative;
        margin-bottom: 50px;
    }
}