footer {
    background-color: var(--color-darkPurple);
}
.footer--wrap {
    display: grid;
    grid-template-columns: 438px 1fr;
    gap: 50px 133px;
}
.footer-logo img {
    max-width: 438px;
    width: 100%;
}
.footer-link-group a {
    color: var(--color-white);
    transition: var(--trans-all);
}
.footer-link-group a:hover {
    color:var(--color-vividOrange);
}
.footer-contact-link li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.footer-contact-link li a i {
    font-size: 25px;
    color: var(--color-vividOrange);
}
.footer-contact-link ul {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.footer-nav-link ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 42px;
}
.footer-link-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copy-right {
    padding-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px 2px;
}
.footer-nav-link li a {
    font-size: 20px;
    line-height: 23px;
    font-family: var(--font-lato);
}

.footer-links-wrap .img-wrap{
    display: flex;
    align-items: center;
    gap: 27px;
}
.footer-links-wrap .img-wrap img{
    height: 45px;
}
.footer-links-wrap .img-wrap img:last-of-type{
    height: 55px;
}
.footer-links-wrap .img-wrap img:first-of-type{
    height: 45px;
}


@media(max-width:1200px) {
    .footer--wrap {
        grid-template-columns:1fr;
    }
}

@media(max-width:767px) {
    footer .container {
        padding-bottom: 30px;
    }
    .footer-links-wrap {
        align-items: center;
        gap: 50px;
    }
    .footer-contact-link li a {
        justify-content: center;
    }
    .footer-link-group {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .copy-right {
        flex-direction: column;
    }
}
