header{
    background-color: #000;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;    
    height: auto;
    transition: all 0.4s ease-in;
}

.solid header {
    transition: all 0.4s ease-in;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.menu-item{
    padding: 10px;
}
.menu-item a{
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease-in;  
    position: relative ;
      font-family: Arial, Helvetica, sans-serif;
}
.menu-item a:hover{
    color: #ed0b6d;
    transition: all 0.3s ease-in;
}

.solid header .menu-item a{
    font-size: 14px;
    transition: all 0.4s ease-in;
}
.menu-item a::after, 
.menu-item a::before {
    content: '';
    position: absolute;
    top: calc(100% + 3px);
    width: 0;
    right: 0;
    height: 1px;
}

.menu-item a::before {
    transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    background: #f7e114;
}
.menu-item a::after {
    transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    background: #ed0b6d;
}

.menu-item a:hover::after, 
.menu-item a:hover::before {
    width: 100%;
    left: 0;
}
.headerCta svg{
    transform: rotate(319deg);
    width: 30px;
    height: 30px;
    fill: #111111;
    transition: all 0.3s ease;;
}

.headerCta{
    color: #111111;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #1aded4;
    transition: all 0.3s ease, visibility 0s;
    border-radius: 10px;
    width: fit-content;
    height: fit-content;
    padding: 5px 30px;
    gap: 6px;
    border: 1px solid #1aded4;
     transition: all 0.4s ease-in;
}
.headerCta:hover{
    background-color: #111;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}
.headerCta:hover svg{
    transform: rotate(2deg);
    fill: #FFFFFF;
    transition: all 0.3s ease;
}
.solid header .headerCta{
    font-size: 16px;
    padding: 5px 10px;
    gap: 5px;
    transition: all 0.4s ease-in;
}
.closemegamenu {
    display: none;
}
.linksWrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.solid header .brandLogo img{
    width: 160px;
    transition: all 0.4s ease-in;
}

.solid .linksWrap{
    gap: 200px;
}