.main_container {
    max-width: 1200px;
    padding: 0 5px;
    margin: 0 auto;
    width: 100%;
}
.header .main_container {
    padding: 10px 0 10px 0;
    gap: 13.125rem;
    display: flex;
    transition: padding 0.25s linear;
}
.fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    background-color: var(--white);
    box-shadow: 0px 3px 6px #00000029;
    animation: fade 0.3s ease-in-out forwards 1;
    transition: background 0.3s linear;
    height: 70px;
}

.header_fixed_open {
    height: auto;
}
.header_list,
.nav_item,
.header {
    display: flex;
    align-items: center;
    list-style: none;
}
.header_logo {
    width: 135px;
}
.header_list {
    gap: 120px;
}
.nav_item {
    justify-content: space-between;
    flex: 1;
}
.header_link {
    font-weight: 700;
    color: var(--black);
    font-size: 22px;
}

.header_list:last-child {
    gap: 24px;
}
.header_list:last-child .header_link {
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}
.header_list .active a {
    color: var(--primary-color) !important;
}
.header_close,
.header_bar svg {
    display: none;
    width: 30px;
    color: #0957DF;
}
@media only screen and (max-width: 1400px) {
    .header_list {
        gap: 100px;
    }
}
@media only screen and (max-width: 1200px) {
    .header .main_container {
        padding: 10px 36px;
        gap: 120px;
    }
    .header_list {
        gap: 60px;
    }
}
@media only screen and (max-width: 991px) {
    .header_logo {
        width: 100px;
    }
    .fixed {
        height: auto;
    }
    .wrap_display_mobile {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    .header .nav_item {
        display: none;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0px 0px 20px 20px;
    }
    .nav_item hr {
        display: none;
    }

    .header_list:first-child .header_link {
        font-size: 16px;
    }
    .header_list {
        flex-direction: column;
        gap: 10px;
        display: grid;
    }

    .header .main_container {
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 0;
    }
    .header_bar svg {
        display: block;
        cursor: pointer;
    }
    .header_list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px dashed #CCCCCC;
        padding-bottom: 10px;
    }

    .header_list li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .header .main_container {
        padding: 10px 15px;
    }
}

