* {
    margin: 0;
}

.header_container {
    background-color: black;
}

.header_wrapper {
    max-width: 1200px;
    width: 95vw;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header_flex_01 h1 {
    font-size: 30px;
    color: #ffffff;
    font-family: serif;
}

.header_flex_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_flex_02 ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.header_flex_02 ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-family: serif;
}

.header_flex_02 ul li a i {
    font-size: 20px;
    padding-right: 5px;
}
.hamburger_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger_menu span {
    width: 25px;
    height: 2px;
    background-color: white;
}
@media(min-width:769px){
.close_btn{
    display:none;
}
}
@media (max-width: 768px) {
    .header_flex_02 ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 80%;
        width: 80%;
        background-color: rgb(1, 1, 1);
        display: flex;
        flex-direction: column;
        justify-content: left;
        text-align: left;
        list-style: none;
        gap: 20px;
        transition: right 0.3s ease; 
        padding-top: 20px;
        border-radius: 0 10px 0 10px;
    }
    .header_flex_02 ul li a{
        color: rgb(242, 242, 242);
        font-size: 20px;
    }
    .header_flex_02 ul li.close_btn{
        background-color: rgb(245, 245, 245);
        font-size: 14px;
        color: black;
        font-weight: 700;
        padding: 10px;
        border-radius: 10px;
    }
    .header_flex_02 ul li.close_btn i{
        padding-left: 10px;
    }
    .header_flex_02 ul.active {
        right: 0;
    }
    .hamburger_menu {
        display: flex;
    }
    .close_btn {
        align-self: flex-end;
        margin-right: 20px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
}
/*-----add-----*/
.header_flex_01{
    display:flex;
    align-items:center;
}
.header_flex_01 img{
    width:50px;
    height:100%;
    padding-bottom:5px
}
.header_flex_01 a{
   display:flex;
   align-items:center;
}
