/*  LAYOUT: FIXED FOOTER 
//////////////////////////////////////////////////////////////////////////////*/
@layer layout {
    @media (min-width: 1220px) {
        .section--main {
            margin-bottom: 18rem;
        }
        .section--footer {
            position: fixed;
            height: 100vh;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -1;
            place-content: end;
        }
    }
}
