.footer {
    width: 100%;
    height: 80px;
    padding: 0 2.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    font-family: "Barlow", sans-serif;
    color: #fff;
}
.footerBtn{
    display: none;
}
@media screen and (max-width: 600px) {
    .footer {
        font-size: 16px;
    }
}
@media screen and (max-width: 500px) {
    .footer {
        margin-bottom: 50px;
    }
    .footerBtn {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 50px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: "Barlow", sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        text-align: center;
        background: #251379;
        z-index: 999;
        box-shadow:
            rgba(17, 17, 26, 0.1) 0px 4px 16px,
            rgba(17, 17, 26, 0.1) 0px 8px 24px,
            rgba(17, 17, 26, 0.1) 0px 16px 56px;
    }
}
