:root {
    --header_height: 70PX;
}

/* main */
main {
    margin-top: calc(var(--header_height) + 40px);
}

#menu-languageset {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-item a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.header {
    width: 100%;
    height: var(--header_height);
    padding: 15px 50px 15px 50px;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100;
    top: 0px;
    transition: all 0.5s 0.1s linear;
    background-color: #1d0b331f;
    backdrop-filter: blur(34px);
}

/* .scrolled {
} */

.headerMainContent {
    padding: 30px 50px 30px 50px;
    height: 65PX;
    line-height: 40px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 4;
    border-radius: 0px 0px 10px 10px;

}

.logo-wraper {
    width: 80px;
    height: 80px;
    line-height: 50px;
    text-align: center;
}

.logo-wraper img {
    width: 100%;
    height: 100%;
}

.menoes-container {
    transition: all 1s 0.1s linear;
    width: 63%;
}

.menoes-container ul {
    font-size: 25px;
}

.logo-burgermeno {
    width: 100px;
    height: 100px;
    display: none;
}

.logo-burgermeno img {
    width: 100%;
    height: 100%;
}

.changeLanguage ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-right: 10px;
}


.change-language-btn {
    width: 25px;
    height: 20px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-language-btn:active {
    box-shadow: 0px 0px 6px 0px aqua;

}

.burgermenoContainerDiv {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    right: 0px;
    top: 0px;
    cursor: pointer;
}


.line1 {
    width: 28px;
    height: 2px;
    /* background-color: #0145a8; */
    background-color: var(--gradient1);
    transition: all 1s 0.1s linear;
}

.line2 {
    width: 28px;
    height: 2px;
    /* background-color: #0145a8; */
    background-color: var(--gradient2);
    transition: all 1s 0s linear;
}

.line3 {
    width: 28px;
    height: 2px;
    background-color: var(--gradient1);
    /* background-color: #0145a8; */
    transition: all 1s 0.1s linear;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style-type: none;
    gap: 20px;
}


.meno-logo-burger {
    display: none;
}

.menu li a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.menu li a::after {
    content: "";
    width: 135%;
    height: 2px;
    position: absolute;
    background: var(--hover-gradient);
    border-radius: 24px;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%) scale(0%);
    z-index: -1;
    transition: all 0.4s 0.1s ease;
}

.menu li a:hover::after {
    transform: translateX(-50%) scale(1);
}
.menoes-container-responsive {
    display: none;
}
/* key frames */


@keyframes logo-burgermeno-shine {
    0% {
        transform: translateX(175px) scale(0);
    }

    100% {
        transform: translateX(0px) scale(1);
    }
}

@keyframes logo-burgermeno-fall {
    0% {
        transform: translateX(0px) scale(1);
    }

    100% {
        transform: translateX(175px) scale(0);
    }

}


/* medias */

@media (min-width: 768px) and (max-width: 950px) {
    .menoes-container ul {
        font-size: 20px;
    }

    .menu li::after {
        width: 135%;
        color: #ff676e;
    }
}

@media (max-width : 800px) {
    .header {
        justify-content: space-between;
    }

    .menoes-container {
        display: none;
    }

    /* for header */
    .menoes-container-responsive ul {
        flex-direction: column;
        gap: 20px;
    }

    .menoes-container-responsive ul li {
        font-size: 30px;
    }

    .logo-burgermeno {
        display: block;
        margin-top: 50px;
        margin-right: auto;
        margin-left: auto;

    }

    .logo-burgermeno-shineAnimate {
        animation-name: logo-burgermeno-shine;
        animation-duration: 1s;
        /* animation-delay: 1s; */
        animation-timing-function: linear;
    }

    .logo-burgermeno-fallAnimate {
        animation-name: logo-burgermeno-fall;
        animation-duration: 1s;
        /* animation-delay: 1s; */
        animation-timing-function: linear;

    }

    .burgermenoContainerDiv {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        visibility: visible;
    }

    #menu-fa-menue,
    #menu-en-menue {
        flex-direction: column;
        gap: 20px;
    }

    .menu li {
        font-size: 25px;
    }


    .menoes-container-responsive {
        display: block;
        position: fixed;
        right: 0px;
        width: 50vw;
        height: 100vh;
        background: #1d0b331f;
        z-index: 100;
        top: var(--header_height);
        backdrop-filter: blur(34px);
        padding-top: 75px;
        right: -50vw;
        transition: all 1s 0.1s linear;
    }
}





.page_item {
    color: white;
}

.wpadminbar {
    display: none;
}