#mainTitleContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: radial-gradient(263.7% 106.65% at 71.66% 56.15%,
            #f01e0f 0%,
            #740800 100%);
    color: white;
    font-size: 22px;
    text-align: center;
    padding: 80px 0 100px;
}

.circle-yellow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.circle-white {
    position: absolute;
    left: 0;
    top: 0;
}

.search-gallery {
    width: fit-content;
    margin: 30px auto 0;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.search-gallery input {
    height: 45px;
    font-size: 14px;
    width: 250px;
    color: black;
}

.search-gallery img {
    width: 20px;
    margin-right: 10px;
    margin-left: 10px;
}

.button-gallery {
    padding: 0 30px;
    border: unset;
    background: #FFBE14;
    color: white;
    cursor: pointer;
}
#mapDiv{
    width: 90%;
    margin: 30px auto;
}
.mapContainer{
    width: 90%;
    margin: 30px auto;
}
.header-gallery {
    width: 90%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-gallery h2 {
    font-size: 22px;
    font-weight: 500;
}

#city_id {
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    background-image: url("/files/site/icon/arrow-down-city.svg");
    background-repeat: no-repeat;
    background-position: 90%;
}

.body-gallery {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: auto;
    grid-gap: 20px;
}

.card-gallery {
    cursor: pointer;
}

.img-card {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.img-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.text-card-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(240, 30, 15, 0.7);
    visibility: hidden;
}

.card-gallery:hover .text-card-img {
    visibility: visible;
}

h3 {
    font-weight: 600;
}

h3 span {
    font-weight: 200;
}



@media screen and (max-width: 1390px) {
    .body-gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }

    h3 {
        font-size: 14px;
    }
}


@media screen and (max-width: 1100px) {
    .body-gallery {
        grid-template-columns: 1fr 1fr;
    }

}



@media screen and (max-width: 768px) {
    .body-gallery {
        grid-template-columns: 1fr;
    }

    .header-gallery {
        flex-direction: column;
    }

    h1{
        font-size: 22px;
        max-width: 220px;
        margin: auto;
        text-align: center;
    }

    h2 {
        font-size: 17px !important;
        margin-bottom: 10px;
    }

    select {
        padding: 7px 40px 7px 20px;
        font-size: 13px;
    }

    .circle{
        display: none;
    }

    .search-gallery input{
        width: auto;
    }
}