/* =============== MEDIA QUERIES (EXTRA LARGE DEVICES) =============== */
@media screen and (max-width: 1350px) {


}

/* =============== MEDIA QUERIES (LARGE DEVICES) =============== */
@media screen and (max-width: 1245px){


}


/* =============== MEDIA QUERIES (MEDIUM DEVICES) =============== */
@media screen and (max-width: 1000px){



}


/* =============== MEDIA QUERIES (SMEDIUM DEVICES) =============== */
@media screen and (max-width: 800px){
    ul.footer_menu{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem;

    }

    ul.footer_menu li{
        width: 4rem;
        text-align: center;
    }

}


/* =============== MEDIA QUERIES (SMALL DEVICES) =============== */


@media screen and (max-width: 640px){
    /* ========== NAVIGATION ========== */
    .bar {
        display: block;
        background: var(--light-bg-font-color);
        height: 2.5px;
        width: 2.5rem;
        margin: 5px auto;
        transition: var(--tran-04);
        -webkit-transition: var(--tran-04);
        z-index: 999;

    }


    .hamburger_menu {
        display: block;
        height: auto;
        width: auto;
        z-index: 999;
    }

    .navbar_menu {
        -webkit-background: hsl(0 0% 100% / 0.1);
        -webkit-backdrop-filter: blur(3rem);
        background: hsl(0 0% 100% / 0.1);
        backdrop-filter: blur(2rem);
        flex-direction: column;
        inset: 0 0 0 50%;
        padding: min(30vh, 10rem) 1rem;
        position: fixed;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 400;
    }

    li.navbar_item a.navbar_links{
        color: var(--secondary-font-color);
    }

   .navbar_menu[data-visible="true"]{
        transform: translateX(0%)
   }

   .navbar_item i.moon,
   .navbar_item i.sun {
        border: 2px solid var(--secondary-font-color);
        color: var(--secondary-font-color);
    }



   .hamburger_menu[aria-expanded="true"] .bar:nth-child(2){
        opacity: 0;
   }

   .hamburger_menu[aria-expanded="true"] .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
   }

   .hamburger_menu[aria-expanded="true"] .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
   }
    /* ========== NAVIGATION ========== */


    /* ========== FOOTER ========== */
    footer{
        height: fit-content;
    }

    .footer_container{
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0 1rem 0;

    }

    .footer_container div.navbar_logo{
        order: 2;
    }

    .footer_container div.rights_reserved{
        display: flex;
        flex-direction: row;
        gap: .75rem;
        order: 2;

    }

    .footer_container div.footer_link_block{
        order: 1;

    }

    /* ========== FOOTER ========== */
}


/* =============== MEDIA QUERIES (EXTRA-SMALL DEVICES) =============== */
@media screen and (max-width: 450px){


    /* ========== FOOTER ========== */
    footer{
        height: fit-content;
    }

    .footer_container{
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0 1rem 0;

    }

    .footer_container div.navbar_logo{
        order: 2;
    }

    .footer_container div.rights_reserved{
        display: flex;
        flex-direction: row;
        gap: .75rem;
        order: 2;

    }

    .footer_container div.footer_link_block{
        order: 1;

    }

    /* ========== FOOTER ========== */

}


