* {
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #222020;
}

body, div, ul, nav, header, footer, a, li, label {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: auto;
}

/* ----HEADER SECTION----*/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
}

.header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    container-type: inline-size;
    container-name: header;
    border-radius:0 0 40px 40px;
    /*box-shadow:0 0 25px 0 #0007;*/
}

.header__open-nav-button {
    color: #087ab1;
    font-size: 2.1rem;
    font-weight: 600;
    position: absolute;
    right: 40px;
}

.header__checkbox {
    display: none;
}

.header__nav {
    display: none;
    background-color: #fff;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 999;
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    height: 40vh;
    margin: auto;
    justify-content: space-evenly;
}

.header__checkbox:checked ~ .header__nav {
    display: flex;
    
}

.header__logo {
    max-width: 100%;
    width: 50%;
    margin: 15px 40px;
}

.header__nav-item {
    list-style: none;
}

.header__nav-item a {
    color: #5a5858;
    text-decoration: none;
    margin: 10px;
}

.header__nav-item :is(:hover, :active) {
    color: #087ab1;
    font-weight: Bold;

}

/* ----HEADER QUERIES----*/

@container header (min-width: 600px) {
    .header__nav {
        display: block;background-color: #ffffff00;
        position: static;
        height: auto;
        width: auto;
        z-index: auto;
        justify-content: space-between;
    }

    .header__nav-list {
        flex-direction: row;
        height: auto;
        width: auto;
        gap: 30px;
        margin-right: 40px;
    }
    .header__open-nav-button {
        display: none;
    }

    .checkbox-inactivo {
        pointer-events: none;
    }
}
    

/* ----HEADER ENDS----*/

.pagina-estatica #header-sitio header {
    position: static;}

/*------footer------*/

.footer {
    width: 100%;
    height: 100%;
    background-color: #000207;
    color: #fff;
    
}

.footer .footer-contenedor-1 {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0;
}

.footer .footer-contenedor-1 figure {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-contenedor-1 .fila h3 {
    margin-bottom: 25px;
    font-size: 15px;
}

.footer .footer-contenedor-1 .fila p {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer .footer-contenedor-1 .fila .Redes-sociales a {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    margin-right: 15px;
    background-color: #000916;
    text-align: center;
    transition: all 300ms ease;
}

.footer .footer-contenedor-1 .fila .Redes-sociales a:hover {
    background-color: #087ab1;
}

@media screen and (max-width: 800px) {
    .footer .footer-contenedor-1 {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px 2.5rem;
}}

.footer .footer-contenedor-2 {
    background-color: #000000;
    padding: 10px 5px;
    text-align: center;
}

.footer .footer-contenedor-2 small {
    font-size: 10px;
}

/*------footer-end------*/