html, body {
    padding:0;
    margin:0;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
header.container-image {
   width: 100%;
   height: 100vh;
   position: relative;
   display: grid;
   grid-template-rows: 100px 1fr;
}
header.container-image::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url('assets/img/computer.webp'); 
   background-size: cover;
   clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
   z-index: -1;
}
.logo-title {
    font-size: 24px;
    color: white;
    margin-left: 20px;
}
.roboto-slab.logo-title {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 455;
  font-style: normal;
}
nav.nav-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
/*hamburguesa*/
.list_icon{
    color: #f1f1f1;
    padding: 20px;
    cursor: pointer;
    display: none;
}
.menu_hamburguesa {
    display: none;
}
nav.nav-container ul{
   padding: 0;
   margin: 0;
}
.nav-container ul li {
    display: inline-block;
    list-style-type: none;
    color:white;
    margin-right: 20px;
   
}
ul li a {
    text-decoration: none; /* Elimina el subrayado de los enlaces */
    color: #fff; /* Color de texto de los enlaces */
    font-weight: bold;
    font-size: 20px; 
}
.nav-items.rubik {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
}
section.first-title-container { 
    max-width: 800px;
    display: grid;
    align-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /*gap: 1em;*/
    padding-bottom: 200px;
}
h1.style-title-one {
    font-size: 3rem;
    font-weight: bold;
    color:white;
}
p.style-title-two {
    max-width: 600px;
    font-size:22px;
    color:white;
    top:auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); 
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    border-radius: 10px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 10px;
}

/* Mostrar el contenido del dropdown al pasar el ratón */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #575757;
}
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.container-buttons {  
    max-width: 754px;
    margin:20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.button-header.rubik {
    margin: 20px;
    background-color: linear-gradient(#00c200, #029302);
    color: black;
    border-radius: 30px;
    font-family: 'rubik', sans-serif;
    font-size: 16px;
    padding: 20px;
    box-shadow: 2px 4px 4px solid;
}
.button-header.rubik:hover {
    margin: 20px;
    background-color: linear-gradient(#00c200, #029302);
    color: black;
    border-radius: 10px;
    font-family: 'rubik', sans-serif;
    font-size: 16px;
    padding: 20px;
    box-shadow: 2px 4px 4px solid;
    transition: all 0.3s;
}
.style-button {
    text-decoration: none;
    color: black;
}




.container-mouse {
    position: relative;
    color: white;
    animation-name: mov-mouse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
a.a-mouse-style {
    text-decoration: none;
    list-style-type: none;
    color: white;
}


@keyframes mov-mouse {
    0% {
        top: 100px;
    }
    100% {
        top: 200px;
    }
}


.title-nosotros {
    font-size: 3em;
    color: black;
    margin-left: auto;
    margin-right: auto;
   
    text-align: center;

}
.texto-nosotros.noto-sans {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    max-width:800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    justify-content: center;
  }



/*@media query*/

@media only screen and (max-width: 992px) {

    .list_icon{
        display: flex;
    }

    nav.nav-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    ul.ul_links {
        opacity: 0.9;
        background-color: black;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
        width: 100%;
        margin: 20px;
        position: absolute;
        top:100px;
        height: 0 /*calc(100vh - 100px)*/;
        overflow: hidden;
        /*display: none;*/
        transition: all .3s;
    }
    li.li_links {
        margin: 20px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
       
    }
    a.a-links{
        font-size: 3rem;
    }
    .label-hamburguesa{
        margin-top: -30px;

    }
    .menu_hamburguesa:checked + .ul_links {
        height: calc(100vh - 100px);  
    }
    h1.style-title-one {
        font-size: 2rem;
    }
    p.style-title-two{
        max-width: 90%;
    }
    .texto-nosotros.noto-sans{
        max-width: 90%;

    }
    .texto-nosotros.noto-sans p {
      font-size: 20px;  

    }
    
    .container-mouse {
        display: none;

    }


}