.footer-content, .footer-copyright {
    color: #fff;
}

.footer-copyright {
    font-size: 12px;
    padding: 20px 0 54px 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 57px 0 0 0;
}

.footer-content .logo{
    margin-top: 50px;
}

.footer-content .title{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 14px;
}

.footer-social-block {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.footer-sales-support-block .contacts {
    display: flex;
    justify-content: space-between;
}

.footer-sales-support-block .contacts > div:first-child {
    margin-right: 50px;
}

.footer-sales-support-block .workdays {
    color:#fff;
    font-size: 14px;
    padding-top: 10px;
}

.footer-sales-support-block .workdays > div {
    margin-top: 20px;
}

div.footer-item {
    display: block;
    position: relative;
    color:#fff;
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
    width: max-content;
}

a.footer-link {
    display: block;
    position: relative;
    color:#fff;
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
    width: max-content;
}

a.footer-link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50% 0;
    transform-origin: 100% 50% 0;
    transition: -webkit-transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s, -webkit-transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
}

a.footer-link:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-transform-origin: 0 50% 0;
    transform-origin: 0 50% 0;
}

a.footer-link.phone,
a.footer-link.email,
a.footer-link.telegram {
    padding-left: 30px;
}

a.footer-link.phone:before,
a.footer-link.email:before,
a.footer-link.telegram:before{
    position: absolute;
    content:"";
    top: -1px;
    left: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
}

a.footer-link.phone:before {
    background-image: url("/static/icons/footer/phone.svg");
}

a.footer-link.email:before {
    background-image: url("/static/icons/footer/email.svg");
}

a.footer-link.telegram:before {
    background-image: url("/static/icons/footer/telegram.svg");
}

.footer-social {
    position: relative;
    display: block;
    margin-top: 10px;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 25px;
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    transition-duration: 0.3s;
}

.footer-social:hover {
    /*box-shadow: 0 0 5px 4px #fff6;*/
    border: 1px solid #EEE;
}

.footer-social.instagram {
    background-image: url("/static/icons/footer/instagram.svg");
}

.footer-social.facebook {
    background-image: url("/static/icons/footer/facebook.svg");
}

.footer-social.youtube {
    background-image: url("/static/icons/footer/youtube.svg");
}
