footer{
    background-color: #424242;
}
.footer__inner{
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0;
}
.footer__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
}
.footer__logo{
    filter: brightness(0) invert(1);
    width: 25%;
    max-width: 354px;
    cursor: pointer;
}
.footer__mid{
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    gap: 15px;
    flex: 1;
}
.mid__text{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.text__title{
    color: #01F7FE;
}
.mid__copyright{
    width: 100%;
    color: #808080;
}
.footer__mid .end__wrapper{
    display: none;
}
.end__wrapper{
    display: flex;
    align-items: center;
    gap: 15px;
}
.end__wrapper .button{
    font-size: 22px;
    color: #fff;
    background-color: #696969;
    padding: 8px 10px;
    cursor: pointer;
}

@media screen and (max-width: 1250px) {
    .mid__text{
        font-size: 15px;
    }
    .end__wrapper .button{
        font-size: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .footer__inner{
        padding: 25px 0;
    }
    .footer__wrapper{
        flex-direction: column;
        gap: 25px;
    }
    .footer__logo{
        width: 30%;
        min-width:200px;
    }
    .footer__mid{
        width: 100%;
        flex-direction: column;
    }
    .mid__text{
        justify-content: center;
    }
    .footer__mid .end__wrapper{
        display: flex;
        justify-content: center;
    }
    .footer__end{
        display: none;
    }
    .mid__copyright{
        text-align: center;
    }
}

@media screen and (max-width: 620px){
    .mid__text{
        font-size: 2.8vw;
    }
    .mid__copyright{
        font-size: 13px;
    }
    .footer__mid .end__wrapper .button{
        font-size: 2.6vw;
    }
}