/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #281808;
	--secondary: #8f845b;
}
section {
  scroll-margin-top: 70px; /* height of your header */
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
      left: 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
   background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    border-radius: 12px;
	border: none;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: var(--primary);
    height: 25vh;
    position: relative;
    padding: 0;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff !important;
}
.breadcrumb-title h2 {
    color:#fff;
}
li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    background: var(--primary);
    color: #ffffff;
    text-align: center;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 22px;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 400;
    position: relative;
    text-decoration: none;
    color: #fff;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #baad7b26;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
	border: 1px solid var(--primary);
    display: inline-block;
}
a.btn-secondary {
    background: transparent;
    padding: 10px 30px;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--primary);
}
.btn-box {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
section.rider .btn-box {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}
.btn-div {
    text-align: center;
    margin-top: 1.5rem;
}
.support-inner {
    border: 1px solid #28180830;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
}
/* Hero Section */
.logo-box a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 28px;
}
.memorial-hero{
    position: relative;
    min-height: 100vh;
    background: url('https://nicholaslaureys.com/wp-content/uploads/2026/06/hero-bg.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
	padding: 0;
}
.memorial-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.memorial-hero .container{
    position: relative;
    z-index: 2;
}
.hero-content{
    max-width: 700px;
}
.hero-content .subtitle {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #e5d8c3;
    font-weight: 700;
}
.hero-content h3{
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-content h4{
    font-size: 24px;
    margin-bottom: 25px;
    color: #e5d8c3;
    font-weight: 400;
}
.hero-content p{
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}
section{
	padding: 70px 0 0;
}
.heading{
	font-size: 35px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--primary);
}
.sub-heading {
    position: relative;
    font-size: 18px;
    color: var(--secondary);
    padding-left: 20px;
    margin: 0;
    display: inline-block;
    padding: 8px 20px 8px 40px;
    border-radius: 20px;
    border: 1px solid #baad7b7a;
	margin-bottom: 20px;
}
.sub-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--secondary);
}
.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img img {
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #80808069;
}
section.about {
    position: relative;
}
.floating-image {
    position: absolute;
    right: 3%;
    top: 6%;
}
.floating-image{
	width: 20%;
    opacity: 0.5;
	animation: floatXY 8s ease-in-out infinite;
}
section.about h6 {
    color: var(--secondary);
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}
section.meet {
    background: url(https://nicholaslaureys.com/wp-content/uploads/2026/06/meet-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding: 70px 0;
    margin-top: 70px;
    color: #fff;
}
section.meet .heading {
    color: var(--secondary);
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}
section.gallery img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
section.gallery img:hover {
    transform: scale(1.05);
}
section.gallery {
    padding: 70px 0;
}
section.remember {
    position: relative;
    background: url('https://nicholaslaureys.com/wp-content/uploads/2026/06/rember-bg.webp');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 70px 0;
    margin-top: 70px;
    overflow: hidden;
}

section.remember::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.41); /* Adjust opacity here */
    z-index: 1;
}

section.remember > * {
    position: relative;
    z-index: 2;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--secondary);
}
section.remember .heading{
	color: var(--secondary);
}
.gallery .swiper-button-prev,
.gallery .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery .swiper-button-prev:hover,
.gallery .swiper-button-next:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.gallery .swiper-button-prev::after,
.gallery .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

/* Position */
.gallery .swiper-button-prev {
    left: 0;
}

.gallery .swiper-button-next {
    right: 0;
}

#galleryTab .nav-link {
    padding: 10px 25px;
    border-radius: 50px;
    color: #333;
    font-weight: 600;
    margin: 0 5px;
}

#galleryTab .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.gallery-item img,
.gallery-item iframe {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    height: 350px;
    object-fit: cover;
}
/* Continue Support Page */
section.support-hero .container-fluid {
    margin: 0;
    padding: 0;
}
section.support-hero {
    padding: 0;
}
section.support-hero img {
    width: 100%;
    height: auto;
    position: relative;
}
section.support-hero a.btn-primary {
    position: absolute;
    bottom: 25%;
    left: 5%;
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    border: navajowhite;
}
section.support-hero a.btn-primary1 {
    position: absolute;
    bottom: 25%;
    right: 5%;
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    border: none;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}
section.support-hero{
	position: relative;
}
.quote {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    border-radius: 4px;
}
.section-header {
    width: 50%;
    margin: 0 auto 2rem;
    text-align: center;
}
.safety-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}
.safety-card:hover {
 transform: translateY(-8px);
}
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 15px;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.request-form {
    background: #fff;
    padding: 30px;
    width: 70%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid #2818086b;
}
section.request-section {
    padding: 70px 0;
}
.safety-card p {
    margin-bottom: 0;
}

/* Memory Page */


.memories-section{
    position:relative;
}

.memory-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    height: 300px;
    border: 1px solid;
}

.memory-card h3 {
    margin-bottom: 5px;
    text-align: end;
    font-size: 24px;
}

.relationship {
    display: block;
    color: #3c3b3b;
    /* margin-bottom: 15px; */
    text-align: end;
}

.memory-message {
    height: 170px;
    overflow-y: auto;
    line-height: 1.7;
    padding-right: 10px;
    text-align: center;
}
.memory-btn-wrap {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.memory-open-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    border-radius: 12px;
}

.memory-modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
}

.memory-modal-content{
    background:#fff;
    width:90%;
    max-width:600px;
    margin:80px auto;
    padding:30px;
    border-radius:15px;
    position:relative;
}

.memory-close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:28px;
    cursor:pointer;
}

#memoryForm input,
#memoryForm textarea{
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border:1px solid #ddd;
}

#memoryForm textarea{
    height:150px;
    resize:none;
}

#memoryForm button{
    background:#000;
    color:#fff;
    border:none;
    padding:12px 25px;
    cursor:pointer;
}

.memory-response{
    margin-top:15px;
    font-weight:600;
}
.memoriesSwiper{
    position:relative;
}

/* Navigation Arrows */
.memory-prev, .memory-next {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.memory-prev{
    left:0;
}

.memory-next{
    right:0;
}

.memory-prev:hover,
.memory-next:hover{
    background:#333;
    transform:translateY(-50%) scale(1.05);
}

.memory-prev i,
.memory-next i{
    font-size:18px;
}
section.memorial {
    padding: 70px 0;
}
.mobile-menu-header a {
    color: var(--primary);
    text-decoration: none;
}
.donation-btn .asp_product_name {
    display: none;
}
.donation-btn .asp_product_description {
    margin: 0 !important;
    border-bottom: none !important;
}
.donation-btn .asp_product_item {
    display: block;
    border: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
.donation-btn .btn-secondary{
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    display: inline-block;
    background: transparent;
    margin: 0;
}
/* Responsive */
@media(max-width:1200px){
	
}
@media(max-width:1024px){
	
}
@media(max-width:991px){
	
}
@media(max-width:767px){
    
    .memory-prev,
    .memory-next{
        width:40px;
        height:40px;
    }
    .memory-prev i,
    .memory-next i{
        font-size:14px;
    }
	.hero-content h3{
		font-size: 42px;
	}
	section {
		padding: 35px 0 0;
	}
	section.remember,
	section.meet{
		margin-top: 35px;
		padding: 35px 0;
	}
	section.gallery{
		padding: 35px 0;
	}
	.heading{
		font-size: 28px;
	}
	.request-form{
		width: 100%;
	}
	.section-header {
		width: 100%;
		margin: 0 auto 2rem;
		text-align: center;
	}
	section.request-section {
		padding: 35px 0;
	}
}
@media(max-width:667px){
	
}
@media(max-width:568px){
	.hero-content h3 {
		font-size: 35px;
	}
	.hero-content h4 {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.floating-image{
		display: none;
	}
	.heading {
		font-size: 25px;
	}
	footer h3 {
		margin-bottom: 10px;
		font-size: 28px;
	}
	.hero-content p {
		font-size: 16px;
	}
}
@media(max-width:479px){
	
}
@media(max-width:414px){
	.memory-btn-wrap {
		text-align: center;
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		flex-direction: column;
	}
	.btn-box {
		display: flex;
		gap: 20px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	section.memorial {
		padding: 35px 0;
	}
	.memory-card,
	.memory-message{
		height: auto;
	}
	section.support-hero a.btn-primary,
	section.support-hero a.btn-primary1{
		padding: 5px 18px;
		font-size: 16px;
	}
	.logo-box a h2 {
		font-size: 20px;
	}
}
@media(max-width:375px){
	
}
@media(max-width:360px){
	
}
@media(max-width:325px){
	
}