* {
    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;
}

@font-face {
    font-family: 'DM Serif Text';
    src: url('../fonts/DMSerifText-Italic.eot');
    src: url('../fonts/DMSerifText-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSerifText-Italic.woff2') format('woff2'),
        url('../fonts/DMSerifText-Italic.woff') format('woff'),
        url('../fonts/DMSerifText-Italic.ttf') format('truetype'),
        url('../fonts/DMSerifText-Italic.svg#DMSerifText-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-dm-sans: 'DM Sans';
    --font-caveat: 'Caveat';
    --font-dmseriftext-italic: 'DM Serif Text';
    --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: 0 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;
    }
    .two_btns {
        flex-flow: column;
        gap: 15px 0;
        align-items: flex-start;
    }
    .btn {
        padding: 8px 40px 8px 10px;
        font-size: 15px;
        line-height: 20px;
    }
    .btn-secondary {
        padding: 8px 10px;
    }
    .btn-primary:after {
        width: 25px;
        height: 25px;
    }
    .btn-primary::before {
        right: 14px;
        width: 12px;
        height: 10px;
    }
}




















/* Gift a GenS Membership */
.about_header,
.fresh_look .col-xl-4,
.gens_words,
.gens_words .container,
.gens_words .row div:nth-child(2) div,
.gens_words .row div:nth-child(4) div,
.gens_words .row div:nth-child(6) .class_notification,
.gens_words .row div:nth-child(8) div,
.without_filters,
.without_filters ul li,
.gift_steps,
.gift_steps .steps li,
.practice_daily,
.fully_supported .col-xl-7 div {
    position: relative;
}

/* Firefox-specific adjustment */



/* Gens Membership Header */
.about_header:before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -100px;
    background: radial-gradient(rgba(52, 200, 214, 0.15), rgba(52, 200, 214, 0));
    width: calc(40vw + 100px);
    height: calc(40vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
.about_header:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(255, 207, 6, 0.1), rgba(255, 207, 6, 0));
    width: calc(40vw + 100px);
    height: calc(40vw + 100px);
    filter: blur(150px);
    border-radius: 500px 0 0 500px;
    z-index: -1;
    aspect-ratio: 1 / 2;
}
.about_header h1 {
    margin: 80px auto 0 auto;
}
.about_header h1 img {
    width: 50px;
    margin: -10px 0 10px 0;
}
.about_header p {
    width: 31%;
    margin: 20px auto 60px auto;
    font-size: 20px;
    line-height: 30px;
}
.about_header .about_img {
    padding: 15px;
    background: rgba(240, 240, 240, 0.4);
    border: 1px solid rgba(217, 217, 217, 0.4);
    border-radius: 42px;
    width: 70%;
    margin: 0px auto;
}
.about_header .about_img img {
    border-radius: 24px;
}




@media(max-width:1400px) {
    .about_header p {
        width: 35%;
    }  
}



@media(max-width:1200px) {
    .about_header h1 img {
        width: 40px;
    }
    .about_header p {
        width: 50%;
    }  
}



@media(max-width:992px) {
    .about_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
    .about_header p {
        width: 100%;
        font-size: 18px;
        line-height: 28px;
    }
    .about_header .about_img {
        width: 100%;
    }
    
}


@media(max-width:768px) {
    .about_header:after {
        right: 0;
    }
    .about_header h1 img {
        width: 30px;
        margin: -5px 0 5px 0;
    }
    .about_header p {
        width: 100%;
        margin: 15px auto 30px auto;
    }
    
}



@media(max-width:576px) {
    .about_header h1 {
        margin: 60px auto 0 auto;
    }
    .about_header h1 img {
        width: 25px;
        margin: -5px 0 5px 0;
    }
    .about_header p {
        font-size: 16px;
        line-height: 26px;
    }
}










/* A Fresh Look at the 60+ Life */
.fresh_look {
    padding: 150px 0 0 0;
}
.fresh_look h2{
    width: 70%;
}
.fresh_look .row {
    justify-content: center;
}
/* .fresh_look .col-xl-4:before {
    content: '';
    position: absolute;
    left: -80px;
    top: -60px;
    background: url(../images/why-it-all-began-text.svg) no-repeat;
    background-size: 100%;
    width: 170px;
    height: 80px;
    transform: rotate(333deg);
} */
.fresh_look .col-xl-5 p {
    width: 87%;
}
.fresh_look .col-xl-5 div p:not(:last-child) {
    margin: 0 0 20px 0;
}






@media(max-width:1400px) {
    .fresh_look {
        padding: 120px 0 0 0;
    }
    .fresh_look h2{
        width: 80%;
    }
    .fresh_look .col-xl-5 p {
        width: 100%;
    }
}








@media(max-width:1200px) {
    .fresh_look {
        padding: 100px 0 0 0;
    }
    .fresh_look .col-xl-4:before {
        left: -60px;
        top: -50px;
        width: 140px;
        height: 70px;
    }
}












@media(max-width:992px) {
    .fresh_look {
        padding: 70px 0 0 0;
    }
    .fresh_look h2{
        width: 100%;
        margin: 0 0 20px 0;
    }
    .fresh_look .col-xl-4:before {
        left: 0px;
        top: -80px;
        transform: rotate(0deg);
    }
}











@media(max-width:576px) {
    .fresh_look .col-xl-4:before {
        left: 12px;
        top: -60px;
        width: 100px;
        height: 50px;
    }
}






















/* Gen S Life, In Our Own Words */
.gens_words {
    padding: 120px 0 0 0;
}
.gens_words:before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    background: radial-gradient(rgba(255, 207, 6, 0.2), rgba(255, 207, 6, 0));
    width: calc(15vw + 100px);
    height: calc(15vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
.gens_words h2 {
    margin: 40px 0 0 0;
}
.gens_words h2 strong {
    background: linear-gradient(90deg, #0A94CC 0%, #A9DAC8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gens_words .col-xl-6 .gens_words_text {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
    padding: 75px 65px;
}
.gens_words .col-xl-6 p {
    width: 100%;
}
.gens_words .col-xl-6 .gens_words_text div {
    position: relative;
}
.gens_words .col-xl-6 .gens_words_text div:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    background: radial-gradient(rgba(225, 158, 237, 0.6), rgba(225, 158, 237, 0));
    width: 100px;
    height: 100px;
    filter: blur(30px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.gens_words .col-xl-6 .gens_words_text div:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    background: radial-gradient(rgba(255, 207, 6, 0.4), rgba(255, 207, 6, 0));
    width: 100px;
    height: 100px;
    filter: blur(30px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.gens_words .col-lg-4 img,
.gens_words .col-lg-3 img {
    border-radius: 24px;
    border: 1px solid rgba(217, 217, 217, 0.40);
    box-shadow: 4px 14px 31px 0 rgba(0, 7, 31, 0.10), 14px 54px 56px 0 rgba(0, 8, 31, 0.09);
}
.gens_words .row div:nth-child(2) div .heart_icon {
    position: absolute;
    right: 25px;
    top: 15px;
}
.gens_words .row div:nth-child(2) div p {
    position: absolute;
    left: 25px;
    bottom: 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(32px);
    padding: 12px;
    font-size: 16px;
    line-height: 16px;
    color: var(--white-color);
}
.gens_words .row div:nth-child(4) div p,
.gens_words .row div:nth-child(6) div .img_box,
.gens_words .row div:nth-child(8) div p {
    position: absolute;
    left: 15px;
    bottom: 15px;
    border-radius: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(31.5px);
    font-size: 16px;
    line-height: 24px;
    width: calc(100% - 30px);
}
.gens_words .row div:nth-child(8) div p {
    width: 55%;
}
.gens_words .row div:nth-child(6) {
    margin: 200px 0px 0px;
}
.gens_words .row div:nth-child(6) div .img_box {
    padding: 15px;
}
.gens_words .row div:nth-child(6) div .img_box div {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}
.gens_words .row div:nth-child(6) div .img_box div h3 {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 0 10px;
    font-weight: var(--font-bold-700);
}
.gens_words .row div:nth-child(6) div .img_box p {
    font-size: 15px;
    line-height: 22px;
}
.gens_words .row div:nth-child(4) div:before {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -250px;
    background: radial-gradient(rgba(225, 158, 237, 0.4), rgba(225, 158, 237, 0));
    width: calc(20vw + 100px);
    height: calc(20vw + 100px);
    filter: blur(50px);
    border-radius: 100%;
    z-index: -1;
}
.gens_words .row div:nth-child(6) .class_notification:before {
    content: '';
    position: absolute;
    right: -70px;
    top: -130px;
    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%;
    z-index: -1;
}
.gens_words .row div:nth-child(8) div:before {
    content: '';
    position: absolute;
    right: -250px;
    top: -150px;
    background: radial-gradient(rgba(52, 200, 214, 0.2), rgba(52, 200, 214, 0));
    width: calc(20vw + 100px);
    height: calc(20vw + 100px);
    filter: blur(50px);
    border-radius: 100%;
    z-index: -1;
}



@media(max-width:1400px) {
    .gens_words h2 {
        margin: 0;
    }
    .gens_words .col-xl-6 .gens_words_text {
        padding: 75px 50px;
    }
    .gens_words .row div:nth-child(6) .class_notification:before {
        right: 0;
    }
    .gens_words .row div:nth-child(4) div p, 
    .gens_words .row div:nth-child(6) div .img_box p,
    .gens_words .row div:nth-child(8) div p {
        font-size: 14px;
        line-height: 22px;
    }
    .gens_words .row div:nth-child(6) div .img_box p {
        letter-spacing: -0.4px;
    }
}





@media(max-width:1200px) {
    .gens_words {
        padding: 100px 0 0 0;
    }
    .gens_words .col-xl-6 .gens_words_text {
        padding: 50px 40px;
        gap: 20px;
    }
    .gens_words .row div:nth-child(4) div p, 
    .gens_words .row div:nth-child(6) div .img_box,
    .gens_words .row div:nth-child(8) div p {
        padding: 10px;
    }
    .gens_words .row div:nth-child(8) div p {
        width: calc(100% - 30px);
    }
}








@media(max-width:992px) {
    .gens_words {
        padding: 40px 0 0 0;
    }
    .gens_words h2 br {
        display: none;
    }
    .gens_words .row {
        gap: 30px;
    }
    .gens_words .col-xl-6 .gens_words_text {
        padding: 0;
    }
    .gens_words .row div:nth-child(6) {
        margin: 0;
    }
    .gens_words .row div:nth-child(8) div:before {
        right: 0;
    }
}





@media(max-width:768px) {
    .gens_words:before,
    .gens_words:after,
    .gens_words .container:before,
    .gens_words .container:after {
        transform: rotate(0deg);
        height: calc(100% + 100px);
    }
    .gens_words:before {
        left: 0;
    }
    .gens_words .container:before {
        left: 50px;
    }
    .gens_words .container:after {
        left: 100px;
    }
    .gens_words:after {
        left: 150px;
    }
}







/* This is Us, Without Filters */
.without_filters {
    padding: 120px 0 0 0;
}
.without_filters:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(77, 6, 255, 0.1), rgba(77, 6, 255, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.without_filters h2 {
    margin: 0 0 10px 0;
}
.without_filters ul {
    display: flex;
    gap: 70px;
    padding: 0;
    list-style: none;
    margin: 70px 0 0 0;
}
.without_filters ul li {
    width: 33.33%;
    padding: 45px 25px 180px 25px;
    background: var(--white-color);
    border-radius: 24px;
    box-shadow: 4px 14px 31px 0 rgba(0, 7, 31, 0.10), 14px 54px 56px 0 rgba(0, 8, 31, 0.09);
    overflow: hidden;
}
.without_filters ul li h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: var(--font-bold-700);
    margin: 0 0 10px 0;
}
.without_filters ul li p {
    font-size: 16px;
    line-height: 26px;
}
.without_filters ul li img {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 280px;
}
.without_filters ul li:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 100px;
    filter: blur(50px);
    border-radius: 100%;
}
.without_filters ul li:nth-child(1):before {
    background: radial-gradient(rgba(158, 237, 234, 0.5), rgba(158, 237, 234, 0));
}
.without_filters ul li:nth-child(2):before {
    background: radial-gradient(rgba(255, 158, 237, 0.5), rgba(255, 158, 237, 0));
}
.without_filters ul li:nth-child(3):before {
    background: radial-gradient(rgba(255, 207, 6, 0.25), rgba(255, 207, 6, 0));
}
.without_filters ul li:after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 250px;
    height: 250px;
    filter: blur(50px);
    border-radius: 100%;
}
.without_filters ul li:nth-child(1):after {
    background: radial-gradient(rgba(158, 237, 234, 0.5), rgba(158, 237, 234, 0));
}
.without_filters ul li:nth-child(2):after {
    background: radial-gradient(rgba(255, 158, 237, 0.5), rgba(255, 158, 237, 0));
}
.without_filters ul li:nth-child(3):after {
    background: radial-gradient(rgba(255, 207, 6, 0.25), rgba(255, 207, 6, 0));
}











@media(max-width:1400px) {
    .without_filters ul {
        gap: 30px;
        margin: 50px 0 0 0;
    }
    .without_filters ul li {
        padding: 45px 25px 200px 25px;
    }
    .without_filters ul li h3 {
        font-size: 28px;
        line-height: 38px;
        margin: 0 0 5px 0;
    }
}







@media(max-width:1200px) {
    .without_filters ul li h3 {
        font-size: 24px;
        line-height: 34px;
    }
}






@media(max-width:992px) {
    .without_filters {
        padding: 70px 0 0 0;
    }
    .without_filters ul {
        flex-flow: column;
    }
    .without_filters ul li {
        width: 100%;
        padding: 45px 25px 220px 25px;
    }
}



@media(max-width:768px) {
    .without_filters ul li h3 {
        font-size: 20px;
        line-height: 30px;
    }
}



@media(max-width:576px) {
    .without_filters ul {
        margin: 30px 0 0 0;
    }
    .without_filters ul li {
        padding: 30px 25px 220px 25px;
    }
}




/* Gen S Life In Practice */
.gift_steps {
    padding: 120px 0 0 0;
}
.gift_steps:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100px;
    background: radial-gradient(rgba(255, 207, 6, 0.1), rgba(255, 207, 6, 0));
    width: calc(20vw + 100px);
    height: calc(20vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
.gift_steps:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -15vw;
    background: radial-gradient(rgba(26, 175, 236, 0.15), rgba(26, 175, 236, 0));
    width: calc(30vw + 100px);
    height: calc(30vw + 100px);
    filter: blur(100px);
    border-radius: 100% 0 0 100%;
    z-index: -1;
    aspect-ratio: 1 / 2;
}
.gift_steps h2 {
    width: 50%;
    margin: 0 0 20px 0;
}
.gift_steps .gift_steps_head {
    margin: 25px 0 0 0;
}
.gift_steps .gift_steps_head p {
    width: 69%;
    font-size: 16px;
    line-height: 26px;
}
.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;
    background: url(../icons/curve-arrow.svg) no-repeat;
    background-size: 100%;
    width: 17px;
    height: 75px;
}
.gift_steps .steps li:first-child:before {
    bottom: -40px;
}
.gift_steps .steps li:nth-child(2):before {
    bottom: -60px;
}
.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 span img {
    width: 45px;
}
.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:1400px) {
    .gift_steps h2 {
        width: 60%;
    }
    .gift_steps .gift_steps_head p {
        width: 77%;
    }
}




@media(max-width:1200px) {
    .gift_steps h2 {
        width: 44%;
    }
    .gift_steps .steps li span {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
    }
    .gift_steps .steps li span img {
        width: 35px;
    }
    .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%;
    }
    .gift_steps h2 {
        margin: 0 0 10px 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 span img {
        width: 30px;
    }
    .gift_steps .steps li:not(:last-child):before {
        left: 95%;
        bottom: -60px;
        transform: scalex(-1);
        width: 9px;
        height: 50px;
    }
}


@media(max-width:576px) {
    .gift_steps .row {
        gap: 70px 0;
    }
    .gift_steps .steps li div {
        padding: 20px;
    }
}













/* The People Who Make It Happen */
.the_people {
    padding: 120px 0 0 0;
}
.the_people .container-fluid {
    padding: 0;
}
.the_people h2 {
    margin: 0 0 70px 0;
}
.owl-carousel .owl-stage .owl-item .employee_box {
    border-radius: 42px;
    padding: 20px 15px 15px 15px;
    border: 1px solid rgba(217, 217, 217, 0.4);
    display: block;
    text-decoration: none;
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 1) .employee_box {
    background: #F4FFFA;
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 2) .employee_box {
    background: #F8F5FF;
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 3) .employee_box {
    background: #FFFFE9;
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 4) .employee_box {
    background: #FFF2FF;
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 5) .employee_box {
    background: #F2FFFF;
}
.owl-carousel .item {
    display: flex;
    flex-flow: column;
    gap: 20px;
    position: relative;
}
.owl-carousel .employee_img {
    border-radius: 30px;
    background: var(--white-color);
    border: 1px solid rgba(217, 217, 217, 0.4);
    box-shadow: 4px 14px 31px 0 rgba(0, 7, 31, 0.05), 14px 54px 56px 0 rgba(0, 8, 31, 0.09);
    position: relative;
    overflow: hidden;
}
.owl-carousel .owl-stage .owl-item .employee_img:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -160px;
    border-radius: 100%;
    width: 350px;
    height: 350px;
    filter: blur(35px);
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 1) .employee_img:before {
    background: radial-gradient(circle, rgba(255, 254, 243, 1) 20%, rgba(202, 239, 223, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 2) .employee_img:before {
    background: radial-gradient(circle, rgba(255, 254, 243, 1) 20%, rgba(233, 227, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 3) .employee_img:before {
    background: radial-gradient(circle, rgba(255, 254, 243, 1) 20%, rgba(253, 255, 171, 0.8) 60%, rgba(255, 255, 255, 1) 100%);
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 4) .employee_img:before {
    background: radial-gradient(circle, rgba(255, 254, 243, 1) 20%, rgba(255, 212, 254, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.owl-carousel .owl-stage .owl-item:nth-child(5n + 5) .employee_img:before {
    background: radial-gradient(circle, rgba(255, 254, 243, 1) 20%, rgba(167, 248, 247, 1) 60%, rgba(255, 255, 255, 1) 100%);
}

.owl-carousel .employee_img img {
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 15px solid var(--white-color);
}
.owl-carousel .employee_info {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.owl-carousel .employee_info h3,
.owl-carousel .employee_info p {
    text-decoration: none;
}
.owl-carousel .employee_info h3 {
    color: var(--skyblue-color);
    font-family: var(--font-dmseriftext-italic);
    font-size: 22px;
    line-height: 22px;
    font-style: italic;
}
.owl-carousel .employee_info p {
    color: var(--black-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin: 10px 0 15px 0;
}
.owl-carousel .employee_info a {
    transition: ease .6s;
}
.owl-carousel .employee_info a:hover {
    transform: scale(1.05);
}













@media(max-width:992px) {
    .the_people h2 {
        margin: 0 0 50px 0;
    }
    .the_people h2 br {
        display: none;
    }
}





@media(max-width:768px) {
    .the_people {
        padding: 70px 0 0 0;
    }
    .the_people h2 {
        margin: 0 0 30px 0;
    }
}






@media(max-width:576px) {
    
}





/* Values We Practice Daily  */
.practice_daily {
    padding: 120px 0 0 0;
}
.practice_daily:before {
    content: '';
    position: absolute;
    left: -14vw;
    top: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.1), rgba(255, 207, 6, 0));
    width: calc(25vw + 100px);
    height: calc(25vw + 100px);
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
}
.practice_daily:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(255, 158, 252, 0.1), rgba(255, 158, 252, 0));
    width: calc(40vw + 100px);
    height: calc(40vw + 100px);
    filter: blur(150px);
    border-radius: 500px 0 0 500px;
    z-index: -1;
    aspect-ratio: 1 / 2;
}
.practice_daily ul {
    margin: 50px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    width: 80%;
    gap: 15px;
}
.practice_daily ul li {
    padding: 15px;
    background: rgba(240, 240, 240, 0.4);
    border: 1px solid rgba(217, 217, 217, 0.4);
    border-radius: 42px;
    width: 49%;
}
.practice_daily ul li div {
    padding: 60px 30px 30px 30px;
    border-radius: 24px ;
    position: relative;
    box-shadow: 4px 14px 31px 0 rgba(0, 7, 31, 0.10), 14px 54px 56px 0 rgba(0, 8, 31, 0.09);
}
.practice_daily ul li:nth-child(1) div {
    background: #FAF9FF;
}
.practice_daily ul li:nth-child(2) div {
    background: #F8FDFF;
}
.practice_daily ul li:nth-child(3) div {
    background: #FFF8ED;
}
.practice_daily ul li:nth-child(4) div {
    background: #FFF1F4;
}
.practice_daily ul li div img {
    position: absolute;
    right: 30px;
    top: -10px;
    width: 100px;
}
.practice_daily ul li:nth-child(1) div img {
    transform: rotate(350deg);
}
.practice_daily ul li:nth-child(2) div img {
    transform: rotate(10deg);
}
.practice_daily ul li:nth-child(3) div img {
    transform: rotate(10deg);
}
.practice_daily ul li:nth-child(4) div img {
    transform: rotate(350deg);
}
.practice_daily ul li div h3 {
    font-size: 28px;
    line-height: 38px;
    color: var(--black-color);
    font-weight: var(--font-bold-700);
    margin: 0 0 10px 0;
}
.practice_daily ul li div p {
    font-size: 20px;
    line-height: 30px;
    width: 65%;
}












@media(max-width:1400px) {
    .practice_daily ul {
        width: 90%;
    }
}




@media(max-width:1200px) {
    .practice_daily ul {
        width: 100%;
    }
    .practice_daily ul li div img {
        width: 80px;
    }
    .practice_daily ul li div h3 {
        font-size: 24px;
        line-height: 34px;
    }
    .practice_daily ul li div p {
        font-size: 18px;
        line-height: 28px;
    }
}












@media(max-width:992px) {
    .practice_daily h2 br {
        display: none;
    }
    .practice_daily ul li {
        width: 48%;
    }
    .practice_daily ul li div img {
        right: 20px;
        width: 60px;
    } 
    .practice_daily ul li div p {
        width: 100%;
    }
}


@media(max-width:768px) {
    .practice_daily {
        padding: 70px 0 0 0;
    }
    .practice_daily ul {
        gap: 30px;
        margin: 30px auto 0 auto;
    }
    .practice_daily ul li {
        width: 100%;
    }
    .practice_daily ul li div h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 5px 0;
    }
}




@media(max-width:576px) {
    .practice_daily ul {
        padding: 0 12px;
    }
    .practice_daily ul li div {
        padding: 40px 20px 20px 20px;
    }
    .practice_daily ul li div img {
        width: 50px;
    }
    .practice_daily ul li div p {
        font-size: 16px;
        line-height: 26px;
    }
}








/* Every Version of 60+ Life, Fully Supported */
.fully_supported {
    padding: 150px 0 120px;
    background-image: url(../icons/grad.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.fully_supported h2 {
    width: 80%;
    margin: 0 0 70px 0;
}
.fully_supported img {
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
}
.fully_supported .col-xl-7 div:after {
    content: '';
    position: absolute;
    right: -60px;
    top: 70px;
    background: url(../images/live-gens-life-curved-arrow.svg) no-repeat;
    background-size: 100%;
    width: 350px;
    height: 75px;
    margin: auto;
    z-index: 1;
    transform: rotate(325deg) scaleY(-1);
}
.fully_supported .col-xl-5 div p {
    font-size: 20px;
    line-height: 30px;
}
.fully_supported .col-xl-5 div p:first-child {
    font-family: var(--font-caveat);
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    transform: rotate(15deg);
    color: var(--black-color);
    margin: 0 0 80px 50px;
    width: 50%;
}
.fully_supported .two_btns {
    margin: 40px 0 0 0;
}














@media(max-width:1400px) {
    .fully_supported .col-xl-7 div:after {
        right: -60px;
        top: 80px;
        width: 300px;
        height: 65px;
    }
    .fully_supported .col-xl-5 div p:first-child {
        margin: 0 0 50px 40px;
        width: 60%;
    }
}





@media(max-width:1200px) {
    .fully_supported h2 {
        width: 80%;
        margin: 0 0 50px 0;
    }
    .fully_supported img {
        width: 80%;
    }
    .fully_supported .col-xl-7 div:after {
        right: -50px;
        top: 40px;
        width: 240px;
        height: 55px;
    }
    .fully_supported .col-xl-5 div p {
        font-size: 16px;
        line-height: 26px;
    }
    .fully_supported .col-xl-5 div p:first-child {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 30px 40px;
        width: 50%;
    }
    .fully_supported .two_btns {
        margin: 20px 0 0 0;
    }
}














@media(max-width:992px) {
    .fully_supported {
        padding: 100px 0;
    }
    .fully_supported h2 {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .fully_supported img {
        width: 100%;
    }
    .fully_supported .col-xl-7 div:after {
        right: -70px;
        left: 0;
        top: unset;
        bottom: -50px;
        width: 190px;
        height: 40px;
        transform: rotate(150deg) scaleY(-1);
    }
    .fully_supported .col-xl-5 div p:first-child {
        margin: 0 0 30px 0;
        width: 40%;
        transform: rotate(0deg);
    }
}









@media(max-width:768px) {
    .fully_supported {
        padding: 70px 0;
    }
    .fully_supported .col-xl-5 div p:first-child {
        width: 40%;
    }
}



@media(max-width:576px) {
    .fully_supported .row {
        gap: 30px;
    }
    .fully_supported .col-xl-7 div:after {
        right: -170px;
        left: 0;
        top: unset;
        bottom: -60px;
        width: 150px;
        height: 35px;
        transform: rotate(150deg) scaleY(-1);
    }
    .fully_supported .col-xl-5 div p:first-child {
        width: 50%;
    }
    .fully_supported .two_btns a {
        width: 206px;
    }
}


