/* ARQUIVO DE CUSTOMIZAÇÃO PARA VIDEO DE BACKGROUND NA HOME */

.video-container {
    display: flex;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    width: 100%;
    height:80vh;
}

.video-container h1 {
   
    font-weight: bold;
    font-size: 30px;
    color:#FFF;
    text-align: center;
}
.buttonBar{
   color: transparent;
}

#cont-busca{
    padding-top: 20px;
    background-color: #f1f1f1;
}
#cont-busca .row{
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media(max-width:720px){
    .video-container {
        height: 300px;
        background-image: url(../img/banner-mobilejpg.jpg);
        background-size: cover;
        background-position: center;
    }

    .video-container h1{
        font-size: 20px;
    }
}

@media (min-aspect-ratio: 16/9) {
    .video-container iframe {
        /* height = 100 * (9 / 16) = 56.25 */
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-container iframe {
        /* width = 100 / (9 / 16) = 177.777777 */
        width: 177.78vh;
    }
}


