* {
    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;
}

:root {
    --font-dm-sans: 'DM Sans';
    --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 */
.membership_header,
.owl-carousel .testimonial_box,
.owl-carousel .testimonial_box p,
.your_constant,
.your_constant .good_lines,
.your_constant .col-lg-7,
.support_points .content-box,
.life_membership .membership_points .point_box,
.life_membership .membership_points .point_box ul li,
.gift_steps,
.gift_steps .steps li,
.before_after_gens ul,
.before_after_gens ul li,
.before_after_gens ul li span,
.before_after_gens ul li:last-child span img:last-child,
.show_care,
.show_care .container,
.gens_faqs {
    position: relative;
}

/* Firefox-specific adjustment */



/* Gens Membership Header */
.membership_header:before {
    content: '';
    position: absolute;
    top: 10vw;
    bottom: 0;
    left: -400px;
    right: 0;
    background: radial-gradient(rgba(52, 182, 214, 0.15), rgba(52, 182, 214, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.membership_header:after {
    content: '';
    position: absolute;
    top: 10vw;
    bottom: 0;
    left: 0;
    right: -400px;
    background: radial-gradient(rgba(255, 207, 6, 0.15), rgba(255, 207, 6, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.membership_header .header_title_above {
    margin: 80px auto 30px auto;
    font-size: 32px;
    line-height: 42px;
    color: var(--black-color);
}
.membership_header h1 img {
    width: 50px;
    margin: -10px 0 10px 0;
}
.membership_header .header_title_below {
    width: 50%;
    margin: 20px auto 30px auto;
}







@media(max-width:1400px) {
    .membership_header .header_title_below {
        width: 70%;
    }
}






@media(max-width:1200px) {
    .membership_header .header_title_above {
        font-size: 28px;
        line-height: 38px;
    }
    .membership_header .header_title_below {
        width: 70%;
    }
    .membership_header h1 img {
        width: 40px;
    }
}



@media(max-width:992px) {
    .membership_header h1 br {
        display: none;
    }
    .membership_header .header_title_above {
        font-size: 24px;
        line-height: 34px;
        margin: 80px auto 20px auto;
    }
    .membership_header .header_title_below {
        width: 100%;
    }
    .membership_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
}


@media(max-width:768px) {
    .membership_header:after {
        right: 0;
    }
    .membership_header h1 br {
        display: none;
    }
    .membership_header .header_title_above {
        font-size: 20px;
        line-height: 30px;
    }
    .membership_header .header_title_below {
        width: 100%;
    }
    .membership_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
}



@media(max-width:576px) {
    .membership_header .header_title_above {
        font-size: 18px;
        line-height: 28px;
    }
    .membership_header .header_title_above {
        margin: 60px auto 20px auto;
    }
    .membership_header h1 img {
        width: 25px;
        margin: -5px 0 5px 0;
    }
}






















/* Testimonials Slider */
.testimonials_slider {
    padding: 120px 0 0 0;
}
.testimonials_slider .container-fluid {
    padding: 0;
}
.owl-stage {
    display: flex;
    padding-bottom: 15px;
}
.owl-carousel .item {
    border-radius: 30px;
    overflow: hidden;
}
.owl-carousel .testimonial_box {
    padding: 65px 35px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05);
    min-height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.owl-carousel .testimonial_box:after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.owl-carousel .purple_box:after {
    background: radial-gradient(rgba(193, 139, 225, 0.2), rgba(193, 139, 225, 0));
}
.owl-carousel .skyblue_box:after {
    background: radial-gradient(rgba(10, 148, 204, 0.2), rgba(10, 148, 204, 0));
}
.owl-carousel .orange_box:after {
    background: radial-gradient(rgba(243, 136, 35, 0.2), rgba(243, 136, 35, 0));
}
.owl-carousel .testimonial_box p:before {
    content: '';
    position: absolute;
    left: 0;
    top: -30px;
    background: url(../icons/double-inverted-commas.svg) no-repeat;
    background-size: 100%;
    width: 70px;
    height: 70px;
}

.owl-carousel .purple_box p:before {
    filter: brightness(0) saturate(100%) invert(81%) sepia(25%) saturate(6323%) hue-rotate(213deg) brightness(93%) contrast(88%);
}
.owl-carousel .skyblue_box p:before {
    filter: brightness(0) saturate(100%) invert(71%) sepia(87%) saturate(1428%) hue-rotate(93deg) brightness(100%) contrast(99%);
}



.owl-carousel .testimonial_box .testimonial_name {
    display: flex;
    align-items: center;
    gap: 0 12px;
}
.owl-carousel .testimonial_box .testimonial_name img {
    width: 45px;
    height: 45px;
    border: 3px solid var(--white-color);
    border-radius: 100%;
}
.owl-carousel .testimonial_box .testimonial_name h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-bold-700);
    font-style: italic;
    color: var(--gray-color);
    margin: 0 0 5px 0;
}
.owl-carousel .testimonial_box .testimonial_name div img {
    width: 85px;
    height: auto;
    border-radius: 0;
    border: none;
}




@media(max-width:768px) {
    .testimonials_slider {
        padding: 70px 0 0 0;
    }
    .owl-carousel .testimonial_box {
        padding: 50px 25px 30px 25px;
    }
    .owl-carousel .testimonial_box p:before {
    top: -20px;
    width: 50px;
    height: 50px;
    }
}

















/* They’ve Been Your Constant. Now, You Want to Be Theirs. */
.your_constant {
    padding: 150px 0 0 0;
}
.your_constant:before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 80px;
    background: url(../images/constant-bg-line.svg) no-repeat;
    background-size: 100%;
    width: 100vw;
    height: 45vw;
    z-index: -1;
}
.your_constant:after {
    content: '';
    position: absolute;
    left: -200px;
    right: 0;
    bottom: -100px;
    background: radial-gradient(rgba(249, 174, 14, 0.1), rgba(249, 174, 14, 0.1));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.your_constant h2 {
    margin: 60px 0 20px 0;
}
.your_constant .col-xl-5 p {
    width: 78%;
}
.your_constant .good_lines {
    padding: 55px 65px 65px 50px;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.15);
    background: var(--white-color);
}
.your_constant .good_lines:before {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 90px;
    background: url(../icons/heart-eyes-emoji.png) no-repeat;
    background-size: 100%;
    width: 40px;
    height: 40px;
    transform: scaleX(-1);
}
.your_constant .col-lg-7:after {
    content: '';
    position: absolute;
    right: 50px;
    top: -30px;
    background: url(../icons/heart-eyes-emoji.png) no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
}
.your_constant .good_lines:after {
    content: '';
    position: absolute;
    right: -230px;
    top: 0;
    bottom: 0;
    background: url(../images/envolep.png) no-repeat;
    background-size: 100%;
    width: 500px;
    height: 480px;
    z-index: -1;
    margin: auto;
}
.your_constant .good_lines span {
    display: block;
    border-bottom: 1px solid rgba(101, 110, 113, 0.15);
    padding: 5px 0 0 1px;
    color: var(--skyblue-color);
    font-size: 18px;
    line-height: 28px;
}
.your_constant .good_lines span .heart {
    display: unset;
    color: #EC272A;
}
.your_constant .good_lines span:empty {
    height: 28px;
}








@media(max-width:1400px) {
    .your_constant {
        padding: 120px 0 0 0;
    }
    .your_constant .good_lines {
        margin: 0 -60px 0 60px;
    }
    .your_constant .good_lines:after {
        right: -130px;
        width: 300px;
        height: 290px;
    }
}


@media(max-width:1350px) {
    .your_constant .good_lines:after {
        right: -60px;
        width: 170px;
        height: 170px;
    }
}


@media(max-width:1200px) {
    .your_constant {
        padding: 100px 0 0 0;
    }
    .your_constant .col-xl-5 p {
        width: 90%;
    }
    .your_constant .good_lines {
        margin: 0 -60px 0 60px;
    }
}




@media(max-width:992px) {
    .your_constant {
        padding: 70px 0 0 0;
    }
    .your_constant .good_lines {
        margin: 0;
    }
    .your_constant .row {
        gap: 50px 0;
    }
    .your_constant .good_lines:after {
        right: 10px;
        top: unset;
        bottom: -50px;
        z-index: 1;
    }
    .your_constant:before {
        left: -40px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}



@media(max-width:768px) {
    .your_constant .good_lines {
        padding: 30px 30px 50px 30px;
    }
    .your_constant h2 {
        margin: 0 0 20px 0;
    }
    .your_constant .col-xl-5 p {
        width: 100%;
    }
    .your_constant .good_lines:after {
        width: 100px;
        height: 100px;
    }
    .your_constant .good_lines span {
        font-size: 16px;
        line-height: 26px;
    }
    .your_constant .good_lines:before {
        left: 20px;
        bottom: -20px;
        width: 40px;
        height: 40px;
    }
}

















/* ​Meet GenS Life: Support for Them, Peace of Mind for You */
.gens_support {
    padding: 140px 0 0 0;
}
.gens_support .col-12 h2 {
    width: 70%;
    margin: 0px auto 20px auto;
}
.gens_support .col-12 p {
    width: 57%;
    margin: 0px auto 80px auto;
}

.support_points {
    display: flex;
    flex-flow: column;
    gap: 100px;
}


.support_points .sticky-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 50px;
}

.support_points .content-box {
    width: 1080px;
    /* height: 600px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    text-align: left;
    gap: 60px;
    overflow: hidden;
}
.support_points .content-box h3 {
    font-size: 28px;
    line-height: 38px;
    color: var(--skyblue-color);
    font-style: italic;
    width: 97%;
}
.support_points .content-box p {
    width: 80%;
    margin: unset;
}
.support_points .content-box div:first-child {
    width: 58%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.support_points .content-box div:first-child img {
    width: 65px;
}
.support_points .content-box div:last-child img {
    border-radius: 10px;
}
.support_points .sticky-section:nth-child(2) .content-box { 
    transform: rotate(-3deg);
}
.support_points .sticky-section:nth-child(3) .content-box { 
    transform: rotate(3deg);
}
.support_points .sticky-section:nth-child(4) .content-box { 
    transform: rotate(-2deg);
}
.support_points .sticky-section:nth-child(odd) .content-box:before,
.support_points .sticky-section:nth-child(even) .content-box:after { 
    content: '';
    position: absolute;
    width: calc(60vw + 250px);
    height: calc(60vw + 250px);
    border-radius: 100%;
}
.support_points .sticky-section:nth-child(odd) .content-box:before { 
    left: -250px;
    top: -200px;
}
.support_points .sticky-section:nth-child(even) .content-box:after { 
    right: -250px;
    top: -200px;
}
.support_points .sticky-section:nth-child(1) .content-box:before {
    background: radial-gradient(rgba(10, 148, 204, 0.1), rgba(10, 148, 204, 0));
    filter: blur(100px);
}
.support_points .sticky-section:nth-child(2) .content-box:after {
    background: radial-gradient(rgba(255, 207, 6, 0.1), rgba(255, 207, 6, 0));
    filter: blur(100px);
}
.support_points .sticky-section:nth-child(3) .content-box:before {
    background: radial-gradient(rgba(193, 139, 225, 0.15), rgba(193, 139, 225, 0));
    filter: blur(100px);
}
.support_points .sticky-section:nth-child(4) .content-box:after {
    background: radial-gradient(rgba(82, 194, 189, 0.15), rgba(82, 194, 189, 0));
    filter: blur(100px);
}







@media(max-width:1400px) {
    .gens_support {
        padding: 120px 0 0 0;
    }
    .gens_support .col-12 h2,
    .gens_support .col-12 p {
        width: 75%;
    }
}





@media(max-width:1200px) {
    .gens_support {
        padding: 100px 0 0 0;
    }
    .gens_support .col-12 h2 {
        width: 60%;
    }
    .gens_support .col-12 p {
        margin: 0px auto 50px auto;
    }
}





@media(max-width:992px) {
    .gens_support {
        padding: 70px 0 0 0;
    }
    .gens_support .col-12 h2,
    .gens_support .col-12 p,
    .support_points .content-box p {
        width: 100%;
    }
    .gens_support .col-12 p {
        margin: 0px auto 50px auto;
    }
    .support_points .content-box {
        padding: 50px 30px;
        gap: 30px;
    }
    .support_points .content-box div:first-child {
        width: 60%;
        gap: 20px;
    }
    .support_points .content-box div:first-child img {
        width: 40px;
    }
    .support_points .content-box h3 {
        font-size: 20px;
        line-height: 30px;
    }
}


@media(max-width:767px) {
    .support_points .content-box div:first-child {
        width: 100%;
    }
    .support_points {
        margin: 50px 0 0 0;
        gap: 40px;
    }
    .support_points .sticky-section {
        position: unset;
        height: auto;
    }
    
    .support_points .content-box {
        transform: rotate(0deg) !important;
        flex-flow: column-reverse;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 50px;
    }
    .support_points .content-box div:first-child img {
        width: 40px;
    }
    .support_points .content-box h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .support_points .sticky-section:nth-child(odd) .content-box:before {
        left: -50px;
        top: -50px;
    }
    .support_points .sticky-section:nth-child(even) .content-box:after {
        right: -50px;
        top: -50px;
    }
    .support_points .sticky-section:nth-child(1) .content-box:before {
        background: radial-gradient(rgba(10, 148, 204, 0.2), rgba(10, 148, 204, 0));
    }
    
}











/* Inside the GenS Life Membership for Your Parents! */
.life_membership {
    padding: 150px 0 0 0;
}
.life_membership .col-lg-5 div {
    padding: 10px 0 0 40px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 30px 0;
}
.life_membership .container {
    display: flex;
    flex-flow: column;
    gap: 60px 0;
}
.life_membership .membership_points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.life_membership .membership_points .point_box {
    padding: 50px 45px;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    overflow: hidden;
    height: 350px;
}
.life_membership .membership_points .point_box:nth-child(1):before,
.life_membership .membership_points .point_box:nth-child(4):before {
    content: '';
    position: absolute;
    background: radial-gradient(rgba(193, 139, 225, 0.3), rgba(193, 139, 225, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}
.life_membership .membership_points .point_box:nth-child(2):after,
.life_membership .membership_points .point_box:nth-child(3):after {
    content: '';
    position: absolute;
    background: radial-gradient(rgba(10, 148, 204, 0.2), rgba(10, 148, 204, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}
.life_membership .membership_points .point_box:nth-child(1):after,
.life_membership .membership_points .point_box:nth-child(2):before,
.life_membership .membership_points .point_box:nth-child(3):before,
.life_membership .membership_points .point_box:nth-child(4):after {
    content: '';
    position: absolute;
    background: radial-gradient(rgba(255, 207, 6, 0.2), rgba(255, 207, 6, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    opacity: 0.8;
    z-index: -1;
}
.life_membership .membership_points .point_box:nth-child(1) {
    width: calc(63% - 10px);
}
.life_membership .membership_points .point_box:nth-child(1) ul {
    width: 65%;
}
.life_membership .membership_points .point_box:nth-child(4) ul {
    width: 75%;
}
.life_membership .membership_points .point_box:nth-child(1):before {
    left: -100px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.life_membership .membership_points .point_box:nth-child(1):after {
    right: -200px;
    top: -100px;
    bottom: 0;
}
.life_membership .membership_points .point_box:nth-child(2) {
    width: calc(37% - 10px);
}
.life_membership .membership_points .point_box:nth-child(2):before {
    left: -300px;
    bottom: -200px;
}
.life_membership .membership_points .point_box:nth-child(2):after {
    right: -200px;
    bottom: 0;
}
.life_membership .membership_points .point_box:nth-child(3) {
    width: calc(44% - 10px);
}
.life_membership .membership_points .point_box:nth-child(3):before {
    left: -250px;
    bottom: -220px;
}
.life_membership .membership_points .point_box:nth-child(3):after {
    right: -50px;
    bottom: -150px;
}
.life_membership .membership_points .point_box:nth-child(4) {
    width: calc(56% - 10px);
}
.life_membership .membership_points .point_box:nth-child(4):before {
    left: -100px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.life_membership .membership_points .point_box:nth-child(4):after {
    right: -230px;
    top: -200px;
    bottom: 0;
}
.life_membership .membership_points .point_box h3 {
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 30px 0;
}
.life_membership .membership_points .point_box ul {
    padding: 0 0 0 30px;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 15px 0;
}
.life_membership .membership_points .point_box ul li:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 8px;
    background: url(../icons/check-3d-icon.png) no-repeat;
    background-size: 100%;
    width: 16px;
    height: 12px;
}
.life_membership .membership_points .point_box:nth-child(1) img {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 350px;
}
.life_membership .membership_points .point_box:nth-child(2) img {
    position: absolute;
    right: 40px;
    top: 30px;
    width: 100px;
}
.life_membership .membership_points .point_box:nth-child(3) img {
    position: absolute;
    right: 50px;
    top: 30px;
    width: 150px;
}
.life_membership .membership_points .point_box:nth-child(4) img {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 245px;
}





@media(max-width:1400px) {
    .life_membership {
        padding: 120px 0 0 0;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 28px;
        line-height: 38px;
        margin: 0 0 20px 0;
    }
    .life_membership .membership_points .point_box ul {
        gap: 10px 0;
    }
    
}

@media(max-width:1200px) {
    .life_membership h2 {
        width: 90%;
    }
    .life_membership .col-lg-5 div {
        padding: 10px 0 0 15px;
        gap: 20px 0;
    }
    .life_membership .membership_points .point_box {
        height: auto;
        padding: 40px;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 24px;
        line-height: 34px;
    }
    .life_membership .membership_points .point_box:nth-child(1) ul {
        width: 55%;
    }
    .life_membership .membership_points .point_box:nth-child(4) ul {
        width: 65%;
    }
    .life_membership .membership_points .point_box:nth-child(1) img {
        width: 300px;
    }
    .life_membership .membership_points .point_box:nth-child(2) img {
        right: 20px;
        top: 20px;
        width: 70px;
    }
    .life_membership .membership_points .point_box:nth-child(3) img {
        right: 20px;
        top: 20px;
        width: 100px;
    }
    .life_membership .membership_points .point_box:nth-child(4) img {
        position: absolute;
        right: 30px;
        bottom: 0;
        width: 180px;
    }
}

@media(max-width:992px) {
    .life_membership {
        padding: 80px 0 0 0;
    }
    .life_membership .container {
        gap: 50px 0;
    }
    .life_membership .col-lg-5 div {
        padding: 20px 0 0 0;
        gap: 20px 0;
    }
    .life_membership .membership_points {
        gap: 30px;
    }
    .life_membership .membership_points .point_box {
        width: 100% !important;
    }
}


@media(max-width:768px) {
    .life_membership .membership_points .point_box {
        padding: 50px 30px;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 30px 0 20px 0;
    }
    .life_membership .membership_points .point_box:nth-child(1):before,
    .life_membership .membership_points .point_box:nth-child(2):before,
    .life_membership .membership_points .point_box:nth-child(3):before,
    .life_membership .membership_points .point_box:nth-child(4):before {
        left: -70px;
        top: unset;
        bottom: -100px;
        width: 500px;
        height: 500px;
    }
    .life_membership .membership_points .point_box:nth-child(1):after,
    .life_membership .membership_points .point_box:nth-child(2):after,
    .life_membership .membership_points .point_box:nth-child(3):after,
    .life_membership .membership_points .point_box:nth-child(4):after {
        right: -150px;
        top: -150px;
        bottom: 0;
        width: 500px;
        height: 500px;
    }
    .life_membership .membership_points .point_box:nth-child(1) ul,
    .life_membership .membership_points .point_box:nth-child(4) ul {
        width: 100%;
    }
    .life_membership .membership_points .point_box:nth-child(1) img {
        width: 240px;
    }
    .life_membership .membership_points .point_box img {
        position: unset !important;
        left: 0 !important;
        right: unset !important;
        margin: unset !important;
    }
    
}
















/* 3 Steps to Gift a GenS Life Membership to Your Loved Ones */
.gift_steps {
    padding: 120px 0 0 0;
}
.gift_steps:before {
    content: '';
    position: absolute;
    left: -14vw;
    bottom: -15vw;
    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 h2 {
    width: 89%;
}
.gift_steps .gift_steps_head {
    margin: 25px 0 0 0;
}
.gift_steps .gift_steps_head p {
    width: 57%;
    margin: 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: 30px;
    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:1200px) {
    .gift_steps {
        padding: 100px 0 0 0;
    }
    .gift_steps .steps li span {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
    }
    .gift_steps .steps li:nth-child(2):before {
        left: 45px;
    }
    .gift_steps .steps li div h3 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 5px 0;
    }
}





@media(max-width:992px) {
    .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%;
        margin: 20px 0;
    }
     .gift_steps h2 {
        margin: 0;
     }
    .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 .steps li div {
        padding: 40px 20px 20px 20px;
    }
}















/* Let’s Look at Your Life Before and After GenS */
.before_after_gens {
    padding: 120px 0 0 0;
}
.before_after_gens h2 {
    width: 50%;
    margin: 0px auto 80px auto;
}
.before_after_gens ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    justify-content: space-between;
}
.before_after_gens ul:before {
    content: '';
    position: absolute;
    right: 200px;
    left: 0;
    bottom: -150px;
    background: url(../images/before-after-arrows.svg) no-repeat;
    background-size: 100%;
    width: 600px;
    height: 350px;
    margin: auto;
    z-index: 1;
}
.before_after_gens ul:after {
    content: '';
    position: absolute;
    right: -100px;
    left: 0;
    top: 15px;
    background: url(../icons/curve-arrow.svg) no-repeat;
    background-size: 100%;
    width: 38px;
    height: 167px;
    margin: auto;
    transform: scaleX(-1) rotate(18deg);
    opacity: 0.4;
}
.before_after_gens ul li:last-child {
    margin: 200px 0 0 0;
}
.before_after_gens ul li:first-child span:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    background: url(../icons/sad-face-emoji.png) no-repeat;
    background-size: 100%;
    width: 100px;
    height: 100px;
    transform: rotate(27deg);
    z-index: 3;
    margin: auto;
}
.before_after_gens ul li:first-child span:before {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -30px;
    background: url(../icons/sad-face-emoji.png) no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    transform: rotate(-16deg);
    z-index: 3;
}
.before_after_gens ul li:last-child:before {
    content: '';
    position: absolute;
    left: 60px;
    bottom: -10px;
    background: url(../icons/gens-life-icon.png) no-repeat;
    background-size: 100%;
    width: 50px;
    height: 55px;
    transform: rotate(-16deg);
    z-index: 3;
}   
.before_after_gens ul li:last-child:after {
    content: '';
    position: absolute;
    right: 80px;
    top: 30px;
    background: url(../icons/heart-eyes-emoji.png) no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    transform: rotate(-16deg);
    z-index: 3;
}
.before_after_gens ul li img {
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}
.before_after_gens ul li:last-child img {
    z-index: 2;
}
.before_after_gens ul li h3 {
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.before_after_gens ul li .star_icon {
    box-shadow: none;
    border-radius: 0;
    position: absolute;
    transform: rotate(-15deg);
    width: 80px;
}
.before_after_gens ul li span {
    display: block;
}
.before_after_gens ul li:first-child .star_icon {
    left: -40px;
    bottom: 80px;
}
.before_after_gens ul li:last-child .star_icon {
    right: -20px;
    bottom: 150px;
    z-index: 3;
}












@media(max-width:1200px) {
    .before_after_gens {
        padding: 100px 0 0 0;
    }
    .before_after_gens ul li h3 {
        font-size: 24px;
        line-height: 24px;
    }
}




@media(max-width:992px) {
    .before_after_gens {
        padding: 70px 0 0 0;
    }
    .before_after_gens h2 {
        width: 100%;
        margin: 0px auto 40px auto;
    }
    .before_after_gens ul:before {
        right: 0px;
        bottom: -100px;
        width: 400px;
        height: 250px;
    }
}






@media(max-width:768px) {
    .before_after_gens h2 {
        width: 100%;
        margin: 0px auto 50px auto;
    }
    .before_after_gens ul li h3 {
        font-size: 20px;
        line-height: 20px;
    }
    .before_after_gens ul {
        gap: 70px;
        flex-flow: column;
        padding: 0 12px;
    }
    .before_after_gens ul li:last-child {
        margin: 0;
    }
    .before_after_gens ul:after {
        display: none;
    }
    .before_after_gens ul li:first-child span:before {
        left: 80px;
    }
    .before_after_gens ul li:last-child:before{
        width: 40px;
        height: 45px;
    }
    .before_after_gens ul li:last-child:after {
        right: 50px;
        top: 20px;
        width: 50px;
        height: 50px;
    }
}



@media(max-width:576px) {
    .before_after_gens ul:before {
        bottom: -125px;
        width: 260px;
        height: 155px;
    }
    .before_after_gens ul li:first-child .star_icon {
        left: -20px;
    }
    .before_after_gens ul li:last-child .star_icon {
        right: 0;
        bottom: 20px;
    }
}






/* Give Them a Gift That Truly Shows, You Care! */
.show_care {
    padding: 120px 0;
}
.show_care:before {
    content: '';
    position: absolute;
    left: -14vw;
    top: 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;
}
.show_care:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: radial-gradient(rgba(249, 174, 14, 0.1), rgba(249, 174, 14, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
}
.show_care .container {
    padding: 50px 60px;
    border-radius: 15px;
    background: var(--white-color);
    box-shadow: -15px 15px 30px 0 rgba(0, 0, 0, 0.07);
}
.show_care h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
}
.show_care p {
    margin: 20px 0 0 0;
    width: 85%;
}
.show_care h3 {
    margin: 52px 0 20px 0;
    font-size: 28px;
    line-height: 38px;
    color: var(--skyblue-color);
}
.show_care img {
    border-radius: 15px;
}

.show_care .container:before {
    content: '';
    position: absolute;
    left: -6.5vw;
    bottom: 0;
    background: url(../icons/beach-items.png) no-repeat;
    background-size: 100%;
    width: 85px;
    height: 100px;
    z-index: 1;
}
.show_care .container:after {
    content: '';
    position: absolute;
    right: -65px;
    top: 80px;
    background: url(../icons/aeroplane-emoji.png) no-repeat;
    background-size: 100%;
    width: 100px;
    height: 47px;
}

@media(max-width:1490px) {
    .show_care .container:before {
        left: -5vw;
        width: 65px;
        height: 80px;
    }
}

@media(max-width:1440px) {
    .show_care h3 {
        margin: 20px 0;
    }
    .show_care .container:before {
        left: -2vw;
        width: 65px;
        height: 80px;
    }
}




@media(max-width:1300px) {
    .show_care .container:before {
        width: 55px;
        height: 65px;
        left: -2vw;
    }
    .show_care .container:after {
        right: 0px;
        width: 80px;
        height: 37px;
    }
}

@media(max-width:1200px) {
    .show_care {
        padding: 120px 0 100px 0;
    }
    .show_care h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .show_care h3 {
        font-size: 24px;
        line-height: 34px;
    }
}


@media(max-width:992px) {
    .show_care {
        padding: 70px 0 70px 0;
    }
    .show_care .container {
        padding: 50px;
    }
    .show_care .row {
        gap: 50px 0;
    }
}





@media(max-width:768px) {
    .show_care p {
        width: 100%;
    }
    .show_care h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .show_care h2 br,
    .show_care h3 br {
        display: none;
    }
    .show_care {
        padding: 80px 12px;
    }
    .show_care h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .show_care .container:before {
        width: 55px;
        height: 65px;
        left: 5vw;
        bottom: -5vw;
    }
    .show_care .container:after {
        right: 30px;
        top: -20px;
        width: 80px;
        height: 37px;
    }
    .show_care:after {
        right: 0;
    }
}

@media(max-width:576px) {
    .show_care .container {
        padding: 50px 30px;
    }

}






/* FAQs */
.gens_faqs {
    padding: 0 0 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:1200px) {
    .gens_faqs {
        padding: 0 0 100px 0;
    }
}





@media(max-width:993px) {
    .gens_faqs {
        padding: 0 0 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;
    }
}