.nosotros {
    display: block;
    height: 100vh;
    width: 100%;
    background-image: url('../images/objetos/nosotros/fondo.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.nosotros-menu-interactivo {
    position: absolute;
    right: 90px;
    top: 100px;
}

.nosotros-logo-sendero-container {
    position: absolute;
    top: 5px;
    left: 75px;
}

.nosotros-logo-sol {
    position: absolute;
    left: 23px;
    animation: animacion-sol 11s linear infinite;
}

.nosotros-logo-base {
    position: absolute;
}

.nosotros-bloque-textual {
    position: relative;
    top: 240px;
    left: 60px;
    width: 600px;
    height: 290px;
    overflow: auto;
    z-index: 6;
}

.nosotros-bloque-textual p {
    text-align: justify;
    transition: 1s;
}

.nosotros-boton-retorno {
    cursor: pointer;
    position: absolute;
    right: 70px;
    top: 20px;
}

.nosotros-boton-retorno-gray {
    cursor: pointer;
    position: absolute;
    right: 70px;
    top: 20px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 20px;
}

.nosotros-burbuja {
    cursor: pointer;
}

.nosotros-vision-burbuja {
    position: absolute;
    right: 255px;
    animation: flotar-dialogo 3s linear infinite;
}

.nosotros-mision-burbuja {
    position: absolute;
    right: 315px;
    top: 105px;
    animation: flotar-dialogo 3s linear infinite;
}

.nosotros-resena-burbuja {
    position: absolute;
    top: 45px;
    right: 55px;
    animation: flotar-dialogo 3s linear infinite;
}

#nosotros-menu {
    float: right;
}

@keyframes animacion-sol {
    0% {
        transform: rotate(390deg);
        -webkit-transform: rotate(390deg);
    }
    100% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}