/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444444;

}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Revealing sections on scroll
--------------------------------------------------------------*/
.section--hidden {
  opacity: 0;
  transform: translateY(6rem);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #343434ad;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #40bf77;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #40bf77;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# 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;
  margin: 0px 10px;
}

.navbar li span {
  padding: 0.5rem 1rem;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background-color: #40bf77;
  color: #fff;
  border-radius: 5px;
}

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

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

.navbar .dropdown ul li:not(:last-child) {
  border-bottom: 1px dotted lightgray;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #222;
}

.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: #fff;
}

.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;
}

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

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

@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(0, 0, 0, 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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.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: #fff;
  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: #fff;
}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
}

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

.section-title h2 {
  font-size: 50px;
  font-weight: bold;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;

  color: #40bf77;
}

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

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 150px 0 100px;
  /* background: #2b2b2b; */
  min-height: 40px;
  /* margin-top: 82px; */
  color: #fff;
}

.breadcrumbs.bg-1 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent),
    url(../img/breadcrumbs/bg-1.webp);
  background-size: cover;
  background-position: center;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

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

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #40bf77;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #e35052;
  background: #40bf77;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #40bf77;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #40bf77;
}

.tabs .nav-link.active {
  background: #40bf77;
  color: #fff;
  border-color: #40bf77;
}

.tabs .nav-link.active object {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #40bf77;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
}

.services .icon-box:hover {
  background: #2b2b2b;
}

.services .icon-box i {
  float: left;
  color: #40bf77;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #40bf77;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-image: linear-gradient(to right,
      rgba(64, 191, 119, 0.9),
      rgba(64, 191, 119, 0.9)),
    url(../img/bg/bg-11.webp);
  background-position: center;
  background-size: cover;
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 15px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  color: #111;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #40bf77;
  font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
  text-align: center;
  margin: 30px auto 15px auto;
  color: #000;
}

#testimonial-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #fff;
}

#testimonial-slider .owl-dots .owl-dot.active span {
  background: #fff;
  border: 1px solid #fff;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  background-image: linear-gradient(to right,
      rgba(64, 191, 119, 0.699),
      rgba(64, 191, 119, 0.699)),
    url(../img/bg/bg-5.webp);
  padding: 50px 0;
  background-position: center;
  background-size: cover;
}

.pricing .box {
  padding: 20px;
  background: #fff;
  border: 10px solid #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  display: grid;
  overflow: hidden;
  transition: all 0.3s !important;
}

.pricing .box:hover {
  background: #40bf77;
}

.pricing .box:hover>* {
  color: #fff;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

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

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 300;
}

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

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

.pricing .box ul i {
  color: #40bf77;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
  display: grid;
  align-content: end;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #222;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #222;
}

.pricing .box .btn-buy:hover {
  border-color: #fff;
}

.pricing .featured {
  background: #40bf77;
}

.pricing .box:hover .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
  background: #f2f2f2;
}

.faq .section-title h2 {
  font-size: 42px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
  background: #f2f2f2;
}

.faq .faq-list li {
  border-bottom: 1px solid #40bf77;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
}

.faq .faq-list a {
  display: block;
  padding: 10px 10px;
  position: relative;
  color: #40bf77;
  font-size: 19px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 25px;
  cursor: pointer;
  /* background: #606629ad; */
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  text-align: justify;
  font-size: 17px;
  padding: 10px 10px 10px 10px;
  /* background-color: #3fdd0b2e; */
  background-color: #fff;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #40bf77;
}

.faq .faq-list a.collapsed:hover {
  color: #40bf77;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

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

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #40bf77;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #111111;
}

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

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

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

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  padding: 30px;
  border-radius: 4px;
  min-height: 200px;
}

.contact .info-box i {
  font-size: 32px;
  color: #40bf77;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}

.contact .info-box .icon-box {
  margin-bottom: 20px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.contact .info-box p a {
  color: #222;
}

.contact .info-box p a:hover {
  color: #40bf77;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #40bf77;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #197943;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 100px 0 30px 0;
  /* background: #1b1b1b; */
  background-image: linear-gradient(to right,
      rgba(49, 49, 49, 0.808),
      rgba(34, 34, 34, 0.795)),
    url(../img/bg/bg-2.webp);
  background-size: cover;
  background-position: center;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #40bf77;
}

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

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #40bf77;
  bottom: 0;
  left: 0;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

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

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #40bf77;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

/* #footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #fff;
  color: #fff !important;
  text-decoration: none;
} */

/* custom css start */

.section-title {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title h1 {
  text-align: center;
  color: #40bf77;
  font-size: 50px;
  margin-bottom: 15px;
}

.header-top {
  background-color: #3e3e3f;
}

.header-top .social-links a {
  margin-right: 20px;
  font-size: 25px;
  color: #a8a9ad;
}

.header-top .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

.header-top-cta a {
  color: #fff;
  letter-spacing: normal;
  text-transform: lowercase !important;
  margin-bottom: 0;
}

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

.header-book-appointment a.book-appointment-btn {
  display: inline-block;
  background-color: #40bf77;
  color: #fff;
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.3s;
  font-size: 18px;
}

.header-book-appointment a.book-appointment-btn:hover {
  background-color: #fff;
  color: #222;
}

.header-right-side .header-top-cta a {
  margin-right: 20px;
}

.header-right-side .header-top-cta a i {
  margin-right: 5px;
  color: #18d26e;
  font-size: 20px;
  margin-top: 5px;
}

.banner-slide {
  position: relative;
}

.banner-slide.slide-1 {
  max-height: 100vh;
  min-height: 100vh;
  background-image: linear-gradient(to right,
      rgba(67, 66, 66, 0.55),
      rgba(67, 66, 66, 0.55)),
    url(../img/slider/slider-1.webp);
  background-size: cover;
  background-position: top;
}

.banner-slide.slide-2 {
  max-height: 100vh;
  min-height: 100vh;
  background-image: linear-gradient(to right,
      rgba(67, 66, 66, 0.55),
      rgba(67, 66, 66, 0.55)),
    url(../img/slider/slider-2.webp);
  background-size: cover;
  background-position: top;
}

.banner-slide.slide-3 {
  max-height: 100vh;
  min-height: 100vh;
  background-image: linear-gradient(to right,
      rgba(67, 66, 66, 0.55),
      rgba(67, 66, 66, 0.55)),
    url(../img/slider/slider-3.webp);
  background-size: cover;
  background-position: center;
}

.banner-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-content {
  display: grid;
  place-content: center;
  text-align: center;
}

.banner-sub-heading {
  color: #fff;
  font-size: 1vw;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.banner-heading {
  color: #fff;
  background-color: #18d26e7a;
  padding: 20px 45px;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 1.7vw;
  text-align: center;
}

.banner-btn {
  display: inline-block;
  background-color: #fff;
  color: #222;
  width: 47%;
  padding: 10px 60px;
  border-radius: 15px;
  margin-top: 30px;
  margin-left: 50%;
  font-size: 1vw;
  font-weight: 600;
  transform: translateX(-50%);
  text-align: center;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.banner-slide-content .banner-content .banner-btn:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

#banner-slider .owl-nav.disabled+.owl-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#banner-slider .owl-dots .owl-dot.active span,
#banner-slider .owl-dots .owl-dot:hover span {
  background: #fff;
}

#banner-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #fff;
}

.section-gap {
  margin: 80px 0;
}

.about-content h1 {
  color: #40bf77;
  font-size: 50px;
  margin-bottom: 20px;
}

.about-content p {
  text-align: justify;
  line-height: 1.6;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  padding-right: 50px;
}

.about-btn a {
  background-color: #40bf77;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #40bf77;
  transition: all 0.3s;
}

.about-btn a:hover {
  background-color: #fff;
  border: 1px solid #222;
  color: #222;
}

.about-img-container img {
  border: 5px solid #40bf77;
}

.why-choose-section {
  background-image: linear-gradient(to right,
      rgba(64, 191, 119, 0.699),
      rgba(64, 191, 119, 0.699)),
    url(../img/bg/bg-1.webp);
  padding: 50px 0;
  background-position: center;
  background-size: cover;
}

.why-choose-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0px;
  padding-top: 20px;
  border: 15px solid #fff;
  transition: all 0.3s ease;
  min-height: 227px;
  margin-bottom: 20px;
}

.why-choose-icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.why-choose-icon object {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.why-choose-title {
  margin-top: 20px;
}

.why-choose-title h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}

.why-choose-box:hover {
  background-color: #40bf77;
}

.why-choose-box:hover .icon-1 {
  filter: brightness(0) invert(1);
}

.why-choose-box:hover .why-choose-title h2 {
  color: #fff;
}

#why-choose-us .owl-dots {
  margin-top: 30px;
}

#why-choose-us .owl-dots .owl-dot.active span,
#why-choose-us .owl-dots .owl-dot:hover span {
  background: #40bf77;
}

#why-choose-us .owl-dots .owl-dot span {
  background: #a5a5a5;
}

/* team section start */
.team-section .nav-tabs {
  border-bottom: none;
}

.team-section button.owl-prev {
  position: absolute;
  left: 0px;
  top: 37%;
  transform: translateY(-50%);
  background-color: white !important;
  width: 20px;
  height: 20px;
  border-radius: 100% !important;
  color: #000 !important;
}

.team-section button.owl-next {
  position: absolute;
  right: 0px;
  top: 37%;
  transform: translateY(-50%);
  background-color: #222 !important;
  width: 20px;
  height: 20px;
  border-radius: 100% !important;
  color: #000 !important;
}

.team-section .owl-dots {
  display: none;
}

.team-section .item {
  display: flex;
  justify-content: center;
}

.team-section .item li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #222;
  border-radius: 100%;
  color: #000;
  text-transform: uppercase;
  flex-wrap: wrap;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
}

.team-section .item li.active a {
  background-color: #009688;
  color: #222;
}

.team-section .tab-content {
  padding: 20px;
  background-color: #222;
  font-size: 17px;
  text-align: center;
  line-height: 25px;
  margin-top: 30px;
  border-radius: 19px;
}

.team-section .tab-content h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.team-section .tab-content p {
  color: #fff;
}

/* team section end */

.f-logo {
  max-width: 50%;
}

.f-logo img {
  width: 100%;
}

.f-about {
  text-align: justify;
  margin-top: 20px;
  padding-right: 30px;
}

#our-team .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

#our-team .owl-prev {
  float: left;
}

#our-team .owl-next {
  float: right;
}

#our-team .owl-prev:hover,
#our-team .owl-next:hover {
  background-color: transparent;
  color: #222;
}

#our-team .owl-prev,
#our-team .owl-next {
  font-size: 20px;
}

#our-team .owl-item .nav-link {
  border-color: transparent !important;
}

.ourteam-section .nav-tabs {
  border-bottom: 0px !important;
}

.cta-section {
  background: #40bf77;
  padding: 30px 0;
}

.cta-section h3 {
  color: #fff;
  font-size: 30px;
}

.cta-section a {
  margin-bottom: 0;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  padding: 10px 25px;
  font-size: 19px;
  transition: all 0.3s;
}

.cta-section a:hover {
  background-color: #fff;
  color: #222;
}

.f-content {
  margin-top: 20px;
}

.f-content-field {
  display: flex;
  align-items: center;
}

.f-content-field .f-content-icon {
  margin-right: 10px;
  font-size: 30px;
  color: #40bf77;
}

.f-content-field .f-content-info p {
  font-size: 16px !important;
}

.f-content-field .f-content-info p a {
  color: #fff;
  font-size: 16px;
}

.f-social-link {
  margin-top: 30px;
}

.f-social-link .social-links {
  display: flex;
  margin-top: 15px;
}

.f-social-link .social-links a {
  background-color: transparent !important;
  color: #fff !important;
  font-size: 20px !important;
  width: 40px;
  height: 40px;
  display: inline-block;
  display: grid;
  place-content: center;
  margin: 0px 3px;
  border-radius: 10px;
}

.f-social-link .social-links a:hover {
  color: #fff !important;
}

.f-social-link .social-links a.facebook {
  background-color: #1877f2 !important;
}

.f-social-link .social-links a.instagram {
  background-color: #e4405f !important;
}

.f-social-link .social-links a.twitter {
  background-color: #000 !important;
}

.f-social-link .social-links a.youtube {
  background-color: #cd201f !important;
}

.f-social-link .social-links a.linkedin {
  background-color: #0a66c2 !important;
}

.f-social-link .social-links a.whatsapp {
  background-color: #25d366 !important;
}

.f-social-link .social-links a.telegram {
  background-color: #0088cc !important;
}

.f-blog-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.f-blog-container .f-blog-img {
  width: 25%;
  height: 50px;
  margin-right: 10px;
}

.f-blog-container .f-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-blog-container .f-blog-title {
  width: 70%;
}

.f-blog-container .f-blog-title p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
}

.f-quick-contect .form-control {
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 10px;
  box-shadow: none;
  color: #fff;
}

.f-quick-contect .f-btn {
  background-color: transparent;
  border: 1px solid rgb(139, 139, 139);
  color: #fff;
  padding: 6px 15px;
}

.copyright p {
  margin-bottom: 0;
  color: #222;
}

.copyright p a {
  font-weight: bold;
}

#footer {
  background-color: #cbcbcb;
}

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

.testimonials .section-title h2 {
  color: #fff;
  margin-bottom: 0;
}

.testimonials .section-title p {
  color: #fff;
}

.team-member-img {
  width: 350px;
  height: 400px;
  /* padding: 20px; */
  border: 2px solid #40bf77;
  /* border-radius: 50%; */
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* border-radius: 50%; */
}

.team-content-container {
  padding: 30px;
  padding-top: 0;
}

.team-content-container .team-about {
  text-align: justify;
  margin-top: 20px;
  line-height: 1.7;
}

/* service section start */
/* service section end */

#team .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

#team .owl-prev {
  float: left;
}

#team .owl-next {
  float: right;
}

.more-testimonials {
  display: none;
}

.team-designation {
  font-size: 18px;
}

.therapy-content-container .therapy-title {
  margin-bottom: 15px;
  color: #40bf77;
  font-size: 35px;
  text-transform: uppercase;
}

.therapy-content-container .therapy-content p {
  text-align: justify;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

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

.ms-gap-50 {
  margin: 50px 0;
}

.therapy-img-container {
  border: 1px solid #40bf77;
  display: flex;
  justify-content: center;
  align-content: inherit;
}

.therapy-pointer {
  list-style: none;
}

.therapy-pointer li {
  position: relative;
  text-align: justify;
  margin-bottom: 15px;
}

.therapy-pointer li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  left: -30px;
  font-weight: 900;
}

.tab-content-details p {
  text-align: justify;
}

.tab-more-content {
  margin-top: 30px;
  display: none;
}

.tab-more-content p {
  text-align: justify;
}

.tab-content-details h3 {
  color: #40bf77;
  font-size: 21px !important;
  text-align: justify;
}

.tab-more-content h6 {
  font-weight: bold;
}

.order-list-pointer li {
  text-align: justify;
  margin-bottom: 15px;
}

.dropdown span {
  padding-left: 0 !important;
}

.dropdown.deep-dropdown li a {
  padding: 5px 10px !important;
}

.dropdown.deep-dropdown li a:not(:last-child) {
  border-bottom: 1px dotted lightgray;
}

.informed-heading {
  text-decoration: underline;
  font-style: italic;
}

.informed-content-info {
  margin: 40px 0;
}

.informed-content-info h4 {
  margin-bottom: 30px;
}

.informed-content-info p {
  text-align: justify;
}

.informed-content-info.bg-gray {
  background-color: #40bf77;
  padding: 30px;
  color: #fff;
  max-width: 60%;
}

.payment-btn {
  display: inline-block;
  border: 1px solid #222;
  background-color: #fff;
  color: #222;
  padding: 15px 40px;
  transition: all 0.3s;
}

.payment-btn:hover {
  border: 1px solid #40bf77;
  background-color: #40bf77;
  color: #fff;
}

.submit-mgs {
  font-size: 25px;
  text-align: center;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 100px;
}

.about-me h1 {
  margin-bottom: 0;
}

.about-me {
  padding-left: 30px;
  margin-bottom: 30px;
}

.about-me h4 {
  margin-bottom: 20px;
}

.about-qualifications {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.699),
      rgba(0, 0, 0, 0.699)),
    url(../img/bg/bg-13.webp);
  padding: 50px 0 100px;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px;
}

.about-qualifications .qualifications-box {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  min-height: 200px;
  padding: 10px;
  /* background-color: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-qualifications .qualifications-box .icon {
  width: 50px;
  margin-bottom: 10px;
  font-size: 30px;
  color: #fff;
}

.about-qualifications .qualifications-box p {
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.about-qualifications h3 {
  margin-bottom: 50px;
}

.tab-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.tab-icon object {
  width: 100%;
  height: 100%;
}

.row-eq-height {
  display: flex;
}

.row.row-eq-height .box {
  height: 100%;
}

/* social link sidebar start */
.social-link {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);

  z-index: 99999;
}

.social-link-inner {
  display: flex;
  margin-left: -120px;
  justify-content: space-between;
  align-items: center;
  transition: margin-left 1s;
}

.social-link-inner.twitter {
  margin-left: -140px;
}


.social-link a:hover .social-link-inner,
.social-link .social-link-inner:hover {
  margin-left: 0;
}

.social-link-inner span {
  width: 110px;
}

.twitter-x {
  margin-left: 20px;
}

.social-link a:hover {
  width: 180px;
}

.social-link a {
  text-decoration: none;
  color: #fff;
  background: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  display: inline-block;
  width: 50px;
  padding: 10px;
  transition: 1s;
  display: flex;
  justify-content: space-between;
  /* spreads text & icon evenly */
  align-items: center;
  margin: 2px;
  z-index: 99999;
}

.social-link a i {
  font-size: 1.5em;
  margin-left: 10px;
  /* smaller, controlled space from text */
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.social-link .fb {
  background: #3b5999;
}

.social-link .x {
  background: #000;
}

.social-link .int {
  background: #e4405f;
}

.social-link .lin {
  background: #0077b5;
}

.social-link .pin {
  background: #bd081c;
}

.social-link .youtube {
  background: #cd201f;
}

.social-link .whatsapp {
  background: #25d366;
}

.social-link .telegram {
  background: #229ed9;
}

/* social link sidebar end */

#banner-slider .owl-item.active .banner-content {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 0.3s;
}

#main {
  width: 100%;
  /* overflow-x: hidden; */
}

/* .book-session-btn {
  background-color: #40bf77;
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
} */
.book-session-btn {
  background-color: #40bf77;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #40bf77;
  transition: all 0.3s;
}

.book-session-btn:hover {
  color: #40bf77;
  background-color: transparent;
  border: 1px solid #40bf77;
}

/* .btn-wrap.btn-wrap-1 {
  margin-top: 65px;
}

.btn-wrap.btn-wrap-2 {
  margin-top: 65px;
} */

.disclaimer {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

.seo-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}

.seo-page p {
  line-height: 1.5;
  text-align: justify;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.color-primary {
  color: #40bf77;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}



.side-icon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 200;
  left: 20px;
  bottom: 30px;
}

.ftlinks {
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.ftlinks a {
  color: #fff;
  text-align: center;
}

.side-icon>a {
  margin-top: 10px;
}

.side-icon>a:last-child {
  width: 48px;
  height: 48px;
  background-color: #F44336;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-icon>a:last-child>i {
  color: #fff;
  font-size: 22px;
}

.mb-contact {
  display: none;
}

@media(max-width:767px) {
  .side-icon {
    display: none;
  }

  .mb-contact {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    z-index: 99999999999999;
  }

  .mb-contact .contact {
    width: 48%;
    text-align: center;
  }

  .mb-contact .contact:first-child {
    background-color: #F44336;
  }

  .mb-contact .contact {
    padding: 10px;
    display: block;
    margin: 1%;
    border-radius: 5%;
    box-shadow: 2px 1px 2px #ccc;
  }

  .mb-contact .contact:last-child {
    background-color: #4caf50;
  }

  /*.mb-contact .contact:nth-child(2) {
            background-color: #999;
            }*/

  .mb-contact .contact>a {
    color: #fff;
    font-size: 16px;
  }

  .bottom-footer-text {
    padding-bottom: 45px;
  }

}