@charset "utf-8";


/*~-~-~-~-~-~-~-~-~-~ Embeded fonts ~-~-~-~-~-~-~-~-~-~*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*~-~-~-~-~-~-~-~-~-~ Embeded fonts ~-~-~-~-~-~-~-~-~-~*/


/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */

:root {

    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
    --body-font: "Roboto", sans-serif;
    --heading-font: "Roboto", sans-serif;
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
    --f-size-XXXL: 60px;
    --f-size-XXL: 60px;
    --f-size-XL: 40px;
    --f-size-L: 30px;
    --f-size-M: 24px;
    --f-size-S: 20px;
    --f-size-Body: 16px;
    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    /* ~-~-~-~-~ common transition ~-~-~-~-~ */
    --common-transition: all 0.8s ease;
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */

    /* ~-~-~-~-~ colors ~-~-~-~-~ */
    --color-white: #fff;
    --color-black: #000000;
    --color-blue: #0096DC;
    --color-blue-secondary: #0ADAFF;
    --color-blue-three: #02D9FF;
    --color-blue-bg: #007FBA;
    --color-body: #6B7280;
    --color-grey: #777777;
    /* ~-~-~-~-~ colors ~-~-~-~-~ */
}


/* html { overflow-x: hidden; } */
body {
    font-size: var(--f-size-Body);
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-body);
    transition: var(--common-transition);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    padding: 0;
    line-height: 1.1;
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-black);
}

h1 {
    font-size: var(--f-size-XXXL);
}

h2 {
    font-size: var(--f-size-XXL);
}

h3 {
    font-size: var(--f-size-XL);
}

h4 {
    font-size: var(--f-size-L);
}

h5 {
    font-size: var(--f-size-M);
}

h6 {
    font-size: var(--f-size-S);
}

p {
    margin: 0 0 30px;
    padding: 0;
    line-height: 1.3;
    font-size: var(--body-font);
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
    color: var(--color-blue-four);
    outline: none;
    text-decoration: none;
    transition: var(--common-transition);
}

a:hover {
    text-decoration: none;
    transition: var(--common-transition);
}

textarea,
select,
.form-control,
input {
    font-size: 18px;
    padding: 16px 20px;
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    border: 1px solid #9D9D9D;
    outline: none !important;
    box-shadow: none !important;
    color: #626262;
    margin-bottom: 15px;
    height: 60px;
    font-family: var(--body-font);
    font-weight: 500;
}

textarea {
    min-height: 105px !important;
    resize: none;
}

input[type="submit"],
button[type="submit"] {
    padding-right: 84px;
    transition: all 0.3s ease 0s;
    outline: none;
    width: auto;
    font-size: 16px;
    background-image: url(../images/white-btn.svg);
    background-repeat: no-repeat;
    background-position: center right 45px;
    height: auto;
    margin: 0;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-image: url(../images/btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 35px;
}

textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus {
    outline: none !important;
    box-shadow: inherit !important;
    border: 1px solid #D2CEDA;
}

select,
.form-select {
    font-size: 18px;
    padding: 16px 20px;
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #9D9D9D;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 12px;
    color: #626262;
    height: 60px;
    cursor: pointer;
}

input:focus,
input:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--clr-grey-secondary);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: inherit;
}

/* --- for placeholder color --- */
input::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #626262;
    opacity: 1;
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #626262;
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #626262;
}

/* --- for placeholder color --- */

label {
    margin-bottom: 10px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-black-secondary);
}

.common-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}


.btn,
a.btn {
    overflow: hidden;
    position: relative;
    z-index: 1;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    text-align: center;
    color: #2B1D2A;
    padding: 17px 45px;
    line-height: 1;
    border-radius: 52px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    background: var(--color-blue-three);
    border: 1px solid transparent;
    box-shadow: 0px 5px 10px 0px #0000000D;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn:hover {
    background: var(--color-white);
    color: var(--color-blue-three);
    border: 1px solid var(--color-blue-three);
}

.white-border,
a.white-border {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.white-border:hover,
a.white-border:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.white-border:hover img,
a.white-border:hover img {
    filter: brightness(0) invert(1);
}

/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */

/* -- Header -- */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 35px 0;
}

.custom-header-wrap {
    display: flex;
    align-items: center;
}

.logo-wrap {
    width: 20%;
}

.logo-wrap a {
    display: block;
    width: 90px;
}

.logo-wrap a img {
    width: 100%;
}

.menu-wrapper {
    width: 60%;
}

.hdr-wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 30px;
}

.hdr-wrap ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 0;
}

.main-menu ul li:hover a {
    color: var(--color-blue);
}

.main-menu ul li.current-menu-item a {
    background: #017FBA1A;
    color: var(--color-blue);
}

.main-menu ul li a {
    color: var(--color-body);
    position: relative;
    display: block;
    font-weight: 500;
    padding: 17px 43px;
    line-height: 1;
    border-radius: 30px;
}

.main-menu ul li.btn {
    display: none;
}

.main-menu ul li.btn:hover a {
    color: var(--color-blue);
}

.header-btn {
    margin-left: auto;
}

.header-sticky {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    z-index: 9;
    background: #e0edf359;
    backdrop-filter: blur(20px);
    padding: 10px 0;
}

.header-sticky .logo-wrap a {
    width: 60px;
}


@keyframes slide-down {

    0% {
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

/* -- Header -- */


.slick-arrow {
    background: #FFFFFFB2;
    width: 90px;
    height: 90px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #34439440;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    font-size: 0;
    transition: var(--common-transition);
}

.slick-arrow:hover,
.slick-arrow:focus {
    border: 1px solid var(--color-pink);
    background: var(--color-white);
}

.slick-arrow::before {
    content: "";
    position: absolute;
    opacity: 1;
    width: 16px;
    height: 30px;
    font-size: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-prev::before {
    background-image: url(../images/prev-arrow.svg);
}

.slick-next::before {
    background-image: url(../images/next-arrow.svg);
}

.blog-slider .slick-prev {
    left: -45px;
}

.blog-slider .slick-next {
    right: -45px;
}

.slick-dots {
    position: relative;
    bottom: inherit;
    margin-top: 80px;
}

.slick-dots li button::before {
    border: 1px solid var(--color-blue);
    content: "";
    opacity: 1;
    border-radius: 50%;
    width: 13px;
    height: 13px;
}

.slick-dots li,
.slick-dots li button {
    width: 13px;
    height: 13px;
}

.slick-dots li.slick-active,
.slick-dots li.slick-active button,
.slick-dots li.slick-active button::before {
    width: 51px;
}

.slick-dots li.slick-active button::before {
    border-radius: 50px;
    background: var(--color-blue);
    opacity: 1;
}

/* ======== Homepage ======== */

.banner-wrapper {
    padding-top: 182px;
}

.title-box:not(.features-cnt) {
    padding-bottom: 60px;
}

.title-box h6 {
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 4.8px;
}

.title-box h1,
.title-box h2,
.title-box:not(.features-cnt) h3 {
    font-weight: 600;
    margin-bottom: 0;
}

.title-box strong {
    font-weight: 600;
    color: var(--color-blue);
}

.banner-top {
    display: flex;
    justify-content: space-between;
}

.banner-top .title-box {
    width: 100%;
    max-width: 573px;
    padding-bottom: 0;
}

.banner-top .banner-cnt {
    width: 100%;
    max-width: 530px;
}

.app-download h6 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    margin: 0 0 20px;
}

.app-download ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.app-download ul li:not(:last-child) {
    margin-right: 20px;
}

.app-download.white h6 {
    color: var(--color-white);
}

.blue-banner {
    background: var(--color-blue-bg);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.blue-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/blue-blur.png) no-repeat center bottom / contain;
    z-index: -1;
}

.banner-wrapper .text-slider {
    padding-top: 75px;
}

.inner-blue-banner {
    padding: 60px;
}

.banner-img {
    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);
}

.banner-img img {
    height: 620px;
}

.listing-wrap ul {
    list-style: none;
    padding: 120px 0 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.listing-wrap ul li {
    color: var(--color-white);
    font-size: 20px;
    background: url(../images/white-tick.svg) no-repeat left / 30px;
    padding-left: 40px;
    line-height: 30px;
    width: 25%;
}

.slide-text {
    background: radial-gradient(75% 154.73% at 49.53% 100%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    color: transparent;
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.slide-text::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(75% 154.73% at 49.53% 100%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
}

.gradient-box {
    padding: 60px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.gradient-box:not(.styled-two) {
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 440px;
}

.gradient-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(114.08deg, rgba(0, 217, 255, 0) -37.12%, rgba(0, 193, 237, 0.264423) 25.13%, rgba(0, 173, 221, 0.492257) 53.96%, rgba(0, 157, 209, 0.661504) 78.21%, #007FBA 99.17%);
    opacity: 20%;
    border-radius: 30px;
    z-index: -1;
}

.gradient-box.styled-one {
    padding: 160px 60px;
}

.features-cnt.max-features {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
}

.features-cnt h4,
.features-cnt h3 {
    background: linear-gradient(82.25deg, #000000 -13.4%, #007FBA 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    color: transparent;
}

.feature-sec .row .col-lg-6:nth-child(even) .gradient-box {
    background-position: right bottom;
}

.feature-sec .row .col-lg-6:nth-child(even) .gradient-box .features-cnt.max-features {
    margin-left: 0;
}

.gradient-box.styled-two {
    padding-bottom: 0;
}

.gradient-box.styled-two .features-cnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
}

.gradient-box.styled-two .features-cnt h4 {
    margin: 0;
    flex: 0 0 30%;
}

.gradient-box.styled-two .features-cnt p {
    width: 100%;
    max-width: 560px;
}

.gradient-box.styled-three {
    padding: 85px;
}

.gradient-box.blue {
    background: radial-gradient(100% 100% at 50.11% 100%, #00D9FF 0%, #007FBA 100%);
    padding-bottom: 0;
}

.gradient-box.blue::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url(../images/radial-bg.svg) no-repeat center / cover;
}

.gradient-box.blue .featured-img img {
    height: 300px;
}

.gradient-box.sky-blue {
    background: linear-gradient(180deg, #A3F1FF 0%, #5CCBFF 100%);
}

.featured-img {
    text-align: center;
}

.app-cnt {
    text-align: center;
    margin-bottom: 30px;
}

.app-cnt h4 {
    color: var(--color-white);
}

.app-cnt ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.additional-feature-sec .title-box h3 {
    text-transform: none;
}

.featured-card {
    background: #E7F7FC;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.icon-wrap {
    width: 105px;
    background: var(--color-white);
    aspect-ratio: 1 / 1;
    flex: 0 0 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-right: 20px;
}

.card-cnt h6 {
    margin: 0 0 10px;
}

.live-life-slider-sec {
    position: relative;
}

.live-life-slider-sec .slide-text {
    background: radial-gradient(19.43% 135.7% at 49.7% 78.14%, #017FBA 0%, rgb(1 127 186 / 17%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 7vw;
}

.live-life-slider-sec .slide-text::before {
    background: #ECF5FA;
    width: 25px;
    height: 25px;
    left: -50px;
}

.live-life-slider-sec .img-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.slider-wrapper {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    z-index: 1;
}

.card-sec-wrapper {
    margin-top: -100px;
}

.subscription-wrap {
    width: 100%;
    max-width: 1056px;
    margin: 0 auto;
}

.subscription-sec {
    margin-bottom: 100px;
}

.subscription-box {
    border-radius: 30px;
    overflow: hidden;
}

.price-wrap {
    background: var(--color-blue);
    box-shadow: 0px 30px 40px 0px #E8D4D433;
    padding: 30px 30px 60px;
}

.price-wrap h6 {
    color: var(--color-blue-three);
    margin: 0 0 20px;
}

.price-wrap h2 {
    color: var(--color-white);
    margin: 0;
    font-size: 50px;
    text-transform: none;
}

.price-wrap h2 span {
    font-size: 18px;
}

.subscription-plan {
    background: #E7F7FC;
    box-shadow: 0px 30px 40px 0px #E8D4D433;
    padding: 30px;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
}

.subscription-plan h4 span {
    font-size: 16px;
}

.subscription-plan p {
    min-height: 42px;
}

.subscription-plan ul {
    list-style: none;
    padding: 30px 0 0;
    margin: 0 0 30px;
    border-top: 1px solid #DCDCDC;
}

.subscription-plan ul li {
    color: var(--color-black);
    font-weight: 500;
    background: url(../images/blue-tick.svg) no-repeat left / 30px;
    padding-left: 40px;
    line-height: 30px;
}

.subscription-plan ul li:not(:last-child) {
    margin-bottom: 15px;
}

.subscription-plan .btn {
    width: 100%;
}

.blog-sec {
    padding-bottom: 180px;
}

.blog-img {
    position: relative;
    padding-bottom: 50%;
    margin-bottom: 30px;
}

.blog-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.date {
    color: #0090D3;
    margin-bottom: 16px;
}

.blog-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.health-app-sec .blue-banner {
    width: 100%;
    max-width: 1345px;
    margin: 0 auto;
    padding-bottom: 0;
}

.health-app-sec .text-slider .slick-list {
    bottom: -15px;
}

.health-app-sec .title-box {
    width: 100%;
    max-width: 800px;
}

.blue-banner .title-box {
    padding-bottom: 30px;
}

.blue-banner .title-box h2 {
    color: var(--color-white);
}

.blue-banner .title-box h6 {
    color: var(--color-blue-three);
}

.absolute-img {
    position: absolute;
    right: 0;
    top: -180px;
    text-align: right;
}

.text-slider .slick-list {
    padding: 0 18%;
}

/* ======== Reach Out Form Section ======== */

.reach-out-sec {
    background: linear-gradient(135deg, #E7F7FC 0%, #F0FBFF 100%);
    position: relative;
}

.reach-out-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blue-blur.svg') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.reach-out-wrap {
    position: relative;
    z-index: 2;
}

.contact-form {
    background: var(--color-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0px 30px 40px 0px rgba(232, 212, 212, 0.2);
    margin-top: 50px;
}

.reach-out-form .form-group {
    margin-bottom: 25px;
}

.reach-out-form .form-group:last-child {
    margin-bottom: 0;
}

.reach-out-form input,
.reach-out-form select,
.reach-out-form textarea {
    border-radius: 15px;
    border: 2px solid #E7F7FC;
    background: #FAFCFE;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reach-out-form input:focus,
.reach-out-form select:focus,
.reach-out-form textarea:focus {
    border-color: var(--color-blue-three);
    background: var(--color-white);
    box-shadow: 0px 0px 0px 3px rgba(2, 217, 255, 0.1);
}

.reach-out-form textarea {
    min-height: 120px !important;
    resize: vertical;
}

.reach-out-form select {
    background-image: url('../images/select-arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 12px;
}

.form-btn {
    margin-top: 30px;
}

.form-btn .btn {
    min-width: 180px;
    font-size: 16px;
    font-weight: 600;
}

.success-message {
    background: linear-gradient(135deg, #E7F7FC 0%, #F0FBFF 100%);
    border: 2px solid var(--color-blue-three);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.5s ease-out;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-blue-three);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--color-white);
    margin: 0 auto 20px;
}

.success-message h4 {
    color: var(--color-black);
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--color-body);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== Homepage ======== */

footer {
    overflow: hidden;
    background: #222222;
    position: relative;
    z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: -160px;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 217, 255, 0.5) 0%, rgba(0, 217, 255, 0) 100%);
    z-index: -1;
}

.ftr-logo {
    display: block;
    width: 100%;
    max-width: 90px;
}

.ftr-logo img {
    width: 100%;
}

.ftr-top {
    padding: 100px 0 60px;
}

.ftr-top .col-lg-5 {
    display: flex;
    justify-content: center;
}

.ftr-menu p {
    color: var(--color-white);
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 500;
}

.ftr-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-white);
    font-weight: 500;
}

.ftr-menu ul li:not(:last-child) {
    margin-bottom: 15px;
}

.ftr-menu ul li a:hover,
.ftr-social ul li a:hover {
    color: var(--color-blue);
}

.ftr-social ul {
    list-style: none;
    padding: 0 0 25px;
    margin: 0;
    display: flex;
    color: var(--color-white);
}

.ftr-social ul li:not(:last-child) {
    margin-right: 20px;
}

.ftr-btm {
    border-top: 1px solid #FFFFFF4D;
    padding: 25px 0;
    text-align: center;
    color: var(--color-white);
}

/* -- Body Adjustment -- */

/* .modal-header { position: relative; border: 0; padding: 0; }
.modal-header button { width: 30px; height: 30px; background-color: var(--color-blue); background-image: url(../images/cross.png); border: 2px solid var(--color-blue); border-radius: 0; opacity: 1; margin: 0 0 0 auto !important; background-size: 36px; }

.modal-content { border-radius: 0; }

body.modal-open { padding: 0 !important; } */

@media only screen and (min-width: 1799px) {

    .container {
        max-width: 1600px;
    }

}

@media only screen and (max-width:1699px) {

    :root {
        --f-size-XXXL: 50px;
        --f-size-XXL: 50px;
        --f-size-XL: 35px;
        --f-size-L: 28px;
        /* --f-size-M: 24px;
    --f-size-S: 20px;
    --f-size-Body: 16px; */
    }

    .banner-top .title-box {
        max-width: 500px;
    }

    .banner-top .banner-cnt {
        max-width: 460px;
    }

    .banner-img img {
        height: 530px;
    }

    .listing-wrap ul {
        padding: 70px 0 0;
    }

    .listing-wrap ul li {
        font-size: 18px;
    }

    .gradient-box.styled-one {
        padding: 90px 60px;
    }

    .gradient-box:not(.styled-two) {
        background-size: 310px;
    }

    .gradient-box.styled-three {
        padding: 47px;
    }

    .gradient-box.blue .featured-img img {
        height: 230px;
    }

    .health-app-sec .text-slider .slick-list {
        bottom: -12px;
    }

}

@media only screen and (max-width:1599px) {}

@media only screen and (max-width:1399px) {

    :root {
        --f-size-XXXL: 40px;
        --f-size-XXL: 40px;
        --f-size-XL: 30px;
        --f-size-L: 26px;
        --f-size-M: 20px;
        --f-size-S: 18px;
        --f-size-Body: 15px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        margin: 0 0 20px;
    }

    .main-header {
        padding: 15px 0;
    }

    .banner-top .title-box {
        max-width: 400px;
    }

    .banner-top .banner-cnt {
        max-width: 420px;
    }

    .banner-wrapper .text-slider {
        padding-top: 50px;
    }

    .banner-img {
        top: -100%;
    }

    .inner-blue-banner {
        padding: 40px;
    }

    .listing-wrap ul {
        padding: 100px 0 0;
    }

    .listing-wrap ul li {
        font-size: 17px;
    }

    .gradient-box {
        padding: 30px;
        border-radius: 20px;
    }

    .gradient-box::after {
        border-radius: 20px;
    }

    .gradient-box.blue .featured-img img {
        height: 210px;
    }

    .gradient-box:not(.styled-two) {
        background-size: 240px;
    }

    .gradient-box.styled-two .features-cnt p {
        max-width: 460px;
    }

    .gradient-box.styled-three {
        padding: 30px;
    }

    .gradient-box.styled-one {
        padding: 60px 30px;
    }

    .icon-wrap {
        width: 95px;
        flex: 0 0 95px;
        margin-right: 10px;
    }

    .absolute-img img {
        width: 70%;
    }

    .contact-form {
        padding: 40px 30px;
        border-radius: 20px;
        margin-top: 30px;
    }

}

@media only screen and (max-width:1199px) {

    :root {
        --f-size-XL: 26px;
        --f-size-L: 22px;
        --f-size-M: 18px;
        --f-size-S: 16px;
        --f-size-Body: 14px;
    }

    .common-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }

    .btn,
    a.btn {
        padding: 10px 25px;
    }

    .menu-wrapper {
        width: 80%;
    }

    .logo-wrap a {
        width: 70px;
    }

    .header-sticky .logo-wrap a {
        width: 40px;
    }

    .header-btn .btn {
        padding: 22px 30px;
    }

    .hdr-wrap {
        background: transparent;
        margin-left: auto;
        margin-right: 0;
        max-width: 100%;
        justify-content: flex-end;
    }

    .main-menu {
        position: absolute;
        left: inherit;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
        width: 100%;
        margin: 0 auto;
        background-color: var(--color-blue);
        border: 0;
        padding: 12rem 30px 60px;
        display: block;
        overflow: auto;
        display: none;
        height: 100vh;
    }

    .main-menu>ul {
        flex-direction: column;
    }

    .main-menu>ul li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
        border: 0;
    }

    .main-menu ul li:not(:last-child) {
        margin-right: 0;
    }

    .main-menu>ul>li a {
        display: block;
        color: var(--color-white);
        padding: 0;
    }

    .main-menu ul li.current-menu-item a,
    .main-menu ul li:hover a {
        color: var(--color-white);
    }

    .hdr-rt ul li a {
        color: var(--color-white);
        padding: 10px;
    }

    .main-menu ul li.current-menu-item a {
        background: transparent;
        color: var(--color-black);
    }

    .main-menu ul li.btn {
        display: block;
        width: auto;
    }

    .header-btn {
        display: none;
    }

    .nav_btn {
        display: block;
        cursor: pointer;
        position: relative;
        margin: auto 10px auto 10px;
        width: 30px;
        height: 20px;
        z-index: 999;
    }

    .nav_btn::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-blue);
        top: 0;
        right: 0;
        transition: ease-in-out 0.4s;
    }

    .nav_btn span {
        width: 100%;
        height: 2px;
        background: var(--color-blue);
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav_btn::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-blue);
        right: 0;
        bottom: 0;
        transition: ease-in-out 0.4s;
    }

    .nav_btn.sidebar_active span {
        display: none;
    }

    .nav_btn.sidebar_active::after {
        transform: rotate(45deg);
        bottom: 9px;
        background: var(--color-white);
    }

    .nav_btn.sidebar_active::before {
        transform: rotate(135deg);
        top: 9px;
        background: var(--color-white);
    }

    .banner-top {
        flex-direction: column;
    }

    .banner-top .title-box {
        padding-bottom: 20px !important;
    }

    .banner-img {
        top: -190%;
        right: 0;
        left: inherit;
    }

    .inner-blue-banner {
        padding: 20px;
    }

    .listing-wrap ul li {
        font-size: 16px;
        background-size: 20px;
        line-height: 20px;
        padding-left: 25px;
    }

    .gradient-box {
        border-radius: 15px;
    }

    .gradient-box:not(.styled-two) {
        background-size: 190px;
    }

    .gradient-box.styled-one {
        padding: 40px 20px;
    }

    .gradient-box::after {
        border-radius: 20px;
    }

    .gradient-box.styled-two .features-cnt p {
        max-width: 350px;
    }

    .features-cnt.max-features {
        max-width: 250px;
    }

    .icon-wrap {
        width: 70px;
        flex: 0 0 70px;
        margin-right: 10px;
    }

    .icon-wrap img {
        width: 35px;
    }

    .live-life-slider-sec .img-wrapper img {
        width: 60%;
    }

    .blog-img {
        padding-bottom: 60%;
    }

    .blog-img img {
        border-radius: 20px;
    }

    .health-app-sec .title-box {
        max-width: 430px;
    }

    .absolute-img {
        top: -220px;
    }


}

@media only screen and (max-width:991px) {

    :root {
        --f-size-XXXL: 28px;
        --f-size-XXL: 28px;
    }

    .common-padding {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .padding-top {
        padding-top: 56px;
    }

    .padding-bottom {
        padding-bottom: 56px;
    }

    .banner-top .title-box,
    .banner-top .banner-cnt {
        max-width: 100%;
    }

    .banner-img {
        position: inherit;
        top: inherit;
        right: inherit;
        transform: none;
        order: 0;
        text-align: center;
        margin: 40px;
    }

    .banner-wrapper .blue-banner {
        display: flex;
        flex-direction: column;
    }

    .banner-wrapper .blue-banner .inner-blue-banner {
        order: 3;
    }

    .listing-wrap ul {
        padding: 0;
        flex-wrap: wrap;
    }

    .listing-wrap ul li {
        width: 50%;
        margin-bottom: 20px;
    }

    .features-cnt.max-features {
        max-width: 100%;
    }

    .gradient-box.styled-one::before {
        content: "'";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgb(255 255 255 / 65%);
        border-radius: 20px;
        opacity: 0.9;
        z-index: -1;
    }

    .featured-card {
        margin-bottom: 24px;
    }

    .title-box:not(.features-cnt) {
        padding-bottom: 40px;
    }

    .subscription-box,
    .blog-card {
        margin-bottom: 24px;
    }

    .subscription-sec {
        margin-bottom: 100px;
    }

    .health-app-sec .title-box {
        max-width: 260px;
    }

    .health-app-sec .text-slider .slick-list {
        bottom: -4px;
    }

    .ftr-top {
        padding: 40px 0;
        text-align: center;
    }

    .ftr-logo {
        margin: 0 auto 20px;
    }

    .ftr-menu {
        padding: 20px 0;
    }

    .ftr-social ul {
        justify-content: center;
    }

}

@media only screen and (max-width:767px) {

    .logo-wrap a {
        width: 50px;
    }

    .main-header {
        padding: 10px 0;
    }

    .banner-wrapper {
        padding-top: 120px;
    }

    .banner-img img {
        height: auto;
    }

    .blue-banner {
        border-radius: 15px;
    }

    .listing-wrap ul li {
        width: 100%;
    }

    .gradient-box,
    .gradient-box.styled-three {
        padding: 20px;
    }

    .gradient-box.styled-two .features-cnt {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .gradient-box.styled-two .features-cnt p {
        max-width: 100%;
        margin-top: 20px;
    }

    .icon-wrap {
        width: 50px;
        flex: 0 0 50px;
        margin-right: 10px;
        border-radius: 12px;
    }

    .icon-wrap img {
        width: 20px;
    }

    .card-sec-wrapper {
        margin: 0;
    }

    .slider-wrapper {
        top: 40%;
    }

    .live-life-slider-sec .slide-text::before,
    .slide-text::before {
        width: 10px;
        height: 10px;
        left: 0;
    }

    .price-wrap {
        padding: 20px 20px 50px;
    }

    .subscription-plan {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }

    .subscription-plan ul li {
        background-size: 20px;
        line-height: 20px;
        padding-left: 30px;
    }

    .subscription-plan p {
        min-height: auto;
    }

    .subscription-plan ul {
        padding: 20px 0 0;
        margin: 0 0 20px;
    }

    .absolute-img {
        top: -240px;
    }

    .subscription-sec {
        margin-bottom: 100px;
    }

    .health-app-sec .text-slider .slick-list {
        bottom: 0;
    }

    .title-box:not(.features-cnt) {
        padding-bottom: 20px;
    }

    .app-download h6 {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 20px;
        border-radius: 15px;
        margin-top: 20px;
    }

    .reach-out-form input,
    .reach-out-form select,
    .reach-out-form textarea {
        border-radius: 12px;
        font-size: 16px;
        padding: 14px 18px;
        height: 50px;
    }

    .reach-out-form textarea {
        min-height: 100px !important;
    }

    .form-btn .btn {
        min-width: 160px;
        font-size: 14px;
    }

    .success-message {
        padding: 30px 20px;
        border-radius: 15px;
        margin-top: 20px;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .success-message h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .success-message p {
        font-size: 14px;
    }

}

@media only screen and (max-width:379px) {}