/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --bs-body-font-size: 16px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.4;
}

body {
  font-family: "Helvetica", sans-serif;
  color: #333333;
}

a {
  color: #bb5c3e;
  text-decoration: none;
  
}

a:hover {
  color: #c66e53;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica", sans-serif;
  color: #4b5b4b;
}



#main {
  margin-top: 0px;
  z-index: 3;
  position: relative;
}

.btn-main {
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px 0;
  color: #ffffff;
  background: #bb5c3e;
  border: 1px solid #bb5c3e;
  text-decoration: none;
}


.btn-main:hover {
  font-weight: 500;
  color: #ffffff;
  background: #c66e53;
  border-radius: 0px;
  border: 1px solid #c66e53;
  text-decoration: none;
}

.btn-small {
  font-family: "Helvetica", sans-serif;
  display: inline-block;
  border-radius: 0px;
  transition: 0.5s;
  color: #ffffff;
  background: #bb5c3e;
  border: 1px solid #bb5c3e;
  text-decoration: none;
}


.btn-small:hover {
  font-weight: 500;
  color: #ffffff;
  background: #c66e53;
  border-radius: 0px;
  border: 1px solid #c66e53;
  text-decoration: none;
}


.btn-main-inv {
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px 0;
  color: #ffffff;
  background: #4b5b4b;
  border: 1px solid #4b5b4b;
  text-decoration: none;
}


.btn-main-inv:hover {
  font-weight: 500;
  color: #ffffff;
  background: #6b7d6b;
  border-radius: 0px;
  border: 1px solid #6b7d6b;
  text-decoration: none;
}

.lead {
  font-weight: 400;
}

.fs {
  font-size: 40px;
}

.tx {
  color: #4b5b4b;
}

.tx-terracota {
  color: #bb5c3e;
}

.font {
  font-family: "Helvetica", sans-serif;
  color: #ffffff;
}


.shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.FaqAccordion1 .accordion-button::after {
  background-image:none !important;
}

.FaqAccordion1 .accordion-button:not(.collapsed) {
  background-color:transparent !important;
  border-bottom:0 !important;
  box-shadow:none !important}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  z-index: 997;
  transition: all 0.5s ease-in-out;
  background: #f7f7ed;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  padding: 10px 0 10px 0px;
  margin: 10px 0 10px 0;
  max-height: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #bb5c3e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #b7c9b2;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 3px;
  color: #0d0d0d;
  border: 2px solid #b7c9b2;
  text-decoration: none;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #272343;
  background: #8e7ab5;
  border-radius: 3px;
  border: 2px solid #8e7ab5;
  text-decoration: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #f7f7ed;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #bb5c3e;
  text-decoration: none;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #4B4C48;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #f7f7ed;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 36, 29, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #f7f7ed;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #4B4C48;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ad361f;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f7f7ed;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ad361f;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 230, 0.4); 
  z-index: 1;
}

.hero-background {
  position: relative;
  background-image: url('../img/hero-bg-backup.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background-2 {
  position: relative;
  background-image: url('../img/face-to-face-therapy.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background-3 {
  position: relative;
  background-image: url('../img/online-therapy.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background-4 {
  position: relative;
  background-image: url('../img/hero-issues.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.transparent-image-left {
  background-image: url('../assets/img/leaves-left.png');
  background-repeat: repeat-x;
}

.transparent-image-left-u {
  background-image: url('../assets/img/leaves-left-u.png');
  background-repeat: repeat-x;
}

.transparent-image-right {
  background-image: url('../assets/img/leaves-right.png');
  background-repeat: repeat-x;
}

.transparent-image-right-u {
  background-image: url('../assets/img/leaves-right-u.png');
  background-repeat: repeat-x;
}

.blurred-box {
  position: relative;
  z-index: 2; /* ensures it's above the overlay */
  backdrop-filter: blur(6px) saturate(102%);
  -webkit-backdrop-filter: blur(6px) saturate(102%);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  border: 0px solid rgba(255, 255, 255, 0.5);
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #4b5b4b;
  padding: 10px 0;
  font-size: 14px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #ffffff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #ffffff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #ffffff;
}

#topbar .btn-topbar {
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 0px;
  line-height: 1;
  margin: 0px;
  color: #ffffff;
  border: 2px solid #bb5c3e;
  background: #bb5c3e;
}

#topbar .btn-topbar:hover {
  color: #ffffff;
  border: 2px solid #c66e53;
  background: #c66e53;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 0px;
  overflow: hidden;
}

.section-bg {
  background-color: #f9fbf4;
}

.bg-colour-t {
  background-color: #bb5c3e;
}

.bg-colour-7 {
  background-color: #f7f7ed;
}

.bg-colour-8 {
  background-color: #f7f7ed;
}

.bg-colour-x {
  background-color: #b7c9b2;
}



.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 31.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Helvetica", sans-serif;
  color: #8e7ab5;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
}

.breadcrumbs .breadcrumb-hero {
  text-align: center;
  /* background: url("../img/gradient.png") top center; */
  background-size: cover;
  background: #4b5b4b;
  padding: 20px 0;
  color: #f7f7ed;
}

.breadcrumbs .breadcrumb-hero h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-hero p {
  font-size: 14px;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0px 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4b4c48;
  content: "/";
}

/*--------------------------------------------------------------
# Hero Pages
--------------------------------------------------------------*/

.hero-pages {
	padding-bottom: 2rem;
	padding-top: 2rem
}

@media(min-width:768px) {
	.hero-pages {
		padding-bottom: 3rem;
		padding-top: 3rem
	}
}

@media(min-width:1200px) {
	.hero-pages {
		padding-bottom: 9rem;
		padding-top: 9rem
	}
}

.hero-pages img {
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: auto;
	mask-size: auto
}


/*--------------------------------------------------------------
# Squares
--------------------------------------------------------------*/
.square1 {
  background: #272343;
  color: #f7f7ed;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  
  padding-bottom: 0px;
  background: #ffffff;
}

.about .bg-colour-1 {
  background-color: #f7f7ed;
}

.about .bg-colour-2 {
  background-color: #e493b3;
}

.about .bg-colour-3 {
  background-color: #b7c9b2;
}

.about .bg-colour-4 {
  background-color: #8e7ab5;
}

.about .bg-colour-6 {
  background-color: #272343;
}

.about .bg-colour-0 {
  background-color: #4b5b4b;
}

.about .bg-colour-7 {
  background-color: #f7f7ed;
}

.about .content {
  font-size: 1rem;
  color: #333333;
}

.about .content h3 {
  font-weight: 600;
  font-size: 1.3rem;
  color: #8e7ab5;
}


.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 1rem;
  color: #333333;
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .abt-btn {
  font-family: "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #eea5a6;
  color: #272343;
  background: #eea5a6;
  text-decoration: none;
}

.about .abt-btn:hover {
  background: #efa9aa;
  border-color: #efa9aa;
  color: #272343;
  text-decoration: none;
}


@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #f1f3f4;
  padding: 100px 0;
}

.cta h3 {
  color: #4b5b4b;
  font-size: 1.2rem;
  font-weight: 700;
}

.cta p {
  color: #0d0d0d;
}



.cta .cta-btn {
  font-family: "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 1.0rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 0px;
  text-transform: uppercase;
  color: #4b5b4b;
  background: transparent;
  border: 2px solid #4b5b4b;
  text-decoration: none;
}

.cta .cta-btn:hover {
  font-weight: 600;
  color: #f7f7ed;
  background: #4b5b4b;
  border-radius: 3px;
  border: 2px solid #4b5b4b;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Cta2
--------------------------------------------------------------*/
#cta2 {
  background: #4b5b4b;
  padding: 100px 0;
}

#cta2 p {
  color: #f7f7ed;
  font-size: 1rem;
}

.cta2 p a {
  color: #f7f7ed;
  text-decoration: none;
  font-weight: 600;
}

.cta2 p a:hover {
  color: #f1f3f4;
}


/*--------------------------------------------------------------
# Credentials
--------------------------------------------------------------*/
.crd {
  background: #f7f7ed;
  padding: 5px 0;
}

.crd h3 {
  color: #272343;
  font-size: 1.2rem;
  font-weight: 700;
}

#crd h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #272343;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.crd p {
  color: #2d334a;
}

.w-30 {
  width: 30% !important;
}

.W-90 {
  width: 90% !important;
}

.crd .crd-btn {
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #e0b0ff;
  color: #272434;
  background: #e0b0ff;
  text-decoration: none;
}

.crd .crd-btn:hover {
  background: #e0b0ff;
  border-color: #272343;
  color: #272343;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #f7f7ed;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .title a {
  color: #111;
}

.services .icon-box:hover .title a {
  color: #ffd803;
}

.services .description {
  font-size: 16px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process .content+.content {
  padding-top: 100px;
}

.work-process .tx-colour-1 {
  color: #fbeded;
}

.work-process .tx-colour-2 {
  color: #e493b3;
}

.work-process .tx-colour-3 {
 color: #b7c9b2;
}

.work-process .tx-colour-4 {
  color: #4b5b4b;
}

.work-process .tx-colour-5 {
  color: #829599;
}

.work-process .bg-colour-1 {
  background-color: #f1f3f4;
}

.work-process .bg-colour-2 {
  background-color: #e493b3;
}

.work-process .bg-colour-3 {
  background-color: #b7c9b2;
}

.work-process .bg-colour-4 {
  background-color: #8e7ab5;
}

.work-process .bg-colour-5 {
  background-color: #eea5a6;
}

.work-process .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.work-process .content ul {
  list-style: none;
  padding: 0;
}

.work-process .content ul li {
  padding-bottom: 0px;
}

.work-process .content ul i {
  font-size: 20px;
  padding-right: 0px;
  color: #0d0d0d;
}

.work-process .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
  padding-top: 60px;
}

.skills .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #3c4133;
  font-family: "Helvetica", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8cac8f;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  color: #3c4133;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e1e4dc;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #8cac8f;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.testimonials {
  padding-top: 60px;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #f7f7ed;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #444444;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c0da91;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f7f7ed;
  opacity: 1;
  border: 1px solid #8cac8f;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8cac8f;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 60px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f7f7ed;
  opacity: 1;
  border: 1px solid #8cac8f;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8cac8f;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .card {
  border: 0;
  padding: 5px 5px 5px 5px;
  position: relative;
  width: 100%;
  background-color: #272343;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.features .card-body {
  z-index: 10;
  background: #272343;
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 0px;
}

.features .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.features .card-title a {
  color: #fbeded;
}

.features .card-text {
  color: #fbeded;
}

.features .read-more a {
  color: #fbeded;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.features .read-more a:hover {
  text-decoration: underline;
}

.features .card:hover .card-body {
  background: #272343;
}

.features .card:hover .card-title,
.features .card:hover .card-text,
.features .card:hover .card-title a {
  color: #fbeded;
}

.features .card:hover .read-more a {
  color: #eea5a6;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #f7f7ed;
  background: #8cac8f;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(60, 65, 51, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(60, 65, 51, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #f7f7ed;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #f7f7ed;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #c0da91;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f7f7ed;
  opacity: 1;
  border: 1px solid #8cac8f;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8cac8f;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(60, 65, 51, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7ed;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #f7f7ed;
  background: #404627;
}

.pricing h4 {
  font-size: 36px;
  color: #000000;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #8cac8f;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #000000;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 4px;
  color: #f7f7ed;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Helvetica", sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(47, 47, 47, 0.4);
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  color: #000000;
  background: #ffff66;
}

.pricing .featured h3 {
  color: #f7f7ed;
  background: #8cac8f;
  box-shadow: 0 3px 7px rgba(148, 192, 69, 0.4);
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffd803;
  color: #272343;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #f7f7ed;
}

.faq .faq-item i {
  color: #b66375;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 1.2rem;
  line-height: 26px;
  font-weight: 600;
  margin: 0 0 10px 28px;
  font-family: "Helvetica", sans-serif;
}

.faq .faq-item p {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Issues
--------------------------------------------------------------*/
.issues {
  padding-top: 60px;
}

.issues .issues-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #f7f7ed;
}

.issues .issues-item i {
  color: #b66375;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 0px 0 0 0;
  margin: 0;
}

.issues .issues-item h4 {
  font-size: 1.3rem;
  line-height: 26px;
  font-weight: 600;
  margin: 0 0 0px 0px;
  font-family: "Helvetica", sans-serif;
}

.issues .issues-item p {
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  width: 100%;
  background: #f1f3f4;
}


.contact .info i {
  font-size: 20px;
  color: #272343;
  float: left;
  width: 44px;
  height: 44px;
  background: #f1f3f4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 0px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4b5b4b;
}

.contact .info p {
  padding: 0 0 0 0px;
  margin-bottom: 0;
  font-size: 20px;
  color: #272343;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #8e7ab5;
  color: #f7f7ed;
}

.contact .iframe {
  line-height: 0; 
  border-width: 0;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #f7f7ed;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(148, 192, 69, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #f7f7ed;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  color: #8cac8f;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #8cac8f;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #4b5b4b;
  padding: 0 0 30px 0;
  color: #f7f7ed;
  font-size: 14px;
}

#footer .footer-top {
  background: #4b5b4b;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  color: #9fc658;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Helvetica", sans-serif;
  color: #f7f7ed;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #4b5b4b;
  color: #b7c9b2;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 40px;
}

#footer .footer-top .social-links a:hover {
  background: #4b5b4b;
  color: #b7c9b2;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #f7f7ed;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}


#footer .footer-top h4::before {
  right: 0;
  background: #f7f7ed;
}


#footer .footer-top h4::after {
  background: #f7f7ed;
  width: 60px;
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
}

#footer .footer-top .footer-links ul a {
  color: #f7f7ed;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #b7c9b2;
  text-decoration: none;
}

#footer .footer-top .footer-links i {
  line-height: 0;
  font-size: 40px;
  color: #fbeded;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .footer-links i a {
  color: #b7c9b2;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .footer-links i a:hover {
  color: #b7c9b2;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .footer-links img {
  max-width: 150px;
  padding: 5px 0 0 0;
  margin: 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #8cac8f;
  border: 0;
  border-radius: 0 4px 4px 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #f7f7ed;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #b7c9b2;
}

#footer .copyright {
  text-align: center;
  padding-top: 5px;
}

#footer .copyright a {
  color: #f7f7ed;
  text-decoration: none;
  font-weight: 600;
}

#footer .copyright a:hover {
  color: #b7c9b2;
  text-decoration: none;
  font-weight: 600;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #f7f7ed;
}

/*--------------------------------------------------------------
# Extras
--------------------------------------------------------------*/

.bg-colour {
  background-color: #90a29060;
}


.bg-colour-1 {
  background-color: #4b5b4b;
}

.bg-colour-2 {
  background-color: #172E17; /* Brighter green - dark */
}

.bg-colour-3 {
  background-color: #242d24; /* Earthy green - dark */
}

.bg-colour-4 {
  background-color: #6b7d6b; /* Earthy green - light */
}

.bg-colour-5 {
  background-color: #90a29023;
}

.bg-colour-6 {
  background-color: #ffffe680;
}





/*--------------------------------------------------------------
# Workflow Chart
--------------------------------------------------------------*/

.how .btn-how {
  --bs-btn-color: #fbeded;
  --bs-btn-bg: #8e7ab5;
  --bs-btn-border-color: #8e7ab5;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
}

.how .bg-colour-1 {
  background-color: #ffffff;
}

.how .bg-colour-2 {
  background-color: #e493b3;
}

.how .tx-colour-4 {
  color: #4b5b4b;
}

.tx-large {
  font-size: 40px;
  color: #4b5b4b;
}

.tx-lesslarge {
  font-size: 25px;
  color: #4b5b4b;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}
@media (min-width: 576px) {
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 768px) {
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 992px) {
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
.mb-6 {
  margin-bottom: 4.5rem !important;
}
.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
@media (min-width: 576px) {
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* Specialities */

.special {
  margin-bottom: 0px;
  margin-top: 0px;
}

.special .btn-special {
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 1.0rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 0px;
  
  color: #ffffff;
  background: #ad361f;
  border: 2px solid #ad361f;
  text-decoration: none;
}

.special .btn-special:hover {
  font-weight: 500;
  color: #ffffff;
  background: #ff3300;
  border-radius: 3px;
  border: 2px solid #ff3300;
  text-decoration: none;
}

.f1f3f4 {
  background-color: #f1f3f4;
}

.logo-colour {
  color: #4b5b4b;
}


/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
.privacy .container {
  
  padding-bottom: 0px;
  background: #f7f7ed;
}

.privacy .content {
  font-size: 1.1rem;
  color: #0d0d0d;
}

.privacy .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #8e7ab5;
}


.privacy .content ul {
  list-style: none;
  padding: 0;
}

.privacy .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.privacy .content ul i {
  font-size: 24px;
  color: #0d0d0d;
  position: absolute;
  left: 0;
  top: -2px;
}

.privacy .content p:last-child {
  margin-bottom: 0;
}


@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.main-title {
  color: #4b5b4b;
  text-shadow: #ffffff;
}

/* Accordion FAQS */

.accordion-body {
  background-color: #ffffff;
  color: #333;
  font-family: "Helvetica", sans-serif;
  padding: 50px 0;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: #333;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234b5b4b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


.accordion-body {
  padding: 0 0 20px 0;
}


.col-custom {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
}

@media (min-width: 576px) {
  .col-custom {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-custom {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.trauma-bullet-list {
  list-style-type: disc;
  padding-left: 0; /* removes left padding */
  margin-left: 2rem; /* optional: controls how far the bullets are from the text */
}

.trauma-bullet-list li::marker {
  font-size: 2rem; /* increase bullet size */
  color: #bb5c3e; /* match your theme */
}

