* {
    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: 300px;
    background: rgb(4, 104, 96);
    border-radius: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    margin-top: 30px;
    box-shadow: 3px 3px 12px 3px rgba(0, 0, 0, 0.308);
    border: solid 2px rgb(117, 117, 117);
}

.seccion2 form {
    display: flex;
    flex-direction: column;
    color: rgb(255, 255, 255);
    font-weight: 400;
}

form div {
    display: flex;
    flex-direction: column;
    line-height: 40px;
}

form .enviar {
    margin-top: 20px;
    padding: 10px;
    font-size: 17px;
    background: aquamarine;
    border-radius: 10px;
    transition: .5s;
}

.enviar:hover {
    cursor: pointer;
    background: rgb(255, 255, 255);
}

.seccion3 {
    width: 100vw;
    background: aquamarine;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
    margin-top: 30px;

}

.seccion3 .tituloFooter {
    margin-bottom: 10px;
    font-size: 24px;
}

.seccion3 a {
    text-decoration: none;
    color: rgb(51, 51, 51);
    font-weight: 300;
    line-height: 35px;
    transition: .4s;
    /* background: rgba(255, 255, 255, 0.432); */
    text-align: justify;
}

.seccion3 a:hover {
    margin-left: 20px;
}

.seccion3 a i {
    font-size: 25px;
    margin-right: 5px;
}