@font-face {
    font-family: "Poppins";
    src: url(/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: "PoppinsBlack";
    src: url(/fonts/Poppins-Black.ttf);
}


@font-face {
    font-family: 'ChantalMedium';
    src: url(/fonts/chantal_medium_regular-webfont.woff2) format('woff2'),
         url(/fonts/chantal_medium_regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}

.container{
    width: 1410px;
    z-index: 50;
}
@media (max-width: 1410px) {
    .container {
        width: 1200px;
    }
}
@media (max-width: 1200px) {
    .container {
        width: 1024px;
    }
}
@media (max-width: 1024px) {
    .container {
        width: 970px;
    }
}
@media(max-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (max-width: 950px) {
    .container {
        width: 750px;
    }
}
@media (max-width: 768px) {
    .container {
        width: auto;
    }
}


/* Header */

.logo {
    width: 198px;
    height: 49px;
    background-image: url(/images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    transition: all 0.2s ease;
    margin-left: 24px;
    -webkit-animation: animated_opacity 3s 1;
            animation: animated_opacity 3s 1;
}

@media only screen and (max-width: 1024px) {
    .logo {
        width: 165px;
        height: 41px;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        width: 98px;
        height: 24px;
        margin: 0px;
    }
}

@-webkit-keyframes animated_opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes animated_opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.logo:hover {
    scale: 0.95;
    opacity: 0.7;
}

.mobile-menu {
    display: none;
    position: relative;
    width: 24px;
    height: 24px;
    background-image: url(/images/mobile-menu.png);
    background-repeat: no-repeat;
}
.mobile-menu.active .mobile-menu-links {
    visibility: visible;
    width: 220px;
    height: 90px;
    opacity: 1;
}

.mobile-menu-links {
    visibility: hidden;
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 40px;
    right: 0;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.mobile-menu-links a {
    display: flex;
    font-family: "Poppins";
    font-size: 16px;
    color: white;
    text-decoration: none !important;
    padding-left: 24px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 100%;
    align-items: center;
}

.mobile-menu-links a:hover {
    background-color: #f82e5e;
    color: white;
}

header nav a:hover {
    color: #f82e5e;
}
header nav a:focus {
    color: #fff;
    text-decoration: none;
}
header nav a:focus:hover {
    color: #f82e5e;
    text-decoration: underline;
}

@media only screen and (max-width: 660px) {
    header nav {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
}

.hero {
    position: relative;
    height: 100vh;
    background-color: #002c75;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero .bg {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-image: url(/images/couple.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    -webkit-animation: animated_bg 1s 1;
            animation: animated_bg 1s 1;
}
@media only screen and (max-width: 660px) {
    .hero .bg {
        left: -70px;
    }
}
@-webkit-keyframes animated_bg {
    0% {
        opacity: 0;
        transform: scaleX(0.5);
    }
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }
}
@keyframes animated_bg {
    0% {
        opacity: 0;
        transform: scaleX(0.5);
    }
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }
}

.hero .hearts-left {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-image: url(/images/hearts-left.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto;
}
.hero .hearts-right {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-image: url(/images/hearts-right.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto;
}

.hero::before {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 50%;
    content: "";
    background-image: linear-gradient(to bottom, #001434, transparent);
}

.hero::after {
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-image: linear-gradient(to bottom, transparent, #002c75);
}

header {
    padding: 30px;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

header nav a {
    font-family: "Poppins";
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin: 0px 24px;
    transition: all 0.2s ease;
    -webkit-animation: animated_opacity 3s 1;
            animation: animated_opacity 3s 1;
}

@media only screen and (max-width: 1024px) {
    header nav a {
        font-size: 16px;
    }
}

header nav a:hover {
    color: #f82e5e;
}
header nav a:focus {
    color: #fff;
    text-decoration: none;
}
header nav a:focus:hover {
    color: #f82e5e;
    text-decoration: underline;
}

.hero .content {
    /* text-align: center; */
    z-index: 10;
    max-width: 952px;
}

@media only screen and (max-width: 767px) {
    .hero .content {
        padding: 0px 15px;
    }
}

.hero .content h1,
.hero .content h3,
.hero .content p {
    color: white;
    margin: 0px;
    padding: 0px;
}
.hero .content p {
    font-size: 21px;
    line-height: 33px;
    margin-bottom: 40px;
    max-width: 685px;
}
@media only screen and (max-width: 1440px) {
    .hero .content p {
        font-size: 18px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 1024px) {
    .hero .content p {
        font-size: 16px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 991px) {
    .hero .content p {
        font-size: 14px;
        line-height: 24px;
    }
}

.hero .content h1 {
    font-family: "PoppinsBlack";
    font-size: 80px;
    line-height: 100px;
    -webkit-animation: animated_h1 2s 1;
            animation: animated_h1 2s 1;
}

@media only screen and (max-width: 1440px) {
    .hero .content h1 {
        font-size: 62px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero .content h1 {
        font-size: 62px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 500px) {
    .hero .content h1 {
        font-size: 32px;
        line-height: 48px;
    }
}

@-webkit-keyframes animated_h1 {
    0% {
        transform: rotateX(0deg);
    }
    25% {
        transform: rotateX(40deg);
    }
    50% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@keyframes animated_h1 {
    0% {
        transform: rotateX(0deg);
    }
    25% {
        transform: rotateX(40deg);
    }
    50% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.hero .content h3 {
    margin-top: 16px;
    font-family: "Poppins";
    font-size: 31px;
    line-height: 48px;
    -webkit-animation: animated_h3 3s 1;
            animation: animated_h3 3s 1;
}

@media only screen and (max-width: 1024px) {
    .hero .content h3 {
        font-size: 21px;
        line-height: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .hero .content h3 {
        font-size: 21px;
        line-height: 31px;
    }
}

@media only screen and (max-width: 500px) {
    .hero .content h3 {
        font-size: 18px;
        line-height: 31px;
    }
}

@-webkit-keyframes animated_h3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes animated_h3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.download {
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-bottom: 72px;
}
@media only screen and (max-width: 660px) {
    .download{
        padding-left: 15px;
    }
}

.download a {
    width: 212px;
    height: 64px;
    display: block;
    transition: all 0.2s ease;
    -webkit-animation: animated_download 1s 1;
            animation: animated_download 1s 1;
    background-size: 100% 100%;
}

@media only screen and (max-width: 1024px) {
    .download a {
        width: 191px;
        height: 58px;
    }
}
@media only screen and (max-width: 767px) {
    .download a {
        width: 160px;
        height: 49px;
    }
}

@media only screen and (max-width: 500px) {
    .download a {
        width: 132px;
        height: 40px;
    }
}

@-webkit-keyframes animated_download {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    25% {
        transform: rotate(-5deg);
        opacity: 1;
    }
    50% {
        transform: rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes animated_download {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    25% {
        transform: rotate(-5deg);
        opacity: 1;
    }
    50% {
        transform: rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.download a:hover {
    scale: 0.95;
    opacity: 0.7;
}
.download .ios {
    background-image: url(/images/download-ios.png);
}
.download .android {
    background-image: url(/images/download-android.png);
}

.download_sticky{
    position: fixed;
    bottom: 15px;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 80;
    gap: 16px;
}

.download_sticky a {
    width: 223px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    background: #F82E5E;
    border-radius: 11px 0 0 11px;
    transform: translateX(160px);
    transition: all .3s;
    padding: 12px;
}
.download_sticky .ios > img{
    max-width: 33px;
    margin-right: 18px;
}
@media only screen and (max-width: 1024px) {
    .download_sticky a{
        height: 48px;
        width: 173px;
        transform: translateX(123px);
    }
    .download_sticky .ios > img{
        max-width: 25px;
        margin-right: 18px;
    }
}
.download_sticky .android > img{
    max-width: 39px;
}
@media only screen and (max-width: 1024px) {
    .download_sticky .android > img{
        max-width: 29px;
    }
    
}
.download_sticky a > img{
    margin-right: 12px;
}
.download_sticky span {
    opacity: 0;
    max-width: 125px;
    transition: all .7s;
}
@media only screen and (max-width: 1024px) {
    .download_sticky span {
        max-width: 100px;
    }
}
.download_sticky span img {
    max-width: 100%;
}
.download_sticky a:hover {
    transform: translateX(0px);
}
.download_sticky a:hover span{
    opacity: 1;
}

/* Header [END] */

/* Hero */
.hero_subtitle {
    max-width: 1410px;
    font-family: "Poppins";
    font-weight: normal;
    font-size: 31px;
    margin: 0 auto;
    padding: 200px 0px;
    line-height: 2.2;
    color: #3b3b3b;
    text-align: center;
}

@media only screen and (max-width: 1500px) {
    .hero_subtitle {
        padding: 170px 96px;
    }
}

@media only screen and (max-width: 1366px) {
    .hero_subtitle {
        font-size: 26px;
        padding: 170px 96px;
    }
}
@media only screen and (max-width: 1024px) {
    .hero_subtitle {
        font-size: 21px;
        padding: 130px 80px;
    }
}
@media only screen and (max-width: 767px) {
    .hero_subtitle {
        font-size: 21px;
        padding: 97px 64px;
    }
}
@media only screen and (max-width: 500px) {
    .hero_subtitle {
        font-size: 18px;
        padding: 80px 24px;
    }
}
/* Hero [END] */

/* How it Works*/

.how_it_works{
    text-align: center;
    padding-top: 200px;
    margin-bottom: 140px;
}
@media only screen and (max-width: 1366px) {
    .how_it_works{
        padding-top: 140px;
        margin-bottom: 120px;
    }
}
@media only screen and (max-width: 991px) {
    .how_it_works{
        padding-top: 80px;
        margin-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .how_it_works{
        margin-bottom: 60px;
    }
}
.how_it_works img{
    max-width: 1067px;
}
@media only screen and (max-width: 1366px) {
    .how_it_works img{
        max-width: 80%;
    }
}
@media only screen and (max-width: 1024px) {
    .how_it_works img{
        max-width: 100%;
    }
}
.how_it_works h2{
    font-family: "PoppinsBlack";
    font-weight: normal;
    font-size: 64px;
    color: #3b3b3b;
    margin-top: 0;
    margin-bottom: 50px;
}
@media only screen and (max-width: 1366px) {
   .how_it_works h2 {
        font-size: 57px;
    }
}
@media only screen and (max-width: 1024px) {
   .how_it_works h2 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 767px) {
    .how_it_works h2 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 500px) {
   .how_it_works h2 {
        font-size: 36px;
    }
}

.steps{
    display: flex;
    gap: 2%;
}
.steps .step {
    flex: 0 0 32%;
}
.steps .step h3{
    color: #F82E5E;
    font-size: 40px;
    font-family: 'ChantalMedium';
}
.steps .step p{
    font-size: 18px;
    line-height: 24px;
    font-family: "Poppins";
}
@media only screen and (max-width: 767px) {
    .steps{
        flex-wrap: wrap;
        flex-direction: column;
    }
}


/* Focus on the essence & Backed up by science*/
.details_with_image {
    display: flex;
    max-width: 1410px;
    margin: 0 auto;
    justify-content: center;
    gap: 40px;
}
@media only screen and (max-width: 1500px) {
    .details_with_image {
        padding: 0px 96px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image {
        padding: 0px 80px;
        gap: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .details_with_image {
        padding: 0px 64px;
    }

}
@media only screen and (max-width: 767px) {
    .details_with_image {
        flex-direction: column;
        padding: 0px 64px;
    }
}
@media only screen and (max-width: 500px) {
    .details_with_image {
        flex-direction: column;
        padding: 0px 24px;
        gap: 20px;
    }
}

.details_with_image aside {
    display: flex;
    align-items: flex-end;
}
.details_with_image .circe_brushed_heading {
    font-family: "PoppinsBlack";
    font-weight: normal;
    font-size: 64px;
    color: #3b3b3b;
    line-height: 88px;
    margin-top: 0;
}

.details_with_image .circe_brushed_heading span {
    position: relative;
    display: inline-block;
    padding: 0px 42px 19px 0px;
}
@media only screen and (max-width: 1560px) {
    
}
@media only screen and (max-width: 1366px) {
    .details_with_image .circe_brushed_heading {
        font-size: 57px;
        line-height: 85px;
    }

    .details_with_image .circe_brushed_heading span {
        padding: 0px 20px 11px 0px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image .circe_brushed_heading {
        font-size: 45px;
        line-height: 67px;
    }
}
@media only screen and (max-width: 767px) {
    .details_with_image .circe_brushed_heading {
        font-size: 45px;
        line-height: 60px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 500px) {
    .details_with_image .circe_brushed_heading {
        font-size: 36px;
        line-height: 56px;
    }
}

.details_with_image .circe_brushed_heading span::after {
    content: "";
    display: block;
    width: 468px;
    height: 115px;
    background-image: url(/images/brush-circle-big.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: 0;
    bottom: 3px;
    z-index: -1;
}

@media only screen and (max-width: 1366px) {
    .details_with_image .circe_brushed_heading span::after {
        width: 300px;
        height: 96px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image .circe_brushed_heading span::after {
        width: 310px;
        height: 78px;
    }
}
@media only screen and (max-width: 767px) {
    .details_with_image .circe_brushed_heading span::after {
        width: 260px;
        height: 80px;
        bottom: -10px;
    }
}
@media only screen and (max-width: 500px) {
    .details_with_image .circe_brushed_heading span::after {
        /* width: 192px;
        height: 62px; */
    }
}

.details_with_image .line_brushed_heading {
    font-family: "PoppinsBlack";
    font-weight: normal;
    font-size: 64px;
    color: #3b3b3b;
}

.details_with_image .line_brushed_heading span {
    display: inline-block;
}

.details_with_image .line_brushed_heading span {
    position: relative;
    padding: 0px 0px 12px 0px;
}

@media only screen and (max-width: 1366px) {
    .details_with_image .line_brushed_heading {
        font-size: 57px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image .line_brushed_heading {
        font-size: 45px;
        line-height: 67px;
    }
}
@media only screen and (max-width: 767px) {
    .details_with_image .line_brushed_heading {
        font-size: 45px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 500px) {
    .details_with_image .line_brushed_heading {
        font-size: 36px;
        line-height: 56px;
    }
}

.details_with_image .line_brushed_heading span::after {
    content: "";
    display: block;
    width: 310px;
    height: 12px;
    background-image: url(/images/brush-line-long.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: -20px;
    bottom: 0;
    z-index: -1;
}
@media only screen and (max-width: 1366px) {
    .details_with_image .line_brushed_heading span::after {
        width: 274px;
        height: 18px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image .line_brushed_heading span::after {
        width: 214px;
        height: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .details_with_image .line_brushed_heading span::after {
        width: 160px;
        height: 13px;
    }
}
@media only screen and (max-width: 500px) {
    .details_with_image .line_brushed_heading span::after {
    }
}

.details_with_image .subtitle {
    margin-top: 24px;
    font-family: "Poppins";
    font-weight: normal;
    font-size: 24px;
    color: #5a5a5a;
}
@media only screen and (max-width: 1366px) {
    .details_with_image .subtitle {
        font-size: 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image .subtitle {
        font-size: 16px;
    }
}

/* Find your ideal partner */
.details_with_image section {
    width: 50%;
    min-height: 470px;
    margin-top: 54px;
}
.details_with_image aside {
    width: 48%;
}
.details_with_image aside img {
    width: 100%;
    
}

@media only screen and (max-width: 1560px) {
    .details_with_image section {
        width: 66%;
    }
    .details_with_image aside {
        width: 44%;
    }
}

@media only screen and (max-width: 1366px) {
    .details_with_image section {
        width: 48%;
        min-height: auto;
    }
    .details_with_image aside {
        width: 50%;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image section {
        width: 56%;
        min-height: auto;
        margin-top: 24px;
    }
    .details_with_image aside {
        width: 44%;
    }
    .details_with_image aside img {
    }
}

@media only screen and (max-width: 767px) {
    .details_with_image section {
        width: 100%;
        min-height: auto;
    }
    .details_with_image aside {
        width: 100%;
    }
}

/* Your Perfect Match */

.details_with_image.backed_up_by_science section {
    padding-bottom: 125px;
    margin-top: 0;
}
@media only screen and (max-width: 1440px) {
    .details_with_image.backed_up_by_science section {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 1366px) {
    .details_with_image.backed_up_by_science section {
        padding-bottom: 66px;
    }
}
@media only screen and (max-width: 1024px) {
    .details_with_image.backed_up_by_science section {
        padding-bottom: 100px;
    }
}
@media only screen and (max-width: 767px) {
    .details_with_image.backed_up_by_science {
        gap: 0;
    }
    .details_with_image.backed_up_by_science section {
        padding-bottom: 0px;
    }
}

/* Focus on the essence & Backed up by science [END] */

/* The Science behind */
.heart_illustration {
    display: flex;
    max-width: 1410px;
    margin: 30px auto 140px;
    align-items: flex-start;
    gap: 50px;
}

@media only screen and (max-width: 1440px) {
    .heart_illustration {
        gap: 40px;
    }
}
@media only screen and (max-width: 1024px) {
    .heart_illustration {
        overflow: hidden;
        gap: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .heart_illustration {
        margin-bottom: 60px;
    }

}
@media only screen and (max-width: 767px) {
    .heart_illustration {
        flex-direction: column;
        justify-content: flex-start;
        background-image: url(/images/heart-illustration.png);
        background-repeat: no-repeat;
        background-size: 120%;
        background-position: center 550px;
        height: 1060px;
        gap: 20px;
        padding-top: 50px;
        padding: 0 24px;
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 500px) {
    .heart_illustration {
        background-size: 150%;
    }
}
@media only screen and (max-width: 380px) {
    .heart_illustration {
        background-position: center 590px;
        height: 1040px;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 330px) {
    .heart_illustration {
        background-position: center 660px;
        height: 1040px;
        margin-bottom: 40px;
    }
}

.heart_illustration section {
    flex: 0 0 48%;
}
@media only screen and (max-width: 1440px) {
    .heart_illustration section {
        flex: 0 0 47%;
        padding-right: 20px;
    }
}

.heart_illustration .illustration {
    background-image: url(/images/heart-illustration.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    height: 580px;
    flex: 1 0 50%;
    position: relative;
    left: -100px;
    margin-top: 100px;
}

@media only screen and (max-width: 1540px) {
    .heart_illustration .illustration {
        left: -40px;
    }
}
@media only screen and (max-width: 1368px) {
    .heart_illustration .illustration {
        background-size: auto 100%;
        background-position: right 0px;
        left: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .heart_illustration .illustration {
        height: 430px;
    }
}

@media only screen and (max-width: 767px) {
    .heart_illustration .illustration {
        display: none;
    }
}

.heart_illustration h1 {
    display: inline;
    font-family: "PoppinsBlack";
    font-weight: normal;
    font-size: 64px;
    color: #3b3b3b;
    padding: 0px;
    margin: 0 auto;
    line-height: 80px;
}

@media only screen and (max-width: 1366px) {
    .heart_illustration h1 {
        font-size: 57px;
    }
}
@media only screen and (max-width: 1024px) {
    .heart_illustration h1 {
        font-size: 45px;
        line-height: 67px;
    }
}
@media only screen and (max-width: 767px) {
    .heart_illustration h1 {
        font-size: 45px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 500px) {
    .heart_illustration h1 {
        font-size: 36px;
        line-height: 56px;
    }
}

.heart_illustration h1 span {
    display: inline-block;
    position: relative;
}
.heart_illustration h1 span::after {
    content: "";
    display: block;
    width: 442px;
    height: 14px;
    background-image: url(/images/brush-line-longer.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: -40px;
    bottom: -5px;
    z-index: -1;
}
@media only screen and (max-width: 1024px) {
    .heart_illustration h1 span::after {
        width: 321px;
        height: 11px;
        left: -20px;
    }
}
@media only screen and (max-width: 767px) {
    .heart_illustration h1 span::after {
        width: 251px;
        height: 9px;
        left: -20px;
    }
}

.heart_illustration p {
    margin-top: 24px;
    font-family: "Poppins";
    font-weight: normal;
    font-size: 24px;
    color: #5a5a5a;
}
@media only screen and (max-width: 1366px) {
    .heart_illustration p {
        font-size: 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .heart_illustration p {
        font-size: 16px;
    }
}

.heart_illustration .downloads {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .heart_illustration .downloads {
        padding-bottom: 500px;
    }
}

.heart_illustration .download {
    padding: 20px 50px 0px;
    box-sizing: border-box;
    text-align: center;
}
@media only screen and (max-width: 1024px) {
    .heart_illustration .download {
        padding: 20px 50px 0px 10px;
    }
}

/* Try Now [END] */

footer {
    background-color: #f4f4f7;
    height: 192px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (max-width: 1500px) {
    footer {
        padding: 96px;
    }
}

footer section .wrap {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 850px) {
    footer section .wrap {
        flex-direction: column;
    }
}

footer section {
    display: flex;
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-end;
    justify-content: space-between;
}

@media only screen and (max-width: 850px) {
    footer section {
        align-items: center;
        justify-content: unset;
        flex-direction: column;
    }
}

footer section .get_the_app {
    font-family: "Poppins";
    font-weight: normal;
    font-size: 24px;
    color: #5a5a5a;
    padding-right: 16px;
}

@media only screen and (max-width: 1024px) {
    footer section .get_the_app {
        font-size: 16px;
    }
}

@media only screen and (max-width: 850px) {
    footer section .get_the_app {
        padding-right: 0px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 500px) {
    footer section .get_the_app {
        font-size: 16px;
        padding-right: 0px;
        padding-bottom: 10px;
    }
}

footer .copyright {
    font-family: "Poppins";
    font-weight: normal;
    font-size: 16px;
    color: #5a5a5a;
    padding-right: 16px;
}

@media only screen and (max-width: 1024px) {
    footer .copyright {
        font-size: 14px;
    }
}

@media only screen and (max-width: 850px) {
    footer .copyright {
        padding-top: 18px;
        padding-right: 0px;
        width: 280px;
        text-align: center;
    }
}

@media only screen and (max-width: 500px) {
    footer .copyright {
        font-size: 10px;
    }
}

.get_buttons {
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.get_buttons a {
    width: 213px;
    height: 65px;
    display: block;
    transition: all 0.2s ease;
    -webkit-animation: animated_download 1s 1;
            animation: animated_download 1s 1;
    background-size: 100% 100%;
}

@media only screen and (max-width: 1366px) {
    .get_buttons a {
        width: 191px;
        height: 58px;
    }
}
@media only screen and (max-width: 1024px) {
    .get_buttons a {
        width: 160px;
        height: 49px;
    }
}

@media only screen and (max-width: 850px) {
    .get_buttons a {
        width: 132px;
        height: 40px;
    }
}

.get_buttons a:hover {
    scale: 0.95;
    opacity: 0.7;
}
.get_buttons .ios {
    background-image: url(/images/download-ios-outlined.png);
}
.get_buttons .android {
    background-image: url(/images/download-android-outlined.png);
}
