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

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #c938a7;
  --theme-color-second: #fff;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "Lato", sans-serif;
  /* --paragraph-font: "Urbanist", sans-serif; */
  --span-font: "Angelyn";

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--heading-font);
}

/* Font Face */
@font-face {
  font-family: "Angelyn";
  /*src: url(../fonts/Angelyn\ Regular.ttf);*/
}

@font-face {
  font-family: "";
  src: url();
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;

}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 55px;
}

h2 {
  font-size: 38px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
  font-weight: 500;
}

h4 {}

h5 {
  font-size: 21px;
}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #c938a7;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #c938a7;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
}

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 13px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
}

a.comon-btn:hover {
  background: #f1f1f1;
  color: var(--theme-color-third);
}
a.comon-btn2 {
  background: #ffffff1c;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid #fff;
}


a.comon-bt {
  background: #fff;
  color: var(--theme-color-third);
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid #fff;
}

a.comon-btn2:hover {
  background: #f1f1f1;
  color: var(--theme-color-third);
}

a.comon-btn3 {
  background: #c938a714;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid var(--theme-color);
}

a.comon-btn3:hover {
  background: #f1f1f1;
  color: var(--theme-color-third);
}

a.comon-btn4 {
  color: #000;
  display: flex;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  align-items: center;
  gap: 10px;
}

.comon-btn4 i {
  width: 45px;
  height: 45px;
  background: var(--theme-color);
  color: var(--theme-color-second);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}

a.navbar-brand img {
  width: 160px;
}

.header_menu li a {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  padding: 15px 0;
  display: inline-block;
  padding-left: 21px;
}

.header_menu .navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

hr {
  margin: 0 0;
  color: inherit;
  border: 0;
  border-top: 1px #fff solid;
  opacity: .25;
}

.header_menu .top_bar a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.header_menu .top_bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  justify-content: end;

}

.header_menu .top_bar img {
  width: 40px;
}

/* Banner Section */
.banner_sec {
  padding: 200px 0 60px;
  color: #fff;
}

.banner_sec h3 {
  font-family: var(--span-font);
  font-size: 38px;
  background: linear-gradient(to right, #c938a7 0%, #fff 40%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -10px;
}

.banner_sec p {
  font-size: 18px;
  line-height: 1.7;
}

.banner_sec .btom_content a img {
  width: 18px;
  margin-bottom: 0;
}

.banner_sec .btom_content a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid #fff;
  width: 190px;
}

.banner_sec .btom_content img {
  width: 185px;
  margin-bottom: 5px;
}

.banner_sec .btom_content {
  display: flex;
  flex-direction: column;
  padding-top: 145px;
}

/* ************* */

.home_sec1 h2 span {
  color: var(--theme-color);
}

/* ***** */
.home_sec2 .social_info i {
  width: 40px;
  height: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 20px;
  border: 1px solid #000;
}

.home_sec2 .social_info a {
  color: #000;
}

.home_sec2 .social_info {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  margin-top: -40px;
}

/* ************ */
.faqs .accordion-button:not(.collapsed)::after {
  background-image: url('../image/minus.png');
}

.faqs .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  content: "";
  background-image: url('../image/plus.png');
  background-repeat: no-repeat;
}

.faqs .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 17px;
  color: #000 !important;
  text-align: left;
  border: 0;
  border-radius: 0;
  font-family: "Poppins", serif;
  overflow-anchor: none;
  padding: 18px 19px;
  background: #ebebeb;
}

.faqs .accordion-body p {
  margin-bottom: 10px;
  font-size: 16px;
}

.faqs button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.faqs-bg-black .accordion-button {
  color: #000 !important;
  background: #dedede !important;
}

.faqs-bg-black .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: #000;
  box-shadow: inset 0 -1px 0 #000;
}

.faqs-bg-black .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #000 !important;
  box-shadow: inset 0 -1px 0 #000;
}

.faqs .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 9px;
}

.faqs .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: var(--theme-color);
  box-shadow: inset 0 -1px 0 var(--theme-color);
}

.faqs .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  background: var(--theme-color);
  color: #fff;
  padding-top: 0;
}

/* *********** */
.home_sec3 .bg-image h2 {
  text-transform: uppercase;
}

.home_sec3 .bg-image h5 {
  text-transform: uppercase;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 80%);
  color: #000;
  font-size: 20px;
  font-weight: 300;
  display: inline-block;
  padding: 13px 240px;
}

.home_sec3 .bg-image {
  padding: 510px 0 40px;
  border-radius: 10px;
  color: #fff;
}

/* ******** */
.home_sec4 .btom_content {
  border-left: 1px solid var(--theme-color);
  padding-left: 16px;
}

/* ********** */
.home_sec5 .left_content {
  border-left: 1px solid var(--theme-color);
  padding-left: 16px;
}

.home_sec5 .heading h6 {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 600;
}

.home_sec4 a.comon-btn3 {
  background: #c938a714;
  color: #000;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid var(--theme-color);
}

.home_sec4 a.comon-btn3:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

/* Contact Us */
.home_sec6 {
  color: #000 !important;
}

.home_sec6 .contact_info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #fff;
}

.home_sec6 .contact_info ul li a {
  color: #fff;
}

.home_sec6 .contact_info ul li i {
  font-size: 24px;
}

.home_sec6 .bg-blur {
  padding: 38px 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid #bcbcbc;
  border-radius: 20px;
  color: #fff;
}

.home_sec6 ul li {
  display: flex;
  align-items: start;
  gap: 11px;
}

.home_sec6 ul li img {
  width: 40px;
}

/* FOOTER SEC */
.footer {
  padding: 70px 0 30px;
  color: #fff;
  background-position: 100% 0% !important;
}

.footer h5 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 21px;
}

.footer .ft-list li {
  margin-bottom: 15px;
}

.footer .ft-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #cdcdcd;
}

.footer .ft-list li a i {
  color: #b97ad8;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000000;
  border-radius: 600px;
  height: 45px;
  min-width: 45px;
  font-size: 21px;
  /* width: 100%; */
}

.footer .heading p {
  font-size: 14px;
}

.footer .ft-list-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer .ft-list-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000000;
  border-radius: 600px;
  height: 45px;
  width: 45px;
  font-size: 21px;
}

/* ********* */
/* Card column spacing */
.blog_sec .row > div {
    margin-bottom: 15px;
}

/* Full card */
.blog_sec .content,
.blog_sec .blog-card,
.blog_sec .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Same image size for all cards */
.blog_sec .content img,
.blog_sec .blog-card img,
.blog_sec .item img {
    width: 100%;
    height: 260px !important;   /* change if needed */
    object-fit: cover;
    display: block;
}

.blog_sec .content .btom_content_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_sec .content .btom_content_btn a {
  color: #000;
  text-decoration: underline;
}

.blog_sec .content {
  background: #fff;
  border-radius: 20px;
  padding-bottom: 16px;
  box-shadow: rgba(100, 100, 111, 0.19) 0px 0px 14px 0px;
}

/* Mobile */
@media (max-width: 767px) {
    .blog_sec .content img,
    .blog_sec .blog-card img,
    .blog_sec .item img {
        height: 220px;
    }
}






/* ********** */

.contact_sec .heading p {
  font-size: 23px;
  line-height: 29px;
  font-weight: 300;
}

.contact_sec select {
  opacity: 1;
  color: #5f5f5f;
}

.contact_sec input, .contact_sec textarea, .contact_sec select {
  border: none;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  background: transparent;
}

.contact_sec button {
  width: 100%;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 60px;
  padding: 15px;
  border: none;
  text-transform: uppercase;
}

.contact_sec textarea {
  height: 125px;
}

.our-blog .blog-box {
  background: #02008C;
  background: linear-gradient(270deg, rgba(2, 0, 140, 1) 0%, rgba(160, 32, 240, 1) 100%);
  height: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
}

/* ******** */
.faqs .accordion-button:not(.collapsed)::after {
  background-image: url('../image/minus.png');
}

.faqs .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  content: "";
  background-image: url('../image/plus.png');
  background-repeat: no-repeat;
}

.faqs .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 17px;
  color: #000 !important;
  text-align: left;
  border: 0;
  border-radius: 30px !important;
  font-family: "Poppins", serif;
  overflow-anchor: none;
  padding: 18px 19px;
  background: #ebebeb;
}

.faqs .accordion-body p {
  margin-bottom: 10px;
  font-size: 16px;
}

.faqs button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.faqs-bg-black .accordion-button {
  color: #000 !important;
  background: #dedede !important;
}

.faqs-bg-black .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: #000;
  box-shadow: inset 0 -1px 0 #000;
}

.faqs-bg-black .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #000 !important;
  box-shadow: inset 0 -1px 0 #000;
}

.faqs .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 9px;
  border-radius: 50px;
}

.faqs .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: var(--theme-color);
  box-shadow: inset 0 -1px 0 var(--theme-color);
  border-radius: 30px 30px 0 0px;
  border-radius: 30px 30px 0 0 !important;
}

.faqs .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  background: var(--theme-color);
  color: #fff;
  padding-top: 0;
  border-radius: 0 0 30px 30px;
}



.faqs a.comon-btn3 {
  background: #c938a714;
  color: #000;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid var(--theme-color);
}

.faqs a.comon-btn3:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

/* ************ */

.reviews .reviews-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.reviews .review-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 0;
  object-fit: cover;
}

.reviews .review-card {
  background: #fff;
  padding: 45px 0px;
  border-radius: 5px;
  flex: 1;
  min-width: 50%;
}

.reviews .review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.border-horizontal {
  width: 7px;
  height: 330px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: block;
  transform: rotate(180deg);
}

.reviews .review-card p {
  line-height: 2.1;
}

#reviews .review-author {
  font-size: 19px;
  position: relative;
}

#reviews .review-author::after {
  content: "";
  width: 250px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  top: -13px;
}

.reviews .review .top_img img {
  position: absolute;
  left: -10px;
  top: -20px;
  z-index: 1111;
  width: 45px !important;
}

#reviews .review-image {
  text-align: center;
}

#reviews .review-image h5 span {
  font-family: var(--span-font);
  font-size: 38px;
}

.reviews .review-card .top_img img {
  width: 85px;
  position: absolute;
  top: 0px;
}

.reviews .review-card h6 {
  font-size: 21px;
}

.reviews a.comon-btn3 {
  background: #c938a714;
  color: #000;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 55px;
  width: 225px;
  text-align: center;
  border: 1px solid var(--theme-color);
}

.reviews a.comon-btn3:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}


/* Inner Banner Section */
#inner-banner {
  padding: 150px 0px 40px;
}

#inner-banner h1 {
  color: var(--theme-color);
}

#inner-banner .breadcrumb a {
  color: var(--theme-color-second);
}

#inner-banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--theme-color-second);
  content: var(--bs-breadcrumb-divider, "/");
}

#inner-banner .breadcrumb-item.active {
  color: #cacacabd;
  font-weight: 500;
}

/* ************** */
.funeral-celebrant-sec1 h3 {
  font-size: 32px;
  font-weight: 600;
}

#naming-ceremonies-sec1 ul li {
  margin-bottom: 12px;
}

/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
  /* margin-bottom: -25px; */
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}

.main-sec h1 {
  font-size: 42px;
  font-weight: 600;
}

.main-sec h3 {
  font-size: 28px;
  font-weight: 600;
}

.inner-blog-left-sec img {
  height: 350px;
  object-fit: cover;
}

.fees_sec1 ul li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 9px;
}

.fees_sec1 ul li i {
  font-size: 15px;
}

.fees_sec1 .content ul li a {
  color: var(--theme-color-third);
}

.fees_sec1 a {
  color: var(--theme-color-third);
  text-decoration: underline;
}

/*************/
#inner-banner {
  padding: 400px 0px 70px;
}

.about_banner_sec {
  background: url(../image/about-bg.png) no-repeat bottom / cover !important;
}

.funeral_celebrant_banner_sec {
  background: url(../image/Funeral-Ceremonies-bg.jpg) no-repeat bottom / cover !important;
}

/* ************* */

/* contact-info */
.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 i {
  margin-right: 9px;
  color: #fff;
  font-size: 22px;
  width: 45px !important;
  height: 45px !important;
  background: var(--theme-color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.contact_page .contact_details p a, .contact_page .contact_details p, .contact_page .contact_details li {
  color: #747474;
  font-size: 17px;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: var(--theme-color);
  padding: 50px 25px;
  color: #fff;
  height: 100%;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_form button.comon-btn:hover {
  background: #000;
  color: #fff;
}

.contact_page .contact_details h5 {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 16px;
  color: #505050;
  display: flex;
  align-items: center;
}

.contact_page .contact_details h5 span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.contact_page .contact_details h5 a {
  color: var(--theme-color);
  font-size: 19px;
}

.map {
  width: 100%;
  border: none !important;
  line-height: 0;
}

/*08.04.2026*/
.h5-st {
	font-size: 21px;
}

.h5-st1 {
	text-transform: uppercase;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 80%);
	color: #000;
	font-size: 20px;
	font-weight: 300;
	display: inline-block;
	padding: 13px 240px;
}

.h6-st{
	color: var(--theme-color);
	font-size: 18px;
	font-weight: 600;
}
.h5-st2{
	font-size: 21px;
}

.h5-span{
	font-family: var(--span-font);
	font-size: 38px;	
}
.h6-st1{
	font-size: 21px;
}

.h4-blog{
	font-size: 24px;
}

.h3-st{
    font-size: 32px;
    font-weight: 600;
}
.h4-st{
	margin: 0;
    margin-bottom: 12px;
    color: inherit;
	font-size: 1.5rem !important;
	font-weight: 500 !important;
    line-height: 1.2;
}

.h2-st{
	font-size: 38px;
	font-weight: 600;
}

.h3-st1{
	font-size: 30px;
	margin-bottom: .5rem !important;
	font-weight: 500;
}

.h5-contact{
	margin-bottom: 22px;
	margin-top: 20px;
	font-size: 16px;
	color: #505050;
	display: flex;
	align-items: center;

}

.contact_page .contact_details .h5-contact {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #505050;
  display: flex;
  align-items: center;
}

.contact_page .contact_details .h5-contact i {
  margin-right: 9px;
  color: #fff;
  font-size: 22px;
  width: 45px !important;
  height: 45px !important;
  background: var(--theme-color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  flex-shrink: 0;
}

.contact_page .contact_details .h5-contact span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.contact_page .contact_details .h5-contact a {
  color: var(--theme-color);
  font-size: 19px;
  text-decoration: none;
}

.pro-st{
	font-family: var(--span-font);
	font-size: 38px !important;
	background: linear-gradient(to right, #c938a7 0%, #fff 40%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: -10px;	
}