@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.container__all{
    position: relative;
    right: 0;
    transition: all 300ms;
}

header{
    width: 100%;
    height: 100px;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 300ms;
}


.container__header{
  
    height: 100%;  
    display: flex;
    justify-content: space-between; 
    margin: auto;
    padding: 0px 20px;
    background-color: #FFFFFF;
}

header .logo{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 100px;
}

.container__nav{
    position: relative;
    top: 25px;
    height: 100%;
  
}

nav{
    height: 100%;
text-decoration: none;
    
}


nav .grid{
    margin: 0px 20px;
    list-style: none;
    
    height: 100%;
    display: flex;
    justify-content: center;
    
}

.grid {
    color: #373737;
    font-size: 14px;
    list-style: none;
    width: 25px;
    padding: 25px;
   
   
}
.select {
    padding: 10px 30px ;
    color: #373737;
    border-radius: 50px;
  
}
.select a{
    color: #373737;
 text-decoration: none;
 
}
.select:hover a{
    background: #FEBA0B;
    border-radius: 75px;
    color: aliceblue;
    padding: 20px;
}

.nav_mod{
    height: 70px;
    box-shadow: 1px 1px 10px 0px #00000010;
    background: white;
}


.btn__menu{

    font-size: 20px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 300ms;
    color: #373737;
}

.btn__menu:hover{
    background: #FEBA0B
}



/*Presentacion*/

.cover{
    width: 100%;
    padding-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    margin-top: 100px;
}

.container__cover{
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: bottom;
}

.cover .container__info{
    max-width: 400px;
    margin-top: 40px;
    z-index: 2;
}

.cover h1{
    max-width: 400px;
    font-size: 60px;
    font-weight: 900;
    color: #373737;
}

.cover h2{
    font-size: 60px;
    font-weight: 900;
    color: #FEBA0B;
    margin-top: -30px;
}

.cover p{
    margin-top: 10px;
    color: #373737;
}

.cover a{
    padding: 10px 40px;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    color: white;
    background: #FEBA0B;
    border-radius: 20px;
    box-shadow: 1px 1px 30px -5px #20202049;
    cursor: pointer;
    transition: box-shadow 500ms;
    text-decoration: none;
}

.cover a:hover{
    box-shadow: 1px 1px 30px -5px #20202085;
    color: #373737;
}

/*CARDS*/
.productos{
    display:flex;
    justify-content: center;
    
    

}
.productos .card{
 justify-content: center;
    
 
    
}

/*FOOTER*/

footer{
   
    padding: 50px 0px;
    font-family: 'Nunito', sans-serif;
    
    background-size: cover;

}

.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding-top: 100px;
    background-color: #FFFFFF;
}

.info_footer{
    display: flex;
    flex-direction: column;
    padding: 40px;
}


.info_footer .logo img{
    width: 180px;
}

.info_footer .terminos{
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 18px;

}

.info_footer h2{
    margin-bottom: 30px;
    color: #242424;
    font-weight: 700;
}

.info_footer a{
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
}

.info_footer a:hover{
    opacity: 0.8;
}

.info_footer a .fab{
    font-size: 20px;
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}