﻿/*===============================
LOCATION LIST
================================*/

.location-list {
    padding: 90px 0;
    background: #fff;
}

    .location-list .section-header {
        max-width: 1100px;
        margin: 0 auto 55px;
    }

    .location-list .section-title {
        text-align: center;
        font-size: 54px;
        font-weight: 700;
        color: #222;
        margin-bottom: 25px;
    }

    .location-list .section-header p {
        font-size: 19px;
        line-height: 1.9;
        color: #666;
        text-align: justify;
    }

    /*===============================
CITY GRID
================================*/

    .location-list .row {
        margin-left: -10px;
        margin-right: -10px;
    }

        .location-list .row > [class*="col-"] {
            padding: 10px;
        }

/*===============================
CARD
================================*/

.location-card {
    background: #f4f4f4;
    border-radius: 0;
    overflow: hidden;
    transition: .25s;
    border: 1px solid #ececec;
}

    .location-card:hover {
        background: #2563eb;
        border-color: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37,99,235,.18);
    }

    .location-card a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        min-height: 72px;
        padding: 20px;
    }

    .location-card .card-title {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
        color: #222;
        transition: .25s;
    }

    .location-card:hover .card-title {
        color: #fff;
    }
    .location-card.active {
        background: #2dbf6d;
        border-color: #2dbf6d;
    }

        .location-card.active .card-title {
            color: #fff;
        }
@media(max-width:992px) {

    .location-list {
        padding: 70px 0;
    }

        .location-list .section-title {
            font-size: 40px;
        }

    .location-card .card-title {
        font-size: 24px;
    }
}

@media(max-width:768px) {

    .location-list {
        padding: 60px 0;
    }

        .location-list .section-title {
            font-size: 34px;
        }

        .location-list .section-header p {
            font-size: 16px;
            text-align: left;
        }

    .location-card a {
        min-height: 62px;
        padding: 16px;
    }

    .location-card .card-title {
        font-size: 20px;
    }
}

.location-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    text-decoration: none;
    color: #222;
    font-size: 24px;
    font-weight: 600;
    transition: .3s;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

@media(max-width:992px) {

    .location-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .location-grid {
        grid-template-columns: 1fr;
    }
}