/* Header CSS Start */

.main-header {
    padding: 0.9375rem 1.375rem 0.9375rem 3.75rem;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.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: #b70404;
}

.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: 50px;
}

.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: 0.8125rem;
    color: var(--black);
    font-weight: bold;
}

.getBtn {
    font-size: 1.0625rem !important;
    font-weight: 400 !important;
    color: var(--white) !important;
    background: var(--black);
    letter-spacing: 1.7px;
    padding: 8px 0.82em;
}

/* Header CSS End */