@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}




/*** MENU ***/

header{
    width: 100%;
    height: 80px;
    margin-top: 40px;
    position: fixed;
    z-index: 1;
    padding: 40px;
}

.container__menu{
    max-width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.logo{
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img{
    width: 60px;

}

.menu{
    display: flex;
    align-items: center;
    
}

.menu ul{
    display: flex;
}

.menu ul li{
    list-style: none;
    margin-left: 36px;
}

.menu ul li a{
    text-decoration: none;
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
    
}




#selected{
    background: linear-gradient(to right, #930e4c, #e30513);
    padding: 10px 40px;
    border-radius: 50px;
    
}

.menu nav img{
    display: none;
}

.menu #btn_menu{
    display: none;
}


/*COVER*/


.container__cover{
    width: 100%;
    height: 800px;
   /* background-image: url(../images/Background-page.svg);*/
    background-position: right;
    background-repeat: no-repeat;
    padding: 40px;
}

.cover{
    max-width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container__cover .text{
    max-width: 400px;
}

.container__cover .text h1{
    font-size: 36px;
    font-weight: 600;
}

.container__cover .text p{
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 40px;
}


.container__cover .text input{
    padding: 18px 80px;
    border: none;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 40px;
    background: linear-gradient(to right, #930e4c, #e30513);
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #f54d4d;
    transition: all 300ms;
    text-decoration: none;
}

.donn{
    padding: 18px 80px;
    border: none;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 0px;
    background: linear-gradient(to right, #930e4c, #e30513);
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #f54d4d;
    transition: all 300ms;  
    text-decoration: none;
}

.container__cover .text input:hover{
    box-shadow: 1px 1px 30px -6px #f54d4d;
}


.container__cover .svg img{
    width: 400px;
    animation: move-vector 4s linear infinite;
}

.pse07{
    width: 150px;
}

@keyframes move-vector {
    0%{
        transform: translateY(15px);
    }50%{
        transform: translateY(0px);
    }100%{
        transform: translateY(15px);
    }
}
/*** FRASE ***/

.container__banner{
    margin-top: 80px;
}

.banner{
    height: 250px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #930e4c, #e30513);
    position: relative;
}

.banner__icon-heart{
    width: 35%;
    height: 100%;
}

#icon_heart{
    width: 400px;
    margin-top: -20px;
    position: relative;
    filter: drop-shadow(-40px 0px 30px rgba(0,0,0,0.5));
}

.banner__text{
    width: 60%;
    position: relative;
    padding: 40px;
}

.banner__text h2{
    color: #fff;
    font-size: 32px;
    font-weight: 400;
}

.banner__text a{
    text-decoration: none;
    display: block;
    margin-top: 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 300ms;
}

.banner__text a:hover{
    color: #69F1A1;
}

.banner__icon-fire{
    height: 100%;
    position: absolute;
    right: 10px;
    overflow: hidden;
}

#icon_fire{
    width: 300px;
    position: relative;
    margin-top: -100px;
    opacity: 0.6;
}

/**TARJETAS**/

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

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

.card:hover{
    width: 350px;
}

.card .cover{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/fundadores/bg1.jpg);
    border-radius: 20px 20px 0px 0px;
    background: linear-gradient(to right, #930e4c, #e30513);
}

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

.card:hover .cover img{
    top: 0px;
    filter: none;
    
}

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



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


.card .description{
    background: rgb(235, 231, 231);
    margin-top: -10px;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    transition: all 300ms;
}

.card:hover .description{
    padding: 40px;
}

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

.card .description p{
    margin-top: 10px;
}

.card .description input{
    padding: 10px 40px;
    margin-top: 20px;
    border: none;
    background: linear-gradient(to right, #930e4c, #e30513);
    color: white;
    font-size: 14px;
    border-radius: 8px;
    transition: all 300ms;
}

/*** MISION Y VISION TARJETAS ***/


.container__card2{
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card__father2{
    margin: 20px;
    perspective: 1000px;
}

.card__father2:hover .card2{
    transform: rotateY(180deg);
}


.card2{
    width: 350px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 600ms;
}

.card__front2{
    background-size: cover;
    background-position: center;
}


.card__front2,
.card__back2{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.card__back2{
    transform: rotateY(180deg);
    background: linear-gradient(to right, #930e4c, #e30513);
}

.body__card_front2{
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateZ(60px);
}

.bg2{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.body__card_back2{
    padding: 40px;
    text-align: center;
    transform: translateZ(60px);
    color: #fff;
}

.body__card_back2 p{
    margin-top: 30px;
    font-size: 18px;
}

.body__card_back2 input{
    padding: 10px 40px;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: white;
    background: #58B0F6;
    box-shadow: 1px 1px 30px -5px #58B0F6;
    border-radius: 10px;
    transition: box-shadow 600ms;
}

.body__card_back2 input:hover{
    box-shadow: 1px 1px 30px 0px #449de6;
}



/*Historia*/

.text__about3{
    
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 50px;
    
}


.text__about3 h2 {
    margin-top: 40px;
}











.container__card-primary{
    padding-top: 100px;
    background-color: #ffffff;
}

.card__primary{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
    
}

.text__card-primary{
    max-width: 800px;
    margin: auto;
}

.text__card-primary p{
    
    letter-spacing: 4px;
    
    font-weight: 500;
}

.text__card-primary h1{
    
    font-weight: 600;
}

.container__box-cardPrimary{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    
}

.box__card-primary{
    max-width: 350px;
    padding: 60px 40px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    margin: 14px;
    transition: all 300ms;
    


}

.box__card-primary:hover{
    border: 1px solid transparent;
    
    
}

.box__card-primary h2{
    font-size: var(--text_title_card);
    margin-top: 40px;
    font-weight: 500;
}

.box__card-primary p{
    margin-top: 20px;
}

/*Sobre nosotros*/

.container__about3{
    padding: 100px 0px;
    background: var(--background-color);
    margin-top: 100px;
}

.about3{
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text__about3{
    width: 100%;
    padding-right: 40px;
}

.text__about3 h1{
    
    font-weight: 600;
}

.text__about3 p{
    
    margin-top: 40px;
    
}


.image__about3{
    width: 100%;
    display: flex;
}

.image__about3 img{
    width: 300px;
}

/*Servicios*/

.card__service img{
    width: 50px;
}

.card__service i{
    font-size: 24px;
    margin-top: 20px;
    cursor: pointer;
    
}

/*** PROYECTOS ***/
.p33{
    
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}




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

.card__father22{
    margin: 20px;
    perspective: 1000px;
}

.card__father22:hover .card22{
    transform: rotateY(180deg);
}


.card22{
    width: 350px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 600ms;
}

.card__front22{
    background-size: cover;
    background-position: center;
}


.card__front22,
.card__back22{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.card__back22{
    transform: rotateY(180deg);
    background: linear-gradient(to right, #930e4c, #e30513);
}

.body__card_front22{
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateZ(60px);
}

.bg22{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.body__card_back22{
    padding: 40px;
    text-align: center;
    transform: translateZ(60px);
    color: #fff;
}

.body__card_back22 p{
    margin-top: 30px;
    font-size: 18px;
}

.body__card_back22 input{
    padding: 10px 40px;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: white;
    background: #58B0F6;
    box-shadow: 1px 1px 30px -5px #58B0F6;
    border-radius: 10px;
    transition: box-shadow 600ms;
}

.body__card_back22 input:hover{
    box-shadow: 1px 1px 30px 0px #449de6;
}






/****BOTON TITULOS****/


form{

    margin-top: 70px;
    padding: 50px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    width: 440px;
    background: linear-gradient(to right, #5f0b32, #e30513);
}

form h2 {
    color: #ffffff;
    font-size: 25px;
}

.form-txt {
    display: flex;
    justify-content: space-between;
}

.form-txt a {
    margin-top: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 25px;
}


.form-txt a:hover{
    color: #14F9A6;
}

.input-group {
  display: flex;
  flex-direction: column;
}

input , textarea {
    background: linear-gradient(to right, #b40d5b, #ff0617);
    padding: 20px 14px;
    margin-bottom: 25px;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    color: #ffffff;
}

::placeholder{
    color: #BFC9F3;
    font-size: 15px;
}

:focus {
    outline: 1px solid #ffffff;
}

.btn7 {
    background-color: #14F9A6;
    font-size: 17px;
    cursor: pointer;
}

.body22{
    min-height: 100hv;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1400px;
    margin-right: 250px;
}





/****FOOTER****/

.pie-pagina{
    width: 100%;
    background: linear-gradient(to right, #5f0b32, #e30513);
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:50px;
    padding: 45px 0px;
}
.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure img{
    width: 150px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background: linear-gradient(to right, #410923, #940710);
    text-align: center;
    transition: all 300ms ease;
    border-radius: 20%;
}
.pie-pagina .grupo-1 .red-social a:hover{
    background: linear-gradient(to right, #88154b, #e30513);
}
.pie-pagina .grupo-2{
    background: linear-gradient(to right, #410923, #940710);
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}

/*CONTACTAME*/

.form88 {
    width: 90%;
    max-width: 400px;
    margin: auto;
    border-radius: 1em;
    padding: 3.5;
}

.form_container88 {
    width: 100%;
    display: grid;
    gap: 1em;
    grid-auto-columns: 100%;
}
.form_input88--message {
    resize: none;
    
}



/**DONACIONES**/

.container__box07{
    max-width: 1100px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box07{
    width: 218px;
    height: 200px;
    background: #f3f3f3;
    margin: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
    border-radius: 10px;
}

.donar07:hover{
    transform: scale(1.1);
    background: linear-gradient(to right, #930e4c, #e30513);
    z-index: 1;
}


.box07 i{
    font-size: 60px;
    color: #ffffff;
    margin-top: 20px;
}



.box07 h5{
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 14px;
    color: #f7f7f7;
}

.box07:hover h5{
    color: #fff;
    opacity: 0;
}

.box07 h4{
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    position: absolute;
    bottom: 50px;
    filter: blur(5px);
    opacity: 1;
}

.box07:hover h4{
    font-size: 14px;
    opacity: 1;
    filter: blur(0px);
    color: #fff;
    transition: all 600ms ease;
}

.donar07{
    
    padding: 10px 30px;
    border: none;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 10px;
    background: linear-gradient(to right, #930e4c, #e30513);
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #f54d4d;
    transition: all 300ms;  
    text-decoration: none;
}

.paypal07{
    width: 100px;
}


/*** EMPRESAS Y ENTIDADES ***/
.container__box077{
    max-width: 1100px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box077{
    width: 218px;
    height: 200px;
   
    margin: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
    border-radius: 10px;
}


.empresaslogos{
    width: 150px;
}



@media (max-width:450px) {
    .form88{
        padding: 3.5em 1em;
    }
}

@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
}




/*** RESPONSIVE ***/

@media screen and (max-width: 1700px){

    .container__cover{
        background-position: 50%;
    }

}

@media screen and (max-width:1200px){

    header{
        padding: 40px;
    }

    .container__cover{
        background-position: -100px;
    }

    .container__cover .svg img{
        width: 500px;
    }

}

@media screen and (max-width: 1020px){

    

    .container__cover .svg img{
        display: none;
    }

    .container__cover .text{
        max-width: 600px;
    }
    
}

@media screen and (max-width: 915px){

    .menu nav{
        position: fixed;
        top: 0;
        right: -250px;
        background: white;
        width: 250px;
        height: 100vh;
        padding: 40px;
        z-index: 1;
        transition: all 300ms;
    }

    .menu ul{
        flex-direction: column;
        margin-top: 40px;
    }

    .menu ul li{
        margin-top: 30px;
        margin-left: 0;
    }

    .menu ul li a{
        color: #000000;
    }

    #selected{
        background: none;
        padding: 0px;
        border-radius: none;
        color: #F6615D;
    }

    .menu nav img{
        display: block;
        width: 60px;
    }

    #back_menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        display: none;
    }

    .menu #btn_menu{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        font-size: 24px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 300ms;
    }

    .menu #btn_menu:hover{
        background: rgba(255, 255, 255, 0.2);
    }

    .image__about3{
        
        display: none;
    }
    
    .solo{
        
        display: none;
    }



    
}




@media (max-width: 1024px){

    

    .banner__text h2{
        font-size: 22px;
    }

    #icon_heart{
        left: -60px;
    }

    .banner__icon-fire{
        right: -20px;
    }
}

@media (max-width: 920px){
    
    .banner{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    #icon_fire{
        display: none;
    }

    #icon_heart{
        left: 0;
    }

    .banner__text{
        width: 100%;
        margin-top: -100px;
    }

    
}

@media(max-width:991px) {

.body2{
    padding: 30px;
}


form {
    width: 100;
}

}





