@import 'https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap';

:root {
    --lp-font: 'Lato', sans-serif;
    --lp-font-alt: 'Lato', sans-serif;
    --lp-color-first: #3E4B82;
    --lp-color-second: #F36437;
    --lp-color-third: #6395D4;
    --lp-color-light: #ffffff;
    --lp-color-lite-dark: #444444;
    --lp-color-dark: #000000;
}

body {
    transition: all 3s ease-out;
    overflow-x: hidden;
    font-family: var(--lp-font-alt);
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    transition: width .8s ease-in-out;
}

.lp-main-wrapper {
    background: #f4f6ff;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    padding: 10px 0;
    color: var(--lp-color-first);
    font-family: var(--lp-font-alt);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    padding: 5px 0 5px 5px;
    font-family: var(--lp-font-alt);
    color: var(--lp-color-first);
}

h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--lp-font);
    padding-bottom: 10px;
}

h1 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 15px;
    color: var(--lp-color-first);
    font-family: var(--lp-font);
}

h2 {
    font-size: 37px;
    line-height: 45px;
    font-weight: 800;
    color: var(--lp-color-first);
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    padding-bottom: 10px;
    color: var(--lp-color-first);
}

h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--lp-color-lite-dark);
}

h5 {
    font-size: 22px;
    line-height: 24px;
    color: var(--lp-color-lite-dark);
    padding-bottom: 10px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding: 10px 0;
    color: var(--lp-color-light);
}

ol,
ul,
dl {
    margin: 10px 0;
    padding: 0;
}

.text-light {
    color: var(--lp-color-light) !important;
    -webkit-text-fill-color: white;
}

.img-fluid {
    width: 100%;
    max-width: 100%;
}

.lp-sec-padding {
    padding: 4% 0;
}

.lp-container-padding {
    padding: 70px 80px;
}

.lp-row-padding {
    padding: 2% 0;
}

.lp-col-right-padding {
    padding-right: 80px;
}

.lp-col-left-padding {
    padding-left: 80px;
}

.lp-right-padding {
    padding-right: 50px;
}

.lp-left-padding {
    padding-left: 50px;
    padding-bottom: 50px;
}

.lp-main-wrapper {
    background: #F4F6FF;
}

.lp-main-wrapper ul li a {
    color: var(--lp-color-dark);
}

.color-text {
    color: #f36437;
}

.color-blue {
    color: #6395D4;
}
.lp-list li {
    position: relative;
    padding: 7px 0 7px 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.lp-list li:before {
    position: absolute;
    content: '';
    background: #6395D4;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 10px;
    top: 17px;
    transition: all .5s ease;
}

.btn {
    padding: 10px 35px;
    border-radius: 0px;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    background: var(--lp-color-second);
    transition: all 0.5s ease-out;
    position: relative;
    color: var(--lp-color-light);
    margin: 10px 0;
    text-transform: capitalize;
    box-shadow: 0 0px 20px rgba(51, 51, 51, 0.2);
}

.btn:focus,
.btn:active {
    box-shadow: none;
}

.btn:hover {
    color: var(--lp-color-dark);
    background: var(--lp-color-first);
    box-shadow: 0 0px 20px rgba(51, 51, 51, 0.3);
}

.lp-hero-btn {
    border-radius: 99px;
    appearance: none;
    background: #FCB502;
    background: linear-gradient(270deg, rgba(252, 181, 2, 1) 0%, rgba(243, 100, 55, 1) 100%);
    border-width: 0;
    box-sizing: border-box;
    color: var(--lp-color-dark);
    cursor: pointer;
    display: inline-block;
    opacity: 1;
    font-family: var(--lp-font-alt);
    padding: 15px 55px;
    outline: 0;
    position: relative;
    text-align: center;
    text-rendering: geometricprecision;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    transition: all 0.5s linear;
}

.lp-hero-btn:before {
    border-radius: 99px;
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background: #FCB502;
    background: linear-gradient(90deg, rgba(252, 181, 2, 1) 0%, rgba(243, 100, 55, 1) 100%);
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    color: var(--lp-color-dark);
    transform: none;
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
    transition: all 0.5s linear;
}

.lp-hero-btn:hover:before {
    border-radius: 99px;
    background: #FCB502;
    background: linear-gradient(270deg, rgba(252, 181, 2, 1) 0%, rgba(243, 100, 55, 1) 100%);
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
    transition: all 0.5s linear;
}


.lp-hero-btn:hover {
    background: linear-gradient(90deg, rgba(252, 181, 2, 1) 0%, rgba(243, 100, 55, 1) 100%);
    transition: all 0.5s linear;
}

.lp-hero-btn span {
    z-index: 1;
    color: var(--lp-color-light);
    position: relative;
}

.lp-hero-btn:hover span {
    color: var(--lp-color-light);
}

.lp-hero-btn-two {
    background: #3E4B82;
    background: linear-gradient(90deg, rgba(62, 75, 130, 1) 0%, rgba(99, 149, 212, 1) 100%);
}

.font-30 {
    font-size: 30px;
    line-height: 40px;
}

.font-40 {
    font-size: 40px;
    line-height: 50px;
}

.fw-bolder {
    font-weight: 800 !important;
}

.font-18 {
    font-size: 18px;
    line-height: 24px;
}

.font-22 {
    font-size: 22px;
    line-height: 28px;
}

.font-26 {
    font-size: 26px;
    line-height: 32px;
}

.round-20{
    border-radius: 20px;
}

.letter-gap {
    letter-spacing: 2px;
}

/* lp-banner-sec start */

.lp-banner-sec-top {
    width: 1920px;
    height: 180px;
    margin-bottom: 3%;
}

.lp-logo-sec {
    padding: 48px 29px;
}

.lp-banner-sec {
    position: relative;
    background: url('/wp-content/themes/digitalexpress/lm-vh-care-assets/img/lp-vete-sec-bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 0 8% 0;
    border-bottom: 9px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 50%, rgba(243, 100, 55, 1) 50%, rgba(252, 185, 0, 1) 100%);
    border-image-slice: 1;
    border-image-outset: 0;
    width: 100%;
}

.main-heading {
    font-size: 45px;
    line-height: 54px;
    font-weight: 900;
    font-family: var(--lp-font);
}

/* lp-banner-sec end */

/* lp-sec-two start */

.lp-sec-two .Family-Member {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(62, 75, 130, 0.1);
}

.lp-sec-two {
    position: relative;
}

/* lp-sec-two end */

/* lp-sec-two start */

.ln-card-inn {
    margin: 15px 0;
}

/* lp-sec-two end */

.lp-client-say {
    background: url('/wp-content/themes/digitalexpress/lm-vh-care-assets/img/lp-client-say-bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    padding: 0 50px 0 0;
}

.lp-client-say .col-lg-4 .img-fluid {
    position: relative;
    margin-top: -25%;
}

.carousel-indicators [data-bs-target] {
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

.carousel-inner .font-40 {
    font-style: italic;
}

.carousel-indicators {
    bottom: -75px;
}

.lp-sec-qualify .lp-big-list li {
    padding: 8px 0 8px 60px;
    position: relative;
}

.lp-sec-qualify .lp-big-list li:before {
    content: url('/wp-content/themes/digitalexpress/lm-vh-care-assets/img/big-check.png');
    position: absolute;
    top: 5px;
    left: 10px;
}

.lp-sec-qualify .img-fluid {
    border-radius: 200px 20px 20px 20px;
}

.lp-sec-Community-inn {
    background: var(--lp-color-first);
    padding: 6%;
    border-radius: 30px;
}

.accordion {
    margin-top: 20px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button,
.accordion-item {
    background: transparent;
    color: #ffffff;
    background-color: transparent;
}

.accordion-item h2 {
    line-height: normal;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 15px;
}

.accordion-button:after {
    background-image: none;
    content: '+';
    transform: rotate(-180deg);
}

.accordion-button:not(.collapsed):after {
    background-image: none;
    content: '-';
}

.accordion-button {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    padding: 8px 15px 8px 0;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.accordion-body {
    padding: 3px 0 15px 0;
}

.lp-sec-faq-inn {
    padding: 6%;
    border-radius: 20px;
    background: var(--lp-color-light);
    box-shadow: 0 0 30px rgba(62, 75, 130, 0.1);
}

.lp-sec-faq-inn .accordion-button {
    color: var(--lp-color-first);
}

.lp-sec-faq-inn .accordion-button:not(.collapsed) {
    color: var(--lp-color-second);
}

.lp-sec-faq-inn .accordion-body {
    color: var(--lp-color-first);
}

.lp-sec-faq-inn .accordion-item {
    border-bottom: 1px solid var(--lp-color-first);
}

.lp-contact-us {
    position: relative;
    margin-top: -5%;
    background: #F4F6FF;
    background: linear-gradient(0deg, rgba(244, 246, 255, 1) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.lp-form-inn {
    background: var(--lp-color-light);
    padding: 40px;
    padding-bottom: 60px;
    border-radius: 30px;
}

.lp-bottm-sec {
    background: var(--lp-color-first);
    color: #fff;
}

.lp-bottm-sec p,
.lp-bottm-sec a {
    color: #fff;
    font-size: 16px;
}

.light-color {
    color: #6395D4;
}

.bottom-banner {
    padding: 80px 0 0;
}

.list-bold li {
    font-weight: 600;
}

.lp-lists {
    margin-left: 20px;
}

.lp-lists li {
    list-style: number;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 400;
}

@media only screen and (max-width:850px) {
    .container-fluid {
        height: auto;
        width: 95%
    }

    li {
        padding: 4px 0 4px 10px;
        font-size: 24px;
        line-height: 32px;
    }

    .lp-lists li {
        font-size: 16px;
        font-weight: 400;
    }

    .lp-container-padding {
        padding: 5% 0;
    }

    .lp-row-padding {
        padding: 20px 0;
    }

    .lp-banner-sec-top {
        margin-bottom: 0;
        height: auto;
        width: auto;
    }

    .lp-sec-qualify .img-fluid {
        border-radius: 100px 15px 15px 15px;
    }

    .lp-banner-sec {
        background: url('/wp-content/themes/digitalexpress/lm-vh-care-assets/img/banner-bg-mb.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .lp-banner-btm img {
        width: 100%;
    }

    .lp-client-say {
        padding: 6%;
        padding-bottom: 0;
    }

    .carousel-indicators {
        bottom: -40px;
    }

    .lp-client-say .col-lg-4 .img-fluid {
        margin: 0;
    }

    .light-color {
        font-size: 20px;
        line-height: 28px;
    }

    .accordion-button {
        font-size: 20px;
        line-height: 26px;
        font-weight: 700;
        padding: 6px 10px 6px 0;
    }
}

@media only screen and (max-width:767px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: auto;
        width: 92%;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 26px;
        line-height: 30px;
    }

    p,
    .font-18 {
        font-size: 16px;
        line-height: 24px
    }

    li {
        font-size: 20px;
        font-weight: 700;
        padding: 5px 0 5px 0;
    }

    .font-30,
    .font-26 {
        font-size: 20px;
        line-height: 26px;
    }

    .font-40 {
        font-size: 20px;
        line-height: 26px;
    }

    .btn {
        font-size: 16px;
        font-weight: 700;
        padding: 13px 25px;
        width: 70%;
    }

    .lp-container-padding {
        padding: 40px 0;
    }

    .lp-logo-sec {
        padding: 40px 0px;
        margin-bottom: 0;
    }

    .lp-banner-sec-top {
        margin-bottom: 0;
        height: auto;
        width: auto;
    }

    .lp-logo-sec img {
        width: 270px;
    }

    .logo-images {
        padding: 20px 0;
    }

    .main-heading {
        font-size: 30px;
        line-height: 40px;
    }


    .lp-banner-left .font-30 {
        padding-top: 390px;
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
    }

    .lp-banner-sec p {
        font-size: 17px;
    }

    .ln-card-inn img {
        width: 70%;
    }

    .ln-card-inn .col-2 {
        padding-right: 0;
    }

    .ln-card-inn .col-10 {
        padding-left: 0;
    }

    .lp-form-inn {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        padding: 40px 20px;
        margin-top: 25px;
    }

    .lp-testmonial-sec .col-lg-4 .img-fluid {
        padding-top: 20%;
    }

    .carousel-indicators [data-bs-target] {
        border-radius: 50%;
        width: 6px;
        height: 6px;
    }

    .carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 100%;
    }

    .lp-contact-us .font-30 {
        font-size: 24px;
        line-height: 32px;
    }

    .lp-client-say {
        background: url('/wp-content/themes/digitalexpress/lm-vh-care-assets/img/mob-lp-client-bg.jpg') no-repeat;
        background-size: cover;
        background-position: bottom center;
    }

    .lp-bottm-sec p,
    .lp-bottm-sec a {
        font-size: 12px;
        text-align: center;
    }
}

@media only screen and (max-width:340px) {
    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .font-30,
    .font-26,
    .font-22 {
        font-size: 18px;
        line-height: 24px;
    }

    .lp-banner-sec p {
        font-size: 14px;
        line-height: 20px;
    }

    .main-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .lp-banner-sec {
        background-position: center center;
    }

    .font-40 {
        font-size: 20px;
        line-height: 24px;
    }
}