/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #072444;
    --secondary: #e53e30;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Roboto", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "Anton", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    z-index: 10000001;
    background-color: var(--primary);
    transition: 0.05s ease-in-out;
}

.cursor-outer {
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--white);
    mix-blend-mode: difference;
    opacity: 0.3;
    z-index: 10000001;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--primary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--black);
}

.preLoader span {
    overflow: hidden;
}

.preLoader span img {
    width: 500px;
    transform: translateY(100%);
}


/* PRELOADER */


/* NAV HEADER CSS */

header {
    background: var(--primary);
    padding: 0.875rem 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav {
    align-items: center;
    gap: 3rem;
}

.navbar-nav .nav-item .nav-link,
.callBtn span {
    font-size: 1.25rem;
    font-family: "Anton", sans-serif;
    color: var(--white);
}

.navbar-nav .nav-item .nav-link {
    padding: 0 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 8px 1rem;
}

.navbar-nav .nav-item .nav-link::before,
.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link span {
    padding-left: 6px;
}

.navbar-nav .nav-item .nav-link::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--black);
}

.navbar-nav .nav-item .nav-link:hover::before {
    top: 0;
}

.navbar-nav .nav-item .nav-link:hover::after {
    bottom: 0;
}

.callBtn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.callBtn div {
    background: #5DC3D5;
    width: 60px;
    height: 55px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 2rem;
    border-radius: 7px;
    transition: 0.8s ease;
}

.callBtn:hover div {
    background: var(--white);
    color: var(--black);
}

.callBtn span {
    text-transform: uppercase;
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

.navbar .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 0px);
}

.navbar .drop-down .drop-down:hover ul {
    top: 0;
}

.navbar .drop-down ul li.drop-down a span {
    padding-left: 6px;
}

.navbar .drop-down .drop-down a:after {
    transform: rotate(-95deg);
    display: inline-block;
    position: absolute;
    right: 10px;
}


/* !NAV HEADER CSS */


/* Main Sec Css Start */

.mainSec {
    background: url(../images/mainBan.webp)center/cover;
    height: 895px;
    display: flex;
    align-items: center;
}

.mainSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    inset: 0;
    opacity: 88%;
}

.mainSec h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 7rem;
    line-height: 1;
    margin: 0;
}

.insuracneForm {
    text-align: center;
    border: 5px solid #65D5E9;
    border-radius: 12px;
    padding: 1.25rem 2rem 2rem 2rem;
    background: linear-gradient(180deg, #217E8E, #6AD3E5);
    max-width: 545px;
    margin-left: auto;
}

.insuracneForm h2 {
    margin-bottom: 1.875rem;
    text-shadow: 0 4px rgb(0 0 0 / 25%);
}

.mainHeading {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--black);
    overflow: hidden;
}

.insuracneForm label {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
    text-align: left;
    display: block;
    margin: 0;
}

.insuracneForm .form-control,
.insuracneForm select {
    height: 56px;
    border-radius: 7px;
    background: var(--white);
    border: unset;
    outline: unset;
    box-shadow: unset;
    width: 100%;
    margin-bottom: 1rem;
}

.insuracneForm select {
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    padding-left: 1rem;
    margin-bottom: 1.875rem;
}

.themeBtn {
    background: var(--secondary);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 12px;
    display: inline-block;
    padding: 1.1875rem 2.7em;
    border: unset;
    outline: unset;
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}


/* Main Sec Css End */


/* Partner Sec Css Start */

.partnerSec {
    background: #F4F4F4;
    padding: 3.125rem 0;
}

.partnerSec .mainHeading {
    letter-spacing: 7px;
    margin-bottom: 1.5rem;
}

.partnerWrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnerBox {
    border: 1px solid #B9B9B9;
    background: var(--white);
    width: 290px;
    height: 175px;
    display: grid;
    place-items: center;
}


/* Partner Sec Css End */


/* About Sec Css Start */

.aboutSec {
    padding: 5.625rem 0;
}

.aboutImages figure {
    display: flex;
}

.aboutImages figure div {
    background: #58BECF;
    display: grid;
    place-items: center;
    padding: 0 2.5rem;
}

.aboutImages figure h4 {
    font-size: 1.5625rem;
    text-transform: uppercase;
    font-weight: bold;
    writing-mode: tb-rl;
    transform: scale(-1);
    color: var(--white);
    margin: 0;
}

.ownerName {
    background: #E6E6E6;
    text-align: center;
    padding: 7px 0;
}

.ownerName h3 {
    font-size: 2.5rem;
    color: var(--black);
    text-transform: uppercase;
    margin: 0;
}

.ownerName span,
.aboutContent span {
    color: #333333;
    font-size: 1.4375rem;
    font-weight: 500;
}

.aboutContent {
    padding-left: 2.5rem;
}

.aboutContent span {
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.aboutContent p {
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.83;
    margin: 1rem 0 1.875rem 0;
}


/* About Sec Css End */


/* Insurance Sec Css Start */

.insuranceSec {
    background: #F0F7FF;
    padding: 5rem 0 5.625rem 0;
}

.insuranceSec .row {
    gap: 3.75rem 0;
}

.secHeading {
    text-transform: uppercase;
    font-size: 6.25rem;
    color: var(--black);
    overflow: hidden;
}

.insuranceWrap figure {
    position: relative;
}

.insuranceWrap figure:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 15%;
}

.insuranceWrap h4 {
    font-size: 2.375rem;
    color: var(--black);
    margin-top: 1.5rem;
}

.insuranceWrap p {
    font-size: 1.0625rem;
    color: #333333;
    line-height: 1.7;
}

.insuranceWrap a {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: bold;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 3px;
}


/* Insurance Sec Css End */


/* Need Sec Css Start */

.needSec {
    background: url(../images/nnedBg.webp)center/cover;
}

.needSec:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #217E8E, #6AD3E5);
    inset: 0;
    opacity: 88%;
}

.needContent h2 {
    line-height: 1;
    margin-bottom: 2rem;
}

.needContent .themeBtn {
    padding: 1.1875rem 4em;
}


/* Need Sec Css End */


/* News Sec Css Start */

.newsSec {
    padding: 4.375rem 0 3.75rem 0;
}

.newsWrap {
    background: var(--primary);
    padding: 1.875rem 2.25rem 2.25rem 2.25rem;
}

.newsWrap figure {
    text-align: center;
}

.newsContent span {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    margin: 1.125rem 0 0.875rem 0;
}

.newsContent h4 {
    color: var(--white);
    font-size: 2.375rem;
}

.newsContent p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.newsContent a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--white);
    padding-bottom: 3px;
}


/* News Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    background: #F8F8F8;
    padding: 6.25rem 0;
}

.testimonialImg {
    position: relative;
}

.testimonialImg img {
    border-radius: 22.25rem 0 22.25rem 22.25rem;
}

.testCircle {
    position: relative;
}

.testCircle span {
    position: relative;
}

.testCircle span::before,
.testCircle span:after {
    content: "";
    position: absolute;
    border: 2px solid #D4D4D4;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
}

.testCircle span::before {
    width: 290px;
    top: 2rem;
    left: -4rem;
}

.testCircle span:after {
    width: 418px;
    left: -8rem;
    top: -2rem;
}

.testCircle:before,
.testCircle:after {
    content: "";
    position: absolute;
    background: #248292;
    width: 17px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: 1;
}

.testCircle:before {
    left: 8rem;
    top: -2rem;
}

.testCircle:after {
    background: #5EC5D6;
    top: 8rem;
    left: -4rem;
}

.testimonialBox {
    background: var(--white);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    transition: 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonialBox p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0.5625rem;
}

.testimonialBox h4 {
    font-size: 1.25rem;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}

.testimonialBox div {
    display: flex;
    justify-content: space-between;
}

.testimonialBox div ul {
    display: flex;
    gap: 3px;
}

.testimonialBox div ul li span {
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonialSlider {
    height: 100%;
    margin-left: 3rem;
}

.testimonialSlider .swiper-slide-active .testimonialBox {
    background: linear-gradient(180deg, #217E8E, #6AD3E5);
}

.testimonialSlider .swiper-slide-active .testimonialBox p,
.testimonialSlider .swiper-slide-active .testimonialBox h4,
.testimonialSlider .swiper-slide-active .testimonialBox ul li {
    color: var(--white);
}

.mapSec iframe {
    display: block;
}

.mapSec:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 15%;
}


/* Testimonial Sec Css End */


/* Footer Css Start */

footer {
    background: var(--primary);
    padding: 4.6875rem 0 2.5rem 0;
}

footer ul li a:hover {
    opacity: 0.5;
}

.contactInforms {
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-bottom: 2px solid #0D335D;
    padding-bottom: 3.125rem;
    margin-bottom: 3.75rem;
}

.contactBox div {
    background: #0D335E;
    width: 150px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 3.5rem;
    border: 1px solid #23548A;
    border-radius: 7px;
    margin: auto;
    transition: 0.8s ease;
}

.contactBox:hover div {
    background: var(--black);
    border-color: var(--white);
}

.contactBox h3 {
    color: var(--white);
    font-size: 1.875rem;
    margin-top: 1.25rem;
}

.contactBox a {
    color: var(--white);
    font-size: 1.5625rem;
    font-weight: 600;
}

.contactInforms span {
    color: var(--white);
    font-weight: 500;
    display: block;
}

footer h2 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.links li a {
    color: var(--white);
    font-weight: 600;
    display: block;
}

.links li a:hover {
    transform: translateX(10px);
}

.links li+li {
    margin-top: 8px;
}

.footPara {
    border-top: 2px solid #0D335D;
    margin-top: 4.375rem;
    padding: 3.125rem 0;
}

.footPara p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
}

.socialMedia {
    display: flex;
    gap: 2.5rem;
}

.socialMedia li a {
    color: var(--white);
    font-size: 2.75rem;
}

.copyRight {
    text-align: center;
    color: var(--white);
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
}


/* Footer Css End */

/* inner pages css start */

.mainSec.inner-banner {
    height: 796px;
}

.aboutSec.about-page .row+.row {
    margin-top: 4rem;
}

.insurance-select select {
    width: 100%;
    height: 56px;
    border: 1px solid #C9C2C2;
    font-size: 1.125rem;
    color: #A8A8A8;
    font-weight: 400;
    padding: 0 1rem;
    border-radius: 7px;
}

.policy-page .insuracneForm.policy-main {
    max-width: 100%;
    padding: 4rem 15rem;
}

.policy-page .insuracneForm.policy-main .mainHeading.text-white {
    margin: 0;
}

span.indicate-text {
    font-size: 0.9375rem;
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    margin: 0.7rem 0 2.5rem;
}

form.policyForm {
    margin-top: 2rem;
}

.policyForm textarea,
.contactForm-wrap textarea {
    display: block;
    border-radius: 7px;
    background: var(--white);
    border: unset;
    outline: unset;
    box-shadow: unset;
    width: 100%;
    margin-bottom: 1rem;
}


/* faq css start */

#accordion {
    border: 0;
    border-radius: 50px;
}

#accordion .card {
    border: none;
    background: transparent;
}

#accordion .card .btn-link {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    color: #191E22;
    padding: 0;
    border: 0;
    font-size: 1.25rem;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    padding-left: 1.7rem;
    border-bottom-left-radius: 0;
    font-weight: 600;
    border-radius: 0;
    padding: 0.8rem 18.5rem 0.8rem 2.5rem;
    background: #EBEBEB;
    border: 1px solid #AEACAC;
    text-align: left;
}

#accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--height);
    margin-right: 2rem;
    font-size: 1.875rem;
}

#accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    width: 32px;
    height: 32px;
    background: transparent;
    font-size: 14px;
    border-radius: 50px;
    position: absolute;
    right: 30px;
}

#accordion .card .btn-link i::before {
    content: '\f068';
}

#accordion .card .btn-link.collapsed i::before {
    content: '\f067';
}

#accordion .card .btn-link.collapsed i {
    color: #101771;
}

#accordion .card+.card {
    margin-top: 3.5rem;
}

#accordion .card .card-body {
    padding: 1.8rem 1rem 0.5rem 0rem;
}

#accordion .card .card-body p {
    color: #333333;
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 0;
    margin: 0;
    line-height: 2.0625rem;
}

#accordion .bg-purple h4 {
    color: #000;
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

#accordion .card .btn-link[aria-expanded="true"] {}

#accordion .card .btn-link[aria-expanded="true"] i {
    color: #101771;
}

a.more {
    display: table;
    margin: 3.5rem auto 0;
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--black);
    overflow: hidden;
    font-family: "Anton", sans-serif;
}

#accordion .card .card-body p+p {
    margin-top: 2rem;
}

/* faq css end */

/* contact */
.contact-section {
    padding: 6rem 0;
}

.contact-info :is(a, p) {
    font-size: 1.125rem;
    font-weight: 400;
    color: #333333;
}

.contact-info .mainHeading {
    margin: 0 0 1.25rem;
}

.contact-info .socialMedia {
    justify-content: space-between;
}

.contact-info .socialMedia li a {
    color: var(--black);
    font-size: 4.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 526px;
    border: none;
    border-radius: 1.5rem;
    margin: 3.125rem 0;
}

.contact-section .row+.row {
    margin-top: 3.125rem;
}

.contactForm-wrap {
    max-width: 100%;
    height: 100%;
    margin: 0;
    text-align: start;
    padding: 4.5rem 6.125rem 3.125rem;
}

.contactForm-wrap form {
    margin-top: 2.25rem;
}

.contactForm-wrap .file-input label {
    margin: 0.875rem 0;
}

.file-input-btn {
    position: relative;
    background-color: var(--secondary);
    color: var(--white);
    border-style: none;
    padding: 0.5em 2em;
    border-radius: 0.375rem;
    transition: all 250ms;
}

.file-input-btn input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.contact-img {
    height: 100%;
}

.contact-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.parawhite p {
    color: #fff;
}

/* inner pages css end */

ul.lifecarelist {
    display: flex;
    flex-flow: column wrap;
    max-height: 299px;
    gap: 2rem;
    margin-top: 4rem;
}

ul.lifecarelist li {
    font-size: 1.875rem;
    color: #000;
    font-weight: 600;
}

.patnerpara {
    margin-bottom: 2rem;
    text-align: center;
}

.patnerpara p {
    font-size: 1.125rem;
    color: #333333;
    width: 80%;
    margin: auto;
    line-height: 2;
}


.grouplist li {
    font-size: 1.25rem;
    font-weight: 500;
    list-style: disc;
}

ul.grouplist.medigroup li {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btns a {
    display: block;
    width: 292px;
    margin-bottom: 1rem;
    border-radius: unset;
    text-align: center;
}

a.themeBtn.btnbdr {
    background: unset;
    border: 1px solid #AEACAC;
    color: #000;
    font-size: 1rem;
}


.blogcntns h5 {
    font-size: 1.125rem;
    font-family: 'Roboto';
    margin-top: 1rem;
}

.blogcntns h2 {
    font-size: 3.125rem;
    font-weight: 400;
    font-family: 'Anton';
    width: 95%;
}

.blogcntns p {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: 'Roboto';
    line-height: 1.8;
}

.insuranceblog {
    margin-bottom: 92px;
}

.insuranceblog figure img {
    width: 100%;
}

section.insurance-blogs {
    padding-top: 5rem;
}


.customeruser {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customeruser h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

.customercntnt p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    width: 87%;
}

.customercntnt h5 {
    color: #3B9FB1;
    font-size: 1.25rem;
}

.customercntnt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}


.customercntnt ul li span {
    font-size: 0.875rem;
}

.customerwrap {
    box-shadow: 0 0 38px 9px rgb(186 186 186 / 25%);
    padding: 32px 45px;
    min-height: 590px;
    border-radius: 18px;
    margin-bottom: 45px;
}

section.customer-review {
    padding: 5rem 0 3rem 0;
}


.faqs-tabs .nav-pills .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #191E22;
    border: 1px solid #AEACAC;
    border-radius: unset;
    width: 268px;
    text-align: center;
}

.faqs-tabs ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faqs-tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #000;
    color: #fff;
}

.faqs-tabs .mainHeading {
    margin: 1rem 0;
}

.faqshead {
    margin-bottom: 2rem;
}


section.glossary-section {
    padding: 5rem 0;
}

.glossery-tab .nav-pills .nav-link {
    border: 1px solid #AEACAC;
    border-radius: 50%;
    color: #000;
    font-size: 30px;
    font-weight: 600;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
}

.glossery-tab ul {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 2rem;
}

.glossery-tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    border-color: #5DC3D5;
    color: #fff;
    background: #5DC3D5;
}

.gloserycntnt h5 {
    font-size: 1.125rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 12px;
}

.gloserycntnt p {
    font-size: 1.125rem;
    color: #333333;
    font-weight: 400;
}

.gloserycntnt h2 {
    font-size: 3.125rem;
    font-weight: 400;
}

.gloserycntnt {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 41px 65px;
}

ul.lifecarelist.finallisst {
    max-height: 327px;
    gap: 1rem;
    margin: 0 0 0 1.5rem;
}

ul.lifecarelist.finallisst li {
    font-size: 1.5rem;
    list-style: disc;
}

.grouplist {
    margin-left: 1.325rem;
}

