.footer {
    padding: 4rem 0;
    background-color: var(--secondary);
}
.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.footer__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}
.footer__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}
.footer__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer__info-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer__info-name {
    font-size: 1.2rem;
    line-height: 115%;
    text-align: right;
    color: var(--grey3);
}
.footer__info-val {
    font-size: 1.5rem;
    line-height: 120%;
    color: var(--white);
    text-align: right;
}
.footer__phone-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 3rem;
}
.footer__phone-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer__phone-content a {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: right;
    color: var(--white);
    transition: all .3s ease;
}
.footer__phone-content a:hover {
    color: var(--primary);
}

.footer__phone-ico {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
}
.footer__phone-ico svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__phone-text{
    font-size: 1.2rem;
    line-height: 115%;
    color: var(--white);
}


.footer__email-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}
.footer__email-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer__email-content a {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: right;
    color: var(--white);
    transition: all .3s ease;
}
.footer__email-content a:hover {
    color: var(--primary);
}
.footer__email-ico {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
}
.footer__email-ico svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.footer__logo-item {
    width: auto;
    height: 6.5rem;
}
.footer__logo-item svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__policy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer__copyright,
.footer__policy-text,
.footer__policy-link {
    font-size: 1.2rem;
    line-height: 115%;
    color: var(--grey4);
}
.footer__policy-link {
    text-decoration: underline;
    transition: all .3s ease;
}
.footer__policy-link:hover {
    color: var(--primary);
}
.footer__bottom-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    width: 92.8rem;
}

.footer__soc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.footer__soc-item {
    width: 3.8rem;
    height: 3.8rem;
    flex: 0 0 auto;
}
.footer__soc-item svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__soc-item svg path {
    transition: all .3s ease;
}
.footer__soc-item:hover svg path {
    fill: var(--primary)
}

.footer__logo-item:nth-child(1) {
    width: 5.5rem;
    height: 6.4rem;
}
.footer__logo-item:nth-child(2) {
    width: 8.7rem;
    height: 6.5rem;
}
.footer__logo-item:nth-child(3) {
    width: 7.6rem;
    height: 6.5rem;
}


@media (min-width: 768px) and (max-width: 1280px) {

}

@media (max-width: 767px) {
    .footer__wrapper {
        gap: 3.2rem;
    }
    .footer__top {
        flex-direction: column;
        gap: 2.4rem;
    }
    .footer__info-name,
    .footer__info-val {
        text-align: left;
    }
    .footer__phone-inner,
    .footer__email-inner {
        justify-content: flex-start;
    }
    .footer__bottom {
        flex-direction: column-reverse;
        gap: 3.2rem
    }
    .footer__soc {
        justify-content: flex-start;
    }
    .footer__bottom .btn {
        width: 100%;
    }
    .footer__bottom-wrapper {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .footer__logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer__policy {
        text-align: center;
    }
}









