/* Banner Section Css */

.banner {
    background-image: url('/images/banner/about-banner.jpg');
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    color: #fff;
    font-size: 60px;
}

a {
    text-decoration: none;
}

.breadcrumbs a, .breadcrumbs span {
    color: #fff;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.breadcrumbs .breadcrumbs_delimiter {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    line-height: 30px;
    background-color: #8E89C0 !important;
}


/* Contact Welcome section CSS */

.contact-section {
    padding: 60px 0px;
}


.contact-section p {
    color: #212529;
}

.contact-section .info-box {
    padding: 30px 20px;
}

.bg-light-blue {
    background-color: #bdf2f5;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #3b1d7d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}


.social-icon {
    width: 48px;
    height: 48px;
    background-color: #3b1d7d;
    color: #ff5c5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ff5c5c;
    color: white;
}

@media(max-width: 576px){
    .contact-section .info-box{
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        row-gap: 10px;
    }

    .info-txt{
        text-align: center;
    }
}


/* Map Section */
.map-section iframe {
    height: 500px;
    padding: 0px;
}

/* Get In Touch Section */
.get-in-touch-section  {
    background-color: #341c77;
    /* background-image: url(/images/our-promise-bg.webp); */
    padding: 20px 15px;
    border-radius: 30px;
}

.contact-input.form-control.rounded-pill{
    padding: 15px 20px ;
}