.locations-section {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 0px;
    .locations-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        grid-gap:20px;
    }
    .view-all-button {
        display: inline-flex;
        padding: 10px 76px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        background: #D93400;
        color:#FFF;
        text-align: center;
        font-family: "OC Highway VAR2";
        font-size: 16px;
        text-transform: uppercase;
        border: none;
    }
}
.location-item {
    width: 32%;
    padding: 20px 20px 0 20px;
    background: #F2F2F2;
    border-radius: 6px;
    flex-basis: auto;
    min-width: 140px;
    margin-bottom: 21px;
    box-shadow: -1.155px 1.155px 0px 0px rgba(0, 0, 0, 0.25);
    a {
        text-decoration: none;
    }
    .location-image {
        position: relative;
        width: 100%;
        padding-top: 104%;
        overflow: hidden;
        border-radius: 6px;
        img {
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            filter: grayscale(100%);
            transition: all 0.3s;
        }
        .img-over {
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(#3C2A2A,#926767);
            opacity: 0.4;
            display: block;
            transition: all 0.3s;
        }
    }
    .location-name {
        color: #2E2E2E;
        text-align: center;
        font-family: "OC Highway VAR2";
        font-size: 24px;
        line-height: 95%;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        margin: 20px 0;
    }
    &:hover {
        img {
            filter: grayscale(0);
            transform: scale(1);
        }
        .img-over {
            opacity: 0;
        }
        .location-name {
            color: #D93400;
        }
    }
}

@media screen and (max-width:600px) {
    .location-item {
        width: 47%;
        padding: 10px 10px 0 10px;
        .location-name {
            font-size: 12px;
            margin: 10px 0;
        }
    }
    .locations-section {
        margin-top: 36px;
    }

}