@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&family=Poppins:wght@400;500;600&display=swap');
*,::after,::before{
    text-decoration: none;
    --theme-color-primary: rgb(255, 191, 0);
    --theme-color-secondary: #ff8908;
    --primary-background-color: white;
    --primary-text-color: black;
    --font-poppins: 'Poppins', sans-serif;
    --font-DMSans: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    padding: 30px;
    padding-right: 80px;
    padding-left: 80px;
    width: 100%;
    height: auto;
}
.nextep_logo{
    width: 100px;
    fill: black;
}
.flex{
    display: flex;
    flex-direction: row;
}
.menu_ul{
    list-style: none;
    transition: 100ms;
}
.menu_li{
    margin: 0px 20px;
}
.menu_link{
    font-size: 1.125rem;
    font-weight: 550;
    color: var(--primary-text-color);
    font-family: var(--font-DMSans)
}
/* .menu_link::before{
    content: '';
    position: absolute;
    background-color: var(--primary-text-color);
    width: 10px;;
    height: 1px;
    z-index: -1;
} */
.justify_between{
    justify-content: space-between;
}
.underlined-text{
    position: relative;
}
.underlined-text::after{
    display: flex;
    content: "";
    position: absolute;
    bottom: 10%;
    width: 100%;
    height: 20px;
    z-index: -1;
    background: var(--theme-color-secondary);
}
.items_center{
    align-items: center;
}
.nav-toggle-btn{
    width: 30px;
    height: 30px;

}
.nav-toggle-btn{
    display: none;
}
.caption-space{
    width: 60%;
    padding-left: 80px;
}
.caption{
    font-family: var(--font-poppins);
    font-size: 56px;
}
.loading-circle{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary-text-color);
    animation: loading-animation 2000ms ease-out infinite;
}
@media screen and (max-width: 600px) {
    .logo-space{
        width: 90%;
    }
    .nav-toggle-btn{
        padding: 2px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-toggle-btn span{
        border-radius: 2px;
        height: 4px;
        width: 30px;
        background-color: var(--primary-text-color);
    }
    /* .nav-toggle-btn-clicked .top-line{
        animation: nav-btn-toggle-topline 1000ms ease forwards;
    } */
    .nav-toggle-btn-clicked {
        animation: justify-center 1000ms ease forwards;
    }
    .nav-toggle-btn-clicked .top-line{
        animation: nav-btn-toggle-open-topline 1000ms ease forwards;
    }
    .nav-toggle-btn-clicked  .bottom-line{
        animation: nav-btn-toggle-open-bottomline 1000ms ease forwards;
    }
    .over-flow-hidden{
        overflow: hidden;
    }
    .caption-space{
        width: 100%;
        padding-left: 10px;
        z-index: -2;
    }
    .section-1{
        padding-left: 22px;
        padding-right: 22px;
    }
    .caption{
        color: var(--primary-text-color);
        font-size: 45px;
    }
    header{
        position: relative;
        z-index: 10;
        flex-wrap: wrap;
        padding-left: 22px;
        padding-right: 22px;
    }
    .menu_ul{
        display: none;
    }
    .show{
        backdrop-filter: blur(15px);
        justify-content: center;
        padding-top: 80px;
        z-index: -1;
        gap: 50px;
        height: fit-content;
        margin: 0;
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        opacity: 0;
        flex-direction: column;
        transform: translateX(0);
        display: flex;
        animation: opacity-slide-in 500ms forwards;
    }
    .show .menu_li:nth-child(1){
        animation: opacity-slide-in 500ms forwards;
        animation-delay: 10ms;
    }
    .show .menu_li:nth-child(2){
        animation: opacity-slide-in 500ms forwards;
        animation-delay: 30ms;
    }
    .show .menu_li:nth-child(3){
        animation: opacity-slide-in 500ms forwards;
        animation-delay: 50ms;
    }
    .show .menu_li:nth-child(4){
        animation: opacity-slide-in 500ms forwards;
        animation-delay: 70ms;
    }
    .show .menu_li:nth-child(5){
        animation: opacity-slide-in 500ms forwards;
        animation-delay: 90ms;
    }
    @keyframes opacity-slide-in {
        0%{
            opacity: 0;
            transform: translateX(-500px);
        }
        100%{
            opacity: 1;
            transform: translateX(0);
        }

    }
    
    @keyframes justify-center {
        0%{
            justify-content: space-between;
        }
        70%{
            justify-content: center;
        }
        100%{
            justify-content: center;
        }
    }
    @keyframes nav-btn-toggle-open-topline {
        0%{

        }
        25%{
            width: 1em;
        }
        100%{
            width: 1em;
            transform: rotate(-35deg);
        }
    }
    
    @keyframes nav-btn-toggle-open-bottomline {
        0%{

        }
        25%{
            width: 1em;
        }
        100%{

            width: 1em;
            transform: rotate(35deg);
        }
    } 
    @keyframes nav-btn-toggle-close-bottomline {
        0%{
            width: 1em;
            transform: rotate(35deg);
        }
        25%{
            width: 1em;
        }
        100%{

        }
    }    
}