footer{
    position: relative;
    z-index: 2; 
}
.footer-wrap {
    padding: 92px 0 65px;
    position: relative;
}

.footer-bg {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.footer-wrap::after {
    content: '';
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.75) 50%, #000 100%);
    width: 100%;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

.footer-wrap .container {
    z-index: 2;
    position: relative;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 160px;
    height: fit-content;
    display: block;
    margin: auto;
}

.footer-insert {
    color: #FFF;
    text-align: center;
    margin: 33px;
    font-size: 18px;
    font-weight: 400;
    line-height: 33.757px;
    opacity: 0.6;
    display: block;
    letter-spacing: -0.606px;
}

.footer-social {
    display: flex;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
}

.footer-social a,.footer-social a:visited {
    width: 40px;
    height: 40px;
        opacity: 1;
        transition:opacity .5s ease;

}

.footer-social a:hover{
        opacity: .6;

}

.nav-box{
    max-width: 18%;
}

.footer-box nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

.footer-box nav li {
    width: 100%;
}

.footer-box nav a,.footer-box nav a:visited {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.416px;
    transition: color .5s ease;
}
.footer-box nav a:hover{
    color:#FCDA00;
}
.footer-cats-inner {
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 20px;
    max-width: 50%;
    width: 100%;
}

.footer-cats-name {
    color: #FFF;
    margin-bottom: 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.757px;
    /* 210.981% */
    letter-spacing: -0.606px;
}
.footer-cats-box ul{
    flex-wrap: wrap;
}
.footer-cats-box li{
    width: 100%;
}
.footer-cats-box a,.footer-cats-box a:visited {
    color: #FFF;
    width: fit-content;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
    letter-spacing: -0.606px;
    transition: color .5s ease;
}
.footer-cats-box a:hover{
    color:#FCDA00;
}
.footer__developer{
    padding: 19px 0;
    background: #000;
}
.footer__developer_link{
    display: block;
    margin: 0 auto;
    width: fit-content;
}

@media screen and (max-width: 900px){
    .footer-box{
        margin: 0 auto 30px;
        width: 100%;
    }
    .footer-inner{
        flex-wrap: wrap;
    }
    .nav-box {
        max-width: 18%;
    }
    .footer-cats-inner{
        max-width: 66%;
    }
}
@media screen and (max-width: 500px){
    .nav-box{
        display: none;
    }
    .footer-cats-inner {
        max-width: 100%;
    }
}
@media screen and (max-width: 400px){
    .footer-cats-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}