.menu-container {
    background-color: #031633;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

ul.pc-menu {
    display: inline-flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* flags */

.ul-flags {
    height: 56px;
    display: inline-flex;
}

.ul-flags li {
    display: flex;
    align-items: center;
    padding: 0 12px 0 0;
}

.a-flag.en {
    background-image: url("../img/flags/en.svg");
}

.a-flag.tr {
    background-image: url("../img/flags/tr.svg");
}

.a-flag {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    font-size: 18px;
    perspective: 1000px;
    z-index: 100;
}

/* eof flags */

.dropdown {
    padding: 16px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    font-size: 18px;
    perspective: 1000px;
    z-index: 100;
}

.dropdown:hover {
    background: #07264c;
    cursor: pointer;
}

.dropdown:hover .dropdown_menu li {
    display: block;
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* width: 100%; */
    width: max-content;
    perspective: 1000px;
    z-index: -1;
}

.dropdown_menu li {
    display: none;
    color: #fff;
    background-color: #193b66;
    padding: 10px 32px;
    font-size: 16px;
    opacity: 0;
}

.dropdown_menu li:hover {
    background-color: #2a568c;
}

.dropdown:hover .dropdown_menu--animated {
    display: block;
}

.dropdown_menu--animated {
    display: none;
}

.dropdown_menu--animated li {
    display: block;
    opacity: 1;
}

.rot-x-menu .dropdown_item-1 {
    transform-origin: top center;
    animation: rotateX 250ms 50ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-2 {
    transform-origin: top center;
    animation: rotateX 250ms 100ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-3 {
    transform-origin: top center;
    animation: rotateX 250ms 150ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-4 {
    transform-origin: top center;
    animation: rotateX 250ms 200ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-5 {
    transform-origin: top center;
    animation: rotateX 250ms 250ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-6 {
    transform-origin: top center;
    animation: rotateX 250ms 300ms ease-in-out forwards;
}

.rot-x-menu .dropdown_item-7 {
    transform-origin: top center;
    animation: rotateX 250ms 350ms ease-in-out forwards;
}

.dropdown_menu--animated {
    display: none;
}

.dropdown_menu--animated li {
    display: block;
    opacity: 1;
}
.dropdown_item-1 ul li {
    display: none;
}

.fa-caret-right {
    float: right;
    padding: 5px 16px;
}

.sub_menu {
    display: none;
}

.hover-me:hover .sub_menu{
    position: absolute;
    display: block;
    margin-top: -34px;
    left: 100%;
    margin-left: 0;
    /* width: 100%; */
    width: max-content;
    perspective: 1000px;
    z-index: -1;
}

@-moz-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@-webkit-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@-o-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@media (max-width: 1450px) {
    .dropdown {
        padding: 16px 16px;
    }

    .dropdown_menu li {
        padding: 10px 16px;
    }
}

@media (max-width: 1200px) {
    .dropdown {
        padding: 16px 8px;
    }

    .dropdown_menu li {
        padding: 10px 8px;
    }
}

.li-mobile-section-header {
    color: #fff;
    background-color: #2a568c;
    text-align: center;
    width: 100%;
    border-top: 2px solid #2a568c;
    border-bottom: 2px solid #2a568c;
    font-size: 18px;
    padding: 6px 0;
    text-transform: uppercase;
}
.li-mobile-section-header-coution {
    color: #fff;
    text-align: center;
    width: 100%;
    border-top: 2px solid #2a568c;
    border-bottom: 2px solid #2a568c;
    font-size: 10px;
    padding: 2px 0;
    text-transform: uppercase;
}