/* Header CSS Start */

.main-header {
    padding: .5rem 0;
    position: relative;
    z-index: 1;
    background: #fff;
    /*backdrop-filter: blur(24px);*/
}

.main-header:before {
    content: none;
    position: absolute;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    z-index: -1;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

header.fixed.sticky {
    backdrop-filter: blur(4px);
    background: #000000a6;
    padding: 0;
    box-shadow: rgb(149 157 165 / 12%) 0px 4px 20px;
}

header.fixed.sticky nav.menuWrap a img {
    max-width: 41%;
}

header.fixed.sticky .top-header {
    display: none;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: var(--white);
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menuWrap .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: initial;
    gap: 2rem;
}

.main_nav {
    background: var(--primary);
}

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.menu li:last-child {
    padding-right: 0;
}

.menu li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    opacity: 60%;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
}

.menu>li.active>a,
.menu>li:hover>a {
    color: var(--black);
    opacity: 100%;
}

.topBar {
    background: var(--black);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.topBar ul {
    animation: scrollText 30s linear infinite;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topBar ul li {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.35px;
    display: inline-block;
}

.topBar ul li i {
    color: var(--primary);
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

nav.menuWrap {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    /*width: 60%;*/
    /*margin-left: auto;*/
}

.form-inline {
   gap: 1rem;
  justify-content: end;
    
}


.form-inline a {
    color: var(--black);
    opacity: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 16px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
.form-inline a:hover{     background-color: rgb(0 0 0 / .1); }

/* Header CSS End */