.footer{
    background-color: var(--mainRed);
}

.footerLogo{
    width: 6rem;
}

.footerLogo img{
    width: 100%;
}

.footerLeft{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footerLeftTitle{
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.brandLogo{
    display: block;
    width: 7rem;
    margin-bottom: 0.15rem;
}

/*<----- MOBILE -------> */

@media (max-width: 768px){

.footerContainer{
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.footerContent{
    margin-top: 1rem;
    color: var(--patternWhite);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerRight{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerContact{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brandHolder{
    width: 100%;
}

.brand{
    width: 100%;
    margin: 1rem auto 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    color: var(--patternWhite);
    padding: 0.5rem;
}

.brandText{
    font-size: clamp(0.8rem, 3dvw, 1rem);
}

.brandLogo{
    width: 23dvw;
    max-width: 7rem;
    margin-left: 0.2rem;
}

.brandLogo img{
    width: 100%;
}
}

/*<---------------- Desktop ----------> */

@media (min-width: 769px) {

.footerContainer{
    padding: 1rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.footerContent{
    margin-top: 2rem;
    color: var(--patternWhite);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 15%;
}

.footerContact{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.footerContact p:first-child{
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
}

.brand{
    width: 100%;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    color: var(--patternWhite);
    padding: 0.5rem;
}
}