@media only screen and (max-width: 1023px) {
    .hamburger {
        padding-top: 2px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
    }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #000;
    }
    .hamburger-box {
        width: 40px;
        height: 14px;
        display: inline-block;
        position: relative;
    }
    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -2px;
    }
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 40px;
        height: 4px;
        background-color: #000;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }
    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }
    .hamburger-inner::before {
        top: -10px;
    }
    .hamburger-inner::after {
        bottom: -10px;
    }
    .hamburger--squeeze .hamburger-inner {
        transition-duration: 0.075s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze .hamburger-inner::before {
        transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    }
    .hamburger--squeeze .hamburger-inner::after {
        transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze.is-active .hamburger-inner {
        transform: rotate(45deg);
        transition-delay: 0.12s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .hamburger--squeeze.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    }
    .hamburger--squeeze.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    /* Menu */
    header.is-active {
        position: fixed;
        height: 100vh;
        background-color: #fff;
    }

    header.is-active .menu {
        position: absolute;
        top: 100px;
        width: 100%;
        height: 100vh;
        left: 0;
        font-size: 1.75rem;
        padding-top: 100px;
        color: #9EC6F3;
        padding: 0 2rem;
    }
    header.is-active .menu__language {
        font-size: 1.2rem;
        margin-top: 30px;
    }
    header.is-active .menu {
        background-color: #fff;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
        line-height: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    #leafletMap {
        height: 400px;
    }

    #comite table {
        width: 100% !important;
    }    
    .container--section, .container--section-content {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .container--section-content table {
        margin-left: 0;
        margin-right: 0;
    }
    .members-list {
        max-height: 100%;;
    }

    .slideshow.slideshow--carousel img {
        width: 50vw;
    }
}