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

	
    /* Bloc */
    .subMenu {
        position: fixed;
        width: 100%;
    }
    .subMenu {
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
    }
    .subMenu {
        background: #50378D;
        background: var(--gradient);
        box-shadow: 0 0 10px #00000050;
    }

    /* 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 {
        padding-top: 20px;
    }
    .subMenuInner a {
        font-family: 'content-font';
        font-size: 16px;
        line-height: 50px;
        letter-spacing: 0;
        color: #fff;
    }
    #menuButtonCatalog {
        background-color: var(--secondary);
        padding: 10px 50px;
        border-radius: 50px;
    }

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