/* Header CSS Start */

.topBar {
    background: var(--primary);
    padding: 0.8125rem 0;
}

.topWraps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listOne {
    display: flex;
    gap: 1.25rem;
}

.listOne li a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.listOne li+li {
    border-left: 1px solid var(--white);
    padding-left: 1.25rem;
}

.listTwo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.listTwo li a {
    color: var(--white);
    font-size: 0.875rem;
}

.main-header {
    padding: 3.75rem 0 1rem 0;
    position: relative;
    z-index: 1;
}

.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: 99;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

header.fixed.sticky {
    backdrop-filter: blur(4px);
    background: #000000a6;
    padding: 0;
}

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: end;
    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: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
}

.menu>li.active>a,
.menu>li:hover>a {
    color: var(--primary);
}

.menuWrap {
    display: flex;
    justify-content: end;
    gap: 2.5rem;
    align-items: baseline;
}

.form-inline {
    gap: 1rem;
    align-items: center;
}

.form-inline a {
    background: #2C3039;
    width: 46px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--white);
    border-radius: 50px;
    font-size: 1.125rem;
}

.form-inline a span {
    font-size: 12px;
    background: var(--primary);
    width: 17px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-brand img {
    width: 600px;
}

/* Header CSS End */