footer {
    margin: 120px 0 0 0;
    background-color: var(--color-dark-blue);
    color: white;
}
.footer-logo-container .logo-svg-mobile {
    display: block;
}
.ftr-main-container {
    width: var(--max-content-length);
    margin: 0 auto;
    display: flex;
    padding: 64px 0 0 0;
    box-sizing: border-box;
    justify-content: space-between;
}
.footer-logo-container {
    width: 310px;
    color: rgba(255, 255, 255, 0.6);
}
footer .logo-header-text {
    color: white;
}
footer .logo-under-text {
    font-weight: 400;
    color: white;
}
.footer-logo-container p {
    font-family: var(--font-base), sans-serif;
    font-size: 15px;
    line-height: 21px;
}
.footer-menu-container .ftrHeader {
    font-family: var(--font-base), sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1pt;
    text-transform: uppercase;
    opacity: 0.5;
}
.ftrHeader-mob {
    display: none;
}
.footer-menu-items a {
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding: 5px 0;
    color: #fff;
    opacity: 0.8;
}
.footer-menu-items a:hover {
    color: var(--color-bright-cyan);
    opacity: 1;
}
.footer-contacts-text {
    width: 250px;
}
.footer-menu-items a.footer-tel {
    font-weight: 500;
    font-size: 19px;
    line-height: 24px;
    opacity: 0.9;
}
.footer-menu-items {
    margin: 10px 0 0 0;
}
.footer-menu-items .footer-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-bright-cyan);
    padding: 10px 0 20px;
    display: block;
    opacity: 1;
    cursor: pointer;
}
.footer-menu-items .footer-link:hover {
    color: rgb(78, 242, 255);
}
.ftr-address-box {
    line-height: 22px;
}
.ftrAboutInfo {
    margin: 41px auto 0;
    width: var(--max-content-length);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.ftrAboutInfo div, .ftrAboutInfo a {
    display: block;
}
.ftrAboutInfo div {
    opacity: 0.7;
    font-size: 15px;
    line-height: 24px;
}
.ftrAboutInfo a {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: white;
    opacity: 0.6;
}
.ftrAboutInfo a:hover {
    opacity: 1;
    color: var(--color-bright-cyan);
}

.footer-menus {
    display: flex;
    justify-content: space-between;
    flex: 1;
    margin: 0 0 0 5vw;
}
span[itemprop="email"], .ftr-address-box {opacity: 0.8}


.counters-visible {
    display: flex;
    column-gap: 10px;
    margin: 50px 0 0 0;
}

.footer-tg-icon path {
    stroke: white;
    stroke-width: 8px;
    transition: var(--transition-duration);
}
.footer-tg a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}
.footer-tg {
    height: 18px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.footer-tg:hover {
    cursor: pointer;
}
.footer-tg:hover a {
    color: rgb(78,242,255) !important;
}
.footer-tg:hover path {
    stroke: rgb(78,242,255);
}


@media (max-width: 1000px) {
    .ftr-main-container {
        height: 430px;
    }
    .ftrHeader {display: none;}
    .ftrHeader-mob {
        display: flex;
        font-weight: 500;
        font-size: 18px;
        line-height: 1pt;
        text-transform: uppercase;
        opacity: 1;
        align-items: center;
        padding: 12px 0;
    }
    .footer-menus {
        flex-direction: column;
        margin: -12px 0 0 5vw;
        justify-content: unset;
        flex: unset;
        flex-basis: 50%;
    }
    .footer-menu-container {
    }
    .footer-menu-container:not(.footer-active-menu-block) .footer-menu-items {
        display: none;
    }
    .footer-menu-container.footer-active-menu-block .footer-menu-items {
        display: block;
    }
    .ftrHeader-mob svg {
        margin: 0 0 0 5px;
    }
    .footer-menu-container.footer-active-menu-block .ftrHeader-mob svg {
        transform: rotate(180deg);
    }
    .footer-menu-items {
        margin: -5px 0 0 0;
    }
    .ftrAboutInfo {
        flex-direction: column;
        row-gap: 10px;
    }
    footer .logo-header-text, footer .logo-header-text span {
        font-size: 40px;
    }
    footer .logo-under-text {
        font-size: 14px;
        line-height: 19px;
    }
    footer .logo-svg-mobile {
        width: 65px;
        height: 72px;
    }
    .ftrAboutInfo div span {display: block;}
}

@media (max-width: 600px) {
    footer {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        margin: 96px 0 0 0;
    }
    .ftr-main-container {
        flex-direction: column;
        height: 750px;
        width: 100%;
        padding: 64px 20px;
    }
    .footer-menus {
        margin: 20px 0 0 0;
    }
    .ftrAboutInfo {
        width: 100%;
        padding: 30px 20px;
    }
}