﻿.header {
    position: sticky;
    top: 0;
    right: 0;
    z-index: 5;
}
.headerContainer {
    display: flex;
    background-color:#000;
}
.headerWrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 28px 50px;
}

.headerLogoWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerLogoWrapper img{
    max-width:unset;
}
.menuWrapper {
    display: flex;
    flex-direction:column;
    align-items: center;
    width: 100%;
}
.rightHeader{
    display:flex;
    align-items:center;
    gap:40px;
}
.languageDropdown button{
    background-color:transparent;
    border:none;
}

.languageDropdown span {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    font-family: SourceSans;
}
.burgerMenuIconImage {
    cursor: pointer;
    width: 40px;
    height: 25px;
    position: relative;
    z-index: 5;
}
    .burgerMenuIconImage svg {
        position: absolute;
        top: 0;
        left: 0;
        transition: all ease 0.2s;
    }
.hoverImage {
    opacity: 0;
}

.burgerMenuIconImage.closeIcon {
    height: 15px;
}
.burgerMenuHover:not(.closeIcon):hover .cutBarLong {
    width: 32px;
    background: linear-gradient(268.46deg, #00FFFF 0.94%, #0ACBD4 99.12%);
}
.burgerMenuHover:not(.closeIcon):hover .cutBarShort {
    width: 22px;
    background: linear-gradient(268.46deg, #00FFFF 0.94%, #0ACBD4 99.12%);
    top: 15px;
}
.burgerMenuIconImage.closeIcon .cutBarLong {
    transform: rotate(45deg);
    transform-origin: center;
    clip-path: none;
    width: 20px;
    height: 4px;
    top: 9px;
}
.burgerMenuIconImage.closeIcon .cutBarShort {
    transform: rotate(-45deg);
    transform-origin: center;
    clip-path: none;
    width: 20px;
    height: 4px;
    top:9px;
}
.cutBarWrapper {
    position:relative;
}
.bar {
    background: white;
    shape-outside: inset(0);
    background-clip: padding-box;
    clip-path: polygon(0px 0, 100% 0, 100% 100%, 5px 100%);
    transition: all ease-in-out;
    position:absolute;
    transition:0.3s ease;
}
.cutBarLong {
    width: 40px;
    height: 6px;
    right: 0;
}
.cutBarShort {
    width: 24px;
    height: 6px;
    top: 20px;
    right: 0;
}
.searchIconCover{

}
.headerSearchIcon {
    min-width: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

@media (max-width:992px) {
    .headerWrapper{
        padding:20px;
    }
    .headerLogoWrapper{
        width:80px;
    }
        .headerLogoWrapper img {
            max-width: 100%;
        }
    .searchIconCover {
        display:none;
    }
    .headerItem {
        display:none;
    }
}
@media (max-width: 768px){
    .burgerMenuIconImage.closeIcon {
        height: 25px;
    }
}
@media (max-width:480px){
    .rightHeader {
        gap: 20px;
    }
    .burgerMenuIconImage {
        width: 30px;
        height: 19px;
    }
    .cutBarLong {
        width: 30px;
        height: 4px;
        right: 0;
    }
    .cutBarShort {
        width: 18px;
        height: 4px;
        top: 15px;
        right: 0;
    }
}