* {
    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: 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 */
.partners_header,
.extraordinary_platform,
.our_mission,
.responsive-tabs .tab-pane .card-header a,
.build_bigger,
.partners_cta .col-xl-7 div {
    position: relative;
}

/* Firefox-specific adjustment */



/* Gens Membership Header */
.partners_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;
}
.partners_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;
}
.partners_header h1 {
    margin: 80px auto 0 auto;
}
.partners_header p {
    width: 80%;
    margin: 20px auto 30px auto;
}
.partners_header .partners_img {
    padding: 15px;
    background: rgba(240, 240, 240, 0.4);
    border: 1px solid rgba(217, 217, 217, 0.4);
    border-radius: 42px;
    margin: 60px auto 0 auto;
    width: 70%;
}
.partners_header .partners_img img {
    border-radius: 24px;
}




@media(max-width:1400px) {
    .partners_header p {
        width: 85%;
    }  
}



@media(max-width:1200px) {
    .partners_header p {
        width: 90%;
    }  
}



@media(max-width:992px) {
    .partners_header p,
    .partners_header .partners_img {
        width: 100%;
    }
    
}


@media(max-width:768px) {
    .partners_header .partners_img {
        margin: 30px 0 0 0;
    }
    .partners_header:after {
        right: 0;
    }
    .partners_header p {
        width: 100%;
    }
    
}



@media(max-width:576px) {
    .partners_header h1 {
        margin: 60px auto 0 auto;
    }
}




/* Our Vision, Your Support, One Extraordinary Platform */
.extraordinary_platform {
    padding: 120px 0 0 0;
}
.extraordinary_platform img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 670px;
}
.extraordinary_platform h2 {
    letter-spacing: -1px;
}
.extraordinary_platform .row .col-xl-6:last-child p {
    font-size: 28px;
    line-height: 38px;
}
.extraordinary_platform .row .col-xl-6:last-child p:not(:last-child) {
    margin: 0 0 40px 0;
}










@media(max-width:1400px) {
    .extraordinary_platform img {
        width: 550px;
    }
}



@media(max-width:1200px) {
    .extraordinary_platform {
        padding: 100px 0 0 0;
    }
    .extraordinary_platform img {
        width: 450px;
    }
    .extraordinary_platform .row .col-xl-6:last-child p {
        font-size: 20px;
        line-height: 30px;
    }
    .extraordinary_platform .row .col-xl-6:last-child p:not(:last-child) {
        margin: 0 0 20px 0;
    }
}




@media(max-width:992px) {
    .extraordinary_platform {
        padding: 70px 0 0 0;
    }
    .extraordinary_platform .row {
        gap: 20px;
    }
    .extraordinary_platform img {
        width: 450px;
        bottom: -140px;
    }
    .extraordinary_platform .row .col-xl-6:last-child p {
        font-size: 16px;
        line-height: 26px;
    }
}


@media(max-width:576px) {
    .extraordinary_platform img {
        width: auto;
        left: -20px;
        bottom: -120px;
    }
}

@media(max-width:426px) {
    .extraordinary_platform img {
        width: auto;
        left: -20px;
        bottom: -90px;
    }
}



/* The Partner Network Powering Our Mission */
.our_mission {
    padding: 120px 0 0 0;
}
.our_mission h2 {
    width: 50%;
    margin: 0 auto 70px auto;
}
.our_mission:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* right: 0; */
    background: radial-gradient(rgba(52, 182, 214, 0.15), rgba(52, 182, 214, 0));
    width: calc(50vw + 100px);
    height: 100%;
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}
.our_mission:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    /* left: 0; */
    right: 0;
    background: radial-gradient(rgba(255, 207, 6, 0.15), rgba(255, 207, 6, 0));
    width: calc(50vw + 100px);
    height: 100%;
    filter: blur(150px);
    border-radius: 100%;
    z-index: -1;
    margin: auto;
}

.nav-tabs {
    align-items: flex-end;
    margin: 60px 0 0 0;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: rgba(240, 240, 240, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    gap: 10px;  
}
.nav-tabs .nav-item {
    flex: 1 1 auto;
}
.nav-tabs .nav-item .nav-link {
    border: 0;
    padding: 15px;
    border-radius: 50px;
    transition: ease .6s;
    font-size: 16px;
    line-height: 16px;
    color: var(--gray-color);
    font-weight: 700;
    font-family: var(--font-dm-sans);
    width: 100%;
    text-align: center;
}
    /* .nav-tabs .nav-item:nth-child(1) .nav-link.active{
        background: #FFA6A6;
    }
    .nav-tabs .nav-item:nth-child(2) .nav-link.active{
        background: #95C6FF;
    }
    .nav-tabs .nav-item:nth-child(3) .nav-link.active{
        background: #92F2A2;
    }
    .nav-tabs .nav-item:nth-child(4) .nav-link.active{
        background: #F8B69D;
    }
    .nav-tabs .nav-item:nth-child(5) .nav-link.active{
        background: #C895E5;
    }
    .nav-tabs .nav-item:nth-child(6) .nav-link.active{
        background: #75C0F0;
    }
    .nav-tabs .nav-item:nth-child(7) .nav-link.active{
        background: #B4A071;
    }
    .nav-tabs .nav-item:nth-child(8) .nav-link.active{
        background: #FFA491;
    } */
.nav-tabs .nav-item .nav-link.active {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
    background: var(--black-color);
    color: var(--white-color);
}
.tab-content {
    margin: 30px 0 0 0;
}
.tab-content .card-body {
    animation: fadeIn 0.5s ease forwards;
    padding: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content .card-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.tab-content .card-body ul li {
    padding: 20px 40px;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: rgba(240, 240, 240, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 18%;
    height: 115px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab-content .card-body ul li img {
    height: 60px;
    object-fit: contain;
}


.our_mission_head {
    position: sticky;
    top: 20px;
}
.partner_network ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}
.partner_network ul li {
    padding: 20px 40px;
    border: 1px solid rgba(217, 217, 217, 0.40);
    background: rgba(240, 240, 240, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 18%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:  ease .6s;
}
.partner_network ul li:hover {
    transform: scale(1.1);
}
.partner_network ul li img {
    height: 60px;
    object-fit: contain;
}

.responsive-tabs .nav-tabs {
    display: none;
}




@media(max-width:1400px) {
    .our_mission h2 {
        width: 50%;
        margin: 0 auto 40px auto;
    }
    .tab-content .card-body ul li {
        width: 17.5%;
    }
    .partner_network ul li {
        padding: 20px 30px;
    }
}




@media(max-width:1200px) {
    .our_mission h2 {
        width: 40%;
    }
    .nav-tabs .nav-item .nav-link {
        padding: 10px;
        font-size: 14px;
        line-height: 14px;
    }
    .tab-content .card-body ul li {
        width: 17%;
        padding: 20px 25px;
    }
    .partner_network ul li {
        padding: 20px;
        width: 17.5%;
    }
    .partner_network ul li img {
        height: 40px;
    }
}




@media(min-width:992px) {
    .tab-content .tab-pane h3 {
        display: none;
    }
    .responsive-tabs .nav-tabs {
        display: flex;
    }
    .responsive-tabs .card {
        border: none;
        background: transparent;
    }
    .responsive-tabs .card .card-header {
        display: none;
    }
    .responsive-tabs .card .collapse {
        display: block;
    }
   
}



@media(max-width:992px) {
    .our_mission {
        padding: 200px 0 0 0;
    }
    .our_mission h2 {
        width: 100%;
    }
    .nav-tabs,
    .tab-content {
        margin: 40px 0 0 0;
        display: flex;
        flex-flow: column;
        gap: 20px;
    }
    .tab-content>.tab-pane {
        opacity: 1;
        display: block;
        border: 0;
        background: transparent;
    } 
    .responsive-tabs .tab-pane .card-header {
        padding: 0;
        border: 0;
        border-radius: 15px;
    }
    .responsive-tabs .tab-pane .card-header a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        line-height: 16px;
        font-weight: 700;
        color: var(--black-color);
        text-decoration: none;
        background: var(--white-color);
        border-radius: 15px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    }
    .responsive-tabs .tab-pane .card-header a:after {
        content: '';
        position: absolute;
        right: 20px;
        top: 0;
        bottom: 0;
        background: url(../icons/faq-plus-icon.png) no-repeat;
        background-size: 100%;
        width: 15px;
        height: 15px;
        margin: auto;
        transition: ease .6s;
    }
    .responsive-tabs .tab-pane .card-header a[aria-expanded=true]:after {
        background: url(../icons/faq-minus-icon.png) no-repeat;
        background-size: 100%;
        height: 6px;
    }
    .tab-content .card-body {
        animation: none;
        padding: 20px 0 0 0;
    }
    .tab-content .card-body ul li {
        width: 21%;
        padding: 20px 25px;
        height: 90px;
    }
    .tab-content .card-body ul li img {
        height: 50px;
    }
    .our_mission .row {
        gap: 40px;
    }
    .partner_network ul li {
        width: 22%;
    }
} 












@media(max-width:768px) {
   .tab-content .card-body ul {
        gap: 20px;
    }
    .tab-content .card-body ul li {
        padding: 20px 15px;
        height: 70px;
    }
    .tab-content .card-body ul li img {
        height: 40px;
    }
    .partner_network ul {
        gap: 20px;
    }
    .partner_network ul li {
        width: 21%;
    }
}





@media(max-width:576px) {
    .tab-content .card-body ul li {
        width: 30%;
        padding: 20px 15px;
        height: 80px;
    }
    .partner_network ul li {
        padding: 20px 15px;
    }
}


@media(max-width:426px) {
    .our_mission {
        padding: 150px 0 0 0;
    }
    .tab-content .card-body ul li {
        width: 46%;
        padding: 20px 15px;
        height: 90px;
    }
    .partner_network ul li {
        width: 28%;
    }
}



/* Partner With Us to Build Something Bigger. For the 60+. */
.build_bigger {
    padding: 120px 0 0 0;
}
.build_bigger: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;
}
.build_bigger: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;
}
.build_bigger h2 {
    width: 70%;
    margin: 0px auto;
}
.build_bigger p:nth-child(2) {
    width: 70%;
    margin: 20px auto 30px auto;
}
.build_bigger ul {
    margin: 50px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    gap: 15px;
}
.build_bigger 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%;
}
.build_bigger 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);
}
.build_bigger ul li:nth-child(1) div {
    background: #FAF9FF;
}
.build_bigger ul li:nth-child(2) div {
    background: #F8FDFF;
}
.build_bigger ul li:nth-child(3) div {
    background: #FFF8ED;
}
.build_bigger ul li:nth-child(4) div {
    background: #FFF1F4;
}
.build_bigger ul li div img {
    position: absolute;
    right: 30px;
    top: -10px;
    width: 80px;
}
.build_bigger ul li:last-child div img {
    width: 100px;
}
.build_bigger ul li:nth-child(1) div img {
    transform: rotate(350deg);
}
.build_bigger ul li:nth-child(2) div img {
    transform: rotate(10deg);
}
.build_bigger ul li:nth-child(3) div img {
    transform: rotate(10deg);
}
.build_bigger ul li:nth-child(4) div img {
    transform: rotate(350deg);
}
.build_bigger ul li div h3 {
    font-size: 24px;
    line-height: 34px;
    color: var(--black-color);
    font-weight: var(--font-bold-700);
    margin: 0 0 10px 0;
    width: 70%;
}
.build_bigger ul li:nth-child(1) div h3 {
    width: 50%;
}












@media(max-width:1400px) {
    .build_bigger h2,
    .build_bigger p:nth-child(2) {
        width: 80%;
    }
    .build_bigger ul li div h3 {
        font-size: 22px;
        line-height: 32px;
        width: 73%;
    }
}




@media(max-width:1200px) {
    .build_bigger h2 {
        width: 60%;
    }
    .build_bigger p:nth-child(2) {
        width: 80%;
    }
    .build_bigger ul li div h3 {
        font-size: 20px;
        line-height: 30px;
        width: 82%;
    }
}












@media(max-width:992px) {
    .build_bigger {
        padding: 70px 0 0 0;
    }
    .build_bigger h2 {
        width: 100%;
    }
    .build_bigger ul {
        gap: 30px;
        margin: 30px auto 0 auto;
    }
    .build_bigger ul li div h3,
    .build_bigger ul li:nth-child(1) div h3,
    .build_bigger p:nth-child(2) {
        width: 100%;
    }
    .build_bigger ul li {
        width: 100%;
    }
    .build_bigger ul li div img {
        right: 20px;
        width: 60px;
    }
    .build_bigger ul li:last-child div img {
        width: 80px;
    }
}


@media(max-width:768px) {
   
    
    
}




@media(max-width:576px) {
    .build_bigger ul {
        padding: 0 12px;
    }
    .build_bigger ul li div {
        padding: 40px 20px 20px 20px;
    }
    .build_bigger ul li div h3,
    .build_bigger ul li:nth-child(1) div h3 {
        width: calc(100% - 50px);
    }
    .build_bigger ul li div img {
        width: 50px;
    }
    .build_bigger ul li:last-child div img {
        width: 70px;
    }
}








/* Ready to Partner With Us and Make an Impact? */
.partners_cta {
    padding: 150px 0 120px;
    background-image: url(../icons/grad.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.partners_cta h2 {
    width: 80%;
    margin: 0 0 70px 0;
}
.partners_cta img {
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
}
.partners_cta .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);
}
.partners_cta .col-xl-5 div p {
    font-size: 20px;
    line-height: 30px;
}
.partners_cta .col-xl-5 div p:first-child {
    font-family: var(--font-caveat);
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    transform: rotate(20deg);
    color: var(--black-color);
    margin: 0 0 80px 40px;
    width: 20%;
}
.partners_cta .two_btns {
    margin: 40px 0 0 0;
}














@media(max-width:1400px) {
    .partners_cta h2 {
        width: 100%;
    }
    .partners_cta .col-xl-7 div:after {
        right: -60px;
        top: 90px;
        width: 280px;
        height: 60px;
    }
    .partners_cta .col-xl-5 div p:first-child {
        margin: 0 0 50px 40px;
    }
}





@media(max-width:1200px) {
    .partners_cta {
        padding: 120px 0;
    }
    .partners_cta h2 {
        width: 80%;
        margin: 0 0 50px 0;
    }
    .partners_cta img {
        width: 80%;
    }
    .partners_cta .col-xl-7 div:after {
        right: -50px;
        top: 40px;
        width: 240px;
        height: 55px;
    }
    .partners_cta .col-xl-5 div p {
        font-size: 16px;
        line-height: 26px;
    }
    .partners_cta .col-xl-5 div p:first-child {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 30px 40px;
        width: 30%;
    }
    .partners_cta .two_btns {
        margin: 20px 0 0 0;
    }
}














@media(max-width:992px) {
    .partners_cta {
        padding: 70px 0;
    }
    .partners_cta h2 {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .partners_cta img {
        width: 100%;
    }
    .partners_cta .col-xl-7 div:after {
        right: -70px;
        left: 0;
        top: unset;
        bottom: -50px;
        width: 190px;
        height: 40px;
        transform: rotate(150deg) scaleY(-1);
    }
    .partners_cta .col-xl-5 div p:first-child {
        margin: 0 0 30px 0;
        width: 14%;
        transform: rotate(0deg);
    }
}









@media(max-width:768px) {
    .partners_cta .col-xl-5 div p:first-child {
        width: 15%;
    }
}



@media(max-width:576px) {
    .partners_cta .row {
        gap: 30px;
    }
    .partners_cta .col-xl-7 div:after {
        right: -150px;
        left: 0;
        top: unset;
        bottom: -60px;
        width: 150px;
        height: 35px;
        transform: rotate(150deg) scaleY(-1);
    }
    .partners_cta .col-xl-5 div p:first-child {
        width: 100%;
        text-align: left;
    }
    .partners_cta .two_btns {
        flex-flow: column;
    }
    .partners_cta .two_btns a {
        width: 206px;
    }
}
