.main-footer {
    display        : flex;
    justify-content: space-between;
    gap            : 2rem;
    flex-wrap      : wrap;
    margin-top     : 5rem;
}

.footer-item {
    display       : flex;
    flex-direction: column;
    gap           : 0.5rem;
}

.main-footer .footer-item .footer-item-header p {
    font-size  : 1.5rem;
    font-weight: 600;
}

.footer-item ul {
    padding-inline-start: 0;
}

.footer-item ul li {
    list-style: none;
    opacity   : 0.6;
}

.footer-item ul li a {
    text-decoration: none;
    color          : white;
}

.main-footer-start-side {
    display: flex;
    gap    : 4rem;
}

.footer-logo {
    display        : flex;
    justify-content: center;
    align-items    : center;
    position       : relative;
    margin-top     : 2rem;
}

.footer-logo img {
    width: 100%;
}

.footer-logo::after {
    content           : "";
    width             : 100%;
    height            : 100%;
    position          : absolute;
    top               : 0;
    inset-inline-start: 0;
    background        : linear-gradient(0deg, #121212 10.66%, rgba(18, 18, 18, 0) 100%);
}

.footer-copyright {
    display        : flex;
    justify-content: space-between;
    padding-block  : 2rem;
    opacity        : 0.6;
}

.footer-copyright a {
    text-decoration  : none;
    color            : white;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
    padding          : 0 0.5rem;
}

.footer-copyright a:last-child {
    border-inline-end: none;
}

.main-footer-end-side {
    display: flex;
    gap    : 4rem;
}

.main-footer-end-side i {
    color    : white;
    font-size: 2.5rem;
    opacity  : 0.6;
}

.social-media-box {
    display        : flex;
    justify-content: space-between;
}

@media (max-width:1199.89px) {

    .main-footer-start-side,
    .main-footer-end-side {
        gap: 2rem;
    }
}

@media (max-width:991.89px) {
    .main-footer-start-side {
        display: flex;
        gap            : 4rem;
        justify-content: space-between;
    }

    .main-footer-end-side {
        justify-content: space-between;
        display: flex;
    }
    .main-footer {
        flex-direction: column;
        margin-top    : 1rem;
    }
}

@media (max-width: 767.98px) {
    
    .footer-copyright {
        flex-direction: column;
        gap           : 1rem;
        text-align    : center;
    }

}

@media (max-width:400px) {
    .main-footer-start-side {
        gap: 2rem;
    }
}