@media screen and (max-width:981px) {
    .menu_block {
        display: block;
    }

    .nav_links {
        flex-direction: column;
        padding: 7%;
        font-size: 1.1rem;
        position: fixed;
        background-color: var(--section-background-3);
        right: -100%;
        top: 0px;
        height: 100vh;
        width: 60%;
        align-items: center;
        transition: all 0.5s ease-in;
        z-index: 1000;
    }

    #cross_button{
        padding-bottom: 3rem;
    }

    .nav_links li a{
        color: var(--sub-text-color);
    }

    .active {
        right: 0;
    }

    #cross_button {
        display: block;
    }

    .hero {
        height: 50%;
    }
}

/* Whatsapp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        font-size: 13px;
        padding: 9px 16px;
    }
    .whatsapp-float img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        font-size: 11px;
        padding: 8px 14px;
        bottom: 15px;
        right: 15px;
    }
}



