.location-sec {
    font-family: 'barlow';
}

body .location-sec h2 {
    font-size: 41px;
    color: #9F9285;
    font-weight: 700;
    margin-left: 0;
}

.location-sec h2 span {
    color: #000;
}

/*.location-sec .d-flex{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap:wrap;
}*/

.location-sec .d-flex ul {
    list-style: none;
    padding-left: 0;

}

.location-sec .d-flex .location-wrapper {
    max-width: 100%;
    /*width: 340 px;*/
}

.location-sec .d-flex .location-wrapper ul a {
    font-family: "Montserrat", Sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s all;
    color: #000;
}

.location-sec .d-flex .location-wrapper ul li {
    max-width: 100%;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s all;
    color: #000;
}

.location-sec .d-flex .location-wrapper ul a:hover {
    color: #9F9285;
}

.location-wrapper ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns layout */
    gap: 20px; /* Adjust space between columns and rows */
    padding: 0;
    list-style-type: none;
}


.location-item {
    border-radius: 5px;
    text-align: left; /* Remove center alignment */
}


@media (max-width: 767px) {
    .location-sec .d-flex .location-wrapper {
        max-width: 100%;
        width: 50%;
    }
}