:root {
    --footer-background: #001343;
    --main-white: #FBFBFB;
}

.footer {
    background-color: var(--footer-background);
}

.footer-content {
    padding: 60px 0;
    width: 1073px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 56px;
    align-items: center;
}

.footer__link {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-white);
    text-decoration: none;
    cursor: pointer;
}

.footer__divide-line {
    height: 1px;
    background-color: var(--main-white);
    margin-top: 43px;
    margin-bottom: 48px;
}

.footer-logo-part {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-container {
    display: flex;
    gap: 10px;
}

.footer_logo_img {
    width: 108px;
    height: 36px;
}

.footer__logo-text {
    font-weight: 700;
    font-size: 28px;
    color: var(--main-white);
}

.footer-address {
    display: flex;
    justify-content: space-between;
}

.footer__address-value {
    color: #F4F4F480;
    font-weight: 400;
    font-size: 12px;
}

.footer__production {
    color: #FBFBFB99;
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 1300px) {
    .footer {
        padding: 0 50px;
    }

    .footer-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-address {
        flex-direction: column;
        justify-content: unset;
        gap: 30px;
        align-items: center;
    }

    .footer-logo-container {
        display: flex;
        gap: unset;
        justify-content: center;
    }

    .footer__address-value {
        text-align: center;
    }
}