.main-container {
    display: none;
}

.placesContainer {
    padding: 125px 0 75px;
}

.cityTitle {
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
}

/* /places */
.citiesCard {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    display: flex;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.citiesCard::after {
    background-color: rgba(39, 60, 117, .6);
    border-radius: .25rem;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.citiesCard h2 {
    color: #fafafa;
    font-weight: 600;
    left: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.citiesCard img {
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: 0.5s all ease-in-out;
    width: 100%;
}

.citiesCard:hover img {
    transform: scale(1.1);
}

.citiesCard a {
    color: #fafafa;
}

/* /places/{city} */
 .cityDescription {
    font-size: 18px;
}

.cityMap {
    height: 300px;
}

.listingsTitle,
.listingCards {
    max-width: 1250px;
}

.card {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    color: #222;
    margin: 0 auto;
    max-width: 325px;
}

.card:hover {
    color: #222;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.typeBadge {
    font-size: 11px !important;
    left: 5px;
    top: 5px;
}

.forSaleBadge {
    background-color: #3b82f6;
}

.forRentBadge {
    background-color: #22c55e;
}

.cardMonthPrice {
    font-size: .9rem;
}

.card-footer {
    font-size: 12px;
}

@media (max-width: 767px) {
    .citiesContainer {
        width: 90%;
    }

    .citiesCard img {
        border-radius: 0.375rem 0.375rem 0 0 !important;
        object-fit: cover;
        width: 100%;
    }
}