.footer {
    padding: 50px 0 40px;
    background: var(--footer-bacground);
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-support {
    align-items: flex-end;
}

.footer-logo {
    display: block;
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
}

.footer-text {
    font-family: Raleway-400;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;

    color: #979797;
}

.footer-title {
    font-family: Raleway-400;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;

    color: #FFFFFF;
    margin-bottom: 15px;
}

.socials-links {
    display: flex;
}

.social-link {
    min-width: 36px;
    height: 36px;

    margin-right: 10px;
    border-radius: 100%;
    background: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s all;
}

.social-link:hover {
    background: var(--main-hover-color);
}

.social-link:hover svg path {
    fill: var(--color-white);
}

.social-link:focus {
    background: var(--main-hover-color);
}

.social-link:focus svg path {
    fill: var(--color-white);
}

.social-link:last-child {
    margin-right: 0;
}

.footer-link {
    width: max-content;

    font-family: Raleway-400;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;

    text-align: right;
    margin-bottom: 7px;
    color: #FFFFFF;

    border-bottom: 1px solid transparent;
    transition: 0.3s all;
}

.footer-link:hover {
    color: #FFFFFF;
    text-decoration-line: none;
    border-bottom: 1px solid #FFFFFF;
}

.btn-call {
    min-width: 125px;
    height: 50px;
    background: var(--main-color);
    border-radius: var(--border-radius);
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: max-content;
}

.btn-call:hover {
    color: #fff;
    background: var(--main-hover-color);
}

.btn-call:focus {
    color: #fff;
    background: var(--main-focus-color);
}

.footer-line {
    border-top: 1px solid #a9aeb2;
}

.footer-info {
    font-family: Raleway-400;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;

    color: #E5E6E9;
    text-decoration-line: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s all;
}

.footer-info:not(.footer-copyright):hover {
    color: #E5E6E9;
    text-decoration-line: none;
    border-bottom: 1px solid #E5E6E9;
}

.footer-developed {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: max-content;
}
