/* секция-футер прижата к низу при коротком контенте */
.footer_section{
    margin-top: auto;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, .10);
    padding: 18px 0;
}

.footer_section__inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer_section__copyright{
    font-weight: 700;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(11, 15, 20, .72);
}

@media (max-width: 480px){
    .footer_section{
        padding: 14px 0;
    }
    .footer_section__copyright{
        font-size: 12.5px;
    }
}