* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.eot');
    src: url('../fonts/DMSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff'),
        url('../fonts/DMSans-Regular.ttf') format('truetype'),
        url('../fonts/DMSans-Regular.svg#DMSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-SemiBold.eot');
    src: url('../fonts/DMSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSans-SemiBold.woff2') format('woff2'),
        url('../fonts/DMSans-SemiBold.woff') format('woff'),
        url('../fonts/DMSans-SemiBold.ttf') format('truetype'),
        url('../fonts/DMSans-SemiBold.svg#DMSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('  fonts/DMSans-Medium.eot');
    src: url('../fonts/DMSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DMSans-Medium.woff') format('woff'),
        url('../fonts/DMSans-Medium.ttf') format('truetype'),
        url('../fonts/DMSans-Medium.svg#DMSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.eot');
    src: url('../fonts/DMSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../fonts/DMSans-Bold.woff') format('woff'),
        url('../fonts/DMSans-Bold.ttf') format('truetype'),
        url('../fonts/DMSans-Bold.svg#DMSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat-Bold.eot');
    src: url('../fonts/Caveat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Caveat-Bold.woff2') format('woff2'),
        url('../fonts/Caveat-Bold.woff') format('woff'),
        url('../fonts/Caveat-Bold.ttf') format('truetype'),
        url('../fonts/Caveat-Bold.svg#Caveat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



:root {
    --font-dm-sans: 'DM Sans';
    --font-caveat: 'Caveat';
    --black-color: #000000;
    --white-color: #ffffff;
    --gray-color: #656E71;
    --skyblue-color: #0A94CC;
    --logo-color: #1EC0DB;
    --font-bold-700: 700;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
ul li,
p,
.btn,
span,
.accordion .accordion-item .accordion-body {
    font-family: var(--font-dm-sans);
    margin: 0;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    color: var(--black-color);
}

ul li,
p {
    color: var(--gray-color);
    font-size: 18px;
    line-height: 28px;
}

ul {
    margin: 0;
}

h1 {
    font-size: 65px;
    line-height: 75px;
}

h2 {
    font-size: 50px;
    line-height: 60px;
}

.highlighted_text {
    color: var(--skyblue-color);
}

.btn {
    padding: 10px 45px 10px 15px;
    background: var(--black-color);
    color: var(--white-color);
    font-size: 16px;
    line-height: 21px;
    border-radius: 50px;
    border: 0;
}

.btn-primary {
    background: var(--black-color);
    color: var(--white-color);
    transition: ease .6s;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--white-color);
    box-shadow: 4px 4px 15px 0 rgba(0,0,0,0.1);
    color: var(--black-color);
    border: 1px solid var(--black-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: unset;
    right: 15px;
    top: 0;
    bottom: 0;
    background: url(../icons/arrow-icon.svg) no-repeat;
    background-size: 100%;
    width: 15px;
    height: 13px;
    margin: auto;
    transform: rotate(-45deg);
    border-radius: 100%;
    z-index: 1;
    margin: auto;
}

.btn-primary:after {
    content: '';
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    background: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin: auto;
}
.btn-primary:hover:before {
    transform: rotate(0);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(170deg) brightness(105%) contrast(108%);
}
.btn-primary:hover:after {
    background: var(--black-color);
}
.btn-secondary {
    padding: 10px 20px;
    background: var(--white-color);
    color: var(--gray-color);
    box-shadow: 4px 4px 15px 0 rgba(0,0,0,0.1);
    border: 1px solid transparent;
}
.btn-secondary:hover {
    background: var(--skyblue-color);
    color: var(--white-color);
    border: 1px solid var(--skyblue-color);
}
.two_btns {
    display: flex;
    gap: 10px;
}

.btn-primary, .btn-primary:before, .btn-primary:after,
.btn-secondary  {
    transition: ease .6s;
}

.btn-primary {
    position: relative;
}











/* Common Resposnive CSS */

@media(min-width:576px) {
    .row>* {
        padding: 0;
    }
}

@media(max-width:1400px) {
    h1 {
        font-size: 55px;
        line-height: 65px;
    }
}

@media(max-width:1200px) {
    h1 {
        font-size: 45px;
        line-height: 55px;
    }
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media(max-width:992px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 30px;
        line-height: 40px;
    }
    h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

@media(max-width:576px) {
    p, 
    ul li {
        font-size: 16px;
        line-height: 26px;
    }
    h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .btn {
        padding: 8px 40px 8px 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .btn-secondary {
        padding: 8px;
    }
    .btn-primary:after {
        width: 25px;
        height: 25px;
    }
    .btn-primary::before {
        right: 14px;
        width: 12px;
        height: 10px;
    }
}




















/* Gift a GenS Membership */
.subscription_header,
.subscription_header .container,
.testimonials,
.testimonials .loved_trusted,
.testimonials .loved_trusted li,
.our_plans .plan,
.gift_steps,
.gift_steps .steps li,
.gens_faqs {
    position: relative;
}

/* Firefox-specific adjustment */



/* Header */
.subscription_header {
    margin: 0;
}
.subscription_header .container .row:last-child {
    padding: 50px 0 0 0;
    align-items: center;
}
.subscription_header:before {
    content: '';
    position: absolute;
    top: 150px;
    left: -400px;
    background: radial-gradient(rgba(52, 182, 214, 0.15), rgba(52, 182, 214, 0));
    width: calc(55vw + 250px);
    height: calc(55vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
.subscription_header:after {
    content: '';
    position: absolute;
    top: 150px;
    right: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.15), rgba(255, 207, 6, 0));
    height: calc(55vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    opacity: 0.4;
    aspect-ratio: 1 / 2;
}
.subscription_header .container:before {
    content: '';
    position: absolute;
    top: -150px;
    right: 50px;
    background: radial-gradient(rgba(193, 139, 225, 0.2), rgba(193, 139, 225, 0));
    width: calc(25vw + 250px);
    height: calc(25vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
/* .subscription_header .container:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/gens-life-helps-header-arrow.svg) no-repeat;
    background-size: 100%;
    width: 930px;
    height: 250px;
} */
.subscription_header h1 {
    letter-spacing: -2px;
    width: 98%;
}
.subscription_header p {
    margin: 20px 0 30px 0;
}

.subscription_header h1 img {
    width: 50px;
    margin: -10px -5px 0 -5px;
}
.subscription_header h1 .help_icon {
    margin: -10px -5px 0 -5px;
}
.subscription_header .older_adults_img {
    margin: 0 -50px 0 50px;
}
.subscription_header .gens_helps_arrow {
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 60vw;
}




@media(max-width:1400px) {
    .subscription_header h1 {
        width: 92%;
    }
}


@media(max-width:1200px) {
    .subscription_header h1 {
        letter-spacing: 0;
        width: 85%;
    }
    .subscription_header p {
        width: 90%;
    }
    .subscription_header h1 img {
        width: 40px;
    }
}



@media(max-width:992px) {
    .subscription_header h1, 
    .subscription_header p {
        width: 100%;
    }
    .subscription_header .container .row:last-child {
        gap: 50px;
    }
    .subscription_header h1 img {
        width: 30px;
    }
    .subscription_header h1 img,
    .subscription_header h1 .help_icon {
        margin: -5px 0 5px 0;
    }
    .subscription_header .older_adults_img {
        margin: 0;
    }
    .subscription_header .gens_helps_arrow {
        position: unset;
        width: 100vw;
        margin: 20px 0 0 0;
    }
}


@media(max-width:768px) {
    .subscription_header:after {
        right: 0;
    }
    .subscription_header h1 br {
        display: none;
    }
    .subscription_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
}



@media(max-width:576px) {
    .subscription_header h1 img {
        width: 25px;
        margin: -5px 0 5px 0;
    }
}












/* Stories of Joy, Care, and Peace of Mind */
.testimonials {
    padding: 250px 0 0 0;
}
.testimonials:before {
    content: '';
    position: absolute;
    top: 300px;
    bottom: 0;
    left: -300px;
    background: radial-gradient(rgba(52, 182, 214, 0.15), rgba(52, 182, 214, 0));
    width: calc(30vw + 250px);
    height: calc(30vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.testimonials:after {
    content: '';
    position: absolute;
    top: 300px;
    bottom: 0;
    right: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.2), rgba(255, 207, 6, 0));
    height: calc(20vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    opacity: 0.4;
    aspect-ratio: 1 / 2;
    margin: auto;
}

.active_users {
    padding: 25px;
    background: var(--white-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0px auto;
    gap: 15px;
    box-shadow: 0 1.204px 16.858px 0 rgba(0, 0, 0, 0.10), 0 1.204px 1.204px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(13.60612964630127px);
    width: 35%;
}
.active_users img {
    width: 120px;
    filter: drop-shadow(0 1.204px 12.042px rgba(0, 0, 0, 0.10)) drop-shadow(0 1.204px 1.204px rgba(0, 0, 0, 0.15));

}
.active_users p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    width: 66%;
}


.loved_trusted {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 80px 0 0 0;
    flex-wrap: wrap;
    justify-content: center;
}
.loved_trusted:before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    background: radial-gradient(rgba(193, 139, 225, 0.25), rgba(193, 139, 225, 0));
    width: calc(55vw + 250px);
    height: calc(5vw + 250px);
    filter: blur(50px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.loved_trusted li {
    padding: 12px;
    border-radius: 20px;
    width: 33%;
    transition: ease .6s;
    cursor: pointer;
    border: 2px solid var(--white-color);
}
.loved_trusted li.active {
    z-index: 2;
}
.loved_trusted li:nth-child(1) {
    background: #DCF7FE;
    transform: rotate(5deg) scale(1);
}
.loved_trusted li:nth-child(1).active {
    transform: rotate(5deg) scale(1.1);
}
.loved_trusted li:nth-child(2) {
    background: #C5D6F9;
    transform: rotate(0deg) scale(1);
}
.loved_trusted li:nth-child(2).active {
    transform: rotate(0deg) scale(1.1);
}
.loved_trusted li:nth-child(3) {
    background: #FEF7D4;
    transform: rotate(355deg) scale(1);
}
.loved_trusted li:nth-child(3).active {
    transform: rotate(355deg) scale(1.1);
}
.loved_trusted li:nth-child(4) {
    background: #FEEBDC;
    margin: -250px 0 0 0;
    transform: rotate(358deg) scale(1);
}
.loved_trusted li:nth-child(4).active {
    transform: rotate(358deg) scale(1.1);
}
.loved_trusted li:nth-child(5) {
    background: #E0DBF2;
    margin: -250px 10px 0 10px;
    transform: rotate(1deg) scale(1);
}
.loved_trusted li:nth-child(5).active {
    transform: rotate(1deg) scale(1.1);
}
.loved_trusted li:nth-child(6) {
    background: #F9CCC5;
    margin: -250px 0 0 0;
    transform: rotate(0deg) scale(1);
}
.loved_trusted li:nth-child(6).active {
    transform: rotate(0deg) scale(1.1);
}
.loved_trusted li .testimonial_text {
    padding: 24px 18px;
    background: var(--white-color);
    border-radius: 14px;
    margin: 0 0 15px 0;
}
.loved_trusted li .testimonial_text p {
    margin: 10px 0 0 0;
}
.loved_trusted li .testimonial_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.loved_trusted li .testimonial_info div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.loved_trusted li:nth-child(1):after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    background: url(../icons/calender-icon.png) no-repeat;
    background-size: 100%;
    width: 50px;
    height: 55px;
    transform: rotate(16deg);
} 
.loved_trusted li:nth-child(3):after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    background: url(../icons/heart-eyes-emoji.png) no-repeat;
    background-size: 100%;
    width: 50px;
    height: 50px;
}
.loved_trusted li:nth-child(6):after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    background: url(../icons/gens-life-icon.png) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 45px;
    transform: rotate(345deg);
}

@media(max-width:1400px) {
    .testimonials {
        padding: 200px 0 0 0;
    }
    .active_users {
        width: 40%;
    }
}




@media(max-width:1200px) {
   
    .loved_trusted li {
        padding: 10px;
    }
    .loved_trusted li .testimonial_text {
        padding: 15px;
    }
    .loved_trusted li .testimonial_info div .author_img {
        width: 45px;
    }
    .loved_trusted li .testimonial_text p,
    .loved_trusted li .testimonial_info div p {
        font-size: 16px;
        line-height: 26px;
    }
    .loved_trusted li .testimonial_info img {
        width: 65px;
    }
    .active_users {
        width: 47%;
    }
}






@media(max-width:992px) {
    .testimonials h2 br {
        display: none;
    }
    .testimonials {
        padding: 50px 0 0 0;
    }
    .loved_trusted {
        margin: 70px 0 0 0;
    }
    .loved_trusted li .testimonial_text {
        padding: 15px;
    }
    .loved_trusted li .testimonial_info div .author_img {
        width: 35px;
    }
    .loved_trusted li .testimonial_info div p {
        font-size: 15px;
        line-height: 25px;
    }
    .loved_trusted li .testimonial_info img {
        width: 60px;
    }
    .active_users {
        width: 62%;
    }
    .loved_trusted:before {
       display: none;
    }
}










@media(max-width:768px) {
    .active_users,
    .active_users p {
        width: 100%;
    }
    .active_users {
        padding: 20px;
        justify-content: flex-start;
    }
    .active_users img {
        width: 90px;
    }
    .loved_trusted li {
        width: 50%;
    }
    .loved_trusted li:nth-child(3),
    .loved_trusted li:nth-child(4),
    .loved_trusted li:nth-child(5),
    .loved_trusted li:nth-child(6) {
        margin: -150px 0 0 0;
    }
}



@media(max-width:576px) {
    .loved_trusted {
        gap: 20px;
    }
    .loved_trusted li {
        width: 100%;
        margin: 0 !important;
    }
    .loved_trusted li:nth-child(1) {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(1).active {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(2) {
        transform: rotate(358deg) scale(1);
    }
    .loved_trusted li:nth-child(2).active {
        transform: rotate(358deg) scale(1);
    }
    .loved_trusted li:nth-child(3) {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(3).active {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(4) {
        transform: rotate(358deg) scale(1);
    }
    .loved_trusted li:nth-child(4).active {
        transform: rotate(358deg) scale(1);
    }
    .loved_trusted li:nth-child(5) {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(5).active {
        transform: rotate(2deg) scale(1);
    }
    .loved_trusted li:nth-child(6) {
        transform: rotate(358deg) scale(1);
    }
    .loved_trusted li:nth-child(6).active {
        transform: rotate(358deg) scale(1);
    }
    .active_users {
        padding: 20px 15px;
    }
    .active_users img {
        width: 70px;
    }
    .active_users p {
        font-size: 14px;
        line-height: 24px;
    }
    .loved_trusted li:nth-child(1):after,
    .loved_trusted li:nth-child(3):after,
    .loved_trusted li:nth-child(6):after {
        top: -20px;
        left: unset;
        right: 40px;
    }
}






















/* Choose a Plan, Step Into the Gen S Life */
.choose_plan {
    padding: 150px 0 0 0;
}
.choose_plan h2 {
    width: 50%;
    margin: 0px auto;
}
.choose_plan p {
    width: 70%;
    margin: 20px auto 50px auto;
}
.choose_plan .btn-primary {
    display: table;
    margin: 40px auto 0 auto;
}
.plan_table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: table;
    font-family: var(--font-dm-sans);
    border: 0;
}

.plan_table table th {
    color: var(--black-color);
    padding: 25px 20px;
    vertical-align: middle;
    text-align: center;
    border-radius: 15px 15px 0 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}
.plan_table thead tr th:nth-child(1) {
    width: 20%;
}
.plan_table thead tr th:nth-last-child(-n + 3) {
    width: 10%;
    vertical-align: top;
}
.plan_table thead tr th:nth-child(-n + 2) {
    background: radial-gradient(301.25% 391.19% at 9.97% 95.88%, rgba(255, 255, 255, 0.70) 0%, rgba(101, 110, 113, 0.70) 100%);
    backdrop-filter: blur(25px);
}
.plan_table thead tr th:nth-child(3) {
    background: radial-gradient(148.45% 148.45% at 50.28% 100%, rgba(255, 255, 255, 0.70) 0%, rgba(193, 139, 225, 0.70) 100%);
    backdrop-filter: blur(25px);
}
.plan_table thead tr th:nth-child(4) {
    background: radial-gradient(156.7% 156.7% at 50.28% 100%, rgba(255, 255, 255, 0.70) 0%, rgba(10, 148, 204, 0.70) 100%);
    backdrop-filter: blur(25px);
}
.plan_table thead tr th:nth-child(5) {
    background: radial-gradient(131.96% 131.96% at 38.37% 100%, rgba(255, 255, 255, 0.70) 0%, rgba(243, 136, 35, 0.70) 100%);
    backdrop-filter: blur(25px);
}
.plan_table tbody tr td:nth-last-child(-n + 3) {
    text-align: center;
}
.plan_table tbody tr td:first-child {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    vertical-align: top;
}
.plan_table tbody tr td:first-child span,
.plan_table table th span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--gray-color);
    display: block;
    margin: 10px 0 0 0;
}
.plan_table table td {
    padding: 15px 50px;
    text-align: left;
    border: 0 !important;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color);
    backdrop-filter: blur(25px);
}
.plan_table tbody tr:nth-child(68) td:first-child, 
.plan_table tbody tr:last-child td {
    border-radius: 0 0 15px 15px;
}
.plan_table .desktop_hide_td {
    display: none;
}
.plan_table tbody tr:nth-child(1) td:first-child,
.plan_table tbody tr:nth-child(1) td {
    background: rgba(255, 244, 244, 0.80);
}
.plan_table tbody tr:nth-child(2) td {
    background: rgba(255, 225, 225, 0.70);
}

.plan_table tbody tr:nth-child(3) td:first-child,
.plan_table tbody tr:nth-child(3) td,
.plan_table tbody tr:nth-child(5) td,
.plan_table tbody tr:nth-child(7) td {
    background: #F7FBFF;
}
.plan_table tbody tr:nth-child(4) td,
.plan_table tbody tr:nth-child(6) td {
    background: #E3F0FF;
}

.plan_table tbody tr:nth-child(8) td:first-child,
.plan_table tbody tr:nth-child(8) td,
.plan_table tbody tr:nth-child(10) td,
.plan_table tbody tr:nth-child(12) td,
.plan_table tbody tr:nth-child(14) td,
.plan_table tbody tr:nth-child(16) td, 
.plan_table tbody tr:nth-child(18) td, 
.plan_table tbody tr:nth-child(20) td, 
.plan_table tbody tr:nth-child(22) td, 
.plan_table tbody tr:nth-child(24) td, 
.plan_table tbody tr:nth-child(26) td, 
.plan_table tbody tr:nth-child(28) td, 
.plan_table tbody tr:nth-child(30) td {
    background: #FBFFFC;
}
.plan_table tbody tr:nth-child(9) td,
.plan_table tbody tr:nth-child(11) td, 
.plan_table tbody tr:nth-child(13) td, 
.plan_table tbody tr:nth-child(15) td, 
.plan_table tbody tr:nth-child(17) td, 
.plan_table tbody tr:nth-child(19) td, 
.plan_table tbody tr:nth-child(21) td, 
.plan_table tbody tr:nth-child(23) td, 
.plan_table tbody tr:nth-child(25) td, 
.plan_table tbody tr:nth-child(27) td, 
.plan_table tbody tr:nth-child(29) td, 
.plan_table tbody tr:nth-child(31) td {
    background: #EAFCED;
}

.plan_table tbody tr:nth-child(32) td:first-child,
.plan_table tbody tr:nth-child(32) td, 
.plan_table tbody tr:nth-child(34) td, 
.plan_table tbody tr:nth-child(36) td, 
.plan_table tbody tr:nth-child(38) td, 
.plan_table tbody tr:nth-child(40) td, 
.plan_table tbody tr:nth-child(42) td, 
.plan_table tbody tr:nth-child(44) td {
    background: #FFFAF9;
}
.plan_table tbody tr:nth-child(33) td, 
.plan_table tbody tr:nth-child(35) td, 
.plan_table tbody tr:nth-child(37) td, 
.plan_table tbody tr:nth-child(39) td, 
.plan_table tbody tr:nth-child(41) td, 
.plan_table tbody tr:nth-child(43) td, 
.plan_table tbody tr:nth-child(45) td {
    background: #FDEDE6;
}

.plan_table tbody tr:nth-child(46) td:first-child,
.plan_table tbody tr:nth-child(46) td,
.plan_table tbody tr:nth-child(48) td {
    background: #F9F4FC;
}
.plan_table tbody tr:nth-child(47) td {
    background: #F1E4F8;
}

.plan_table tbody tr:nth-child(49) td:first-child,
.plan_table tbody tr:nth-child(49) td,
.plan_table tbody tr:nth-child(51) td, 
.plan_table tbody tr:nth-child(53) td, 
.plan_table tbody tr:nth-child(55) td, 
.plan_table tbody tr:nth-child(57) td, 
.plan_table tbody tr:nth-child(59) td {
    background: #F1F9FD;
}
.plan_table tbody tr:nth-child(50) td, 
.plan_table tbody tr:nth-child(52) td, 
.plan_table tbody tr:nth-child(54) td, 
.plan_table tbody tr:nth-child(56) td, 
.plan_table tbody tr:nth-child(58) td {
    background: #DFF0FC;
}

.plan_table tbody tr:nth-child(60) td:first-child,
.plan_table tbody tr:nth-child(60) td, 
.plan_table tbody tr:nth-child(62) td, 
.plan_table tbody tr:nth-child(64) td, 
.plan_table tbody tr:nth-child(66) td {
    background: #F8F6F1;
}
.plan_table tbody tr:nth-child(61) td, 
.plan_table tbody tr:nth-child(63) td, 
.plan_table tbody tr:nth-child(65) td, 
.plan_table tbody tr:nth-child(67) td {
    background: #F1EDE5;
}

.plan_table tbody tr:nth-child(68) td:first-child,
.plan_table tbody tr:nth-child(68) td,
.plan_table tbody tr:nth-child(70) td, 
.plan_table tbody tr:nth-child(72) td{
    background: #FFF5F3;
}
.plan_table tbody tr:nth-child(69) td,
.plan_table tbody tr:nth-child(71) td {
    background: #FFE5DF;
}



@media(max-width:1400px) {
    .choose_plan {
        padding: 120px 0 0 0;
    }
    .choose_plan h2 {
        width: 55%;
    }
    .choose_plan p {
        width: 80%;
    }
    .plan_table table th {
        padding: 25px 15px;
        font-size: 22px;
        line-height: 22px;
    }
    .plan_table tbody tr td:first-child span, 
    .plan_table table th span {
        font-size: 14px;
        line-height: 22px;
    }
    .plan_table tbody tr td:first-child {
        font-size: 18px;
        line-height: 24px;
    }
    .plan_table table td {
        padding: 15px 40px;
    }
}



@media(max-width:1200px) {
    .choose_plan h2,
    .choose_plan p {
        width: 100%;
    }
    .plan_table table th {
        padding: 25px 10px;
        font-size: 20px;
        line-height: 20px;
    }
    .plan_table table td {
        padding: 15px 30px;
    }
}





@media(max-width:992px) {
    .choose_plan {
        padding: 70px 0 0 0;
    }
    .plan_table table th {
        padding: 15px 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .plan_table tbody tr td:first-child {
        font-size: 16px;
        line-height: 22px;
    }
    .plan_table table td {
        padding: 15px;
    }
    .plan_table tbody tr td:nth-last-child(-n + 3) img {
        width: 15px;
    }
}



@media(max-width:768px) {
    .plan_table table {
        border-spacing: 2px;
    }
    .choose_plan .plan_table {
        padding: 0 5px;
    }
    .plan_table thead tr th:nth-child(1), 
    .plan_table tbody tr td:nth-child(1) {
        display: none;
    }
    .plan_table table td {
        padding: 10px;
        font-size: 14px;
        line-height: 22px;
    }
}









/* Still Wondering Which Plan Fits Best? We’ve Got You */
.our_plans {
    padding: 120px 0 0 0;
}
.our_plans h2 {
    margin: 0 0 20px 0;
    width: 70%;
}
.our_plans .plan {
    border-radius: 30px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.our_plans .free_plan {
    padding: 60px 40px;
    background: linear-gradient(55deg, rgba(255, 255, 255, 1) 40%, rgba(193, 139, 225, 0.20));
}
.our_plans .silver_plan {
    padding: 45px;
    background: linear-gradient(55deg, rgba(255, 255, 255, 1) 50%, rgba(10, 148, 204, 0.20));
}
.our_plans .gold_plan {
    padding: 75px 30px;
    background: linear-gradient(55deg, rgba(255, 255, 255, 1) 50%, rgba(255, 207, 6, 0.20));
}
.our_plans .plan:after {
    content: '';
    position: absolute;
    right: 50px;
    width: 50px;
}
.our_plans .free_plan:after {
    background: url(../icons/free-plan-icon.png) no-repeat;
    background-size: 100%;
    height: 71px;
    top: -35px;
}
.our_plans .silver_plan:after {
    background: url(../icons/silver-plan-icon.png) no-repeat;
    background-size: 100%;
    height: 50px;
    top: -25px;
}

.our_plans .gold_plan:after {
    background: url(../icons/gold-plan-icon.png) no-repeat;
    background-size: 100%;
    height: 68px;
    top: -20px;
}
.our_plans .plan h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.our_plans .plan p:not(:last-child) {
    margin: 0 0 15px 0;
}
.our_plans .row:nth-child(2) {
    margin-top: 10px;
    align-items: flex-end;
    gap: 0 30px;
    flex-wrap: nowrap;
}
.our_plans .row:nth-child(2) > * {
    padding: 0;
}
.our_plans .col-xl-4 {
    flex: 1;
}

.our_plans .row:nth-child(3) p {
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0 0 0;
}



@media(max-width:1400px) {
    .our_plans h2 {
        width: 80%;
    }
}





@media(max-width:1200px) {
    .our_plans {
        padding: 100px 0 0 0;
    }
    .our_plans h2 {
        width: 56%;
    }
    .our_plans .row:nth-child(2) {
        gap: 0 20px;
    }
    .our_plans .plan {
        padding: 50px 30px;
    }
    .our_plans .plan h3 {
        font-size: 25px;
        line-height: 35px;
    }
}






@media(max-width:992px) {
    .our_plans {
        padding: 70px 0 0 0;
    }
    .our_plans h2 {
        width: 100%;
    }
    .our_plans .row:nth-child(2) {
        margin: 70px 0 0 0;
        flex-wrap: wrap;
        gap: 60px 0;
    }
    .our_plans .col-xl-4 {
        flex: auto;
    }
}






@media(max-width:576px) {
    .our_plans .plan h3 {
        font-size: 20px;
        line-height: 30px;
    }
}



















/* Get Started in 4 Simple Steps */
.gift_steps {
    padding: 120px 0 0 0;
}
.gift_steps:before {
    content: '';
    position: absolute;
    left: -14vw;
    bottom: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.1), rgba(255, 207, 6, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}
.gift_steps:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -15vw;
    background: radial-gradient(rgba(193, 139, 225, 0.15), rgba(193, 139, 225, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}
.gift_steps .gift_steps_head {
    margin: 25px 0 0 0;
    position: sticky;
    top: 20px;
}
.gift_steps h2 {
    width: 57%;
}
.gift_steps .gift_steps_head p {
    width: 57%;
    margin: 20px 0 30px 0;
}
.gift_steps .steps {
    padding: 0;
    list-style: none;
}
.gift_steps .steps li {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.gift_steps .steps li:not(:last-child):before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -55px;
    background: url(../icons/curve-arrow.svg) no-repeat;
    background-size: 100%;
    width: 17px;
    height: 75px;
}
.gift_steps .steps li:nth-child(2):before {
    transform: scalex(-1);
    left: 50px;
}
.gift_steps .steps li:not(:last-child) {
    margin: 0 0 30px 0;
}
.gift_steps .steps li span {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: linear-gradient(129deg, rgba(176, 221, 202, 0.35) 18.22%, rgba(255, 207, 6, 0.11) 82.88%);
    font-size: 28px;
    line-height: 28px;
    color: var(--black-color);
    font-weight: var(--font-bold-700);
    flex: 0 0 75px;
}
.gift_steps .steps li div {
    background: var(--white-color);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
}
.gift_steps .steps li div h3 {
    font-size: 28px;
    line-height: 38px;
    color: var(--black-color);
    font-weight: var(--font-bold-700);
    margin: 0 0 10px 0;
}




@media(max-width:1400px) {
    .gift_steps h2,
    .gift_steps .gift_steps_head p {
        width: 65%;
    }
    .gift_steps .steps li div h3 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 5px 0;
    }
}




@media(max-width:1200px) {
    .gift_steps h2 {
        width: 55%;
    }
    .gift_steps .gift_steps_head p {
        width: 83%;
    }
    .gift_steps .steps li span {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
    }
    .gift_steps .steps li:nth-child(2):before {
        left: 45px;
    }
    
}





@media(max-width:992px) {
    .gift_steps h2,
    .gift_steps .gift_steps_head p {
        width: 100%;
    }
    .gift_steps {
        padding: 70px 0 0 0;
    }
    .gift_steps .gift_steps_head {
        margin: 0;
    }
    .gift_steps .row {
        gap: 50px 0;
    }
}





@media(max-width:768px) {
    .gift_steps h2,
    .gift_steps .gift_steps_head p {
        width: 100%;
    }
    .gift_steps .steps li div h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .gift_steps .steps li {
        flex-flow: column;
        align-items: flex-start;
        gap: 15px 0;
    }
    .gift_steps .steps li div {
        padding: 20px;
    }
    .gift_steps .steps li:not(:last-child) {
        margin: 0 0 50px 0;
    }
    .gift_steps .steps li span {
        position: absolute;
        right: 40px;
        top: -25px;
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        font-size: 24px;
        line-height: 24px;
    }
    .gift_steps .steps li:not(:last-child):before {
        left: 95%;
        bottom: -60px;
        transform: scalex(-1);
        width: 9px;
        height: 50px;
    }
}


@media(max-width:576px) {
    .gift_steps .row {
        gap: 70px 0;
    }
    .gift_steps .steps li div {
        padding: 40px 20px 20px 20px;
    }
}

















/* Exclusive Benefits, Powered by Our Trusted Partners */
.trusted_partners {
    padding: 120px 0 0 0;
}
.trusted_partners h2 {
    width: 60%;
    margin: 0px auto;
}
.trusted_partners p {
    width: 60%;
    margin: 20px auto 50px auto;
}
.trusted_partners .btn-primary {
    display: table;
    margin: 50px auto 0 auto;
}
.trusted_partners .container-fluid {
    position: relative;
    overflow: hidden;
}
.trusted_partners .container-fluid:before,
.trusted_partners .container-fluid:after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
}
.trusted_partners .container-fluid:before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    backdrop-filter: blur(1px);
}
.trusted_partners .container-fluid:after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    backdrop-filter: blur(1px);
}
.trusted_partners .slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}
.trusted_partners .slider-track:hover {
    animation-play-state: paused;
}
.trusted_partners .logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: rgba(240, 240, 240, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.trusted_partners .logo-item:hover {
    transform: scale(1.05);
}
.trusted_partners .logo-item img {
    width: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

















@media(max-width:1400px) {
    .trusted_partners h2 {
        width: 70%;
    }
    .trusted_partners p {
        width: 70%;
    }
}


@media(max-width:1200px) {
    .trusted_partners h2 {
        width: 60%;
    }
    .trusted_partners p {
        width: 80%;
    }
}



@media(max-width:992px) {
    .trusted_partners {
        padding: 70px 0 0 0;
    }
    .trusted_partners h2, 
    .trusted_partners p {
        width: 100%;
    }
    .trusted_partners .logo-item {
        margin: 0 20px;
    }
}




@media(max-width:768px) {
    .trusted_partners h2,
    .trusted_partners p {
        width: 100%;
    }
}







/* FAQs */
.gens_faqs {
    padding: 120px 0;
}

.gens_faqs:before {
    content: '';
    position: absolute;
    left: -14vw;
    bottom: 0;
    background: radial-gradient(rgba(10, 148, 204, 0.15), rgba(10, 148, 204, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}

.gens_faqs .accordion {
    margin: 40px auto 0 auto;
    width: 92%;
}
.accordion .accordion-item {
    border: 0;
    border-radius: 20px;
    background: var(--white-color);
    /* box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05); */
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.accordion .accordion-item:not(:last-child) {
    margin: 0 0 20px 0;
}
.accordion .accordion-item .accordion-button {
    background: #ffffff;
    box-shadow: none;
    font-size: 22px;
    line-height: 32px;
    padding: 30px 50px;
    color: var(--black-color);
}
.accordion .accordion-item .accordion-body {
    font-size: 18px;
    line-height: 28px;
    padding: 0 100px 30px 50px;
    color: var(--gray-color);
}
.accordion .accordion-item .accordion-body a {
    color: var(--skyblue-color);
    text-decoration: underline;
}
.accordion .accordion-item .accordion-body p:not(:last-child) {
    margin: 0 0 15px 0;
}
.accordion .accordion-item .accordion-body ul {
    margin: 15px 0 0 30px;
    padding: 0;
}
.accordion .accordion-item .accordion-body ul li::marker {
    color: var(--skyblue-color);
    font-size: 20px;
}
.accordion .accordion-item .accordion-body ul li:not(:last-child) {
    margin: 0 0 5px 0;
}
.accordion .accordion-item .accordion-button.collapsed:after,
.accordion .accordion-item .accordion-button:after {
    content: '';
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin: auto;
    transition: ease .6s;
}
.accordion .accordion-item .accordion-button.collapsed:after {
    background-image: url(../icons/faq-plus-icon.png);
}
.accordion .accordion-item .accordion-button:after {
    background-image: url(../icons/faq-minus-icon.png);
    height: 7px;
}


@media(max-width:993px) {
    .gens_faqs {
        padding: 70px 0;
    }
    .gens_faqs .accordion {
        margin: 30px auto 0 auto;
        width: 100%;
    }
    .accordion .accordion-item .accordion-button {
        font-size: 18px;
        line-height: 28px;
        padding: 20px 90px 20px 40px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 0 90px 30px 40px;
    }
    .accordion .accordion-item .accordion-button.collapsed:after,
    .accordion .accordion-item .accordion-button:after {
        width: 20px;
        height: 20px;
    }
    .accordion .accordion-item .accordion-button:after {
        height: 6px;
    }
}


@media(max-width:768px) {
    .accordion .accordion-item .accordion-button {
        padding: 15px 50px 15px 20px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 0 20px 20px 20px;
    }
    .accordion .accordion-item .accordion-button.collapsed:after,
    .accordion .accordion-item .accordion-button:after {
        width: 15px;
        height: 15px;
        right: 20px;
    }
    .accordion .accordion-item .accordion-button:after {
        height: 6px;
    }
    .accordion .accordion-item .accordion-button,
    .accordion .accordion-item .accordion-body {
        font-size: 16px;
        line-height: 26px;
    }
}


