.site-footer {
    background-color: var(--pcb-footer-bg);
    margin: 0!important;
}

.site-footer > div {
    max-width: 1240px;
    padding: 30px 0;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-middle {
    border-bottom: 1px solid #585C834D;
    padding-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-middle .primary-button {
    font-size: 18px;
    font-weight: 700;
    background: var(--pcb-register-btn-color);
    padding: 10px 56px;
    border-radius: 6px;
    display: block;
    max-width: fit-content;
    margin: 10px 0 0;
}

.footer-middle .primary-button:hover {
    background: var(--pcb-register-btn-color-hover);
    color: #fff;
}

.social-container {
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 30px;
    margin-bottom: 0!important;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-networks {
    display: flex;
    gap: 5px;
}

.social-networks a {
    display: flex;
    border-radius: 16px;
    background: #ffffff1a;
    width: fit-content;
    padding: 5px;
    line-height: normal;
}

.social-networks img {
    width: 20px;
    filter: invert(1);
}

.social-top-text {
    font-weight: 600;
    font-size: 14px;
}

.social-bottom-text {
    font-size: 18px;
    font-weight: 600;
}

.footer-menu {
    font-size: 12px;
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #9296A2;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-weight: 600;
    font-size: 18px;
}

.contact-description {
    color: #B1B4BC;
    font-weight: 600;
    font-size: 14px;
    max-width: 275px;
}

.contact-email img {
    filter: none!important;
}

.contact-email span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-bottom {
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

.copyright {
    color: #A2A5AF;
    font-weight: 400;
    font-size: 12px;
    max-width: 818px;
    padding: 0 20px;
    text-align: center;
}

@media (max-width: 1380px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-middle {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .social-container {
        align-items: center;
        margin: 15px 0;
        gap: 10px;
    }

    .footer-social {
        align-items: center;
    }

    .footer-menu {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-contact {
        text-align: center!important;
    }

    .bootom-left {
        align-items: center;
        gap: 10px;
    }

    .bootom-left .copyright {
        text-align: center;
    }

    .bottom-right {
        justify-content: center;
    }

    .footer-bottom {
        gap: 15px;
    }

    .bootom-left .copyright {
        width: fit-content;
    }

    .bootom-left .copyright br {
        display: none;
    }

}