footer{
    background: #f2f2f2;
    width: 100%;
    margin-top: 4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px -13px 27px -5px, rgba(0, 0, 0, 0.3) 0px -8px 16px -8px;
    padding: 4rem 3rem;
}
.footer__container{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.footer__sides{
    flex: 1 1 0;
}
form label{
    font-family: var(--ff-titles);
    text-transform: uppercase;
    font-weight: var(--almarai700);
    margin-bottom: 0.3rem;
}
/***************************************/

.footer__leftSide-container{
    display: flex;
    flex-direction: column;
}
.footer__leftSide-container img{
    width: 250px;
    height: auto;
    margin-bottom: 1rem;
}
.footer__leftSide-container p{
    font-style: normal;
}
.footer__leftSide-social{
    display: flex;
    flex-direction: row;
    margin-top: 1.5rem;
    justify-content: space-between;
    align-items: center;
    width: 235px;
}
.footer__leftSide-social a{
    color: #6b6b6b;
}
.footer__leftSide-social a:nth-child(1):hover {
    color: #316FF6;
}
.footer__leftSide-social a:nth-child(2):hover {
    color: #d21cff;
}
.footer__leftSide-social a:nth-child(3):hover {
    color: var(--negro-prime);
}
.footer__leftSide-social a:nth-child(4):hover {
    color: #25D366;
}
.footer__leftSide-social a i{
    font-size: 1.3rem;
}


/***************************************/

.footer__centerSide{
    display: flex;
    flex-direction: column;
    
    
}
.lulu{
    margin: 0 auto;
}
.footer__centerSide-country{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1rem 0;
}
.country__flag{
    width: 35px;
}
.country__flag img{
    width: 100%;
    border-radius: var(--borders);
    display: block;
}
.country__info{
    display: flex;
    flex-direction: column;
    margin-left: 0.5rem;
    padding: 0.4rem 0 0.5rem 0.5rem;
}
.country__info a{
    color: var(--negro-prime);
    font-size: 0.9rem;
}
.country__info a i{
    color: var(--rojo-prime);
    width: 24px;
    text-align: center;
}
.footer__centerSide .footer__centerSide-country:nth-child(3) .country__info a:nth-child(2){
    margin-bottom: 0.4rem;
}
.country__info a:nth-child(1){
    margin-bottom: 0.4rem;
}

.country__info a:hover{
    color: var(--rojo-prime);
    text-decoration: underline;
}

/***************************************/
form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form__div{
    display: flex;
    flex-direction: column;
}
form input{
    background: white;
    height: 2.2rem;
    padding-left: 0.5rem;
    outline: none;
    border: 1px solid #bdbdbd;
    border-radius: var(--borders);
    width: 100%;
    min-width: 350px;
    max-width: 576px;
}
form select{
    background: white;
    height: 2.2rem;
    padding-left: 0.5rem;
    outline: none;
    border: 1px solid #bdbdbd;
    border-radius: var(--borders);
    color: #bdbdbd;
    font-style: italic;
    width: 100%;
    min-width: 350px;
    max-width: 576px;
}
option:not(:first-of-type) {
    color: var(--negro-prime);
    font-style: normal;
}
::placeholder {
    color: #bdbdbd;
    font-style: italic;
}
form textarea{
    padding: 0.5rem 0 0 0.5rem;
    outline: none;
    border: 1px solid #bdbdbd;
    resize: vertical;
    width: 100%;
    min-width: 350px;
    max-width: 576px;
    margin-top: 1rem;
}
.send__button{
    background: var(--rojo-prime);
    color: var(--snow-white);
}


@media (max-width: 1483px) {

}

@media (max-width: 1280px) {

}

@media (max-width: 1150px) {
    .footer__container{
        display: flex;
        flex-wrap: wrap;
    }

}

@media (max-width: 950px) {/*2 REM padding*/
    footer{
        padding: 4rem 2rem;
    }
  
}

@media (max-width: 768px) {

}

@media (max-width: 576px) { /*1 REM padding*/
    footer{
        padding: 4rem 1rem;
    }
    .footer__leftSide-social{
        width: 100%;
    }
    .footer__sides{
        flex: none;
        width: 100%;
    }

}

@media (max-width: 480px) {

}

@media (max-width: 455px) {

}

@media (max-width: 350px) {

}