@font-face {
  font-family:'Atteron';
  src: url(/assets/fonts/Atteron.otf);
}

@font-face {
  font-family:'Halimun';
  src: url(/assets/fonts/Halimun.ttf);
}

body {
    font-family: "Open Sans", sans-serif;
    color: #5a656e;
  }
  
  a {
    color: rgba(32, 69, 112, 1);
    text-decoration: none;
  }
  
  a:hover {
    color: rgba(33, 128, 222, 1);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Playfair Display", serif;
  }
  
  h1,
  h2,
  h3,
  h4 {
    color: rgba(32, 69, 112, 1);
  }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
    background: rgba(57, 148, 237, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: rgba(32, 69, 112, 0.9);
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    height: 60px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
  }
  
  #header .logo h1 {
    font-size: 26px;
    color: rgba(32, 69, 112, 1);
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 3px;
  }
  
  .font-carina {
    font-family: "Atterton", sans-serif;
    text-transform: uppercase;
    color: rgba(32, 69, 112, 1);
  }

  .font-henriques {
    font-family: "Halimun", sans-serif;
    color: rgba(32, 69, 112, 1);
  }

  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: rgba(32, 69, 112, 1);
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }
  
  .scrolled-offset {
    margin-top: 60px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
    font-family: "Atterton", sans-serif;
  }
  
  .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-size: 14px;
    color: rgba(32, 69, 112, 1);;
    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: rgba(33, 128, 222, 1);;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: 100%;
    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;
    border-radius: 4px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    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: rgba(33, 128, 222, 1);
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    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: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.fa-circle-xmark {
    color: #ffffff;
  }
  
  @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: 60px;
    background: rgba(87, 127, 172, 0.4);
    transition: 0.3s;
    z-index: 998;
  }
  
  .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;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2c4964;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: rgba(33, 128, 222, 1);
  }
  
  .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: rgba(33, 128, 222, 1);
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Atterton", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 5px;
  color: rgba(32, 69, 112, 1);
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: rgba(87, 127, 172, 0.4);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  font-family: "Halimun", sans-serif;
  line-height: 0;
}

.section-title p {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.about2 .section-title p {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 414px) {
  .about2 .section-title p {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.about-healing .section-title {
  margin-top: 40px;
}

.about-healing .section-title p {
  margin-bottom: 30px;
}

@media (max-width: 414px) {
  .about-healing .section-title span {
    font-size: 30px;
  }
}

.healing-end .section-title p {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 414px) {
  .healing-end .section-title p {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 1px;
  background: rgba(233, 202, 138, 1);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 15px 0;
    background-color: rgba(87, 127, 172, 0.7);
    min-height: 40px;
    color: #ffffff;
  }
  
  .breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    font-family: "Atteron", sans-serif;
    color: #ffffff;
  }
  
  .breadcrumbs a {
    color: #ffffff;
  }

  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
    color: #ffffff;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #ffffff;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
  
    .breadcrumbs ol {
      display: block;
    }
  
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/carinahenriques.jpg") center;
  background-size: cover;
  padding: 0 0;
}

@media (max-width: 414px) {
  #hero {
    height: 85vh;
  }
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(32, 69, 112, 1);
}

#hero h2 {
  color: rgba(32, 69, 112, 1);
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

#hero .btn-get-started {
  font-size: 40px;
  transition: 0.5s;
  color: rgba(32, 69, 112, 1);
  height: 60px;
}

#hero .btn-get-started:hover {
  padding-top: 10px;
  color: rgba(33, 128, 222, 1);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Section Energy
--------------------------------------------------------------*/
#heroenergy {
  width: 100%;
  height: 90vh;
  background: url("../img/qhehenergyhealing.jpg") center;
  background-size: cover;
  padding: 0 0;
}

@media (max-width: 414px) {
  #heroenergy {
    height: 85vh;
  }
}

#heroenergy h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#heroenergy h2 {
  color: #eee;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

#heroenergy .btn-get-started {
  font-size: 64px;
  transition: 0.5s;
  color: #fff;
  height: 60px;
}

#heroenergy .btn-get-started:hover {
  padding-top: 10px;
  color: #153E45;
}

@media (min-width: 1024px) {
  #heroenergy {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heroenergy h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heroenergy h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
.hero2 {
  width: 100%;
  min-height: 40vh;
  background-size: cover;
  position: relative;
  margin: 60px 0 60px 0;
  padding: 140px 0 120px 0;
  background: url("../img/hero2logo60opac.png") center no-repeat;
}

@media (max-width: 414px) {
  .hero2 {
    width: 100%;
    min-height: 20vh;
    background-size: cover;
    position: relative;
    margin: 40px 0 30px 0;
    padding: 110px 0 100px 0;
    background: url("../img/hero2logo60opac390.png") center no-repeat;
  }
}

.hero2 h2 {
  margin: 10px 0 10px 0;
  font-size: 40px;
  font-weight: 500;
  color: rgba(32, 69, 112, 1);
  font-family: "Atterton" sans-serif;
}

@media (max-width: 414px) {
  .hero2 h2 {
    margin: 10px 0 10px 0;
    font-size: 27px;
    font-weight: 500;
    color: rgba(32, 69, 112, 1);
    font-family: "Atterton" sans-serif;
  }
}

.statement {
  float: right;
}

.highlighted-words {
  font-family: "Halimun", sans-serif;
}

.hero2 p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 10px 0 0 10px;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

.about .aboutsym {
  font-size: 5px;
  color: #7cdeef;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}

.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

  /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: url("../img/carinahenriquescta.jpg") fixed center center;
  background-size: cover;
  height: 300px;
  padding: 60px 0;
  margin: 50px 0;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

.cta .home-quote {
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 1);
  margin-top: 20px;
  min-height: 150px;
  height: 100px;
}

.cta h3 {
  color: rgba(32, 69, 112, 1);
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
}

.cta p {
  color: rgba(32, 69, 112, 1);
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
  font-size: 18px;
}

@media (max-width: 414px) {
  .cta {
    background: url("../img/carinahenriquescta600.jpg") center center;
    background-size: cover;
    height: 350px;
    padding: 60px 0;
    margin: 50px 0;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  }
  .cta .home-quote {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 1);
    margin-top: 20px;
    min-height: 150px;
    height: 200px;
  }
}

  /*--------------------------------------------------------------
# Cta2
--------------------------------------------------------------*/
.cta2 {
  background: url("../img/qhehenergyhealingcta.jpg") fixed center center;
  background-size: cover;
  height: 300px;
  padding: 60px 0;
  margin: 50px 0;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

.cta2 h3 {
  color: rgba(32, 69, 112, 1);
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
}

.cta2 p {
  color: rgba(32, 69, 112, 1);
}

.cta2 .healing-quote {
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 1);
  margin-top: 20px;
  min-height: 150px;
  height: 100px;
}

.cta2 .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta2 .cta-btn:hover {
  border-color: #fff;
  font-size: 18px;
}

@media (max-width: 414px) {
  .cta2 {
    background: url("../img/qhehenergyhealingcta600.jpg") center center;
    background-size: cover;
    height: 350px;
    padding: 60px 0;
    margin: 50px 0;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  }

  .cta2 .healing-quote {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 1);
    margin-top: 20px;
    min-height: 150px;
    height: 200px;
  }
}
/*--------------------------------------------------------------
# About 2
--------------------------------------------------------------*/

.about2 {
  padding-bottom: 100px;
}

.about2 .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}

.about2 .video-box img {
  padding: 15px 0;
}

.about2 .about-content {
  padding: 40px;
}

.about2 .icon-box+.icon-box {
  margin-top: 40px;
}

.about2 .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 50px;
  transition: 0.5s;
}

.about2 .icon-box .icon i {
  color: rgba(87, 127, 172, 0.7);
  font-size: 32px;
}

.about2 .icon-box:hover .icon {
  background: rgba(87, 127, 172, 1);
}

.about2 .icon-box:hover .icon i {
  color: #fff;
}

.about2 .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.about2 .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about2 .icon-box .title a:hover {
  color: #428bca;
}

.about2 .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.about2 .video-box {
  position: relative;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow:  0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: rgba(57, 148, 237, 0.5);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 1);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid rgba(255, 255, 255, 1);
}

.services .details h3 {
  color: rgba(32, 69, 112, 1);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: rgba(33, 128, 222, 1);
}

.services .service-item:hover .details .icon {
  background: rgba(255, 255, 255, 1);
  border: 2px solid rgba(32, 69, 112, 1);
}

.services .service-item:hover .details .icon i {
  color: rgba(87, 127, 172, 1);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
#contact {
  padding-bottom: 150px;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i.bx {
  font-size: 24px;
  color: rgba(32, 69, 112, 1);
  border-radius: 50%;
  padding: 15px;
  background: #f1f7fb;
}

.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: 14px;
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.social-links a i {
  font-size: 36px;
  display: inline-block;
  color: rgba(33, 128, 222, 0.6);
  line-height: 1;
  margin: 10px 20px;
  transition: 0.3s;
  padding: 14px;
}
.social-links a i:hover {
  color: #44658A;
  font-size: 40px;
}
 /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #ffffff;
    padding: 24px 0;
    font-size: 14px;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.12);
  }

  #footer img {
    max-height: 251px;
    padding-bottom: 15px;
  }
  
  #footer .copyright {
    text-align: center;
  }
  
  #footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
  }

  /*--------------------------------------------------------------
  # Healing Info Section
   --------------------------------------------------------------*/
.healing-info h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.healing-info .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.healing-info .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.healing-info .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

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

.healing-info .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.healing-info .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

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

.healing-info .chakra {
  margin-left: 20px;
}

.healing-info .book {
  margin-left: 30px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  margin: 50px 0;
  background: url("../img/qhehtestimonials.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(32, 69, 112, 0.7);
}

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

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

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

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

@media (max-width: 414px) {
  .testimonials {
    padding: 80px 0;
    margin: 50px 0;
    background: url("../img/qhehtestimonials600.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  }
}
/*--------------------------------------------------------------
# Healing End
--------------------------------------------------------------*/

.healing-end {
  padding-bottom: 100px;
}

.healing-end .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}

.healing-end  .video-box img {
  padding: 15px 0 15px 50px;
}

.healing-end .about-content {
  padding: 40px;
}

.healing-end .icon-box+.icon-box {
  margin-top: 40px;
}

.healing-end .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 50px;
  transition: 0.5s;
}

.healing-end .icon-box .icon i {
  color: rgba(87, 127, 172, 0.7);
  font-size: 32px;
}

.healing-end .icon-box:hover .icon {
  background: rgba(87, 127, 172, 1);
}

.healing-end .icon-box:hover .icon i {
  color: #fff;
}

.healing-end .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.healing-end .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.healing-end .icon-box .title a:hover {
  color: #428bca;
}

.healing-end .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.healing-end .video-box {
  position: relative;
}

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

.portfolio-details .portfolio-details-slider img {
  max-width: 700px;
  max-height: 600px;
}

@media (max-width: 991px) {
  .portfolio-details .portfolio-details-slider img {
    max-width: 650px;
    max-height: 600px;
  }
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-details-slider img {
    max-width: 440px;
    max-height: 600px;
  }
}

@media (max-width: 414px) {
  .portfolio-details .portfolio-details-slider img {
    max-width: 350px;
    max-height: 600px;
  }
}

.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: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 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;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-business .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact-business .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contact-business .info-box i.bx {
  font-size: 24px;
  color: rgba(32, 69, 112, 1);
  border-radius: 50%;
  padding: 15px;
  background: #f1f7fb;
}

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

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