.page-footer {
    padding: 95px 0 55px;
    background-color: #232323;
    position: relative;
    overflow: hidden;
}

.page-footer .background-left-top {
    --bg-size: 249px;
}

.page-footer__container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-left: auto;
    margin-right: 32px;
}

.page-footer__top {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.page-footer__top a{
    width: 100%;
}

.page-footer__top img.logo-digital {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.page-footer__top img.logo-setta {
    width: 100%;
    max-width: 230px;
    height: auto;
}

.page-footer__center {
    border-top: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    padding: 12px 0;
}

.page-footer__center ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    font-weight: 700;
    font-size: 18px;
    text-wrap: nowrap;
}

.page-footer__center ul li {
    flex: 1;
}

.page-footer__bottom {
    display: flex;
    gap: 28px;
}

.page-footer__bottom .address {
    font-weight: 600;
    font-size: 18px;
    max-width: 389px;
}

.page-footer__bottom .social-media {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 107px;
}

.page-footer__bottom .social-media h4 {
    font-weight: 600;
    font-size: 18px;
    text-wrap: nowrap;
}

.page-footer__bottom .social-media div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.page-footer__bottom .contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    margin-left: auto;
}

.bottom-footer{
    display:flex;
    justify-content:flex-end;
    width: 100%;
    background-color: #232323;
    margin: 0;
    padding-bottom:20px;
    padding-right:30px;

}
.bottom-footer svg{
    width:70px;
}

@media (max-width: 768px) {
    .page-footer__bottom {
        display: grid;
    }

    .page-footer__bottom .address {
        grid-column: 1/3;
        max-width: none;
    }
}

@media (max-width: 440px) {
    .page-footer__center ul {
        flex-wrap: wrap;
        text-wrap: wrap;
        flex-direction: column;
    }

    .page-footer__bottom{
        text-align: center;
    }

    .page-footer__bottom .address {
        grid-column: 1/2;
    }

    .page-footer__bottom .social-media{
        margin: auto;        
    }
    .page-footer__bottom .contact {
        margin-left: 0;
    }
    .bottom-footer{
        justify-content:center;
        margin-right:0;
        padding-right: 0;
        padding-top: 20px;
    }
}