.footer {
    width: 100%;
    padding: 0px 20px;
    max-width: 1380px;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
}
.footer .links {
    display: flex;
    gap: 46px;
    padding: 20px 0px;
    justify-content: center;
    border-top: 1px solid #1C2333;
    flex-wrap: wrap;
    display: none;
}
.footer .links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: all 300ms;
}

.footer .links a:hover {
    color: rgba(255, 255, 255, 0.7);
    transition: all 300ms;
}

.footer .body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1C2333;
    padding: 30px 0px;
    height: max-content;
    display: none;
}

.footer .body .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}
.footer .body .left .images {
    display: flex;
    gap: 20px;
}
.footer .body .left .images a {
    display: block;
}
.footer .body .left .images a img {
    width: 98px;
    height: 43px;
    transform: scale(1);
    transition: all 300ms;
}

.footer .body .left .images a:hover img {
    transform: scale(1.03);
    transition: all 300ms;
}

.footer .body .left .information-button {
    display: flex !important;
}

.footer .body .right {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer .body .right .block {
    height: 138px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .body .right .block .app {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0px 20px;
    height: 64px;
    align-items: center;
    cursor: pointer;
    transition: all 300ms;
}
.footer .body .right .block .app:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 300ms;
}
.footer .body .right .block .app.app-big {
    height: 98px;
    flex-direction: column;
    padding: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer .body .right .block .app svg {}
.footer .body .right .block .app .details {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}
.footer .body .right .block .app .details span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
}

.footer .copyright {
    color: #69707F;
    padding-top: 20px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #1C2333;
    border-top: 1px solid #1C2333;
}

.footer .business {
    border-radius: 24px;
    border: 1px solid #1C2333;
    background: #151A26;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer .business .left {
    color: #69707F;
    font-family: Lufga;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    display: flex;
}
.footer .business .right {
    display: flex;
    gap: 10px;
}
.footer .business .right .more {
    border-radius: 14px;
    background: #1B2030;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1150px) {
    .footer .business {
        flex-direction: column;
    }

    .footer .business .right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer .body {
        flex-direction: column;
        gap: 20px;
    }

    .footer .body .left {
        gap: 20px;
    }

    .footer .body .left .information-button {
        width: 100%;
    }

    .footer .body .left .information-button .details {
        width: calc(100% - 100px);
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .footer .body .right, .footer .body .left {
        width: 100%;
    }

    .footer .body .right .block {
        width: 100%;
    }

    .footer .body .left .images {
        justify-content: space-between;
    }
}