.footer {
    background-color: #0F0520;
    color: var(--gray-light-color);
    padding: 64px 64px 0;
}

.footer .right .logo {
    display: block;
    margin-bottom: 5px;
}

.footer .right .logo img {
    width: 140px;
    height: auto;
}

.footer .right .text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer .socials {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer .store-icon img {
    max-width: 60%;
    margin-bottom: 10px;
}
.footer .socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s linear;
}

.footer .socials img:hover {
    transform: scale(1.1);
}

.footer .footer-grid {
    padding-bottom: 64px;
}

.footer .menu {
    display: flex;
    align-items: center;
    gap: 72px;
    width: fit-content;
    margin-inline: auto;
    height: 100%;
}

.footer .menu-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
    list-style: disc;
    padding-left: 15px;
}

.footer .menu-item .title,
.footer .menu-item .text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s linear;
}

.footer .menu-item .title {
    margin-bottom: 6px;
}

.footer .menu-item .text {
    font-weight: 400;
    color: #ffffff;
}

.footer .menu-item .text:hover,
.footer .menu-item .title:hover {
    color: var(--gray-light-color);
    transform: translateX(4px);
}

.footer .contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    margin-left: auto;
    height: 100%;
    justify-content: center;
}
.footer .contact-item a {
    color: var(--gray-light-color);
/*    text-decoration: underline;*/
}
.footer .contact .title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.footer .contact-item {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--gray-color);
}

.footer .coppyright {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--gray-color);
    text-align: center;
    padding-block: 24px;
    border-top: 1px solid var(--border-color);
}

.footer .coppyright a {
    color: var(--gray-light-color);
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .footer .menu {
        gap: 32px;
    }

    .footer .menu-item .text,
    .footer .contact-item,
    .footer .coppyright {
        font-size: 14px;
    }

}

@media screen and (max-width: 991px) {

    .footer .menu-item .text,
    .footer .contact-item,
    .footer .coppyright {
        font-size: 12px;
    }

    .footer .menu-item,
    .footer .contact {
        gap: 6px;
        align-items: center;
        text-align: center;
        list-style: none;
    }
    .footer .store-icon img {
        max-width: 150px;
    }
    .footer .menu-item .title,
    .footer .contact .title {
        font-size: 14px;
    }

    .footer .right .text {
        font-size: 12px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 35px;
    }

    .footer .right .logo {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 24px 0;
    }

    .footer .right .logo img {
        width: 120px;
    }

    .footer .menu {
        margin-top: 24px;
    }

    .footer .right .logo,
    .footer .right .text {
        text-align: center;
    }


    .footer .right .text {
        max-width: 80%;
        margin-inline: auto;
        margin-bottom: 24px;
    }

    .footer .socials {
        justify-content: center;
    }

    .footer .contact {
        margin-top: 24px;
        margin-inline: auto;
    }

    .footer .coppyright {
        padding-inline: 44px;
    }
}