:root {
  --background: #fff;
  --text-color: #222;
  --text-light-color: #fff;
  --primary: #006d6a;
  --primary-light: #029b87;
  --primary-extra-light: #d9f0ed;
  --secondary: #e8a5bf;
  --secondary-light: #ff9ec4;
  --secondary-extra-light: #ffc1d9;
  --secondary-ultra-light: #fff4f8;
  --tertiary: #38db80;
  --tertiary-dark: #1fc29d;
  --sectionPadding-top: 5rem;
  --sectionPadding-bottom: 5rem;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: var(--tertiary-light);
}

::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background: var(--primary);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

html {
  font-size: 13px;
}

body {
  background: var(--background);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
}

a,
button,
input,
select,
textarea {
  color: inherit;
  text-decoration: none;
}

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

ul.default {
  list-style: disc;
  padding-left: 1rem;
}

ul.default:not(:last-child) {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* SectionHeading Color Based On Background */

.primary-bg .section-heading,
.primary-bg .section-heading > h2,
.secondary-bg .section-heading,
.secondary-bg .section-heading > h2,
.secondary-light-bg .section-heading,
.secondary-light-bg .section-heading > h2 {
  color: var(--text-light-color);
}

.pill {
  border-radius: 3rem;
}

.section-padding {
  padding: var(--sectionPadding-top) 0 var(--sectionPadding-bottom);
}

.small-section-padding {
  padding: 2rem 0;
}

.header-top {
  padding: 1.6875rem 0 0.75rem;
  border-bottom: 1px solid var(--primary);
}

.header-topArea {
  position: relative;
  background: var(--primary-light);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  z-index: 1;
}

.header-topArea::before,
.header-topArea::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-topArea::before {
  background: url("../images/header/top/headerTop-shape1-w.svg") no-repeat top
    left;
  background-size: contain;
}

.header-topArea::after {
  background: url("../images/header/top/headerTop-shape2-w.svg") no-repeat top
    right;
  background-size: contain;
}

.header-topArea > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light-color);
  gap: 0.75rem;
}

.header-topArea > a > p {
  margin: 0;
}

.header-topArea > a > img {
  width: 1.625rem;
  height: 1.625rem;
  object-fit: contain;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5625rem 0;
  background: var(--background);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  display: block;
}

.logo > img {
  max-width: 100%;
  height: 3.8125rem;
  object-fit: contain;
}

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

.menu,
.menu > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
}

.menu > ul > li {
  position: relative;
}

.menu > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.menu > ul > li > a > i {
  font-size: 0.9375rem;
}

.menu-ul > li > a {
  display: inline-block;
  color: var(--primary);
  border-radius: 1.125rem;
  padding: 0.375rem 1rem;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.menu-ul > li > a::before {
  content: "";
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 0.3125rem;
  height: 0.3125rem;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-ul > li.active > a,
.menu-ul > li:hover > a {
  border-color: var(--secondary);
  transform: translate(0%, -0.25rem);
}

.menu-ul > li:has(ul).active > a,
.menu-ul > li:has(ul):hover > a {
  transform: translate(0%, 0rem);
}

.menu-ul > li:has(ul):hover > a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.menu-ul > li:hover > a::before,
.menu-ul > li.active > a::before {
  opacity: 1;
}

.btn-ul > li > a {
  color: var(--text-light-color);
  padding: 0.75rem 1.125rem;
  border-radius: 3rem;
}

.menu > ul > li > ul,
.downloadBtn + ul {
  position: absolute;
  color: var(--text-color);
  padding: 0 0.125rem;
  width: 100%;
  background: var(--background);
  font-weight: 400;
  transition: opacity 0.3s, visibility 0.3s;
}

.downloadBtn + ul {
  z-index: 10;
}

.downloadBtn + ul::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
}

.menu > ul > li:not(:hover) > ul,
*:not(:hover) > .downloadBtn + ul {
  opacity: 0;
  visibility: hidden;
}

.menu > .menu-ul > li > ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid;
  border-top: 0;
  top: 100%;
  border-radius: 0 0 0.875rem 0.875rem;
  gap: 0.25rem;
  padding: 0 0.125rem 0.1875rem;
}

.menu-ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  z-index: 1;
}

.menu-ul > li > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background: var(--secondary);
  transition: opacity 0.3s;
  opacity: 0.33;
  z-index: -1;
}

.menu-ul > li > ul > li:not(:hover) > a::before {
  opacity: 0;
}

.btn-ul > li > ul,
.downloadBtn + ul {
  border: 1px solid;
  top: calc(100% + 0.5rem);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.menu > .menu-ul > li > ul,
.menu > .btn-ul > li:has(.secondary-bg) > ul,
.downloadBtn + ul {
  border-color: var(--secondary);
}

.btn-ul > li > ul > li > a,
.downloadBtn + ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1rem;
  gap: 0.75rem;
}

.btn-ul > li > ul > li > a > i,
.downloadBtn + ul > li > a > i {
  min-width: 1.125rem;
}

.btn-ul > li > ul > li + li,
.downloadBtn + ul > li + li {
  border-top: 1px solid #eee;
}

.header-top.primary-bg .header-topArea {
  background: rgba(255, 255, 255, 0.9);
}

.header-top.primary-bg .header-topArea > a {
  color: var(--primary);
}

.header.primary-bg .logo > img {
  filter: brightness(0) invert(1);
}

.header.primary-bg .menu > .menu-ul > li > ul {
  background: var(--primary);
}

.header.primary-bg .menu > .menu-ul > li > ul > li > a {
  color: var(--text-light-color);
}

.header.primary-bg .menu-ul > li > a {
  color: var(--text-light-color);
}

.header-top.primary-bg .header-topArea::before {
  background: url("../images/header/top/headerTop-shape1.svg") no-repeat top
    left;
  background-size: contain;
}

.header-top.primary-bg .header-topArea::after {
  background: url("../images/header/top/headerTop-shape2.svg") no-repeat top
    right;
  background-size: contain;
}

.home-banner {
  display: flex;
}

.home-banner .item {
  position: relative;
  display: flex;
  min-height: 100vh;
  border-radius: 0 0 5.75rem 5.75rem;
  padding: 2.75rem 0 1.5rem;
  overflow: hidden;
  transition: background 0.3s;
  z-index: 1;
}

.home-banner > *,
.home-banner .item > * {
  margin: auto;
}

.home-bannerHeading > h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2.375rem;
}

.home-bannerHeading.big-heading > p {
  font-size: 2rem;
  max-width: 28.25rem;
}

.home-bannerHeading.small-text > p {
  font-size: 1.5rem;
}

.home-bannerHeading.big-heading > p > span.pill {
  padding: 0 1rem;
  font-weight: 500;
}

.home-bannerImg {
  position: relative;
  /* display: flex; */
}

/* .home-bannerImg.first-slide {
  justify-content: flex-end;
} */

.home-bannerImg.first-slide > img.bannerImg {
  width: 100%;
  margin-left: -12%;
}

.home-bannerImg.first-slide > img.bannerImg-2 {
  width: 129%;
  margin-left: -29%;
}

.home-bannerImg.first-slide > img.bannerImg-3 {
  width: 112%;
  margin-left: -15%;
}

.home-bannerImg.first-slide > img.circlesBg {
  position: absolute;
  left: 60%;
  bottom: 0;
  height: 120.5%;
  mix-blend-mode: screen;
  transform: translate(-50%, 22.5%);
  z-index: -1;
  object-fit: contain;
  object-position: top center;
}

.homeBanner-carousel .item {
  width: 100%;
}

.caregiverDetailUl {
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
}

.check-ul.caregiverDetailUl > li {
  padding-left: 2.75rem;
}

.section-heading > p.topHeading {
  display: inline-block;
  background-color: var(--primary-extra-light);
  color: var(--primary);
  font-size: 1.25rem;
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.section-heading > h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.section-heading > h2.small {
  font-size: 2.125rem;
}

.section-heading > h2:last-child {
  margin-bottom: 0;
}

.section-heading.text-center {
  margin-bottom: 3rem;
}

.section-heading.small-heading > h2 {
  font-size: 2.5rem;
}

.section-heading.extra-small-heading > h2 {
  font-size: 2.125rem;
}

.section-heading.big-text {
  font-size: 1.4375rem;
  font-weight: 500;
}

.gradient-card {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.75rem 2.5rem;
  z-index: 1;
}

.gradient-card::before,
.gradient-card::after,
.popup-area::before,
.popup-area::after {
  content: "";
  position: absolute;
  z-index: -2;
}

.gradient-card::before,
.popup-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    #ff4b9a 0%,
    var(--primary-light) 50%,
    #5cdfcb 100%
  );
}

.gradient-card::after,
.popup-area::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.25rem;
  background: var(--background);
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.375rem);
}

.ourApproach-card {
  max-width: 40.625rem;
  gap: 1.5rem;
}

.ourApproach-imgArea {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(var(--secondary) 14%, var(--primary-light));
  z-index: 1;
}

.ourApproach-imgArea > img.womenImg {
  width: 110%;
  border-radius: 0 0 11.5rem 2rem;
}

.ourApproach-imgArea > img.manImg {
  width: 85%;
  margin: 0 -7rem -3.75rem 0;
}

.ourApproach-detailArea {
  position: relative;
}

.ourApproach-detailArea > h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.8125rem;
}

.ourApproach-card.first-card > .mobile-holderArea {
  width: 45%;
}

.ourApproach-card.first-card > .ourApproach-detailArea {
  width: 55%;
}

.ourApproach-card.second-card {
  align-items: flex-start;
}

.ourApproach-card.second-card > .images-holderArea {
  position: relative;
  width: 43%;
  z-index: -1;
}

.ourApproach-card.second-card > .images-holderArea > img {
  width: calc(100% + 5rem);
  margin-left: -2.5rem;
  margin-bottom: -1.5625rem;
}

.ourApproach-card.second-card > .images-holderArea > img:not(.active) {
  display: none;
}

.ourApproach-card.second-card > .ourApproach-detailArea {
  width: 57%;
}

.ourApproach-detailArea > .ourApproach-nextBtn {
  right: -1rem;
  bottom: 0;
}

.images-holderArea > img {
  width: 100%;
}

.ourApproach-card.third-card > .images-holderArea {
  width: 55%;
  overflow: hidden;
}

.ourApproach-card.third-card > .images-holderArea,
.ourApproach-card.third-card > .images-holderArea > img {
  border-radius: 1rem;
}

.ourApproach-card.third-card > .ourApproach-detailArea {
  width: 45%;
}

.ourApproach-card.third-card > .ourApproach-detailArea .multiStep > p {
  padding-right: 0.5rem;
}

.multiStep:not(.active) {
  display: none;
}

.multiStep > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5625rem;
}

.multiStep > ul:not(:last-child) {
  margin-bottom: 0.875rem;
}

.multiStep > ul > li {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.1875rem 1.125rem;
  border-radius: 2rem;
  width: fit-content;
}

.multiStep > ul > li.active {
  color: var(--text-light-color);
  background: var(--secondary);
  border-color: var(--secondary);
}

.multiStep > p {
  color: var(--primary);
  font-weight: 600;
}

.ourApproach-nextBtn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary);
  border-radius: 50%;
  border: 0;
  color: var(--text-light-color);
  width: 3rem;
  height: 3rem;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  z-index: 1;
}

.circle-shapesArea,
.ourApproach-imgArea {
  border-radius: 0 0 10rem 2rem;
}

.circle-shapesArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.circle-shapesArea > span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 70rem;
  height: 70rem;
  transform: translate(-12.5%, -50%);
}

.circle-shapesArea > span:nth-child(2) {
  transform: translate(-12.5%, -50%) scale(0.75);
}

.circle-shapesArea > span:nth-child(3) {
  transform: translate(-12.5%, -50%) scale(0.5);
}

.single-newsFeed {
  border: 1px solid #e5e7eb;
  border-radius: 1.4375rem;
  overflow: hidden;
  height: 100%;
}

.single-newsFeed > .imgArea {
  border-radius: 0.5rem;
  overflow: hidden;
}

.single-newsFeed > .imgArea > img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.single-newsFeed > .detailArea {
  padding: 2rem;
}

.single-newsFeed > .detailArea > h3,
.single-newsFeed > .detailArea > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.single-newsFeed > .detailArea > h3 {
  font-size: 1.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.875rem;
}

.single-newsFeed > .detailArea > p {
  font-size: 0.8125rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  opacity: 0.6;
}

.single-newsFeed > .detailArea > a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tertiary);
  gap: 0.5rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
}

.single-newsFeed > .detailArea > a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--text-light-color);
}

.single-highlights,
.single-highlights > a,
.single-highlights > a > img {
  height: 100%;
}

.single-highlights > a {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
}

.single-highlights > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}

.single-highlights:not(:hover) > a::before {
  opacity: 0;
}

.single-highlights > a > img {
  width: 100%;
  object-fit: cover;
}

.highlightsArea .row {
  margin: 0 calc(-0.25 * var(--bs-gutter-x));
}

.highlightsArea .row > * {
  padding: 0 calc(0.25 * var(--bs-gutter-x));
}

/* Mobile Holder */
.mobile-holderArea {
  position: relative;
  z-index: 1;
}

.mobile-holderArea > img {
  width: 100%;
}

.mobile-holder {
  position: absolute;
  background: var(--primary);
  top: 2.125%;
  left: 4%;
  width: 92%;
  height: 95.75%;
  border-radius: 1.9375rem;
  overflow: hidden;
  z-index: -1;
}

.mobile-holder > img {
  position: absolute;
  width: 100%;
  transform: translate(100%, 0);
  transition: transform 0.3s;
  z-index: 1;
}

.mobile-holder > img.pre-active {
  transform: translate(0%, 0);
}

.mobile-holder > img.active {
  transform: translate(0%, 0);
  z-index: 2;
}

.single-serviceStats {
  position: relative;
  padding: 2rem 2rem;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.single-serviceStats::before,
.single-serviceStats::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.single-serviceStats::before {
  left: 0;
  top: 0;
  background: linear-gradient(135deg, var(--primary-light), transparent),
    linear-gradient(var(--tertiary), transparent);
  border-radius: 1.25rem;
}

.single-serviceStats::after {
  top: 50%;
  left: 50%;
  background: var(--background);
  max-width: calc(100% - 1rem);
  max-height: calc(100% - 1rem);
  transform: translate(-50%, -50%);
  border-radius: 0.875rem;
}

.single-serviceStats > .imgArea {
  display: inline-block;
  padding: 0.625rem;
  border-radius: 1rem;
  background: linear-gradient(40deg, var(--tertiary), transparent),
    var(--primary-light);
  margin-bottom: 1rem;
}

.single-serviceStats > .imgArea > img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.single-serviceStats > h3 {
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
}

.single-serviceStats > p {
  font-weight: 500;
  padding: 0 1rem;
}

.single-serviceStats > span {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--primary-extra-light);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
}

.notification-section {
  overflow: hidden;
}

.notification-section ul,
.notification-section ul > li {
  display: flex;
  align-items: center;
}

.notification-section ul {
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
}

.notification-section ul > li {
  gap: 1rem;
}

.notification-section p {
  margin: 0;
}

.notification-date {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--background);
  color: var(--primary);
  width: 4rem;
  height: 4.75rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
}

.notification-section ul > li > img {
  height: 3.5rem;
}

.notification-section ul > li > span {
  font-size: 1.25rem;
}

.notification-section ul > li > span.big-text {
  font-size: 1.875rem;
}

.single-testimonial {
  background: linear-gradient(135deg, #3dc5a6 30%, var(--primary-light));
  border-radius: 4rem;
  padding: 3rem 2.5rem;
}

.testimonials-imgArea > img {
  width: 100%;
  height: 35rem;
  object-fit: contain;
}

.single-testimonialDetails > h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.single-testimonialDetails > ul {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  padding-right: 1.5rem;
  gap: 1.5rem;
}

.download-heading > p {
  max-width: 25rem;
}

.downloadUl {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.downloadUl > li > a {
  display: inline-block;
}

.downloadUl > li > a > img {
  height: 3.25rem;
}

.downloadSideImg {
  width: 100%;
  height: 34.375rem;
  object-fit: contain;
}

.corpGetStartedSideImg {
  height: 30rem;
}

/* Link Area */

.link-area > a {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 2rem;
  font-weight: 600;
}

.link-area > a:has(br) {
  border-radius: 3rem;
}

.link-area > a.white-bg {
  background: var(--background);
  color: var(--primary-light);
}

.link-area > a.white-outlined {
  border: 1px solid var(--primary-extra-light);
}

.link-area > a.gradient-link {
  background: linear-gradient(45deg, var(--primary-light), var(--tertiary));
  color: var(--text-light-color);
}

.link-area > a > strong {
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading ~ .link-area {
  margin-top: 2.25rem;
}

.footer {
  padding: 3rem 0;
}

.footer .logo > img {
  filter: brightness(0) invert(1);
  max-height: 2.875rem;
}

.goToTop {
  display: flex;
  font-size: 0.9375rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 600;
}

.goToTop > i {
  border-radius: 50%;
  background: var(--tertiary);
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

.partners-carousel {
  margin-bottom: 1.5rem;
}

.partners-carousel .item > img {
  max-width: 12rem;
  height: 3rem;
  object-fit: contain;
  vertical-align: middle;
}

.footer-menu > ul {
  display: flex;
  justify-content: center;
}

.footer-menu > ul > li > a {
  display: block;
  padding: 0 1.25rem;
  font-weight: 500;
}

.footer-menu > ul > li + li {
  border-left: 1px solid var(--text-light-color);
}

.footer-bottom {
  font-size: 0.875rem;
  background: var(--primary-light);
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
}

.footer-bottomUl {
  display: flex;
  gap: 0.5rem;
}

.footer-bottomUl > li > a {
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  gap: 0.375rem;
}

.footer-bottomUl > li > a > i {
  color: var(--tertiary);
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 1.0625rem;
}

.social-links > li > a {
  display: inline-flex;
  transition: all 0.3s;
}

.social-links > li > a:not(:hover) {
  opacity: 0.75;
}

.copyrightArea {
  text-align: right;
  opacity: 0.75;
}

.contact-bannerArea {
  background: rgba(158, 246, 243, 0.09);
  border: 1px solid rgba(2, 155, 135, 0.18);
  border-radius: 0.5rem;
}

.contact-bannerArea > .topArea {
  position: relative;
  text-align: center;
  padding: 5rem 3rem;
  z-index: 1;
}

.contact-bannerArea > .topArea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 35rem;
  height: 100%;
  max-height: 16rem;
  background: url("../images/shapes/plus.svg");
  background-size: 1rem;
  mask-image: radial-gradient(#000 0%, transparent 80%);
  transform: translate(-50%, 0%);
  z-index: -1;
}

.contact-bannerArea > .topArea > img {
  height: 3.25rem;
  margin-bottom: 1.5rem;
}

.contact-bannerArea > .topArea > h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.contact-bannerArea > .topArea > p {
  font-size: 0.9375rem;
  max-width: 60rem;
  margin: 0 auto;
}

.contact-bannerArea > .bottomArea {
  padding: 2.5rem 0;
  border-radius: 0 0 0.5rem 0.5rem;
}

.contact-card,
.contact-card > a {
  height: 100%;
}

.contact-card > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary-light);
  padding: 2rem 2.8125rem;
  border-radius: 0.5rem;
  text-align: center;
  gap: 1rem;
}

.contact-card > a > i {
  color: var(--tertiary);
  font-size: 1.5rem;
}

.contact-card > a > span {
  font-size: 0.8125rem;
  line-break: anywhere;
}

.contact-formArea {
  padding: 3rem;
  border-radius: 0.75rem;
}

.contact-mapArea {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.contact-mapArea > .heading > h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-mapArea > .heading > ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-mapArea > .heading > ul > li > a {
  display: flex;
}

.contact-mapArea > .heading > ul > li > a > i {
  color: var(--tertiary);
  min-width: 2rem;
}

.contact-mapArea > .heading > ul > li > a > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.contact-mapArea > .mapArea {
  flex: 1 1 auto;
}

.contact-mapArea > .mapArea > iframe {
  width: 100%;
  height: 100%;
}

.section-heading > .social-links {
  font-size: 1.5rem;
}

.contact-mapArea > .social-links {
  justify-content: flex-end;
  gap: 0.5rem;
}

.contact-mapArea > .social-links > li > a {
  background: var(--tertiary);
  color: var(--text-color);
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
}

.inputArea > :is(input, textarea, button, label) {
  width: 100%;
}

.inputArea > label {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.inputArea > :is(input, textarea, button) {
  font-size: 1rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 0;
  outline: 0;
}

.inputArea > :is(input, textarea) {
  background: var(--primary);
}

.inputArea > :is(input, textarea)::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.inputArea > textarea {
  resize: none;
  height: 8rem;
}

.inputArea > button {
  background: var(--tertiary);
  font-weight: 500;
  border-radius: 3rem;
}

.contact-ctaArea {
  border-radius: 0.5rem;
  padding: 1rem 2rem;
}

.contact-ctaDetailArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-ctaArea h3 {
  font-size: 1.5rem;
  padding-right: 2rem;
  margin-bottom: 1.125rem;
}

.contact-ctaArea p {
  font-size: 0.9375rem;
}

.contact-ctaDetailArea img {
  max-width: 12rem;
}

.banner-padding {
  padding: 4rem 0;
}

.story-banner ul {
  display: flex;
  margin: 0 -0.5rem;
}

.story-banner ul > li {
  width: 33.33%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5rem;
  margin: 0 -0.5rem;
}

.story-banner ul > li > .imgArea {
  width: 50%;
  height: 50%;
  padding: 0.5rem;
}

.story-banner ul > li > .imgArea > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.story-banner ul > li.full-li > .imgArea {
  width: 100%;
  height: 100%;
}

.story-banner ul > li.full-li > .imgArea > img {
  object-fit: contain;
}

.ourVision-area {
  padding: 4rem 3.5rem;
  background: linear-gradient(150deg, var(--secondary) -10%, var(--primary));
  color: var(--text-light-color);
  border-radius: 1.375rem;
}

.ourVision-area > .section-heading > h2 {
  color: var(--text-light-color);
}

.ourVision-area > .section-heading > p {
  font-size: 1.25rem;
  font-weight: 500;
}

.single-valuesCard > img {
  width: 8.5rem;
  height: 8.5rem;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.single-valuesCard > h3 {
  font-size: 1.625rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.single-valuesCard > p {
  font-size: 0.9375rem;
  font-weight: 500;
  max-width: 19.5rem;
}

.splitArea-container {
  border: 1px solid var(--primary);
  border-radius: 0.75rem;
  overflow: hidden;
}

.single-splitArea {
  display: flex;
}

.single-splitArea > :is(.imgArea, .detailArea) {
  width: 49.5%;
}

.single-splitArea > .imgArea {
  position: relative;
  overflow: hidden;
}

.single-splitArea > .imgArea > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-splitArea > .seperator {
  width: 1%;
}

.single-splitArea:nth-child(even) {
  flex-direction: row-reverse;
}

.single-splitArea:nth-child(odd) > .seperator {
  background: var(--primary);
}

.single-splitArea:nth-child(even) > .seperator {
  background-color: var(--secondary);
}

.single-splitArea > .detailArea {
  padding: 4.5rem 3rem;
}

.single-splitArea:nth-child(odd) > .detailArea {
  background: #d4f3ef;
}

.single-splitArea:nth-child(even) > .detailArea {
  background: var(--secondary-ultra-light);
}

.single-splitArea > .detailArea > h3 {
  position: relative;
  font-size: 1.4375rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
}

.single-splitArea > .detailArea > h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--primary);
}

.single-splitArea > .detailArea > strong {
  display: inline-block;
  font-weight: 600;
  color: #444;
  margin-top: 1.75rem;
}

.single-team {
  display: flex;
  flex-direction: column;
  background: linear-gradient(var(--primary) -50%, var(--text-light-color));
  border-radius: 1.125rem 1.125rem 0;
  height: 100%;
}

.single-team > .imgArea {
  padding-top: 1.5rem;
}

.single-team > .imgArea > img {
  display: block;
  width: 100%;
  height: 13rem;
  margin-bottom: -0.875rem;
  object-fit: cover;
  object-position: top right;
}

.single-team > .detailArea {
  position: relative;
  flex: 1 1 auto;
  background: var(--secondary-extra-light);
  padding: 1.5rem 1.4375rem;
  border-radius: 0 1.25rem 0 0;
  z-index: 1;
}

.single-team > .detailArea > h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.single-team > .detailArea > p {
  font-size: 0.875rem;
}

.single-team.doers > .imgArea > img {
  width: 85%;
  margin: auto;
}

.banner-heading > h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.banner-heading > p {
  font-size: 1.625rem;
  color: var(--primary);
  font-weight: 500;
}

.banner-heading.big-text > p {
  font-size: 1.875rem;
}

.banner-heading.small-heading > h1 {
  font-size: 1.875rem;
}

.corporate-bannerImg {
  display: flex;
}

.corporate-bannerImg > img {
  width: 175%;
}

.corporate-bannerImg.topLeft {
  justify-content: flex-end;
}

.corporate-bannerImg.topLeft > img {
  margin-top: -2rem;
}

.corporate-bannerImg.bottomRight > img {
  margin-bottom: -4rem;
  max-width: 131%;
  margin-left: 22%;
}

.corporate-aboutArea .row {
  margin: 0 -0.5rem;
  row-gap: 1rem;
}

.corporate-aboutArea .row > * {
  padding: 0 0.5rem;
}

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

.corporate-about {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.corporate-aboutArea .width-100 {
  height: 100%;
}

.benefits-img {
  display: flex;
  justify-content: flex-end;
}

.benefits-img > img {
  width: 120%;
  padding-right: 2.5rem;
}

.benefitsUl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefitsUl > li {
  position: relative;
  display: flex;
  background: linear-gradient(90deg, #ffdce9, rgba(255, 239, 245, 0.5));
  padding: 1.125rem 1.25rem;
  border-radius: 3.75rem 0 0 3.75rem;
  align-items: flex-start;
  gap: 1.75rem;
}

.benefitsUl > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 239, 245, 0.5);
}

.benefitsUl > li > span {
  background: var(--primary);
  color: var(--text-light-color);
  min-width: 3.375rem;
  height: 3.375rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
}

.benefitsUl > li > p {
  font-size: 1.1875rem;
  line-height: 1.25;
  color: var(--primary);
  font-weight: 500;
}

.caregiver-offer-ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.caregiver-offer-ul > li {
  --width: 2.875rem;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.caregiver-offer-ul > li > span.count {
  min-width: var(--width);
  height: var(--width);
  line-height: var(--width);
  text-align: center;
  font-weight: 600;
  color: var(--text-light-color);
  border-radius: 0.625rem 0 0.625rem;
}

.caregiver-offer-ul > li:nth-child(odd) > span.count {
  background: var(--secondary);
}

.caregiver-offer-ul > li:nth-child(even) > span.count {
  background: var(--primary);
}

.caregiver-offer-ul > li > .detail {
  color: #636363;
  max-width: 26.25rem;
}

.caregiver-offer-ul > li > .detail > h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.caregiver-offer-ul > li > .detail > .check-ul {
  margin-top: 1.5rem;
}

.caregiver-offer-imageArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
}

.caregiver-offer-imageArea > img {
  border-radius: 1rem;
}

.caregiver-offer-imageArea > img:nth-child(even) {
  margin-bottom: -2rem;
}

.caregiver-offer-imageArea > img:nth-child(1) {
  width: 19.5rem;
}

.caregiver-offer-imageArea > img:nth-child(2),
.caregiver-offer-imageArea > img:nth-child(4) {
  width: 12.5rem;
}

.caregiver-offer-imageArea > img:nth-child(3) {
  width: 13.5rem;
}

.caregiver-offer-imageArea > img:nth-child(4),
.caregiver-offer-imageArea > img:nth-child(6) {
  width: 16.75rem;
}

.caregiver-offer-imageArea > img:nth-child(6) {
  margin-bottom: -5.25rem;
}

.check-ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.check-ul > li {
  position: relative;
  padding-left: 2rem;
  text-transform: capitalize;
}

.check-ul > li::before {
  content: "\f14a";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 125%;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: var(--tertiary-dark);
  transform: translate(0, -50%);
}

.caregiver-bannerImg {
  position: relative;
  z-index: 1;
}

.caregiver-bannerImg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 30rem;
  max-height: 30rem;
  top: 30%;
  background: radial-gradient(var(--primary-light), transparent 70%);
  z-index: -1;
  opacity: 0.35;
}

.caregiver-bannerImg > img {
  width: 100%;
}

.single-caregiverCard {
  position: relative;
  top: 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  background: #efefef;
  padding: 1.5rem;
  border-radius: 1.375rem;
  height: 100%;
  gap: 1.25rem;
  transition: all 0.3s;
}

.single-caregiverCard > .detailArea {
  flex: 1 1 auto;
}

.single-caregiverCard > .imgArea > img {
  width: 100%;
  max-height: 14.375rem;
  object-fit: cover;
  border-radius: 1.125rem;
}

.single-caregiverCard > .detailArea > p {
  font-weight: 600;
  font-size: 1.5rem;
}

.single-caregiverCard:hover {
  top: -0.625rem;
  background: var(--secondary);
  color: var(--text-light-color);
}

.single-caregiverTestimonial {
  margin: 0 0.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary);
  background: #dbf8e8;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
}

.single-caregiverTestimonial > .detailArea,
.single-caregiverTestimonial > .imgArea {
  padding: 1.75rem 2rem;
}

.single-caregiverTestimonial > .detailArea {
  flex: 1 1 auto;
  font-size: 1.125rem;
  font-weight: 500;
}

.single-caregiverTestimonial > .detailArea::before {
  content: "\f10d";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.single-caregiverTestimonial > .imgArea {
  display: flex;
  background: #f3fff8;
  border-top: 1px solid var(--primary);
  align-items: center;
  gap: 1rem;
}

.single-caregiverTestimonial > .imgArea > img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
}

.single-caregiverTestimonial > .imgArea > h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.wellnest-banner {
  position: relative;
  padding: 3.5rem 0;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.wellnest-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--primary);
  width: 400%;
  height: 1500%;
  transform: translateX(-50%);
  border-radius: 0 0 10000rem 10000rem;
  z-index: -1;
}

.wellnest-banner .banner-heading > p {
  color: var(--text-light-color);
}

.wellnest-logo {
  height: 8rem;
  margin-bottom: 2rem;
}

.wellnest-banner .link-area {
  margin-top: 2rem;
}

.wellnest-secondSection {
  position: relative;
  z-index: 1;
}

.wellnest-secondArea {
  background: var(--background);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}

.wellnest-secondArea .heading {
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.wellnest-secondArea .heading > h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.wellnest-secondArea .imgArea {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.wellnest-secondArea .imgArea > * {
  border-radius: 1.5rem;
}

.wellnest-secondArea .imgArea > img {
  width: 100%;
  max-height: 17rem;
  object-fit: cover;
}

.wellnest-secondArea .detailArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
}

.wellnest-secondArea .detailArea.big {
  width: calc(65% - 0.5rem);
  background: var(--secondary-extra-light);
}

.wellnest-secondArea .detailArea.big > p {
  font-size: 1.5rem;
  font-weight: 500;
}

.wellnest-secondArea .detailArea.small {
  width: calc(35% - 0.5rem);
  background: var(--primary-light);
  color: var(--text-light-color);
}

.wellnest-secondArea .detailArea.small > h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.wellnest-banner:has(+ .wellnest-secondSection) {
  padding-bottom: 10rem;
}

.wellnest-banner + .wellnest-secondSection {
  margin-top: -6rem;
}

.single-wellnest-card {
  border: 1px solid var(--secondary);
  border-radius: 0.75rem;
  padding: 1.625rem;
  height: 100%;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.075);
}

.single-wellnest-card > img {
  height: 4.5rem;
  margin-bottom: 1.5rem;
}

.single-wellnest-card > h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.single-wellnest-categoryCard {
  position: relative;
}

.single-wellnest-categoryCard > img {
  border-radius: 1rem;
  width: 100%;
}

.single-wellnest-categoryCard > a,
.single-wellnest-categoryCard > h3 {
  background: var(--background);
  position: absolute;
  z-index: 1;
}

.single-wellnest-categoryCard > a {
  top: 0;
  right: 0;
  border-radius: 0 0 0 1rem;
  padding: 0 0 0.625rem 0.625rem;
}

.single-wellnest-categoryCard > a > i {
  background: var(--primary);
  color: var(--text-light-color);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  text-align: center;
}

.single-wellnest-categoryCard.green > a > i {
  background: #70daac;
}

.single-wellnest-categoryCard.seaGreen > a > i {
  background: #5cbdd2;
}

.single-wellnest-categoryCard.pink > a > i {
  background: #e18aad;
}

.single-wellnest-categoryCard.lightBlue > a > i {
  background: #92c4f5;
}

.single-wellnest-categoryCard > h3 {
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0.5rem 1.25rem 0;
  border-radius: 0 1rem 0 0;
  font-size: 1rem;
}

.single-latestArticle {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  height: 100%;
}

.single-latestArticle > .imgArea {
  border-radius: 1.5rem;
  overflow: hidden;
}

.single-latestArticle > .imgArea > img {
  width: 100%;
  height: 16.625rem;
  object-fit: cover;
}

.single-latestArticle > .detailArea {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 1rem;
  gap: 1rem;
}

.single-latestArticle > .detailArea > .articleTopDetail {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  align-items: center;
}

.single-latestArticle > .detailArea > .articleTopDetail > .pill {
  background: var(--tertiary);
  padding: 0.375rem 1.25em;
  font-weight: 500;
}

.single-latestArticle > .detailArea > .articleTopDetail > .date {
  font-weight: 500;
  opacity: 0.6;
}

.single-latestArticle > .detailArea > .articleDetails {
  flex: 1 1 auto;
}

.single-latestArticle > .detailArea > .articleDetails > h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.single-latestArticle > .detailArea > .articleDetails > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.6;
}

.articleAboutArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-wrap: wrap;
  padding-top: 1rem;
}

.articleAboutArea > .imgArea {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.articleAboutArea > .imgArea > img {
  width: 3rem;
  border-radius: 50%;
}

.articleAboutArea > .imgArea > .detailArea > h3 {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.articleAboutArea > .imgArea > .detailArea > p {
  display: flex;
  gap: 0.5rem;
  font-weight: 300;
}

.articleAboutArea > .imgArea > .detailArea > p > i {
  font-size: 0.5rem;
  background: var(--primary-extra-light);
  color: var(--primary);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
}

.articleAboutArea > .linkArea {
  color: var(--primary);
}

.single-joinMembership {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary-light);
  color: var(--text-light-color);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  gap: 5rem;
  overflow: hidden;
}

.single-joinMembership > .detailArea,
.single-joinMembership > .link-area {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.single-joinMembership > .detailArea {
  max-width: 18rem;
}

.single-joinMembership > .detailArea::before {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -2.5rem;
  width: 60rem;
  height: 60rem;
  background: rgba(255, 239, 245, 0.2);
  border-radius: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.single-joinMembership > .detailArea > h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-joinMembership > .detailArea > p:not(.topHeading) {
  font-size: 0.875rem;
  opacity: 0.8;
}

.single-joinMembership > .link-area {
  display: flex;
  flex-direction: column;
  max-width: 15rem;
  gap: 1rem;
}

.single-joinMembership > .link-area > a {
  width: 100%;
}

.wellnest-cta {
  background-color: var(--secondary);
  background-image: url("../images/wellnest/cta-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--text-light-color);
  text-align: center;
  padding: 6.5rem 2rem;
  border-radius: 1.5rem;
}

.wellnest-cta > h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.wellnest-cta > p {
  font-size: 0.875rem;
  max-width: 20rem;
  margin: 0 auto 2rem;
}

.single-wellnestTestimonials .imgArea {
  background: var(--primary-light);
  border-radius: 4rem 0 4rem;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

.single-wellnestTestimonials .imgArea > img {
  width: 100%;
  margin-bottom: -2.5rem;
}

.single-wellnestTestimonials .imgContainer {
  position: relative;
}

.single-wellnestTestimonials .imgContainer::before {
  content: "\f10e";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0.5rem;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  background: var(--tertiary);
  border-radius: 50%;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  transform: translate(50%, 0);
}

.single-wellnestTestimonials .client-detailArea {
  margin-top: 2rem;
  font-size: 0.875rem;
}

.single-wellnestTestimonials .client-detailArea > h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-area {
  display: flex;
  width: 100%;
  max-width: 35rem;
  background: #f4f4f4;
  padding: 0.75rem 1.25rem;
  border-radius: 0.875rem;
  margin: 0 auto 2rem;
  align-items: center;
}

.search-area > input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  outline: 0;
}

.basic-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.basic-tabs > .nav-item > .nav-link {
  border-radius: 2rem;
  font-size: 0.875rem;
  padding: 0.5rem 1.125rem;
  border: 1px solid #e0e0e0;
  color: var(--primary);
  font-weight: 500;
}

.basic-tabs > .nav-item > .nav-link.active {
  background: var(--primary);
  color: var(--text-light-color);
}

.single-memberCard > .imgArea > img {
  width: 100%;
  border-radius: 2rem;
}

.single-memberCard > .detailArea {
  text-align: center;
  padding: 1.5rem 0 2.5rem 0;
}

.single-memberCard > .detailArea > p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.single-memberCard > .detailArea > h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-memberCard > .detailArea > .link-area {
  margin-top: 1rem;
}

.single-memberCard > .detailArea > .link-area > a {
  padding: 0.75rem 2rem;
}

.single-longLiveForYou-card {
  background: #3da49c;
  color: var(--text-light-color);
  padding: 2rem;
  border-radius: 1.5rem;
}

.single-longLiveForYou-card + .single-longLiveForYou-card {
  margin-top: 2rem;
}

.single-longLiveForYou-card .left-detailArea {
  font-size: 1.5rem;
  font-weight: 500;
}

.single-longLiveForYou-card .left-detailArea > h2 {
  display: inline-block;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  font-weight: 600;
}

.single-longLiveForYou-card .left-detailArea > p {
  max-width: 30rem;
}

.single-longLiveForYou-card .left-detailArea > h2.light-green {
  background: #08e4b1;
}

.single-longLiveForYou-card .left-detailArea > h2.semiLight-green {
  background: #cbea7b;
  color: var(--primary);
}

.single-longLiveForYou-card .right-detailArea {
  --cardBg: #8fc9c5;
  background: var(--cardBg);
  padding: 1.625rem;
  border-radius: 1rem;
}

.single-longLiveForYou-card .right-detailArea > ul > li {
  font-weight: 600;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--text-light-color);
}

.single-longLiveForYou-card .right-detailArea > .imgArea {
  display: flex;
  position: relative;
  border-radius: 1rem;
  margin-bottom: 0.375rem;
}

.single-longLiveForYou-card .right-detailArea > .imgArea > .linkArea {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 0 0;
  padding: 0.625rem 0 0 0.625rem;
  background: var(--cardBg);
}

.single-longLiveForYou-card .right-detailArea > .imgArea > .linkArea > a {
  display: inline-block;
  background: var(--tertiary);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 3rem;
}

.single-longLiveForYou-card .left-detailArea > img {
  width: 100%;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.single-longLiveForYou-card .right-detailArea > .imgArea > img {
  width: 100%;
  object-fit: contain;
}

.single-longLiveForYou-card:nth-child(1) .left-detailArea > img {
  width: calc(100% + 3.5rem);
  margin-left: -2rem;
}

.single-longLiveForYou-card:nth-child(1) .right-detailArea > .imgArea {
  justify-content: flex-end;
  background: #8abdd5;
}

.single-longLiveForYou-card:nth-child(1) .right-detailArea > .imgArea > img {
  width: calc(100% + 1.25rem);
}

.single-longLiveForYou-card:nth-child(2) .left-detailArea > img {
  max-height: 23.5rem;
  margin-top: -2.5rem;
}

.single-longLiveForYou-card:nth-child(2) .right-detailArea > .imgArea {
  padding: 3rem 2rem;
  background: #c5f7db;
}

.single-longLiveForYou-card:nth-child(3) .left-detailArea > img {
  width: 100%;
  object-position: left bottom;
  max-height: 24rem;
  margin-top: 3rem;
}

.single-longLiveForYou-card:nth-child(3) .right-detailArea > .imgArea {
  padding: 1rem 1rem;
  background: var(--primary);
}

.single-longLiveForYou-card:nth-child(3) .right-detailArea > .imgArea > img {
  max-height: 23.5rem;
}

.single-longLiveForYou-card:nth-child(4) .left-detailArea > img {
  object-position: right bottom;
  max-height: 24rem;
  margin-top: -2.5rem;
  padding-right: 2rem;
}

.single-longLiveForYou-card:nth-child(5) .left-detailArea > img {
  max-height: 22.5rem;
  padding-right: 2rem;
}

.single-longLiveForYou-card:nth-child(4) .right-detailArea > .imgArea > img,
.single-longLiveForYou-card:nth-child(5) .right-detailArea > .imgArea > img {
  border-radius: 1rem;
}

.joinGlobal-Area {
  position: relative;
  background: var(--primary);
  border-radius: 3rem;
  text-align: center;
  padding: 4rem 2rem 2rem;
  z-index: 1;
}

.joinGlobal-Area > img {
  width: 100%;
  max-width: 60rem;
}

.joinGlobal-Area > img.bg {
  position: absolute;
  top: 50%;
  left: 56%;
  width: 100%;
  object-fit: contain;
  max-height: 32rem;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.forYou-banner {
  padding-top: 3rem;
  text-align: center;
}

.forYou-banner > h1 {
  font-size: 2.375rem;
  max-width: 61rem;
  margin: 0 auto;
  color: var(--primary);
  font-weight: 700;
}

.forYou-bannerSection {
  position: relative;
}

.forYou-bannerSection > .curve-lines {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
}

.forYou-bannerBottomArea {
  position: relative;
  text-align: center;
  color: var(--text-light-color);
}

.forYou-bannerBottomArea::before {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  width: 150%;
  height: 100%;
  background: linear-gradient(var(--primary), var(--primary-light));
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.forYou-bannerBottomArea > ul {
  display: flex;
  padding-top: 2rem;
}

.forYou-bannerBottomArea > ul > li {
  width: 20%;
}

.forYou-bannerBottomArea > ul > li > img {
  position: relative;
  width: 100%;
  max-height: 19rem;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.forYou-bannerBottomArea > ul > li:nth-child(3) > img {
  width: 120%;
  z-index: 2;
}

.forYou-bannerBottomArea > ul > li > h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.forYou-bannerBottomArea > ul > li:nth-child(2),
.forYou-bannerBottomArea > ul > li:nth-child(4) {
  margin-top: 6rem;
}

.forYou-bannerBottomArea > ul > li:nth-child(1),
.forYou-bannerBottomArea > ul > li:nth-child(5) {
  margin-top: 16rem;
}

.forYou-bannerBottomArea .links {
  margin-top: -7rem;
  margin-bottom: 2.25rem;
}

.forYou-bannerBottomArea .links > .link-area {
  display: inline-block;
}

.forYou-bannerBottomArea .links > .link-area > a {
  font-size: 1.75rem;
  border-radius: 5rem;
}

.forYou-bannerBottomArea > .bottomArea > p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.forYou-bannerBottomArea > .bottomArea > .arrows {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  line-height: 0;
}

.forYou-bannerBottomArea > .bottomArea > .arrows > i {
  margin-top: -1rem;
}

.forYou-bannerBottomArea > .bottomArea > .arrows > i:nth-child(1) {
  opacity: 0.333;
}

.forYou-bannerBottomArea > .bottomArea > .arrows > i:nth-child(2) {
  opacity: 0.666;
}

/* Carousels */

.owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
  flex: 1 0 auto;
}

.wellnestTestimonial-carousel.owl-carousel .owl-nav,
.caregiverTestimonial-carousel .owl-nav {
  display: flex;
  margin-top: 2rem;
}

.wellnestTestimonial-carousel.owl-carousel .owl-nav {
  justify-content: flex-end;
  gap: 0.75rem;
}

.wellnestTestimonial-carousel.owl-carousel .owl-nav > button,
.caregiverTestimonial-carousel .owl-nav > button {
  width: 2.5rem;
  height: 2.5rem;
}

.wellnestTestimonial-carousel.owl-carousel .owl-nav > button {
  background: var(--primary);
  color: var(--text-light-color);
  border-radius: 0.75rem 0 0.75rem 0;
}

.caregiverTestimonial-carousel .owl-nav {
  justify-content: center;
  gap: 2.5rem;
}

.caregiverTestimonial-carousel.owl-carousel .owl-nav > button {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 0.5rem;
  background: var(--primary-extra-light);
}

.homeBanner-carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: 2rem;
  right: 7%;
}

.homeBanner-carousel.owl-carousel .owl-dots > button {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  gap: 0.5rem;
}

.owl-carousel .owl-dots > button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3rem;
  background: var(--background);
  transition: all 0.3s;
}

.owl-carousel .owl-dots > button.active {
  background: var(--secondary);
  width: 3rem;
}

/* Popups */

.popup-bg,
.popup-area {
  position: fixed;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1010;
}

.popup-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup-area {
  top: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  border-radius: 1.5rem;
  max-width: 46rem;
  max-height: calc(100% - 2rem);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 3rem 3rem;
}

.popup-bg:not(.show-popup),
.popup-area:not(.show-popup) {
  opacity: 0;
  visibility: hidden;
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.download-popup {
  max-width: 65rem;
}

.download-popup .downloadSideImg {
  height: 25rem;
}

.forYou-popup {
  display: flex;
}

.forYou-popup > .left {
  width: 70%;
  color: var(--primary);
}

.forYou-popup > .right {
  display: flex;
  justify-content: flex-end;
  width: 30%;
}

.forYou-popup > .right > img {
  display: block;
  margin-right: -3rem;
  object-fit: contain;
  object-position: top right;
}

.forYou-popup > .left > h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.375rem;
}

.forYou-popup > .left > ul > li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.125rem 0;
  gap: 1rem;
}

.forYou-popup > .left > ul > li::before {
  content: "\f14a";
  font-size: 125%;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: var(--tertiary-dark);
}

.forYou-popup > .right .mental {
  width: 175%;
}

.forYou-popup > .right .physical {
  width: 230%;
}

.forYou-popup > .right .disease {
  width: 190%;
}

.forYou-popup > .right .coaching {
  width: 170%;
  margin-bottom: -3rem;
}

.forYou-popup > .right .smartwatch {
  width: 215%;
  margin-bottom: -3rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.75rem;
}

.breadcrumb > li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.breadcrumb > li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.breadcrumb > li > a.active {
  color: var(--tertiary);
}

.article-pageArea .fullWidthImg {
  width: 100%;
  border-radius: 2.5rem;
}

.article-pageArea > .body,
.article-pageArea > .foot {
  padding-top: 3rem;
}

.article-pageArea > .body {
  color: #51565d;
}

.article-pageArea > .body h3 {
  color: var(--text-color);
}

.article-pageArea > .body > h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.article-pageArea > .body > .imgsRow,
.article-pageArea > .body > .backqoute,
.article-pageArea > .body > * + h3 {
  margin-top: 2.5rem;
}

.backqoute {
  position: relative;
  background: #f4fcfa;
  padding: 3.5rem;
  border-radius: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.backqoute::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
}

.backqoute > .detail > h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.375rem;
}

.backqoute > .detail > p {
  font-size: 0.875rem;
}

.article-pageArea > .body > .checkUl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-pageArea > .body > .checkUl > li {
  display: flex;
  gap: 0.75rem;
}

.article-pageArea > .body > .checkUl > li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: var(--tertiary);
}

.article-timeAuthor {
  margin: 1.25rem 0 0;
  display: flex;
}

.article-timeAuthor > li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  gap: 0.5rem;
  padding: 0 0.75rem;
}

.article-timeAuthor > li + li::before {
  content: "";
  position: absolute;
  left: -0.125rem;
  top: 50%;
  width: 1px;
  height: 50%;
  background: var(--text-color);
  opacity: 0.4;
  transform: translate(50%, -50%);
}

.article-timeAuthor > li:first-child {
  padding-left: 0;
}

.article-timeAuthor > li > i {
  color: var(--primary);
}

.tagsArea > h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.tagsArea > ul {
  display: flex;
  gap: 0.5rem;
}

.tagsArea > ul > li > a {
  display: inline-block;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.3125rem 0.8125rem;
  border-radius: 5rem;
  white-space: nowrap;
  transition: all 0.3s;
}

.tagsArea > ul > li > a:hover {
  color: var(--background);
  background: var(--primary);
}

.wellness-page {
  --secondary: #0096d8;
}

.wellness-page .benefitsUl > li {
  background: linear-gradient(
    90deg,
    rgba(121, 201, 255, 0.459),
    rgba(121, 201, 255, 0.1)
  );
}

.wellness-page .benefitsUl > li::before {
  background: rgba(121, 201, 255, 0.1);
}

.wellness-page .banner-heading > img {
  height: 5rem;
  margin-bottom: 2rem;
}

.mobMenu-btn {
  display: none;
  background: transparent;
  padding: 0 0.25rem;
  border: 0;
  outline: 0;
}

.mobile-menu-bg,
.mobile-menu {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1005;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.mobile-menu-bg:not(.show),
.mobile-menu:not(.show) {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu:not(.show) {
  transform: translate(100%, 0%);
}

.mobile-menu-bg {
  background: rgba(0, 0, 0, 0.5);
}

.mobile-menu {
  flex-direction: column;
  max-width: 22.5rem;
  padding: 3rem 2rem;
  background: var(--background);
  gap: 3rem;
}

.mobile-menu > .top {
  text-align: center;
}

.mobile-menu > .body,
.mobile-menu > .body > ul.btn-ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu > .body {
  gap: 2.75rem;
}

.mobile-menu > .body > ul > li > a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.mobile-menu > .body > ul > li > a.active,
.mobile-menu > .body > ul > li > a:hover {
  transform: translate(0%, 0%);
}

.mobile-menu > .body > ul.btn-ul > li {
  position: relative;
}

.mobile-menu > .body > ul.btn-ul > li > ul {
  position: absolute;
  color: var(--text-color);
  width: 100%;
  z-index: 1;
  background: var(--background);
}

.mobile-menu > .body > ul > li > a::before {
  display: none;
}

.mobile-menu > .body > ul.btn-ul {
  gap: 1rem;
}

.mobile-menu > .body > .btn-ul > li > ul > li > a {
  width: 100%;
  justify-content: center;
}

.mobile-menu > .body > .btn-ul > li:not(:hover) > ul {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu > .body > .menu-ul > li > a {
  border: 1px solid transparent;
}

.mobile-menu > .body > .menu-ul > li > ul {
  background: var(--background);
  text-align: center;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--primary);
  margin: 0.75rem 0;
}

.mobile-menu > .body > .menu-ul > li:not(:hover) > ul {
  display: none;
}

.hidden-detail {
  display: none;
}

/* Margins */

.mt-3rem {
  margin-top: 3rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

/* Max Widths */

[class*="max-"] {
  margin-left: auto;
  margin-right: auto;
}

.max-800 {
  max-width: 50rem;
}

.max-900 {
  max-width: 56.25rem;
}

.max-1000 {
  max-width: 62.5rem;
}

/* Max Heights */

.maxHeight-11 {
  max-height: 11rem;
}

.maxHeight-16-5 {
  max-height: 16.5rem;
}

.maxHeight-22 {
  max-height: 22rem;
}

.height-50 {
  height: 50%;
}

/* Background Colors */

.primary-bg {
  background: var(--primary);
  color: var(--text-light-color);
}

.primary-light-bg {
  background: var(--primary-light);
  color: var(--text-light-color);
}

.secondary-bg {
  background: var(--secondary);
  color: var(--text-light-color);
}

.secondary-light-bg {
  background: var(--secondary-light);
  color: var(--text-light-color);
}

.tertiary-bg {
  background: var(--tertiary);
  color: var(--text-light-color);
}

.gradient-banner-bg {
  background: linear-gradient(
    135deg,
    var(--secondary),
    var(--primary-light) 30%
  );
  color: var(--text-light-color);
}

/* Text Colors */

.primary-color {
  color: var(--primary);
}

.secondary-color {
  color: var(--secondary);
}

.secondary-light-color {
  color: var(--secondary-light);
}

.tertiary-color {
  color: var(--tertiary);
}

/* Common */

.width-100 {
  width: 100%;
}

.rowGap {
  row-gap: calc(var(--bs-gutter-x) * 0.5);
}

.rowGap2 {
  row-gap: var(--bs-gutter-x);
}

.rowGap3 {
  row-gap: calc(var(--bs-gutter-x) * 1.5);
}

.rowGap4 {
  row-gap: calc(var(--bs-gutter-x) * 2);
}

.text-right {
  text-align: right;
}

.position-relative {
  position: relative;
}

.row-reverse {
  flex-direction: row-reverse;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0%, 0);
    transform: translate3d(-100%, 0%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0%, 0);
    transform: translate3d(-100%, 0%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0%, 0);
    transform: translate3d(100%, 0%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0%, 0);
    transform: translate3d(100%, 0%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* Animations */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 77.5rem;
  }
}

@media (min-width: 992px) {
  .width-20-per {
    flex: 0 0 auto;
    width: 20%;
  }

  .width-60-per {
    flex: 0 0 auto;
    width: 60%;
  }

  .single-longLiveForYou-card .col-md-reverse .left-detailArea > p,
  .single-longLiveForYou-card .col-md-reverse  .left-detailArea > h2 {
    margin-left: 1rem;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 1300px) and (min-width: 1200px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1399px) and (max-width: 1498px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 1499px) and (max-width: 1598px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1599px) and (max-width: 1698px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1699px) and (max-width: 1798px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 1799px) and (max-width: 1898px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 1899px) and (max-width: 1998px) {
  html {
    font-size: 19px;
  }
}

@media (min-width: 1999px) and (max-width: 2098px) {
  html {
    font-size: 20px;
  }
}

@media (min-width: 2099px) and (max-width: 2198px) {
  html {
    font-size: 21px;
  }
}

@media (min-width: 2199px) and (max-width: 2298px) {
  html {
    font-size: 22px;
  }
}

@media (min-width: 2299px) and (max-width: 2398px) {
  html {
    font-size: 23px;
  }
}

@media (min-width: 2399px) and (max-width: 2498px) {
  html {
    font-size: 24px;
  }
}

@media (min-width: 2499px) and (max-width: 2598px) {
  html {
    font-size: 25px;
  }
}

@media (min-width: 2599px) {
  html {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .mobMenu-btn {
    display: initial;
  }

  .mobile-menu-bg,
  .mobile-menu {
    display: flex;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --sectionPadding-top: 4rem;
    --sectionPadding-bottom: 4rem;
  }

  html {
    font-size: 13px;
  }

  .header-top {
    padding: 0.75rem 0;
  }

  .header-topArea {
    font-size: 0.875rem;
  }

  .header-topArea > a > img {
    width: 1.375rem;
    height: 1.375rem;
  }

  .header {
    padding: 1.25rem 0;
  }

  .menu {
    display: none;
  }

  .logo > img {
    height: 2.8125rem;
  }

  .home-bannerHeading > h1,
  .banner-heading > h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .home-bannerHeading.big-heading > p {
    font-size: 1.375rem;
  }

  .home-bannerHeading.small-text > p,
  .banner-heading > p {
    font-size: 1.25rem;
  }

  .home-bannerImg {
    margin-top: 2rem;
  }

  .home-bannerImg.first-slide > img:is(.bannerImg, .bannerImg-3) {
    margin: 0;
    width: 100%;
  }

  .home-bannerImg.first-slide > img.bannerImg-2 {
    margin-top: -2rem;
  }

  .col-md-reverse {
    flex-direction: column-reverse;
  }

  .homeBanner-carousel.owl-carousel .owl-dots {
    right: 50%;
    transform: translate(50%, 0%);
  }

  .home-banner .item {
    border-radius: 0 0 2rem 2rem;
    padding-top: 3rem;
  }

  .owl-carousel .owl-dots > button {
    width: 0.625rem;
    height: 0.625rem;
  }

  .owl-carousel .owl-dots > button.active {
    width: 2.25rem;
  }

  .section-heading > p.topHeading {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }

  .section-heading > h2 {
    font-size: 2.125rem;
  }

  .section-heading > h2.small {
    font-size: 1.875rem;
  }

  .section-heading.small-heading > h2 {
    font-size: 1.9375rem;
  }

  .ourApproach-card {
    flex-direction: column;
  }

  .ourApproach-card.first-card > .mobile-holderArea {
    width: 65%;
  }

  .ourApproach-card:is(.first-card, .second-card, .third-card)
    > .ourApproach-detailArea,
  .ourApproach-card.third-card > .images-holderArea,
  .ourApproach-card.second-card > .images-holderArea {
    width: 100%;
  }

  .mobile-holder {
    border-radius: 1.5rem;
  }

  .gradient-card {
    padding: 1.75rem;
  }

  .ourApproach-detailArea > h3 {
    font-size: 1.75rem;
  }

  .ourApproach-card.third-card > .ourApproach-detailArea .multiStep > p {
    padding-right: 1.5rem;
  }

  .ourApproach-imgArea {
    display: none;
  }

  .ourApproach-card.second-card > .images-holderArea > img {
    width: calc(100% + 2rem);
    margin-left: 0;
  }

  .single-testimonial {
    border-radius: 2rem;
    padding: 2.25rem 2rem;
  }

  .testimonials-imgArea > img {
    height: 29rem;
  }

  .single-testimonialDetails > h3 {
    font-size: 2.125rem;
  }

  .single-testimonialDetails > ul {
    font-size: 1rem;
  }

  .download-heading {
    text-align: center;
  }

  .downloadUl {
    justify-content: center;
  }

  .download-heading + .downloadUl + .link-area {
    text-align: center;
  }

  .footer-menu > ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-menu > ul > li:nth-child(1),
  .footer-menu > ul > li:nth-child(4) {
    border: 0;
  }

  .footer-menu > ul > li:nth-child(1) > a,
  .footer-menu > ul > li:nth-child(4) > a {
    padding-left: 0;
  }

  .footer-bottomUl {
    flex-direction: column;
  }

  .footer-bottomUl > li > a {
    width: 100%;
    justify-content: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .copyrightArea {
    text-align: center;
  }

  .caregiver-offer-imageArea {
    margin-bottom: 3rem;
  }

  .caregiver-offer-imageArea > img,
  .caregiver-offer-imageArea > img:nth-child(even) {
    margin: 0;
  }

  .caregiver-offer-imageArea > img:nth-child(1) {
    width: 85%;
  }

  .caregiver-offer-imageArea > img:nth-child(2),
  .caregiver-offer-imageArea > img:nth-child(3) {
    width: 40%;
  }

  .caregiver-offer-imageArea > img:nth-child(4),
  .caregiver-offer-imageArea > img:nth-child(5),
  .caregiver-offer-imageArea > img:nth-child(6) {
    display: none;
  }

  .corporate-bannerImg {
    display: none;
  }

  .corporate-bannerImg > img,
  .corporate-bannerImg.bottomRight > img {
    max-width: 12rem;
  }

  .corporate-bannerImg.bottomRight > img {
    margin-left: 0;
  }

  .banner-heading.big-text > p {
    font-size: 1.4375rem;
  }

  .corporate-bannerImg.topLeft > img {
    margin-bottom: 2rem;
  }

  .corporate-bannerImg.bottomRight > img {
    margin-top: 2rem;
  }

  .corporate-aboutArea {
    margin-top: 3.5rem;
  }

  .section-heading.big-text {
    font-size: 1.25rem;
  }

  .benefitsUl {
    margin-top: 4rem;
  }

  .story-banner ul > li {
    width: 100%;
  }

  .story-banner ul > li > .imgArea {
    padding: 0.375rem;
  }

  .story-banner ul > li > .imgArea > img {
    border-radius: 0.5rem;
  }

  .ourVision-area {
    padding: 2.75rem 2.5rem;
  }

  .single-valuesCard > p {
    max-width: none;
  }

  .single-splitArea,
  .single-splitArea:nth-child(even) {
    flex-direction: column;
  }

  .single-splitArea > .imgArea {
    height: 20rem;
  }

  .single-splitArea > :is(.imgArea, .detailArea) {
    width: 100%;
  }

  .single-splitArea > .detailArea {
    padding: 3.5rem 2rem;
  }

  .wellnest-logo {
    width: 100%;
    height: 5rem;
    object-fit: contain;
  }

  .wellnest-cta {
    padding: 2.5rem 2rem;
  }

  .wellnest-secondArea .imgArea {
    margin-top: 1.5rem;
  }

  .wellnest-secondArea .heading > h2 {
    font-size: 1.5rem;
  }

  .wellnest-secondArea .detailArea.big,
  .wellnest-secondArea .detailArea.small {
    width: 100%;
  }

  .contact-card {
    margin: 1rem;
  }

  .contact-formArea {
    padding: 2rem;
  }

  .contact-ctaDetailArea img {
    display: none;
  }

  .contact-ctaDetailArea {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .contact-ctaArea {
    text-align: center;
  }

  .contact-ctaArea h3 {
    font-size: 1.375rem;
    padding: 0;
  }

  .joinGlobal-Area {
    border-radius: 3rem;
    padding: 3rem 2rem 2rem;
  }

  .joinGlobal-Area > img.bg {
    left: 50%;
    max-height: 11.5rem;
  }

  .forYou-banner > h1 {
    font-size: 1.625rem;
  }

  .single-wellnestTestimonials .imgContainer {
    max-width: 17rem;
    margin: 0 auto 3rem;
  }

  .forYou-bannerSection > .curve-lines {
    top: 14%;
  }

  .forYou-bannerBottomArea > ul > li > h3 {
    margin: 0;
    font-size: 0.6875rem;
  }

  .forYou-bannerBottomArea > ul > li:nth-child(2),
  .forYou-bannerBottomArea > ul > li:nth-child(4) {
    margin-top: 4rem;
  }

  .forYou-bannerBottomArea > ul > li:nth-child(1),
  .forYou-bannerBottomArea > ul > li:nth-child(5) {
    margin-top: 8rem;
  }

  .forYou-bannerBottomArea .links {
    margin-top: 1rem;
  }

  .forYou-bannerBottomArea .links > .link-area > a {
    font-size: 1.25rem;
  }

  .forYou-bannerBottomArea::before {
    top: 80%;
    width: 175%;
    height: 112%;
  }

  .forYou-bannerBottomArea > ul > li > img {
    max-height: 7.5rem;
    margin-bottom: 1rem;
  }

  .single-longLiveForYou-card {
    overflow: hidden;
    padding: 1.625rem;
  }

  .single-longLiveForYou-card .left-detailArea {
    font-size: 1.25rem;
  }

  .forYou-popup > .right {
    display: none;
  }

  .forYou-popup > .left {
    width: 100%;
  }

  .popup-area {
    padding: 2.5rem;
  }

  .single-longLiveForYou-card:nth-child(4) .left-detailArea > img {
    padding: 0;
    margin-top: -1.5rem;
  }

  .single-longLiveForYou-card:nth-child(4) .left-detailArea > img {
    font-size: 1.0625rem;
  }

  .contact-bannerArea > .topArea {
    padding: 3.5rem 2rem;
  }

  .contact-bannerArea > .topArea > h1 {
    font-size: 2rem;
  }

  .contact-mapArea > .heading > h2 {
    font-size: 1.625rem;
  }

  .contact-mapArea > .heading > ul > li > a > i {
    min-width: 1.5rem;
  }

  .home-bannerImg.first-slide > img.circlesBg {
    display: none;
  }

  .article-pageArea .fullWidthImg {
    border-radius: 1.5rem;
  }

  .backqoute {
    padding: 2rem;
  }

  .backqoute::before {
    font-size: 2rem;
  }

  .backqoute > .detail > h3 {
    font-size: 1.125rem;
  }

  .overflow-mob-initital {
    overflow: initial !important;
  }

  .banner-heading.small-heading > h1 {
    font-size: 1.75rem;
  }

  .benefitsUl > li {
    border-radius: 3.25rem 0 0 3.25rem;
  }

  .corpGetStartedSideImg {
    display: block;
    max-width: 20rem;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 3rem auto 0;
  }

  .forYou-bannerSection > .curve-lines {
    display: none;
  }
}
