#map {
    width: 50vw;
    height: 100%;
    margin-bottom: 0;
    position: relative;
    margin: 0;
}

.mapa {
    height: 100%;
    width: 50vw;
    margin: 0;

}

/* Bloco do vídeo */
.bloco_video {
    width: 50vw;
    height: 100%;
    margin-bottom: 0;
    position: relative;
    margin: 0;
}

    .bloco_video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner_video {
    display:flex;
    flex-direction:column;
    width: 100%;
    height: 18vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--cor_branca);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    margin: 0;
}

.descricao_video {
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0;
    font-family: var(--font-family-koho);
    color: var(--cor_branca);
    font-size: 2.2em;
    font-weight: bold;
    text-align:center;
}
.descricao_cidade_video {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: var(--font-family-koho);
    color: var(--cor_branca);
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}
/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 768px) {

    .descricao_video {
        font-size: 1.8em;
    }

    .descricao_cidade_video {
        font-size: 1.1em;
    }
}

@media only screen and (max-width: 480px) {

    #map {
        width: 100vw;
        height: 60vh;
    }

    .bloco_video {
        display: none;
    }
}
