

.footer-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 100px;


}

.h4-footer {
    font-size: 14px;
    color: #3B3B3B;
    text-transform: uppercase;
    padding: 5px 20px;
    font-family: var(--secondary-font);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0;
}

.footer-line {
    width: 110px;
    border-top: 2px solid #0363ff;
    margin-bottom: 15px;
}


.footer-space {
    height: 43px;
}

.footer-contact-item-1, .footer-contact-item-2, .footer-contact-item-3 {
    font-family: var(--main-font);
    color: #595959;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.6;
    padding-left: 35px;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact-item-1::before, .footer-contact-item-2::before, .footer-contact-item-3::before {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-color: #ff9203;
    background-position: center;
    border-radius: 15px;
    mix-blend-mode: difference;
}

.footer-contact-item-1::before {
    background-image: url(../assets/img/pin.svg);
}

.footer-contact-item-2::before {
    background-image: url(../assets/img/phone.svg);
}

.footer-contact-item-3::before {
    background-image: url(../assets/img/mail.svg);
}

.footer-cor {
    display: flex;
    justify-content: space-between;
    padding: 10px 100px;
    color: #A5B1C4;
    font-size: 14px;
}

.footer-cor a {
    color: #A5B1C4;
}

.footer-cor a:hover {
    color: #0363ff;
}

.footer-search {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    margin: 10px 100px;
    background-color: #0363ff;
    align-items: center;
    margin-top: 100px;
}

.footer-hor-line {
    height: 40px;
    border-right: 2px solid #fff;
    margin: 0pc 20px;
}

.row-left-top-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
    color: #fff;
    font-family: var(--main-font);
    line-height: 150%;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 100;
}

@media (max-width: 900px) {
    .footer-search {
        margin: 10px 0px;
        margin-top: 100px;
    }

    .footer-box {
        padding: 30px 20px;
    }

    .footer-cor {
        padding: 10px 20px;
    }
}

@media (max-width: 670px) {
    .footer-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-search {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;

    }

    .search {
        width: 90%;
        margin-top: 30px;
    }

    .footer-space {
        display: none;
    }

    .h4-footer {
        margin-top: 20px;
    }
}

@media (max-width: 380px) {
    .footer-cor {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
}


.row_footer {
    width: 25%;
}

.footer {
    background-color: #fff;


    .search .input {
        width: 100%;
        padding: 8px 37px 9px 15px;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        color: #fff;
        outline: none;
        border: 1px solid #fff;
        -webkit-text-fill-color: #ffffff;
        font-family: var(--main-font);
        line-height: 150%;
        font-weight: 100;
    }

    .search .input:focus {
        color: #FFF;
    }
}


