@media screen and (max-width: 1080px) {

	
    /***** Hide mobile version *****/
    #footer {
        display: none;
    }

    /***** Structure *****/
    #footerMobile {
        width: auto;
        height: auto;
    }
    #footerMobile {
        padding: 30px 20px;
    }
    #footerMobile {
        background-color: var(--primary);
    }

    /***** Separators *****/
    .footerSeparator {
        margin: 40px 0;
        border: 1px solid var(--secondary);
    }
    #footerSeparatorOne {
        width: 20%;
    }
    #footerSeparatorTwo {
        width: 40%;
    }
    #footerSeparatorThree {
        width: 60%;
    }

    /***** Titles *****/
    #footerMobile h4 {
        margin: 10px 0;
    }
    #footerMobile h4 {
        font-family: 'title-font';
        font-size: 14px;
        font-weight: 400;
        text-align: left;
        color: #fff;
    }

    /***** Branding *****/
    #footerMobileBranding {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    #footerMobileBranding img {
        width: 60%;
        height: auto;
    }
    #footerMobileBranding h5, #footerMobileBranding p {
        text-align: left;
        color: #fff;
    }
    #footerMobileBranding h5 {
        font-family: 'title-font';
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
    }
    #footerMobileBranding p {
        max-width: 70%;
    }
    #footerMobileBranding p {
        font-family: 'footer-font';
        font-size: 13px;
        text-align: center;
        line-height: 22px;
    }

    /***** Copyright *****/
    #footerCopyright {
        margin: 50px 0;
    }
    #footerCopyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    #footerCopyright p, #footerCopyright a {
        font-family: 'menu-font';
        font-size: 13px;
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }
        
        
}