.footer {
    position: relative;
    background: linear-gradient(0deg, #1C1C1C, #1C1C1C), linear-gradient(0deg, #060503, #060503), #FFFFFF;
}
.footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0.15) 100%);
    opacity: 0.5;
}
.footer__content {
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 20px;
}
.footer__counters {
    display: flex;
    justify-content: flex-end;
}
.footer__description {
    position: relative;
}
.footer__age {
    position: absolute;
    top: 25%;
    right: 0;
    color: #fff;
    padding: 0.5rem;
    border: 1px solid #fff;
    transform: translateY(-50%);
}
.footer__paragraph,
.footer__paragraph a {
    font-size: 1rem;
    line-height: 110%;
    font-family: 'Gilroy-Medium', sans-serif;
    font-display: swap;
    color: #fff;
    text-decoration: none;
}
.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, calc(100% / 6 - (30px * 5 / 6)));
    column-gap: 30px;
    margin: 60px 0 30px;
}
.footer-menu__item + .footer-menu__item {
    margin-top: 7px;
}
.footer-menu__item,
.footer-menu__item a,
.footer-menu__item b {
    font-family: 'Gilroy-Medium', sans-serif;
    color: #fff;
}
.footer__paragraph_small {
    margin: 0;
}
.footer__paragraph_small a {
    font-size: 12px;
}
.footer__content .fix {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
}
@media screen and (max-width: 1230px) {
    .footer__content {
        max-width: 100%;
        padding: 20px 15px 0;
    }
}
@media screen and (max-width: 769px) {
    .footer-menu {
        grid-template-columns: repeat(3, calc(100% / 3 - ((30px * 2) / 3)));
        row-gap: 50px;
    }
}
@media screen and (max-width: 429px) {
    .footer-menu {
        grid-template-columns: repeat(2, calc(100% / 2 - (30px / 2)));
        row-gap: 30px;
    }
    .footer__age {
        top: -50px;
        right: 0;
        transform: none;
    }
    .footer__content .fix {
        justify-content: center;
    }
}