header .header-wrapper {
    z-index: 999;
}
.menu-wrapper {
    z-index: 9999;
}
.menu-wrapper ul {
    margin-bottom: unset;
}
.menu-wrapper .sub-menu {
    display: none;
}
.info-wrapper div + div {
    margin-top: 7px;
}

@media (min-width: 992px) {
    .header-wrapper {
        position: absolute;
        top: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 50px;
    }

    .logo-wrapper img {
        width: 400px;
        height: 100px;
    }

    .info-wrapper {
        /*background-color: rgba(255, 255, 255, .7);*/
        border-radius: 10px;
        padding: 16px;
    }

    .menu-wrapper {
        position: absolute;
        top: 0;
        margin-top: 200px;

        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }
    .menu-wrapper div + div {
        margin-left: 20px;
    }

    .menu-wrapper .menu-content {
        display: flex;
    }

    .menu-wrapper .menu-content:nth-child(2) ul li {
        background: url("../image/tur-btn.png");
        margin-top: -13px;
        padding-top: 13px;
        background-repeat: no-repeat;
    }
    .menu-wrapper .menu-content:nth-child(2) ul li:hover {
        background: url("../image/tur-btn--hover.png");
        background-repeat: no-repeat;
    }

    .menu-content ul:not(.sub-menu) > li:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .menu-content ul:not(.sub-menu) > li:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .menu-wrapper ul {
        display: flex;
        flex-direction: row;
    }
    .menu-wrapper ul li {
        display: inline-block;
        text-align: center;
        background-color: rgba(48, 148, 178, .85);

        position: relative;
    }
    .menu-wrapper ul:not(.sub-menu) > li {
        min-width: 140px;
        width: min-content;
    }
    .menu-wrapper ul li a {
        padding: 10px;
        font-weight: bold;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-transform: uppercase;
    }
    .menu-wrapper ul li:hover {
        background-color: #ebc82e;
    }
    .menu-wrapper ul:not(.sub-menu) > li:hover > a {
        color: #000;
    }
    .menu-wrapper ul li:hover .sub-menu {
        display: block;
    }

    .sub-menu {
        position: absolute;
        min-width: 100%;
    }
    .sub-menu li {
        width: 100%;
    }
    .sub-menu li:hover a {
        color: #000;
    }

    .btn-menu-wrapper {
        display: none;
    }
}
@media (max-width: 991px) {
    .header-wrapper {
        position: fixed;
        top: 0;
        background-color: #f8f9fa;
        left: 0;
        right: 0;
        padding: 10px;

        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .header-wrapper .logo-wrapper img {
        width: 230px;
        height: 60px;
    }

    .info-wrapper {
        display: none;
    }
    .menu-wrapper {
        display: none;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        margin-top: 80px;
        position: fixed;
        z-index: 99;
    }
    .btn-menu-wrapper {
        display: block;
    }
    .btn-menu-wrapper button {
        border-radius: 10px;
    }

    .menu-wrapper li.menu-item-has-children > a {
        position: relative;
    }
    .menu-wrapper li.menu-item-has-children > a:before {
        content: '\2b';
        display: block;
        font-family: 'Font Awesome 6 Free';
        top: 50%;
        transform:translate(-50%, -50%);
        position: absolute;
        right: 10px;
    }
    .menu-wrapper li.menu-item-has-children.click > a:before {
        content: '\f068';
        font-weight: bold;
    }
    .menu-wrapper li a {
        border-bottom: 1px solid #277b95;
    }

    .sub-menu li a {
        padding: 10px 10px 10px 30px;
    }

    .menu-wrapper a {
        display: block;
        width: 100%;
        padding: 10px;
    }
}