/*/SELECTORES GENERALES/*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
*::selection{
    color: white;
    background-color:#006241;
}
/*/*Mobile first 320px/*/

/*menu*/

.header{
    background-color: #006241;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 2px 8px 26px 0px rgba(0, 0, 0, 0.75);
    z-index: 100;
}
.header__imagen-logo{
    width: 3em;
    height: 3em;
    border-radius: 50%;
    
}
.header__navegacion, .bi-person-circle {
display: none;
}
.header__contenedor-mobile i{
    color: white;
    font-size: 25px;    
}
.main__logo-principal{
    display: none;
}
.main{
    padding: 15px 15px 60px;
    margin-top: 80px;

}
.main__titulo-principal{
    font-size: 50px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.main__titulo-principal span{
    color:#006241;
    font-family: 'Poppins', sans-serif;

}
.main__parrafo-principal{
    font-weight:300;
    margin-top: 25px;
    font-family: 'Poppins', sans-serif;
}
.main__contenedor-titulo-y-parrafo{
    display: flex;
    flex-direction: column; 
}
.galeria__principal{
    background-color: #006241;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
  
}
.section__img{
    width: 75%;
    margin-top: 15px;   
}

/*formulario*/

.contacto{
    background-color: rgb(8, 8, 8);
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contac__titulo{
   color: #006241;
   text-align: center;
   font-size: 30px;
   margin-bottom: 25px;
}
.contacto__form{
    background-color: #006241;
    padding: 15px;
    color:white;
    width: 265px;
}
.form__contac label{
    font-size: 14px;
}
.form__contac{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}
.form__contac input::placeholder,
.form__contac textarea::placeholder{
    font-size: 12px;
    color:#006241;
    font-weight: bolder;
}
.form__contac input,
.form__contac textarea{
    padding: 5px;
    border-radius: 7.5px;
    border: 0;
}
.form__contac input:focus,
.form__contac textarea:focus{
background-color: black;
}
.contac__buton{
    background: inherit;
    border: 1px solid white;
    color: white;
    width: 45%;
    border-radius: 7.5px;
    margin-top: 20px;
    padding: 4px 0;
    transition: all 1s;
}
.contac__buton:hover{
    background-color: yellow;
    border: 1px solid white;
}
/*galeria*/

.cards__cards1{
    background-color: #006241;
    margin-top: 15px;  
    color:white; 
    position: relative; 
}
.cards{
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
}
.cards__img{
    width: 100%;
}
.cards__titulo span{
    color: yellow;
}
.cards__contenedor-text{
    padding: 25px 20px;
}
.cards__parrafo{
    font-size: 14px;
    margin: 7.5px 0;
}
.cards__boton{
    background: inherit;
    border: 1px solid white;
    color: white;
    width: 40%;
    margin-left: 2px;
    border-radius: 7.5px;
    margin-top: 20px;
    padding: 4px 0;
    transition: all 1s;

}
.cards__boton:hover{
    background-color: yellow;
    border: 1px solid white;
}
.cards__circulo{
    color: black;
    width: 65px;
    height: 65px;
    background-color: yellow;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    right: -25px;
}
/*footer*/

.footer{
    background-color: black;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.footer__enlaces{
    color: #006241;
    text-decoration: none;
    font-size: 20px;
    margin-top: 5px;
}
.footer__redes-sociales i{
    color:#006241;
    font-size: 22px;
    margin-top: 5px;
}
.footer__contactos a{
    color: #12db0f;
    text-decoration: none;
    font-size: 20px;
    margin-top: 5px;
}
/*/*medida tablets 768px/*/

@media (min-width:768px){
    .header__contenedor-mobile{
        display: none;
    }
    .bi-person-circle{
        display: block;
        align-items: center;
        color: white;
        font-size: 42px;
    
    }
    .header__navegacion{
        display: block;
       
    }
    .header__navegacion a {
        font-size: 22px;
        color: white;
        text-decoration: none;
        margin-left: 15px;
        font-family: 'Poppins', sans-serif;
    
    }
    .main{
        display: flex;
        padding: 15px 30px 30px;
    
    }
    .main__logo-principal{
        display: block;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main__img-logo{
        width: 80%;
    }
    .main__contenedor-titulo-y-parrafo{
        width: 50%;
    }
    .galeria__principal{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .section__img{
        width: 30%;
        margin-top: 0px;   
    }
    .contacto__form{
        width: 450px;
    }
    .cards{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    
    }
    .cards__cards1{
      width: 40%;
    }
    .footer{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    }
/*desktop-pc 1024px*/
@media (min-width:1024px){
    .main__img-logo{
        width: 350px;
    }
    .main{
        display: flex;
        padding: 15px 65px 30px;
        align-items: anchor-center;
    
    }
    .main__titulo-principal{
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
    }
    .main__parrafo-principal{
       
        font-weight: bold;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        
    }
    .section__img{
        width: 280px;
        margin-top: 15px;   
    }
}









