body .footer {
    background: #110D2F;
    position: relative;
    padding-bottom: 48px;
}

.footer__decor {
    position: absolute;
    bottom: 60px;
    right: -80px;
}

.footer__wrap {
    display: flex;
    position: relative;
    z-index: 3;
}

.footer__logos {
    display: flex;
    gap: 48px;
    align-items: center;
}

.footer__logo {
    flex-basis: 49px;
    flex-shrink: 0;
}

.footer__icons {
    display: flex;
    gap: 16px;
}

.footer__menus {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__menu-title {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__menu ul li{
    list-style: none;
}

.footer__menu ul li a{
    font-weight: 400;
    color: #fff;
}

.footer__form-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 0;
}

.footer__form .form-label{
    font-weight: 400;
    font-size: 12px;
    line-height: 200%;
    color: #fff;
    margin-bottom: 4px;
}

.footer__form input.wpcf7-text {
    border: 1px solid rgba(95, 89, 122, 0.1);
    border-radius: 6px;
}

.footer__form .wpcf7-not-valid-tip {
    margin-top: 5px;
}

.footer__form .wpcf7-submit {
    min-width: 100%;
}

.footer__form .wpcf7-response-output {
    margin: 0!important;
    color: #FFFFFF!important;
}

.footer__form .wpcf7-spinner {
    display: none!important;
}

.footer__bottom {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 3;
}

.footer__bottom-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    color: #fff;
}

.footer__bottom-menu ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    align-items: center;
}

.footer__bottom-menu ul li{
    list-style: none;
}

.footer__bottom-menu ul li a{
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.footer__group{    
    display: flex;
    gap: 24px;
    align-items: center;
    width: fit-content;
}

.footer__group>img{
    display: block;
    object-fit: contain;
    width: auto;
}
img.footer__group-image1{
    height: 120px;
}
img.footer__group-image2{
    height: 96px;
}
@media screen and (min-width: 1025px) {
    .footer__wrap {
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 48px;
    }

    .footer__main {
        flex-basis: 558px;
    }

    .footer__form-wrap {
        flex-basis: 364px;
    }

    .footer__logos {
        justify-content: flex-start;
        margin-bottom: 64px;
    }

    .footer__menu ul li a{
        font-size: 18px;
    }

    .footer__bottom {
        margin-top: 48px;
    }

    .footer__bottom {
        justify-content: space-between;
    }

    .footer__menus-mob {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .footer__wrap {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .footer__logos {
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .footer__menu ul li a{
        font-size: 16px;
    }

    .footer__bottom {
        margin-top: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer__menus {
        display: none;
    }

    .footer__menus-mob {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    .footer__menus-mob {
        display: flex;
        column-gap: 4px;
        row-gap: 15px;
    }

    .footer__menu {
        display: flex;
        flex-direction: column;
        gap: 24px;
        flex-basis: calc((100% - 4px) / 2);
    }

    .footer__menus-mob .footer__menu:last-child {
        margin-left: auto;
    }

    .footer__decor {
        position: absolute;
        bottom: 120px;
        left: 10px;
        width: 150px;
    }
    
     .footer__group{    
         margin-left: auto;
         margin-right: auto;
    }
}