del {
    text-decoration: line-through;
}


footer {
    width: 100%;
    height:fit-content;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 100px;
    background-color: light-dark(var(--white),var(--black));
    color: light-dark(var(--black),var(--white)) ;
    border-top: 1px solid light-dark(var(--black),var(--light-white));
}



footer p {
    font-size: 16px;
}

footer strong {
    color: var(--green);
    font-size: 20px;
    margin-bottom: 20px;
}

.top-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,250px),1fr));
    padding: 50px 70px 50px;
    gap: 30px;
}

.top-footer .links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.top-footer .links a:hover {
    margin-left: 10px;
    font-weight: 580;
    color: var(--green);
}

.top-footer .links a {
    width: fit-content;
}

.copyright-area {
    text-align: center;
    bottom: 0;
    padding:10px 20px;
    font-weight: 600;
    color: ligt-dark(var(--black),var(--white));
    background-color: light-dark(var(--light-white),#181818);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer .counter {
    gap: 30px;
    pointer-events: none;
}

footer .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: center;
}




.red {
    color: light-dark(var(--black),var(--red));
}
.white {
    color: light-dark(var(--white),var(--white));
}
.orange {
    color: light-dark(var(--black),var(--orange));
}




.homepage-hidden {
    display: none !important;
}



.mobile-footer {
    display: none;
}


@media (min-width:769px) and (max-width:992px) {
    .top-footer {
        gap: 30px;
    }

    footer p {
        text-align: center;
    }
}




@media (max-width:768px) {
    footer {
        margin-top: 60px;
        padding: 0 30px;
    }

    .top-footer {
        padding: 30px 10px 30px;
        gap: 15px;
    }

    .mobile-footer {
        width: calc(100% - 20px);
        height: 60px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        padding: 10px;
        border-radius: 6px;
        /* display: grid !important; */
        grid-template-columns: repeat(auto-fill,minmax(60px,1fr));
        grid-auto-flow: column;
        grid-auto-columns: minmax(60px,1fr);
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 5px;
        background-color: light-dark(var(--white),var(--black));
        color: light-dark(var(--black),var(--white));
        z-index: 2000;
        display: none;
    }
    .mobile-footer::-webkit-scrollbar {
        display: none;
    }
    .mobile-footer a {
       display: grid;
       row-gap: 2px;
       place-items: center;
       -webkit-tap-highlight-color: transparent;
       overflow: hidden;
       padding:0 3px;
    }
    .mobile-footer a i {
        color: var(--red);
    }
    .mobile-footer span {
        font-size: 14px;
    }

    #st-2.st-left {
        display: none !important;
    }

}


@media (max-width:600px) {

    footer {
        margin-top: 30px;
        padding: 0 20px;
    }

    .top-footer {
        gap: 15px;
    }

    footer img {
        width: 100%;
        margin-bottom: 10px;
        pointer-events: all;
    }

    footer .column{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .copyright-area {
        text-align: left;
        flex-direction: column;
        padding: 5px 10px;
        gap: 5px;
        display: none;
    }
}


@media (max-width:500px) {
    footer {
        margin-top: 30px;
        padding: 0 10px;
    }
}

@media (max-width:400px) {
    .mobile-footer {
        width: 100%;
        bottom: 0;
        right: 0;
        padding: 10px 10px;
        border-radius: 0;
        border-top: 1px solid var(--black);
        display: none !important;
    }
}