/* Overrides */

:root {
    --height: 80px;
}

body.elementor-kit-6 header>nav>ul>li>a {
    font-family: "DINPro", Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 30px 17px 27px 17px;
    color: var(--e-global-color-text);
    text-decoration: none;
    white-space: nowrap;
}

body.elementor-kit-6 header .current_page_item>a,
body.elementor-kit-6 header a:hover,
body.elementor-kit-6 header nav ul .mega-link:hover>a {
    text-decoration: underline;

    text-underline-offset: 3px;
}

/* Header + Nav */

header {
    position: sticky;
    height: var(--height);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--light-c);
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    transition: top .3s ease;

    -webkit-box-shadow: -5px 5px 21px 2px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 5px 21px 2px rgba(0, 0, 0, 0.1);
}

.admin-bar header {
    top: 2rem;
}

header nav,
header .additionals {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 1.5rem;
}

header img.custom-logo {
    max-height: 60px;
    width: 100%;
    margin-top: 10px;
    min-width: 160px;
}

header img.custom-logo:hover {
    opacity: .8;
}

header ul {
    list-style-type: none;
    display: flex;
}


header ul>li>ul {
    display: none;
    position: absolute;
    flex-direction: column;
    background: var(--e-global-color-18dd294);
    padding: 0rem 1rem 0 1rem;
    margin-top: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


header ul>li>ul>li {
    font-size: 1.3rem;
}

header ul>li:hover>ul {
    display: block;
}


header ul>li .sub-menu a {
    padding: .25rem 0;
    color: #fff;
}


header ul>li>ul>li a {
    padding: .25rem 0;
    color: #fff;
}

header ul>li>ul>li:first-child {
    padding-top: .5rem;
}

header ul>li>ul>li:last-child {
    padding-bottom: .5rem;
}



/* Mega Menu */

#megamenu>ul>div>.elementor>.elementor-element.e-con>.e-con-inner {
    padding: 3rem var(--standard-p-side) 3.5rem var(--standard-p-side);
}

header nav ul .mega-link>a {
    pointer-events: none;
}

header nav ul .mega-link:hover {
    cursor: pointer;
}


#megamenu {
    position: fixed;
    height: var(--height);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}


#megamenu>ul {
    padding: 0;
}


#megamenu>ul>div {
    position: absolute;
    top: var(--height);
    width: 100%;
    transition: opacity .3s ease 0s, visibility 0s linear 0s, transform .5s ease .1s;
    box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.28);
    transform: translateY(-100px);

}

#megamenu>ul>div:not(.open) {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease 0s, visibility 0s linear .3s, transform .3s ease 0s;
    max-height: calc(100vh - var(--height));
}

#megamenu>ul>div.open {
    transition: opacity .3s ease 0s, visibility 0s linear 0s, transform .3s ease 0s;
    transform: translateY(0px);
}


#megamenu .elementor-icon-list-items a .elementor-icon-list-text {
    opacity: .5;
}

#megamenu .elementor-icon-list-items a:hover .elementor-icon-list-text {
    opacity: 1;
}

/* .fa */

.overlay-open .menu-item .fa svg {
    transform: rotate(0deg);
}

.menu-item .fa svg {
    width: 10px;
    margin-left: 2px;
    transform: rotate(-90deg);
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/*.fa-angle-down:before {
    content: "\f107";
}*/

header nav>ul>li>a>svg {
    transform: translate(-3px, -1.5px) rotate(-90deg);
    transition: transform .2s ease;
}

header nav>ul>li:hover>a>svg {
    transform: translate(-2px, 0px) rotate(0deg);
}




/* Burger */

body .burger-menu {
    width: 36px;
    display: block;
    transition: all 0.3s;
    cursor: pointer;
    height: 28px;
}

body .burger-menu .bar {
    transition: all 0.3s;
    height: 3px;
    width: 100%;
    display: block;
    background-color: #1B2126;
    border-radius: 2px;

}

html .burger-menu .bar:nth-of-type(2) {
    margin: 8px 0;
}

html:not(.zeynep-opened) .burger-menu {
    transition-delay: 0.3s;
}

html:not(.zeynep-opened) .burger-menu .bar {
    float: left;
}

html:not(.zeynep-opened) .burger-menu .bar:nth-of-type(2) {
    width: 28px;
    transition-property: margin, height, width;
    transition-delay: 0.3s, 0.3s, 0s;
}

html:not(.zeynep-opened) .burger-menu .bar:nth-of-type(3) {
    width: 32px;
}

html:not(.zeynep-opened) .burger-menu:hover .bar:nth-of-type(2) {
    width: 100%;
}

html:not(.zeynep-opened) .burger-menu:hover .bar:nth-of-type(3) {
    width: 100%;
}





@media only screen and (max-width: 1182px) {
    header nav ul {
        display: none;
    }

}


@media only screen and (max-width: 350px) {

    header img.custom-logo {
        max-height: 50px;
        width: 100%;
        margin-top: 15px;
    }

}


@media only screen and (min-width: 1182.01px) {
    #burger-menu {
        display: none;
    }
}


/* overlay */
body {
    --over-dur: .5s;
}

html.zeynep-opened body:after,
body.overlay-open:after {
    opacity: 1;
    visibility: visible;
    transition: visibility .0s linear, opacity var(--over-dur) ease .05s;
}

html.zeynep-opened body:after {
    z-index: 100;
}

body:after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: fixed;
    background: #000c18a2;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: visibility .0s linear var(--over-dur), opacity var(--over-dur) ease 0s;
}


body .with_tag a[title] {
    position: relative;
align-content}


body .with_tag a[title]:before {
    content: attr(title);
    position: absolute;
    font-size: .8rem;
    color: var(--e-global-color-1030e3c);
    right: 4px;
    top: 18px;
    background: var(--tag-bg);
    padding: 0rem .2rem;
    border-radius: 3px;
}

.zeynep a[target=_blank]:after,
header nav ul a[target=_blank]:after {
    content: "↗";
    font-size: .6rem;
    display: inline-block;
    position: absolute;
    top: 33px;
    right: 7px;
}

.zeynep a[target=_blank]:after {
    top: -1px;
    right: 1.8rem;
}


.zeynep a[target=_blank],
header nav ul a[target=_blank] {
	z-index:-1;
    position: relative;

}