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

	
    /* Bloc */
    .subMenu {
        position: fixed;
        width: 100%;
    }
    .subMenu {
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
    }
    .subMenu {
        background: var(--primary);
    }

    /* Transition */
    .subMenu {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }
    .menuCheckbox:checked ~ .subMenu {
        visibility: visible;
        opacity: 1;
    }
    .menuCheckbox:checked ~ .subMenu {
        height: 450px;
    }
    .menuCheckbox:checked ~ .subMenu {
        transition: all .3s ease-in-out;
    }

    /* Inner */
    .subMenuInner {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .subMenuInner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .subMenuInner a {
        font-family: 'content-font';
        font-size: 16px;
        line-height: 50px;
        color: #fff;
    }

    /* Image */
    .subMenu img {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
        
        
}