* {
    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 .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 {
    padding-bottom: 50px;
    margin-top: 60px;
}

.seccion2 h2 {
    color: rgb(192, 192, 192);
    text-align: center;
    margin: 20px 0;
}

.subseccion2 {
    height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: rgb(185, 185, 185);
    margin: 0 20px;
    border-radius: 20px 20px;
    box-shadow: 3px 3px 14px 3px rgba(0, 0, 0, 0.329);
    transition: 1s;
}

.subseccion2 .img2 {
    margin-left: 100%;
}

.subseccion2 .img3 {
    margin-left: 100%;
}

.subseccion2 .contTxt {
    height: 90%;
    overflow: auto;
}

.subseccion2 .txt {
    color: black;
    font-weight: 400;
    padding: 20px;
    overflow: auto;
    font-size: 20px;

}

.subseccion2 .imgSec2 {
    width: 50vw;
    height: 100%;
    object-fit: cover;
    transition: .4s;
    text-align: center;
    
}

.subseccion2 .img3 {
    width: 50vw;
    height: 100%;
    text-align: center;
    object-fit: cover;
    
}