@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.her{
    background-image: linear-gradient(to top, rgba(89, 193, 228, 0.171) 0%, rgba(111, 133, 214, 0.322) 100%) ,url('../img/img1.jpg');
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative ;
    overflow: hidden;
}

.textos-her{
    height: 300px;
    color: #000066;
    display: flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textos-her h1{
    font-size: 60px;
}

.textos-her p{
    font-size: 25px;
    margin-bottom: 20px;
}

.textos-her a{
    display: inline-block;
    text-decoration: none;
    font: oblique bold 150% 'calibri';

    padding: 12px 15px;
    border-radius: 8px;
    color: #000066;
}

.wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/*Tarjetas*/

.container__tarjetas{
    max-width: 1200px;
    margin: auto;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tarjetas{
    width: 400px;
    margin: 10px;
    transition: all 300ms;
}

/*.card:hover{
    width: 450px;
}
*/
.tarjetas .cover{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.tarjetas .cover img{
    width: 250px;
    display: block;
    margin: auto;
    position: relative;
    top: 40px;
    z-index: 1;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.5));
    transition: all 400ms;
}
/*
.card:hover .cover img{
    top: 0px;
    filter: none;
}*/

.tarjetas .img__back{
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: -80px;
    left: 0;
    background-size: cover;
    border-radius: 20px;
    transition: all 300ms;
}

.tarjetas:nth-of-type(1) .img__back{
    background-image: url(../img/bg1.jpg);
}

.tarjetas:nth-of-type(2) .img__back{
    background-image: url(../img/bg3.jpg);
}

.tarjetas:nth-of-type(3) .img__back{
    background-image: url(../images/bg3.jpg);
}

/*.card:hover .img__back{
    bottom: -40px;
}*/

.tarjetas .description{
    background: white;
    margin-top: -10px;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    transition: all 300ms;
}
/*
.card:hover .description{
    padding: 40px;
}*/

.tarjetas .description h2{
    margin-top: 10px;
}

.tarjetas .description p{
    margin-top: 10px;
    text-align: justify;
}

.tarjetas .description input{
    padding: 10px 40px;
    margin-top: 20px;
    border: none;
    background: #6f86d6;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 300ms;
}

/*.card .description input:hover{
    background: #83277b;
}*/


/*Estilos de formulario*/

.form-resgistro{
    width: 700px;
    background: #c7cfd4;
    padding: 30px;
    margin: 315px;
    margin-top: 100px;
    border-radius: 4px;
    font-family: 'calibri';
    display: none;

}

.form-resgistro h1{
    font-size: 22px;
    margin-top: 0px;
    color: #0c6efc
}

.form-resgistro h3{
    font-size: 22px;
    margin-bottom: 20px;
}

.form-resgistro h4{
    font-size: 22px;
    margin-bottom: 0px;
}


.control{
    width: 100%;
    background: #c7cfd4;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #272554;
    font-family: 'calibri';
    font-size: 15px;
}

.control2{
    width: 100%;
    background: rgba(111, 133, 214, 0.411);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 0px;
    border: 1px solid #272554;
    font-family: 'calibri';
    font-size: 18px;
}

.porcentaje{
    color: #0c6efc;
    margin-left: 30px;
    margin-top: -39px;
    font-size: 22px;
}

/*ESTILOS RESPONSIVE*/

@media screen and (max-width:800px) {
    .textos-her h1{
        text-align: center;
        font-size: 50px;

    }
    .form-resgistro{
        width: 400px;
        background: #c7cfd4;
        padding: 30px;
        margin: 35px;
        margin-top: 100px;
        border-radius: 4px;
        font-family: 'calibri';
    
    }
    .control{
        width: 100%;
        background: #c7cfd4;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 16px;
        border: 1px solid #272554;
        font-family: 'calibri';
        font-size: 15px;
    }
}

@media screen and (max-width:412px){
    .textos-her h1{
        font-size: 30px;
    }

    .textos-her p{
        font-size: 20px;
        text-align: center;
    }

    .form-resgistro{
        width: 400px;
        background: #c7cfd4;
        padding: 30px;
        margin: 10px;
        margin-top: 100px;
        border-radius: 4px;
        font-family: 'calibri';
    
    }
    .control{
        width: 100%;
        background: #c7cfd4;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 16px;
        border: 1px solid #272554;
        font-family: 'calibri';
        font-size: 15px;
    }
}
