footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #848484;
    background: #4A4A4A;
    padding: 26px 0;
}

.inFooter {
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.leftPartFooter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logoCompany {
    color: #FFF;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    display: flex;
    gap: 0;
}

.orangeText {
    color: #F08254;
}

.menuFooter {
    display: flex;
    gap: 32px;
    align-items: center;
}

.itemFooterMenu {
    cursor: pointer;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: 0.24s;
}

.itemFooterMenu:hover {
    color: #F08254;
}

.rightPartFooter {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btnToCatalogFooter {
    display: flex;
    width: auto;
    padding: 16px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
    color: #FFF7FC;
    gap: 21px;
    font-family: Montserrat;
    cursor: pointer;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    height: 44px;
    line-height: 20px;
    box-sizing: border-box;
    transition: 0.24s;
}

.ourMail {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: end;
}

@media screen and (max-width: 1280px) {
    footer {
        padding: 26px 16px;
        box-sizing: border-box;
    }

    .inFooter {
        max-width: 1240px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 24px;
        flex-direction: column;
    }

    .menuFooter {
        display: flex;
        gap: 32px;
        align-items: center;
        flex-direction: column;
    }

    .logoCompany {
        color: #FFF;
        font-family: Montserrat;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 40px;
        display: flex;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .rightPartFooter {
        display: flex;
        flex-direction: column-reverse;
        gap: 14px;
        align-items: center;
    }
}