@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:#dad8d7;
}
*{
    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;
}
hr {
    border: 0; /* Elimina el borde predeterminado */
    height: 1px; /* Establece la altura de la línea */
    background-color: #000000; /* Establece el color de la línea */
    margin: 1em 0; /* Añade espacio alrededor de la línea */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%; /* Puedes ajustar el ancho según tus necesidades */
}
.header_1{
    
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5em 7%;
    border-bottom:var(--border) ;
    position: absolute;
    top: 0; left: 0;right: 0;
    z-index: 1000;

} 
#banner{
    
    background: linear-gradient(to top,rgba(0,0,0,0.7)50%,rgba(0,0,0,0.5)50%);
   
    background-position: center;
    background-size: cover;
    height: 110vh;
    width:100%;
    transition: background 1s ease-in-out;
    filter: brightness(85%);
    
}


.header_1{
    background-color: rgba(0, 0, 0, 0.3);
}
.header_1 .logo {
    height: 8rem;
}

.header_1 .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}
.header_1 .icons div:hover{
    color:var(--green);
}

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

    margin:0 1rem;
    font-size: 1.6rem;
    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;
}

/*#############################*/

.content{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.content h1{
    font-size: 100px;
    margin-top: 70px;
}
.content p{
    margin: 20px auto;
    font-size: 20px;
    font-weight: 350;
    line-height: 25px;
}

button{
    width: 250px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

span{
    background: #009688 ;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span{
    width: 100%;
}
button:hover{
    border: none;
}

/*#############################--------------------------------------CONTENIDO-INICIO*/
.main{
    
    width: 100%;
    height: 180vh;
    background: url(../images/fondo_6.jpg);
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
}
#conocenos{
    width: 100%;
    height: 150vh;

    display: grid;
    grid-template-columns: repeat(2,35vw);
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: absolute;
    
    
}
/*##############-----------------------------------#*/
.cont_parrafo{
    background-color: var(--hueso);
    width: 35vw;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.cont_parrafo p{
    text-align: center;
    
    font-size: 1.6rem;
    font-weight: bold;
    margin: 30px;
    text-transform: lowercase;
}
.cont_parrafo p::first-letter {
    text-transform: uppercase;
}
.cont_parrafo h2{
    font-size: 5rem;
    margin-top: 50px;
}
/*##############-----------------------------------#*/

.img_hist{
    width: 35vw;

}

/*##############-----------------------------------#*/
.contact_box{
    background-color: #8b8b8b;
    width: 100%;
    height: 40vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.contact_box h2{
    color: #fff;
    font-size: 3.5rem;
}

.contact_content{
    background-color: #ff0000;
    display: grid;
    grid-template-columns: repeat(2,300px);
    
    grid-column-gap: 20px;
    width: 100%;
    justify-content: center;

}

.contact_column{
    background-color: #358500;
    align-items: center;
    justify-content: center;
}

/*#############################------------------*/
/*//////////////////////////////////////////////////////////////////////*/
.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;
  }
/*///////////////////////////////////////////*/
@media(max-width:1199px){
    html{
        font-size: 60%;
    }
}

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

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

}