footer.container {
    padding: 40px 50px 20px 50px;
}

.footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 450px;
}

.footer-upper-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 70px;
}

.footer-right-side {
    display: flex;
    gap: 20px;
}

.footer-right-side > div {
    max-width: 197.5px;
    width: 197.5px;
}

.footer-right-side > div {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    font-family: "OpenSans-Medium";
}

.footer-right-side > div span {
    color: var(--blue1);
}

.footer-right-side > div > div {
    padding-top: 16px;
}

.footer-right-side > div > div li, .footer-right-side > div > div p, .footer-link-div {
    padding: 8px 0px;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--blue1);
}

.bottom-footer > div, .bottom-footer > div ul {
    display: flex;
    gap: 24px;
}
.bottom-footer > div ul,.footer-right-side > div ul{ 
    list-style: none;
}
.bottom-footer svg path {
    fill: var(--black1);
    transition: 0.3s ease all;
}

.bottom-footer a:hover svg path {
    fill: var(--blue1);
    transition: 0.3s ease all;
}

.footer-left-side p, .footer-right-side a, .footer-right-side > div > div p, .footer-link-div, .bottom-footer > div {
    color: var(--black1);
}

.footer-right-side a:hover, .footer-link-div a, .bottom-footer a {
    color: var(--black1);
    transition: 0.3s ease all;
}

.footer-right-side a:hover, .footer-link-div a:hover, .bottom-footer a:hover {
    color: var(--blue1);
    transition: 0.3s ease all;
}

.footer-middle {
    margin-bottom: 32px;
    display: flex;
    gap: 20px;
}

.footer-middle > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-middle > div > div {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-middle > div > div > div {
    height: 20px;
}

.footer-middle > div > div > div img, .footer-middle > div > div > div picture {
    height: 100%;
    width: auto;
}

.delivery-partners, .payment-methods {
    color: var(--blue1);
}

.delivery-partners {
    width: 470px;
}

.bottom-footer > div.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-footer .social-icons > a.instagram-icon svg path {
    fill: unset;
}

.bottom-footer .social-icons > a.instagram-icon:hover svg path {
    stroke: var(--blue1);
}

@media screen and (max-width: 1250px) {

    .footer-right-side > div {
        max-width: 160px;
        width: 160px;
    }
}

@media screen and (max-width: 1080px) {

    .footer-upper-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left-side {
        max-width: unset;
    }

    .footer-left-side a {
        width: fit-content;
    }

    .footer-right-side {
        justify-content: space-between;
    }
}

@media screen and (max-width: 900px) {
    
    .footer-middle {
        flex-direction: column;
    }

    .delivery-partners {
        width: unset;
    }
}

@media screen and (max-width: 767px) {

    footer.container {
        padding: 40px 20px 30px 20px;
    }

    .footer-left-side img, .footer-left-side picture {
        width: 150px;
        height: auto;
    }

    .footer-right-side {
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 90px;
        justify-content: start;
    }

    .footer-right-side > div > div {
        padding-top: 12px;
    }

    .footer-right-side > div {
        max-width: unset;
        width: 100%;
    }

    .bottom-footer {
        flex-direction: column-reverse;
        align-items: start;
        gap: 24px;
        padding-top: 20px;
    }

    .footer-middle {
        margin-bottom: 24px;
    }

    .bottom-footer > div {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .bottom-footer > div.social-icons {
        flex-direction: row;
        gap: 12px;
    }

    .bottom-footer > div ul {
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 479px) {

    .footer-middle > div > div > div {
        height: 14px;
    }

    .footer-middle > div > div {
        gap: 11px;
    }
}