@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,600;1,6..12,400;1,6..12,500;1,6..12,700&family=Poppins:ital,wght@0,400;0,600;0,700;1,300;1,500&family=Roboto:ital,wght@1,300;1,400;1,500;1,700&family=Sora:wght@200;300;400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Poppins', sans-serif;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 4px 25px -22px black;
    z-index: 2;
}
.header-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.logo{
    /* width: 130px; */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu{
    height: 80px;
}
.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
}
.menu nav ul li{
    height: 100%;
    margin: 20px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.menu-selected::before{
    content: '';
    width: 100%;
    height: 4px;
    background: #30c0af;
     color: #30c0af; 
    /* color: #30c0af; */
    position: absolute;
    top: 0;
    left: 0;
}
.menu nav ul li a{
    color: #777777; 
    font-size: 18px;
    font-weight: 400;
}

.menu nav ul li a:hover{
    color: peachpuff;
}
/* 
.menu nav ul li a:hover{
    color: #ffdab9;
    color: #ffdab904;
}
 */.menu .text-menu-selected{
    color: #30c0af;
    /* color: #dc143c; 
    /* color: #9acd32; */
}
.menu nav ul li a i{
    display: none;
}

#icon-menu{
    width: 50px;
    height: 50px;
    color: #30c0af;
    position: absolute;
    right: 20px;
    top: 16px;
    padding: 10px;
    background: #eeeeeefa;
    border-radius: 100%;
    font-size: 20px;
    /* display: flex;   */
    justify-content: center;
    align-items: center;
    cursor: pointer;
   display: none; 
}
#icon-menu:hover{
    opacity: 0.6;
}

/* Portada */

.container-cover{
    width: 100%;
    height: 500px;
    position: relative;
    margin-top: 80px;
    background-image: url(../img/profesor\ apoyo\ escolar.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.container-cover::before{
    content: '';
    width: 100%;
    height: 100%;
   /* background: rgba(38, 172, 255, 0.6); */
    background:  #30c0af80;
    /* background: #30c0af; */
    position: absolute;
    top: 0;
    left: 0;
}
.container-info-cover{
    max-width: 800px;
    max-height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.container-info-cover h1{
    font-size: 50px;
    font-weight: 700;
    margin: 100px;
    color: #fff;
    margin-bottom: 20px;
}
/* .container-info-cover h4{
    font-size: 20px;
    font-weight: 400;
    margin: 100px;
    color: #fff;
    margin-bottom: 20px;
} */
.container-info-cover p{
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}




 /* Boton Modal */

 .boton-modal{
    padding: 40px;
    background-color: transparent;
}
.boton-modal label{
    padding: 10px 15px;
    background-color: #ffad85;
    color: #fff;
   /*  border-radius: 80%; */
   border-radius: 2rem;
   padding: 0.6rem 2rem;
    cursor: pointer;
    transition: all 300ms ease;
    font-size: 19px;
}

.boton-modal label:hover{
    background-color: pink;
    color: #f5f5f5;
}

/* Fin Boton Modal */

#btn-modal{
    display: none;
}
.container-modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: rgba(144, 148, 150, 0.8); */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#btn-modal:checked ~ .container-modal{
    display: flex;
}
.content-modal{
    width: 100%;
    max-width: 500px;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.content-modal h2{
    margin-bottom: 15px;
    color: #ffad85;
}
.content-modal p{
    padding: 15px 0px;
    /* border-top: 2px solid #dbdbdb; */
    border-top: 2px solid var(--green);
    /* border-bottom: 2px solid #dbdbdb; */
    border-bottom: 2px solid var(--green);
    color: #1bbc9c;
}
.content-modal .btn-cerrar{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
.content-modal .btn-cerrar label{
    padding: 7px 10px;
    background-color:  #ffad85;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}
.content-modal .btn-cerrar label:hover{
    background-color: rgb(220, 20, 60, 0.6);
}
.cerrar-modal{
    width: 100%;
    height: 120vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 300ms ease;
}




/* Servicios */
.servicios{
    padding: 0vw 8vw 0vw 8vw;
    text-align: center;
}
.servicios h1{
    margin: 40px;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffad85;
}

.servicios p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 50px 30px;
    color: #054a6e;
}

/* Aca comienza servicios */

.servicios p{
    text-align: justify;
    margin: 30px;
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
}

.containerp{
    width: 100%;
    display: flex;    
    justify-content: center;
    align-items: center;
    height: 90%;
    margin: auto;
    margin-top: 0px;
    padding: 30px;
    gap: 30px;
}

.containerp  .tarjeta h1{
    font-size: 50px;
    font-weight: 600;
    /* color: #2c2c2c; */
}
.containerp  .tarjeta .capa p{
    text-align: justify;
    justify-content: center;
    margin: 30px;
    font-size: 30px;
    font-weight: 400;
    color: #2c2c2c;
}

/* diseño tarjeta1 */

.containerp .tarjeta1{
    background: rgba(5, 74, 110, 0.35);
    position: relative;
    height: 300px;
    width: 350px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0px 20px 30px rgba(142, 38, 87,0.4);
    cursor: pointer;
}
.containerp .tarjeta1 img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp  .tarjeta1 .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background:  rgba(180, 159, 218, 0.4);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}
.containerp .tarjeta1:hover .capa{
    opacity: 1;
    visibility: visible;
}
.containerp .tarjeta1:hover .capa h2{
    margin-top: 70px;
    margin-bottom: 15px;
}
.containerp .tarjeta1:hover img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.containerp .tarjeta1 .capa h2{
    color: #ffffff;
    font-weight: 220;
    font-size: 18px;
    margin-bottom: 120px;
    margin-top: 30px;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp .tarjeta1 .capa p{
    width: 100%;
    max-width: 220px;
    margin: auto;
    color: #f2f2f2;
    font-size: 1px;
    line-height: 1.6;
    text-align: center;
    padding: 10px;
}
.capa p{
    color: #f2f2f2;
    font-weight: 300;
}

/* diseño tarjeta2 */

.containerp .tarjeta2{
    background:  rgba(5, 74, 110, 0.35);
    position: relative;
    height: 300px;
    width: 350px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0px 20px 30px  rgba(142, 38, 87,0.4);
    cursor: pointer;
}
.containerp .tarjeta2 img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp  .tarjeta2 .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background:  rgba(180, 159, 218, 0.4);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}
.containerp .tarjeta2:hover .capa{
    opacity: 1;
    visibility: visible;
}
.containerp .tarjeta2:hover .capa h2{
    margin-top: 70px;
    margin-bottom: 15px;
}
.containerp .tarjeta2:hover img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.containerp .tarjeta2 .capa h2{
    color: #fff;
    font-weight: 220;
    font-size: 18px;
    margin-bottom: 120px;
    margin-top: 30px;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp .tarjeta2 .capa h5{
    color: #ffffff;
    font-weight: 200;
    font-size: 13px;
    padding: 30px;

}
.containerp .tarjeta2 .capa p{
    width: 100%;
    max-width: 220px;
    margin: auto;
    color: #f2f2f2;
    font-size: 15 px;
    line-height: 1.6;
    
}

/* diseno tarjeta 3 */

.containerp .tarjeta3{
    background:  rgba(5, 74, 110, 0.35);
    position: relative;
    height: 300px;
    width: 350px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0px 20px 30px  rgba(142, 38, 87,0.4);
    cursor: pointer;
}
.containerp .tarjeta3 img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp  .tarjeta3 .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 159, 218, 0.6);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}
.containerp .tarjeta3:hover .capa{
    opacity: 1;
    visibility: visible;
}
.containerp .tarjeta3:hover .capa h2{
    margin-top: 70px;
    margin-bottom: 15px;
}
.containerp .tarjeta3:hover img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.containerp .tarjeta3 .capa h2{
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 120px;
    margin-top: 30px;
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
}
.containerp .tarjeta3 .capa p{
    width: 100%;
    max-width: 220px;
    margin: auto;
    color: #ffffff;
    font-size: 25px;
    font-weight: 300; 
    line-height: 1.6;
    text-align: center;

} 
/* Boton de servicios */

.containerp > button{
    padding: 10px 25px;
    margin-top: 40px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    background: #fff;
    box-shadow: 1px 1px 20px -10px #020101;
    background: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
}
.containerp > button > a{
    text-decoration: none;
    color: #ffffff;
}
.containerp > button:hover{
    background: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
    box-shadow: 1px 1px 20px -5px #202020;
} 

/* Boton de servicios */

.containerp > button{
    padding: 10px 25px;
    margin-top: 40px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    background: #fff;
    box-shadow: 1px 1px 20px -10px #020101;
    background: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
}
.containerp > button > a{
    text-decoration: none;
    color: #ffffff;
}
.containerp > button:hover{
    background: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
    box-shadow: 1px 1px 20px -5px #202020;
} 

/*  Video  */

.video{
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../img/alumnos\ bachillerato\ 1.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    margin: 10px 10px;
    padding: 180px;
}
.video a{
    font-size: 2.2rem;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--mount-meadow);
    padding-left: 7px;
    margin: 20px auto;
}  
.video p{
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--white-smoke);
    opacity: 0.7;
}

.team .row{
    margin-top: 2rem;
}
.team-item{
    margin: 2rem 0;
}
.team-img{
    position: relative;
}
.team-icons{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background: var(--white-smoke);
    opacity: 0;
    transition: var(--transition);
}
.team-icons a{
    color: var(--night-rider);
    width: 50px;
    height: 50px;
    transition: var(--transition);
}
.team-icons  a:hover{
    background: var(--mount-meadow);
    color: #fff;
}
.team-img:hover  .team-icons{
    opacity: 1;
}
.team-info{
    text-align: center;
    padding: 1.5rem;
    line-height: 1;
}
.team-info h3{
    font-size: 1.4rem;
    color: var(--night-rider);
}
.team-info span{
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.7;
} 


/* Registracion */

#registration{
    padding: 6vw 8vw 6vw 8vw 8vw;
    background-image: linear-gradient(rgba(99, 112, 168, 0.5), rgba(81, 91, 233, 0.5)), url('../img/alumno\ primaria\ 2.png');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    color: white;
}
#registration  .reminder {
    color: #fff;
}
#registration  .reminder h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

#registration  .reminder p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

#registration  .reminder p a{
    color: pink;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
    justify-content: center;
}
#registration  .reminder  .time {
    display: flex;
    margin-top: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
}
#registration  .reminder  .time .date {
    text-align: center;
    padding: 13px 33px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 5px;
    margin: 0 5px 10px 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    font-weight: 400;
}
#registration .form {
    background: rgb(255, 255, 255, 0.4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 20px 40px 40px 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
#registration .form input{
    margin: 15px 0;
    padding: 15px 10px;
    border: 1px solid rgb(84, 40, 241);
    outline: none;
}


#registration .form input::placeholder{
    color: #413c3c;
    font-weight: 500;
    font-size: 0.9rem;
}

#registration .form .btn {
    margin-top: 15px;
    margin-bottom: 12px;

}

#registration a.blue{
    color: #fff;
    background: hsl(20, 100%, 76%, 0.8);
    transition: 0.3s ease;
    text-align: center;
}

#registration .form a.blue {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 30px;
    background-color: hsl(20, 100%, 76%, 0.8);;
    font-weight: 600;
    border-radius: 15px;
    margin: 15px;
}
#registration a.blue:hover{
    color: #fff;
    background: #30c0af;
}


/* Verde */

#registration a.verde{
    color: #fff;
    background: rgb(48, 192, 175, 0.7);
    transition: 0.3s ease;
    text-align: center;
}

#registration .form a.verde {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 30px;
    background-color: rgb(48, 192, 175, 0.7);
    font-weight: 600;
    border-radius: 15px;
    margin: 15px;
}
#registration a.verde:hover{
    color: #fff;
    background: pink;
}

/* .contenedor-inputs{
    padding: 10px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
input{
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
    border-radius: 3px;
    border-radius: 1px solid darkgray;
}
.input-48{
    width: 48%;
}
.input-100{
    width: 100%;
}
.btn-enviar{
    background: crimson;
    color: #fff;
    border-radius: 10px;
    margin: auto;
    padding: 10px 40px;
    cursor: pointer;
}
.btn-enviar:active{
    transform: scale(1);
}
.form__link{
    width: 100%;
    margin: 7px;
    text-align: center;
    font-size: 14px;
}
 */

#registration .btn-enviar{
    background: peachpuff;
    color: #202020;
    border-radius: 10px;
    margin: auto;
    padding: 10px 30px;
    cursor: pointer;
}
#registration .btn-enviar:hover{
    color: #202020;
    background: pink;
}
#registration .btn-enviar:active{
    transform: scale(1);
}
.form__link{
    width: 100%;
    margin: 7px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}
input[type="submit"] {
    margin-bottom: 15px;
    margin-top: 5px;
    background-color: rgba(255, 173, 133, 0.8);
    border: rgb(255, 173, 133);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

/* Experts */

#experts {
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
}

#experts img{
    border-radius: 50%;
    margin: 2rem auto;
    padding: 0.5rem;
}
#experts  .expert-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 2fr));
    grid-gap:  1rem;
    margin-top: 50px;
}

#experts  .expert-box .profile {
    background: #fafaf1;
    padding: 30px 10px;
} 

.pro-links {
    margin-top: 10px;
}
.pro-links  i {
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
}

.pro-links  i:hover {
    background: hsl(357, 100%, 75%, 0.6);
    color: #fff;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
}

/* Container contenido del articulo */

.container-content{
    width: 1200px;
    margin: 30px auto;
    /* margin: auto; */
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
article{
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    box-shadow: -20px 0 20px -30px black;
    border-radius: 6px;
    overflow: hidden; 
    background: #f9f9f9;
    position: relative;
} 
article:before{
    content: '';
    width: 100%;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background: hsl(173, 60%, 47%, 0.6);
}
article h1{
    margin-top: 20px;
    font-size: 40px;
    font-weight: 500;
}
article p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #3c3c3c;
    text-align: justify;
}
article img{
    width: 50%;
    margin-top: 25px;
    margin-left: 160px;
    border-radius: 8px;
    box-shadow: 0 0 20px -60px black;
}

/* Aside de los articulos relacionados */

.container-aside aside{
    width: 320px;
    /* background: 6px; */
    box-shadow: 0 0 20px -60px black;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 40px;
    margin-right: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.container-aside aside img{
    width: 100%;
}
.container-aside aside h2, 
.container-aside aside p{
    margin-top: 20px;
    padding: 0px 20px;
    text-align: justify;
}
.container-aside aside button{
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 50px;
    font-size: 10px;
    /* background: hsl(173, 60%, 47%, 0.9); */
    background: #ffad85;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 400;
}
.container-aside aside button:hover{
    opacity: 0.9;
}

.container-content article a i{
  color: crimson;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 28px; 
  font-weight: 400;
  text-decoration: none;
}




footer{
    padding: 8vw;
    background-color: rgb(52, 52, 52);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer  .footer-col {
    padding-bottom: 25px;
}
footer h3{
    color: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 20px;
}
footer li{
    list-style: none;
    color: #7b838a;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}
footer li:hover{
    color:  hsl(357, 100%, 75%, 0.6);
}

footer p{
    color: #7b838a;
}
footer .footer-javeriana li{
    color: #7b838a;
}
footer .subscribe{
    margin-top: 20px;
}
footer  input{
    width: 220px;
    padding: 12px 10px;
    background: rgb(51, 79, 108, 0.6);
    border: none;
    color: #fff;
}
footer  .subscribe{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}
footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 15px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.verde {
    color: #fff;
    background:  hsl(173, 60%, 47%);
    transition: 0.3s ease;
}

footer .subscribe a.verde:hover {
    color: #fff;
    background: hsl(20, 100%, 76%, 0.8);
    transition: 0.3s ease;
}
footer  .copyright {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

footer  .copyright p{
    color: #fff;
}

footer  .copyright .pro-links {
    margin-right: 100px;
    margin-top: 0px;
}
footer  .copyright .pro-links  i {
    padding: 10px 13px;
    border: 1px solid #5f7185;
    color: #fff;
}

footer  .copyright .pro-links  i:hover {
    /* background: hsl(357, 100%, 75%); */
    background: #fff;
    color: #2c2c2c;
}
footer img{
    width: 50px;
}

@media (max-width: 769px) {
    nav{
        padding: 15px 20px;
    }
    nav img{
        width: 130px;
    }
    
}
    #menu-btn{
        display: initial;
    }
    #menu-close {
        display: initial;
        font-size: 1.6rem;
        color: #fff;
        padding: 30px 0 20px 20px;
    } 

    nav .navigation ul{
        position: absolute;
        top: 0;
        right: -220px; 
        width: 220px;
        height: 100vh;
        background:  hsl(20, 100%, 76%, 0.4);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.20);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }

    nav .navigation ul.active{
        right: 0;
    }
    nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;

    }
    nav .navigation ul li a{
        color: #fff;
    }

    #home{
        padding-top: 0px;
    }
    #home p {
        width: 90%;
    }
    #features {
        padding: 8vw 4vw 0 4vw;
    }
    #course {
        padding: 8vw 4vw 0 4vw;
    }
    #registration {
        margin-top: 8vw;
        padding: 6vw 4vw 6vw 4vw;
    }
    footer  .copyright .pro-links {
        margin-top: 15px;
    }

    @media (max-width: 475px) {
        #registration {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        #registration .reminder  .time{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }
    }

/* Efectos Whatsapp */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float{
	margin-top: 16px;
}

    