.info_section {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    /* padding: 25px 0; */
    margin-top: 25px;
    padding-left: 18px;
    padding-right: 18px;
    margin-left: 9px;
    margin-right: 9px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.info_section .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.social_container {
    text-align: center;
    margin-bottom: 30px;
    object-fit: contain;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.social_box a {
    margin: 0 10px;
    display: inline-block;
    font-size: 24px;
    size: 15px;
    color: #000;
    transition: transform 0.3s ease;
}

.social_box img {
    margin: 0 10px;
    color: #000;
    transition: transform 0.3s ease;
    width: 50px;
    /* Set the desired width */
    height: 50px;
    /* Set the desired height */
    object-fit: contain;
    /* Ensures the image fits within the set dimensions */
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.social_box a:hover {
    transform: scale(1.1);
    color: #273f75;
}

.info_container {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info_container .row {
    display: flex;
    flex-wrap: wrap;
}

.info_container .col-md-6 {
    width: 50%;
    padding: 15px;
}

.info_container .col-lg-3 {
    width: 25%;
    padding: 15px;
}

.info_container h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #273f75;
    position: relative;
    padding-bottom: 10px;
}

.info_container h6:hover {
    color: #cf3135;
}

/* .info_container h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #273f75;
} */

.info_container p,
.info_container a {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.info_container a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.info_container a:hover {
    color: #273f75;
}

.quick_links {
    list-style: none;
    padding: 0;
}

.quick_links li {
    margin-bottom: 10px;
}

.quick_links li a {
    color: #000;
}

.quick_links li a:hover {
    text-decoration: underline;
}


.map_container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.3s ease-in-out;
    transform: scale(0.98);
}

.map_container:hover {
    transform: scale(1);
}

.map_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.info_link-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.info_link-box:hover {
    fill: #273f75;
}

.info_link-box a,
.contact-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #000;
    transition: color 0.3s ease;
}

.info_link-box i,
.contact-group i {
    font-size: 25px;
    margin-right: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact-group div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 0%;
}

.contact-group div a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: normal;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-group div a:hover {
    color: #273f75;
}

.info_link-box a:hover,
.contact-group:hover {
    color: #273f75;
}


.footer_section {
    background-color: #fff;
    padding: 15px 10px;
    text-align: center;
}

.footer_section p {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.footer_section a {
    color: #000;
    transition: color 0.3s ease;
}

.footer_section a:hover {
    color: #273f75;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 991px) {
    .info_container .col-md-6 {
        width: 100%;
    }

    .info_container .col-lg-3 {
        width: 50%;
    }

    .footer_section {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .social_box a {
        margin: 0 5px;
    }

    .info_container .col-lg-3 {
        width: 100%;
    }

    .info_container h6 {
        text-align: center;
    }

    .quick_links li {
        text-align: center;
    }

    .info_link-box a {
        justify-content: center;
    }
}


/* Fade animaton */
/* Fade In Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 1s forwards;
}

.fade-in-down {
    animation: fadeInDown 2s forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s forwards;
}

.fade-in-right {
    animation: fadeInRight 1s forwards;
}