.footer {
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-top: 40px;
    color: var(--color-text-add);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 44px 0;
}

.footer__text {
    line-height: 160%;
}

.footer__border {
    width: 100%;
    border-top: 1px dashed #b0b3c4;
    margin: 24px 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer__logo-wrapper {
    max-height: 48px;
}

.footer__logo {
    width: auto;
    margin-bottom: 0;
}

.footer-content {
    width: 45%;
    max-width: 535px;
}

.footer-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer-logos__item {
    margin-right: 35px;
    margin-bottom: 15px;
}

.footer-logos__img {
    width: auto;
    max-height: 34px;
    margin-bottom: 0;
    border-radius: 0;
}

@media (max-width: 1350px) {
    .footer-inner {
        padding: 44px 16px;
    }
}

@media (max-width: 900px) {
    .footer__top {
        flex-wrap: wrap;
    }

    .footer-content {
        max-width: none;
        width: 100%;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 30px 16px;
    }

    .footer-logos {
        justify-content: space-between;
    }

    .footer-logos__item {
        margin-right: 5px;
    }

    .footer__text {
        font-size: 14px;
        line-height: 140%;
    }
}

/* FOOTER SEARCH START */
.footer-search {
    margin: 30px 0 50px 0;
}

.footer-search__form {
    width: 100%;
    position: relative;
}

.footer-search__input {
    width: 100%;
    height: 52px;
    background: #4b5e72;
    border-radius: 27px;
    outline: none;
    border: none;
    padding: 0 40px 0 16px;
    font-size: 16px;
    color: var(--color-text-add);
}

.footer-search__submit {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 17px;
    right: 18px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}

.footer-search__input::placeholder {
    color: var(--color-text-add);
}

@media (max-width: 480px) {
    .footer-search {
        margin: 20px 0 30px 0;
    }

    .footer-search__input {
        height: 44px;
    }

    .footer-search__submit {
        width: 36px;
        height: 36px;
        background: var(--color-primary);
        border-radius: 50%;
        top: 4px;
        right: 5px;
    }

    .footer-search__submit svg path {
        fill: var(--color-tertiary);
    }
}
/* FOOTER SEARCH END */

/* FOOTER MENU START */
.footer-menu {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-menu__item {
    margin-bottom: 12px;
    margin-left: 10px;
}

.footer-menu__title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 140%;
    margin-bottom: 8px;
}

.footer-menu__link {
    color: var(--color-text-add);
    line-height: 160%;
}

.footer-menu__title:hover,
.footer-menu__link:hover {
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .footer-menu {
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-menu__col:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .footer-menu__item {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-menu__col {
        width: 100%;
    }
}
/* FOOTER MENU END */
