@media (max-width: 899px) {
    /* HEADER */
    /* .header-wrapper */
    .menu-icon {
        display: grid;
    }

    .bg-menu {
        width: 0;
        height: 100vh;
        position: absolute;
        top: var(--hw-height);
        right: 0;
        background-color: #0000006a;
        opacity: 0;
        transition-property: width, opacity;
        transition-duration: .2s;
        transition-timing-function: ease-in-out;
        z-index: 2;
    }

    #menu-toggle:checked ~ .bg-menu {
        width: 100%;
        opacity: 1;
    }

    #menu-toggle:checked ~ .menu-icon span {
        background-color: #31955b;
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        width: 0;
    }

    #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    #menu-toggle:checked ~ .menu-container {
        left: 0;
        z-index: 3;
    }

    .menu-container  {
        width: 360px;
        height: 100vh;
        position: absolute;
        top: var(--hw-height);
        left: -100%;
        background-color: #ffffff;
        transition: left .3s ease-in-out;
        z-index: 2;
        overflow-y: scroll;
    }

    .header-scroller {
        position: fixed !important;
        top: 0 !important;
    }

    .menu-container ul {
        --ul-line-height: 70px;
        /* --- */
        flex-direction: column;
        gap: 0;

        & li a {
            padding-left: var(--page-sides);
        }
    }

    .menu-container ul li:nth-child(3) .submenu {
        width: 100%;
        position: initial;
    }

    .header-wrapper .social-list {
        display: none;
    }

    .brand {
        width: 130px;
        height: 32px;

        & img {
            width: 100%;
            height: 100%;
        }
    }

    /* END-HEADER */

    /* FOOTER */
    /* .footer-wrapper */
    .footer-container .footer-section {
        grid-template-columns: 1fr;

        & > * {
            margin: 0 auto;
        }

        & > img{
            margin-left: 190px;
        }
    }

    .footer-container .footer-section div {
        width: 300px;

        & h3 {
            text-align: center;
        }
    }
    
    .footer-sociales ul {
        justify-content: center;
    }
    /* END-FOOTER */
}
@media (max-width:769px){
    .container-informacion{
        gap:30px;
    }
    
}

@media (max-width:431px){
    .container-informacion {
        gap: 20px;

        & > a {
            --gb-height: 22px;
            /* --- */
            width: 60px;
            font-size: 7px;
        }
    }
    .li-buscar{
        width:315px !important;
    }
    
    .footer-container .footer-section {
        grid-template-columns: 1fr;

        & > * {
            margin: 0 auto;
        }

        & > img{
            margin-left: 25px;
        }
    }

    .container-informacion-slider{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--page-sides);
    background-color: #195043;
    gap:0px;

     & > a {
        width: 90px;
        margin-right: -70px;
        margin-left: 15px;
        font-size: 9px;
    }
    }

    .grupo-informacion-slider{
      display: flex;
      gap:14px;
      margin-left: -76px;
    }

    .grupo-informacion-slider .informacion-slider{
    display: flex;
    align-items: center;
    gap: 6px;


    & img {
        width: 17px !important;
        height: 17px !important;
    }

    & h3, a {
        color: #ffffff;
        font-weight: bold;
        text-align: center;
        font-size: 7px;
    }

    

    }
}


@media (max-width:398px){

    .footer-container .footer-section {
        grid-template-columns: 1fr;

        & > * {
            margin: 0 auto;
        }

        & > img{
            margin-left: -5px;
        }
    }

}