footer{
    background: var(--grey);
    padding: 2rem ;
}
.footer__title{
    font-size: 3rem;
    color: white;
    font-family: var(--ff-titles);
    margin-bottom: 2rem;
    text-align: center;
}
.footer__container{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    gap: 2rem;
}
.footer__form{
    flex: 1 1 0px;
    background: var(--orange);
    padding: 1rem;
    max-width: 450px;
    min-width: 350px;
}
.main__form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form__inputs label{
    font-family: var(--ff-titles);
    color: initial;
    font-size: 1.2rem;
}
.form__inputs input{
    width: 100%;
    padding: 0.5rem;
    border:none;
    outline: none;
}
.form__inputs button{
    border: none;
    background: var(--red);
    padding: 0.5rem 2rem;
    color: white;
    font-family: var(--ff-titles);
    font-size: 1.5rem;
    display: block;
    margin: 0 auto;
}
.form__inputs textarea{
    resize: none;
    width: 100%;
    border: none;
    outline: none;
}
.footer__logo{
    flex: 1 1 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__logo img{
    width: 200px;
    object-fit: contain;
}
.footer__info{
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;    
}
.footer__info h3{
    font-family: var(--ff-titles);
    font-size: 2rem;
    text-align: right;
}
.footer__info a{
    font-size: 1.5rem;
    color: var(--orange);
}
.footer__info a:hover{
    color: var(--red);
}
.footer__social{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer__social a i{
    font-size: 1.8rem;
}

/*************MEDIAQUERIES**************/

@media (max-width: 1483px) { }
@media (max-width: 1280px) { }
@media (max-width: 1150px) { }

@media (max-width: 950px) {/*2 REM padding*/
    .footer__container{
        flex-direction: column;
        align-items: center;
    }
    
    .footer__info{
        align-items:center;
        flex-direction: row;
        gap: 2rem;
    }

    .footer__info h3{
        text-align: center;
    }

    .footer__social{
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer__info{
        flex-direction: column;
    }

 }

@media (max-width: 576px) { /*1 REM padding*/
    footer{
        background: var(--grey);
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) { }

@media (max-width: 455px) { 
    .footer__form{
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 350px) { }

/**************************************/