@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;
}
/*Navbar*/
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%;

    
}


nav .grid{
    margin: 0px 20px;
    list-style: none;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    
}

.grid{
    color: #373737;
    font-size: 14px;
    list-style: none;
    width: 25px;
    padding: 25px;
    text-decoration: none;
   
}
.select a{
    color: #373737;
 text-decoration: none;
 
}
.select{
    padding: 10px 30px;
    color: #373737;
    border-radius: 50px;
    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
}



/*FOOTER*/


.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding-top: 100px;
    font-family: 'Nunito', sans-serif;
    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;
}


