.footer {
    width: 100%;
    background: #eff0f2;
}

.footer__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    border-bottom: 2px solid #fff;
}

.footer__searchInfo {
    width: 400px;
}

.footer__searchTitle {
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
}

.footer__searchInfoText {
    font-size: 14px;
}

.footerForm {
    display: flex;
    width: 700px;
}

.footerForm__input {
    outline: none;
    border: 1px solid #e3e3e3;
    width: 500px;
    box-sizing: border-box;
    padding: 14px 55px 14px 22px;
    margin: 0 8px;
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}

.footerForm__input:hover,
.footerForm__input:active,
.footerForm__input:focus {
    border: 1px solid #cc3d3d;
}

.footerForm__submit {
    font-size: 16px;
    color: #fff;
    background: #cc3d3d;
    padding: 0 32px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity ease-in-out 0.3s;
}

.footerForm__submit:hover {
    opacity: 0.7;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
    border-bottom: 2px solid #fff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.footer__contacts {
    align-self: center;
}

.footer__logo {
    width: 235px;
    height: auto;
}

.footer__menu {
    align-self: start;
}

.footer__menuTitle {
    font-weight: 700;
    text-transform: uppercase;
}

.footer__menuList {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer__menuItem {
    font-size: 14px;
    margin: 12px 0;
    line-height: 1.2;
}

.footer__menuLink {
    text-decoration: none;
    cursor: pointer;
}

.footer__menuLink:hover {
    color: #cc3d3d;
}

.footer__banking {
    width: 150px;
    height: auto;
}

.footer__copyright {
    font-size: 12px;
}


@media screen and (max-width: 1100px) {
    .footer__search {
        flex-direction: column;
    }

    .footer__searchInfo {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .footer__searchTitle {
        font-size: 22px;
        line-height: 22px;
    }

    .footer__searchText {
        font-size: 14px;
    }
    .footerForm {
        width: 100%;
    }

    .footerForm__input {
        width: 100%;
        font-size: 14px;
        padding: 8px;
    }

    .footer__top {
        flex-direction: column;
        margin: 0 24px;
    }

    .footer__menu {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
    }
}
