#footer-wrapper {
    padding: 0 64px;
    background: url('../images/footer-bg.png') no-repeat center center /cover;
}

.footer-navigation {
    list-style: none;
    border-radius: 8px;
    padding: 20px 60px;
    background: linear-gradient(to right, var(--color-white) 0%, var(--light-blue) 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    margin: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.footer-navigation>li {}

.footer-navigation>li>a {
    display: block;
    font: var(--text-paragraph-l);
    color: var(--color-black);
    transition: all 0.4s ease;
}

.footer-navigation>li>a:hover,
.footer-navigation>li>a:focus {
    text-decoration: none;
}

.footer-col h3 {
    font: var(--text-h6);
    color: var(--color-white);
    margin: 0 0 24px;
}

.footer-col-nav {
    list-style-image: url('../images/arrow-green-rt.svg');
}

/* .footer-col-nav li::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    width: 8px;
    height: 12px;
    background-image: url(../images/arrow-green-rt.svg);
    background-repeat: no-repeat;
    background-size: contain;
} */

.footer-col-nav>li:last-child {
    margin: 0;
}

.footer-columns {
    margin: 0 0 72px;
}

.footer-col-nav>li>a {
    color: var(--color-white);
    font: var(--text-paragraph-l);
    margin: 0 0 12px;
}

.footer-col-nav>li>a:hover,
.footer-col-nav>li>a:focus {
    text-decoration: none;
}

.footer-text p {
    font: var(--text-paragraph-l);
    color: var(--color-white);
}

.address-block>div.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    margin-left: 24px;
}

.footer-contacts {
    list-style: none;
    color: var(--color-white);
    display: block;

}

.footer-contacts>li {
    margin: 0 0 24px;
    position: relative;
}

.footer-contacts>li::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: -36px;
    background-size: 100% 100%;
    transform: translateY(-50%);
}

.footer-contacts>li a {
    display: block;
    color: var(--color-white);
    font: var(--text-paragraph-l);

}

.footer-contacts>li:first-child::before {
    background: url('../images/phone-icon.svg') no-repeat center center;
}

.footer-contacts>li:last-child::before {
    background: url('../images/email-icon.svg') no-repeat center center;
}

.footer-columns>li a:hover,
.footer-columns>li a:focus {
    text-decoration: none;
}

.socials {
    display: flex;
    list-style: none;
    align-items: center;
    column-gap: 10px;
    padding: 0;
    justify-content: center;
}

.socials a {
    display: block;
    transition: all 0.4s ease;
}

.socials a:hover {
    transform: translateY(-4px);
}

.footer-contacts-wrap.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px;
}

.footer-contacts-wrap.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--color-blue-dianne);
    border-bottom: 1px solid var(--color-blue-dianne);
}

.space-between {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.space-between>div {
    padding: 0;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--color-white);
    font: var(--text-paragraph-l);
}

@media only screen and (max-width: 760px){

    #footer-wrapper{
        padding: 0 24px;
    }

    .footer-col {
        padding: 0;
        margin-bottom: 24px;
    }

    .address-block > div.row {
        flex-wrap: wrap;
    }

    .address-block {
        padding: 0;
      }

    .footer-logo {
        width: 100%;
        padding: 0;
        margin-bottom: 22px;
    }

    .footer-text {
        margin-left: 0;
        padding: 0;
        margin-bottom: 24px;
    }

    .footer-navigation{
        padding: 24px 12px;
        transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
    }

    .footer-navigation > li {
        width: 33.33%;
        margin-bottom: 12px;
      }

    .footer-contacts-wrap {
        width: 100%;
        padding: 0;
      }

      .footer-socials-wrap {
        width: 100%;
        padding: 0;
      }

      .space-between{
        text-align: center;
      }
}