:root {
  --purple-dark: #35103b;
  --purple: #574398;
  --purple-light: #f2e9ff;
  --black: #242424;
  --light-bg: #f0f7fc;
  --white: #ffffff;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  font-family: "PT Sans", sans-serif;
}
p {
  color: var(--black);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--purple);
  font-family: "Antic Slab", serif;
  font-weight: 400;
}
a {
  color: var(--black);
}
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}
.btn-primary {
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 0px;
  background-color: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transition: all 0.3s linear;
  font-weight: 700;
  margin-top: 10px;
}
.btn-primary:hover {
  background-color: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--white);
}
.top-header {
  background-color: var(--purple);
  padding: 10px 0px;
}
.header-contact-left li a,
.header-contact-left li {
  color: var(--white);
}
.header-contact-left i {
  margin-right: 8px;
}
.header-contact-left {
  margin: 0px;
}
.header-contact-left li {
  margin-right: 10px;
}
.navbar-brand {
  height: auto;
  padding: 25px 10px;
  margin: 0px;
}
.navbar-brand > img {
  display: block;
  margin: 0px auto;
}
nav.navbar.bootsnav .navbar-nav > li > a {
  color: var(--black);
  padding: 15px 10px;
  font-size: 16px;
  margin: 25px 0px;
  font-weight: 700 !important;
}
nav.navbar.bootsnav .navbar-nav > li > a:hover {
  color: var(--purple-dark-light);
}
.navbar-right {
  float: right !important;
}
nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
  background-color: var(--purple2);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a:hover {
  background-color: var(--purple-dark);
  color: var(--white);
  transition: all 0.3s linear;
}
nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu {
  padding: 0px !important;
  border: none;
  background-color: var(--purple);
}
nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
  padding: 10px 10px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus,
nav.navbar.bootsnav .navbar-toggle {
  color: var(--white);
  padding: 6px 10px 2px 10px;
  cursor: pointer;
  background: var(--purple);
}
button.navbar-toggle .fa-bars {
  font-size: 22px;
}
nav.navbar.bootsnav {
    background-color: var(--white);
    box-shadow: 0.2px 0.2px 10px rgb(52 52 52 / 78%);
}
.navbar-nav.breadcrumb > li + li:before {
  display: none;
}
.carousel-caption {
  margin: 0px;
  background-color: transparent;
  left: 15%;
  right: 0;
  text-align: left;
}
.carousel-caption h1 {
  font-size: 48px;
  color: var(--white);
  text-align: left;
  display: none;
}
.carousel-caption a {
  background-color: #574398;
  height: auto;
  line-height: normal;
  padding: 15px 10px;
}
/* Carousel Fade Effect */
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.8s; /* Adjust speed here */
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/* This prevents the "slide" animation from flickering during the fade */
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.section-title {
  margin-top: 20px;
  font-size: 36px;
  margin-bottom: 20px;
}
.about-left img {
  border-radius: 10px;
  width: 100%;
}
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--purple);
    font-family: 'PT Sans', sans-serif;
}
.title-rule {
    width: 48px;
    height: 4px;
    background: var(--purple-dark);
    border-radius: 2px;
    margin: 10px 0px;
}
.py-5 {
  padding: 60px 0px;
}
.care-link {
    font-size: 20px;
    margin-bottom: 20px;
}
.care-link a {
    text-decoration: underline;
    text-underline-offset: 5px;
}
.purpose-section {
  background-color: var(--purple-light);
}
.del-space {
  display: none;
}
.purpose-header {
  margin-bottom: 40px;
}
.purpose-header .section-title {
    margin-bottom: 10px;
    margin-top: 20px;
}
.purpose-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  border: 1px solid var(--purple-light);
  border-top: 4px solid var(--purple);
  transition: box-shadow 0.25s, transform 0.2s;
}
.purpose-card:hover {
  box-shadow: 0 10px 32px rgba(26, 128, 182, 0.12);
  transform: translateY(-4px);
}
.purpose-card h4 {
    font-size: 24px;
}
.purpose-icon {
  width: 54px;
  height: 54px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.title-rule.mx-auto {
    margin: 10px auto;
}
.ask-text {
  font-size: 22px;
  color: var(--purple);
  font-weight: 700;
}
.ask-for-list li {
  margin-bottom: 10px;
}
.ask-for-list i {
  color: var(--purple);
  margin-right: 10px;
}
.ask-for-list {
  margin-bottom: 20px;
}
.equal-left img {
  width: 100%;
}
.hospice-provide-section {
  background-color: var(--light-bg);
}
.team-member {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 15px 20px;
  gap: 20px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  border: 1px solid #ddeef8;
  border-left: 4px solid var(--purple);
  transition: box-shadow 0.2s;
}
.team-member:hover {
  box-shadow: 0 4px 16px rgba(26, 128, 182, 0.1);
}
.team-member .icon {
  color: var(--purple);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 10px;
}
.team-member strong {
  font-size: 16px;
  color: var(--purple);
  display: block;
  font-weight: 700;
}
.team-member p {
    margin: 0px;
}
.highlight-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddeef8;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s;
}
.highlight-card:hover {
  box-shadow: 0 10px 30px rgba(26, 128, 182, 0.13);
  transform: translateY(-4px);
}
.highlight-card .card-img-wrap {
  height: 300px;
  overflow: hidden;
}
.highlight-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.highlight-card:hover .card-img-wrap img {
  transform: scale(1.04);
}
.highlight-card .card-body {
  padding: 24px;
}
.highlight-card .tag {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.highlight-card h5 {
  color: var(--purple-dark);
  margin-bottom: 10px;
  font-size: 22px;
}
.highlight-card p {
  margin: 0;
  line-height: 1.6;
}
.highlight-card .card-link {
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.highlight-card .card-link:hover {
  color: var(--purple-dark);
}
.care-row{
  display: flex;
  flex-wrap: wrap;
}
.care-col{
  display: flex;
  flex-direction: inherit;
}

.cta-section {
  background-color: var(--purple);
  border-top: 5px solid var(--purple-dark);
  padding: 50px 0px;
}
.cta-header h2 {
  color: var(--white);
  font-size: 36px;
  margin-top: 0px;
}
.cta-header p {
  color: var(--white);
}
.contact-buttons .btn-cta-green {
  background-color: var(--purple-dark);
  border: 1px solid transparent;
  display: inline-block;
  padding: 12px 25px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 0.5px;
  margin-right: 15px;
}
.contact-buttons .btn-cta-outline-white {
  background-color: transparent;
  border: 1px solid #ffffff;
  display: inline-block;
  padding: 12px 25px 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.contact-buttons {
  margin-top: 30px;
}
.footer-tagline {
  color: #ccc;
  margin: 15px 0px;
}
.footer-logo-info .mt-3,
.footer-logo-info .mt-3 a {
  color: var(--white);
}
.footer-logo-info .mt-3 i {
  margin-right: 10px;
}
.menu-links h5 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
}
.menu-links a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
}
footer {
  border: none;
  background-color: var(--purple-dark);
  padding-top: 60px;
}
.copy p,
.power p {
  margin: 0px;
  color: #ccc;
}
.power p a {
  color: #ffffff;
}
.bottom-footer {
  padding-top: 0px;
  padding-bottom: 30px;
}
.footer-row {
  margin-bottom: 45px;
}
.donate-cc {
    width: auto;
}
/*--inner--pages--*/
.post-content blockquote {
    background: #f6f3f3;
    border-left: 3px solid #1a80b6;
}
.support img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.support h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.support h4 a{
  color: #000;
}
.click-photo-text {
    font-size: 16px;
    margin: 20px 0px;
}
.donate-cc {
    width: auto;
    border: none;
}
.donor-wall-text {
    font-size: 20px;
    margin-top: 20px;
}
.wp-image-511 {
    display: block;
    margin-bottom: 20px;
}
.wp-block-heading {
    font-size: 16px;
    line-height: 28px;
}
.wp-image-294 {
    margin-bottom: 20px;
}
.wp-block-gallery .wp-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.wp-image-250, .wp-image-393 {
    margin-top: 20px;
    margin-bottom: 30px;
}
.wp-image-199, .wp-image-584 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.wp-image-41 {
    width: 100%;
    height: auto !important;
}
.new-menu {
    list-style-type: none;
}
.new-menu a {
    display: block;
    border-bottom: 1px solid #e7e6e6;
    color: #838383;
    padding: 10px;
    padding-left: 0;
}
.del-space{
  display: none;
}
.memorial-row img {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
.new-menu .fa-angle-right {
    margin-right: 5px;
}
.memories-image figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}
.page-section .home-title {
    padding-top: 20px;
    font-weight: 600;
}
.support {
    margin-top: 20px;
}
.provide-list li {
    margin-bottom: 5px;
}
/*--faq--page--*/
.faq-block .panel-default > .panel-heading {
    padding: 0px;
}
.faq-block .panel .panel-title > a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
}
.faq-block .panel-heading a .accordion-toggle-icon {
  margin-right: 8px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
  font-weight: 900; 
}
.faq-block .panel-heading a .accordion-toggle-icon::before {
  content: "\f068"; 
  color: #31708f; 
}
.faq-block .panel-heading a.collapsed .accordion-toggle-icon::before {
  content: "\f067"; 
  color: #31708f; 
}
.faq-block .panel-heading a:hover, 
.faq-block .panel-heading a:focus {
  text-decoration: none;
}
a:focus{
  outline: none;
}
.faq-block .panel {
    margin-bottom: 15px;
}
.grief-support-block h3 {
    font-size: 20px;
    line-height: 30px;  
} 
.grief-support-block ul {
    text-align: left;
    margin: 0px auto;
    display: table;
}
.grief-support-block ul li, .resources-content ul li{
  margin-bottom: 5px;
}
._3dy3 {
    font-size: 14px;
    font-style: italic;
    line-height: 23px;
}
.resources-content h2 {
    font-size: 24px;
    color: #333;
}
.page-section .resources-content h1 {
    font-size: 32px;
    color: #000;
    margin-top: 20px;
    font-weight: 600;
}
.events-posts-img img {
    width: 250px;
}
.events-posts-img {
    margin-top: 20px;
}
.page-section h1:first-child {
    margin-top: 5px;
    font-size: 32px;
    font-weight: 600;
}
.wp-block-gallery .wp-image-235 {
    width: 100%;
    height: auto !important;
    margin: 20px 0px;
} 
.support-link {
    font-size: 24px;
    line-height: 1.5;
}
.mail-link {
    color: var(--black);
}
.mail-link:hover{
  color: var(--black);
  text-decoration: underline;
}

@media screen and (min-width: 1200px) {
  .section-title {
    font-size: 42px;
  }
  .about-links {
    padding-left: 20px;
  }
  .about-left {
    padding-left: 50px;
  }
  .equal-content {
    padding-left: 30px;
  }
  body, p{
    font-size: 18px;
  }

  
  .modal-dialog {
    width: 1024px;
  }

}

@media screen and (min-width: 1400px) {
  .container {
    width: 1320px;
  }
  .carousel-caption h1 {
    font-size: 60px;
  }
  nav.navbar.bootsnav .navbar-nav > li > a, nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a{
    font-size: 18px;
  }
  nav.navbar.bootsnav .navbar-nav > li > a{
    margin:25px 5px;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-brand > img {
    width: 300px;
  }
  nav.navbar.bootsnav .navbar-nav > li > a {
    font-size: 14px;
    padding: 15px 7px;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 991px) {
  .header-contact-left li {
    font-size: 14px;
  }
  nav.navbar.bootsnav .navbar-nav > li > a{
    margin: 0px;
  }
  .navbar-default .navbar-brand {
    float: none !important;
    padding: 0px;
    margin: 0px !important;
    text-align: center;
  }
  .navbar-header {
    float: none;
  }
  .navbar-brand > img{
    width: auto;
    padding-top: 6px;
  }
  .purpose-card, .highlight-card {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .header-contact-left {
    text-align: center;
  }
  nav.navbar.bootsnav .navbar-nav > li > a {
    margin: 0px;
    padding: 10px;
    font-size: 16px;
  }
  .carousel-caption {
    top: 30%;
  }
  .carousel-caption h1 {
    font-size: 30px;
  }
  .header-contact-left {
    text-align: center;
  }
  ul.header-contact-left.pull-right {
    float: none !important;
    text-align: center;
    margin-top: 6px;
  }
  .exp-legal-content, .equal-left {
    margin-bottom: 30px;
  }
  .footer-row .col-xs-12 {
    margin-bottom: 20px;
  }
  ul.nav.navbar-nav.navbar-right.breadcrumb{
    padding: 0px;
  }
  .care-row, .care-col{
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .navbar-brand > img{
    width: 250px;
  }
  nav.navbar.navbar-default.navbar-sticky.bootsnav{
    padding: 6px 0px;
  }
  .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, 
  nav.navbar.bootsnav .navbar-toggle {
    top: 0px;
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 8px 3px;
  }
  .carousel-caption{
    display: none;
  }
  .carousel-inner > .item::before{
    content: "";
    background: transparent;
  }
  .py-5{
    padding: 30px 0px;
  }
  .section-title, .cta-header h2 {
    font-size: 30px;
  }
  footer {
    padding-top: 40px;
  }
  .footer-row {
    margin-bottom: 0px;
  }
  .contact-buttons .btn-cta-green {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  button.navbar-toggle .fa-bars {
    font-size: 18px;
  }
}


