* {
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(rgb(22, 64, 104), rgb(9, 34, 58));
    width: 100vw;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;

}

.seccion1 {
    /* background: rgb(201, 124, 124); */
    width: 100vw;
    height: 80px;
    font-weight: 400;
}

.seccion2 {
    /* background: rgb(27, 101, 212); */
    width: 100vw;

}

.seccion2 .contImg {
    height: 60vh;
    overflow: hidden;
}

.contImg>img {
    width: 100%;
    object-fit: cover;
}

.seccion3 {
    width: 100vw;

}

.seccion3 .tituloSec3 {
    background: aquamarine;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 3px 2px 7px 2px rgba(0, 0, 0, 0.459);
    margin-left: 100%;
    transition: .5s;
}

.seccion3 .txtSec3 {
    padding: 30px 30px;
    text-align: justify;
    /* background: rgb(16, 43, 8); */
    color: rgb(250, 235, 215);
    font-weight: 200;
}

.seccion4 {
    background: rgb(96, 114, 13);
    width: 100vw;


}

/* CLASES JS */

.salir {
    margin-left: -100%;
}

.entrar {
    margin-left: 0%;
    color: aquamarine;

}


.seccion1 {
    /* background: firebrick; */
    display: flex;
    justify-content: center;
    border-bottom: solid rgba(149, 149, 255, 0.363) 1px;
    z-index: 200;
    margin-left: -7px;
}


.seccion1 .contEnlaces {
    /* background: forestgreen; */
    width: 25%;
    /* border: solid 1px rgba(12, 27, 49, 0.247); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.contEnlaces .enlaces {
    color: antiquewhite;
    text-decoration: none;
    /* background: firebrick; */
    transition: .5s;
}

.enlaces:hover {
    transform: scale(1.1);

}

.seccion1 .contServicios {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contServicios .servicios {
    /* background: rgb(255, 230, 3); */
    position: absolute;
    z-index: 300;
}

.contServicios .contSubmenuServicios {
    opacity: 0;
    transition: .2s;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: -300%;
    top: 80px;
    z-index: 200;
    transform: scale(.01);
    
}

.contServicios:hover .contSubmenuServicios {
    /* background: rgba(34, 113, 178, 0.514); */
    opacity: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    z-index: 200;
    
}

.contSubmenuServicios>a {
    padding: 10px 10px 10px 5px;
    color: antiquewhite;
    text-decoration: none;
}

.contSubmenuServicios>a:hover {
    background: aquamarine;
    color: rgb(33, 33, 43);
}


.fa-chevron-down {
    margin-left: 5px;
}