@import url('https://fonts.googleapis.com/css?family=Quicksand');

.header_container{
    width: 100dvw;
    height: clamp(4rem, 5rem, 6rem);
    background-color: var(--website-bg-2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left_content{
    height: 100%;
    width: auto;
    background-color: none;
    display: flex;
    align-items: center;
}
.left_content > img{
    margin-left: 5%;
    height: 2.5rem
}
.right_content{
    height: 100%;
    width: 800px;
    background-color: none;
}
.hamb_menu{
    right: 10px;
    fill: white;
    display: none;
}
.hamb_menu > rect{
    rx: 5px;
}
.__nav_content{
    height: 100%;
}
.__nav_content > .nav_area{
    height: 100%;
    display: flex;
    gap: 20px;
    text-align: end;
    justify-content:end;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding-right: 20px;
    background-color: none;
    float: right;
    font-size: clamp(1rem, 4vw, 1.2rem); 
}
.__nav_item{
    list-style-type: none;
    padding: 5px;
}

.__selected_text{
    color: var(--website-green);
}
.__nav_item > a{
    text-decoration: none;
    font-family: 'Quicksand';
    color: white;
    padding-bottom: 5px;
}

.__nav_item > a:hover{
    text-decoration: none;
    font-family: 'Quicksand';
    color: var(--website-green);
    border-bottom: 2px solid;
    transition: 0.3s ease;
}


/*.__nav_item > a[tabindex]:focus{
    color: var(--website-green);
    border-bottom: 2px solid;
    transition: 0.3s ease;
}*/
.bc_holder{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    background-color: none;
    z-index: 30;
    display: none;
}

@media only screen and (max-width: 950px)  {

    
    .right_content{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .__nav_content{
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        display: none;
        
    }
    .hamb_menu{
        display: block;
        margin-right: 10px;
        position:relative;
        z-index: 20;
    }
    .__nav_content > .nav_area{

        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        margin-right: 0px;
        margin-top: 5rem;
        height: 500px;
        padding-right: 0px;
        gap: 0px;
        /* padding: 20px; */
        
    }
    .__nav_item{
        /* width: 100%; */
        background-color: #151c22ab;
        text-align: left;
        position:relative;
        z-index: 100;
        
        padding: 6px 0 6px 6px;
        width: 100%;
    }
    .__nav_item > a{
        
        width: 200px;
        color: white;
        margin-right: 10px;
        
    }
    .__nav_item > a:hover{
        border-bottom: 0px;
    }
    .__nav_item > a[tabindex]:focus{
        color: var(--website-green);
        border-bottom: 0px;
        transition: 0.3s ease;
    }
    .__nav_content:target{
        display: block;

    }
    .__nav_content:target + #bc_holder{
        display: block;

    }
    
}

.body_data{
    width: 100dvw;
    height: calc(100% - 5rem);
}




.__selected{
    color: var(--website-green) !important;
    
}

.__selected_text{
    color: var(--website-green) !important;
    border-bottom: 2px solid var(--website-green) !important;
}