.principal{
    background-image: linear-gradient(rgba(100,100,100,0.8),rgba(12,85,69,1)), url('../img/fondoInicio.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: multiply;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

#contenedorCardServicios{
    background-image: linear-gradient(to top, #fff 0%, #2d4731 60%, var(--verdeMuyOscuro) 100%);
    padding-bottom: 200px;
}

#fondoMisionVision{
    background-image: url("../img/fondoMisionVision.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

#fondoMisionVision picture{
    width: 50%;
}
#fondoMisionVision article{
    width: 50%;
}

.cardServicio{
    height: 600px;
    background-size: cover;
    cursor: pointer;
}

.cardServicio img{
    transition: all 300ms;
    -webkit-filter: grayscale(100%) brightness(20%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.6);
    filter: grayscale(100%) brightness(20%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.6);
}

.cardServicio:hover > img{
    -webkit-filter: grayscale(100%) brightness(20%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.6);
    filter: grayscale(100%) brightness(10%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.6);
}

.fondoContador{
    background-image: url("../img/fondoMisionVision.svg");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 15px var(--verdeOscuro);
    margin-top: 50px;
}

.cardContador{
    background-color: rgba(12,85,69,0.6);
    width: 300px;
    border-radius: 5px;
    color: #fff;
    cursor: default;
}

.cardContador h4{
    color: #ccc;
}

.cardContador:hover{
    background-color: rgba(12,85,69,1);
}

.line{
    height: 2px;
    background-color: #fff;
    width: 30%;
}

#contenedorBotonesInicio{
    margin-top: 100px;
}

.video-home{
    width: 75%;
}

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

    #fondoMisionVision picture{
        width: 100%;
    }

    #fondoMisionVision article{
        width: 100%;
    }

    .video-home{
        width: 100%;
    }

}

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

    h1{
        font-size: 16pt;
    }

    h3{
        font-size: 14pt;
    }

    .line{
        width: 10%;
    }
}

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

    #contenedorBotonesInicio{
        margin-top: 70px;
    }

    .principal{
        padding-top: 100px;
    }

    #fondoMisionVision{
        background-image: linear-gradient(120deg, var(--verdeClaro) 0%, var(--verdeMuyOscuro) 100%);
    }

}