* {
    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 */
.main_header,
.main_header .container,
.testimonials,
.loved_trusted,
.loved_trusted li,
.your_constant,
.your_constant .good_lines,
.your_constant .col-lg-7,
.gens_support .col-12,
.support_points,
.support_points .content-box,
.life_membership,
.life_membership .membership_points .point_box,
.life_membership .membership_points .point_box ul li,
.gift_steps,
.gift_steps .container,
.gift_steps .row,
.gift_steps .step,
.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,
.live_gens_life .container,
.gens_faqs {
    position: relative;
}

/* Firefox-specific adjustment */



/* Header */
.main_header {
    margin: 0;
}
.main_header .container .row:last-child {
    padding: 50px 0 0 0;
    align-items: center;
}
.main_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;
}
.main_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;
}
.main_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;
}
/* .main_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;
} */
.main_header h1 {
    letter-spacing: -2px;
}
.main_header .header_title_above {
    margin: 0 0 30px 0;
    font-size: 32px;
    line-height: 42px;
    color: var(--black-color);
}
.main_header h1 img {
    width: 50px;
    margin: -10px -10px 0 -10px;
}
.main_header h1 .help_icon {
    margin: -10px -5px 0 -5px;
}
.main_header .header_title_below {
    width: 80%;
    margin: 20px 0 30px 0
}
.main_header .older_adults_img {
    margin: 0 0 0 -110px;
}
.main_header .gens_helps_arrow {
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 60vw;
}




@media(max-width:1400px) {
    .main_header .header_title_above {
        margin: 0 0 20px 0; 
        font-size: 26px;
        line-height: 36px;
    }
    .main_header .header_title_below {
        width: 90%;
    }
    .main_header .gens_helps_arrow {
        bottom: -130px;
    }
}


@media(max-width:1200px) {
    .main_header h1 {
        letter-spacing: 0;
    }
    .main_header .header_title_above {
        font-size: 20px;
        line-height: 30px;
    }
    .main_header .header_title_below {
        width: 90%;
    }
    .main_header h1 img {
        width: 40px;
    }
}



@media(max-width:992px) {
    .main_header .container .row:last-child {
        gap: 50px;
    }
    .main_header .header_title_above {
        font-size: 24px;
        line-height: 34px;
    }
    .main_header .header_title_below {
        width: 100%;
    }
    .main_header h1 img {
        width: 30px;
    }
    .main_header h1 img,
    .main_header h1 .help_icon {
        margin: -5px 0 5px 0;
    }
    .main_header .older_adults_img {
        margin: 0;
    }
    .main_header .gens_helps_arrow {
        position: unset;
        width: 100vw;
        margin: 20px 0 0 0;
    }
}


@media(max-width:768px) {
    .main_header:after {
        right: 0;
    }
    .main_header h1 br {
        display: none;
    }
    .main_header .header_title_above {
        font-size: 20px;
        line-height: 30px;
    }
    .main_header .header_title_below {
        width: 100%;
    }
    .main_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
}



@media(max-width:576px) {
    .main_header .header_title_above {
        font-size: 18px;
        line-height: 28px;
    }
    .main_header h1 img {
        width: 25px;
        margin: -5px 0 5px 0;
    }
    .main_header .two_btns .btn {
        width: 185px;
    }
}

















/* Loved, Trusted, and Enjoyed by Thousands Over 60 */
.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;
}
.testimonials h2 {
    width: 60%;
    margin: 0px auto;
}
.testimonials h2 img {
    width: 45px;
    margin: -10px 0 10px 0;
}
.testimonials h2 .celebration_icon {
    margin: -10px 0 0 10px;
    transform: rotate(27deg);
}
.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;
    }
    .testimonials h2 {
        width: 65%;
    }
    .active_users {
        width: 40%;
    }
}




@media(max-width:1200px) {
    .testimonials h2 {
        width: 49%;
    }
    .testimonials h2 img {
        width: 35px;
        margin: 0;
    }
    .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 {
        padding: 50px 0 0 0;
    }
    .testimonials h2 {
        width: 100%;
    }
    .loved_trusted {
        margin: 60px 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) {
    .testimonials h2,
    .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) {
    .testimonials h2 img {
        width: 25px;
    }
    .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;
    }
}








/* They’ve Been Your Constant. Now, You Want to Be Theirs. */
.your_constant {
    padding: 150px 0 0 0;
    background: url(../images/3-steps-bg-ellipse.svg) repeat;
    background-size: 100%;
    background-position: top -100px left;
}
.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;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(249, 174, 14, 0.1), rgba(249, 174, 14, 0.1));
    width: calc(20vw + 100px);
    height: calc(20vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -2;
    margin: auto;
}
.your_constant h2 {
    margin: 60px 0 20px 0;
    letter-spacing: -2px;
}
.your_constant .col-xl-5 p {
    width: 75%;
}
.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);
    margin: 0 0 0 30px;
}
.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 .good_lines {
        margin: 0 -60px 0 60px;
    }
}




@media(max-width:992px) {
    .your_constant {
        padding: 70px 0 0 0;
    }
    .your_constant h2 {
        letter-spacing: 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;
        letter-spacing: 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:before {
    content: '';
    position: absolute;
    top: 200px;
    left: -200px;
    background: radial-gradient(rgba(255, 207, 6, 0.15), rgba(255, 207, 6, 0));
    width: calc(15vw + 250px);
    height: calc(15vw + 250px);
    filter: blur(50px);
    border-radius: 100%;
    z-index: -1;
    opacity: 0.4;
    margin: auto;
}
.gens_support .col-12:after {
    content: '';
    position: absolute;
    top: 200px;
    right: -6vw;
    background: radial-gradient(rgba(193, 139, 225, 0.25), rgba(193, 139, 225, 0));
    width: calc(15vw + 250px);
    height: calc(15vw + 250px);
    filter: blur(50px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
    aspect-ratio: 1 / 2;
}
.gens_support .col-12 h2 {
    margin: 0px auto 20px auto;
}
.gens_support .col-12 p {
    width: 55%;
    margin: 0px auto 80px auto;
}
.support_points {
    display: flex;
    flex-flow: column;
    gap: 100px;
}
.support_points:before {
    content: '';
    position: absolute;
    left: 0;
    top: -120px;
    background: url(../images/meet-gens-life-icon.png) no-repeat;
    background-size: 100%;
    width: 120px;
    height: 120px;
}
.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(50vw + 250px);
    height: calc(50vw + 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 p {
        width: 62%;
    }
}





@media(max-width:1200px) {
    .gens_support {
        padding: 100px 0 0 0;
    }
    .support_points .content-box {
        padding: 60px;
    }
    .support_points .content-box h3 {
        font-size: 24px;
        line-height: 34px;
        width: 100%;
    }
}








@media(max-width:992px) {
    .gens_support {
        padding: 70px 0 0 0;
    }
    .support_points:before {
        display: none;
    }
    .gens_support .col-12 h2,
    .gens_support .col-12 p,
    .support_points .content-box p {
        width: 100%;
    }
    .gens_support .col-12 h2 br {
        display: none;
    }
    .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;
    }
    .gens_support .col-12:after {
        right: 0;
    }
}


@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: -0px;
        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));
    }
    .support_points .sticky-section:nth-child(odd) .content-box:before,
    .support_points .sticky-section:nth-child(even) .content-box:after { 
        width: 300px;
        height: 300px;
    }
}











/* Inside the GenS Life Membership for Your Parents! */
.life_membership {
    padding: 150px 0 0 0;
}
.life_membership h2 {
    letter-spacing: -2px;
}
.life_membership:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: radial-gradient(rgba(193, 139, 225, 0.1), rgba(193, 139, 225, 0));
    width: calc(35vw + 100px);
    height: calc(50vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.life_membership .col-xxl-7 div {
    padding: 10px 0 0 40px;
    display: flex;
    flex-flow: column;
    align-items: self-end;
    gap: 30px 0;
    text-align: right;
}
.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: 25px;
    border-radius: 30px;
    background: var(--white-color);
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(66, 44, 132, 0.1);
    /* 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;
    right: -100px;
    top: -100px;
    background: radial-gradient(rgba(194, 212, 255, 0.7), rgba(194, 212, 255, 0));
    width: calc(25vw + 100px);
    height: calc(25vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
}
.life_membership .membership_points .point_box:nth-child(3):before {
    content: '';
    position: absolute;
    left: -50px;
    top: -50px;
    background: radial-gradient(rgba(255, 207, 6, 0.2), rgba(255, 207, 6, 0));
    width: calc(15vw + 100px);
    height: calc(15vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
}
.life_membership .membership_points .point_box:nth-child(4):before {
    width: calc(25vw + 100px);
    height: calc(25vw + 100px);
    right: 0;
    top: 0;
}
.life_membership .membership_points .point_box:nth-child(4):after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(rgba(255, 207, 6, 0.5), rgba(255, 207, 6, 0));
    width: calc(15vw + 100px);
    height: calc(15vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
}
.life_membership .membership_points .point_box:nth-child(3):after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    background: radial-gradient(rgba(221, 194, 255, 0.7), rgba(221, 194, 255, 0));
    width: calc(15vw + 100px);
    height: calc(15vw + 100px);
    filter: blur(100px);
    border-radius: 100%;
}
.life_membership .membership_points .point_box:nth-child(1) {
    width: calc(61% - 10px);
}
.life_membership .membership_points .point_box:nth-child(1) ul {
    width: 50%;
}
.life_membership .membership_points .point_box:nth-child(4) ul {
    width: 50%;
}
.life_membership .membership_points .point_box:nth-child(2) {
    width: calc(39% - 10px);
}
.life_membership .membership_points .point_box:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/everyday-ease-bg.svg) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
}
.life_membership .membership_points .point_box:nth-child(3) {
    width: calc(40% - 10px);
    padding: 15px 25px;
}
.life_membership .membership_points .point_box:nth-child(4) {
    width: calc(60% - 10px);
}
.life_membership .membership_points .point_box h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px 0;
}
.life_membership .membership_points .point_box ul {
    padding: 0 0 0 30px;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 10px 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 ul li {
    font-size: 20px;
    line-height: 30px;
}
.life_membership .membership_points .point_box:nth-child(1) img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 350px;
}
.life_membership .membership_points .point_box:nth-child(2) img {
    width: 220px;
    margin: 0px auto;
    z-index: 1;
}
.life_membership .membership_points .point_box:nth-child(3) img {
    width: 380px;
    margin: 0px auto 20px auto;
    z-index: 1;
}
.life_membership .membership_points .point_box:nth-child(4) img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 360px;
    margin: auto;
}





@media(max-width:1400px) {
    .life_membership {
        padding: 120px 0 0 0;
    }
    .life_membership h2 {
        width: 95%;
    }
    .life_membership .col-xxl-7 div {
        padding: 10px 0 0 0px;
        gap: 20px 0;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .life_membership .membership_points .point_box:nth-child(2) img {
        width: 170px;
    }
    .life_membership .membership_points .point_box ul li {
        font-size: 18px;
        line-height: 28px;
    }
    .life_membership .membership_points .point_box:nth-child(3) img,
    .life_membership .membership_points .point_box:nth-child(4) img {
        width: 300px;
    }
    .life_membership .membership_points .point_box:nth-child(4) ul {
        width: 50%;
    }
}

@media(max-width:1200px) {
    .life_membership h2 {
        width: 98%;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .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,
    .life_membership .membership_points .point_box:nth-child(3) img {
        width: 250px;
    }
    .life_membership .membership_points .point_box:nth-child(2) img {
        width: 150px;
    }
    .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: 70px 0 0 0;
    }
    .life_membership .container {
        gap: 50px 0;
    }
    .life_membership .col-xxl-7 div {
        padding: 20px 0 0 0;
        gap: 20px 0;
        align-items: flex-start;
        text-align: left;
    }
    .life_membership .membership_points {
        gap: 30px;
    }
    .life_membership .membership_points .point_box {
        width: 100% !important;
    }
    .life_membership .membership_points .point_box h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .life_membership .membership_points .point_box:nth-child(1):before,
    .life_membership .membership_points .point_box:nth-child(3):after,
    .life_membership .membership_points .point_box:nth-child(4):after {
        right: 0;
    }
}


@media(max-width:768px) {
    .life_membership .membership_points .point_box,
    .life_membership .membership_points .point_box:nth-child(3) {
        padding: 30px;
    }
    .life_membership .membership_points .point_box h3 {
        margin: 30px 0 20px 0;
    }
    .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 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: 150px 0 0 0;
}
.gift_steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.15), rgba(255, 207, 6, 0));
    height: calc(20vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    aspect-ratio: 1 / 2;
}
.gift_steps:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: radial-gradient(rgba(255, 158, 252, 0.18), rgba(255, 158, 252, 0));
    height: calc(20vw + 250px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    aspect-ratio: 1 / 2;
}
.gift_steps .container:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 150px;
    bottom: 0;
    background: url(../images/3-steps-bg-lines.svg) no-repeat;
    background-size: 100%;
    width: calc(40vw + 250px);
    height: calc(55vw + 250px);
    margin: auto;
    opacity: 0.5;
}
.gift_steps .container:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 150px;
    bottom: 0;
    background: url(../images/3-steps-bg-ellipse.svg) no-repeat;
    background-size: 100%;
    width: calc(52vw + 250px);
    height: calc(38vw + 250px);
    margin: auto;
    z-index: -1;
}

.gift_steps .gift_steps_head {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    gap: 25px;
}
.gift_steps .gift_steps_head h2,
.gift_steps .gift_steps_head p {
    text-align: right;
}
.gift_steps .gift_steps_head h2 {
    width: 40%;
}
.gift_steps .gift_steps_head p {
    width: 35%;
}
.gift_steps .step {
    border-radius: 42px;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: rgba(240, 240, 240, 0.40);
    padding: 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 20px;
    width: 65%;
}
.gift_steps .step div {
    background: #ffffff;
    padding: 15px 15px 25px 15px;
    border-radius: 40px;
}
.gift_steps .step h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}
.gift_steps .step p {
    width: 70%;
    text-align: center;
    margin: 0px auto;
}
.gift_steps .step_one {
    transform: rotate(354deg);
}
.gift_steps .step_two {
    transform: rotate(6deg);
    margin: 230px 0 0 0;
    float: right;
}
.gift_steps .step_three {
    transform: rotate(354deg);
    margin: 0 0 0 125px;
}
.gift_steps .step_one:after {
    content: '';
    position: absolute;
    right: -625px;
    top: 45px;
    background: url(../images/dashed-border.svg) no-repeat;
    background-size: 100%;
    width: 600px;
    height: 360px;
    transform: rotate(47deg);
}
.gift_steps .step_three:after {
    content: '';
    position: absolute;
    right: -345px;
    top: -200px;
    background: url(../images/dashed-rocket-border.png) no-repeat;
    background-size: 100%;
    width: 500px;
    height: 320px;
    transform: rotate(7deg);
}
.gift_steps .step_cta {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}
.gift_steps .step_cta:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: radial-gradient(rgba(255, 244, 197, 1), rgba(255, 244, 197, 0));
    width: 290px;
    height: 230px;
    border-radius: 100%;
    filter: blur(50px);
    margin: auto;
}
.gift_steps .step_cta img:first-child {
    position: absolute;
    left: 150px;
    bottom: 0;
    top: 100px;
    margin: auto;
    width: 40px;
    height: 40px;
    z-index: 1;
    transform: rotate(300deg);
}
.gift_steps .step_cta img:last-child {
    position: absolute;
    right: 150px;
    bottom: 0;
    top: -100px;
    margin: auto;
    width: 40px;
    height: 40px;
    z-index: 1;
    transform: rotate(45deg);
}








@media(max-width:1400px) {
    .gift_steps {
        padding: 120px 0 0 0;
    }
    .gift_steps .gift_steps_head {
        gap: 20px;
    }
    .gift_steps .gift_steps_head h2 {
        width: 45%;
    }
    .gift_steps .step_three:after {
        right: -300px;
    }
    .gift_steps .step_cta img:first-child {
        left: 130px;
    }
    .gift_steps .step_cta img:last-child {
        right: 130px;
    }
}










@media(max-width:1200px) {
    .gift_steps {
        padding: 100px 0 0 0;
    }
    .gift_steps .gift_steps_head h2 {
        width: 30%;
    }
    .gift_steps .gift_steps_head p {
        width: 45%;
    }
    .gift_steps .step_one:after {
        right: -485px;
        top: 95px;
        width: 450px;
        height: 280px;
    }
    .gift_steps .step_three:after {
        right: -240px;
        top: -150px;
        width: 400px;
        height: 140px;
    }
    .gift_steps .step_cta img:first-child {
        left: 100px;
    }
    .gift_steps .step_cta img:last-child {
        right: 100px;
    }
    .gift_steps .step_cta img:first-child,
    .gift_steps .step_cta img:last-child {
        width: 30px;
        height: 30px;
    }
    .gift_steps .step p {
        width: 90%;
    }
}








@media(max-width:992px) {
    .gift_steps {
        padding: 70px 0 0 0;
    }
    .gift_steps .col-12 {
        margin: 0 0 70px 0;
    }
    .gift_steps .gift_steps_head {
        align-items: flex-start;
    }
    .gift_steps .gift_steps_head h2, 
    .gift_steps .gift_steps_head p,
    .gift_steps .step p {
        text-align: left;
        width: 100%;
    }
    .gift_steps .step p {
        text-align: center;
    }
    .gift_steps .step {
        width: 90%;
    }
    .gift_steps .step_one:after {
        right: -240px;
        top: 95px;
        width: 250px;
        height: 160px;
        transform: rotate(70deg);
    }
    .gift_steps .step_three {
        margin: 0;
    }
    .gift_steps .step_three:after {
        right: -90px;
        top: -110px;
        width: 250px;
        height: 90px;
    }
}










@media(max-width:768px) {
    .gift_steps .row {
        gap: 40px;
    }
    .gift_steps .col-12,
    .gift_steps .step_two {
        margin: 0;
    }
    .gift_steps .step {
        width: 100%;
        transform: rotate(360deg) !important;
    }
    .gift_steps .step_cta:before {
        z-index: -1;
    }
    .gift_steps .step_cta {
        margin: 20px 0 0 0;
    }
    .gift_steps .step_cta img:first-child, 
    .gift_steps .step_cta img:last-child {
        width: 20px;
        height: 20px;
    }
    .gift_steps .step_cta img:first-child {
        top: 50px;
        left: 50px;
    }
    .gift_steps .step_cta img:last-child {
        top: -50px;
        right: 50px;
    }
    .gift_steps .step_one:after,
    .gift_steps .step_three:after {
        display: none;
    }
}











@media(max-width:576px) {
    .gift_steps .container:before,
    .gift_steps .container:after {
        width: 300px;
        height: 1000px;
   }
}









/* Before, You Were Holding Back. Now, You’re Living Fully */
.before_after_gens {
    padding: 120px 0 0 0;
}
.before_after_gens h2 {
    width: 60%;
    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 li:first-child {
    margin: 70px 0 0 0;
}
.before_after_gens ul li:first-child span:after {
    content: '';
    position: absolute;
    right: 100px;
    top: -50px;
    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 span {
    display: block;
}
.before_after_gens ul li:last-child:before {
    content: '';
    position: absolute;
    right: 160px;
    top: -40px;
    background: url(../icons/gens-life-icon.png) no-repeat;
    background-size: 100%;
    width: 50px;
    height: 55px;
    transform: rotate(4deg);
    z-index: 3;
}   
.before_after_gens ul li:last-child:after {
    content: '';
    position: absolute;
    left: -40px;
    top: 140px;
    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;
    position: absolute;
    z-index: 1;
    padding: 15px;
    border-radius: 100px;
}
.before_after_gens ul li:first-child h3 {
    background: #B4B4B4;
    color: var(--black-color);
    left: 50px;
    top: -33px;
    transform: rotate(350deg);
}
.before_after_gens ul li:last-child h3 {
    background: linear-gradient(#FCFDB7, #CAFECE);
    color: var(--black-color);
    right: 50px;
    bottom: 40px;
    transform: rotate(12deg);
    z-index: 3;
}









@media(max-width:1400px) {
    .before_after_gens h2 {
        width: 65%;
    }
    .before_after_gens ul {
        gap: 70px;
    }
}


@media(max-width:1200px) {
    .before_after_gens {
        padding: 100px 0 0 0;
    }
    .before_after_gens h2 {
        width: 50%;
    }
    .before_after_gens ul li h3 {
        font-size: 24px;
        line-height: 24px;
        padding: 10px;
    }
}




@media(max-width:992px) {
    .before_after_gens {
        padding: 70px 0 0 0;
    }
    .before_after_gens h2 {
        width: 100%;
        margin: 0px auto 50px auto;
    }
    .before_after_gens ul:before {
        right: 0px;
        bottom: -140px;
        width: 400px;
        height: 250px;
    }
    .before_after_gens ul li:last-child:after {
        left: -20px;
        top: 60px;
        width: 50px;
        height: 50px;
    }
    .before_after_gens ul li:first-child span:after {
        right: 20px;
        top: -40px;
        width: 70px;
        height: 70px;
    }
    .before_after_gens ul li:first-child span:before {
        width: 50px;
        height: 50px;
    }
    .before_after_gens ul li h3 {
        font-size: 20px;
        line-height: 20px;
        padding: 10px;
    }
    .before_after_gens ul li:last-child:before {
        right: 80px;
        top: -20px;
        width: 30px;
        height: 35px;
    }
}






@media(max-width:768px) {
    .before_after_gens {
        padding: 110px 0 0 0;
    }
    .before_after_gens h2 {
        width: 100%;
        margin: 0px auto 70px auto;
    }
    .before_after_gens ul li h3 {
        font-size: 20px;
        line-height: 20px;
    }
    .before_after_gens ul li:first-child {
        margin: 0;
    } 
    .before_after_gens ul li:last-child h3 {
        right: 150px;
        bottom: -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;
        left: 90px;
        top: unset;
        bottom: -20px;
    }
}



@media(max-width:576px) {
    .before_after_gens ul li:last-child h3 {
        right: 20px;
        bottom: -20px;
    }
    .before_after_gens ul li:last-child:before {
        width: 30px;
        height: 35px;
    }
    .before_after_gens ul li:last-child:after {
        left: 40px;
        width: 40px;
        height: 40px;
    }
    .before_after_gens ul:before {
        bottom: -125px;
        width: 260px;
        height: 155px;
    }
}









/* Ready to Live the GenS Life? */
.live_gens_life {
    padding: 150px 0 0 0;
}
.live_gens_life .container:before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: 
            radial-gradient(circle at 0% 25%, rgba(160, 0, 255, 0.3) 0%, transparent 70%),
            radial-gradient(circle at 25% 50%, rgba(10, 148, 204, 0.4) 0%, transparent 70%),
            radial-gradient(circle at 50% 75%, rgba(255, 207, 6, 0.4) 0%, transparent 70%),
            radial-gradient(circle at 75% 100%, rgba(6, 255, 130, 0.3) 0%, transparent 70%);
        filter: blur(60px);
        opacity: 0.25;
        height: 50%;
        top: 0;
        bottom: 0;
        margin: auto;
    }
.live_gens_life ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 0 100px 0;
}
.live_gens_life ul li img {
    box-shadow: 0 7px 10px 0 rgba(0,0,0,0.1);
    border-radius: 12px;
}
.live_gens_life ul li:nth-child(1) img {
    transform: rotate(-7deg);
    z-index: 0;
}
.live_gens_life ul li:nth-child(2) img {
    transform: rotate(3deg);
    z-index: 1;
}
.live_gens_life ul li:nth-child(3) img {
    transform: rotate(9deg);
    z-index: 2;
}
.live_gens_life ul li:nth-child(4) img {
    transform: rotate(-6deg);
    z-index: 3;
}
.live_gens_life .row {
    align-items: center;
}
.live_gens_life .col-xl-8 p,
.live_gens_life h3,
.live_gens_life .col-xl-4 div {
    width: 75%;
}
.live_gens_life .col-xl-8 p {
    margin: 20px 0 40px 0;
    font-size: 20px;
    line-height: 30px;
}
.live_gens_life .mobile_title {
    display: none;
}
.live_gens_life h3 {
    margin: 0 0 20px 0;
    font-size: 28px;
    line-height: 38px;
    color: var(--skyblue-color);
}
.live_gens_life .col-xl-4 div {
    display: flex;
    justify-self: flex-end;
}
.live_gens_life .col-xl-4 {
    position: relative;
}
.live_gens_life .col-xl-4::before {
    content: '';
    position: absolute;
    left: -250px;
    top: -20px;
    background: url(../images/live-gens-life-curved-arrow.svg) no-repeat;
    background-size: 100%;
    width: 450px;
    height: 100px;
    margin: auto;
    z-index: 1;
    transform: rotate(330deg);
}
.live_gens_life .col-xl-4 p {
    font-family: var(--font-caveat);
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    transform: rotate(340deg);
    color: var(--black-color);
}



@media(max-width:1400px) {
    .live_gens_life h3 {
        width: 80%;
    }
}




@media (max-width: 1200px) {
    .live_gens_life {
        padding: 100px 0 0 0;
    }
    .live_gens_life .col-xl-8 p, 
    .live_gens_life h3, 
    .live_gens_life .col-xl-4 div {
        width: 90%;
    }
    .live_gens_life h3,
    .live_gens_life .col-xl-4 p {
        font-size: 24px;
        line-height: 34px;
    }
    .live_gens_life .col-xl-8 p {
        font-size: 18px;
        line-height: 28px;
    }
    .live_gens_life .col-xl-4::before {
        left: -150px;
        top: -50px;
        width: 350px;
        height: 80px;
    }
}












@media (max-width: 992px) {
    .live_gens_life {
        padding: 70px 0 0 0;
    }
    .live_gens_life .col-xl-8 p, 
    .live_gens_life h3, 
    .live_gens_life .col-xl-4 div {
        width: 100%;
    }
    .live_gens_life .col-xl-4 p {
        font-size: 24px;
        line-height: 34px;
    }
    .live_gens_life .row {
        flex-flow: column-reverse;
        gap: 70px;
    }
    .live_gens_life .col-xl-8 p {
        font-size: 16px;
        line-height: 26px;
        margin: 20px 0;
    }
    .live_gens_life .col-xl-4 div {
        width: 40%;
    }
    .live_gens_life .col-xl-4::before {
        left: 0;
        top: 0;
        width: 250px;
        height: 60px;
    }
}






@media (max-width: 768px) {
    .live_gens_life ul {
        flex-wrap: wrap;
    }
    .live_gens_life ul li {
        width: 50%;
    }
    .live_gens_life {
        padding: 100px 0 0 0;
    }
    .live_gens_life h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .live_gens_life .col-xl-4::before {
        left: 20px;
        top: 0;
        width: 380px;
        height: 90px;
    }
    .live_gens_life .row h2 {
        display: none;
    }
    .live_gens_life .mobile_title {
        display: block;
        margin: 0 0 50px 0;
    }
}

@media (max-width: 576px) {
    .live_gens_life ul {
        flex-flow: column;
        margin: 0 10px 100px 10px;
        gap: 10px;
    }
    .live_gens_life ul li {
        width: 100%;
    }
    .live_gens_life ul li:nth-child(1) img {
        transform: rotate(-3deg);
        z-index: 0;
    }
    .live_gens_life ul li:nth-child(2) img {
        transform: rotate(3deg);
        z-index: 1;
    }
    .live_gens_life ul li:nth-child(3) img {
        transform: rotate(-3deg);
        z-index: 2;
    }
    .live_gens_life ul li:nth-child(4) img {
        transform: rotate(3deg);
        z-index: 3;
    }
    .live_gens_life .row {
        gap: 20px;
    }
    .live_gens_life .col-xl-4 div {
        width: 60%;
    }
    .live_gens_life .col-xl-4::before {
        top: -20px;
        width: 200px;
        height: 50px;
    }
}
















/* FAQs */
.gens_faqs {
    padding: 120px 0;
}
.gens_faqs .faqs_above_title {
    display: table;
    margin: 0px auto 25px auto;
    background: linear-gradient(90deg,rgba(255, 166, 50, 1) 0%, rgba(125, 158, 253, 1) 46%, rgba(206, 90, 202, 1) 79%, rgba(178, 157, 230, 1) 92%);
    border-radius: 60px;
    box-shadow: 0 48px 48px -24px rgba(41, 41, 41, 0.04) ;
}
.gens_faqs .faqs_above_title span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black-color);
    background: var(--white-color);
    padding: 8px 14px;
    margin: 1.5px;
    border-radius: 60px;
    display: flex;
    gap: 10px;
}
.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: 100px 0;
    }
}




@media(max-width:993px) {
    .gens_faqs {
        padding: 70px 0;
    }
    .gens_faqs .faqs_above_title {
        margin: 0 0 20px 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;
    }
    .gens_faqs .faqs_above_title {
        margin: 0 0 20px 0;
    }
    .gens_faqs .faqs_above_title span {
        font-size: 16px;
        line-height: 26px;
        padding: 5px 14px;
        gap: 8px;
    }
}


@media (max-width: 576px) {
    .gens_faqs .faqs_above_title span {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 10px;
        gap: 5px;
    }
    .gens_faqs .faqs_above_title span img {
        width: 15px;
    }
}