footer{
    border-top: 4px solid #810002;
    background-color: #F7F8FA;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-top: 30px;
    overflow-x: hidden;
}
body{
    overflow-x:hidden;
}
.first-footer__sect{
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
    margin-bottom: 22px;
}
.footer__logo__info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 25%;
    height: 260px;
    color: #810002;
}
.footer__logo__info img{
    width: 200px;
}
.footer__logo__info p{
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.footer__title{
    font-size: 25px;
    font-weight: 400;
    color: #555555;
}
.footer__catalog{
    width: 20%;
}
.footer__catalog__list{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 80%;
    margin-top: 15px;
}
.footer__catalog__list__item a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    transition: 0.5s;
}
.footer__catalog__list__item a:hover{
    color: #810002;
    font-weight: 500;
}
.contacts{
    width: 20%;
}
.contacts__list{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    margin-top: 15px;
}

.second-footer__sect{
    border-top: 2px solid #810002;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.company, .agree{
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    transition: 0.5s;
}
.agree:hover{
    color: #810002;
    font-weight: 500;
}

@media(max-width:780px){
    .contacts__list{
        height: 60%;
    }
    .footer__title{
        font-size: 20px;
    }
    .footer__catalog__list__item a{
        font-size: 10px;
    }
    .contacts{
        width: 17%;
    }
    .footer__logo{
        font-size: 18px;
    }
    .footer__logo__info p{
        font-size: 13px;
    }
}
@media(max-width:540px){
    .contacts__list{
        height: 60%;
    }
    .footer__title{
        font-size: 20px;
    }
    .footer__catalog__list__item a{
        font-size: 10px;
        width: 50%;
    }
    .contacts{
        width: 17%;
    }
    .footer__logo{
        font-size: 16px;
    }

}
@media(max-width:460px){
    .first-footer__sect{
        justify-content: start  ;
        gap: 30px;
    }
    .footer__logo{
        font-size: 14px;
    }
    .footer__logo__info p{
        font-size: 10px;
    }
    .footer__title{
        font-size: 14px;
    }
    .company{
        font-size: 8px;
    }
}
