/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 55px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 0;
        overflow-y: auto;
        background: var(--hf-clr);
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
        transition: 0.35s ease;
        z-index: -1;
        overflow: hidden;
        transition: height 0.35s ease;
    }

    nav.active {
        border-top: 1px solid var(--txt-clr);
        border-bottom: 1px solid var(--txt-clr);
        height: 155px;
    }

    nav ul {
        padding: 10px 0;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    nav ul li a {
        color: var(--txt-clr);
        font-weight: 500;
    }

    header .menu-btn {
        display: block;
    }

    .f-container {
        display: flex;
        flex-wrap: wrap;
        padding: 15px var(--primary-pad);
        gap: 10px;
    }

    .f-left {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .f-left .socials {
        align-items: center;
    }

    .f-left a {
    padding: 5px;
}

    .f-right {
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .f-right .f-links {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        min-width: 100px;
        text-align: center;
        flex-wrap: wrap;
    }

    .f-right .f-links a {
        padding: 2px 3px;
    }
}

@media (max-width: 550px) {
    .hero .btns {
        display: flex;
        flex-direction: column;
    }

    .hero .btns {
        width: 100%;
    }

    .hero .btns a {
        padding: 10px 15px;
    }
}