.elementor-87 .elementor-element.elementor-element-fcd5821{--display:flex;}.elementor-87 .elementor-element.elementor-element-0ed288e{width:100%;max-width:100%;padding:0px 0px 0px 0px;}.elementor-87 .elementor-element.elementor-element-0ed288e { /* =========================================================
   LOCATIONS
   ========================================================= */

.ed-location-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.ed-location-card {
    min-height: 180px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            #102F32,
            #173F42
        );

    border-radius: var(--ed-radius-md);

    color: #FFFFFF;

    text-decoration: none;

    transition:
        transform var(--ed-transition);
}

.ed-location-card:hover {
    transform: translateY(-4px);
}

.ed-location-card strong {
    font-family: var(--ed-heading-font);
    font-size: 22px;
}

.ed-location-card span {
    margin-top: 6px;

    color: rgba(255,255,255,0.68);

    font-size: 13px;
}

@media (max-width: 767px) {

    .ed-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 }