/*==========================================================================
1.0 DEFAUL SETTING
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

li::marker {
  color: transparent;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Inter';
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: 600;
  font-family: 'Inter';
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 14px;
  font-weight: 300;
  color: #12110eb8;
  line-height: 20px;
}

figure {
  margin: 0;
}

input:focus {
  outline: 0;
  border: 0;
}

a {
  text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1350px;
  width: 100%;
  padding: 0px 15px;
  margin-left: auto;
  margin-right: auto;
}

section {
  overflow: hidden;
}


/* Header CSS */


.submenu-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 26px !important;
}

.submenu-toggle-wrapper a {
    color: var(--bs-dropdown-link-color);
}

 .submenu-arrow { 
  width: 10px; 
  height: 10px; 
  background: transparent; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border: 0;
}

  .submenu-arrow i { 
    font-size: 14px; 
  } 

  .dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}

  .dropdown-submenu > .dropdown-menu { 
    display: none; 
    position: absolute; 
    top: 0; 
    left: 100%; } 

.dropdown-submenu.show > .dropdown-menu { 
  display: block; 
}
.submenu-arrow span {
    display: inline-block;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.dropdown-submenu.show .submenu-arrow i {
    transform: rotate(180deg);
}

header {
  position: absolute;
  top: 0px;
  width: 100%;
  left: 0;
  background-color: #FFFFFF73;
  z-index: 9;
  padding: 12px 15px;
  height: 65px;
}

.navbar-brand img {
  max-width: 168px;
}

.navbar-toggler {
  background-color: #ffffff21;
  color: #67132F;
  border: 0;
  position: absolute;
  right: 0;
  top: -4px;
  height: 48px;
  width: 48px;
  border-radius: 10px;
}

header .main_btn a {
  padding: 12px 30px;
  font-size: 16px;
}

header .nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #4A5565;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
}

header li.nav-item {
  margin-left: 0;
  line-height: 1;
  width: 100%;
}

header li.nav-item .button {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 22px;
  font-size: 14px;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

header .navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  z-index: 99;
  width: 100%;
  border-radius: 58px;
  padding: 0;
}

header .dropdown-item {
  padding: .65rem 1rem;
  font-size: 16px;
}

header .navbar-nav .dropdown-menu {
  position: static;
  padding: 10px 0;
  background: #f9fafb;
  border: 0;
}

header .dropdown-submenu {
  position: relative;
}

header .dropdown-submenu > .dropdown-menu {
  display: none;
  position: static;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

header .dropdown-submenu.show > .dropdown-menu,
header .dropdown-submenu .dropdown-menu.show {
  display: block;
}

header .dropdown-submenu .dropdown-menu {
  padding-left: 10px;
}

header .nav-link.dropdown-toggle {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 0;
}

header .dropdown-item.dropdown-toggle {
  position: relative;
  justify-content: space-between;
}

.search-container {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff21;
  display: flex;
  align-items: center;
  transition: 0.4s;
  overflow: hidden;
  right: 56px;
  top: -4px;
  cursor: pointer;
}

.home-page .search-container {
  display: none;
}

.search-container.active {
  width: 100%;
  max-width: 80%;
  padding: 0 10px;
}

.search-container .icon {
  font-size: 17px;
  position: absolute;
  right: 15px;
  color: #67132F;
  cursor: pointer;
}

.search-container input {
  border: none;
  outline: none;
  background: transparent;
  margin-left: 4px;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
  color: #fff;
}

.search-container input::placeholder {
  color: #fff;
}

.search-container.active input {
  opacity: 1;
}

.logo-hide {
  transition: 0.3s ease;
  padding-top: 0;
}

/* jab search active ho */
.search-active .logo-hide {
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  /* optional */
}



/* 
.input-search {
  width: 100%;
  border: 0;
  font-size: 14px;
  outline: none;
  border-radius: 8px;
  background: #FFFFFF1F;
  color: #fff;
  width: 3px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .input-search::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
} */

/* BUTTON */

/* header .btn-search {
  position: absolute;
  right: 15px;
  top: 11px;
  border: none;
  background: transparent;
  color: #67132F;
  font-size: 14px;
  cursor: pointer;
  padding: 1px;
} */


.navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  padding: 0 0 50px 0px;
  transition: none !important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.navbar-collapse.show {
  width: 100%;
  height: 100vh !important;
  background: #fff;
  z-index: 999;
}



header .menu-close {
  position: absolute;
  top: 16px;
  right: 5px;
  width: 5px;
  height: 5px;
  border: none;
  background: none;
  color: #67132F;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}

header .navbar-nav {
  gap: 15px;
}


header .dropdown-item {
  padding: 10px 26px;
  font-size: 13px;
}

header .dropdown-toggle::after {
  content: "\f107";
  /* FontAwesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: none;
  margin-left: 8px;
  border: none;
}

header .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
  transition: 0.3s;
}

header .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navbar-collapse span {
  display: block;
  color: #67132F;
  border-bottom: 1px solid #ddd;
  margin-top: 16px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  padding-left: 15px;
  font-size: 16px;
}


header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: #731535;
  box-shadow: 0px 0px 3px rgb(0 0 0 / 12%);
}

.sticky_logo {
  display: none;
}

header.sticky .non_sticky_logo {
  display: none;
}

header.sticky .sticky_logo {
  display: block;
}

header.sticky .search-container .icon {
  color: #fff;
}

header.sticky .navbar-toggler {
  color: #fff;
}


/* ================= SIDEBAR ================= */

.custom-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: scroll;
}

.custom-sidebar.active {
    transform: translateX(0);
    visibility: visible;
}


/* SIDEBAR BUTTON */

.sidebar-menu-toggle {
    display: block;
    border: 0;
    background: transparent;
    padding: 10px 15px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1000000;
}

/* CLOSE BUTTON */

.sidebar-close {
    position: sticky;
    top: 0px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 40px;
    cursor: pointer;
    color: #67132F;
    text-align: right;
    padding: 0 10px 0 0;
}

.sidebar-main-link i {
  color: #67132F;
}

/* SIDEBAR LINKS */

.sidebar-main-link,
.sidebar-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-dropdown-toggle,
.sidebar-submenu-toggle {
    background: none;
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    max-width: fit-content;
}

.sidebar-dropdown,
.sidebar-submenu {
    display: none;
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.sidebar-dropdown.active,
.sidebar-submenu.active {
    display: block;
}

.sidebar-dropdown-toggle i,
.sidebar-submenu-toggle i {
    transition: transform 0.3s ease;
}

.sidebar-dropdown-toggle.active i,
.sidebar-submenu-toggle.active i {
    transform: rotate(180deg);
}

.sidebar-dropdown > li {
    margin-bottom: 5px;
}

.sidebar-submenu {
    padding-left: 20px;
}

.sidebar-submenu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    text-decoration: none;
}


.sidebar-menu {
    padding: 0px 30px 30px;
}

.sidebar_inner_content_box {
    margin-bottom: 20px;
}

.sidebar_inner_content_box h4 {
    font-size: 22px;
    line-height: 28px;
    color: #67132F;
    font-weight: 500;
}

.sidebar-menu a {
    display: block;
    padding: 5px 0;
    color: #000;
    text-decoration: none;
}


/* OVERLAY */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* IMPORTANT:
   Bootstrap .navbar-toggler ko sidebar button par
   use nahi kiya gaya hai.
*/


  .sidebar-menu-toggle {
       display: none;
    }

    .head_mo_content {
      display: none;
    }

    .head_mo_content span {
      display: block!important;
font-weight: 400!important;
font-size: 10px!important;
line-height:0!important;
text-transform: uppercase;
border: 0!important;
padding: 0!important;
margin: 0!important;
color: #67132F!important;

    }

    .head_mo_content h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 2;
    margin-top: 3px;
    margin-bottom: 4px;
    color: #67132F !important;
}

.head_mo_content i {
    width: 36px;
    height: 36px;
    background-color: #731535;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}

   .sticky .head_mo_content i {
    background-color: #fff;
    color:#731535;
}

.head_mo_content {
        align-items: center;
        gap: 14px;
        cursor: pointer;
    }

     .sticky .head_mo_content h4 ,
      .sticky .head_mo_content span {
    color: #fff!important;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

/* ---------------- MOBILE ---------------- */

/* @media (max-width:991px) {

  .input-search {
    padding-right: 45px;
    transition: all .4s ease;
  }

  header .search-box {
    position: relative;
    max-width: fit-content;
    width: 100%;
    position: absolute;
    right: 54px;
    top: 4px;
  }

  header .btn-search:focus~.input-search,
  header .input-search:focus {
    width: 250px;
    border-radius: 0;
    background: #ffffffd6;
    border-radius: 8px;
  }

} */


.floting_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  box-shadow: 0px 25px 50px -12px #00000040;

}

.floting_btn a {
  background: linear-gradient(180deg, #67132F 0%, #CD265E 100%);
  padding: 10px;
  color: #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;

}




/* Hero Banner CSS */

.banner-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner_wrapper .container {
    z-index: 2;
}

.banner_wrapper {
  /* background-image: url(../images/home/home-hero-img.png); */
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  text-align: center;
}

.banner_wrapper:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);

  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.form-check-input:checked {
    background-color: #731535;
    border-color: #731535;
}

.banner_content h1 {
  font-weight: 500;
  display: block;
  font-style: normal;
  font-size: 32px;
  color: #fff;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  line-height: 40px;
  letter-spacing: 0.369px;
}

.banner_content h1 span {
  font-size: 40px;
  font-weight: 600;
  /* text-shadow: 4px 4px 0px rgb(31 43 59 / 20%); */
  max-width: 700px;
  width: 100%;
  font-style: italic;
}

.home-page .banner_wrapper .banner_content p {
  max-width: 290px;
  margin-bottom: 16px;
}

.banner_wrapper .banner_content h1 {
  max-width: 430px;
  margin-bottom: 28px;
}

.banner_content p {
  color: #fff;
  margin: 0 auto;
  width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.439px;
  margin: 0 auto;
  max-width: 300px;
  margin-bottom: 35px;
  width: 100%;
}

.banner_content {
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
}


.m_view {
  background-color: #FFF8F8;
  padding-left:10px;
  padding-right:10px;
}


.acs-care-section .main_title p {
  max-width: 270px;
}

.m_view .main_title h2 {
  color: #101828;
  font-weight: 600;
  font-size: 28px;
  /* font-style: italic; */
  line-height: 36px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.m_view .main_title h2 span {
  color: #67132F;
  font-style: normal;
}

.home-page .m_view .main_title h2 {
    color: #46526B;
}

.assisted-care-page .m_view .main_title h2 {
  font-style: normal;
}

.m_view p {
  color: #4A5565;
  font-weight: 400;
  font-size: 20px;
  line-height: 32.55px;
  letter-spacing: -0.45px;
  margin-bottom: 0;
  text-align: center;
}

.m_view .main_title {
  margin-bottom: 20px;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.about-page .m_view {
  background-color: transparent;
}

.about-page .m_view .main_title h2 {
  color: #101828;
  font-weight: 400;
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.about-page .m_view p {
  color: #4A5565;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.45px;
  margin-bottom: 14px;
  text-align: center;
}

/* Care Solutions CSS */

.main_btn a {
  padding: 12px 25px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 38px;
  color: #fff;
  font-weight: 400;
  background: #67132F;
  transition: all 0.3s;
  height: 50px;
  letter-spacing: -0.31px;
  display: inline-block;
}

.main_btn a:hover ,.view-facility-btn:hover , .ccs-filled-btn:hover  {
  background-color: #561027;
}

.banner_form_wrapper button:hover{
  background-color: #561027;
}

.what_included .main_btn a {
    padding: 8px 20px;
    font-size: 16px;
    height: 40px;
}

.home-page .banner_buttons .main_btn a {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

.main_title {
  margin-bottom: 20px;
}


.main_title.text-center,
.main_title.text-center h2,
.main_title.text-center p {
  text-align: center;
}

.main_title h2 {
  color: #101828;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.main_title h2 span {
  font-style: italic;
}

/* .assisted-care-page .m_view .main_title h2 span {
  font-style: italic;
} */
.assisted-care-page .m_view .main_title h2 span {
  font-style: normal;
  color: #67132F;
}

.main_title h2 i {
  color: #67132F;
  font-size: 30px;
  margin-right: 10px;
  display: none;
}

.main_title p {
  color: #4A5565;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  margin: 0 auto;
}

.gapping {
  padding-top: 30px;
  padding-bottom: 30px;
}


.cs_wrapper .main_title {
  margin-bottom: 0px;
}

.cs_box {
  position: relative;
  z-index: 0;
  border-radius: 20px;
  margin-top: 20px;
box-shadow: 0px 10px 15px -3px #0000001A;
cursor: pointer;

}

.cs_box:hover:after {
  background: linear-gradient(to top, #000000bd, #2b2b2857);
}

.cs_box img {
  border-radius: 20px;
}

.cs_box_bg_img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  object-position: 100% 11%;
}

.cs_box:after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to top, #000000a6, #ffff0000);
  z-index: 0;
  border-radius: 20px;
}

.cs_box_content {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 24px 14px 24px;
  text-align: center;
  max-width: 100%;
  width: 100%;
  background: #00000052;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.cs_box_content h4 img {
  /* background-color: #F0E7EA; */
  border-radius: 11px;
  max-width: 42px;
  height: 33px;
  width: 100%;
  margin-right: 12px;
}

.cs_box_content h4 {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.45px;
}

.cs_box_content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.15px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs_box_content .len_mr {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.cs_box_content .len_mr i {
  margin-left: 2px;
  /* margin-top: 8px; */
  position: relative;
  top: 7px;
  font-size: 30px;
}


/* Awards & Recognition CSS */



.awd_card_flex h4 {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.44px;
    margin-bottom: 0;
    max-width: 185px;
    width: 100%;
}

.awd_card_flex span {
  display: block;
  color: #67132F;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.awd_card_flex {
  display: flex;
  gap: 20px;
  align-items: center;
          justify-content: space-between;
}

.awd_card_para {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.44px;
  vertical-align: middle;
  color: #000000;
  margin-top: 11px;
  margin-bottom: 8px;
}

.awd_card_yer {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.44px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 0;
}

.awd_card_icon {
  position: relative;
  top: 5px;
}

.awd_card_icon img {
  max-width: 75px;
}

.awd_card_content {
  padding: 18px 19px 22px 19px;
}

.awd_card_yer span {
  font-weight: 700;
  color: #67132F;
}

.awd_card {
    border-radius: 24px;
    background: radial-gradient(54.38% 54.38% at 47.09% 45.62%, rgba(95, 12, 39, 0.12) 26.92%, rgba(247, 247, 247, 0.12) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border: 1px solid #D7D7D7;
}

.awd_card_main_img {
  height: clamp(200px, 18vw, 400px);
  width: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  object-position: 40% 30%;
}

.awd_wrapper {
  width: 100%;
  height: 100%;
}

.awd_wrapper .main_title h2 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.15px;
}


.awd_slider .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}


/* fade + slide effect */
.awd_wrapper.hide-text .awd_box {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.awd_wrapper.hide-text .awd_box {
  width: 0;
  overflow: hidden;
  padding: 0;
}

.awd_box {
  width: 50%;
  padding-right: 10px;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m_flex_row {
  /* display: flex; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.awd_wrapper a {
  font-size: 12px;
  color: #000000;
  line-height: 13.75px;
  font-weight: 400;
  letter-spacing: 0.06px;
}

.awd_wrapper.active a {
  color: #fff;
}

.awd_wrapper.active .awd_box_img img {
  max-width: 192px;
  width: 100%;
}

.awd_wrapper a i {
  margin-left: 5px;
}

.awd_box p {
  background-color: transparent;
  padding: 0;
  border-radius: 10px;
  box-shadow: none;
  font-size: 12px;
  color: #364153;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06px;
  line-height: 13.75px;
  margin-bottom: 13px;
  height: auto;
  max-width: 96%;
  width: 100%;
}

.awd_box_img {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  width: 50%;
}

/* 👉 ONLY THIS LINE DOES THE MAGIC */
.awd_box_img img {
  flex: 0 0 85%;
  /* 85% = 1st full + ~15% next image visible */
  max-width: 85%;
  border-radius: 20px;
}

.awd_wrapper.hide-text {
  background: #67132F;
  height: 325px;
}

.awd_wrapper.hide-text .main_title h2 {
  color: #fff;
}

.awd_wrapper.hide-text .awd_box {
  display: none;
}


.awd_box_img.active {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.awd_box_img img {
  width: 50%;
  flex: 0 0 50%;
  scroll-snap-align: start;
}


/* width */
.awd_box_img::-webkit-scrollbar {
  width: 2px;
  height: 1px;
}

/* Track */
.awd_box_img::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.awd_box_img::-webkit-scrollbar-thumb {
  background: transparent;
}



.awd_box_img img {
  max-width: 200px;
  width: 100%;
  border-radius: 20px;
}

.awd_box p img {
  max-width: 16px;
  width: 100%;
  margin-right: 8px;
}

.flex_row {
  gap: 17px;
  display: flex;
}

.about-slider .slick-slide {
    margin-left: 5px;
    margin-right: 8px;
}

.awd_box img {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
}

.awd_box_img.active img {
  max-width: 174px;
  width: 100%;
  border-radius: 20px;
}

.awd_box_img {
  scroll-behavior: smooth;
}

.awd_wrapper.hide-text .awd_box {
  display: none;
}

.awd_wrapper.hide-text .awd_box_img {
  width: 100%;
}


/* Our Solutions CSS */


.ur_solution_wrapper {
  background-color: #F9FAFB;
  overflow: hidden;
}

.slick-dotted.slick-slider {
    margin-bottom: 25px;
}

.ur_solution_wrapper .nav-pills .nav-link {
  border-radius: 10px;
  color: #364153;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #cccccc;
  width: 100%;
      padding: 8px 38px;
}

.ur_solution_wrapper .nav-pills .nav-link i {
  margin-right: 7px;
}

.ur_solution_wrapper li.nav-item {
  margin-left: 0;
  max-width: fit-content;
  width: 100%;
}

.ur_solution_wrapper .nav-pills .nav-link.active,
.ur_solution_wrapper .nav-pills .show>.nav-link {
  color: #fff !important;
  background-color: #67132f !important;
}

.ur_solution_wrapper .nav-pills .nav-link:hover {
  color: #fff !important;
  background-color: #67132f !important;
}

.ur_solution_wrapper ul.nav {
  justify-content: space-around;
  margin-left: 12px;
  padding-bottom: 10px;
}



.senior-living-page .as_banner_wrapper.banner_wrapper.senior_living_hero .banner_buttons,
.senior-living-child-page .as_banner_wrapper.banner_wrapper .banner_buttons {
  margin-top: 43px;
}

.senior-living-page .banner_wrapper.senior_living_hero .banner_content p.hero_tagline,
.senior-living-child-page .banner_wrapper .banner_content p.hero_tagline {
  margin-bottom: 16px;
}

.senior-living-child-page .banner_wrapper .white_btn {
  margin-bottom: 16px !important;
}

.ur_solution_box {
  /* max-width: 390px; */
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.ur_solution_wrapper.residences .ur_solution_box_img img {
    border-radius: 14px;
    height: 459px;
    width: 100%;
    object-fit: cover;
}

.ur_solution_wrapper.laa-section .ur_solution_box_img img {
  border-radius: 20px;
  height: 510px;
  object-fit: cover;
  width: 100%;
}


.banner_content .white_btn {
  margin-bottom: 16px!Important;
}

.ur_solution_box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #00000099;
  padding: 10px 15px 14px 15px;
}

.ur_solution_box_content h4 a {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.residences .ur_solution_box_content h4 a {
  color: #FEFEFE;
}

.residences .ur_solution_box_content p a {
  color: #E7D6DC;
}

.ur_solution_box_content h4,
.ur_solution_box_content p {
  margin-bottom: 0;
  margin-top: 4.5px;
}

.ur_solution_box_content p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.ur_solution_box_content p a {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.slick-slide {
  margin-left: 12px;
  margin-right: 12px;
}

.ccm-section .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}

.slick-dots li button:before {
  content: "";
  display: block;
  width: 8px !important;
  height: 8px !important;
  background: #D1D5DC;
  color: transparent !important;
  border-radius: 50px;
  opacity: 1 !important;
  transition: width 0.4s ease, background 0.4s ease;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  width: 32px !important;
  background: #67132F;
  transition: width 0.4s ease, background 0.4s ease;

}

.slick-dots li {
  margin: 0 0px !important;
  transition: width 0.4s ease, background 0.4s ease;
}

.slick-dots li.slick-active {
  width: 40px;
}

.slick-dots {
  bottom: -35px !important;
  left: 0;
}

.ur_solution_wrapper .tab-content {
  margin-top: 18px;
}

.bg_tw {
  background-color: #FFF8F8;
}

/* Number & Rating CSS */


.num_counter_wrapper .container {
  padding: 0;
}

#counter li {
      flex: 1;
    text-align: center;
    font-size: 12px;
    color: #4A5565;
    align-items: center;
    display: flex;
    justify-content: space-between;
    /* gap: 10px; */
    position: relative;
    flex-direction: column;
    height: 70px;
}

#counter li:last-child {
  gap: 8px;
}

#counter li:after {
  content: '';
  background-color: #67132f24;
  top: 0px;
  left: 1px;
  width: 1px;
  height: 105%;
  position: absolute;
}

#counter li:first-child:after {
  display: none;
}


#counter span.percent:after {
  content: "+";
  display: inline-block;
}

.about-page .top-rating-section {
    padding: 30px 0 0 0;
    margin: 0;
}

.num_counter_wrapper span.count,
.num_counter_wrapper .n-count {
  font-size: 30px;
  line-height: 28px;
  color: #67132f;
  letter-spacing: -0.45px;
}

span.num_title {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  max-width: 92px;
  line-height: 16px;
  letter-spacing: 0;
}

.num_counter_wrapper ul {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 0px 14px;
    border-radius: 0;
}


/* News Section CSS */
.awd_slider .slick-center,
.news_slider .slick-center {
  transform: scale(1.01) !important;
  opacity: 1 !important;
}

.news_wrapper .slick-dotted.slick-slider {
    margin-bottom: 5px;
}

.news_wrapper .slick-slider .slick-list {
    margin: 0 0px 0 0px;
}

.awd_slider .slick-slide ,
.news_slider .slick-slide {
  transform: scale(0.85);
  transition: 0.3s;
  opacity: .8;
}

.news_wrapper {
  overflow: hidden;
}

.news_slide_box {
  max-width: 440px;
  width: 100%;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}

.news_slider_arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #101828;
  background: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 99;
}

.news_slider_media {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #1447E6;
  background: #ffffff;
  font-size: 12px;
  line-height: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0;
}

.news_slider_media i {
  margin-right: 5px;
}

.main_title h2 img {
  max-width: 29px;
  width: 100%;
  margin-right: 16px;
}

.news_wrapper .main_title h2 img {
    max-width: 40px;
    width: 100%;
    margin-right: 7px;
    position: relative;
    top: -3px;
}

.news_slide_box img {
  border-radius: 20px 20px 0 0;
  height: clamp(180px, 15vw, 280px);
  width: 100%;
  object-fit: cover;
}

.news_slide_box_img {
  position: relative;
}

.news_slide_box:hover .news_slide_box_img:after {
  opacity: 1;
}

.news_slide_box_img:after {
  content: '';
  background-color: #00000040;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.news_slide_box h4 {
  line-height: 19.25px;
  margin-bottom: 8px;
}


.news_slider .slick-dots {
  bottom: -16px !important;
  left: 0;
}

.news_slide_box h4 a {
  font-weight: 400;
  color: #101828;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.15px;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
}

.news_slide_box p {
  color: #4A5565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}

.news_slide_box p span {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}


.blog_arrow_btn .mm {
  font-size: 12px;
  letter-spacing: 0.12px;
  line-height: 15px;
  font-weight: 400;
}

.blog_arrow_btn a i {
    margin-right: 0;
    position: relative;
    font-size: 20px;
    top: 0px;
    left: 0px;
}

.news_slide_box p span i {
  margin-right: 5px;
}

.news_slide_box_content {
  padding: 16px;
}

.news_slide_box:hover .news_slide_box_content {
  background-color: #FFF8F8;
}

.n_read_more button.len_mr {
    color: #67132f;
    font-weight: 600;
    border-bottom: 1px solid !important;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    max-width: fit-content;
    border-radius: 0;
}

.n_read_more a.len_mr {
    color: #67132f;
    font-weight: 600;
    border-bottom: 1px solid;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

.n_read_more a.len_mr i {
  font-size: 22px;
  position: relative;
  top: 4px;
  margin-left: 0px;
}


.news_wrapper .slick-prev {
  left: 5px;
  top: 33%;
}

.news_wrapper .slick-next {
  right: 10px;
  top: 33%;
}

.news_wrapper .n_read_more {
  margin-top: 20px;
}

.home-page .news_wrapper .n_read_more {
  display: none;
}

.senior-living-child-page .news_wrapper {
    overflow: hidden;
    background: #fff;
}


.senior-living-child-page footer {
  margin-top: 0;
}


.bg-video {
    pointer-events: none;
}

.bg-video::-webkit-media-controls,
.bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}


.news_wrapper .slick-arrow {
  background: #fff;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 50%;
  max-width: 40px;
  width: 100%;
  height: 40px;
  z-index: 99;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* About Antara CSS */

.home_about_wrapper.gapping {
  overflow: hidden;
}

.home_about_wrapper .main_title {
    margin-bottom: 20px;
    padding: 0 10px;
}


.about-slider.slick-dotted.slick-slider {
    margin-bottom: 40px;
}

/* .home_about_wrapper .main_title p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
} */

.home_about_wrapper .flex_row::-webkit-scrollbar-thumb {
  background: transparent;
}

/* width */
.home_about_wrapper .flex_row::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
.home_about_wrapper .flex_row::-webkit-scrollbar-track {
  background: transparent;
}

.home_about_video {
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  position: relative;
}


.home_about_video iframe {
  border: 0;
  border-radius: 20px 20px 0 0;
  height: 450px;
}

.home_about_wrapper h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 12px;
}

.home_about_left_column {
  width: 100%;
}

.home_about_right_column {
  width: 90%;
}

.video_detial {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.video_detial img {
  border-radius: 50%;
  max-width: 64px;
  width: 100%;
}

.video_detial h5 {
  color: #101828;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 24px;
  letter-spacing: -0.312px;
}

.video_detial p {
  color: #4A5565;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.video_detial span {
  color: #6A7282;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  display: block;
}

.home_about_left_wrapper {
  background: linear-gradient(135deg, rgba(103, 19, 47, 0.05) 0%, rgba(103, 19, 47, 0.1) 100%);
  padding: 24px 25px 24px 25px;
  text-align: center;
  border-radius: 20px;
      height: 564px;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.home_about_wrapper .slick-dots {
    bottom: -30px !important;
    left: 0;
}


.home_about_left_wrapper p {
  color: #364153;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.15px;
}

.home_about_left_wrapper h4 {
  color: #101828;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.312px;
  margin-bottom: 12px;
}


.home_about_wrapper .main_btn {
  margin-top: 24px;
  text-align: center;
  margin: 0 20px;
}

.home_about_wrapper .main_btn a {
  display: block;
  padding: 14px 25px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.15px;
  height: 100%;
}


/* Footer CSS */

footer {
  width: 100%;
  height: 100%;
  z-index: 0;
  padding: 48px 0 0px 0;
  overflow: hidden;
  background-color: #67132F;
}


.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-social-icon .footer-widget-heading h3 {
  margin-bottom: 16px;
  margin-top: 32.63px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 200px !important;
  width: 100%;
}

.footer-text p {
  margin-top: 15.35px;
  margin-bottom: 0;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #fff;
}

.footer-social-icon span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-social-icon a img {
  max-width: 44px;
  width: 100%;
  margin-right: 16px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff24;

}

.footer-widget-heading h3 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  margin-bottom: 17.71px;
  margin-top: 35px;
  font-weight: 400;
  position: relative;
  color: #FFFFFF;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.footer-widget ul li a {
  color: #FFFFFFCC;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.15px;
}

.footer-widget ul li a img {
  max-width: 16px;
  margin-right: 12px;
  width: 100%;
}

.footer-widget ul li a:hover {
  color: 99A1AF;
}

.copyright-area {
  margin-top: 10px;
  background: #4D0E23;
  padding: 24.63px 20px;
}

.copyright-text p {
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFFB2;
  margin-bottom: 0px;
  letter-spacing: -0.15px;
}


.disclaimer-text p {
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFFB2;
    margin-top: 20px;
    letter-spacing: -0.15px;
    font-weight: 400;
}

.disclaimer-text b {
  font-weight: 500;
  font-size: 14px;
}

/* .footer_b_text {
  display: none !important;
} */

.copyright-text p a {
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFFB2;
  letter-spacing: -0.15px;
}

.footer_b_text {
  display: flex;
  /* justify-self: center; */
  gap: 40px;
  position: relative;
  color: #FFFFFFB2;
}

.footer_b_text a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFFB2;
    border-bottom: 1px solid;
}

.footer_b_text:after {
    content: '';
    left: 105px;
    top: 1px;
    position: absolute;
    width: 1.5px;
    height: 19px;
    background-color: #FFFFFFB2;
}


.news_letter {
  margin-top: 20.72px;
  padding-top: 32.17px;
  padding-bottom: 31.72px;
  border-top: 0.636px solid rgba(255, 255, 255, 0.20);
  border-bottom: 0.636px solid rgba(255, 255, 255, 0.20);
}

.news_letter .footer-widget-heading h3 {
  margin-bottom:2px;
  margin-top: 0;
}



.news_letter ul li:last-child {
  margin-bottom: 0px;
}

.news_letter label {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.news_letter .news_letter_input {
  background: #FCFCFC3B;
  border: 0.4px solid #EEF1F5;
  border-radius: 24px;
  padding: 9px 20px;
  width: 100%;
  font-size: 16px;
  color: #fff;
}


.news_letter input[type="submit"] {
  border: 0.4px solid #FFFFFF;
  background: transparent;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  border-radius: 24px;
  padding: 9px 20px;
}

.news_letter .news_letter_input::placeholder {
  color: #C9D0DF;
  font-weight: 400;
}

.num_flex {
    display: flex;
    gap: 50px;
    margin-bottom: 7px;
}

.num_flex p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #ffffffab;
    font-size: 10px;
    font-weight: 400;
}

.num_flex a {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 18px;
    letter-spacing: -0.15px;
    color: #FFFFFF!important;
    font-size: 14px!important;
    font-weight: 700!important;
    display: block;
}

/* Contact Page CSS */

.phone-box {
  width: 100%;
  overflow: hidden;
  border-radius: 16.4px;
  margin-bottom: 10px;
}

.phone-box input {
  width: 100%;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 16.4px;
  padding-left: 95px !important;
  outline: none;
  color: #666;
  overflow: hidden;

}

.iti {
  width: 100%;
}

.iti__flag-container {
  left: 15px;
}

.iti--allow-dropdown input {
  padding-left: 100px !important;
}





.form_banner_bg {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-top: 20px;
  position: relative;
}



.form_banner_bg .main_btn a {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
}


.banner_form_wrapper button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 12px 16px;
    width: 100%;
    border-radius: 16.4px;
    border: 0.636px solid #D1D5DC;
    background: #67132F;
    color: #fff;
    border-radius: 24px;
        max-width: 100%;
    width: 100%;
      margin-bottom: 12px;
}



       .contact-page .cntact_detil_grid {
        display: none;
    }



.care-homes-slider .slick-slide {
    margin-left: 6px;
    margin-right: 6px;
}


.banner_form_wrapper {
    background-color: #FFF8F8;
    padding: 24px;
    border-radius: 20px;
    margin: 14px 17px 0px 17px;
    box-shadow: 0px 25px 50px -12px #00000040;
}

.banner_form_wrapper form input {
    width: 100%;
    border: 0;
    padding: 14px 17px;
    border-radius: 10px;
    margin-bottom: 16px;
    height: auto;
    background-color: #fff;
}





.banner_form_wrapper form textarea {
  width: 100%;
  border: 0.64px solid #D1D5DC;
  padding: 14px 17px;
  border-radius: 16.4px;
  height: 120px;
  background-color: #fff;

}

.banner_form_wrapper form select {
  width: 100%;
  border:0;
  padding: 14px 17px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 16px;

}

.banner_form_wrapper .hero-form > .row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.banner_form_wrapper .hero-form .form-group {
  width: 100%;
  margin-bottom: 16px;
}

.banner_form_wrapper .hero-form .form-group input,
.banner_form_wrapper .hero-form .form-group select,
.banner_form_wrapper .hero-form .form-group textarea,
.banner_form_wrapper .hero-form .iti {
  width: 100%;
  box-sizing: border-box;
}

.banner_form_wrapper .hero-form .form-group input,
.banner_form_wrapper .hero-form .form-group select {
  height: 48px;
  padding: 12px 16px;
  border: 1px solid #D1D5DC;
  border-radius: 16.4px;
  margin-bottom: 0;
}

.banner_form_wrapper .hero-form .form-group textarea {
  display: block;
  height: 112px;
  padding: 12px 16px;
  border: 1px solid #D1D5DC;
  border-radius: 16.4px;
}

.banner_form_wrapper .hero-form .iti input {
  margin-bottom: 0;
}

.banner_form_wrapper .hero-form .iti {
  height: 48px;
}

.banner_form_wrapper .hero-form .main_btn {
  margin-top: 2px;
}

.banner_form_wrapper form input::placeholder,
.banner_form_wrapper form textarea::placeholder,
.banner_form_wrapper form select option:first-child {
  color: #0A0A0A80;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.31px;

}

.form_banner_text_desk_view {
  display: none;
}


.contact_us_main {
  margin-top: 30px;
}

.contact_us_main .main_title {
  margin-bottom: 8px;
}


.w-block-contact_info .main_title {
  margin-bottom: 8px;
}

.contact_us {
  background: #fff;
  box-shadow: 0px 10px 15px -3px #0000001A;
  padding: 30px 40px 22px 40px;
  border-radius: 20px;
  margin-bottom: 48px;
}

.contact_us_main .container {
  padding: 0 0px;
}


a.contact-card {
  border: 0.71px solid #F3F4F6;
  width: 100%;
  padding: 24px 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: block;
}


/* form Css */
.cont_form {
  width: 100%;
}

form.form_name label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #0A0A0A;
}

.cont_form .form-group {
  margin-bottom: 24px;
}


form.form_name input {
  font-weight: 400;
  font-size: 16px;
  color: #717182;
  border: 0;
  margin-top: 4px;
  width: 100%;
  background: #F3F3F5;
  padding: 10px 9px;
  border-radius: 10px;
  height: 51px;
}

form.form_name input:focus-visible {
  outline: none;
}

form.form_name select {
  border: 0;
  width: 100%;
  background: #F3F3F5;
  height: 51px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #717182;
  margin-top: 4px;
  padding: 10px 9px;
}

form.form_name textarea {
  border: 0;
  width: 100%;
  background: #F3F3F5;
  height: 150px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #717182;
  margin-top: 4px;
  padding: 10px 9px;
}

form.form_name select:focus-visible {
  outline: none;
}

/* button */
.input_button input {
  width: 100%;
  max-width: 350px;
  background: #67132F !important;
  color: #fff !important;
  border-radius: 50px !important;
  margin-top: 9px !important;
}

.input_button {
  text-align: center;
}

.safe_input {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 8px;
  align-items: center;
}

.safe_input p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  color: #6A7282;
  margin-bottom: 0;
}

.safe_input i {
  color: #67132F;
}

/* Or Reach Us Directly */
.box_one .icon_contact .cn_icon {
  border-radius: 50%;
  background: #FFF1F2;
  max-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.box_one h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.44px;
  font-weight: 500;
  color: #101828;
  margin-top: 12px;
  margin-bottom: 15px;
}

.box_one p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  color: #4A5565;
  margin-top: 0;
  margin-bottom: 0;
}

.information {
  display: inline;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.box_one {
  text-align: center;
}

.contact_information {
  margin-bottom: 70px;
}


/* select location 
    .loc-select {
      position: relative;
      width: 100%;
      margin-bottom: 25px;
    }

    .loc-select span {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
    }

.loc-select span i {
     color: #67132F;
    }

    .loc-select select {
      width: 100%;
      padding: 10px 10px 10px 30px;
      border: 1px solid #ddd;
      border-radius: 10px;
      height: 60px;
      color: #101828 !important;
      font-size: 18px;
      font-weight: 500
    }

    .loc-select select:focus-visible {
      outline: none;
    } */


.head_locations {
  text-align: center;
      padding-bottom: 65px;
}

.our_location .location-card {
    background: linear-gradient(231.01deg, #FFF8F8 11.84%, #FFFEFE 95.37%);
    display: block;
    padding: 28px 10px;
    border-radius: 24px;
    text-align: center;
    position: relative;
}

.our_location .main_title {
  display: none;
}

.our_location .location-card h4 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.07px;
    font-weight: 500;
    margin-bottom: 14px;
}

.location_slider .slick-slide {
    margin-left: 4px;
    margin-right: 4px;
}

.our_location .location-card-btm{
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.44px;
    line-height: 20px;
        display: block;
}

.our_location .main_btn {
    position: absolute;
    bottom: 27px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.head_locations img {
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
}

.our_location .main_title {
  margin-bottom: 17px;
}


.our_location p {
  font-size: 16px;
  letter-spacing: -0.44px;
  font-weight: 500;
  color: #000000;
  line-height: 24px;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  margin-top: 17px;
  margin-bottom: 0;
}


.contact-page footer {
  margin-top: 0;
}

.our_location .location-card-cin {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.44px;
  line-height: 24px;
  display: block;
  margin-bottom: 12px;
}

/* 24/7  */

.contact_last p {
  font-size: 16px;
  font-weight: 400;
  color: #364153;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFF3F7 100%);
  padding: 22px 10px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px !important;
}

.contact_last p i {
  font-size: 17px;
  color: #67132F;
  margin-right: 10px;
}



/* Featured Slider */


.featured_slider_box_img img {
  border-radius: 20px 20px 0 0;
}

.featured_slider_box_content {
  padding: 20px;
}

.featured_slider_box_content h4 a {
  font-size: 16px;
  color: #101828;
  font-weight: 400;
}




.featured_slider_box_content p:not(.featured_slider_view_all) {
    font-size: 14px;
    font-weight: 400;
    color: #364153;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin-bottom: 12px;
    display: flex;
}

.featured_slider_box_content p img {
  color: #67132F;
  margin-right: 10px;
  max-width: 16px;
}


span.avail_now {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #67132F;
    background: #fff;
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
    border-radius: 24px;
    font-weight: 400;
}

.d_view a {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  background: #67132F;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 27px;
  display: flex;
  gap: 5px;
}

.d_view a img {
  max-width: 13px;
}

.featured_slider_box_content span {
    background: #67132f17;
    color: #67132F;
    padding: 7px 12px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
    border-radius: 28px;
    display: block;
    max-width: fit-content;
    margin: 10px 0 12px 0;
    font-weight: 400;
}

.featured_slider_box_content .main_btn {
  margin-top: 18px;
  margin-bottom: 0px;
}

.featured_slider_box_content .main_btn a {
  padding: 10px 20px;
  font-size: 13px;
  transition: all 0.3s;
  display: block;
  text-align: center;
}

.featured_slider_box_content .main_btn a i {
    font-size: 24px;
    position: relative;
    left: 5px;
    top: 2px;
}

.slick-arrow {
  background: #fff;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 50%;
  max-width: 40px;
  width: 100%;
  height: 40px;
  z-index: 99;
}


.slick-arrow img {
  max-width: 6px;
  width: 100%;
}


.featured_slider .slick-prev {
  left: 0;
}

.featured_slider .slick-next {
  right: 0;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: #fff;
}

.featured_slider {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
}

/* Single care home: center one Slick slide + show CTA / view-all */
.featured_slider.featured-slider--single {
  padding-left: 0;
  padding-right: 0;
  max-width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.featured_slider.featured-slider--single.slick-initialized .slick-track {
  display: flex !important;
  justify-content: center;
  transform: translate3d(0, 0, 0) !important;
  width: 100% !important;
}

.featured_slider.featured-slider--single .slick-slide {
  width: 100% !important;
  max-width: 343px;
}

.featured_slider.featured-slider--single .featured_slider_box {
  transform: scale(1);
  margin-left: auto;
  margin-right: auto;
}

.featured_slider.featured-slider--single .featured_slider_box_content .main_btn,
.featured_slider.featured-slider--single .featured_slider_box_content .featured_slider_view_all {
  display: block;
}

.featured_slider_box_content .main_btn ,
.featured_slider_box_content .fch-tab-view-all  {
  display: none;
}

.swiper-slide-active .main_btn,
.swiper-slide-active .fch-tab-view-all {
  display: block;
}
.swiper-slide .featured_slider_box , .swiper-slide .day_slider_box {
  opacity: .7;
}

.swiper-slide-active .featured_slider_box, .swiper-slide-active .day_slider_box {
  opacity: 1;
}


.featured_slider_box {
  width: 100%;
  box-shadow: 5px 5px 15px #aaaaaa75;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  transform: scale(.9);
  will-change: transform;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.featured_slider .slick-center {
  margin-top: -30px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.featured_slider .slick-center .main_btn {
  display: block;
}


.featured_slider_box.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.1);
  background: #fff;
  z-index: 9999999;
  position: relative;
}

.featured_slider .slick-track {
  padding-top: 70px;
  padding-bottom: 35px;
}

.featured_slider .slick-slide {
  margin-left: 0px;
  margin-right: 0px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.featured_slider_wrapper li.nav-item {
  margin-left: 0;
  line-height: 1;
  max-width: 98px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.featured_slider_wrapper .nav-pills .nav-link {
  font-size: 16px;
  color: #9BA5AE;
  font-weight: 400;
  max-width: 240px;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.featured_slider_wrapper ul.nav {
 border-bottom: 0.4px solid #E5E5E5;
  padding-bottom: 0px;
  justify-content: space-around;
 
}

.featured_slider_wrapper .nav-pills .nav-link.active,
.featured_slider_wrapper .nav-pills .show>.nav-link {
  color: #67132F !important;
  background-color: transparent;
  border-bottom: 2px solid #67132F;
  border-radius: 0;
  line-height: 32px;
}


.trans_btn a {
  padding: 14px 35px;
  border-radius: 38px;
  color: #67132F;
  font-weight: 500;
  border: 1px solid #67132F;
  font-size: 16px;
  transition: all 0.3s;
}

.trans_btn a:hover {
  background-color: #f5f3f3;
}

.what_included .trans_btn a {
    padding: 7px 14px;
    height: 40px;
}

.trans_btn a i {
    margin-left: 0px;
    font-size: 30px;
    position: relative;
    top: 4px;
}

.featured_slider_wrapper .trans_btn {
  margin-top: 25px;
  text-align: center;
  margin-bottom: 10px;
}

span.avail_now--live {
  color: #e7000b;
}

.featured_slider_box_content .featured_slider_view_all {
  display: none;
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
}

.featured_slider_view_all a {
  color: #67132f;
  text-decoration: underline;
  font-weight: 500;
}

.featured_slider .slick-center .featured_slider_box_content .featured_slider_view_all,
.featured_slider.featured-slider--single .featured_slider_box_content .featured_slider_view_all {
  display: block;
}

/* Our Care Homes — always show CTA + view-all on the active slide */
.our-care-homes-block .featured_slider .slick-current .featured_slider_box_content .main_btn,
.our-care-homes-block .featured_slider .slick-current .featured_slider_box_content .featured_slider_view_all,
.our-care-homes-block .featured_slider.featured-slider--single .featured_slider_box_content .main_btn,
.our-care-homes-block .featured_slider.featured-slider--single .featured_slider_box_content .featured_slider_view_all {
  display: block !important;
}

.our-care-homes-block .featured-slider-dots-wrap {
  min-height: 28px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.our-care-homes-block .featured-slider-dots-wrap:empty {
  display: none;
}

/* City tabs — centered (override featured_slider_wrapper space-between) */
.our-care-homes-block .fch-city-tabs {
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: center !important;
  align-items: flex-end;
  gap: clamp(20px, 8vw, 56px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px !important;
  padding: 0 16px 0;
  border-bottom: 1px solid #c5c9ce;
  list-style: none;
}

.our-care-homes-block .fch-city-tabs .nav-item {
  flex: 0 0 auto;
  max-width: none !important;
  width: auto !important;
  margin: 0 !important;
}

.our-care-homes-block .fch-city-tabs .nav-link {
  width: auto !important;
  max-width: none !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.our-care-homes-block .fch-city-tabs:has(> .nav-item:only-child) {
  display: none !important;
  margin-bottom: 0 !important;
}

/* Custom pagination dots (below card — outside white box) */
.our-care-homes-block .fch-slider-dots {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 343px;
  padding: 0;
  border: none;
  line-height: 0;
  min-height: 12px;
}

.our-care-homes-block .fch-slider-dots .fch-dot {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: #c9cdd3;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.our-care-homes-block .fch-slider-dots .fch-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: #67132f;
}

/* Our Care Homes — reset global featured_slider rules that break this block */
.our-care-homes-block .featured_slider {
  padding-left: 0;
  max-width: 100%;
}

.our-care-homes-block .featured_slider .slick-track {
  padding-top: 0 !important;
  padding-bottom: 24px !important;
}

/* Multi-card carousel: undo global single-slide track lock; let Slick control transform */
.our-care-homes-block .fch-care-slider:not(.featured-slider--single).slick-initialized .slick-track {
  display: block !important;
  width: auto !important;
  justify-content: flex-start !important;
}

.our-care-homes-block .fch-care-slider:not(.featured-slider--single) .slick-slide {
  float: left !important;
}

.our-care-homes-block .fch-care-slider.featured-slider--single.slick-initialized .slick-track {
  transform: translate3d(0, 0, 0) !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.our-care-homes-block .featured_slider.slick-slider,
.our-care-homes-block .featured_slider .slick-list {
  touch-action: pan-x pinch-zoom;
}

.our-care-homes-block .fch-tab-view-all {
  max-width: 343px;
  margin: 0 auto 4px;
  padding: 0 18px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.assisted-care-page .ccm-section.who-is-care-home-section .ccm-card-content {
    height:85px;
}



.our-care-homes-block .fch-tab-view-all a {
    color: #67132f;
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.our-care-homes-block .featured_slider .slick-center {
  margin-top: 0 !important;
}

.our-care-homes-block .featured_slider_box,
.our-care-homes-block .featured_slider_box.slick-slide.slick-current.slick-active.slick-center {
  transform: none !important;
  margin-bottom: 0;
}


/* Our Care Homes — vertical card stack (image top, content below) */
.our-care-homes-block .featured_slider_box {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(170, 170, 170, 0.46);
}

.our-care-homes-block .featured_slider_box_img {
  width: 100%;
  flex-shrink: 0;
}

.our-care-homes-block .featured_slider_box_img_inner {
  width: 100%;
  line-height: 0;
}

.our-care-homes-block .featured_slider_box_img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
}

    .our-care-homes-block .featured_slider_box_img img.fe_main_img {
        object-fit: cover;
        height: 208px;
        width: 100%;
        display: block;
        position: relative;
        top: 0;
    }

.our-care-homes-block .featured_slider_box_content {
  width: 100%;
  padding: 20px;
  text-align: left;
  box-sizing: border-box;
}

.our-care-homes-block .featured_slider_box_content .fch-card-title,
.our-care-homes-block .featured_slider_box_content .fch-card-title a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  line-height: 1.35;
  margin: 0 0 14px;
}

/* Detail rows — icon + text list (not pink pills) */
.our-care-homes-block .fch-card-details {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.our-care-homes-block .fch-card-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #364153;
  margin-bottom: 10px;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.our-care-homes-block .fch-card-details li:last-child {
  margin-bottom: 0;
}

.our-care-homes-block .fch-card-details li i {
  flex-shrink: 0;
  width: 18px;
  color: #67132f;
  margin-top: 2px;
  text-align: center;
}

/* Prevent global span pill style on detail text */
.our-care-homes-block .featured_slider_box_content p span,
.our-care-homes-block .fch-card-details span {
  background: none !important;
  color: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline !important;
  border-radius: 0 !important;
  max-width: none !important;
}

.our-care-homes-block .featured_slider_tag,
.our-care-homes-block .featured_slider_box_content .featured_slider_tag {
  display: inline-block;
  background: #67132f17;
  color: #67132f;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 28px;
  margin: 12px 0 16px;
}

.our-care-homes-block .featured_slider_box_content .main_btn {
  margin-top: 4px;
  margin-bottom: 0;
}

.our-care-homes-block .featured_slider_box_content .main_btn a {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 999px;
  text-align: center;
}

.our-care-homes-block .featured_slider_box_content .featured_slider_view_all {
  display: block !important;
  margin: 14px 0 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.our-care-homes-block .featured_slider_box_content .featured_slider_view_all a {
  color: #67132f;
  text-decoration: underline;
  font-weight: 500;
}

.our-care-homes-block .featured_slider_box_content .featured_slider_view_all a i {
  margin-left: 4px;
}

/* Show CTA + view-all on center / active / single slide */
.our-care-homes-block .featured_slider .slick-center .featured_slider_box_content .main_btn,
.our-care-homes-block .featured_slider .slick-current .featured_slider_box_content .main_btn,
.our-care-homes-block .featured_slider.featured-slider--single .featured_slider_box_content .main_btn {
  display: block !important;
}

.our-care-homes-block .featured_slider .slick-center .featured_slider_box_content .featured_slider_view_all,
.our-care-homes-block .featured_slider .slick-current .featured_slider_box_content .featured_slider_view_all,
.our-care-homes-block .featured_slider.featured-slider--single .featured_slider_box_content .featured_slider_view_all {
  display: block !important;
}

.our-care-homes-block .featured_slider .slick-slide:not(.slick-center):not(.slick-current) .featured_slider_box_content .main_btn {
  display: none !important;
}

/* Mobile: Our Care Homes — full-width stacked card */

  .our-care-homes-block.featured_slider_wrapper {
    overflow-x: hidden;
  }

  .our-care-homes-block .container {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
}

  .our-care-homes-block .fch-city-tabs {
    justify-content: center !important;
    gap: clamp(24px, 10vw, 48px);
    margin-bottom: 20px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
  }

  .our-care-homes-block .fch-city-tabs::-webkit-scrollbar {
    display: none;
  }

  .our-care-homes-block .fch-city-tabs .nav-item {
    max-width: none;
    width: auto;
    flex: 0 0 auto;
  }

  .our-care-homes-block .fch-city-tabs .nav-link {
    width: auto;
    max-width: none;
    font-size: 16px;
    padding: 0 2px 10px;
    white-space: nowrap;
  }

  .our-care-homes-block .fch-city-tabs:has(> .nav-item:only-child) {
    display: none;
    margin-bottom: 0;
  }

  .our-care-homes-block.featured_slider_wrapper .tab-content {
    width: 100%;
    overflow: hidden;
  }

  .our-care-homes-block .tab-pane {
    width: 100%;
    max-width: 100%;
  }

  .our-care-homes-block .featured_slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .our-care-homes-block .featured_slider .slick-list {
    overflow: hidden;
    margin: 0 auto;
  }

  .our-care-homes-block .featured_slider .slick-track {
    padding-top: 0 !important;
    padding-bottom: 12px !important;
  }

  .our-care-homes-block .featured_slider.slick-slider,
  .our-care-homes-block .featured_slider .slick-list {
    touch-action: pan-x pinch-zoom;
  }

  .our-care-homes-block .fch-care-slider .slick-slide {
    height: auto !important;
  }

  .our-care-homes-block .fch-care-slider .slick-slide>div {
    display: block !important;
    width: 100%;
    max-width: 100%;
  }

  .our-care-homes-block .featured_slider_box {
    margin: 25px auto !important;
  }

  .our-care-homes-block .featured_slider_box_content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

    .our-care-homes-block .featured_slider_box_content h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.31px;
        font-weight: 400;
        margin-bottom: 12px;
        color: #101828;
    }

  .our-care-homes-block .featured_slider_box_content .fch-card-title,
  .our-care-homes-block .featured_slider_box_content .fch-card-title a {
    font-size: 17px;
    word-wrap: break-word;
  }

  .fch-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ccc;
    border:none;
    margin:0 5px;
    cursor:pointer;
    transition:.3s;
}

.fch-dot.active {
    background: #7a1737 !important;
    transform: scale(1.2);
    width: 24px !important;
    border-radius: 20px !important;
}

  .our-care-homes-block .fch-card-details li {
    font-size: 13px;
  }

  .our-care-homes-block .featured_slider_tag {
    display: inline-block !important;
    max-width: 100%;
    white-space: normal;
    writing-mode: horizontal-tb;
  }

  .our-care-homes-block .featured_slider .slick-slide .featured_slider_box_content .main_btn {
    display: block !important;
    width: 100%;
    max-width: 100%;
  }

     .our-care-homes-block .featured_slider_box_content .main_btn a {
        width: 100%;
        box-sizing: border-box;
        border-radius: 999px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.31px;
    }

  .our-care-homes-block .featured_slider .slick-prev {
    left: 0;
    z-index: 5;
  }

  .our-care-homes-block .featured_slider .slick-next {
    right: 0;
    z-index: 5;
  }

  .our-care-homes-block .fch-slider-dots {
    max-width: min(343px, calc(100vw - 32px));
  }


/* Our Care Homes — pill dots under carousel (appendDots target) */
.our-care-homes-block .featured-slider-dots-wrap .slick-dots,
.our-care-homes-block .featured_slider .slick-dots {
  position: relative;
  bottom: auto;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 8px auto 0;
  padding: 0;
  width: 100%;
  line-height: 0;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li,
.our-care-homes-block .featured_slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li button,
.our-care-homes-block .featured_slider .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li button:before,
.our-care-homes-block .featured_slider .slick-dots li button:before {
  content: "" !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #c9cdd3 !important;
  color: transparent !important;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li.slick-active,
.our-care-homes-block .featured_slider .slick-dots li.slick-active {
  width: 36px !important;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li.slick-active button,
.our-care-homes-block .featured_slider .slick-dots li.slick-active button {
  width: 36px !important;
  height: 10px !important;
}

.our-care-homes-block .featured-slider-dots-wrap .slick-dots li.slick-active button:before,
.our-care-homes-block .featured_slider .slick-dots li.slick-active button:before {
  width: 32px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #67132f !important;
}



/* Families Speak Slider  */

.families_speak_slider_wrapper .slick-dots {
  bottom: -20px !important;
  left: 0;
}

.families_speak_slider_wrapper iframe {
  border: 0;
  border-radius: 20px 20px 0 0;
}

.families_speak_slider_wrapper .fs_box_img {
    border: 0;
    /* height: 320px;
    background: #0000000a; */
  border-radius: 20px 20px 0 0;
  position: relative;
}

.fs_box:hover .fs_box_img:after {
  opacity: 1;
}

.fs_box_img:after {
  content: '';
  background-color: #00000040;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  opacity: 0;
  border-radius: 20px;
}

.fs_box {
  max-width: 380px;
  width: 100%;
  border-radius: 20px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
}

/* .fs_box:hover {
  background: #ebf2facf;
} */


.fs_box img {
  border-radius: 20px 20px 0 0;
  height: 192px;
  width: 100%;
  object-fit: cover;
}


.fs_box p {
  color: #364153;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.15px;
  margin-bottom: 12px;
  font-weight: 400;
      height: 100px;
    overflow-y: scroll;
}

/* width */
.fs_box p::-webkit-scrollbar {
  width: 2px;
}

/* Handle */
.fs_box p::-webkit-scrollbar-thumb {
  background: #ddd; 
}


.fs_box_q_icon {
  max-width: 24px;
  width: 100% !important;
  height: 24px !important;
  margin-bottom: 8px;
}

.fs_box_content {
  padding: 16px 16px;
  /* height: 225px; */
}

.fs_box_detail {
  display: flex;
  gap: 12px;
  align-items: center;
}



.fs_box_detail h4 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 0px;
}

.fs_box_detail span {
  font-size: 12px;
  font-weight: 400;
  color: #4A5565;
  line-height: 16.5px;
  display: block;
  margin-top: 1px;
}

.fs_box_detail img {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.families_speak_slider {
  padding-left: 0;
}

.families_speak_slider .slick-track {
  margin-bottom: 20px;
}


.families_speak_slider .slick-prev {
  left: 5px;
  top: 30%;
}

.families_speak_slider .slick-next {
  right: 5px;
  top: 30%;
}



/* Blog Page CSS */


.blog-page .banner_wrapper.as_banner_wrapper .container {
  position: absolute;
  bottom: 67px;
  width: 100%;
  padding: 0 24px;
}

.blog-page .banner_wrapper.as_banner_wrapper {
  width: 100%;
  height: 523px;
}

.news-page .banner_wrapper.as_banner_wrapper {
  width: 100%;
  height: 523px;
}

.senior-care-guide-page .banner_wrapper.as_banner_wrapper {
  width: 100%;
  height: 523px;
}

.senior-care-guide-page .as_banner_wrapper .banner_content {
    height: 100%;
}

.news-page  .as_banner_wrapper .banner_content {
    height: 100%;
}

.news-page  .blog_cards {
    margin-top: 20px;
}

.swiper-slide {
  transition: all 0.4s ease;
}


.senior-care-guide-page  .blog_cards {
    margin-top: 30px;
}

.senior-care-guide-page  .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 20px;
}

.blog-page .as_banner_wrapper .banner_content {
  height: 100%;
}

.blog-page .as_banner_wrapper.banner_wrapper .banner_content p {
  margin: 0 auto;
  margin-bottom: 24px;
  max-width: 300px;
}

.blog-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
  margin-bottom: 10px;
}

.blog_tab ul.nav {
  margin-bottom: 11px;
  margin-top: 0px;
  justify-content: left;
  gap: 12px;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
  /* padding-bottom: 10px; */
}

.blog_tab .container {
  padding: 0px 16px;
}

.blog_tab ul.nav::-webkit-scrollbar {
  display: none;
}

.blog_tab .nav-pills .nav-link {
  padding: 9px 24px;
  border-radius: 40px;
  border: 0.8px solid #D1D5DC;
  background: white;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 500;
  color: #364153;
}

.blog_tab .nav-pills .nav-link i {
  margin-right: 10px;
}

.blog_tab .nav-pills .nav-link.active,
.blog_tab .nav-pills .show>.nav-link {
  background: #67132F;
  color: #fff;
}

.blog_tab .nav-pills .nav-link:hover {
  background: #67132F;
  color: #fff;
}

/* hero */

.b_blog {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.b_blog:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.b_blog img {
  width: 100%;
  height: 267px;
  object-fit: cover;
  object-position: top;
}

.b_blog-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 20px 20px 54px 24px;
  /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); */
  color: white;
  z-index: 1;
}

.b_blog-content .tag {
  background: #FFFFFF33;
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 500;
}

.b_blog-content h4 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  margin: 12px 0 12px 0px;
  font-weight: 500;
  /* width: 80%; */
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.b_blog-content p {
  font-size: 14px;
  font-weight: 400 !important;
  max-width: 650px;
  width: 100%;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.b_blog-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  display: flex;
  max-width: fit-content;
}

/* Cards */

.blog_cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin: 0 20px;
}

.blog_card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px #0000001A;
  cursor: pointer;
  z-index: 0;
}

.blog_card:hover:after {
    content: '';
    background-color: #00000069;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog_card img {
  height: 428px;
  width: 100%;
  object-fit: cover;
}




.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 29px 20px 29px 20px;
  background: #0000008C;
  z-index: 1;
}

.overlay span {
  background: #F9E8EE;
  color: #67132F;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
}

.senior-care-guide-page .overlay h3 {
  margin-top: 0;
}

.senior-care-guide-page .meta {
    justify-content: right;
}

.overlay h3 {
    font-size: 20px;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: -0.45px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
}


.meta {
  margin-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta p {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.meta a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
}

.meta a:hover {
  color: #ffffffd4 !important
}

.meta a p {
  color: #fff !important;
}

.blog_tab .main_btn {
  text-align: center;
  margin: 48px 0px 53px 0px;
}

#load-more-btn {
  line-height: 24px;
  letter-spacing: -0.31px;
  padding: 12px 25px;
  font-size: 18px;
  height: 50px;
  border-radius: 38px;
  color: #fff;
  border: none;
  font-weight: 500;
  background: #67132F;
  transition: all 0.3s;
  max-width: 207px;
  width: 100%;
}

/* costomer care */

.blog-page footer {
  margin-top: 0;
}

.customer_care {
  text-align: center;
  background: linear-gradient(180deg, #F9FAFB 0%, #F1D5DE 100%);

}

.customer_care .container {
  max-width: 360px;
  width: 100%;
}

.customer_care .main_btn {
  margin-top: 21px;
}

.customer_care h2 {
  font-size: 28px;
  letter-spacing: 0.07px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 16px;
  line-height: 36px;
}

.customer_care p {
  font-size: 16px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #4A5565;
  margin-bottom: 0px;
  line-height: 24px;
}

.customer_care .main_btn a {
  padding: 12px 40px;
  letter-spacing: -0.31px;
  line-height: 24px;
  transition: all 0.3s;
  display: inline-block;
}

.customer_care .main_btn a img {
    max-width: 20px;
    width: 100%;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

/* Blog Searchbar */

.blog_searchbar {
  margin-top: -50px;
}

.blog_searchbar form {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.blog_searchbar .form-control {
  padding: 22px 45px;
  border-radius: 34px;
  box-shadow: 0px 10px 15px -3px #0000000a;
  border: 0.8px solid #E5E7EB
}

.blog_searchbar form input[type="search"]::placeholder {
  color: #0A0A0A80;
  font-size: 18px;
  font-weight: 400;
}

.blog_searchbar .btn {
  top: 11px;
  color: #67132f;
  position: absolute;
  right: 22px;
  font-size: 20px;
  max-width: fit-content;
}

.blog_searchbar .btn img {
  max-width: 18px;
}

.blog_searchbar i.bi.bi-geo-alt {
  color: #0A0A0A80;
  top: 20px;
  left: 17px;
  position: absolute;
  font-size: 20px;
}

.blog_tab {
  margin-top: 24px;
}

/* Blog Slider */

.c_blog_slider .news_slide_box p {
  margin-bottom: 12px;
}

.c_blog_slider .news_slide_box p a {
  color: #4A5565;
  font-size: 12px;
}

p.latest_bl_para {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_cate {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 18px;
  color: #1447E6;
  background: #EFF6FF;
  z-index: 99;
}


.c_blog_slider_box:nth-child(4n+1) .blog_cate {
  color: #007A55;
  background: #ECFDF5;
}

.c_blog_slider_box:nth-child(4n+2) .blog_cate {
  color: #1447E6;
  background: #EFF6FF;
}

.c_blog_slider_box:nth-child(4n+3) .blog_cate {
  background: #FFF1F2;
  color: #C70036;
}

.c_blog_slider .red_more {
  color: #67132F;
  font-size: 12px;
  font-weight: 500;
}

.blog_arrow_btn {
  margin-bottom: 0!important;
}

.blog_arrow_btn a i {
    margin-right: 0px!important;
}

.awd_slider .slick-slide ,
.news_slider .slick-slide {
  margin-left: 0px;
  margin-right: 0px;
}

.ur_solution_slider .slick-slide {
  margin-left: 5px;
  margin-right: 5px;
}

.families_speak_slider .slick-slide {
  margin-left: 5px;
  margin-right: 5px;
}

.experience_care_box {
  position: relative;
  width: 100%;
  border-radius: 20px;
}

.experience_care_box img {
  border-radius: 20px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.experience_care_box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, #000000a6, #ffff0000);
  border-radius: 20px;
}

.experience_care_box_content {
  position: absolute;
      bottom: 15px;
    left: 24px;
  z-index: 2;
}

.experience_care_box_content h4 a {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.44px;
}

.experience_care_box_content p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin: 8px 0 0;
  line-height: 1.4;
}




.experience_care_slider_wrapper .slick-prev {
  left: -7px;
}

.experience_care_slider_wrapper .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}

.experience_care_slider_wrapper .slick-next {
  right: 20px;
}


.experience_care_slider_wrapper .n_read_more {
  margin-top: 70px;
}

.experience_care_slider_wrapper .slick-dots {
  bottom: -38px!important;
  left: 0;
}


/* Blog Detail Page */


.blog_detail_share ul li a img {
  max-width: 30px;
  width: 100%;
}

.blog_detail_share {
    display: flex;
    align-items: center;
    margin-top:20px;
    gap: 20px;
}

.blog_detail_share ul {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog_detail_share span {
   font-size: 18px;
   color: #fff;
}

.banner_wrapper.text-left .banner_content h1 {
  text-align: left;
  max-width: 950px;
  width: 100%;
  margin: 0;
  margin-bottom: 18px;
}

.blog_detail_hero .banner_content {
  background: #0000003d;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 19px 24px 19px;
  height: auto !important;
}

.blog_detail_hero .banner_content h1 {
  font-size: 24px !important;
  line-height: 32px !important;
  margin-bottom: 12px !important;
}

.news_detail_hero .banner_content {
  background: #0000003d;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 19px 24px 19px;
  height: auto !important;
}

.news_detail_hero .banner_content h1 {
  font-size: 24px !important;
  line-height: 32px !important;
  margin-bottom: 12px !important;
}

.senior_care_guide_detail_hero .banner_content {
  background: #0000003d;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 19px 24px 19px;
  height: auto !important;
}

.senior_care_guide_detail_hero .banner_content h1 {
  font-size: 24px !important;
  line-height: 32px !important;
  margin-bottom: 12px !important;
}

.blog_key {
  background: #fff;
  border-left: 4px solid #b21f2d;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog_key h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #364153;
}

.key_text {
  display: flex;
  gap: 10px;
}

.key_text p {
  font-size: 14px;
  font-weight: 400;
  color: #364153;
  margin-bottom: 5px;
}

.key_text i {
  font-size: 16px;
  font-weight: 500;
  color: #67132F;
}

.blog_detail_content p {
  font-size: 16px;
  color: #4A5565;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin-bottom: 17px;
}

.blog_detail_content p a {
  color: #731535;
}

.blog_detail_content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #101828;
  margin-top: 20px;
}

.news_detail_content p {
  font-size: 16px;
  color: #4A5565;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin-bottom: 17px;
}

.news_detail_content p a {
  color: #731535;
}

.news_detail_content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #101828;
  margin-top: 20px;
}


.senior_care_guide_detail_content p {
  font-size: 16px;
  color: #4A5565;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin-bottom: 17px;
}

.senior_care_guide_detail_content p a {
  color: #731535;
}

.senior_care_guide_detail_content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #101828;
  margin-top: 20px;
}


.flat_point h3 {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 20px;
  margin-top: 40px;
}

.flat_point_text {
  margin-bottom: 12px;
}

.flat_point_text strong {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
}

.flat_point_text p {
  font-size: 14px;
  font-weight: 400;
  color: #364153;
  margin-top: 2px;
}

.blog_care {
  border-left: 5px solid #101828;
  margin-bottom: 30px;
  margin-top: 40px;
  padding: 5px 20px;
}

.blog_care h3 {
  font-size: 27px;
  font-weight: 400;
  line-height: 46px;
  color: #1E2939;
  font-style: italic;
}

.blog_auth {
  border: 1px solid #E5E7EB;
  padding: 14px 20px;
  border-radius: 7px;
  margin-bottom: 7px;
  margin-top: 26px;
  max-width: max-content;
  width: 100%;
}

.blog_auth_text {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.blog_auth_text i {
  font-size: 20px;
  color: #00A63E;
}

/* Related Blogs */

.related_blog_section {
  padding: 50px 0 60px;
}

.related_blog_section .container {
  padding: 0 16px;
}

.related_blog_title {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.07px;
  font-weight: 500;
  color: #101828;
  margin-bottom: 24px;
}

.related_blog_section .blog_cards {
  margin: 0;
}

    .blog_detail_content h2 {
        color: #101828;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0.07px;
        font-weight: 400;
        margin-bottom: 10px;
        margin-top: 24px;
    }

    .news_detail_content h2 {
        color: #101828;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0.07px;
        font-weight: 400;
        margin-bottom: 10px;
        margin-top: 24px;
    }

    .senior_care_guide_detail_content h2 {
        color: #101828;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0.07px;
        font-weight: 400;
        margin-bottom: 10px;
        margin-top: 24px;
    }


.blog_auth_text h3 {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  margin-bottom:0!important;
  margin-top: 0!important;
}

.blog_auth_text p {
  font-size: 14px;
  font-weight: 400;
  color: #4A5565;
  margin-bottom: 0;
}

.s_cta {
    background: linear-gradient(180deg, #67132F 0%, #8A1A3F 100%);
    padding: 22px 24px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
        box-shadow: 0px 20px 25px -5px #0000001A;
}

.s_cta:after {
    content: '';
    position: absolute;
    top: -34px;
    right: -30px;
    background-color: #FFFFFF1A;
    max-width: 128px;
    width: 100%;
    height: 128px;
    border-radius: 50%;
}

.s_cta:before {
    content: '';
    position: absolute;
    bottom: -32px;
    left: -10px;
    background-color: #FFFFFF1A;
    max-width: 96px;
    width: 100%;
    height: 96px;
    border-radius: 50%;
}

.care-homes-page .s_cta .tras-btn.care-btn-outline {
  display: none;
}

.care-homes-page .s_cta .tras-btn.care-btn-outline:hover,
.care-at-home-page .s_cta .tras-btn.care-btn-outline:hover {
  background-color: #ffffff52 !important;
}


.s_cta h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.31px;
    margin-bottom: 12px;
    color: #fff;
}

.s_cta p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #FFFFFFE5;
}

.s_cta .main_btn a {
  color: #67132F;
  background: #fff;
    height: 100%;
}

.s_cta .main_btn a:hover {
  background-color:#ebc8d4 !important;
}

.hero_ul_flex_box {
    display: flex;
    gap: 7px;
    width: 100%;
    max-width: 130px;
    align-items: center;
}

.hero_ul_flex_box span {
  background: #FFFFFF33;
  height: 32px;
  width: 32px;
  padding: 10px; 
  border-radius: 50%;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
}

.hero_ul_flex_box h5 {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
  color: #FFFFFFE5;
  margin-bottom: 0;
  text-align: left;
}

.blog-detail-page .hero_ul_flex_box h5 {
    white-space: nowrap;
}

.blog-detail-page .hero_ul_flex_box {
    gap: 2px;
}

.blog-detail-page .hero_ul_flex {
    gap: 17px;
}


.hero_ul_flex_box p {
  margin-bottom: 0 !important;
  font-size: 12px !important;
  color: #FFFFFFBF;
  font-weight: 400;
  text-align: left;
  line-height: 16px !important;
}

.hero_ul_flex {
    background-color: #0600003B;
    padding: 4px 5px 11px 5px;
    border-radius: 12px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: #fff;
    max-width: fit-content;
    align-items: center;
}

.hero_ul_flex_span {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  color: #FFFFFFE5;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
}

.banner_wrapper.blog_detail_hero {
  position: relative;
  height: 523px;
  margin-bottom: 30px;
}

.banner_wrapper.news_detail_hero {
  position: relative;
  height: 523px;
  margin-bottom: 30px;
}

.banner_wrapper.senior_care_guide_detail_hero {
  position: relative;
  height: 523px;
  margin-bottom: 30px;
}

span.back_btn {
  background: #fff;
  position: absolute;
  top: 80px;
  left: 20px;
  border-radius: 50%;
  max-width: 44px;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #101828;
  box-shadow: 0px 10px 15px -3px #0000001A;
  z-index: 1;
}

span.back_btn a {
  color: #101828;
}

.banner_wrapper.blog_detail_hero:after {
  content: '';
  position: absolute;
  background-color: #0000007a;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner_wrapper.news_detail_hero:after {
  content: '';
  position: absolute;
  background-color: #0000007a;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner_wrapper.senior_care_guide_detail_hero:after {
  content: '';
  position: absolute;
  background-color: #0000007a;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



@media (max-width: 767px) {


  .awd_box_img>* {
    scroll-snap-align: start;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
    position: absolute;
    bottom: 28px;
    right: 10px;
  }

  .hide-text .slider-dots {
    bottom: 22px;
    right: 10px;
  }

  .dot {
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
  }

  .dot.active {
    background: #67132f;
    width: 30px;
  }


  .news_wrapper {
    order: 1;
  }

  .awd_wrapper {
    order: 2;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }

  .awd_box_img {
    padding-left: 50px;
    scroll-behavior: smooth;
    position: absolute;
    right: -75px;
    width: 63%;
    bottom: 40px;
  }

  .hide-text.active .awd_box_img {
    scroll-behavior: smooth;
    right: 0px;
  }

  .hide-text.active .dot.active {
    background: #fff;
    width: 30px;
  }

  .hide-text.active .dot {
    background: #A17272;
  }


  .hide-text.active.awd_wrapper a {
    position: absolute;
    bottom: 18px;
  }

  .hide-text.active .awd_box_img img {
    border: 0;
  }

  .hide-text.active .awd_box_img img:first-child {
    position: relative;
    z-index: 0;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
  }

  .awd_box_img img {
    border: 1px solid #fff;
  }

  .awd_box_img img:first-child {
    position: absolute;
    z-index: -1;
    left: 9px;
    top: 9px;
    width: 100%;
    height: 94%;
    object-fit: cover;
  }

  .awd_box {
    width: 59%;
  }

  .awd_box_img {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }


  .awd_wrapper a {
    position: absolute;
    bottom: 20px;
  }

  .desktop_nav {
    display: none;
  }


}

.order_wrapper {
  display: flex;
  flex-direction: column;
}



/* ================================
CARE SOLUTION SECTION
================================ */


.banner_wrapper.as_banner_wrapper .banner_content h1 {
  max-width: 800px;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 40px;
}

.assisted-care-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
  margin-bottom: 6px;
}

.work-with-us-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
  margin-bottom: 30px;
}

.senior-living-page .banner_wrapper .banner_content h1,
.senior-living-child-page .banner_wrapper .banner_content h1 {
  /* font-size: 32px;
  line-height: 45px;
  letter-spacing: 0.37px; */
  font-weight: 600;
  max-width: 100%;
  margin-bottom: 6px;
}

.estate-page .floting_btn {
  display: none;
}

.estate_tag_line h4 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #67132F;
    padding: 0px 10px 30px 10px;
    background: #FFF8F8;
}

.senior-living-child-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
    max-width: 800px;
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 50px;
}

.senior-living-page .banner_wrapper .banner_content p.hero_tagline,
.senior-living-child-page .banner_wrapper .banner_content p.hero_tagline {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.37px;
  max-width: 300px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.senior-living-page .banner_wrapper .banner_content p.hero_tagline span {
  font-style: italic;
}

.senior-living-page .banner_wrapper .banner_content p:not(.hero_tagline),
.senior-living-child-page .banner_wrapper .banner_content p:not(.hero_tagline) {
  /* font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px; */
  max-width: 330px;
  margin-bottom: 0;
}

.senior-living-child-page .banner_wrapper .banner_content p:not(.hero_tagline) {
  margin-bottom: 0;
}

.senior-living-page .banner_wrapper .container {
  padding: 0px 15px;
}

.senior-living-page .as_banner_wrapper.banner_wrapper .banner_buttons,
.senior-living-child-page .as_banner_wrapper.banner_wrapper .banner_buttons {
  margin-top: 16px;
}

.senior-living-page .banner_wrapper .banner_buttons .main_btn a.white_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px 18px !important;
  margin-bottom: 16px;
}


.senior-living-child-page .banner_wrapper .banner_buttons  {
      position: absolute;
    bottom: 15vh;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 395px!important;
    padding: 0 20px!important;
}




.as_banner_wrapper.banner_wrapper .banner_content p {
  font-weight: 400;
  max-width: 950px;
  margin-bottom: 50px;
}

.work-with-us-page .as_banner_wrapper.banner_wrapper .banner_content p {
  margin-bottom: 30px;
}

.work-with-us-page .white_btn {
  margin-top: 24px !important;
}

/* Senior Living project pages (children of /senior-living/) */
/* .banner_wrapper.as_banner_wrapper.senior_living_project_hero .banner_content p {
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: clip;
  max-width: none;
  width: 100%;
  margin-bottom: 35px;
} */

.as_banner_wrapper.banner_wrapper .banner_buttons .main_btn a {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 10px;
}

.assisted-care-page .as_banner_wrapper.banner_wrapper .banner_buttons .main_btn a:first-child {
  margin-bottom: 12px;
}

.about-page .as_banner_wrapper.banner_wrapper .banner_buttons {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

.senior-living-child-page .ur_solution_slider .slick-slide {
    margin-left: 4px;
    margin-right: 4px;
}

.as_banner_wrapper.banner_wrapper .banner_buttons {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
      padding: 0 0px;
}



.as_banner_wrapper .banner_content {
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  height: 320px;
  flex-direction: column;
  display: flex;
  justify-content: space-between
}

.assisted-care-page .as_banner_wrapper .banner_content {
  height: 100%;
}

.assisted-care-page .as_banner_wrapper.banner_wrapper .banner_content p {
  margin-bottom: 161px;
  max-width: 260px;
}

.assisted-care-page .as_banner_wrapper.banner_wrapper .container {
  position: absolute;
  bottom: 14vh;
}


.banner_buttons .main_btn a {
  display: block;
  max-width: 340px;
  margin: 0 auto;
  margin-top: 10px;
}


.white_btn {
  background: #ffffff21 !important;
  border: 2px solid #fff;
  padding: 12px 45px !important;
}

.white_btn:hover {
    background: #ffffff52 !important;
}

.acs-title {
  text-align: center;
  margin-bottom: 40px;
}

.acs-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.acs-title p {
  font-size: 16px;
  color: #667085;
}


/* GRID */
.acs-care-section {
  padding-left:5px;
  padding-right:5px;
}

.acs-care-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acs-care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  justify-items: center;
}


/* CARD */

.acs-care-card {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 192px;
  cursor: pointer;
}

.acs-care-card:hover::after  {
  background: linear-gradient(to top, rgb(0 0 0 / 75%), rgb(0 0 0 / 27%));
}

.acs-care-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* DARK OVERLAY */

.acs-care-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}


/* TEXT CONTENT */

.acs-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* color: #fff; */
  z-index: 2;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.acs-overlay h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.45px;
}

.acs-overlay h3 a {
  color: #fff;
}

.acs-overlay h3 a i {
  font-size: 32px;
  position: relative;
  top: 6px;
}

.acs-overlay p {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  max-width: 290px;
  margin-bottom: 0;
}

.acs-icon {
  width: 63px;
  height: 63px;
  /* border: 2px solid red; */
  /* background: #FFFFFF33; */
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  /* padding: 17px; */
}

/* .acs-icon img {
  width: 48px;
} */


/* ===========================
COMPREHENSIVE CARE SERVICES
=========================== */



.ccs-heading {
  text-align: center;
  margin-bottom: 50px;
}

.ccs-heading h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}

.ccs-heading p {
  font-size: 16px;
  color: #667085;
}


/* GRID */


.ccs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  margin-bottom: 24px;
}

/* CARD */

.ccs-card {
    background: #fff;
    border-radius: 16px;
    padding: 0px 5px;
    box-shadow: 0px 2px 4px 0px #00000040;
    transition: 0.3s;
    height: 142px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB
}

.what_included .ccs-card {
  padding: 14px 14px;
}


/* .ccs-card:hover{
  transform:translateY(-5px);
} */

.contact-page .banner_wrapper .container {
  max-width: 100%;
  width: 100%;
  background: #0B00006E;
  padding: 71px 10px 108px 10px;
  position: absolute;
  bottom: 0;
}

.contact-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
  max-width: 1010px;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 12px;
  letter-spacing: 0.37px;
  font-weight: 400;
}

.contact-page .as_banner_wrapper.banner_wrapper .banner_content p {
  font-weight: 400;
  max-width: 950px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.contact-page .banner_wrapper .container {
  max-width: 100%;
  width: 100%;
  background: #0B00006E;
  padding: 63px 19px 83px 19px;
  position: absolute;
  bottom: 0;
}

.contact-page .as_banner_wrapper .banner_content {
  height: 100%;
}

.contact-page .banner_wrapper {
  height: 458px;
}

/* ICON */

.ccs-icon {
  width: 56px;
  height: 56px;
  background: #f3e8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
}


.ccs-icon i {
  color: #67132F;
  font-size: 24px;
}


/* TEXT */


.ccs-card p {
    font-size: 18px;
    line-height: 24px;
    color: #101828;
    margin: 0;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.31px;
}

.ccs-card .css-card-content span{
  display: none;
}


/* ==============================
OUR CARE STANDARDS
============================== */


.ocs-section {
  background: #F9FAFB;
  padding: 20px 0;
}

.ocs-heading {
  text-align: center;
  margin-bottom: 40px;
}

.ocs-heading h2 {
  font-size: 34px;
  font-weight: 500;
}


/* GRID */



.ocs-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ITEM */

.ocs-item {
  text-align: center;
  max-width: 90px;
  width: 100%;
}

.sn_living_ocs .ocs-item:nth-child(4) {
  max-width: 110px;
  width: 100%;
}

/* ICON */
.ocs-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eadde2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.ocs-icon img {
  width: 20px;
}

.ocs-icon i {
  font-size: 25px;
  color: #67132F;
}

/* TEXT */

.ocs-item p {
  font-size: 14px;
  color: #364153;
  line-height: 20px;
  margin: 0;
  font-weight: 500;
}

/* ===============================
WHY FAMILIES TRUST US
================================ */

.trust-area {
    background: radial-gradient(50% 50% at 50% 50%, #EFDADA 0%, #FFFFFF 100%);
}

.trust-title {
  text-align: center;
  margin-bottom: 45px;
}

.trust-title h2 {
  font-size: 34px;
  font-weight: 500;
  color: #1f2937;
}

/* GRID */

.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 22px;
      max-width: 350px;
    margin: 0 auto
}

/* BOX */


.trust-box {
  text-align: center;
  flex: 1;
  min-width: 84px;
}

/* ICON BOX */

.trust-icon {
  margin: 0 auto 17px;
}

.trust-icon img {
  width: 48px;
}

/* TEXT */
.trust-box p {
    font-size: 12px;
    color: #4b5563;
    line-height: 15px;
    letter-spacing: 0;
    margin: 0;
    font-weight: 500;
}

/* ===============================
HOW ANTARA WORKS
================================ */


/* HEADER */

.antara-work-head {
  text-align: center;
  margin-bottom: 50px;
}

.antara-work-head h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 6px;
}

.antara-work-head p {
  font-size: 16px;
  color: #6b7280;
}


/* GRID */

.antara-work-grid {
  display: block;
}


/* LEFT IMAGE */

.antara-work-image {
  flex: 1.6;
}

.antara-work-image img {
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    height: 198px;
    object-position: 100% 5%;
}


/* RIGHT STEPS */

.antara-work-steps {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 7px;
  margin-top: 31px;
  justify-content: space-between;
}


/* SINGLE STEP */


.antara-step {
    display: block;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 130px;
}

.antara-step p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    font-weight: 400;
    margin: 0;
    margin-top: 8px;
    color: #101828;
}


/* ICON BOX */

.antara-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #efe7ea;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.antara-icon-box img {
  max-width: 24px;
}


.antara-icon-box i {
  font-size: 18px;
  color: #67132F;
}


/* STEP NUMBER */

.antara-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid #67132F;
  color: #67132F;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


section.antara-work-section.gapping {
    background: #FFF8F8;
}

section.antara-work-section.gapping .main_title p {
    max-width: 300px;
}



/* BUTTON */

.antara-work-btn {
  text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}



.ach-featured-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.ach-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.ach-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.ach-featured-header h2 {
  font-size: 32px;
  font-weight: 500;
}

.ach-view-all {
  text-decoration: none;
  color: #b07a42;
  font-weight: 500;
}

/* GRID */

.ach-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.ach-home-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s;
}

.ach-home-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */

.ach-card-image {
  position: relative;
}

.ach-card-image img {
  width: 100%;
  display: block;
}

.ach-location {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
}

/* CONTENT */

.ach-card-content {
  padding: 22px;
}

.ach-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ach-card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.ach-card-btn {
  text-decoration: none;
  padding: 10px 18px;
  background: #8b6c44;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.help-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #f9f5f7;
  /* very light pinkish – adjust to match your palette */
}

.help-card {
  background: linear-gradient(145deg, #fceff4 0%, #fff8fa 100%);
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 780px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(103, 19, 47, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(103, 19, 47, 0.06);
}

.help-title {
  font-size: 38px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.help-description {
  font-size: 18px;
  line-height: 1.55;
  color: #4b5563;
  margin: 0 0 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.help-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.28s ease;
  letter-spacing: 0.2px;
}

.help-btn-outline {
  color: #67132f;
  border: 2px solid #67132f;
  background: transparent;
}

.help-btn-outline:hover {
  background: #67132f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(103, 19, 47, 0.18);
}

.help-btn-solid {
  background: #67132f;
  color: white;
  border: 2px solid #67132f;
}

.help-btn-solid:hover {
  background: #4f0e23;
  border-color: #4f0e23;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 14, 35, 0.22);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .help-card {
    padding: 48px 28px;
  }

  .help-title {
    font-size: 32px;
  }

  .help-description {
    font-size: 17px;
  }

  .help-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .help-btn {
    padding: 15px 32px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}


/* NEED HELP CHOOSING */

.care-help-section .care-help-container {
  text-align: center;
  padding: 27px 20px;
  border-radius: 20px;
  background: #67132F;
}

.care-help-section .main_title p {
  color: #fff;
}

.care-help-section .main_title h2 {
  color: #fff;
}

.care-help-section .main_btn a {
  color: #67132F;
  background: #fff;
}

.care-help-buttons {
  flex-direction: column;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.care-btn-outline {
  border: 1px solid #7A1230;
  background: #FFFFFF1F !important;
  color: #67132F !important;
}

.tras-btn {
  display: none;
}

.white-btn {
  background: #FFF !important;
  color: #67132F !important;
  border: 1px solid #FFF;
}

a.m_btn_view {
    background: transparent !important;
    color: #FFFFFFCC;
    font-weight: 400;
    margin-bottom: 28px;
    display: block;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

a.m_btn_view span {
  border-bottom: 1px solid #ffffff8c;
}




/* CONTACT US */


.phone-box {
  width: 100%;
  overflow: hidden;
  border-radius: 16.4px;
  margin-bottom: 10px;
}

.phone-box input {
  width: 100%;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 16.4px;
  padding-left: 95px !important;
  outline: none;
  color: #666;
  overflow: hidden;

}

.iti {
  width: 100%;
}

.iti__flag-container {
  left: 15px;
}

.iti--allow-dropdown input {
  padding-left: 100px !important;
}





.form_banner_bg {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-top: 20px;
  position: relative;
}


.form_banner_bg .main_btn a {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.form_banner_bg .main_btn .white_btn {
  border: 1px solid #67132F;
  color: #67132F !important;
    margin-bottom: 0px;
}

.form_banner_bg .main_btn .white_btn:hover {
  background-color: #f5f1f1 !important;
}

.form_banner_bg h4 {
  color: #47001B;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.4px;
  text-align: center;
  margin-bottom: 18px;

}



.cntact_detil_box {
    display: flex;
    gap: 16px;
        justify-content: left;
}

.cntact_detil_box img  {
    max-width: 48px;
    height: 48px;
    width: 100%;
}

.cntact_detil_box h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #0A0A0A;
    letter-spacing: -0.45px;
    margin-bottom: 4px;
}


.cntact_detil_grid {
   display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin: 0 auto;
    margin-bottom: 4px;
    margin-top: 24px;
    justify-content: center;
    max-width: 260px;
    width: 100%;
}

.assisted-care-page .cx-contact-wrapper .main_title {
    margin: 0 auto;
    margin-bottom: 0;
}

.cntact_detil_box  a {
    text-decoration: none;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #4A5565;
}
.cntact_detil_box  p {
    color: #6A7282;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin-bottom: 0;
}

.banner_form_wrapper form textarea {
  width: 100%;
  border: 0.64px solid #D1D5DC;
  padding: 14px 17px;
  border-radius: 16.4px;
  height: 120px;
  background-color: #fff;

}


.banner_form_wrapper form input::placeholder,
.banner_form_wrapper form textarea::placeholder,
.banner_form_wrapper form select option:first-child {
  color: #0A0A0A80;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.31px;

}

.form_banner_text_desk_view {
  display: none;
}

.care-homes-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
    max-width: 300px;
    margin-bottom: 16px;
}

.care-homes-page .as_banner_wrapper.banner_wrapper .banner_content p {
    font-weight: 400;
    max-width: 950px;
    margin-bottom: 161px;
}

.care-homes-page .as_banner_wrapper .banner_content {
    height: 100%;
}

.care-homes-page .as_banner_wrapper .container{
    position: absolute;
    bottom: 14vh;
}


.senior-living-page .cx-contact-wrapper {
    background: #fff;
}



.cx-contact-wrapper .container {
  padding: 0px 12px;
}

.cx-contact-wrapper .main_title {
  margin: 0 auto;
  margin-bottom: 24px;
  max-width: 290px;
  width: 100%;
}

/* .main_title h2 {
  color: #0A0A0A;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
} */

.contact_inner_box {
  max-width: 800px;
  margin: 0 auto;
}


.contact_inner_box .fields-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0 18px;
}

.cx-contact-avatar {
  width: 60px;
  height: 60px;
  background: #2d86d8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto -30px auto;
  border: 4px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.cx-contact-card {
  background: #fff;
  padding: 21px 31px 27px 31px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0px 10px 15px -3px #0000001A;
}

.desk_view_btn {
  display: none;
}

.m_view_btn .cx-submit-btn {
  max-width: 85%;
}

.cx-submit-btn:hover {
background-color: #561027;
}

.cx-form-title {
    text-align: start;
    margin: 0 auto;
    margin-bottom: 8px;
    font-weight: 400;
    color: #0A0A0A;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.4px;
    text-align: center;
    max-width: 300px;
}

p.cx-form-subtitle {
    color: #4A5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    margin-bottom: 20px;
}

.contact_inner_box label {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: #000000a3;
  margin-top: 0;
  margin-bottom: 2px;
}

.contact_inner_box .form-group {
  margin-bottom: 18px;
}

.form-check .cx-label {
  font-size: 10px ! Important;
  line-height: 24px ! Important;
  letter-spacing: -0.31px ! Important;
  color: #444;
  margin-top: 10px;
  display: block;
  margin-left: 10px;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.1em;
  width: 19px;
  height: 19px;
  padding: 0;
}

.contact_inner_box .form-control {
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #ddd;
  margin-top: 0px
}

.contact_inner_box .form-control input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 12px 16px;
  width: 100%;
  border-radius: 16.4px;
  border: 0.636px solid #D1D5DC;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 12px 16px;
  width: 100%;
  border-radius: 16.4px;
  border: 0.636px solid #D1D5DC;
}

.iti__selected-flag {
  padding: 0 7px 0 8px;
}

.contact_inner_box input::placeholder {
  color: #0A0A0A80;
}

.iti__flag-container {
  padding: 0 !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #F7F7F7;
  border-radius: 10px 0px 0px 10px;
}

.contact_inner_box select {
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  background: url(../images/select-arrow.png) no-repeat right white;
  background-position: 95% 21px;
  background-size: 13px;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

}

label.form-check-label {
  font-size: 10px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #000;
}

.contact_inner_box textarea {
  height: 112px;
      border-radius: 16.4px;
}

.contact_inner_box .cx-input:focus {
  outline: none;
  border: 1px solid #ddd;
}

.cx-flag {
  background: #f8f8f8;
  padding: 12px;
  font-size: 14px;
}

.cx-textarea {
  width: 100%;
  height: 90px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 6px;
}

.cx-submit-btn {
  display: block;
  margin: 17px auto 0 auto;
  padding: 16px 50px;
  border: none;
  width: 100%;
  font-weight: 400;
  border-radius: 40px;
  letter-spacing: -0.31px;
  background: #67132F;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}


.cx-contact-bottom {
  display: flex;
  gap: 16px;
  margin-top:0px;
}

.cx-contact-box {
  flex: 1;
  background: #fff;
  padding: 24px 15px;
  border-radius: 16px;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.cx-icon {
  font-size: 20px;
  margin-bottom: 5px;
}

.senior-living-child-page .laa-section {
  background: #fff;
  overflow: hidden;
}

.senior-living-child-page .laa-section .main_title {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 304px;
  width: 100%;
}

/* .senior-living-child-page .laa-section .slick-dots {
  bottom: -55px !important;
  left: 0;
} */

.senior-living-child-page .ccm-section.care-continuum-block .main_title h2 {
    color: #101828;
}

.senior-living-child-page .ccm-section.care-continuum-block .main_title p {
    color: #4A5565;
}


.laa-section .tran_btn a {
  display: flex;
  border: 1px solid #E1D0D0;
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  height: 42px;
  border-radius: 21px;
  width: 152px;
  margin-left: auto;
  align-items: center;
  margin-top: 17px;
  justify-content: center;
}

.cx-icon {
  border-radius: 50%;
  font-size: 22px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  color: #7a1b2b;
  margin: 0 auto;
  margin-bottom: 12px;
}

.cx-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cx-box-title {
  font-weight: 400;
  color: #666;
  line-height: 16px;
  font-size: 12px;
}

.cx-box-text {
  color: #0A0A0A;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-top: 3px;
}

.cx-flag-img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.cx-country-code {
  font-size: 14px;
  color: #333;
}

.cx-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
  background-color: #F7F7F7;
}

.cx-phone-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.cx-phone-field {
  display: flex;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 45px;
}

section.c_blog_slider.news_wrapper {
  overflow: hidden;
}


section.families_speak_slider_wrapper {
    overflow: hidden;
    background: #FFF8F8;
}

section.families_speak_slider_wrapper .slick-dotted.slick-slider {
    margin-bottom: 7px;
}

section.featured_slider_wrapper {
  overflow: hidden;
}

.care-homes-extension-page .featured_slider_wrapper .slick-slide {
    height: 454px !important;
}


.fch-care-swiper {
    visibility: hidden;
}

.fch-care-swiper.swiper-initialized {
    visibility: visible;
}

section.featured_slider_wrapper.our-care-homes-block {
    overflow: visible;
    background: #fff;
    margin-top: 0;
}
.featured_slider_wrapper .trans_btn a {
    line-height: 0;
    display: inline-block;
    height: 50px;
    padding: 4px 24px;
}

.featured_slider_wrapper .trans_btn a i {
    margin-left: 0px;
    font-size: 30px;
    position: relative;
    top: 6px;
}

/* Our Care Homes — Swiper carousel */
.our-care-homes-block .fch-care-swiper-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}



/* .our-care-homes-block .fch-care-card-shell {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 0;
  transform: none !important;
} */

.our-care-homes-block .fch-care-card-shell .fch-care-swiper {

  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}

.our-care-homes-block .fch-care-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.our-care-homes-block .fch-care-swiper--loop .swiper-slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.75) !important;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}

.our-care-homes-block .fch-care-swiper--loop .swiper-slide-prev,
.our-care-homes-block .fch-care-swiper--loop .swiper-slide-next {
  opacity: 0.9;
  pointer-events: auto;
  z-index: 1;
}

/* .our-care-homes-block .fch-care-swiper--loop .swiper-slide-prev {
  transform: translateX(160px) scale(0.88) !important;
}

.our-care-homes-block .fch-care-swiper--loop .swiper-slide-next {
  transform: translateX(-160px) scale(0.88) !important;
} */

.our-care-homes-block .fch-care-swiper--loop .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(0.98) !important;
  z-index: 4;
}



.our-care-homes-block .fch-care-swiper--loop .swiper-slide:not(.swiper-slide-active) .main_btn,
.our-care-homes-block .fch-care-swiper--loop .swiper-slide:not(.swiper-slide-active) .fch-tab-view-all {
  display: none !important;
}

.our-care-homes-block .fch-slide-panel {
  width: 100%;
}

.our-care-homes-block .fch-care-card-shell .fch-tab-view-all {
    margin-top: 12px;
    margin-bottom: 0;
    /* padding: 0 18px 18px; */
    text-align: center;
    border-radius: 0 0 20px 20px;
    background: #fff;
}

.our-care-homes-block .fch-swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  margin: 16px auto 0;
  padding: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.our-care-homes-block .fch-swiper-pagination .swiper-pagination-bullet::before {
  background: #c9cdd3;
}

.our-care-homes-block .fch-swiper-pagination .swiper-pagination-bullet-active::before {
  background: #67132f !important;
}

.our-care-homes-block .fch-care-swiper-wrap--single .fch-swiper-prev,
.our-care-homes-block .fch-care-swiper-wrap--single .fch-swiper-next {
  display: none;
}

.our-care-homes-block .fch-swiper-prev,
.our-care-homes-block .fch-swiper-next {
  border: none;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(103, 19, 47, 0.08);
}

.our-care-homes-block .fch-swiper-prev {
  left: 10px;
}

.our-care-homes-block .fch-swiper-next {
  right: 10px;
}

.our-care-homes-block .fch-swiper-prev img,
.our-care-homes-block .fch-swiper-next img {
  width: 18px;
  height: auto;
}

.our-care-homes-block .fch-swiper-prev::after,
.our-care-homes-block .fch-swiper-next::after {
  display: none;
}

/* Care Homes dynamic sections */
.care-section-kicker {
  color: #67132F;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.care-family-section {
  background: #fff;
}

.care-family-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 48px;
  align-items: center;
}

.care-family-copy h2,
.trusted-families-copy h2 {
  color: #09142B;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 18px;
}

.care-family-description,
.trusted-families-copy p,
.care-home-city-intro {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.care-family-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.care-family-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #eee2e7;
  border-radius: 16px;
  background: #fff8fa;
}

.care-family-feature-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #67132F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.care-family-feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.care-family-feature strong {
  display: block;
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.care-family-feature small {
  display: block;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.care-family-media {
  position: relative;
  min-height: 360px;
}

.care-family-media>img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.14);
}

.care-family-quote {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 300px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.16);
}

.care-family-quote span {
  color: #67132F;
  font-size: 40px;
  line-height: 22px;
}

.care-family-quote p {
  color: #344054;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.care-home-snippet-block .care-home-city-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.clinical-experts-section {
  background: #f8fafc;
}

.clinical-experts-grid,
.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.clinical-expert-card,
.google-review-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.clinical-expert-image {
  aspect-ratio: 4 / 3;
  background: #f1f4f7;
}

.clinical-expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinical-expert-content {
  padding: 20px;
}

.clinical-expert-content h3,
.google-review-card h3 {
  color: #09142B;
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 6px;
  font-weight: 600;
}

.clinical-expert-role {
  color: #67132F;
  font-weight: 600;
  margin-bottom: 3px;
}

.clinical-expert-speciality,
.clinical-expert-content p,
.google-review-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.clinical-expert-content span {
  display: inline-flex;
  color: #0f766e;
  background: #e6fffb;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  margin: 8px 0 10px;
}

.clinical-expert-link,
.google-review-link {
  color: #67132F;
  font-weight: 600;
  font-size: 14px;
}

.clinical-experts-cta,
.google-reviews-cta {
  margin-top: 34px;
  text-align: center;
}

.care-vs-hospital-section {
  background: #FFFBFC;
  padding: 70px 0;
}

.care-vs-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.care-vs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 760px;
}

.care-vs-table th {
  background: #67132F;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 20px;
}

.care-vs-table th:first-child {
  width: 28%;
}

.care-vs-table td {
  color: #344054;
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 20px;
  border-bottom: 1px solid #eef0f3;
  vertical-align: top;
}

.care-vs-table td:first-child {
  color: #101828;
  font-weight: 600;
}

.care-vs-table tbody tr:nth-child(even) td {
  background: #fbf7f8;
}

.trusted-families-section {
  background: #f7f2f1;
}

.trusted-families-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.trusted-families-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trusted-family-stat {
  min-height: 172px;
  padding: 24px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.trusted-family-stat strong {
  display: block;
  color: #67132F;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 10px;
}

.trusted-family-stat span {
  display: block;
  color: #101828;
  font-weight: 600;
  margin-bottom: 8px;
}

.trusted-family-stat p {
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.google-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.google-reviews-head .main_title {
  text-align: left;
  margin-bottom: 0;
}

.google-rating-summary {
  min-width: 190px;
  padding: 18px;
  border-radius: 18px;
  background: #fff8e6;
  border: 1px solid #ffe2a8;
  text-align: center;
}

.google-rating-summary strong {
  display: block;
  color: #101828;
  font-size: 36px;
  line-height: 1;
}

.google-rating-summary small {
  display: block;
  color: #667085;
  margin-top: 4px;
}

.google-stars {
  color: #f5a623;
  letter-spacing: 0;
}

.google-review-card {
  padding: 22px;
}

.google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.google-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #67132F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 600;
}

.google-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-review-card h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.google-review-card .google-review-top p {
  margin: 0;
  font-size: 12px;
}

.google-stars-row {
  color: #d0d5dd;
  margin-bottom: 12px;
}

.google-stars-row .is-filled {
  color: #f5a623;
}

.google-review-text {
  min-height: 92px;
}

@media (max-width: 991px) {

  .care-family-grid,
  .trusted-families-panel {
    grid-template-columns: 1fr;
  }

  .care-family-media {
    min-height: auto;
  }

  .care-family-quote {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .clinical-experts-grid,
  .google-review-grid,
  .trusted-families-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .care-family-copy h2,
  .trusted-families-copy h2 {
    font-size: 30px;
  }


  .trusted-families-section .main_title {
    text-align: center;
    max-width: 355px;
    width: 100%;
    margin: 0 auto;
  }

  .care-family-features,
  .clinical-experts-grid,
  .google-review-grid,
  .trusted-families-stats {
    grid-template-columns: 1fr;
  }

  .care-family-media>img {
    height: 360px;
  }

  .care-vs-table {
    min-width: 0;
  }

  .care-vs-table thead {
    display: none;
  }

  .care-vs-table,
  .care-vs-table tbody,
  .care-vs-table tr,
  .care-vs-table td {
    display: block;
    width: 100%;
  }

  .care-vs-table tr {
    border-bottom: 1px solid #e6e8ec;
  }

  .care-vs-table td {
    border-bottom: 0;
    padding: 14px 18px;
  }

  .care-vs-table td::before {
    content: attr(data-label);
    display: block;
    color: #67132F;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
  }
}


/* Senior Living Page CSS */

/*Antar Section start*/
/* .sl-antar-section {
  padding: 40px 0;
  background: #f7f2f1;
} */

.sl-antar-section .main_title h2 {
  max-width: 330px;
  margin: 0 auto;
  margin-bottom: 8px;
  /* font-size: 32px; */
}

.sl-antar-heading {
  text-align: center;
  margin-bottom: 24px;
}

.sl-antar-heading h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #09142B;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 0;
}

.sl-antar-heading h2 span {
  font-style: italic;
  font-weight: 500;
}

.sl-antar-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.sl-antar-card {
  background: #FFF8F8;
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-items: center;
}

.sl-antar-icon {
  width: 67px;
  height: 89px;
  min-width: 67px;
  border-radius: 62px;
  background: #F5EBEB;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .sl-antar-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
} */

.sl-antar-content h4 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #543800;
  margin-bottom: 6px;
}

.sl-antar-content p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  font-weight: 400;
  color: #4F4539;
  margin-bottom: 0;
}

/*Antar Section end*/

.slc-section {
    background: #FFF8F8;
    padding-bottom: 0;
}


.slc-section .main_title {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.slc-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.slc-card {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.slc-card img {
  width: 100%;
  height: clamp(220px, 25vw, 500px);
  object-fit: cover;
}

.slc-badge.new {
  background: #d8f3ec;
  color: #1f8a70;
}

.slc-content {
  position: absolute;
  padding: 24px 24px 32px 24px;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 2;
}

.slc-location {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-bottom: 0px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
}

.slc-content h3 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  margin: 8px 0;
  color: #fff;
}

.slc-content p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
  color: #fff;
}

.slc-btn {
  display: block;
  width: 100%;
  padding: 7px 25px;
  border: 0.71px solid #FFFFFF;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.15px;
  transition: 0.3s;
  text-align: center;
  background: #FFFFFF1A;
}

.slc-btn:hover {
   background: #ffffff52;
}

.slc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.slc-card:hover::after {
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 33%));
}

.slc-badge.sold {
  background: #f8d7da;
  color: #a94442;
}



.slc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 16px;
  z-index: 3;
  font-weight: 400;
}

.sn_living_ocs .ocs-icon {
  border-radius: 26%;
}

.sn_living_ocs .ocs-item {
  max-width: 87px;
  width: 100%;
}


.ccm-section {
  text-align: center;
  overflow-x: hidden;
  overflow-y: visible;
}

.ccm-section .main_title {
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 20px;
}



.senior-living-child-page .ccm-section .ccm-slider .ccm-card .ccm-card-content {
    pointer-events: none;
    height: 245px;
}

.ccm-section.ccm-section-bg .main_title {
    max-width: 340px;
}
.ccm-section.ccm-section-bg .tab-content {
    margin-top: 0px;
}

.ccm-section .n_read_more {
  margin-top: 55px;
}



.ccm-section.cms .ccm-card-wrapper img.cms_m_img {
    height: 336px;
}
.ccm-section.cms .ccm-card-wrapper {
    height: 336px;
}

.ccm-section .slick-dots li button:before {
  background: #D1D5DC;
}

.assisted-care-page .ccm-section {
       background: #FFF8F8;
    margin-top: 0 !important;
}

.ccm-section.work_cilture .slick-dots li button:before {
  background: #ffff;
}

.ccm-section .slick-dots li.slick-active button:before {
  background: #800020;
}

.ccm-section ul#pills-tab {
  margin-bottom: 50px;
}


.ccm-tab-slider ul.slick-dots {
  bottom: -50px;
  right: 0;
  left: 0;
  text-align: center;
}



.ccm-tab-slider .slick-dots li button:before {
  height: 4px;
}

.ccm-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #364153;
  background-color: #F3F4F6;
  border-radius: 13px !important;
  padding: 8px 16px;
  max-width: fit-content;
  width: auto;
  justify-content: center;
  border-radius: 10px !important;
}

.ccm-tabs img {
  max-width: 16px;
  max-height: 16px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.ccm-tabs-btn .ccm-tabs.active {
  background-color: #67132F;
  color: #fff;
  padding: 8px 16px;
}

.ccm-tabs.active .ccm-tabs-non-active-img {
  display: none;
}

.ccm-tabs.active .ccm-tabs-active-img {
  display: block;
}

.ccm-tabs-active-img {
  display: none;
}

.ccm-section .tab-content h4 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.45px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0A0A0A;
  text-align: left;
}

/* Only the tab intro copy — not card overlays (.ccm-card-content p lives inside .tab-pane too) */
.ccm-section .tab-content>.tab-pane>p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #4A5565;
  margin-bottom: 23px;
  text-align: left;
  font-weight: 400;
}

.ccm-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.ccm-card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 14px;
}

.ccm-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.care-continuum-block .ccm-card .ccm-card-content {
  pointer-events: none;
}

.ccm-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background-color: #0000008C;
  padding: 12px 15px 20px 18px;
  border-radius: 12px;
  color: #fff;
}

.ccm-card-content h4 {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  text-align: left;
  margin-bottom: 0;
  font-weight: 500;
}

.ccm-card-content p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
}

.ccm-tabs-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 8px;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.ccm-tabs-container:active {
  cursor: grabbing;
}

.ccm-tabs-container::-webkit-scrollbar {
  display: none;
}

.ccm-tabs-btn {
  flex: 0 0 auto;
}

.tabs-dots {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  gap: 6px;
  margin-right: 20px;
}



.tabs-dots .dot {
  width: 10px;
  height: 1px;
  background: #D1D5DC;
  display: block;
  transition: 0.3s;
  border: 0;
  padding: 0;
}

.ccm-section .tab-content {
  margin-top: 24px;
}

.assisted-living-page .who-is-care-home-section.ccm-section .tab-content {
  margin-top: 24px;
}


.tabs-dots .dot.active {
  background: #67132F;
  width: 35px;
}



.ccm-card-content p span {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  flex: 1;
  min-width: 0;
  width: auto;
}


.ccm-card-content p img {
  max-width: 24px;
  width: 100%;
  height: 24px;
  flex-shrink: 0;
  /* Colored CMS icons read as dark on the bar — render as white without re-uploading assets */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  object-fit: contain;
}

/* Caption sits under tab panes + global `p` / Bootstrap body color — lock contrast so CMS + front match */
.ccm-section .ccm-card .ccm-card-content,
.ccm-section .ccm-card .ccm-card-content.ccm-card-caption,
.ccm-section .ccm-card .ccm-card-content p,
.ccm-section .ccm-card .ccm-card-content p span,
.ccm-section .ccm-card .ccm-card-content .ccm-card-caption__text,
.ccm-section .ccm-card .ccm-card-content .ccm-card-caption__label,
.ccm-section .ccm-card .ccm-card-content a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.ccm-section .ccm-card .ccm-card-content p img {
  filter: brightness(0) invert(1) !important;
}

.ccm-section .ccm-card .ccm-card-content h4 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.care-continuum-block .ccm-slider .ccm-card-caption__label {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 24px !important;
  line-height: 30px !important;
  letter-spacing: -0.31px;
  flex: 1 1 120px;
  min-width: 0;
  word-break: break-word;
  font-weight: 600;
}

.care-continuum-block .ccm-slider .ccm-card-caption__text {
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  padding: 0 !important;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.laa-section {
  background: transparent;
  overflow: hidden;
}

/* Carousel pagination: Slick only injects dots when slideCount > slidesToShow (see main.js clubCap).
   Dots sit in normal flow so they are not clipped by .ccm-section overflow. */


section.care-continuum-block.ccm-section .tab-content h4,
section.care-continuum-block.ccm-section .tab-content p {
  padding-left: 25px;
  padding-right: 25px;
}

.rs_box {
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 999px;
  width: 100%;
  margin: 0 auto;
}

.contact-page .customer_care {
    text-align: center;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFF8F8 100%);
}

.rs_box p {
  color: #364153;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 400;
  margin-bottom: 0;
}

.rs_box p i {
  color: #67132F;
  margin-right: 10px;
}

.senior-living-child-page section.care-continuum-block.ccm-section .ccm-slider .ccm-card img {
    width: 100%;
    height: 454px;
    object-fit: cover;
}

.senior-living-child-page section.care-continuum-block.ccm-section .ccm-slider .ccm-card-content p img {
    max-width: 24px!important;
    width: 100%;
    height: 24px!important;
}

/* section.care-continuum-block.ccm-section .ccm-slider {
  margin-left: 26px;
} */

section.care-continuum-block.ccm-section .ccm-tabs-container {
  margin-left: 25px;
}

section.care-continuum-block.ccm-section .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}

@supports (overflow-x: clip) {
  section.care-continuum-block.ccm-section {
    overflow-x: clip;
    overflow-y: visible;
  }
}

/* .care-continuum-block .tab-pane > .ccm-slider {
  margin-left: 10px;
  margin-bottom: 12px;
}

.care-continuum-block .tab-pane > .ccm-slider.slick-slider {
  position: relative;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots {
  position: relative !important;
  bottom: -12px!important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  margin: 8px auto 0 !important;
  padding: 0 12px;
  transform: none !important;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li button:before {
  content: "" !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #c9cdd3 !important;
  color: transparent !important;
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li.slick-active {
  width: 36px !important;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li.slick-active button {
  width: 36px !important;
  height: 10px !important;
}

.care-continuum-block .tab-pane > .ccm-slider .slick-dots li.slick-active button:before {
  width: 32px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #67132f !important;
} */

/* Antara Amenities (antara-senior-care senior-living-new-project amenities_wrapper) */
.amenities_box {
  background: #FFF9F9;
  border-radius: 29px;
  padding: 8px 16px 44px 20px;
  /* max-height: 550px; */
  /* height: 100%; */
  transition: all 0.3s ease;
  overflow: hidden;
      height: 510px;
}

.amenities_icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: #FCF4F7;
    padding: 15px;
}

.amenities_icon img {
  width: 72px;
  height: auto;
}

.amenities_box h4 {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.07px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}

.amenities_list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities_list li {
  font-size: 18px;
  color: #000000;
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 24px;
  letter-spacing: 0.07px;
  font-weight: 500;
}

.amenities_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  top: 0;
}

/* Pagination bullets on light section background */
.amenities_wrapper .swiper-pagination-bullet::before {
  background: #eaecf0;
}

.amenities_wrapper .swiper-pagination-bullet-active::before {
  background: #67132f !important;
}

/* Comprehensive Benefit (antara-senior-care benefit_section) */
.benefit_section .benefit_content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

.benefit_section .benefit_content h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #101828;
  margin: 0 0 16px;
  line-height: 1.25;
}

.benefit_section .benefit_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
  margin: 0;
}


.laa-section .ur_solution_box_img img {
  border-radius: 12px;
  height: 575px;
  object-fit: cover;
  width: 100%;
}

.laa-section .ur_solution_box_content h4 a {
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.31px;
}

.senior-living-child-page .laa-section .ur_solution_box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0000008C;
  border-radius: 12px;
  padding: 4px 15px 20px 14px;
}

.senior-living-child-page .laa-section .ur_solution_slider .ur_solution_box_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0000008C;
    border-radius: 12px;
  padding: 25px 18px 25px 18px;
    height: 230px;
}


.assisted-care-page .ccm-section.cms .ccm-card-detail {
    height: 120px;
}

.ccm-card-para i {
  display: contents;
}


.laa-section .ur_solution_box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0000008C;
  border-radius: 12px;
  padding: 25px 18px 38px 18px;
}

.senior-living-page .laa-section .ur_solution_box_content {
    height: 225px;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    display: none !important;
}

.laa-section .ur_solution_box_content h4 {
    margin-bottom: 0px;
    margin-top: 0;
    line-height: 24px;
}

.laa-section .ur_solution_box_content p {
    font-weight: 400;
    margin-top: 4px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.15px;
}

/* .laa-section .main_title h2 {
  line-height: 32px;
  margin-bottom: 12px;
} */

.laa-section .main_title p {
  line-height: -0.44px;
}

/* .laa-section .slick-dots {
  bottom: -40px !important;
  left: 0;
} */

.ur_solution_wrapper.bg_tw {
    overflow: hidden;
}
.ur_solution_wrapper.bg_tw .main_title p {
  margin-bottom: 0;
}

.senior-living-page .news_wrapper {
  background: transparent;
}




.laa_box {
  max-width: 390px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.laa_slider .slick-slide {
  margin-left: 4px;
  margin-right: 4px;
}

.ur_solution_wrapper.bg_tw .ur_solution_wrapper .gapp {
  cursor: grab;
  padding-left: 24px;
}

.ur_solution_wrapper.bg_tw .tab-content {
  margin-top: 10px;
}

.laa_box_content h4 a {
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.44px;
}

.laa_box_content p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
  letter-spacing: -0.15px;
}


.laa_box_img img {
  border-radius: 10px;
  height: 353px;
  width: 100%;
  object-fit: cover;
}


.laa_box_img span.laa_box_icon {
  position: absolute;
  left: 20px;
  top: 20px;
  background: #ffffff6b;
  border-radius: 50%;
  display: flex;
  width: 45px;
  padding: 9px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.bg_change {
  background-color: #EEE8E8;
}

.laa_box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #00000073;
  padding: 16px 20px;
}

/* .c_blog_slider.news_wrapper .n_read_more {
  margin-bottom: 30px;
} */


.gapp {
  padding-left: 15px;
}

.gapp.nav-pills .nav-link {
  border-radius: 10px;
  color: #364153;
  background: #F3F4F6;
  border: 1px solid #cccccc5c;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 10px;
  letter-spacing: -0.15px;
  font-weight: 500;
}

/* .faq_wrapper {
    background: #F9FAFB;
    padding: 40px 0;
} */

.faq_wrapper .main_title h2 {
  max-width: 280px;
  margin: 0 auto;
  font-weight: 500;
}

.faq_wrapper .container {
  padding: 0px 20px;
}

p.tab_para {
    font-size: 14px;
    font-weight: 400;
    color: #4A5565;
    line-height: 20px;
    padding-left: 15px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.faq_wrapper .accordion-item button {
    color: #101828;
    font-size: 18px;
    letter-spacing: -0.44px;
    line-height: 24px;
   box-shadow: none;
    border: 0;
    border-radius: 24px !important;
    padding: 21px 70px 21px 24px;
    font-weight: 600;
    background-color: #fff;
}

.faq_wrapper .accordion-item button:hover {
    background-color: #f9f9f9;
}

.faq_wrapper .accordion-item {
    margin-bottom: 16px;
    border-radius: 24px !important;
    /* border: 0; */
    border: 0.71px solid #E5E7EB !important;
}


.care-homes-page footer {
    margin-top: 0px;
}

footer .container {
  padding: 0 19px;
}

.faq_wrapper .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.faq_wrapper .accordion-button {
  position: relative;
}


.faq_wrapper .accordion-button::after {
  transition: all 0.3s ease;
}

/* When active (open) */
.faq_wrapper .accordion-button::after {
  content: "\f107";
  /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none !important;
  transform: none !important;
  color: #67132F;
  font-size: 20px;
  position: absolute;
  right: 24px;
}

.faq_wrapper .accordion-button:not(.collapsed)::after {
  content: "\f106";
  /* fa-chevron-up */
  color: #67132F;
}

.accordion-body {
  color: #4A5565;
  font-size: 16px;
  font-weight: 400;
  padding-top: 0;
}

.accordion-body p {
    color: #4A5565;
    font-size: 16px;
    font-weight: 400;
}

.accordion-body ul li {
    position: relative;
    padding-left: 15px;
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #101828;
    font-size: 14px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  border-radius: 20px 20px 0 0 !important;

}

.accordion-collapse {
  border-radius: 0 0 20px 20px;
}

.n_read_more2 a.len_mr {
  color: #009966;
  font-weight: 500;
  border-bottom: 0;
  font-size: 16px;
}

.m_view.slv .main_title h2 {
  font-weight: 500;
  font-size: 24px;
  font-style: normal;
}

.m_view.slv .main_title p {
  font-size: 16px;
}

.tab-pane {
  display: block;
  height: 0;
  overflow: hidden;
}

.tab-pane.active {
  height: auto;
}


/* Work With Us CSS */

section.explore_opportunities {
  background:#FFF8F8;
}

.explore_opportunities .main_title {
  max-width: 380px;
  margin: 0 auto;
  margin-bottom: 20px;
}

section.we_care.gapping {
  overflow: hidden;
}

section.we_care .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.work-with-us-page .home_about_wrapper.gapping {
  overflow: hidden;
}

.explore_box i {
  background: #F5E8ED;
  padding: 10px 10px;
  border-radius: 10px;
  color: #67132F;
  font-size: 27px;
}

.explore_box {
  text-align: center;
}

.explore_box img {
  max-width: 64px;
  width: 100%;
  background: #F5E8ED;
  padding: 7px;
  border-radius: 16px;
}

.explore_box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: #0F172B;
  margin-top: 8px;
  margin-bottom: 0;
}

.explore_boxes {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 28px 40px;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}


/* work colture */

section.work_cilture {
  background: linear-gradient(180deg, #FFFFFF 0%, #D7C4CB 100%);
  overflow: hidden;
}

.work_cilture .main_title {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 300px;
  width: 100%;
}


.work_cilture .slick-slide {
  margin-left: 4px;
  margin-right: 4px;
}
.work_cilture .ccm-card-content {
  padding: 23px 15px 23px 18px;
}

.work_cilture .slick-dots li button:before {
  background: #fff;
}

.work_cilture .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  width: 32px !important;
  background: #67132F;
  transition: width 0.4s ease, background 0.4s ease;
}

.work_cilture .ccm-card {
  border-radius: 12px;
}

section.our_success_story {
  overflow: hidden;
}

.our_success_story .our_story {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 14px;
}


.our_success_story .main_title {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* success story */
.our_story img {
  width: 100%;
  border-radius: 14px 14px 0 0;
}

.our_story_box {
  padding: 26px 32px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
}

.our_story_box .our_text_story h4 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  font-weight: 500;
  color: #0F172B;
  margin-bottom: 4px;
}

.our_story_box .our_text_story p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.31px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #6F5C62;
}


.our_success_story  .slick-slide {
    margin-left: 0;
    margin-right: 0;
}

.our_success_story .slick-slider .slick-list {
    margin: 0 20px 0 20px;
}

.our_box {
  background: #F5E8ED;
  padding: 8px 13px;
  border-radius: 10px;
  margin-bottom: 23px;
  font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.our_box span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
  font-weight: 400;
  color: #67132F !important;
}

.our_story_box p {
  font-size: 16px;
  font-weight: 400;
  color: #45556C;
  line-height: 24px;
  letter-spacing: -0.31px;
  margin-bottom: 24px;
}


.our_story_box button {
  border: 0.64px solid #67132F;
  width: 100%;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  background: transparent;
  height: 36px;
}

.our_story_box button:hover {
  background-color: #f5f3f3;
}

.our_story_box button p {
  font-size: 14px !important;
  font-weight: 500;
  margin: 0;
  color: #67132F !important;
}

.our_story_box button i {
  font-size: 30px;
  color: #67132F;
}

/* we care */
.we_care_box {
  background: #ffffff;
  box-shadow: 6px 10px 15px -3px #0000001A;
  border-radius: 14px;
  padding: 22px 25px 40px 25px;
  height: 333px;
  margin-bottom: 35px;
}

.we_care .main_title {
  max-width: 330px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.we_care .slick-slider .slick-list {
    margin: 0 20px 0 20px;
}

.we_care .main_title h2 {
  font-size: 32px;
}

.we_care_icon {
  max-width: 56px;
  width: 100%;
  height: 56px;
  background: #F5E8ED;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0px; */
  border-radius: 16px;
}

.we_care_icon img {
  width: 100%;
}


.we_care_icon i {
  font-size: 16px;
  color: #67132F;
}

.we_care_text h4 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  font-weight: 500;
  color: #0F172B;
  margin-bottom: 13px;
  margin-top: 21px;
}

.we_care_text p {
  font-size: 14px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #314158;
  line-height: 20px;
  margin-bottom: 12.45px;
}

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

.we_care_check {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 0px;
}

.we_care_slider .slick-slide {
  margin-left: 4px;
  margin-right: 4px;
}

.we_care_check i {
  font-size: 16px;
  color: #67132F;
}

.we_care .slick-dots {
  bottom: -12px !important;
  left: 0;
}

/* leadership */


section.leadership.gapping {
  overflow: hidden;
}

.leadership .slick-slider .slick-list {
    margin: 0 20px 0 15px;
}

.leadership .main_title {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.leadership .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.leadership .slick-slide {
  margin-left: 4px;
  margin-right: 4px;
}

.leadership .slick-dots {
  bottom: -39px !important;
  left: 0;
}


.flex_row_slider {
  display: flex;
  padding-left: 11px;
  margin-bottom: 0 !important;
}

.video_position {
  position: relative;
}

.video_text {
  padding: 20px 20px 20px 20px;
  background-image: linear-gradient(to top, #000000ed, #00000000);
  position: absolute;
  bottom: 110px;
  width: 100%;
}

.video_text img {
  margin-bottom: 8px;
  max-width: 24px;
  width: 100%;
}

.video_text p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  width: 100%;
  line-height: 22.75px;
  letter-spacing: -0.15px;
}

/* learn grow */
section.learn_grow.gapping {
  overflow: hidden;
}

section.learn_grow .slick-slider .slick-list {
    margin: 0 0px 0 0px;
}

.lern_slider .slick-track {
  display: flex;
}

.learn_grow .main_title {
  max-width: 325px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #FDD6E3 0%, #FFFFFF 100%);
}

.learn_grow .row {
  padding-bottom: 30px;
}


.learn_icon.text-center {
  display: ruby;
  align-items: center;
  justify-content: center;
}

.learn_icon.text-center img {
  background: #F5E8ED;
  height: 80px;
  max-width: 80px;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #67132F;
  margin: 0 auto;
}


.learn_bg h2 {
  width: 100%;
  padding: 0px 0;
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}


.learn_grow_according_wrapper {
  display: flex;
  gap: 16px;
}


.learn_grow .accordion-header h4 {
  font-size: 20px;
  font-weight: 500;
  color: #0F172B;
  line-height: 28px;
  letter-spacing: -0.45px;
  margin-bottom: 4px;
}

.learn_grow_col button {
  align-items: start;
}

.learn_grow .accordion-header p {
  font-size: 14px;
  font-weight: 500;
  color: #45556C;
  line-height: 20px;
}

.learn_grow .accordion-header p {
  font-size: 14px;
  letter-spacing: -0.15px;
  font-weight: 500;
  color: #45556C;
  line-height: 20px;
  margin-bottom: 36px;
}

.learn_grow_col .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  border: none !important;
  box-shadow: inset 0 calc(-0 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.learn_grow_col .accordion-item {
  border: 0;
  background-color: transparent;
}

.learn_grow_col .accordion-item .accordion-button {
  border: 0;
  background-color: transparent;
  padding: 0;
}

.learn_grow_col .accordion-header:focus-visible {
  outline: none;
}

.learn_grow_col .accordion-collapse {
  outline: none;
  margin-bottom: 0px;
}

.learn_grow_col .accordion-button:focus {
  box-shadow: none !important;
}

.learn_grow .flex_row {
  align-items: center;
  overflow-x: inherit;
  /* padding-bottom: 0; */
}


.col_learn {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px 18px 46px 18px;
}

.learn_col {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}



.learn_col h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.44px;
  color: #0F172B;
}

.col_learn p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.15px;
  line-height: 20px;
  color: #45556C;
  margin-bottom: 0;
}


.learn_grow_last_box .we_care_text {
  background-color: #F5E8ED;
  padding: 24px;
  border: 1px solid #67132f57;
  border-radius: 14px;
}

.learn_grow_last_box .we_care_text h4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 500;
  color: #67132F;
  margin-top: 0;
}


.learn_grow_last_box {
  margin: 11px 0 0 0;
  padding: 11px 0 11px 11px;
}

.learn_grow_col .accordion-body {
  padding: 0;
}





.learn_grow_col.left {
  background: linear-gradient(180deg, #FFFFFF 0%, #EBEBEB 100%);
  padding: 11px;
  overflow: hidden;
  margin-bottom: 1px;
}

.flex_row_slider .slick-slide {
  margin-left: 5px;
  margin-right: 5px;
}

.lern_slider .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}


.flex_row_slider .slick-dots li button:before {
  height: 3px !important;
}

.flex_row_slider .slick-dots {
  bottom: -16px !important;
  left: 0;
}

.flex_row_slider .slick-list {
  padding-bottom: 15px;
}



p.learn_col_week {
  background: #F1F5F9;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 20px;
  color: #314158;
  height: 28px;
  width: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn_grow_col {
  height: 100%;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 20px;

}

.learn_grow_col .accordion-item button {
  padding: 13px 7px;
}

.learn_grow_col.right {
  padding: 11px;
  border-radius: 20px;
}

.wy_wrapper {
  background-color:#FFF8F8;
  overflow: hidden;
}

.wy_wrapper .main_title {
  margin-bottom: 20px;
}

.wy_box_content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #0F172B;
  margin-bottom: 24px;
}

.wy_box_content {
  background-color: #fff;
  padding: 22px 15px 44px 15px;
  border-radius: 0 0 24px 24px;
}

.wy_box img {
  border-radius: 24px 24px 0 0;
  height: 256px;
  object-fit: cover;
}

.wy_slider .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}

.wy_box_content p {
  font-size: 14px;
  font-weight: 300;
  color: #45556C;
  letter-spacing: -0.15px;
  line-height: 18px;
  margin-bottom: 12px;
  font-weight: 400;
  position: relative;
  padding-left: 23px;
}

.wy_box_content p:before {
  content: '';
  border: 1.67px solid #67132F;
  width: 12.5px;
  height: 12.5px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0;
}

.ab_wrapper .ab_wrapper_container {
  padding: 32px 19px 25px 19px;
  border-radius: 14px;
  margin: 4px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EEE8E8 100%);
  box-shadow: 0px 10px 15px -3px #0000001A;
}

.ab_wrapper_container .main_title {
  margin-bottom: 34px;
}


.ab_box h4 {
  font-size: 12px;
  line-height: 18px;
  color: #0F172B;
  font-weight: 500;
  letter-spacing: -0.44px;
}

.ab_box img {
  max-width: 35px;
  width: 100%;
  margin-bottom: 10px;
}

.ab_slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 24px 10px;
}

.career_op_wrapper input.form-control {
  padding: 21px;
  border-radius: 34px;
  border-top: 0.8px solid #E5E7EB;
  box-shadow: 0px 10px 15px -3px #0000001A;
}


.career_op_wrapper form button {
  position: absolute;
  right: 20px;
  border: 0;
  top: 14px;
  font-size: 20px;
  color: #67132F;
  max-width: fit-content;
}

.career_op_wrapper form button:hover {
  background-color: transparent;
  color: #67132F;
}

.career_op_wrapper .nav-pills .nav-link {
  background: #F1F5F9;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  font-weight: 500;
  color: #314158;
  border-radius: 32px;
  padding: 12px 25px;
}

.career_op_wrapper .nav-pills {
  margin-top: 20px;
  justify-content: left;
  gap: 12px;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
  padding-bottom: 28px;
}


/* Track */
.career_op_wrapper .nav-pills::-webkit-scrollbar-track {
  background: transparent;
}

.career_op_wrapper .nav-pills::-webkit-scrollbar {
  display: none;
  /* scrollbar hide */
}

/* Handle */
.career_op_wrapper .nav-pills::-webkit-scrollbar-thumb {
  background: transparent;
}

.career_op_slider .slick-dots {
  bottom: -10px !important;
  left: 0;
}

.career_op_slider.slick-slider .slick-list {
    margin: 0 20px 0 10px;
}

.career_op_slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.career_op_wrapper .nav-pills .nav-link.active,
.career_op_wrapper .nav-pills .show>.nav-link {
  color: #fff !important;
  background-color: #67132F !important;
  box-shadow: 0px 10px 15px -3px #0000001A;
}



.career_op_box {
  box-shadow: 0px 10px 15px -3px #0000001A;
  padding: 41px 31px 19px 31px;
  margin-bottom: 30px;
  border-radius: 24px;
}

.career_op_box h4 {
  color: #0F172B;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  align-items: baseline;
  font-weight: 500;
}


.work-with-us-page footer {
  margin-top: 0;
}

.work-with-us-page .rdy_cta_wrapper .rdy_cta_slider {
  margin-top: 48px;
  margin-bottom: 24px;

}

.rdy_cta_slider .slick-dots li.slick-active button:before {
  background: #DB4779;
}

.work-with-us-page .rdy_cta_wrapper .main_btn .white_btn {
  background: transparent ! Important;
  border: 1.91px solid #FFFFFF ! Important;
}

.work-with-us-page .rdy_cta_wrapper .main_btn .white_btn:hover {
  background: #FFFFFF1F ! Important;
}

.career_op_box h4 span {
  background: #ECEEF2;
  color: #030213;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 27px;
  white-space: nowrap;
}

.career_ex span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #45556C;
  font-weight: 400;
}

.career_ex {
  display: flex;
  gap: 24px;
}

.career_para {
  font-size: 16px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #45556C;
  line-height: 24px;
  max-width: 310px;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 24px;
}

.career_key span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  color: #62748E;
}

.career_key ul li {
  color: #67132F;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  background-color: #F5E8ED;
  padding: 4px 12px;
  margin-top: 7px;
  border-radius: 20px;
  max-width: fit-content;
}

.career_key .main_btn {
  margin-top: 37px;
}

.career_key .main_btn a {
  line-height: 20px;
  /* padding: 10px 45px; */
  letter-spacing: -0.15px;
  font-size: 18px;
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdy_cta_wrapper {
    background: linear-gradient(135deg, #67132F 0%, #4A0D22 100%);
    margin-top: 0;
    padding-bottom: 40px;
}

.rdy_cta_wrapper .main_title {
  max-width: 367px;
  width: 100%;
  margin: 0 auto;
}


.rdy_cta_wrapper .main_title h2,
.rdy_cta_wrapper .main_title p {
  color: #fff
}

.rdy_cta_wrapper .main_title h2 {
    margin-bottom: 20px;
}

.rdy_cta_wrapper .main_title p {
  font-size: 20px;
  line-height:28px;
  letter-spacing: -0.45px;
   margin-bottom: 24px;
}


.rdy_cta_wrapper .main_btn {
  display: block;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 332px;
  margin: 0 auto;
}

.rdy_cta_wrapper .white_btn_bg {
  color: #67132F;
  background: #fff;
  text-align: center;
  font-weight: 500;

}

.rdy_cta_wrapper .main_btn a {
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
    font-weight: 500;

}

/* .rdy_cta_wrapper .main_btn a:hover {
  background-color: #f4f2f2;
} */

.rdy_cta_wrapper .main_btn a:hover {
  background-color: #d4bcbc;
}

.rdy_cta_wrapper .main_btn .white_btn {
    background: #FFFFFF1F ! Important;
    border: 1.5px solid #fff;
    padding: 12px 45px !important;
    margin-top: 16px;
      font-weight: 500;
}

.rdy_cta_wrapper .main_btn .white_btn:hover {
  background: #ffffff52 !important;
}

.rdy_cta_wrapper .main_btn a img {
  margin-right: 12px;
  max-width: 20px;
  height: 20px;
}

.rdy_cta_wrapper .main_btn a i {
  font-size: 24px;
  position: relative;
  margin-left: 10px;
}

.rdy_cta_box {
  padding: 30px 22px;
  border-radius: 14px;
  background: #FFFFFF1A;
  border: 0.64px solid #FFFFFF33;
}

.rdy_cta_box h4 {
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  letter-spacing: -0.44px;
  margin-bottom: 0;
}

.rdy_cta_box p {
  font-size: 14px;
  color: #DBEAFE;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-top: 7px;
  margin-bottom: 20px;
}

.rdy_cta_box a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.rdy_cta_box a i {
  font-size: 21px;
  position: relative;
  margin-left: 2px;
  top: 3px;
}


.rdy_cta_wrapper .rdy_cta_slider {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 24px;

}

.cta_b_btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.work-with-us-page .rdy_cta_wrapper {
    background: linear-gradient(180deg, #67132F 0%, #8B1A3F 50%, #A02050 100%);
}

.rdy_cta_slider.slick-slider .slick-list {
    margin: 0 5px 0 0px;
}

.rdy_cta_slider.slick-slider  .slick-slide {
    margin-left: 4px;
    margin-right: 4px;
}

.cta_b_btn a {
  color: #fff !important;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 400;
}

.about-page footer {
  margin-top: 0;
}


/* Care at Home CSS */

.care-at-home-page footer {
  margin-top: 0;
}

.care-at-home-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 73px;
}

.care-at-home-page  .banner_wrapper.as_banner_wrapper .banner_content h1 {
    margin-bottom: 14px;
}

.care-at-home-page  .as_banner_wrapper .banner_content {
    height: 100%;
}

.care-at-home-page  .as_banner_wrapper .container {
    position: absolute;
    /* bottom: 128px; */
    bottom: 14.5vh;
}

.care-at-home-page .cx-contact-wrapper .main_title {
    margin-bottom: 19px;
}

.care-at-home-page .care_at_home_flex {
    margin-top: 30px;
}

.care-at-home-page .care-family-section .care_at_home_img img {
    border-radius: 20px;
}


.banner_btm_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #FFFFFF1A;
    padding: 14px 20px;
    border-radius: 45px;
    max-width: 100%;
    margin: 0 auto;
    /* border: 1px solid #ffffff52; */
    margin-top: 35px;
    border: 0.64px solid #FFFFFF33;
}

.care_at_home_wrapper .nav-pills .nav-link {
   background: #fff;
    border-radius: 16px;
    padding: 0px 5px;
    box-shadow: 0px 2px 4px 0px #00000040;
    transition: 0.3s;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
  color: #314158;
  width: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.care_at_home_wrapper .nav-pills .nav-link:hover {
  background-color: #67132F!important;
  color: #fff;
}

.care_at_home_wrapper .nav-pills .nav-link:hover img {
  filter: brightness(0) invert(1);
}

.care_at_home_wrapper ul#pills-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 12px;
}

section.care_at_home_wrapper.gapping {
    background: #FFF8F8;
}

.care_at_home_wrapper li.nav-item {
  width: 100%;
}



.care_at_home_wrapper .nav-pills .show>.nav-link {
  background-color: #fff !important;
}

.care_at_home_wrapper ul.nav-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0px;
}

.care-at-home-page .cntact_detil_grid ,
.care-homes-page .cntact_detil_grid {
    display: none;
}

.care_at_home_wrapper .nav-pills .nav-link img {
  max-width: 28px;
  width: 100%;
  margin-right: 15px;
  margin: initial;
  margin-bottom: 8px;
}



.care_at_home_flex {
  display: block;
  border: 1px solid #E2E8F0;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  padding-right: 0px;
}

.care_at_home_content h5 {
  color: #0F172B;
  font-size: 18px;
  margin-bottom: 35px;
}

.care_at_home_content {
    padding: 22px 3px 0 3px;
}

.care_at_home_content p {
  display: flex;
  gap: 10px;
}

.care_at_home_content p span {
  color: #45556C;
  font-size: 14px;
  font-weight: 400;
}

.care_at_home_content p i {
  color: #67132F;
}


.care_at_home_img img {
  max-width: 600px;
  width: 100%;
  border-radius: 30px 30px 0px 0px;
}

.care_at_home_content .main_btn a {
  padding: 11px 28px;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-top: 50px;
}


section.featured_slider_wrapper.our-care-homes-block .main_title p {
    max-width: 300px;
}


.families_speak_slider_wrapper .n_read_more.text-center {
  margin-top: 55px;
}

/* Care Home reference sections */
.ccm-section-bg {
  background-color: #ffffff !important;
}

.ccm-section-bg-primary {
  background-color: #FFF8F8 !important;
}

/* .care-family-section {
  background: #F7F1F3;
  padding: 0px 0;
} */

.care-family-section .container {
  padding: 0px 0px;
}

.care-family-section .care_at_home_flex {
  border: 0;
}

.care-family-section .care_at_home_content h5 {
  color: #0F172B;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 35px;
  text-align: center;
}

.care-family-section .care_at_home_content p {
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.44px;
        color: #4A5565;
    font-weight: 400;
        margin-bottom: 12px;
}


.care-family-section .care_at_home_content .main_title h2 {
  max-width: 330px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.care-family-section .care_at_home_content p span {
  color: #4A5565;
  font-size: 16px;
  line-height: 24px;
}

.care-family-section .care_at_home_img img {
  border-radius: 0px;
}

.care-family-inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-services {
  border: none;
  color: #67132F;
  background-color: #67132F10;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-block: 10px;
  font-size: 14px;
  margin-bottom: 8px;
      margin-top: 0;
      max-width: fit-content;
      display: block;
}

.btn_service_ctr {
    text-align: center;
    display: flex;
    justify-content: center;
}



.ccs-section {
    padding:30px 0;
    background-color: #FFF8F8;
}

.ccs-actions {
  display: flex;
  justify-content: center;
  gap: 23px;
      margin-top: 20px;
  align-items: center;
}

.care-homes-page .ccs-grid {
    margin-bottom: 16px;
}

 /* .assisted-care-page .fs_box_content {
    height: 260px;
} */

.ccs-actions .main_btn {
  width: 100%;
  max-width: 230px;
}

.ccs-actions .main_btn a {
  display: block;
  max-width: 227px;
  width: 100%;
  text-align: center;
}

.ccs-filled-btn {
    max-width: 270px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 38px;
    color: #fff;
    font-weight: 400;
    background: #67132F;
    transition: all 0.3s;
    height: 50px;
}


.ccm-card-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 10px;
}

.assisted-care-page .ccm-section.clinical .ccm-card-wrapper {
  height: 390px;
}

.ccm-section.clinical .ccm-card-wrapper span {
    background: #FFEEEE;
    right: 10px !important;
    top: 12px;
    max-width: fit-content;
    left: auto;
    border-radius: 30px;
    height: auto;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    color: #67132F;
}

.ccm-card-wrapper span {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 48px;
  width: 100%;
  height: 48px;
}

.ccm-card-wrapper span img {
  max-width: 48px;
  width: 100%;
  height: 48px;
}


.care-at-home-service-page .s_cta .tras-btn.care-btn-outline {
  display: none;
}


.ccm-card-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0000006B;
  padding: 24px;
  border-radius: 0 0 20px 20px;
  backdrop-filter: blur(2px);
  text-align: left;
}
.ccm-section-bg .ccm-card-detail {
    padding: 23px 15px 15px 15px;
}

.ccm-section.clinical .ccm-card-detail {
    height: 150px;
}

.care-at-home-service-page .ccm_crd .ccm-card-wrapper img {
    width: 100%;
    height: 199px;
    object-fit: cover;
    display: block;
}

.ccm-card-wrapper img {
    width: 100%;
    height: clamp(420px, 25vw, 500px);
    object-fit: cover;
    display: block;
}

.ccm_crd .ccm-card-detail {
    padding: 15px 21px 29px 21px;
    position: relative;
    height: 140px;
}

.care-at-home-service-page .ccm-section.ccm-section-bg .main_title {
    max-width: 340px;
}


.care-at-home-service-page .trust_section_sc .trust-stat-item {
  background-color: #fff;
}

.care-at-home-service-page .ccm-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.ccm_crd .ccm-card-detail p {
    max-width: 100%;
    line-height: 21px;
    font-weight: 400;
}

.title_flex {
    display: flex;
    gap:8px;
    justify-content: center;
}

.care-at-home-service-page .ccm_crd .ccm-card-detail h3 {
    color: #07101C!important;
    text-align: center;
}


.title_flex img {
  max-width: 25px;
  width: 100%;
  height: 21px!important;
  display: none!important;
}

.ccm-card-detail h3 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.44px;
    line-height: 24px;
    color: #FFFFFF !important;
    text-align: start;
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
}

.ccm-card-detail h3 img {
  max-width: 25px;
  width: 100%;
}

.ccm-card-detail p {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #FFFFFF !important;
    margin: 0 !important;
    max-width: 90%;
}

.clinical-expert-link {
  color: #fff;
  display: inline-block;
  font-size: 13px;
  margin-top: 8px;
}



.assisted-care-page  section.c_blog_slider.news_wrapper {
    overflow: hidden;
    background: #fff;
}
.assisted-care-page .news_wrapper .n_read_more {
    margin-bottom: 0px;
}

.assisted-care-page .cx-contact-wrapper {
    padding: 30px 0 30px 0;
    margin-top: 0px;
}



.trust-heading {
  max-width: 343px;
  margin: 0 auto 35px;
  text-align: center;
}

.trust-heading h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.trust-brand {
  margin-bottom: 16px;
}

.trust-heading p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  color: #4A5565;
  max-width: 289px;
  margin: auto;
}

.cex_ecosystem_box {
    text-align: center;
    background-color: #FEFAFB;
    padding: 20px 10px 20px 10px;
    border-radius: 20px;
    max-width: 151px;
    width: 100%;
}

.cex-team-ecosystem {
  background-color: #F7F1F3;
}

.team-member-section .main_title h2 {
    color: #67132F;
    margin-bottom: 0px;
}


.training-slider.slick-slider .slick-list {
    margin: 0;
}

.training-slider.slick-slider .slick-slide {
    margin-left: 5px;
    margin-right: 5px;
}

.team-slider .slick-slide {
    margin-left: 6px;
    margin-right: 6px;
}

.cex_ecosystem_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 325px;
    margin: 0 auto;
}

.cex_ecosystem_box h4 {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #22191B;
}

.cex_ecosystem_box img {
  width: 100%;
  height: 100%;
  max-width: 36px;
}

.cex_ecosystem_box_icon {
  position: relative;
  max-width: 36px;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 12px;
}

/* .cex_ecosystem_box_icon::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 2px;
  background: #FCEAEB;
  max-width: 50px;
  width: 100%;
  height: 50px;
  padding: 7px;
  border-radius: 50%;
  z-index: -1;
} */

.trust_section_sc .trust-stat-item {
    text-align: center;
    margin-bottom: 4px;
    border: 0.7px solid #E5E7EB;
    padding: 16px 10px 17px 10px;
    border-radius: 20px;
}

.trust_section_sc  .trust-stats-grid {
    max-width: 100%;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 24px;
}


.trust-stats-grid {
  max-width: 300px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 40px;
}

.trust-stat-item {
  text-align: center;
  margin-bottom: 4px;
}

.trust-stat-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.trust-stat-top img {
  width: 32px;
}

.trust-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.trust-section .trust-stats-grid .trust-stat-item:nth-child(1) .trust-stat-icon {
  background: #F5EAEE;
}

.trust-section .trust-stats-grid .trust-stat-item:nth-child(2) .trust-stat-icon {
  background: #2563EB15;
}

.trust-section .trust-stats-grid .trust-stat-item:nth-child(3) .trust-stat-icon {
  background: #16A34A15;
}

.trust-section .trust-stats-grid .trust-stat-item:nth-child(4) .trust-stat-icon {
  background: #CA8A0415;
}

.trust-stat-icon img {
  max-width: 100%;
  max-height: 100%;
}

.trust-stat-item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  color: #67132F;
  margin: 0;
}

.care-homes-page .trust-stat-item h3 {
    color: #101828;
}

.trust-stat-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #4A5565;
  margin: 0;
}

.care-at-home-service-page .trust-stat-item h3 {
    color: #101828;
}


.trust-section  .main_title h2 {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 8px;
}


.point p {
    line-height: 24px;
    color: #364153;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}


.point p:after {
    content: '';
    background-color: #101828;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
}

.point {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 90%;
    width: 100%;
    gap: 0px 20px;
    margin: 0 auto;
    margin-top: 25px;
}

.trust-section  .main_title p {
    max-width: 300px;
    margin: 0 auto;
}

.care-at-home-page .cx-contact-wrapper.gapping ,
.care-homes-page .cx-contact-wrapper.gapping {
  padding-top: 20px;
}

.care-at-home-page .cx-form-title,
.care-homes-page .cx-form-title {
    margin-bottom: 20px;
}

.trust-stat-item small {
  color: #667085;
  font-size: 12px;
}

.care-advantage-section {
    background: #FFF8F8;
}

.care-advantage-header {
  text-align: center;
  margin-bottom: 20px;
}

.ccm-section.ccm-section-bg.clinical.gapping .ccs-actions {
    margin-bottom: 10px;
}

.care-difference-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103, 19, 47, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
  justify-content: center;
}
.care-difference-badge img {
  max-width: 14px;
  width: 100%;
}

.care-difference-badge i, .care-difference-badge span {
    color: #67132F;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}

.care-difference-badge span {
  font-weight: 500;
}

.care-advantage-header h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #101828;
    letter-spacing: 0.07px;
    max-width: 300px;
    margin: 0 auto;
     margin-bottom: 8px;
}

.care-advantage-header p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.15px;
    color: #4A5565;
        margin-bottom: 0;
}

.trust_section_sc .container {
    max-width: 1024px;
}

.trust_section_sc .trust-stat-item h3 {
    margin-bottom: 6px;
}

.trust_section_sc .trust-stat-icon {
    margin: 0 auto 6px;
}

.care-comparison-box {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  background: linear-gradient(90deg, #67132F 0%, #8A1A3D 100%);
  padding: 12px 16px;
}

.comparison-feature-title {
      font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.comparison-brand-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.comparison-brand-column i,
.comparison-brand-column span {
  color: #FFFFFF;
}

.comparison-brand-column i {
  font-size: 18px;
}

.comparison-brand-column span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
  font-weight: 600;
}

.comparison-data-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  align-items: center;
  padding: 16px 16px;
  border-bottom: 1px solid #F3F4F6;
}

.comparison-data-row.bg-light {
  background: rgba(249, 250, 251, 0.5) !important;
}

.feature-detail-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-detail-box span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
  color: #101828;
}

.feature-symbol-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-symbol-box i {
  color: #67132F;
  font-size: 16px;
}

.status-indicator {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.status-indicator i {
  font-size: 16px;
  font-weight: 700;
}

.status-indicator.available {
  background: #DCFCE7;
}

.status-indicator.available i {
  color: #00A63E;
}

.status-indicator.unavailable {
  background: #FFE2E2;
}

.status-indicator.unavailable i {
  color: #E7000B;
  font-size: 16px;
}

.comparison-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(to right, #fff, #7f183863, #fff);
  border-top: 1.44px solid #67132F1A
}

.comparison-footer-note i {
  color: #00A63E;
  font-size: 14px;
}

.comparison-footer-note p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #4A5565;
    font-weight: 400;
    letter-spacing: -0.15px;
}

.comparison-footer-note strong {
  color: #67132F;
}

.comparison-footer-note-mx {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

section.google-reviews-section.gapping {
    overflow: hidden;
}

.google_review_card {
    background: #ffffff;
    border: 0.63px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0px 4px 6px -1px #0000001A;
    margin-bottom: 10px;
    height: 220px;
}

.google_review_slider .slick-dots {
    bottom: -27px !important;
    left: 0;
}

.google_review_slider .slick-slide {
    margin-left: 5px;
    margin-right: 5px;
}

.care-at-home-page .c_blog_slider.news_wrapper {
    overflow: hidden;
    padding-bottom: 10px;
    background: #fff;
}


.care-at-home-page .s_cta .main_btn .tras-btn {
  display: none;
}

.s_cta .main_btn {
    max-width: 219px;
    margin: 0 auto;
}

.gr_header_stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 12px;
}

.gr_subtitle {
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 24px;
}

.gr_stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}


.gr_rating_num {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.07px;
    font-weight: 600;
    color: #111827;
}

.gr_rating_text {
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;
    letter-spacing: -0.31px;
    font-weight: 400;
}

.gr_card_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gr_user_section {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}



.gr_user_avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.gr_user_details {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.gr_user_details h6 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    font-weight: 500;
    margin: 0;
    color: #111827;
}

.gr_user_details .gr_stars {
    margin: 4px 0;
}
.gr_stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  font-size: 14px;
}

.gr_time {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.gr_google_logo svg {
  width: 20px;
  height: 20px;
}

.gr_comment {
  margin-top: 12px;
}

.gr_comment p {
    margin: 0;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: -0.15px;
    color: #364153;
    font-weight: 400;
}

.ccs-section.gapping .container {
  max-width: 1250px;
}

@media (min-width: 768px) {
.care-family-section .care_at_home_flex {
        display: flex;
        padding-right: 0;
        margin-top: 44px;
        max-width: 100%;
        gap: 38px;
        padding: 0 40px;
    }

  .care-family-section .care_at_home_img img {
    border-radius: 0px 0 0 0px;
    height: 100%;
    object-fit: cover;
  }

  .care-family-section .care_at_home_content {
    padding: 0;
    max-width: 452px;
    width: 100%;
    margin: 0 auto;
  }

  .care-family-section .care_at_home_content .main_title h2 {
    max-width: 100%;
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }

      .care-family-section .care_at_home_content p {
        text-align: left;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.44px;
    }



  .care_at_home_content-body {
    flex-direction: column;
    align-items: start;
  }

      .expert_care_wrapper .ccs-actions {
        margin-top: 18px;
    }

    .expert_care_box img {
    max-width: 35px;
    width: 100%;
    margin: 0 auto;
}

.care-at-home-page .ccm-section-bg.clinical .ccm-card-detail {
    height: 130px;
}

      .ccs-section.gapping .ccs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 27px 24px;
        margin-bottom: 20px;
        padding: 0 40px;
    }

  .ccs-section {
    padding: 60px 16px;
  }

  .css-card-content {
    text-align: left;
  }

  .ccs-icon {
    max-width: 60px;
    height: 60px;
    width: 100%;
  }

}

  .comparison-header-row,
  .comparison-data-row {
    grid-template-columns:45% 30% 25%;
  }


.cah.care-help-section .container {
  background: linear-gradient(180deg, #67132F 0%, #8A1A3F 100%);
  position: relative;
}

.cah.care-help-section .container:after {
  background: #ffffff29;
  position: absolute;
  content: '';
  top: -49px;
  left: 34%;
  width: 145px;
  height: 145px;
  border-radius: 50%;
}

.cah.care-help-section .container:before {
  background: #ffffff29;
  position: absolute;
  content: '';
  bottom: -60px;
  left: -58px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
}

.cah.care-help-section .main_title h2 {
  color: #fff;
  margin-bottom: 24px;
}

.cah.care-help-section .main_title p {
  color: #fff;
}

.cah.care-help-section .main_btn a {
  color: #67132F;
  background: #fff;
  display: block;
  max-width: 380px;
  width: 100%;
}


section.care-help-section.gapping.cah {
  margin-top: 40px;
}

.expert_care_flex .slick-dots {
  bottom: -10px!important;
  left: 0;
}

.expert_care_wrapper .ccs-actions {
    margin-bottom: 10px;
}

.care-at-home-page .ccm-section-bg.clinical .ccm-card-detail {
    padding: 23px 15px 15px 15px;
    height: 150px;
}

.expert_care_box {
    text-align: center;
    background-color: #F1F5F9;
    padding: 10px 4px;
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
    height: 100px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert_care_box img {
  max-width: 30px;
  width: 100%;
  margin: 0 auto;;
}

.expert_care_flex.slick-slider .slick-list {
    margin: 0 0px 0 0px;
}
.expert_care_wrapper .container {
  padding: 0 20px 0 7px;
}

.expert_care_box p {
  color: #314158;
  font-size: 14px;
  font-weight: 400;
  max-width: 110px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  margin-top: 10px;
}


.cah .care-help-buttons {
  flex-direction: inherit;
}


/* Senior Living New Project */



.sl_fr_content .main_title p {
  font-size: 16px;
  line-height: 24px;
  max-width: 920px;
  width: 100%;
  margin: 0px auto;
          margin-bottom: 20px;
}

.sl_fr_content .main_title p:last-child {
  margin-bottom: 0;
}

.sl_fr_content .main_title {
  margin-bottom: 0;
}

/* .sl_fr_content .main_title h2 {
  margin-bottom: 16px;
} */


/* 
.sl_fr_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: radial-gradient(50% 50% at 50% 50%, #F0E0E5 0%, #FFFFFF 100%);
  padding-bottom: 20px;
  padding-top: 15px;
  overflow: hidden;
} */

.sl_fr__box {
  text-align: center;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}


.sl_fr__box img {
  max-width: 33px;
  width: 100%;
}


.sl_fr__box p {
  color: #101828;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 0;
  margin-top: 13px;
}

.ur_solution_wrapper.residences ul.nav {
  margin: 0 auto;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  gap: 8px;
  margin-top: 33px;
}

.ur_solution_wrapper.residences .slick-dots {
  bottom: -35px !important;
  left: 0;
}

.senior-living-child-page .ur_solution_wrapper.residences .main_title {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 290px;
  width: 100%;
}

.ur_solution_wrapper.residences .tran_btn a {
  display: flex;
  border: 1px solid #E1D0D0;
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  height: 42px;
  border-radius: 21px;
  width: 152px;
  margin-left: auto;
  align-items: center;
  margin-top: 17px;
  justify-content: center;
}

.ur_solution_wrapper.residences li.nav-item {
  margin-left: 0;
  width: 100%;
}

.ur_solution_wrapper.residences .tab-content {
  margin-top: 20px;
}

.ur_solution_wrapper .gapp {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 10px;
  scroll-behavior: smooth;
  cursor: grab;
}


.ur_solution_wrapper .gapp .nav-item {
  flex: 0 0 auto;
  /* items shrink na ho */
}

.ur_solution_wrapper .gapp {
  cursor: grab;
}

.ur_solution_wrapper .dots span.active {
  background: #000;
  width: 20px;
}

.ur_solution_wrapper .dots {
  text-align: center;
  margin-top: 0px;
}

.senior-living-page .ur_solution_wrapper .dots {
    text-align: center;
    margin-top: 0px;
    position: absolute;
    top: 45px;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.ur_solution_wrapper .dots span {
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 5px;
  background: #D1D5DC;
  transition: 0.3s;
}

.ur_solution_wrapper .dots span.active {
  background: #67132f;
  width: 33px;
}


.philosophy_wrapper {
  background: linear-gradient(180deg, #FFFFFF 0%, #A6979C 100%);
  padding: 40px 0 60px 0;
}

.philosophy_flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  overflow: hidden;
}


.philosophy_box {
  padding: 25px 17px;
  border-radius: 15px;
  background: #FFF5F757;
  text-align: center;
}





.philosophy_box img {
  max-width: 30px;
  width: 100%;
  margin-bottom: 10px;
}

.philosophy_box h4 {
  font-size: 14px;
  color: #101828;
  font-weight: 300;
  margin-bottom: 0;
}



.pl_para {
  font-weight: 500;
  color: #364153;
  font-size: 14px;
  padding: 17px 17px;
  border-radius: 20px;
  background: #CDBDC3;
  margin-top: 24px;
  line-height: 21px;
  text-align: center;
  border: 0.71px solid #E5E7EB;
}

.pl_para span {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  display: block;
}




.call_btn_wrapper .nav-link {
  border-radius: 10px;
  background: transparent;
  color: #4A5565;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.31px;
  width: 100%;
  padding: 10px 15px;
}

.call_btn_wrapper {
  margin-top: 20px;
}

.call_btn_wrapper .nav-link.active{
  color: #67132F !important;
  border-bottom: 2px solid #67132F;
  border-radius: 30px;
}


.call_btn_wrapper .nav-link:hover {
  color: #67132F !important;
  background-color:  #fff8f8;
}

.call_btn_wrapper ul {
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
  padding-bottom: 20px;
  gap: 20px;
}

.call_btn_wrapper ul::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}


/* Track */
.call_btn_wrapper ul::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.call_btn_wrapper ul::-webkit-scrollbar-thumb {
  background: transparent;
}

.call_btn_wrapper li.nav-item {
  width: 100%;
  max-width: 230px;
  text-align: center;
}

.sl_project_badges_section {
  padding: 18px 0;
  background: #FFF8F8;
  border-top: 1px solid #9b9a9a;
}

.award_badges_container {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.award_badge_item {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: left;
  display: flex;
  gap: 8px;
  min-width: 0;
  width: 100%;
  justify-content: center;
}

.award_badge_header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
      max-width: 30px;
    width: 100%;
}

.award_badge_header img {
  max-width: 35px;
  width: 100%;
}

.award_badge_title {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #4A353C;
  letter-spacing: 0.4px;
  min-width: 0;
}

.award_badge_header img {
  max-width: 30px;
  width: 100%;
}

.award_badge_subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #4A5565;
  letter-spacing: -0.15px;
}

/* Senior Living: “Where care grows with you” + icon grid (project pages) */
/* .sl_features_highlight_section {
  padding-bottom: 40px;
} */

.sl_features_highlight_section .sl_sub_heading {
  margin-bottom: 32px;
}

.sl_features_highlight_section .sl_sub_heading h3 {
  font-size: 24px;
  color: #101828;
  font-weight: 500;
  margin: 0;
}

.sl_features_highlight_section .sl_sub_heading h3 i,
.sl_features_highlight_section .sl_sub_heading h3 em {
  font-style: italic;
  font-family: inherit;
  color: #667085;
  font-weight: 400;
}

.sl_features_highlight_section .sl_features_grid.sl-features-highlight-grid {
  background-color: #fffbfa;
  display: grid;
  /* Match Figma / static reference: always 3 columns on mobile + desktop */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sl_features_highlight_section .sl_features_grid.sl-features-highlight-grid {
  background-color: #fffbfa;
  display: grid;
  /* Match Figma / static reference: always 3 columns on mobile + desktop */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
  align-items: start;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sl_features_section .sl-features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  min-width: 0;
  max-width: 1100px;
  width: 100%;
  gap: 30px;
  margin: 0 auto;
}

.sl_features_grids {
  padding: 40px 0;
  background-color: #FFF8F8;
}

.sl_features_grids .sl_feature_item {
  padding: 10px 0;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

.sl_features_highlight_section .sl_feature_icon {
  width: 80px;
  height: 80px;
  background-color: #f4e7eb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.sl_features_highlight_section .sl_feature_icon img {
  max-width: 30px;
  width: 100%;
  object-fit: contain;
}

.sl_features_highlight_section .sl_feature_item p {
  font-size: 16px;
  color: #101828;
  line-height: 1.35;
  font-weight: 400;
  max-width: 100%;
  width: 100%;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 767px) {

  .sl_features_highlight_section .sl_features_grid.sl-features-highlight-grid,
  .sl_features_section.sl_features_highlight_section .sl_features_grid {
    gap: 32px 12px;
  }

  .sl_features_highlight_section .sl_feature_item {
    padding: 12px 4px;
  }

  .sl_features_highlight_section .sl_feature_icon {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
  }

  .sl_features_highlight_section .sl_feature_icon img {
    max-width: 26px;
  }

  .sl_features_highlight_section .sl_feature_item p {
    font-size: 14px;
    line-height: 1.32;
  }
}

@media (max-width: 359px) {

  .sl_features_highlight_section .sl_features_grid.sl-features-highlight-grid,
  .sl_features_section.sl_features_highlight_section .sl_features_grid {
    gap: 28px 8px;
  }

  .sl_features_highlight_section .sl_feature_icon {
    width: 64px;
    height: 64px;
  }

  .sl_features_highlight_section .sl_feature_icon img {
    max-width: 24px;
  }

  .sl_features_highlight_section .sl_feature_item p {
    font-size: 13px;
  }
}

/* Senior Living: “Take a Virtual tour” (vt_wrapper + poster + play) */
.sl_virtual_tour_section .home_about_video {
  margin-top: 24px;
}

.sl_virtual_tour_section .video_lk {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.sl_virtual_tour_section .sl-vt-poster {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.sl_virtual_tour_section .play_btn_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffffd9;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sl_virtual_tour_section .play_btn_overlay i {
  color: #67132f;
  font-size: 40px;
  margin-left: 5px;
}

.sl_virtual_tour_section a.video_lk:hover .play_btn_overlay {
  transform: translate(-50%, -50%) scale(1.06);
}

.philosophy_wrapper {
  scroll-margin-top: 100px;
}



/* Who Is Care Home For – same as antara-senior-care assisted-care ccm-section */

.who-is-care-home-section.ccm-section {
  text-align: center;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: #FFF9F9;
  margin-top: 0px!important;
}

.who-is-care-home-section .ccm-card img {
  width: 100%;
  height: 326px;
      object-position: top;
}

.who-is-care-home-section .main_title {
  max-width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.who-is-care-home-section .tab-content {
  padding: 0;
  border: none;
}


.who-is-care-home-section .tab-pane>.ccm-slider.slick-slider {
  position: relative;
}

.who-is-care-home-section .tab-pane>.ccm-slider .slick-list {
  overflow: hidden;
}

.who-is-care-home-section .tab-pane>.ccm-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.who-is-care-home-section .tab-pane>.ccm-slider .slick-slide {
  height: auto;
  float: left;
}

/* .who-is-care-home-section .tab-pane > .ccm-slider .slick-slide > div {
  height: 100%;
} */

.who-is-care-home-section .ccm-card {
  width: 100%;
  height: 100%;
}

.who-is-care-home-section .ccm-card-content p img {
  max-width: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.who-is-care-home-section .ccm-card-content p span {
  color: #fff;
}

/* 
.who-is-care-home-section  .slick-dots {
    bottom: -24px !important;
    left: 0;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li {
  display: inline-block;
  margin: 0;
  width: auto;
  height: auto;
  pointer-events: auto;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  pointer-events: auto;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li button:before {
  content: "" !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #c9cdd3 !important;
  color: transparent !important;
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li.slick-active {
  width: 36px !important;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li.slick-active button {
  width: 36px !important;
  height: 10px !important;
}

.who-is-care-home-section .tab-pane > .ccm-slider .slick-dots li.slick-active button:before {
  width: 32px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #67132f !important;
} */

/* Choosing the Right Care – comparison card */

.what_included {
    background-color: #fff;
    padding-left:2px;
     padding-right:2px;
    overflow: hidden;
    margin-top: 0;
}

.what_included .ccs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1100px;
  align-items: stretch;
}

.what_included .ccs-card-item {
  display: flex;
  height: 100%;
}

.what_included .ccs-card-item a {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.what_included .ccs-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.44px;
  color: #4A5565;
  text-align: left;
  text-align: center;
  display: none;
  margin-bottom: 0;
}

.what_included .ccs-actions {
    margin-top: 25px;
    margin-bottom: 20px;
}

.what_included .trans_btn {
  max-width: 50%;
  width: 400px;
  text-align: center;
}

.what_included .trans_btn a {
  display: block;
  max-width: 400px;
}

.what_included .ccs-actions .main_btn {
  width: 50%;
  max-width: 400px;
}

.what_included .ccs-actions .trans_btn a i {
    margin-left: 0px;
    font-size: 16px;
    position: relative;
    top: 0px;
}

.what_included .ccs-actions .main_btn a {
  display: block;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.what_included .ccs-card h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #101828;
}

.what_included .ccs-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  text-align: center;
  min-height: 100%;
}

.what_included .ccs-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 112px;
}

.what_included .ccs-card-body h4,
.what_included .ccs-card-body p {
  width: 100%;
  margin: 0;
}

.what_included .ccs-card-body h4 {
  margin-bottom: 8px;
}

.what_included .ccs-card-body p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 44px;
}

.what_included .ccs-icon {
  max-width: 56px;
  height: 56px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  margin-bottom: 0px;
  flex-shrink: 0;
}

.what_included .ccs-icon img {
  width: 100%;
}


.care-comparison-section {
    width: 100%;
    box-sizing: border-box;
}

.care-comparison-section .care-comparison-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.care-comparison-section .care-section-heading {
  margin: 0 auto 20px;
  text-align: center;
}

.care-comparison-section .care-section-heading h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.39px;
  color: rgba(33, 29, 29, 0.8);
  margin: 0 0 12px;
  text-align: center;
  margin-bottom: 8px;
}

.care-comparison-section .care-section-heading .top-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.43px;
  color: #4A5565;
  margin: 0 auto 13px auto;
  text-align: center;
  max-width: 300px;
}

.care-comparison-section .care-section-heading h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.39px;
  color: rgba(33, 29, 29, 0.8);
  margin: 0 0 4px;
  text-align: center;
}

.care-comparison-section .care-section-heading .sub-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.43px;
  color: #4A5565;
  margin: 0 auto;
  text-align: center;
  max-width: 330px;
}

.care-comparison-section .comparison-card {
  background: #FFFBFB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.care-comparison-section .comparison-card-head,
.care-comparison-section .comparison-card-row {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  align-items: center;
}

.care-comparison-section .comparison-card-head {
  background: #FFFBFB;
  border-bottom: 1px solid #EFDBDB;
}



.senior-living-page .ur_solution_wrapper.bg_tw .main_title p {
    margin-bottom: 0;
    max-width: 280px;
    width: 100%;
}

.care-comparison-section .comparison-head-cell {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.44px;
  color: #493139;
  text-align: center;
  padding: 24px 1px;
  box-sizing: border-box;
}

.care-comparison-section .comparison-head-cell:nth-child(2) {
  border-right: 1px solid rgba(114, 83, 83, 0.1);
  border-left: 1px solid rgba(114, 83, 83, 0.1);
}

.care-comparison-section .comparison-head-empty {
  padding: 0;
}

.care-comparison-section .comparison-card-row {
  min-height: 96px;
  border-bottom: 1px solid #E5E7EB;
}

.care-comparison-section .comparison-card-row:last-child {
  border-bottom: none;
}

.care-comparison-section .comparison-feature-cell {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #101828;
  text-align: left;
  padding: 0 14px;
  box-sizing: border-box;
      max-width: 120px;
}

.care-comparison-section .comparison-status-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #E5E7EB;
  min-height: 96px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.comparison-icon.success:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.care-comparison-section .comparison-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.care-comparison-section .comparison-icon.danger {
    font-size: 18px;
}

.care-comparison-section .comparison-icon.success {
     background: #DCFCE7;
    color: #00A63E;
}

.care-comparison-section .comparison-icon.danger {
    background: #FFE2E2;
    color: #E7000B;
}

@media (min-width: 768px) {
  .care-comparison-section {
    padding: 60px 0;
  }


}

/* Assisted Care at Home */



.banner_btm_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #FFFFFF1A;
    padding: 14px 14px;
    border-radius: 45px;
    max-width:100%;
    margin: 0 auto;
    margin-top: 35px;
    border: 0.64px solid #FFFFFF33;
}

.banner_btm_content ul.single-location li.lcn:after {
   display: none;
}

.banner_btm_content ul.single-location {
    gap: 12px;
    padding: 14px 24px;
    max-width: max-content;

}

.banner_btm_content ul li.lcn {
  position: relative;
  color: #fff;
     font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

.banner_btm_content ul li.lcn a {
  color: #fff;
}

.banner_btm_content ul li.lcn:after {
  position: absolute;
  content: '';
  top: 10px;
  left: -11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}



.banner_btm_content ul i {
  color: #fff;
  font-size: 16px;
}

.senior-living-child-page .banner_btm_content {
  margin-top: 22px;
}

.senior-living-child-page .banner_btm_content ul {
  margin-top: 0;
}

.senior-living-child-page  .as_banner_wrapper .banner_content {
    height: 100%;
        margin-top: -100px;
}

.senior-living-child-page .banner_btm_content ul i,
.senior-living-child-page .banner_btm_content ul li.lcn,
.senior-living-child-page .banner_btm_content ul li.lcn a,
.senior-living-child-page .banner_btm_content ul li.lcn a:hover,
.senior-living-child-page .banner_btm_content ul li.lcn a:focus,
.senior-living-child-page .banner_btm_content ul li.lcn a:visited {
  color: #fff;
}

.senior-living-child-page .banner_btm_content ul li.lcn:after {
  display: none;
}


.slect_wrapper {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 7px;
  padding-bottom: 20px;
}

.slect_wrapper p {
  font-size: 14px;
  font-weight: 400;
  color: #67132F;
  line-height: 20px;
  max-width: 170px;
  width: 100%;
  margin-bottom: 0;
  white-space: nowrap;
}

.slect_wrapper select {
  border-radius: 40px;
  padding: 10px 10px;
}


.ach_title {
  font-size: 20px;
  color: #0A0A0A;
}

.tabs_gaping {
  margin-top: 20px !important;
  margin-bottom: 22px !important;
}

.ach_box {
  box-shadow: -3px 3px 6px rgb(0 0 0 / 8%), -1px 3px 6px rgb(0 0 0 / 9%);
  border: 1px solid #F3F4F6;
  margin-bottom: 25px;
  border-radius: 20px;
  position: relative;
}

.ach_at_cart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFFFFFE5;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-heart-checkbox {
  display: none;
}

.heart-icon:before {
  content: "\f08a";
  font-family: FontAwesome;
  font-size: 20px;
  color: #67132F;
  transition: 0.3s;
}

.red-heart-checkbox:checked+.heart-icon:before {
  content: "\f004";
  color: #67132F;
}



.attribution {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.ach_box_img img {
  border-radius: 14px 14px 0 0;
}

.ach_box_content {
  padding: 12px;
  border-radius: 0 0 14px 14px;
}


.ach_box h4 {
  color: #101828;
  font-size: 18px;
  font-weight: 500;
}

li.ach_box_pr.ach_mb_bl {
  font-weight: 600 !important;
}

.ach_box_location {
  font-size: 14px;
  color: #4A5565;
  font-weight: 400;
}

.ach_box_location i {
  margin-right: 7px;
}


.ach_box_content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  align-items: center;
  margin-top: 15px;
  justify-content: space-between;
}

.ach_box_content ul li.ach_box_al {
  background-color: #FEF2F2;
  padding: 6px 12px;
  border-radius: 30px;
  color: #67132F;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

li.ach_box_al.d-md-none {
  position: relative;
  left: -70px;
}

span.ach_icon {
  display: none;
}

.ach_box_content ul.ach_bg_cl li.ach_box_al {
  background-color: #F9FAFB;
  color: #364153;
}


.ach_box_content ul li.ach_box_pr {
  color: #4A5565;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.ach_box_content ul li.ach_box_pr span {
  color: #99A1AF;
}

.ach_box_para {
  font-weight: 400;
  color: #4A5565;
  line-height: 20px;
  margin-top: 15px;
}


.ach_box .main_btn {
  text-align: left;
  margin: 20px 0 2px 0;
  display: flex;
  gap: 10px;
}

.ach_box .main_btn a {
  padding: 8px 10px;
  font-size: 13px;
  text-align: center;
}


.ach_box .main_btn a i {
  margin-right: 7px;
}

.main_btn a.ach_book_now {
  display: block;
  width: 100%;
}

.main_btn a.ach_contact_btn {
  background: transparent;
  display: block;
  max-width: 144px;
  width: 100%;
  white-space: nowrap;
  color: #67132F;
  border: 1px solid #67132F;
}

.tab_bg {
  background: linear-gradient(161.22deg, #FFFFFF 35.78%, #B89EA7 88.41%);
}

.ccm-section.bg-transparent .slick-dots li button:before {
  background: #D1D5DC;
}

.ccm-section.bg-transparent .slick-dots li.slick-active button:before {
  background: #800020;
}


.assisted-living-page footer {
    margin-top: 0;
}

.assisted-living-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 24px;
}

.assisted-living-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
    margin-bottom: 24px;
}

.assisted-living-page .banner_btm_content ul {
    margin-top: 37px;
}

.assisted-living-page .as_banner_wrapper .banner_content {
    height: 100%;
}

.assisted-living-page .as_banner_wrapper.banner_wrapper .container {
    position: absolute;
    /* bottom: 139px; */
    bottom: 15.5vh;
}



.care-homes-extension-page .m_view .main_title h2 {
    color: #14223D;
    font-weight: 500;
}

.care-homes-extension-page .care-homes-section .main_title {
    padding: 0 10px;
}

.assisted-living-page .who-is-care-home-section.ccm-section {
    overflow-x: hidden;
    overflow-y: visible;
    background-color: #fff;
}


.living_slider_wrapper {
    overflow: hidden;
    background: #FFF8F8;
}

.living_slider_wrapper .main_title {
    margin-bottom: 0px;
    padding: 0 15px;
}

.living_slider_wrapper .slick-dots {
  bottom: -8px !important;
  left: 0;
}

.living_slider_wrapper .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.living_slider_flex {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%;
}

.living_slider_flex_box {
    padding: 20px 14px 14px;
    border-radius: 17px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 290px;
    flex: 1 1 0;
    width: 100%;
    box-sizing: border-box;
}

.living_slider_flex_box h4,
.living_slider_flex_box p {
    width: 100%;
}

.living_slider_flex_box img {
    width: 64px;
    max-width: 64px;
    min-width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.living_slider_flex_box h4 {
    margin-bottom: 12px;
    margin-top: 24px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.living_slider_flex_box p {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    min-height: 88px;
}

.living_slider_wrapper .container {
  padding: 0;
}

element.style {
  background: #67132F;
  padding: 10px;
  max-width: 55px;
  width: 100%;
  border-radius: 10px;
}


.living_slider_flex_box img {
    max-width: 64px;
    width: 64px;
    height: 64px;
    padding: 0px;
    border-radius: 14px;
    background-color: #67132F;
    margin: 0 auto;
    object-fit: contain;
    display: block;
}


.living_slider_flex_box h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #101828;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 24px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.living_slider_flex_box p {
    font-size: 14px;
    font-weight: 400;
    color: #4A5565;
    line-height: 22.75px;
    letter-spacing: -0.15px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

@media (max-width: 767px) {
    .living_slider_flex {
        display: flex;
        width: 100%;
        align-items: stretch;
    }

    .living_slider_flex_box {
        width: 100%;
        min-height: auto;
        height: auto !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .living_slider_flex_box img {
        width: 64px;
        max-width: 64px;
        min-width: 64px;
        height: 64px;
    }

    .living_slider_flex_box h4,
    .living_slider_flex_box p {
        width: 100%;
    }

    .living_slider_flex_box h4 {
        min-height: auto;
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .living_slider_flex_box p {
        min-height: auto;
        align-items: center;
    }
}

.ccm-section.clinical .main_title h2 {
    color: #47001B;
}

.ccm-section.clinical .main_title p {
    color: #554245;
}





.main_title .sm_title {
  background-color: #67132F1A;
  color: #67132F;
  font-size: 12px;
  font-weight: 400;
  padding: 7px 15px;
  border-radius: 30px;
  display: block;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;

}

.antara_differ_wrapper {
  margin-top: 80px;
  overflow: hidden;
  padding-bottom: 20px;
}


.antara_differ_box {
  padding: 12px;
  border: 3px solid #67132F33;
  box-shadow: 0px 4px 6px -1px #0000001A;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.antara_differ_box:after {
  content: '';
  background-color: #67132f0f;
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 49%;
  position: absolute;
  top: -53px;
  right: -49px;
  z-index: 99;
}

.antara_differ_box h4 {
  font-weight: 500;
  font-size: 16px;
  color: #101828;
  margin-bottom: 2px;
}

.antara_differ_box p {
  font-weight: 400;
  font-size: 14px;
  color: #4A5565;
  margin-bottom: 0;
}

.antara_differ_box_content .border-top {
  text-align: center;
  margin-top: 20px;
}

.antara_differ_box_content .border-top span {
  position: relative;
  background: #fff;
  top: -13px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #99A1AF;
}

.antara_differ_box_flex {
  background: #F9FAFB;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  display: flex;
  gap: 10px;
}


.antara_differ_box_flex img {
  background: #F3F4F6;
  padding: 6px;
  border-radius: 7px;
  max-width: 25px;
  width: 100%;
  height: 25px;
}

.antara_differ_box_flex h4 {
  color: #4A5565;
}

.antara_differ_box_flex p {
  color: #6A7282;
}



.check_icon {
  background-color: #67132F;
  max-width: 25px;
  width: 100%;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.diffter_icon img {
  max-width: 32px;
  width: 100%;
  border-radius: 10px;
  height: 32px;
  padding: 7px;
}

.diffter_icon.gr img {
  background-color: #ECFDF5;
}

.diffter_icon.rd img {
  background-color: #FFF1F2;
}

.diffter_icon.bl img {
  background-color: #EFF6FF;
}

.antara_differ_box_flex_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 92%;
  width: 100%;
  margin-bottom: 15px;
}


.antara_differ_slider {
  padding-left: 10px;
}

.day_wrapper {
  background: #fff;
  overflow: hidden;
}

.day_wrapper .main_title {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
}

.sw_slider_wrapper {
  position: relative;
  width: 100%;
  max-width: 1095px;
  margin: 0 auto;
}

.swiper-button-prev {
  background: white;
  border-radius: 50%;
  top: 50% !important;
  right: 14px !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
  padding: 20px;
  background-image: none !important;
}

.swiper-button-prev::after {
  font-size: 1.4rem;
  content: "";
}

.swiper-button-prev svg {
  width: 25px;
}

.day_wrapper .swiper-slide {
  /* box-shadow: 0px 25px 50px -12px #00000040; */
  border-radius: 20px;
  opacity: 1;
}

.swiper-button-next {
  background: white;
  border-radius: 50%;
  top: 50% !important;
  right: 17px !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
  padding: 20px;
  background-image: none !important;
}

.swiper-button-next::after {
  font-size: 1.4rem;
  content: "";
}

.swiper {
  padding-bottom: 55px;
}

.swiper {
    overflow: hidden !important;
    padding: 20px 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    transform: scale(.9);
    transition: .4s ease;
    opacity: .7;
    /* margin-right: 0!important; */
}

.swiper-slide-active {
    transform: scale(.9);
    opacity: 1;
}

.fch-care-card-shell  {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(.95);
    opacity: 1;
}


@media (min-width: 760px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }
}

/* Bullet container */
.swiper-pagination-bullet {
  width: 17px !important;
  height: 10px !important;
  background: transparent !important;
  position: relative;
  margin: 0 2px !important;
  opacity: 1 !important;
}


.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px !important;
  height: 10px !important;
  background:#D1D5DC;
  border-radius: 50px;
  transition: all 0.4s ease;
}


.swiper-pagination-bullet-active::before {
  width: 32px !important;
  background: #67132F !important;
}

.swiper-pagination-bullet-active {
  width: 32px !important;
}


@media (max-width: 560px) {

  /* Scope to Day at Antara only — global width:auto broke single-slide Swiper (peeked duplicates) */
  .day_wrapper .swiper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .day_wrapper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .day_wrapper .swiper-slide-active {
    transform: scale(.9) !important;
  }

  .day_wrapper .swiper-button-prev {
    left: 12px !important;
  }

  .day_wrapper .swiper-button-next {
    right: 17px !important;
  }

  /* .day_wrapper .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    padding: 16px;
  } */

}


.day_slider_box {
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 1px 10px 0px #00000040;

}

.day_slider_box img {
    border-radius: 16px 16px 0 0;
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.day_slider_box_content {
  border-radius: 0 0 16px 16px;
  padding: 24px 24px 20px 24px;
  background-color: #fff;
      -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.day_slider_box span {
  position: absolute;
  top: 39px;
  left: 30px;
  /* background: linear-gradient(180deg, rgba(237, 164, 8, 0.55) 0%, rgba(231, 85, 22, 0.55) 100%); */
  max-width: 48px;
  height: 48px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0px 10px 15px -3px #0000001A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day_slider_box span img {
  height: 48px;
  width: 48px;
}

.day_slider_box_content h4 {
  color: #101828;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.45px;
  font-weight: 500;
  margin-bottom: 12px;
}

.day_slider_box_content p {
  font-size: 18px;
  font-weight: 400;
  color: #4A5565;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin-bottom: 0;
}

.day_slider_box.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.1);
  background: #fff;
  z-index: 9999999;
  position: relative;
}

.day_slider_wrapper .slick-track {
  padding-top: 70px;
  padding-bottom: 35px;
}

.day_slider_wrapper .slick-center {

  transition: transform 0.4s ease, opacity 0.4s ease;
}


.day_slider_wrapper {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
}

.wh_available_wrapper {
    text-align: center;
}

.wh_available_wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px 10px;
    margin: 0 auto;
    margin-top: 36px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    max-width: 400px;
}

.wh_available_wrapper ul li {
    background: #67132F1A;
    color: #67132F;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.31px;
    padding: 12px 20px;
    border-radius: 30px;
}

.wh_available_wrapper ul li i {
  margin-right: 4px;
}

.wh_available_wrapper .main_btn {
  margin-top: 30px;
}

.wh_available_wrapper .main_btn a {
    display: inline-block;
    max-width: 271px;
    width: 100%;
}


.btm_cta {
  background: linear-gradient(180deg, #67132F 0%, #4A0D21 100%);
  padding: 50px 0;
}

.btm_cta .main_title h2 {
  color: #fff;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.btm_cta .main_title p {
  color: #ffffffb8;
  margin-top: 20px;
}


.btm_cta .main_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  text-align: center;
}

.commitment_wrapper .container {
  padding: 0px 10px;
}


.btm_cta .main_btn .btm_cta_n {
  color: #67132F;
  background-color: #fff;
}

/* About Page CSS */

.eco_wrapper .main_title {
  padding: 0 20px;
}

.as_banner_wrapper.about_hero .banner_content h1 {
  max-width: 950px;
}

.about_wrapper {
  text-align: center;
}

.about_wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #4A5565;
  line-height: 32px;
}

.about_wrapper_img {
  text-align: center;
  margin-top: 10px;
}

.about_wrapper_img img {
  max-width: 527px;
  width: 100%;
  margin: 0 auto;
}



.prpus_box {
  /* background: linear-gradient(180deg, #FFFFFF 0%, #F1ECED 100%); */
  padding: 22px 20px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.prpus_box h4 {
    font-size: 18px;
    font-weight: 500;
    color: #67132F;
    margin-bottom: 8px;
    line-height: 24px;
    letter-spacing: -0.44px;
}

.prpus_wrapper .main_title {
    margin-bottom: 0;
}

.prpus_box p {
  font-size: 16px;
  font-weight: 400;
  color: #364153;
  line-height: 24px;
  margin-bottom: 0;
  letter-spacing: -0.44px;
}

.prpus_wrapper {
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.5) 0%, rgba(255, 244, 248, 0.5) 100%);
}

.eco_box {
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 16px 24px;
  border-radius: 15px;
  text-align: center;
  height: stretch;
  background-color: #fff;
  margin-bottom: 24px;
  cursor: pointer;
}

.eco_box:hover {
  background: #fff8f8d4;
}


.eco_box h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.45px;
  color: #4A5565;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.eco_box p {
  font-size: 14px;
  font-weight: 400;
  color: #4A5565;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
}

.eco_box a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  color: #4A5565;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco_box a i {
  font-size: 30px;
  position: relative;
  top: 1px;
  right: -2px;
}


.eco_box h4 img {
  max-width: 42px;
  width: 100%;
}


.cg_wrapper {
  background-color: #FFF8F8;
  overflow: hidden;
}

.cg_box {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-left: 20px;
}

.cg_wrapper .slick-dots {
  bottom: -45px !important;
  left: 0;
}


.cg_style_wrapper .cg_box {
  justify-content: left;
}

.cg_box img {
  max-width: 56px;
  width: 100%;
  height: 56px;
}


.cg_box h4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.cg_box p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  font-weight: 400;
  color: #4A5565;
  margin-bottom: 0;
}

.cg_box_slider {
  margin-top: 33px;
}

.cg_box_slider  .slick-slide {
    margin-left: 6px;
    margin-right: 6px;
}

.leadership_img img {
  border-radius: 14px;
  height: 390px;
  width: 100%;
  object-fit: cover;
  border: 0.71px solid #F3F4F6;
    box-shadow: 0px 1px 3px 0px #0000001A;
}

.leadership_box {
  box-shadow: 0px 1px 3px 0px #0000001A;
  border: 1px solid #F3F4F6;
  border-radius: 20px;
  position: relative;
}

.leadership_slider .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}

.leadership_content {
  padding: 16px 23px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  background: #00000045;
  width: 100%;
  border-radius: 0 0px 14px 14px;
}

.leadership_content .leadership_content_title h5 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.31px;
  margin-bottom: 4px;
}

.leadership_content .leadership_content_title span {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 400;
}

.leadership_content_title {
  margin-bottom: 10.88px;
}



.moretext {
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  display: none;
  margin-bottom: 10px;
  color: #fff;
}

.moreless-button {
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}


.leadership_wrapper {
  overflow: hidden;
}


.la_img {
  overflow: hidden;
  margin-top: 9px;
}

.la_img img {
  border-radius: 20px;
  height: 239px;
  object-fit: cover;
}

.la_img_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}


.la_img_flex img {
  width: 49%;
  height: 160px;
}

.la_content {
  /* background: #F9FAFB;
  border-radius: 20px; */
  display: flex;
  flex-direction: column-reverse;
}


.la_wraaper .main_title {
  margin-bottom: 0;
  padding: 10px;
}


.la_wraaper .main_title p {
  margin-bottom: 12px;
}

.commitment_wrapper .row {
  box-shadow: 0px 1px 3px 0px #0000001A;
  border: 0.71px solid #F3F4F6;
  padding: 11px 15px 13px 15px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E4DBDE 100%);
  margin: 0px;
  border-radius: 16px;
}

.eco_row {
    padding: 10px 10px;
}


.assisted-care-page .ccm-section.who-is-care-home-section .tab-pane.active {
    height: auto;
}

.commit_icon {
  position: absolute;
  top: -8px;
  left: -18px;
  /* background: #fff; */
  padding-bottom: 10px;
}

.commit_icon img {
  width: 100%;
  max-width: 40px;
}

.commitment_box {
  /* background-image: url("{% static '/images/line-img.png' %}");  */
  padding: 13px 24px 13px 24px;
  position: relative;
  border-radius: 24px;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.commitment_box .border_line_img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.commitment_box p {
  color: #4A5565;
  font-size: 16px;
  letter-spacing: -0.31px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 24px;
}

.commitment_box h4 {
  color: #0A0A0A;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.31px;
  font-weight: 500;
  max-width: 100%;
  width: 100%;
  margin-bottom: 8px;
}

.cg_style_wrapper .cg_box img {
  border-radius: 50%;
  background: transparent;
}

.cg_style_wrapper .cg_box h4 {
  font-weight: 400;
  color: #67132F;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
}

.cg_style_wrapper .cg_box {
  width: 100%;
  margin: 0px 20px 30px 40px;
  max-width: 280px;
}

.cg_style_wrapper .cg_box p {
  font-size: 18px;
  font-weight: 500;
  color: #67132F;
  line-height: 28px;
  letter-spacing: -0.44px;
  margin-bottom: 0;
}

.cg_style_wrapper s.cg_box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.cg_style_wrapper .slick-dots {
  bottom: -45px;
  left: 0;
  opacity: 0;
}

.cg_style_wrapper {
  margin-top: 70px;
}

/* Day at Antara: less gap before timeline; vertical list (not horizontal flex from responsive) */
.day_wrapper .cg_style_wrapper {
  margin-top: 0px;
  display: block;
  overflow: visible;
}

.benefit_section_content p {
  font-size: 16px;
    font-weight: 400;
    color: #4A5565;
    line-height: 24px;
    text-align: center;
}

.families_speak_slider_wrapper .main_title p {
  padding: 0 10px;
}

.day_wrapper .swiper {
  padding-bottom: 45px;
  padding-top: 0;
}

.day_wrapper .swiper-horizontal>.swiper-pagination-bullets, .day_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .day_wrapper .swiper-pagination-custom, .day_wrapper .swiper-pagination-fraction {
    bottom: 24px;
    left: 0;
    width: 100%;
}

.senior-living-child-page section.ccm-section.gapping.care-continuum-block {
    background: #FFF8F8;
}

.day_wrapper.gapping {
  padding-bottom: 0px;
}

/* One CMS slide: hide nav chrome (template always outputs arrows/pagination) */
.day_wrapper .sw_slider_wrapper:has(.swiper-wrapper > .swiper-slide:only-child) .swiper-button-prev,
.day_wrapper .sw_slider_wrapper:has(.swiper-wrapper > .swiper-slide:only-child) .swiper-button-next,
.day_wrapper .sw_slider_wrapper:has(.swiper-wrapper > .swiper-slide:only-child) .swiper-pagination {
  display: none !important;
}

@media (min-width: 768px) {
     .day_wrapper .cg_style_wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

  .cg_style_wrapper .cg_box img {
    border-radius: 50%;
    background: transparent;
    height: 56px;
    width: 100%;
    max-width: 56px;
    padding: 0px;
  }

  .cg_style_wrapper .cg_box h4 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin-bottom: 7px;
  }


}

/* width */
.cg_style_wrapper::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
.cg_style_wrapper::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.cg_style_wrapper::-webkit-scrollbar-thumb {
  background: transparent;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

/* City care-home detail page sections */
.quick-enquiry-card {
  background: #FFF8F8;
  border-radius: 40px;
  padding: 30px 30px;
  box-shadow: 0px 25px 50px -12px #00000040;
  max-width: 480px;
  margin: 0 auto;
}


.qe-title {
  color: #701F3E !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}

.qe-form-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.qe-input {
  background: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 15px 28px;
  font-size: 16px;
  color: #333;
  width: 100%;
}

.qe-input::placeholder {
  font-size: 16px;
  color: #554245CC;
  width: 100%;
  font-weight: 400;
}

.qe-input:focus {
  outline: none;
  box-shadow: 0px 4px 15px rgba(103, 19, 47, 0.1);
}

.qe-btn-solid,
.qe-btn-outline {
  border-radius: 40px;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.qe-btn-solid {
  background: #67132F;
  color: #ffffff;
  border: none;
}

.qe-btn-outline {
  background: transparent;
  color: #67132F;
  border: 2px solid #67132F;
  margin-top: -15px;
}


.care-homes-individual-extension-page .m_view {
    background-color: #fff;
    padding-left:10px;
    padding-right:10px;
    padding-top: 0;
}

.care-homes-individual-extension-page .m_view .main_title h2 {
    color: #14223D;
    margin-bottom: 12px;
}

.care-homes-individual-extension-page .m_view p {
    color: #4A5565;
    font-size: 16px;
    line-height: 24px;
}


.care-homes-individual-extension-page .roomstay .main_title {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 27px;
}

.care-homes-individual-extension-page .roomstay .main_title h2 {
    color: #101828;
}

.care-homes-individual-extension-page .roomstay .main_title p {
    color: #4A5565;
}

.care-homes-individual-extension-page .roomstay .tab-content {
    margin-top: 27px;
}

.care-homes-individual-extension-page .roomstay .ccm-card-wrapper img {
    width: 100%;
    height: 455px;
    object-fit: cover;
    display: block;
        border-radius: 12px;
}


.map-embed iframe {
  width: 100%;
}

.care-homes-individual-extension-page .roomstay .ccm-card-detail {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0000006B;
    padding: 23px 18px;
    border-radius: 12px;
    backdrop-filter: unset;
    text-align: left;
}

.care-homes-individual-extension-page .roomstay .ccm-card-wrapper {
    border-radius:12px;
    height: 100%;
}

.care-homes-individual-extension-page .trust-section {
    background: #fff!important;
    margin-top: 0px;
}

.care-homes-individual-extension-page .trust-stat-item {
    text-align: center;
    margin-bottom: 4px;
    padding: 20px 8px 19px 8px;
    border: 0.7px solid #E5E7EB;
    border-radius: 20px;
    height: 100%;
}

.care-homes-individual-extension-page .trust-stat-item  .trust-stat-icon {
    margin: 0 auto 18px;
}

.rating-stats-container {
  display: flex;
  justify-content: space-around;
}

.care-homes-individual-extension-page .trust-stats-grid {
    max-width: 340px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 24px;
}

.care-homes-individual-extension-page .clinical .ccs-actions {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 26px;
    align-items: center;
}


.care-homes-individual-extension-page .ccm-section.gallery .main_title h2 {
    color: #101828;
}

.care-homes-individual-extension-page .ccm-section.gallery .main_title p {
    color: #4A5565;
}

.care-homes-individual-extension-page .ccm-section.gallery .main_title {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 27px;
}

.awd_slider.slick-slider .slick-list {
    margin: 0 20px 0 20px;
}

.care-homes-individual-extension-page .ccm-section.gallery .ccm-card img.cms_img {
    width: 100%;
    height: clamp(420px, 33vw, 570px);
    object-fit: cover;
}

.care-homes-individual-extension-page .ccm-section.gallery .ccm-card-content {
    padding: 18px 23px;
}

.care-homes-individual-extension-page .ccm-section.cms {
    background: #FFF8F8;
}

.care-homes-individual-extension-page .ccm-section.cms .main_title h2 {
    color: #101828;
}

.care-homes-individual-extension-page .ccm-section.cms .main_title p {
    color: #4A5565;
}

.care-homes-individual-extension-page .ccm-section.cms .ccm-card-wrapper span img {
    max-width: 48px;
    width: 100%;
    height: 48px;
    background: #FFFFFF6B;
    border-radius: 50%;
    padding: 12px;
}

.care-homes-individual-extension-page .ccm-section.cms  .ccm-card-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.care-homes-individual-extension-page .ccm-section.cms  .ccm-card-wrapper img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.care-homes-individual-extension-page .ccm-section.cms .ccm-card-detail {
    padding: 25px 24px 18px 24px;
    border-radius: 0 0 12px 12px
}

.care-homes-individual-extension-page .ccm-section.cms  .ccm-card-detail p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.44px;
    color: #FFFFFF !important;
    margin: 0 !important;
    max-width: 95%;
}

.rating-stat-box {
    text-align: center;
    max-width: 95px;
    width: 100%;
}

.rating-stat-box h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.4px;
    font-weight: 700;
    color: #4B0D22;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rating-stat-box h3 i {
  font-size: 24px;
  color: #4B0D22;
}

.rating-stat-box p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #4A5565;
    font-weight: 400;
    margin: 0;
}

.sl_sub_heading {
  margin-bottom: 16px;
}

.sl_sub_heading h3 {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.07px;
  color: #101828;
  font-weight: 400;
}

.sl_features_section .main_title p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.sl_features_grid {
  background-color: #FFF8F8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 12px;
  padding: 30px 17px;
}

.sl_feature_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

.sl_feature_icon {
  width: 48px;
  height: 48px;
  background-color: #67132F1A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
}

.sl_feature_icon img {
  max-width: 48px;
  width: 100%;
  object-fit: contain;
}

.sl_feature_icon i {
  color: #67132F;
  font-size: 26px;
}

.sl_feature_item p {
  font-size: 16px;
  color: #101828;
  line-height: 20px;
  letter-spacing: -0.15px;
  font-weight: 400;
  max-width: 200px;
  margin: 0;
}


.estate-page .sl_fr_content {
    background: #FFF8F8;
}

.care-homes-section .main_title h2 {
  font-weight: 700;
  color: #462D35;
}


.slick-track {
    display: flex !important;
    margin-bottom: 5px;
}

.slick-slide {
    height: inherit !important;
}

.care-homes-section .slick-slide > div {
    height: 100%;
}

.swiper-button-prev , .swiper-button-next{
  display: none;
}



.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.care-home-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 0.72px solid #E5E7EB;
  border: 1px solid #F1F5F9;
  height: 100%;
      display: flex;
    flex-direction: column;
}

.card-img-box {
  position: relative;
  height: 211px;
}



.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-badge {
  position: absolute;
  top: 25px;
  left: 25px;
    background-color: #FFEEEE;
    color: #67132F;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-body-box {
    padding: 25px 25px 32px 25px;
}

.care-homes-extension-page .featured_slider_wrapper .nav-pills .nav-link.active, .care-homes-extension-page .featured_slider_wrapper .nav-pills .show>.nav-link {
    border-bottom:0; 
}

.care-homes-extension-page .featured_slider_wrapper .tab-feature-icon {
    width: 47px;
    height: 47px;
    background-color: transparent;
}

.care-homes-extension-page .featured_slider_wrapper .tab-feature-icon img {
    width: 47px;
    height: 47px;
    object-fit: contain;
}

.care-homes-extension-page .featured_slider_wrapper .header-logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.care-homes-extension-page .tab-feature-header.text-center {
    margin-bottom: 19px;
}


.care-homes-extension-page .featured_slider_wrapper .ccm-card-content p span {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: left;
    flex: 1;
    min-width: 0;
    width: auto;
}

.care-homes-extension-page .featured_slider_wrapper  .ccm-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background-color: #0000008C;
    padding: 23px 15px 23px 15px;
    border-radius: 12px;
    color: #fff;
}

.care-homes-extension-page .featured_slider_wrapper  .ccm-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.care-homes-extension-page .featured_slider_wrapper .slick-slide {
    margin-left: 6px;
    margin-right: 6px;
}


.care-homes-extension-page  .ccm-section.cms .ccm-card-wrapper {
    position: relative;
    width: 100%;
    height: 335px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 8px;
}

.care-homes-extension-page .ccm-section.clinical .ccs-actions {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 26px;
    align-items: center;
}

.care-homes-extension-page .ccm-section.cms .main_title {
    margin-bottom: 20px;
}

.care-homes-extension-page .ccm-section.cms .tab-content {
    margin-top: 20px;
}


body.care-homes-extension-page .ccm-section.gapping.cms:nth-of-type(1) {
     background-color: #FFF8F8!important;
}


.care-homes-extension-page .banner_form_wrapper form input {
    width: 100%;
    border: 0;
    padding: 14px 17px;
    border-radius: 10px;
    margin-bottom: 16px;
    height: auto;
    background-color: #fff;
}

.care-homes-individual-extension-page .form_banner_bg {
    padding-bottom: 0;
}
  
    .care-homes-extension-page .form_banner_bg {
    padding-bottom: 0;
    margin-top: 0px;
}

.care-homes-extension-page  footer {
    margin-top: 0;
}


.home-title {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    line-height: 32px;
    letter-spacing: 0.07px;
    margin-bottom: 12px;
}

.location-pill-box {
    background-color: #F3F4F6;
    color: #364153;
    padding: 9px 16px 10px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
    cursor: pointer;
    text-decoration: none;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

a.location-pill-box,
a.location-pill-box:hover,
a.location-pill-box:focus,
a.location-pill-box:visited {
    color: #364153;
    text-decoration: none;
}

.location-pill-box i,
.location-pill-box .location-pill-icon {
  color: #67132F;
  fill: #67132F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.info-section-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-section {
  padding-left: 19px;
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.59px;
  border-radius: 10px;
}

.address-section::before {
  background-color: #67132F;
}

.capacity-section::before {
  background-color: #3B82F6;
}

.info-label {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #6A7282;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-section h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 0;
    letter-spacing: -0.31px;
}

.info-section p {
    font-size: 14px;
    line-height: 20px;
    color: #4A5565;
    margin: 0;
    letter-spacing: -0.15px;
    font-weight: 400;
}

.capacity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capacity-list li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #4A5565;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
    font-weight: 400;
}

.capacity-list li::before {
     content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #3B82F6;
    border-radius: 50%;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 32px;
    padding: 0 25px;
}
.view-facility-btn,
.schedule-visit-btn {
  padding: 12px;
  border-radius: 31px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
}

.view-facility-btn {
  background-color: #67132F;
  color: #fff;
}

.schedule-visit-btn {
  background-color: #F3F4F6;
  color: #111827;
    border: 0.72px solid #E5E7EB
}

.custom-care-tabs {
  border-bottom: 1px solid #E5E7EB;
  justify-content: center;
  gap: 40px;
  display: flex !important;
}

.custom-care-tabs .nav-item .nav-link {
 background: none !important;
    color: #4A5565;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.31px;
    padding: 0px 10px;
    border: none;
    border-radius: 0;
    position: relative;
    white-space: nowrap;
      transition: transform 0.5s ease;
}

.custom-care-tabs .nav-item .nav-link.active {
  color: #67132F !important;
  font-size: 16px;
    transition: transform 0.5s ease;
}

.custom-care-tabs .nav-item .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #67132F;
  border-radius: 3px 3px 0 0;
}

.custom-care-tabs li.nav-item {
    max-width: fit-content;
    width: 100%;
}

.header-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
  margin-top: 20px;
}

.tab-feature-icon {
  width: 50px;
  height: 50px;
  background-color: #F4E7EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.tab-feature-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.tab-feature-header h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 0;
}

.tab-feature-header p {
  font-size: 14px;
  color: #4A5565;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}


.meals-nutrition-section .main_title h2 {
  color: #364153;
  margin-bottom: 14px;
}

.care-homes-extension-page .who-is-care-home-section.ccm-section {
    background-color: #fff;
}

.care-homes-extension-page .who-is-care-home-section.ccm-section .tab-content {
    margin-top: 24x;
}

.nutrition-features-card {
    background-color: #F8F9FA;
    border-radius: 20px;
    padding: 27px 16px 26px 16px;
    max-width: 800px;
    margin: 24px auto 0;
    border: 1.44px solid #E5E7EB;
}

.nutrition-features-card h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #4A5565;
    letter-spacing: 0.55px;
    margin-bottom: 20px;
}

.nutrition-features-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nutrition-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nutrition-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nutrition-icon-circle i {
  font-size: 30px;
}

.care-homes-individual-extension-page .who-is-care-home-section.ccm-section {
    background-color:#fff;
}


.care-homes-individual-extension-page .who-is-care-home-section .main_title h2 {
    color: #101828;
}


.care-homes-individual-extension-page .who-is-care-home-section .ccm-card-content p span {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

.care-homes-individual-extension-page .who-is-care-home-section .ccm-card-content p img {
    margin-right: 0;
}

.care-homes-individual-extension-page .who-is-care-home-section .ccm-card-content {
    padding: 18px 18px 24px 18px;
}

.care-homes-individual-extension-page .who-is-care-home-section .slick-dots {
    bottom: -40px !important;
    left: 0;
}

.care-homes-individual-extension-page .who-is-care-home-section .tab-pane>.ccm-slider {
    margin: 0 auto 30px;
    max-width: 100%;
}

.nutrition-feature-item p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #101828;
    letter-spacing: -0.31px;
    margin: 0;
}

.nutrition-blue-bg {
  background-color: #EBF5FF;
}

.nutrition-blue-bg i {
  color: #2563EB;
}

.nutrition-green-bg {
  background-color: #ECFDF5;
}

.nutrition-green-bg i {
  color: #059669;
}

.nutrition-red-bg {
  background-color: #FEF2F2;
}

.nutrition-red-bg i {
  color: #DC2626;
}

.nutrition-purple-bg {
  background-color: #F5F3FF;
}

.nutrition-purple-bg i {
  color: #7C3AED;
}

.nutrition-orange-bg {
  background-color: #FFFBEB;
}

.nutrition-orange-bg i {
  color: #D97706;
}

.nutrition-blue-light-bg {
  background-color: #F0F9FF;
}

.nutrition-blue-light-bg i {
  color: #0EA5E9;
}

.nutrition-pink-bg {
  background-color: #FDF2F8;
}

.nutrition-pink-bg i {
  color: #DB2777;
}


.location-contact-section .main_title {
    margin-bottom: 13px;
}

.location-contact-section .container {
    padding: 0px;
}

.location-container {
  margin: 10px auto 0;
  display: grid;
  gap: 10px;
  align-items: center;
}

.map-view-box {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.map-img {
  width: 100%;
  height: 359px;
  object-fit: cover;
  display: block;
}

.get-directions-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #67132F;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.get-directions-btn i {
  font-size: 20px;
  transform: rotate(-45deg);
}

.contact-info-box {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-left: 30px;
}


.info-icon, .info-icon img {
    max-width: 16px;
    width: 100%;
}


.care-homes-individual-extension-page footer {
    margin:0;
}


.info-text h4 {
  font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
  color: #0A0A0A;
  margin-bottom: 4px;
  font-weight: 400;
  text-transform: uppercase;
}

.info-text p, .nearby-list {
    font-size: 16px;
    color: #364153;
    line-height: 24px;
    letter-spacing: -0.31px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;
}

.nearby-list li {
  margin-bottom: 2px;
}

.location-section {
  background: #FFFBFC;
  padding: 55px 0px;
}

.location-wrapper {
  max-width: 327px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.location-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #101828;
  margin: 0;
}

.location-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 12px;
}

.location-pill {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  background: rgba(103, 19, 47, 0.1);
  border-radius: 999px;
}

.location-pill i,
.location-pill span {
  color: #67132F;
}

.location-pill span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.centered-pill {
  margin-top: 8px;
}

.location-note {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #4A5565;
  margin: 0;
}

.location-contact-btn {
  width: 100%;
  max-width: 272px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #67132F;
  border-radius: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
}

.sl_btm_gap {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .quick-enquiry-card {
    padding: 25px 15px 22px 15px;
    border-radius: 30px;
  }

  .sl_titlle h2 {
    font-size: 30px;
  }

  .slick-arrow {
    display: none!important;
  }


  .rating-stats-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .sl_features_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .care-homes-section .main_title h2,
  .location-contact-section .main_title h2,
  .meals-nutrition-section .main_title h2 {
    font-size: 28px !important;
  }


  .custom-care-tabs {
    gap: 15px;
    justify-content: flex-start;
  }

  .get-directions-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }

}

.alert.alert-success {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #FFF8F8;
  border: 1px solid #ddd;
  padding: 20px 60px;
  display: grid;
  max-width: 300px;
  width: 100%;
  height: 212px;
  font-weight: 700;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.fade-alert {
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

.alert.alert-success button {
  position: absolute !important;
  top: 3px;
  right: 3px;
  font-size: 20px;
  background: #67132F;
  opacity: 1;
  color: #fff !important;
  padding: 11px;
  border-radius: 20px;
  height: 4px;
  width: 4px;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.alert.alert-success i.bi.bi-check-circle-fill {
  font-size: 70px;
  color: #0A7119;
}

/* Clinical Expert page scoped sections */

.clinical-experts-page .banner_wrapper {
    height: 523px;
}

.clinical-experts-page .banner_wrapper:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.clinical-experts-page .as_banner_wrapper .banner_content {
    height: 100%;
}

.clinical-experts-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 0;
}

.cex-journey-card {
    background-color: #F9F5F6;
    border-radius: 40px 40px 0 0;
    padding: 30px 32px 30px 19px;
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid #F1ECEE;
}

.cex-journey-section .cex-journey-card .main_title {
  margin: 0 auto;
  max-width: 240px;
  width: 100%;
}

.experts-care-section .container {
  padding: 0;
}

.cex-steps-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}


.cex-step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.cex-step-number-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.cex-step-num {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
    font-weight: 600;
    color: #E2D1D6;
    font-weight: 700;
    font-family: "Crimson Pro";
}

.cex-step-line {
  width: 1.5px;
  height: 70px;
  background-color: #67132fb5;
  margin: 10px 0;
}

.cex-step-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #67132F;
    margin-bottom: 4px;
    margin-top: 12px;
}
.cex-step-content p {
    font-size: 14px;
    color: #6B6B6B;
    line-height: 18px;
    font-weight: 400;
    margin: 0;
}

.cex-team-member-section {
  padding: 20px 0;
  background-color: #fff;
}


.cex-team-member-section .main_title h2 {
  margin-bottom: 12px;
  color: #67132F;
}


.cex-team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cex-team-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.cex-team-card-info {
  padding: 15px 24px 13px 24px;
  background-color: #F9F5F6;
  text-align: left;
}

.cex-team-role {
    font-size: 14px;
    line-height: 20px;
    color: #6B6B6B;
    letter-spacing: 0;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

.cex-team-name {
    font-size: 20px;
    font-weight: 500;
    color: #67132F;
    margin-bottom: 13px;
    line-height: 21px;
    letter-spacing: 0;
    height: 42px;
}

p.team-quote.cex-team-quote {
    font-size: 14px;
    font-weight: 600;
    color: #6B6B6B;
    line-height: 17px;
    font-style: italic;
    margin-bottom: 20px;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 35px;
}

.slick-slider .slick-list {
    margin: 0 20px 0 15px;
}

.cex-team-profile-btn {
  background-color: #67132F;
  color: #fff;
  padding: 18px 45px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.team-card-info .main_btn a {
  display: block;
  width: 100%;
  text-align: center;
}


.cex-team-profile-btn:hover {
  color: #fff;
}


.cex-care-toggle-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 20px 0;
}

.cex-care-toggle-btn {
    padding: 12px 25px;
    border-radius: 60px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 600;
}

.cex-care-toggle-btn.active {
  background-color: #67132F !important;
  color: #fff !important;
  border: 0.4px solid #67132F !important;

  border-radius: 30px;
}

.cex-care-toggle-btn:not(.active) {
  background-color: transparent;
  color: #67132F;
  border: 0.4px solid #67132F;
  border-radius: 30px;
}

.cex-provide-care-card {
  max-width: 900px;
  margin: 0 auto;
}

.cex-care-card-img img {
    width: 100%;
    height: 184px;
    object-fit: cover;
    border-radius: 24px;
}

.cex-care-card-content {
  padding: 14px 0 0px 0;
  text-align: center;
}

.cex-care-card-content h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    color: #27171C;
    margin-bottom: 13px;
}

.cex-care-list-container {
  display: flex;
  justify-content: center;
}

.cex-care-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}


.cex-care-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    height: auto;
    line-height: 1.1;
}

.cex-care-features-list li i {
  font-size: 28px;
  color: #1F2937;
}

.cex-care-features-list li span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #27171C;
}

.training-standards-section .main_title h2 {
    color: #2D2D2D;
}

.training-standards-section .main_title p {
    color: #6B6B6B;
}

.cex-training-list-container {
  display: flex;
  justify-content: center;
  margin: 0px 0 8px 0;
}

.cex-training-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.cex-training-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  justify-content: center;
}

.cex-training-features-list li i {
  color: #67132F;
  font-size: 16px;
}

.cex-training-features-list li span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #22191B;
}


.cex-quality-badge-wrapper {
  margin-bottom: 17px;
}

.cex-quality-badge {
    background-color: #E8E2E4;
    color: #4A0D21;
    padding: 12px 21px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.35px;
    display: inline-block;
}

.cex-training-slider-wrapper {
  max-width: 850px;
  margin: 0 auto;
}


.clinical-experts-page .news_wrapper {
    background: #fff;
}


.clinical-experts-page footer {
    margin-top: 0px;
}

.cex-slide-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.cex-slide-image-box img {
  width: 100%;
  height: 257px;
  object-fit: cover;
}


.cex-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14.5px 24px;
    background: #0100006B;
    text-align: left;
}



.cex-slide-overlay h3 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.44px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.cex-slide-overlay p {
    font-size: 14px;
    letter-spacing: -0.15px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
}

/* .cex-profile-modal-dialog {
  max-width: 550px;
} */

.cex-profile-modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.cex-profile-modal-body {
  position: relative;
  background-color: #FFF8F8;
  padding: 0;
}

.cex-profile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #E8E0E3;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #67132F;
    z-index: 20;
}

.cex-profile-image-section {
  position: relative;
  width: 100%;
}

.cex-profile-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cex-experience-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F9DAE4;
    color: #67132F;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0;
}

.cex-profile-detail-section {
    padding: 15px 24px 20px 24px;
    text-align: left;
    height: 50vh;
    overflow-y: scroll;
}

.cex-profile-detail-section  h5 {
    font-size: 20px;
    margin-top: 20px;
}

.cex-profile-detail-section .doctor_experience_section ul li {
      font-size: 14px;
    color: #554245;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
    padding-left: 12px;
}

.cex-profile-detail-section .doctor_experience_section ul li:before {
  content: '';
    background-color: #554245;
    position:absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}



.cex-profile-role-badge {
    line-height: 16px;
    display: inline-block;
    background-color: #E3DCDE;
    color: #67132F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.cex-profile-name {
    font-size: 24px;
    font-weight: 500;
    color: #67132F;
    margin-bottom: 13px;
    line-height: 21px;
    letter-spacing: 0;
}

.cex-profile-quote {
    font-size: 14px;
    font-style: italic;
    color: #4B5563;
    line-height: 17px;
    margin-bottom: 20px;
    letter-spacing: 0;
    font-weight: 600;
}

.cex-profile-info-grid {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cex-profile-info-box {
    flex: 1;
    background: #F2E9EC;
    padding: 7px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cex-profile-info-box i {
  color: #67132F;
  font-size: 18px;
}

.cex-profile-info-box span {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
}

.cex-profile-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #E5E7EB;
    gap: 0;
}

.ccm-card-para {
    text-align: left;
    margin-top: 8px !important;
}

.cex-stat-item {
  text-align: center;
}

.cex-stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
}

.cex-stat-item p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.cex-profile-bio {
    font-size: 14px;
    color: #554245;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 400;
}

.cex-contact-wrapper .cx-icon i {
  font-size: 22px;
  color: #67132F;
}

.sl_virtual_tour_section .home_about_video iframe {
    border: 0;
    border-radius: 10px;
    height: 591px;
}

.sl_virtual_tour_section .container {
    padding: 0px 12px;
}

.gapping.sl_virtual_tour_section .main_title {
  margin-bottom: 20px;
}

.video-container button {
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 25px 50px -12px #00000040;
  background: #FFFFFF57;
  transform: translate(-50%, -50%);
  border: 0;
  color: #67132F;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  width: 100%;
  font-size: 28px;
}



.video-container video {
  width: 100%;
  border-radius: 10px;
  height: 591px;
  object-fit: cover;
}

.vt_wrapper .home_about_video {
  border: 0;
}

.ur_solution_wrapper.residences {
  padding: 0;
  background-color: transparent;
  margin-top: 43px;
}

.ur_solution_wrapper.residences .slick-slide {
  margin-left: 6px;
  margin-right: 6px;
}



.ur_solution_wrapper.residences .slick-prev,
.ur_solution_wrapper.residences .slick-next {
  display: none !important;
}


.healing-environment-section {
    overflow: hidden;
    background: #FFFBFC;
}

.healing-environment-section .main_title {
    margin: 0 auto;
    margin-bottom: 42px;
    max-width: 340px;
}

.care-at-home-service-page .news_wrapper {
    background: #fff;
}

.map-embed {
  margin-bottom: -7px;
}

.care-at-home-service-page .fs_box_content {
    padding: 16px 16px;
    /* height: 240px; */
}

.care-at-home-service-page footer {
    margin-top: 0;
}

.healing-feature-item img {
  max-width: 30px;
  width: 100%;
      margin-bottom: 12px;
}

.healing-feature-item h3 {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
    font-weight: 500;
    color: #47001B;
}

.healing-features-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    text-align: center;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}


.care-at-home-service-page .banner_btm_content ul {
    margin-top: 30px;
}

.care-at-home-service-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
    margin-bottom: 14px;
}

.care-at-home-service-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 33px;
}

.care-at-home-service-page .as_banner_wrapper .banner_content {
    height: 100%;
}

.care-at-home-service-page .care_at_home_flex {
    margin-top: 0;
}

.care-at-home-service-page .container.pl_container {
    padding: 0;
}

.care-at-home-service-page .care_at_home_content {
    padding: 22px 15px 28px 15px;
    background: #F7F1F3;
}

.care-at-home-service-page .cx-contact-wrapper {
  padding-bottom: 0;
}


.care-at-home-service-page .antara-work-section .main_title h2 {
    color: #47001B;
}

.care-at-home-service-page .antara-work-section .main_title p {
    color: #47001B;
}

.care-at-home-service-page .antara-work-section .antara-step p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
    font-weight: 500;
    margin-top: 9px;
    color: #47001B;
}

.care-at-home-service-page .ccm-section.ccm_crd {
    margin-top: 0 !important;
    padding: 30px 0;
}


.cx-input {
    color: #999; /* Placeholder color */
}

.cx-input:valid {
    color: #000; /* Selected option color */
}

.cx-input option[value=""] {
    color: #999;
}


.care-homes-individual-extension-page .banner_wrapper {
    height: 458px;
    padding-top: 60px;
}

.care-homes-individual-extension-page .as_banner_wrapper .banner_content {
  height: 100%;
}

.care-homes-individual-extension-page .banner_wrapper.as_banner_wrapper .banner_content h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 40px;
}

.care-homes-individual-extension-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 0px;
}

.care-homes-individual-extension-page .as_banner_wrapper.banner_wrapper .hero_tagline {
  margin-bottom: 12px!important;
      color: #FFFFFFE5;
}

.care-homes-individual-extension-page .banner_btm_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    background: transparent;
    padding: 0px 8px;
    border-radius: 0;
    max-width: 375px;
    margin: 0 auto;
    margin-top: 45px;
    border: 0;
}

.care-homes-individual-extension-page .banner_btm_content ul li:first-child {
    display: none;
}
.care-homes-individual-extension-page .banner_btm_content ul i {
    display: none;
}

.care-homes-individual-extension-page .banner_btm_content ul li.lcn:after {
    display: none;
}

.care-homes-individual-extension-page .banner_btm_content ul li.lcn {
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    background: #FFFFFF33;
    border-radius: 30px;
    padding: 9px 18px;
    width: 100%;
    white-space: nowrap;
    max-width: fit-content;
}


.care-homes-extension-page .banner_wrapper {
    width: 100%;
    height: 458px;
}

.care-homes-extension-page .as_banner_wrapper .banner_content {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
    height: 100%;;
}

.care-homes-extension-page .as_banner_wrapper.banner_wrapper .banner_content p {
    margin-bottom: 0px;
}

.care-homes-extension-page .as_banner_wrapper.banner_wrapper .container {
    position: absolute;
    /* bottom: 84px; */
    bottom: 9vh;
}

.care-homes-extension-page .form_banner_bg {
    padding-bottom: 0;
}

.care-homes-extension-page  .iti {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.care-homes-extension-page .m_view {
    background-color: #fff;
    padding-top:0px;
}

.care-homes-extension-page  .m_view p {
    color: #4A5565;
    font-size: 16px;
    line-height: 24px;
}

.care-homes-extension-page .sl_features_grid {
    background-color: #FFF8F8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 49px 43px;
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
}

.care-homes-extension-page .sl_features_section .container {
  padding: 0;
}

.care-homes-extension-page .sl_features_section .sl_feature_item {
    padding: 0px 0;
}

.care-homes-extension-page  .sl_sub_heading {
    margin-bottom: 20px;
    margin-top: 0;
}


.care-homes-extension-page  .sl_feature_icon {
    margin-bottom: 12px;
    padding: 0;
}


.not_found_items {
    text-align: center;
    font-size: 18px;
    color: #101828;
    margin: 30px auto;
    font-weight: 500;
}



/* ============================Terms Of Use Page============================ */
.prv_hero_banner {
    height: 75vh;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.prv_hero_banner:before {
      background-color: #00000054;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
}

.prv_hero_banner h1 {
    font-size: 42px;
    color: #fff;
    position: relative;
    font-weight: 700;
}

.prv_wrapper {
    margin-top: 50px;
}

.prv_box {
    display: flex;
    gap: 15px;
    max-width: 400px;
    width: 100%;
    align-items: center;
}

.prv_box img {
    max-width: 35px;
    /* width: 100%; */
}

.prv_box_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 17px;
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.prv_box h5 {
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
}

.prv_box h5 a {
    font-size: 15px;
    font-weight: 100;
    color: #000;
}

.prv_wrapper .main_title h2 {
    text-align: center;
    color: #600733;
}

.container.mt-4 {
  padding: 0;
}

.prv_wrapper .main_title h4 {
    font-weight: 500;
    text-align: center;
    color: #600733;
    margin-bottom: 60px;
    margin-top: 40px;
}

.terms-wrapper h2 {
    font-size: 30px;
    color: #67132f;
    margin-bottom: 30px;
}

.terms-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Content area */
.terms-wrapper .terms-content {
    max-width: 800px;
    text-align: left;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* TITLE */
.terms-wrapper .main-title {
    font-size: 36px;
    font-weight: 600;
    color: #7A1E2C;
    text-align: center;
}

.terms-wrapper .subtitle {
    color: #7A1E2C;
    margin-top: 10px;
}

/* SECTION HEADING */
.terms-wrapper .section-heading {
    font-size: 24px;
    font-weight: 600;
    color: #7A1E2C;
    margin-top: 25px;
    margin-bottom: 15px;
}

.section-paragraph a {
  color: #7A1E2C;
}

.terms-wrapper .section-paragraph p {
    position: relative;
    padding-left: 20px;
       color: #4A5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

.terms-wrapper .section-paragraph p b {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    /* position: absolute; */
    top: 0;
    left: 0;
}

.terms-wrapper .section-paragraph h4 {
    font-size: 16px;
}

/* PARAGRAPH */
.terms-wrapper .section-paragraph {
    font-size: 16px;
    color: #333;
    line-height: 1.9;
}

/* BOLD NUMBERING (1.1, 1.2 etc) */
.terms-wrapper .section-paragraph p strong {
    font-weight: 700;
}

/* BULLET POINTS */
.terms-wrapper .section-paragraph ul {
    list-style: none;
    padding-left: 20px;
}

.terms-wrapper .section-paragraph ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
        color: #4A5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

.terms-wrapper .section-paragraph ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #7A1E2C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.terms-wrapper .section-paragraph ol {
    padding-left: 45px;
    margin-bottom: 24px;
}

.terms-wrapper .section-paragraph ol li {
    margin-bottom: 10px;
          color: #4A5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
}

/* Bold numbers */
.terms-wrapper .section-paragraph ol li::marker {
    font-weight: 700;
    color: #000;
}

.terms-wrapper .terms-contact {
    background: #fff;
}

.terms-wrapper .company-card {
    padding: 10px 20px;
}

.terms-wrapper .company-card h5 {
    color: #7A1E2C;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.terms-wrapper .company-card p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-wrapper .company-card strong {
    font-weight: 600;
}

.care-see-more-ctr button {
  color: #67132f!important;
  font-weight: 600;
  border-bottom: 1px solid !important;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  background: transparent !important;
  border: 0;
  padding: 20px 0 0 0;
  box-shadow: none;
  max-width: fit-content;
  border-radius: 0;
  margin: 0 auto;
}

.care_at_home_wrapper .care-service-hidden-mobile,
.care_at_home_wrapper .care-service-hidden-desktop {
  display: none;
}

.care_at_home_wrapper.is-expanded .care-service-hidden-mobile,
.care_at_home_wrapper.is-expanded .care-service-hidden-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .care_at_home_wrapper:not(.is-expanded) .care-service-hidden-mobile {
    display: block;
  }

  .care_at_home_wrapper:not(:has(.care-service-hidden-desktop)) .care-see-more-ctr {
    display: none !important;
  }
}