.w-\[190px\] {
    width: 190px
}

/* Footer Menu */

.footer-nav-new {
    row-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-nav-new li {
    width: 100%;
}

.footer-nav-new li a {
    max-width: 180px;
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 576px) {
    .footer-nav-new li a {
        font-size: 15px;
    }
}

.footer-nav-new li a:hover {
    text-decoration: underline;
}

.footer-nav-new.social-nav-new li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}

@media screen and (max-width: 1240px) {
    #footer-text {
        order: 1;
        width: 100%;
    }

    #services-nav {
        order: 2;
    }

    #company-nav {
        order: 3;
    }

    #contact-nav {
        order: 5;
    }

    #social-nav {
        order: 4;
    }
}

#footer-location-toggle {
    background-color: #E0EAF6;
    outline: none;
    border: none;
    padding: 20px 30px;
    color: #346CB4;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
}


#footer-location-toggle.active {
    /*border-bottom-left-radius: 0;*/
    /*border-bottom-right-radius: 0;*/
    /* Remove delay when opening - apply immediately */
    /*transition: border-radius 0s 0s;*/
}

#footer-locations {
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
    max-height: 0;
}

.location-grid {
    background-color: #E0EAF6;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px 30px 20px 30px;
    gap: 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

@media (min-width: 576px) {
    .location-grid {
        padding: 20px 40px;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.location-item .location-title {
    color: #346CB4;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footer-location-link {
    color: #346CB4;
    text-decoration: none;
}

.footer-location-link:hover {
    text-decoration: underline;
}

#footer-location-wrapper {
    background-color: #E0EAF6;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.location-item p {
    color: #21231E;
    text-decoration: none;
}

#footer-location-icon {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .footer-logo-wrapper {
        width: 24%;
    }

    .footer-new h3 {
        margin-bottom: 10px;
    }
}

