@font-face {
    font-family: 'Rockville Solid Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Rockville Solid Regular'), url('../../fonts/Rockville Solid.woff') format('woff');
}

/*    center class */
.center-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}






/*     section title design*/
.section-title {
    position: relative;
    z-index: 1;

}

.section-title p {
    text-align: center;
    color: #fff;
}


.section-title .whiteBackheader1 {
    font-family: "Rockville Solid Regular";

    font-size: 90px;
    position: absolute;

    top: -45px;
    width: 100%;
    z-index: -1;
    font-weight: 500;
    color: #ffffff1d;
    text-align: center;
}

.section-title .whiteHeader1 {
    font-family: "Open Sans", sans-serif;
    text-align: center;

    width: inherit;
    text-transform: uppercase;
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}





.section-title .header1 {

    font-family: "Open Sans", sans-serif;

    width: inherit;
    text-transform: uppercase;


    font-weight: 500;


    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 37px;
    text-align: left;
}

.section-title .backheader1 {
    font-family: "Rockville Solid Regular";

    font-size: 90px;
    position: absolute;
    left: 0;
    top: -45px;
    width: 100%;
    z-index: -1;
    font-weight: 500;

    color: #964ad91a;
    text-align: left;

}




.section-title .header2 {

    font-family: "Open Sans", sans-serif;

    width: inherit;
    text-transform: uppercase;


    font-weight: 500;


    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

.section-title .backheader2 {
    font-family: "Rockville Solid Regular";

    font-size: 70px;
    position: absolute;
    left: 0;
    top: -35px;
    width: 100%;
    z-index: -1;
    font-weight: 500;

    color: #964ad91a;
    text-align: center;

}



@media screen and (max-width:500px) {
    .section-title .whiteBackheader1 {
        font-size: 15vw;
        top: -5vw;
    }

    .section-title .whiteHeader1 {
        font-size: 7vw;

    }


    .section-title .header1 {
        font-size: 29px;
    }

    .section-title .backheader1 {
        top: -20px;
        font-size: 79px;
        line-height: 0.8;
    }

}


/*image title description stlye*/
.single-charts-portfolio2 {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}

.single-charts-portfolio2 .img_container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.single-charts-portfolio2 img {
    width: 100%;
    width: -moz-available;
    /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;
    /* Mozilla-based browsers will ignore this. */
    width: fill-available;

    transform: scale(1.1);
    transition: all 500ms ease;
}


.single-charts-portfolio2:hover img,
.single-charts-portfolio2:focus img {
    transform: scale(1);
}



.single-charts-portfolio2 .description {
    padding: 5px;
    width: 100%;
    height: auto;
    background-color: #fff;
    text-align: center;
    transition: all 500ms ease;
}


.single-charts-portfolio2:hover .description {
    background-color: #000;

}




.single-charts-portfolio2 .description h5 {
    font-family: "Oswald", sans-serif;

    color: #000;
    transition: all 500ms ease;
    margin: 0;
}

.single-charts-portfolio2:hover .description h5,
.single-charts-portfolio2:focus .description h5 {
    color: #fff;


}

.single-charts-portfolio2 .description p {
    margin: 0;
}



.classynav #nav li a {
    font-family: sans-serif;
    font-weight: 900;
}





/*social media*/
.social_media_banner {
    padding: 0 30vw;
    width: 100%;
    height: fit-content;
    background-color: #964ad9;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.social_media_banner .icons {
    color: #fff;
    padding: 10px 20px;
    transition: all 200ms ease;
}

.social_media_banner a {
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 300ms ease, color 300ms 100ms ease;
    color: #fff;
}

.social_media_banner .icons:hover {
    transform: scale(1.35);

}

.social_media_banner .icons:hover a {
    color: rgb(87 28 162);
}/*---------------------- our partners start ----------------*/

.our_partners {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.our_partners .slider {
    background: white;
    height: 100px;
    margin: 50px auto;
    position: relative;
    width: 100vw;
}

.our_partners .slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.our_partners .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.our_partners .slider::before {
    left: 0;
    top: 0;
}

.our_partners .slider .slide-track {
    --item-count: 6; /* Default value if not provided */
    --double-item-count: calc(var(--item-count) * 2); /* Two sets for continuous scroll */
    
    display: flex;
    width: calc(250px * var(--double-item-count)); /* Twice the number of items to make it loop */
    
    animation: scroll calc(3s * var(--item-count)) linear infinite; /* Adjust speed based on number of items */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * var(--item-count)));
    }
}

.our_partners .slider .slide {
    height: 100px;
    width: 250px;
}

/*---------------------- our partners end----------------*/




.youtube-item {
    width: 100%;
    height: 220px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;

}

.youtube-item i {
    color: red;
    font-size: 50px;

    transition: all .2s ease-in-out;

}

.youtube-item:hover i {
    color: #fff;
    transform: scale(1.2);
}




.MapContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.MapContainer iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    border: 1px black solid;
}







.sub-category-single-item {
    position: relative;
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height: 100%;
    /*remove for the teo effect*/
}

.sub-category-single-item .post-thumbnail {

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    /*padding: 50px 0 0 0;*/
    display: flex
;
    justify-content: center;
    align-items: center;

}

.sub-category-single-item .post-thumbnail a {
    display: block;
}

.sub-category-single-item .post-content {
    padding: 30px;
}

.sub-category-single-item .post-content .post-title {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
    font-family: "Oswald", sans-serif;
}

.sub-category-single-item .post-content .post-title:hover,
.sub-category-single-item .post-content .post-title:focus {
    color: #964ad9;
}

.sub-category-single-item .post-content .read-more-btn {
    font-size: 14px;
    color: #964ad9;
    /* #a6a6a6;*/
    ;
    padding: 0;
}

.sub-category-single-item .post-content .read-more-btn:hover,
.sub-category-single-item .post-content .read-more-btn:focus {
    color: #a6a6a6;
}




/*---*/
#speciality {
    padding-top: 12px;
}

#speciality a {
    transition-duration: .1s !important;
}

#speciality .categories {
    font-family: "Open Sans", sans-serif;
    top: 12px;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transform: translateY(40%);
    transition: all .3s ease;
    background-color: #fff;

    box-shadow: 0 4px 40px 8px rgba(220, 40, 121, 0.11);
    border-radius: 6px;
 

    transition: height 2s ease;
    z-index: 2;
}

#speciality:hover .categories,
#speciality .categories:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

#speciality .categories li {
    width: 100%;
    font-weight: 600;
    transition: all .3s ease;
    padding: 10px 20px;
    transition-delay: 0;
    position: relative;

    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}

#speciality .categories li a {
    width: fit-content;
    transition-delay: 0;
}

#speciality .categories li:hover {
    color: #964ad9;
    background-color: #f7f7f7;
    width: 100%;
    padding-right: 0;
    padding-left: 30px;

}


#speciality .categories li ul {
    width: 210px;
    top: 40px;
    left: 17%;
    z-index: 90;
    position: absolute;
    background-color: #fff;

    box-shadow: 0 4px 40px 8px rgba(220, 40, 121, 0.11);
    height: fit-content;
    z-index: 2;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(40%);
    transition: all .3s ease;
  
}

#speciality .categories li ul li {
  
    padding: 10px 20px;
    position: relative;
}


#speciality .categories li ul li:hover {
    padding: 10px 20px;
    padding-left: 30px;
}


#speciality .categories li:hover ul,
 #speciality .categories li ul:hover {
    display: block;

    color: #333;
    height: fit-content;
    max-height: 1000px;
    border-radius: 10px;
    overflow-y: scroll;
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

#speciality .categories li.has-down>a::after {

    content: "+";
    color: #964ad9;

    font-weight: bolder;
    transform: rotate(90deg);
    position: absolute;

    right: 20px;

}





#speciality .categories li.has-down:hover {
    background-color: #964ad9;
    color: #fff;
    border-color: #964ad9;
}


@media screen and (min-width:500px) {
    #speciality .categories li ul {
        width: 210px;
        top: -10px;
        left: 87%;
        
    }

}



