header {
    width: 100%;
    z-index: 100;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s;
}

.header_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #082567;
    padding: 10px;

}

.header_container ul {
    padding-left: 1vw;
    font-weight: 700;
    font-size: larger;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.header_container li,
a {
    text-decoration: none !important;
    list-style: none;
}

.header_container li {
    display: flex;
    margin-right: 15px;
    margin-left: 15px;
}

.logoheader_mobile {
    display: none;
}

.burger_container {
    display: none;
    flex-direction: column;
    overflow-y: visible;
    position: relative;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 50%;
    width: 43px;
    background-color: #0158af;
    animation: burger_animation 3s linear infinite;
    transition: all linear 1s;

}

.burger_menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.burger_container:hover {
    background-color: #2b95ff !important;
}

@keyframes burger_animation {
    0% {
        background-color: #0080ff;
    }

    50% {
        background-color: #005bb5;
    }

    100% {

        background-color: #0080ff;

    }

}

.bar {
    border-radius: 5px;
    width: 21px;
    height: 3px;
    background-color: white;

}

.burger_menu1 {
    visibility: hidden;
    position: absolute;
    left: 10px;
    top: 19px;
}

.bar-x1 {
    border-radius: 5px;
    width: 21px;
    height: 3px;
    background-color: white;
    /* transform: rotate(226deg); */
    position: absolute;

}

.bar-x2 {
    border-radius: 5px;
    width: 21px;
    height: 3px;
    background-color: white;
    /* transform: rotate(-226deg); */
    position: absolute;

}

.mobile_menu {
    display: none;
}



@media screen and (max-width: 943px) {

    header {
        top: 0;
    }

    .header_container {
        justify-content: flex-end;
    }

    .burger_container {
        display: flex !important;
    }

    .header_container .desktop {
        display: none;
    }

    main {
        position: relative;
    }

    .mobile_menu li,
    a {
        text-decoration: none;
        list-style: none;
    }

    .mobile_menu a:hover {
        color: #fff;
    }

    .mobile_menu ul {
        font-weight: 700;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile_menu {
        visibility: hidden;
        background-color: #082567;
        position: fixed;
        height: 100vh;
        width: 0;
        display: flex;
        right: 0;
        /* padding-right: 30px; */
        z-index: 99;
        opacity: 0;
        padding-top: 150px;
        overflow: hidden;

        transition: all 100ms linear;

    }

    .logoheader_mobile {
        padding-left: 10px;
        width: 100%;
        display: flex !important;
        justify-content: center;
    }

    .logoheader_mobile img {
        width: 100px;
        margin-left: 45px;
    }
}