* {
    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;
}


.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 .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;
}

.seccion2 {
    width: 100vw;
    height: 100vh;
    color: aliceblue;
    font-weight: 200;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.seccion2 .contArriba {
    width: 90vw;
}

.contArriba .tituloArriba {
    text-transform: uppercase;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    transform: scale(12);
    transition: ease-out .5s;
}

.contArriba .txtArriba {
    text-align: justify;
    margin-bottom: 20px;
}

.contArriba .contVidArriba {
    width: 100%;
    overflow: hidden;
}

.contVidArriba .vidArriba {
    width: 100%;
    opacity: 0;
    transition: 3s;
    border-radius: 20px;
}

.seccion2 .contG {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: firebrick; */
    width: 90%;
    margin-top: 30px;
}

.contG .contInfo {
    display: flex;
    align-items: center;
}

.contTitulo {
    margin-bottom: 20px;
    text-align: center;
    color: aqua;
}

.contInfo .img {
    width: 40vw;
    object-fit: cover;
    margin-left: 30px;
    opacity: 0;
    transition: 2s;
}

.contInfo .info {
    height: 30vh;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;

}