/*-----Start Background-----*/
.video-container {
    top: 65px;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 7rem;
}

.video-container video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: -1000;
}

.logo-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 35%;
}

/*About*/
.card {
    max-width: 1000px;
    overflow: hidden;
    border: none !important;
    padding: 20px;
    margin-bottom: 10%;
}

.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.sga-texto {
    margin-top: 8rem;
    margin-left: 10px;
    color: #484848;
    text-align: center;
    font-size: 1.5em;
}

.container-content-video{
    background: #EAEAEA;
}

/*-----Media Queries-----*/
@media screen and (max-width: 767px) {
    .sga-texto {
        margin-top: 1rem;
        font-size: 1em;
    }

    .logo-image {
        top: 60px;
    }
}

@media screen and (max-width: 992px) and (min-width:767px){
    .sga-texto {
        margin-top: 5rem;
        font-size: 1.125em;
    }
    .logo-image {
        top: 65px;
    }
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
    .logo-image {
        top: 65px; 
    }
}

