/* ************* common css all theme same code *********** */
/********** Template CSS **********/
.text-web-color{
    color: var(--primary);
}
.up{
    position: relative;
    z-index: 9;
}
.bgImageDefault{
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainSectionAll::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ******* prashant css ********* */
/* ----------- counter -------- */
.center1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter .parent_circle{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary);
    position: relative;
}

.counter .child_circle{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: -5px 10px 10px rgba(0,0,0,0.5);
    text-align: center;
    flex-direction: column;
    padding: 30px;
}
.counter .child_circle h5,
.counter .child_circle h3{
    color: var(--primary);
    font-weight: 900;
}

.counter .counter_icon{
    position: absolute;
    top: -10px;
    left: 10px;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    box-shadow: -5px 10px 10px rgba(0,0,0,0.5);
    outline: 2px solid var(--white);
    outline-offset: -8px;
    border-radius: 50%;
}
.counter .counter_icon i{
    color: white;
    font-size: 1.5rem;
}

/* *********** table icon download design ********* */
.prashant_ui table td .download{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark);
}

/* ************ event and latest news *********** */
/* .event_container{
    height: 600px;
    padding: 10px;
    overflow: hidden;
} */
.event_card1{
    width: 100%;
    height: 130px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.event_card1 .date_screen{
    display: none;
}

.event_card1 .content{
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.event_card1 .content p{
    font-size: 13px;
}

.event_card1 .date{
    position: absolute;
    top: -20px;
    left: 30px;
    width: 130px;
    height: 170px;
    background-color: var(--primary);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
    text-align: center;
    padding-top: 20px;
}

.event_card1 .date h4{
    font-size: 2rem;
    color: var(--white);
}

.event_card1 .date .corner{
    position: absolute;
    top: 0px;
    right: -20px;
    width: 20px;
    height: 22px;
    background-color: var(--primary);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

@media screen and (max-width:767px) {
    .event_container{
        height: 250px;
    }

    .event_card1{
        flex-direction: column;
        height: auto;
    }

    .event_card1 .date{
        display: none;
    }

    .event_card1 .content{
        width: 100%;
        justify-content: start;
        padding: 20px;
    }

    .date_screen{
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        display: block!important;
        padding: 10px 20px;
    }

    .event_card1 .date_screen h4{
        font-size: 1.5rem;
        color: var(--white);
    }
}

.content_parent img{
    width: 100%;
    height: 100%;
}

.bg-offer {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../../images/carousel11.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background-color: orange;
}

/* ********** video play css ******** */
.video_paly{
    position: relative;
}
.video_paly .pulse{
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_paly .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}
.video_paly .pulse span{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    opacity: 0.8;
    animation: pulse 4s ease-out infinite;
    animation-delay: calc(1s * var(--i));
}
@keyframes pulse{
    100%{
        opacity: 0;
        transform: scale(2);
    }
}


/* ************** multiple form *********** */
.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../../images/carousel11.jpg) center center no-repeat;
    background-size: cover;
}

.add-vari {
    background-color: var(--primary);
    width: 300px;
    height: 200px;
    padding: 10px 4px;
    text-align: center;
}

.add-input {
    padding: 6px 20px;
    background-color: var(--white);
    border: none;
}

.submit-btn {
    color: var(--white);
    font-weight: 600;
}

@media (max-width:900px) {
    .admission-var {
        display: grid;
        place-content: center;
        place-items: center;
        gap: 10px;
    }
}

@media (min-width:900px) {
    .admission-var {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
}

/* ******* center css ******* */
.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.banner22{
    /*position: relative; top:-90px; z-index:1;*/
    margin-top: 10px;
}

/*@media screen and (max-width:991px){*/
/*    .banner22{*/
/*        top: 0px!important;*/
/*    }*/
/*}*/

/* .price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
} */

/* ********* layout bacgkround image text left right ****** */
.section1 {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.section1 .img-1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section1 .content_cover11{
    padding: 20px;
    position: relative;
    z-index: 999;
}

.content .img-1 img{
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    height: 100%;
    opacity:0.4; 
}

.content h1{
    font-size:35px;
    font-weight:600;
}

.content p,ul{
    font-size: 18px;
    font-weight: 700;
}

.section1 li{
    line-height:23px;
    padding-bottom: 10px;
}

@media screen and (max-width: 1190px) {
    .img-1 img{
        height:max-content;
    }
    
}