@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
    --border: .1rem solid rgba(255,255,255,.3);
    --bg:#010103;
    --black:#13131a;
    --green:#358500;
    --hueso:#f8f8f8;

    --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 30px;
  --width-container: 1200px;
}
*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline:none; border:none;
    text-transform: capitalize;
    transition: .2s linear;
}
html{
    font-size: 75%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: .8rem;
}
html::-webkit-scrollbar-track{
    background: #3f3f3f;
}
html::-webkit-scrollbar-thumb{
    background: #3f3f3f;
    border-radius:5rem;
}
/*///////////////////////*/
.header_1{
    
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5em 7%;
    border-bottom:var(--border) ;
    top: 0; left: 0;right: 0;

    background: linear-gradient(to top,rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%);
    background-position: center;
    background-size: cover;

} 
.header_1 .logo {
    height: 7rem;
}




.header_1 .navbar a{
    
    text-decoration: none;
    text-transform: uppercase;

    margin:0 1rem;
    font-size: 1.4rem;
    color:#fff;
}
.header_1 .navbar a:hover{
    color:var(--green);
    border-bottom: .1rem solid var(--green) ;
    padding-bottom: .5rem;
}
/*////////////////////////////////////////////////////////////// lista_act////////*/
.navbar{
    display: flex;
    flex-direction: row;
}
ul{
    list-style: none;
}
.navbar > li{
    float: left;
}
.navbar ul li ul li a{
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    padding: 10px 12px;
    display: block;
}
.navbar li ul{
    display: none;
    position: absolute;
}
.navbar li:hover > ul{
    display: block;
}
.navbar li ul li{
    position: relative;
}
.navbar li ul li ul{
    left: 100%;
    top: 0;
    list-style:none;
}
.navbar li ul li:hover > ul {
    left: 80%;
    top: 0;
    list-style: none;
}
/*//////////////////////////////////////////////////////////////*/
body{
    background: url(../images/choclo.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;
}
.lista_prod{
    display: flex;
    flex-direction: column;
    font-weight: 100vw;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/*//////////////////////////////////////////////////////////////////////*/
.footer-07{
    position: relative;
    background-color: rgb(12, 27, 0);
    width: 100%;
    margin: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    padding-left: 10%;
    padding-right: 10%;
  }
  .footer_heading{
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: 450;
    text-transform: uppercase;
    margin: 1rem;
  }
  .telefono a, .correo a{
    color: white;
    font-size: 15px;
    margin: 0.5rem;
    text-transform: lowercase;
    text-decoration: none;
  }
  .telefono i, .correo i{
    color: white;
    font-size: 25px;
    margin: 0.5rem;
    text-transform: lowercase;
  }
  
  .social_buttons a{ text-decoration: none; }
  .social_buttons a i{
    color: white;
    font-size: 1.9rem;
    margin: 0.5rem;
    margin-top: 0.9rem;
  }
/*///////////////////////////////////////////*/

.contact_advisor{
    width: 70%;
    height: 80%;
    background-color:#F0EDE7;
    display: flex;
    flex-direction: row;
    gap:10%;
    
    justify-content: center;
    border-radius: 80px;
}

.panel{
    
    width: 40%;
    
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color:#F0EDE7;
    margin-top: 30px;
    margin-bottom: 10px;
}
.panel div img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.redes{
    width: 80%;
    background-color: #F0EDE7;

    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;

    
}
.redes a img{
    width: 65%;
    height: auto;
    object-fit: cover;
}
.redes a:hover{
    transform: scale(1.1) translateZ(0);
    transition: 
      filter 200ms linear,
      transform 200ms linear;
    
}

@media(max-width:1199px){
    html{
        font-size: 60%;
    }

    .header_1{
        padding: 1.5rem 2rem;
    }
}

@media(max-width:991px){
    html{
        font-size: 50%;
    }

    .header_1{
        padding: 1.5rem 2rem;
    }
}

@media(max-width:490px){
    html{
        font-size: 25%;
    }

    .header_1{
        padding: 1.5rem 2rem;
    } 
}