.section_heading {
    font-size: 22px;
    text-decoration: underline;
    color: var(--text-black);
}

/* Our Specialities */
.specialities_container {
    height: 25vh;
    /* padding: 50px 2%; */
    background-color: rgb(244, 249, 255);
}

.splt_divs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

.specialitiy_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialitiy_div p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.splt_img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 5px solid var(--dark-blue);
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.splt_img:hover {
    background-color: var(--dark-blue);
    color: #fff;
    cursor: pointer;
}

.splt_img i {
    font-size: 28px;
}

/* Why Choose us */

.page_section_container {
    margin: 80px auto;
    padding: 20px;
}

.yus_container {
    margin-top: 100px;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    grid-row-gap: 40px;
    gap: 20px;
    row-gap: 40px;
}

.yus_div {
    padding: 20px;
    padding-top: 50px;
    background-color: rgb(246, 249, 255);
    position: relative;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 2px 15px -3px rgba(175, 175, 175, 0.40);
}

.yus_div:hover {
    background-color: var(--dark-blue);
    color: #fff;
}

.yus_icon {
    position: absolute;
    top: -30px;
    left: 5%;
    height: 70px;
    width: 70px;
    border: 2px solid #1783c5;
    border-radius: 50%;
}


.yus_div_content .heading {
    margin-bottom: 25px;
    font-size: 18px;
}

.yus_div_content p {
    font-size: 14px;
}

/* Featuring Image */
.featuring_img_container {
    height: fit-content;
    width: 100%;
    background-color: #2c598a;
    background-image: url("/assets_web/images/slide3.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    position: relative;
}

.ftr_img_blur_div {
    height: fit-content;
    width: 100%;
    background-color: rgba(44, 89, 138, 0.7);
}

.featuring_img {
    height: auto;
    max-height: 500px;
}

/* Track progress Banner */
.tpb_img_container {
    width: 100%;
    background-color: #fff;
    margin: 30px auto;
}

.tpb_img {
    width: 100%;
}


/* Testimonial */
.testimonials_container {
    margin-top: 100px;
    width: 100%;
}

.testimonials_container .slider_btn {
    background-color: rgba(234, 234, 234, 0.16);
}

.testimonial {
    color: #333;
    margin-top: 80px;
    padding: 25px;
    padding-top: 105px;
    padding-bottom: 50px;
    background-color: rgb(246, 249, 255);
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 2px 15px -3px rgba(175, 175, 175, 0.38);
}

.user_img_div {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    /* border: 4px solid rgb(16, 163, 248); */
}

.tstml_msg p {
    font-size: 14px;
}

.testimonial .user_name {
    font-weight: 600;
    margin-top: 10px;
}

.testimonials_container .slider_inner_div {
    height: fit-content;
}

/* Locate Us  */
.gmap_div {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgb(184, 184, 184);
}

.gmap_div iframe {
    width: 100%;
    height: 450px;
}

.address_div {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
}

.address_div i {
    margin-right: 10px;
}



@media screen and (max-width:1000px) {
    .specialities_container {
        height: auto;
        padding: 30px;
    }

    .splt_divs {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 50px;
        gap: 50px;
    }

    .yus_container {
        grid-template-columns: auto auto;
    }
}

@media screen and (max-width:800px) {
    .featuring_img {
        max-height: none;
    }
}

@media screen and (max-width: 500px) {
    .splt_divs {
        grid-template-columns: auto;

    }

    .yus_container {
        grid-template-columns: auto;
        grid-row-gap: 60px;
        row-gap: 60px;
    }
}