/* Footer */

.footer {
    background: #E7E7E7;
    padding: 50px 0 50px;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 120px;
}

.footer__title {
    font-weight: 900;
    font-size: 14px;
    line-height: 142.7%;
    color: #000000;
    margin-bottom: 15px;
}

.footer__item {
    display: flex;
    align-items: center;
}

.footer__item+.footer__item {
    margin-top: 10px;
}

.footer__text {
    margin-left: 10px;
    font-size: 15px;
    line-height: 142.7%;
    color: #000000;
}

.whats_app_button{
    display: none;
}
/* Media Query */

@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .whats_app_button{
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        height: 100px;
        width: 100%;
        background: green;
        color: #ffffdd;
        cursor: pointer;
        position: fixed;
        bottom: 0;
        font-size: 22px;
    }
    .whats_app_button img{
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }
    .whats_app_button div{
        width: 50px;
        height: 50px;
        background-position: center;
        background-size: cover;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 22px 0 100px;
    }
    .footer__col.logo {
        display: none;
    }
    .footer__inner {
        gap: 26px;
    }

}