@media screen and (min-width: 1080px) {
	

    /***** Hide mobile version *****/
    #footerMobile {
        display: none;
    }

    /***** Structure *****/
    #footer {
        width: 100%;
        height: auto;
        z-index: 999;
    }
    #footer {
        padding: 80px 0 40px 0;
    }
    #footer {
        background-color: var(--primary);
    }
    #footerMain {
        display: grid;
        grid-template-columns: 320px 200px 200px 200px;
        align-items: start;
        justify-content: center;
        gap: 50px;
    }
    #footerMain h4 {
        padding: 0 8px;
        border-left: 3px solid var(--secondary);
    }
    #footerMain h4 {
        font-family: 'menu-font';
        font-size: 13px;
        text-transform: uppercase;
        color: #fff;
    }
    #footerColumnOne {
        height: 100ù;
    }
    #footerColumnOne {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    /***** Separator *****/
    #footer hr {
        margin: 40px 30%;
        opacity: 0.3;
    }

    /***** Logo *****/
    #footerLogo {
        width: auto;
        height: 65px;
    }

    /*****  Slogans *****/
    #footerColumnOne p {
        font-family: 'bahnschrift';
        font-size: 14px;
        font-weight: 100;
        text-align: center;
        line-height: 22px;
        color: #fff;
    }

    /***** Copyright *****/
    #footerCopyright {
        display: block;
        margin: 0;
    }
    #footerCopyright p, #footerCopyright a {
        position: relative;
    }
    #footerCopyright p, #footerCopyright a {
        font-family: 'menu-font';
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }
    	
        
}