/* Header CSS Start */

.main-header {
    padding: 2rem 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: var(--white);
    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: 1.75rem;
}

.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: 1rem;
    color: var(--secondary);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.menu li a:before{
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 1px;
    bottom: 0;
    transition: 0.5s ease;
    transform: scale(0);
    transform-origin: center;
}

.menu li a:hover:before{
    transform: scale(1);
}

nav.menuWrap {
    display: flex;
    align-items: center;
    gap: 9.375rem;
}

.form-inline {
    gap: 2.5rem;
}

.form-inline ul {
    display: flex;
    gap: 1.625rem;
}

.form-inline ul li a {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* Header CSS End */



section.packagesSect {
    padding: 6rem 0;
}

section.packagesSect .secHeading {
    margin-bottom: 3rem;
}

.member-card {
    background: var(--primary);
    padding: 2rem 2rem;
    clip-path: polygon(85% 0, 100% 17%, 100% 100%, 0 100%, 0 0);
}

.member-card * {
    color: var(--white);
}

.member-card ul {
    list-style: disc;
    list-style-position: inside;
    margin: 1.5rem 0;
}

.member-card ul li + li {
    border-top: 1px solid var(--white);
    margin-top: 6px;
    padding-top: 6px;
}

.pkgsBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pkgsBtn .themeBtn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 4em;
}

.pkgsBtn h4 span {
    font-size: 1rem;
}

.pkgsBtn h4 {
    font-size: 2rem;
    display: flex;
    align-items: end;
    gap: 10px;
    margin: 0;
}