/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Larke Neue", sans-serif;
  color: #88867F;
}

a {
  text-decoration: none;
  color: #88867F;
}

a:hover {
  color: #333333;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Larken-Bold", sans-serif;
  font-weight: normal;
}

/*--------------------------------------------------------------
# Chat WhatsApp
--------------------------------------------------------------*/
.chat-whatsapp {
    right: 60px;
    bottom: 60px;
    position: fixed;
    z-index: 1001;
  }

@media (max-width: 575px) {
  .chat-whatsapp {
    right: 45px!important;
    bottom: 45px!important;
  }  
}

/*--------------------------------------------------------------
# Weglot Plugin Posición 
--------------------------------------------------------------*/
.wg-flags a img.wg-flag {
  height: 24px;
  margin-right: -10px!important;
  margin-top: 20px;
}

.wg-list.country-selector .wgcurrent {
  background: transparent!important;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .wg-flags a img.wg-flag {
    margin-top: 0px!important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #88867F;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #333333;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(136, 134, 127, 0);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  background: rgba(136, 134, 127, 0.7);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

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

#header .logo img {
  max-height: 65px;/*40PX*/
}

@media (max-width: 768px) {
  #header {
    height: 70px;
  }
  #header .logo img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# 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: 35px 0 10px 15px;/*10px 0 10px 30px*/
  font-family: "Larke Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;/*#88867F*/
  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(255, 255, 255, 0.7);/*#333*/
}

.navbar .getstarted,
.navbar .getstarted:focus {
  margin-left: 20px;
  margin-top: 20px;
  font-family: "Larke Neue", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff!important;
  animation-delay: 0.8s;
  background: #88867F;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #333333;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 10px;
  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 {
  color: #88867F;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
}

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

.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: 991px) {
  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 14px 20px 10px 20px;
  }
}

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;/*#556270*/
  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(43, 37, 35, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Banner Video
--------------------------------------------------------------*/

.video-background-holder {
  position: relative;
  background-color: black;
  height: calc(100vh - 0px);/*height: calc(100vh - 72px);*/
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(53, 67, 47, 0.6);
  opacity: 0.5;
  z-index: 1;
}

/*
*
* ==========================================
* FOR DEMO PURPOSES
* ==========================================
*
*/

code {
  padding: 0 0.15rem;
  background: #f5f5f5;
  border-radius: 0.2rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(101, 117, 95, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(53, 67, 47, 0.6);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
}

#hero h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

#hero h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  max-width: 750px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ffffff;
}

#hero .btn-get-started {
  font-family: "Larke Neue", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 14px 32px;/*14px 32px*/
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
  margin: 5px;
}

#hero .btn-get-started:hover {
  background: #333333;
}

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

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 38px;
  }
  #hero h3 {
    font-size: 18px;
  }
  #hero h4 {
    font-size: 14px;
  }
  #hero img {
    width: 200px!important;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

.grupo-boton {
    display: inline-flex;
  }

@media (max-width: 768px) {
  #hero .btn-get-started {
    margin-bottom: 15px!important;
    margin: 0;
  }

  .grupo-boton {
    display: inline-table;
  }
  
}

@media (max-width: 575px) {
  #hero .carousel-container {
    left: 15px;
    right: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}





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

.section-bg,
.services .icon-box {
  background-color: #EDEAE5;
}

.section-bg2 {
  background-color: #140f07;
}

.section-bg3 {
  background-color: #D5D2CD;
}

.section-bg-verde {
  background-color: #9FBCA9;
}

.section-bg-crema {
  background-color: #DED1AF;
}
.section-bg-crema-2 {
  background-color: #867F6C!important;
}
.section-bg-crema-3 {
  background-color: #BAAF92!important;
}

.section-bg-marron {
  background-color: #977366;
}
.section-bg-marron-2 {
  background-color: #74584E!important;
}
.section-bg-marron-3 {
  background-color: #966D5F!important;
}

.section-bg-verdex {
  background-color: #8E988A;
}
.section-bg-verdex-2 {
  background-color: #798276!important;
}
.section-bg-verdex-3 {
  background-color: #8b9885!important;
}

.section-bg-rosado {
  background-color: #CDA99B;
}
.section-bg-rosado-2 {
  background-color: #B09185!important;
}
.section-bg-rosado-3 {
  background-color: #CDA392!important;
}

.section-bg-amarillo {
  background-color: #CAA268;
}
.section-bg-amarillo-2 {
  background-color: #A98756!important;
}
.section-bg-amarillo-3 {
  background-color: #C89b5A!important;
}

.section-bg-equilibrio {
  background-color: #65755F;
}
.section-bg-equilibrio-2 {
  background-color: #434E3F;
}

.section-bg-rejuvenecimiento {
  background-color: #C29B67;
}
.section-bg-rejuvenecimiento-2 {
  background-color: #8D714A;
}

.section-bg-liberacion {
  background-color: #7F7E61;
}
.section-bg-liberacion-2 {
  background-color: #5E5D47;
}

.section-bg-estetica {
  background-color: #C2A094;
}
.section-bg-estetica-2 {
  background-color: #9E8379;
}

.section-bg-full {
  background-color: #65755F;
}
.section-bg-full-2 {
  background-color: #495545;
}

.section-bg-ayuno {
  background-color: #7F7E61;
}
.section-bg-ayuno-2 {
  background-color: #504F35;
}

.section-bg-terapia {
  background-color: #BD956B;
}
.section-bg-terapia-2 {
  background-color: #987856;
}

/* COLORES BG PROGRAMAS */
.section-bg-detox {
  background-color: #6E7A60;
}
.section-bg-detox-2 {
  background-color: #515A46;
}

.section-bg-healing-4 {
  background-color: #898460;
}
.section-bg-healing-4b {
  background-color: #696649;
}

.section-bg-full-day {
  background-color: #BE8C40;
}
.section-bg-full-day-b {
  background-color: #9E7434;
}

.section-bg-plantas {
  background-color: #7D613D;
}
.section-bg-plantas-b {
  background-color: #5B462C;
}

.bg-color-healing-2 {
  background-color: #7F7E61;
}

.bg-color-plantas {
  background-color: #5E5D47;
}

.bg-color-spa {
  background-color: #C29B67;
}

/*
.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #556270;
}
*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #f8f9fa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}

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

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Nosotros - Inicio
--------------------------------------------------------------*/
.nosotros-inicio .icon-boxes h3 {
  font-size: 18px;
  color: #88867F;
}

.nosotros-inicio .icon-boxes h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.nosotros-inicio .icon-boxes p {
  color: #88867F;
  text-align: justify;
  margin: 0;
}

.nosotros-inicio .icon-box {
  margin-top: 40px;
}

.nosotros-inicio .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #999999;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.nosotros-inicio .icon-box .icon i {
  color: #999999;
  font-size: 32px;
}

.nosotros-inicio .icon-box:hover .icon {
  background: #999999;
  border-color: #999999;
}

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

.nosotros-inicio .icon-box .title {
  margin-left: 85px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.nosotros-inicio .icon-box .title a:hover {
  color: #999999;
}

.nosotros-inicio .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.nosotros-inicio .video-box {
  background: url("../img/nosotros/nosotros-video.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.nosotros-inicio .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#999999 50%, rgba(153, 153, 153, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.nosotros-inicio .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nosotros-inicio .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(153, 153, 153, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.nosotros-inicio .play-btn:hover::after {
  border-left: 15px solid #999999;
  transform: scale(20);
}

.nosotros-inicio .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

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

@media (max-width: 1024px) {

.nosotros-inicio {
   padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .nosotros-inicio .icon-boxes h3 {
    font-size: 14px;
  }
  .nosotros-inicio .icon-boxes h2 {
    font-size: 24px;
  }
  .nosotros-inicio .icon-boxes p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .nosotros-inicio {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/
.nosotros .icon-boxes h3 {
  font-size: 18px;
  color: #88867F;
}

.nosotros .icon-boxes h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.nosotros .icon-boxes p {
  color: #88867F;
  text-align: justify;
  margin: 0;
}

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

.nosotros .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #999999;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.nosotros .icon-box .icon i {
  color: #999999;
  font-size: 32px;
}

.nosotros .icon-box:hover .icon {
  background: #999999;
  border-color: #999999;
}

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

.nosotros .icon-box .title {
  margin-left: 85px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.nosotros .icon-box .title a:hover {
  color: #999999;
}

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

.nosotros .video-box {
  background: url("../img/nosotros/nosotros-video.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.nosotros .filosofia-box {
  background: url("../img/nosotros/nosotros-filosofia.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.nosotros .proposito-box {
  background: url("../img/nosotros/nosotros-proposito.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.nosotros .equipo-box {
  background: url("../img/nosotros/nosotros-equipo.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.nosotros .directora-box {
  background: url("../img/nosotros/nosotros-directora.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.nosotros .vision-box {
  background: url("../img/nosotros/nosotros-vision.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.nosotros .spa-box {
  background: url("../img/spa/spa-box.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.nosotros .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#999999 50%, rgba(153, 153, 153, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.nosotros .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nosotros .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(153, 153, 153, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.nosotros .play-btn:hover::after {
  border-left: 15px solid #999999;
  transform: scale(20);
}

.nosotros .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

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

@media (max-width: 1024px) {

  .nosotros {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .nosotros .icon-boxes h3 {
    font-size: 14px;
  }
  .nosotros .icon-boxes h2 {
    font-size: 24px;
  }
  .nosotros .icon-boxes p {
    font-size: 15px;
  }
}

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

/*--------------------------------------------------------------
# Enfoque Integrativo - Metodología
--------------------------------------------------------------*/
.metodologia {
  padding-bottom: 0px;
}

.metodologia h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.metodologia h3 {
  font-size: 18px;
  color: #88867F;
}

.metodologia p {
  color: #88867F;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}

.metodologia .scroll-down img {
  margin-top: 80px;
  max-width: 70px;
}

@media (max-width: 1024px) {

  .metodologia {
    padding-top: 100px;
  } 
}

@media (max-width: 768px) {

  .metodologia h2 {
    font-size: 24px;
  }
  .metodologia h3 {
    font-size: 14px;
  }
  .metodologia p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Enfoque Integrativo
--------------------------------------------------------------*/
.enfoque-integrativo .icon-boxes h3 {
  font-size: 18px;
  color: #88867F;
}

.enfoque-integrativo .icon-boxes h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.enfoque-integrativo .icon-boxes p {
  color: #88867F;
  text-align: justify;
  margin: 0;
}

.enfoque-integrativo .icon-box {
  margin-top: 40px;
}

.enfoque-integrativo .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #999999;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.enfoque-integrativo .icon-box .icon i {
  color: #999999;
  font-size: 32px;
}

.enfoque-integrativo .icon-box:hover .icon {
  background: #999999;
  border-color: #999999;
}

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

.enfoque-integrativo .icon-box .title {
  margin-left: 85px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.enfoque-integrativo .icon-box .title a:hover {
  color: #999999;
}

.enfoque-integrativo .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.enfoque-integrativo .video-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-video.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .filosofia-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-filosofia.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .spa-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-spa.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.enfoque-integrativo .actividades-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-actividades.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.enfoque-integrativo .nutricion-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-nutricion.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.enfoque-integrativo .terapias-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-terapias.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.enfoque-integrativo .programas-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-programas.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.enfoque-integrativo .retiros-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-retiros.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .escuela-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-escuela.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .hospedaje-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-hospedaje.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .ceremonia-box {
  background: url("../img/enfoque-integrativo/enfoque-integrativo-ceremonia.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.enfoque-integrativo .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#999999 50%, rgba(153, 153, 153, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.enfoque-integrativo .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.enfoque-integrativo .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(153, 153, 153, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.enfoque-integrativo .play-btn:hover::after {
  border-left: 15px solid #999999;
  transform: scale(20);
}

.enfoque-integrativo .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

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

@media (max-width: 1024px) {

  .enfoque-integrativo {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .enfoque-integrativo h2 {
    font-size: 28px;
  }
  .enfoque-integrativo .icon-boxes h3 {
    font-size: 14px;
  }
  .enfoque-integrativo .icon-boxes h2 {
    font-size: 24px;
  }
  .enfoque-integrativo .icon-boxes p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .enfoque-integrativo {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Programas: Equilibrio y Vitalidad 
--------------------------------------------------------------*/
.programas_informacion h2 {
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.programas_informacion h3 {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: left;
}

.programas_informacion h2 span {
  font-size: 22px;
  text-transform: none;
  max-width: 900px!important;
}

.programas_informacion p {
  color: #fff;
  text-align: justify;
  margin-bottom: 0;
}

@media (max-width: 1024px) {

  .programas_informacion {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .programas_informacion h2 {
    font-size: 24px;
  }
  .programas_informacion h2 span {
    font-size: 18px;
  }
  .programas_informacion p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Programas: Objetivo del Programa
--------------------------------------------------------------*/
.programas_objetivo-del-programa {
  margin-left: auto;
  margin-right: auto;
}
.programas_objetivo-del-programa h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
}

.programas_objetivo-del-programa h2 span {
  text-transform: none;
}

.programas_objetivo-del-programa p {
  color: #fff;
  text-align: justify;
  margin-bottom: 0px;
}

.programas_objetivo-del-programa ul {
  color: #FFFFFF;
}

.programas_objetivo-del-programa ul li {
  margin-bottom: 15px;
}

.programas_objetivo-del-programa img {
  width: 420px;
}

@media (max-width: 1024px) {

  .programas_objetivo-del-programa {
    padding: 100px 0;
  } 
}

@media (max-width: 992px) {
  .programas_objetivo-del-programa img {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {

  .programas_objetivo-del-programa h2 {
    font-size: 24px;
  }
  .programas_objetivo-del-programa p {
    font-size: 15px;
  }
  .programas_objetivo-del-programa ul {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Programas: Quien dirige
--------------------------------------------------------------*/
.programas_dirige {
  margin-left: auto;
  margin-right: auto;
}
.programas_dirige h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: left;
}

.programas_dirige h2 span {
  text-transform: none;
}

.programas_dirige h3 {
  font-size: 20px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-transform: none;
  text-align: justify;
}

.programas_dirige h4 {
  font-size: 16px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  margin-top: -25px;
  text-transform: none;
}

.programas_dirige p {
  color: #fff;
  text-align: justify;
  margin-bottom: 0px;
}

.programas_dirige img {
  width: 420px;
  text-align: left;
}

.programas_dirige .ico-marks {
  width: 70px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {

  .programas_dirige {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .programas_dirige h2 {
    font-size: 24px;
  }
  .programas_dirige p {
    font-size: 15px;
  }

  .programas_dirige .ico-marks {
    margin-top: 50px;
  }

}


/*--------------------------------------------------------------
# Programas: Recomendado para
--------------------------------------------------------------*/
.programas_recomendado-para {
  padding-top: 0px;
}

.programas_recomendado-para h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
}

.programas_recomendado-para h2 span {
  text-transform: none;
}

.programas_recomendado-para p {
  color: #fff;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

.programas_recomendado-para img {
  width: 420px;
}

.programas_recomendado-para-2 {
  padding-top: 150px;
}

.programas_recomendado-para-2 h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 50px;
  text-transform: none;
  text-align: center;
}

.programas_recomendado-para-2 h2 span {
  text-transform: none;
}

.programas_recomendado-para-2 p {
  color: #fff;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

.programas_recomendado-para-2 img {
  width: 420px;
}

@media (max-width: 1024px) {

  .programas_recomendado-para {
    padding-bottom: 100px;
  } 
  .programas_recomendado-para-2 {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .programas_recomendado-para h2 {
    font-size: 24px;
  }
  .programas_recomendado-para p {
    font-size: 15px;
  }

  .programas_recomendado-para-2 h2 {
    font-size: 24px;
  }
  .programas_recomendado-para-2 p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Programas: Metofdología
--------------------------------------------------------------*/
.programas_metodologia h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
}

.programas_metodologia h2 span {
  text-transform: none;
}

.programas_metodologia p {
  color: #fff;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

.programas_metodologia img {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {

  .programas_metodologia {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .programas_metodologia h2 {
    font-size: 24px;
  }
  .programas_metodologia p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Programas: Actividades del Programa
--------------------------------------------------------------*/
.programas_actividades-del-programa h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
}

.programas_actividades-del-programa h2 span {
  text-transform: none;
}

.programas_actividades-del-programa h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 20px;
}

.programas_actividades-del-programa h4 {
  color: #FFFFFF;
  font-size: 16px;
}

.programas_actividades-del-programa p {
  color: #fff;
  text-align: justify;
  margin-bottom: 0px;
}

.programas_actividades-del-programa img {
  margin-bottom: 30px;
}

.programas_actividades-del-programa table {
  color: #fff;
}

.programas_actividades-del-programa a {
  color: #fff;
}

.programas_actividades-del-programa strong {
  font-size: 14px;
}

.programas_actividades-del-programa .card {
  font-size: 14px;
  color: #88867F;
}

.programas_actividades-del-programa .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
  margin-top: 40px;
}

.programas_actividades-del-programa .btn-get-started:hover {
    color: #fff;
    background: #333333;
}



@media (max-width: 1024px) {

  .programas_actividades-del-programa {
    padding: 100px 0;
  } 

}

@media (max-width: 768px) {

  .programas_actividades-del-programa h2 {
    font-size: 24px;
  }
  .programas_actividades-del-programa p {
    font-size: 15px;
  }
  .programas_actividades-del-programa table {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# SPA
--------------------------------------------------------------*/
.spa .icon-boxes h3 {
  font-size: 18px;
  color: #88867F;
}

.spa .icon-boxes h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.spa .icon-boxes p {
  color: #88867F;
  text-align: justify;
  margin: 0;
}

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

.spa .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #999999;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.spa .icon-box .icon i {
  color: #999999;
  font-size: 32px;
}

.spa .icon-box:hover .icon {
  background: #999999;
  border-color: #999999;
}

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

.spa .icon-box .title {
  margin-left: 85px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.spa .icon-box .title a:hover {
  color: #999999;
}

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

.spa .spa-box {
  background: url("../img/spa/spa-box.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.spa .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#999999 50%, rgba(153, 153, 153, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.spa .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.spa .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(153, 153, 153, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.spa .play-btn:hover::after {
  border-left: 15px solid #999999;
  transform: scale(20);
}

.spa .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

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

@media (max-width: 1024px) {

  .spa {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .spa .icon-boxes h3 {
    font-size: 14px;
  }
  .spa .icon-boxes h2 {
    font-size: 24px;
  }
  .spa .icon-boxes p {
    font-size: 15px;
  }
}

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

.spa-circuito {
  text-align: justify;
}

.spa-circuito h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
}

.spa-circuito h3 {
  font-size: 18px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 15px;
}

.spa-circuito p {
  margin: 0;
}

.spa-circuito ul {
  margin-bottom: 40px;
}

.spa-circuito ul li {
  font-size: 14px;
}

@media (max-width: 1024px) {

  .spa-circuito {
    padding: 100px 0;
  } 
}

@media (max-width: 768px) {

  .spa-circuito h2 {
    font-size: 24px;
  }
  .spa-circuito p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call to action
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 150px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  margin-bottom: 1px;
}

.call-to-action img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.3);/*0.5*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 32px;
  font-weight: normal;
  color: var(--default-color);
  margin-bottom: 30px;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
   display: inline-block;
  padding: 18px 32px 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
}

.call-to-action .cta-btn:hover {
  background: #333333;
}

@media (min-width: 1200px){
  .call-to-action img {
    position: fixed;
  }
}

/*--------------------------------------------------------------
# Reservar Programa Section
--------------------------------------------------------------*/
#reservar-programa {
  background: url("../img/reservar-programa/reservar-programa-bg.jpg") center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

#reservar-programa:before {
  content: "";
  background: rgba(53, 67, 47, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#reservar-programa h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

#reservar-programa h3 {
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  margin-bottom: 10px;
  color: #fff;
}

#reservar-programa p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

#reservar-programa a {
  font-size: 14px;
  margin-bottom: 0px!important;
  color: #fff;
}

#reservar-programa .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #B38A64;
  animation-delay: 0.8s;
  background: #FFFFFF;
}

#reservar-programa .btn-get-started:hover {
  color: #FFFFFF;
  background: #333333;
}

#reservar-programa .box-bg {
  padding: 60px 0;
  background-color: #b38a64;
}

#reservar-programa .box-frase {
  margin-right: 15%;
}

#reservar-programa .box-frase h2 {
  text-align: right!important;
  margin-bottom: 0!important;
}

@media (max-width: 991px) {
  #reservar-programa .box-frase h2 {
    font-size: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #reservar-programa {
    padding: 80px 0;
  }
  #reservar-programa h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Reservar Programa 2 Section
--------------------------------------------------------------*/
#reservar-programa-2 {
  background: url("../img/reservar-programa/reservar-programa-bg-2.jpg") center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

#reservar-programa-2:before {
  content: "";
  background: rgba(53, 67, 47, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#reservar-programa-2 h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

#reservar-programa-2 h3 {
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  margin-bottom: 10px;
  color: #fff;
}

#reservar-programa-2 p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

#reservar-programa-2 a {
  font-size: 14px;
  margin-bottom: 0px!important;
  color: #fff;
}

#reservar-programa-2 .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: transparent;
}

#reservar-programa-2 .btn-get-started:hover {
  background: #333333;
  border: 2px solid #333333;
}

#reservar-programa-2 .box-bg {
  padding: 60px 0;
  background-color: #b38a64;
}

#reservar-programa-2 .box-frase {
  margin-right: 15%;
}

#reservar-programa-2 .box-frase h2 {
  text-align: right!important;
  margin-bottom: 0!important;
}

@media (max-width: 991px) {
  #reservar-programa-2 .box-frase h2 {
    font-size: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #reservar-programa-2 {
    padding: 80px 0;
  }
  #reservar-programa-2 h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq h2 {
  color: #FFFFFF;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, #515A46, transparent 40%);
  border-color: color-mix(in srgb, #515A46, transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: #e43c5c;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #e43c5c;
}

@media (max-width: 1024px) {
    .faq {
        padding: 100px 0;
    }
}

/*--------------------------------------------------------------
# Otros Programas Section
--------------------------------------------------------------*/
#otros-programas {

}
/*--------------------------------------------------------------
# Calendario Programas Section
--------------------------------------------------------------*/
#calendario-programa {
  background: url("../img/calendario-programa/calendario-programa-bg.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

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

#calendario-programa:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#calendario-programa h2 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

#calendario-programa h3 {
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

#calendario-programa p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

#calendario-programa a {
  font-size: 14px;
  margin-bottom: 20px!important;
  color: #fff;
}

#calendario-programa table {
  color: #fff;
}

#calendario-programa .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
}

#calendario-programa .btn-get-started:hover {
  background: #333333;
}

@media (max-width: 768px) {
  #calendario-programa {
    padding: 60px 0 60px 0;
  }
  #calendario-programa table {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Boletín Form Section
--------------------------------------------------------------*/
.boletin {
  background-color: #d5d2cd;
  padding: 150px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.boletin img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

@media (min-width: 1200px){
  .boletin img {
    position: fixed;
  }
}

.boletin:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);/*0.5*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.boletin .container {
  position: relative;
  z-index: 3;
}

.boletin h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
}

.boletin p {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}

.boletin .cta-btn {
  margin-left: 20px;
    margin-top: 20px;
    font-family: "Shree Devanagari 714", sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 32px 14px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    color: #fff !important;
    animation-delay: 0.8s;
    background: #88867F;
}

.boletin .cta-btn:hover {
  color: #fff;
  background: #333333;
}

.boletin label {
  color: #fff;
  font-size: 15px;
  margin-left: 8px;
}

.boletin .php-email-form input {
  height: 43px;
  border: 1px solid #ced4da;
  width: 100%;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0px;
  color: #88867F !important;
}

.boletin .php-email-form button[type=submit] {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff !important;
  animation-delay: 0.8s;
  background: #88867F;
  border: 2px solid #88867F;
  margin-top: 50px;
}

.boletin .php-email-form button[type=submit]:hover {
  background: #333;
  border: 2px solid #333;
}

/*--------------------------------------------------------------
# Calendario Section
--------------------------------------------------------------*/
.calendario {
  padding: 150px 0;
}
.calendario h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
.calendario p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 50px;
}

.calendario .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
  margin-top: 20px;
}

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

.lista-calendario {
  background-color: #fff;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  padding: 35px 30px 10px 30px;
  min-height: 280px;
}
.lista-calendario h3 {
  color: #fff;
  background-color: #65755F;
  width: 90%;
  font-size: 22px;
  text-align: center;
  padding: 10px 5px 4px 5px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}
.lista-calendario p{
  font-size: 14px;
  text-align: left;
}

.calendario .calendario-footer {
  background: #fff;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 0px 30px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .calendario {
    padding: 100px 0;
  }
}


/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
  font-weight: normal;
  font-size: 32px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.faq .content p {
  font-size: 16px;
  color: #FFFFFF;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  color: #FFFFFF;
}

.faq .faq-container .faq-item h3 .num {
  color: #FFFFFF;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #FFFFFF;
}

.faq .faq-container .faq-item h3 .num:hover {
  color: #FFFFFF;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: #FFFFFF;
  font-size: 15px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: #FFFFFF;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #FFFFFF;
}

.faq .faq-container .faq-active h3 {
  color: #FFFFFF;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .faq .content h3 {
    font-size: 28px;
    text-align: center;
  }
  .faq .content p {
    font-size: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 40px;
  text-align: center;
}

.portfolio h3 {
  font-size: 18px;
  color: #88867F;
  text-align: center;
}

.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: normal;
  line-height: 1;
  text-transform: uppercase;
  color: #88867F;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #333;
  font-weight: normal;
  /*--background: #d9232d;--*/
}

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

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

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 98, 112, 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: #fff;
  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: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

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

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

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

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

@media (max-width: 1024px) {
    .portfolio {
        padding: 100px 0;
    }
}

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


/*--------------------------------------------------------------
# Tours
--------------------------------------------------------------*/
.tours h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 15px;
  margin-top: 50px;
  text-transform: uppercase;
  padding: 0px 30px;
}
.tours p {
  color: #88867F;
  text-align: justify;
  margin-bottom: 40px;
  padding: 0px 30px;
}

.tours .getstarted {
  margin-left: 30px;
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff !important;
  animation-delay: 0.8s;
  background: #88867F;
}

.tours .getstarted:hover,
.tours .getstarted:focus:hover {
  color: #fff;
  background: #333333;
}

@media (max-width: 1024px) {
  .tours {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .tours h2 {
    font-size: 28px;
  }
  .tours p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .tours {
    text-align: center;
  }
  .tours h2 {
    padding: 0px 0px;
  }
  .tours p {
    padding: 0px 0px;
  }
  .tours .getstarted {
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  background-color: #d5d2cd;
  padding: 150px 0;
}

.services h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.services p {
  text-align: center;
  margin-bottom: 50px;
}

.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 0px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: #88867F;
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: #88867F;
  font-weight: normal;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
  margin-top: 15px;
}

.services .service-item h3 span {
  font-size: 13px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #88867F;
  font-weight: bold;
}

.services .service-item:hover .icon:before {
  background: #d5d2cd;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.services .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
  margin-top: 40px;
}

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

@media (max-width: 1024px) {
  .services {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .services h2 {
    font-size: 24px;
  }
  .services p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #EDEAE5;
}
.testimonials h2 {
  font-size: 32px;
  text-align: center;
}
.testimonials p {
  text-align: center;
}

.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 0px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #88867F;
  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: 15px auto 15px auto;
}

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

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

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

@media (max-width: 1024px) {
  .testimonials {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .testimonials h2 {
    font-size: 26px;
  }
  .testimonials p {
    font-size: 15px;
  }
  
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Google Maps
--------------------------------------------------------------*/
.map iframe {
    height: 400px;
    width: 100%;
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h2 {
  font-size: 32px;
  font-weight: normal;
  color: #88867F;
  margin-bottom: 30px;
  text-align: center;
}

.contact p {
  color: #88867F;
  margin-bottom: 50px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


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

.contact .info i {
  font-size: 20px;
  color: #556270;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  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 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #556270;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}

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

.contact .php-email-form {
  width: 80%;
  background: #ffffff;
  padding: 50px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  margin-left: auto;
  margin-right: auto;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form select,
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0px;/*4px*/
  color: #88867F!important;
}

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

.contact .php-email-form input {
  height: 43px;
  border: 1px solid #ced4da;
  width: 100%;
}

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

.contact .php-email-form select {
    word-wrap: normal;
    cursor: pointer;
    color: #88867F;
    font-size: 14px;
    padding: 10px;
    /*border: 1px solid #000;*/
    border-radius: 0px;/*0px*/
    width: 100%;
    outline: none;
    /*margin-bottom: 15px;*/
    background-color: #FFF;
    background-image: url(../img/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.contact label {
  color: #88867F;
  font-size: 15px;
  margin-left: 8px;
}

.contact label a {
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: #88867F;
    margin-left: 10px;
    transition: 0.5s;
}
.contact label a:hover {
    color: #333;
}

.contact .php-email-form button[type=submit] {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff !important;
  animation-delay: 0.8s;
  background: #88867F;
  border: 2px solid #88867F;
  margin-top: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #333;
  border: 2px solid #333;
}

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

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

@media (max-width: 1024px) {
    .contact {
        padding: 100px 0;
    }
}

@media (max-width: 768px){
  .contact h2 {
    font-size: 28px;
  }
  .contact p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #556270;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #d9232d;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c1c8d0;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #d9232d;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #df3740;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #556270;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a4afba;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #606f7e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #d9232d;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #556270;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(85, 98, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #d9232d;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #556270;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6b7b8d;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #606f7e;
}

.blog .blog-pagination {
  color: #8795a4;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #556270;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #d9232d;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #556270;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #d9232d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #de323c;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #556270;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #d9232d;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #556270;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #d9232d;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #96a2af;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #d9232d;
  background: #d9232d;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #fbfbfc;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Top Footer
--------------------------------------------------------------*/
.top-footer .info-box {
  color: #313030;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}

.top-footer .info-box i {
  font-size: 32px;
  color: #88867F;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #88867F;
  float: left;
}

.top-footer .info-box h3 {
  font-size: 20px;
  color: #88867F;
  font-weight: normal;
  margin: 10px 0 10px 68px;
}

.top-footer .info-box p {
  color: #88867F;
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.top-footer .info-box a {
  color: #88867F;
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 15px;
  transition: 0.3s;
}

.top-footer .info-box a:hover {
  color: #333333;
}

.top-footer .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

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

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

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

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

.top-footer .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;
  animation: animate-loading 1s linear infinite;
}

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

.top-footer .php-email-form input:focus,
.top-footer .php-email-form textarea:focus {
  border-color: #4b9583;
}

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

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

.top-footer .php-email-form button[type=submit] {
  background: #4b9583;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.top-footer .php-email-form button[type=submit]:hover {
  background: #34695c;
}

@media (max-width: 1024px){
  .top-footer {
    padding: 100px 0;
  }
}

@media (max-width: 768px){

  .top-footer .info-box h3 {
    font-size: 18px;
  }
}

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

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

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

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

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

#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: #ffa587;
  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: #656262;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #ffe2d9;
}

#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #4b9583;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #88867F;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #333333;
  color: #fff;
  text-decoration: none;
}

#footer .copyright h1 {
  font-size: 15px;
  margin-bottom: 0;
}


/* LANDING PAGE */

/*--------------------------------------------------------------
# Hero Landing Section
--------------------------------------------------------------*/
#hero-landing {
  width: 100%;
  height: 100vh;
  background-color: rgba(101, 117, 95, 0.8);
  overflow: hidden;
  position: relative;
}

#hero-landing .carousel,
#hero-landing .carousel-inner,
#hero-landing .carousel-item,
#hero-landing .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero-landing .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-landing .carousel-item::before {
  content: "";
  background-color: rgba(53, 67, 47, 0.6);
}

#hero-landing .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero-landing .container {
  text-align: center;
}

#hero-landing h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
}

#hero-landing h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

#hero-landing h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

#hero-landing h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
}

#hero-landing p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  max-width: 750px;
}

#hero-landing .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero-landing .carousel-inner .carousel-item,
#hero-landing .carousel-inner .active.carousel-item-start,
#hero-landing .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero-landing .carousel-inner .active,
#hero-landing .carousel-inner .carousel-item-next.carousel-item-start,
#hero-landing .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero-landing .carousel-inner .carousel-item-next,
#hero-landing .carousel-inner .carousel-item-prev,
#hero-landing .carousel-inner .active.carousel-item-start,
#hero-landing .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero-landing .carousel-control-next-icon,
#hero-landing .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-landing .carousel-control-next-icon:hover,
#hero-landing .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero-landing .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero-landing .carousel-indicators li.active {
  opacity: 1;
  background: #ffffff;
}

#hero-landing .btn-get-started {
  font-family: "Shree Devanagari 714", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px 14px 32px;/*14px 32px*/
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #88867F;
  margin: 5px;
}

#hero-landing .btn-get-started:hover {
  background: #333333;
}

@media (max-width: 992px) {
  #hero-landing {
    height: 100vh;
  }

  #hero-landing .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero-landing h2 {
    font-size: 28px;
  }
  #hero-landing h3 {
    font-size: 15px;
  }
  #hero-landing h4 {
    font-size: 12px;
  }
  #hero-landing img {
    width: 200px!important;
  }
}

@media (min-width: 1024px) {

  #hero-landing .carousel-control-prev,
  #hero-landing .carousel-control-next {
    width: 5%;
  }
}

.grupo-boton {
    display: inline-flex;
  }

@media (max-width: 768px) {
  #hero-landing .btn-get-started {
    margin-bottom: 15px!important;
    margin: 0;
  }

  .grupo-boton {
    display: inline-table;
  }
  
}

@media (max-width: 575px) {
  #hero-landing .carousel-container {
    left: 15px;
    right: 15px;
  }
}

@media (max-height: 500px) {
  #hero-landing {
    height: 120vh;
  }
}

.landing-info {
  color: #fff;
}

.landing-info h2 {
  font-size: 28px;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
}

.landing-info h3 {
  font-size: 20px;
  font-weight: normal;
  color: #FFFFFF;
  margin-top: 30px;
  text-transform: none;
}

.landing-info h4 {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-transform: none;
}

.landing-info p {
  color: #fff;
  text-align: justify;
  margin-bottom: 0;
}









/*--------------------------------------------------------------
# Hero Img
--------------------------------------------------------------*/
.hero-img {
  width: 100%;
  height: 83vh;
  background: url(../img/programas/detox-funcional/detox-funcional-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.hero-healing-days-4 {
  width: 100%;
  height: 83vh;
  background: url(../img/programas/healing-days-detox-4-dias/healing-days-detox-4-dias-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.hero-healing-days-2 {
  width: 100%;
  height: 83vh;
  background: url(../img/programas/healing-days-detox-2-dias/healing-days-detox-2-dias-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.hero-full-day {
  width: 100%;
  height: 83vh;
  background: url(../img/programas/full-day/full-day-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.hero-sacred-plants-retreat {
  width: 100%;
  height: 83vh;
  background: url(../img/programas/retiro-con-plantas-sagradas/retiro-con-plantas-sagradas-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.hero-spa {
  width: 100%;
  height: 83vh;
  background: url(../img/spa/spa-arboldelavida.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(53, 67, 47, 0.6);
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 1440px) {
  .hero-img {
    height: 73vh;
  }
  .hero-healing-days-4 {
    height: 73vh;
  }
  .hero-healing-days-2 {
    height: 73vh;
  }
  .hero-full-day {
    height: 73vh;
  }
  .hero-sacred-plants-retreat {
    height: 73vh;
  }
  .hero-spa {
    height: 73vh;
  }
}

@media (max-width: 991px) {
  .hero-img {
    height: 63vh;
  }
  .hero-healing-days-4 {
    height: 63vh;
  }
  .hero-healing-days-2 {
    height: 63vh;
  }
  .hero-full-day {
    height: 63vh;
  }
  .hero-sacred-plants-retreat {
    height: 63vh;
  }
  .hero-spa {
    height: 63vh;
  }
}

@media (max-width: 767px) {
  .hero-img {
    height: 53vh;
  }
  .hero-healing-days-4 {
    height: 53vh;
  }
  .hero-healing-days-2 {
    height: 53vh;
  }
  .hero-full-day {
    height: 53vh;
  }
  .hero-sacred-plants-retreat {
    height: 53vh;
  }
  .hero-spa {
    height: 53vh;
  }
}

@media (min-width: 1200px) {
  .hero-img {
    background-attachment: fixed;
  }
  .hero-healing-days-4 {
    background-attachment: fixed;
  }
  .hero-healing-days-2 {
    background-attachment: fixed;
  }
  .hero-full-day {
    background-attachment: fixed;
  }
  .hero-sacred-plants-retreat {
    background-attachment: fixed;
  }
  .hero-spa {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Detox Intensive
--------------------------------------------------------------*/
.detox-intensive {
  color: #fff;
  /*background-color: #6e7a60;*/
  padding: 80px 0;
}
.detox-intensive h2 {
  color: #fff;
  font-size: 38px/*62px*/;
  font-weight: bold;
  font-family: "Larken-Bold", sans-serif;
  margin-bottom: 20px;
}
.detox-intensive h3 {
  color: #fff;
  font-size: 20px;
  font-family: "Larken-Bold", sans-serif;
  margin-bottom: 0;
}
.detox-intensive h4 {
  color: #fff;
  font-size: 42px;
  font-family: "Larken-Bold", sans-serif
}
.detox-intensive p {
  font-size: 16px;
  font-family: "Larke Neue", sans-serif;
  text-align: justify;
  margin: 0;
}

.detox-intensive img {
  position: relative;
  z-index: 1;
  margin-top: -190px;
  margin-bottom: 75px;
  width: 220px;
}

/* Large devices (desktops) */
@media (max-width: 992px) {
  .detox-intensive img {
    margin-top: 0px;
    margin-bottom: 0px;
    display: none;
  }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .detox-intensive h2 {
    font-size: 34px;
    /* max-width: 220px; */
  }
  .detox-intensive h3 {
    font-size: 20px;
  }
  .detox-intensive h4 {
    color: #fff;
    font-size: 30px;
  }
  .detox-intensive p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Reserve Section
--------------------------------------------------------------*/
#reserve {
  width: 100%;
  height: auto;
  background: url("../img/programas/detox-funcional/reserve-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 100px 0;
}

#reserve:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#reserve h2 {
  font-family: "Larken-Bold", sans-serif;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#reserve h3 {
  font-family: "Larken-Bold", sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#reserve h4 {
  font-family: "Larken-Bold", sans-serif;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 10px;
  color: #fff;
}

#reserve p {
  font-family: "Larke Neue", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  margin: 0;
}

#reserve .date-box {
  max-width: 390px;
  background-color: #b38a64;
  text-align: center;
  padding: 35px 20px 55px 20px;
}

@media (max-width: 992px) {
  #reserve h2 {
    font-size: 20px;
  }
  #reserve h3 {
    font-size: 20px;
  }
  #reserve p {
    font-size: 16px;
  }
  #reserve h4 {
    font-size: 35px;
  }
  #reserve .date-box {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  #reserve h2 {
    font-size: 18px;
  }
  #reserve h3 {
    font-size: 18px;
  }
  #reserve p {
    font-size: 14px;
  }
  #reserve h4 {
    font-size: 25px;
  }
  #reserve .date-box {
    max-width: 350px;
  }
}

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

/*--------------------------------------------------------------
# Botón Reserve
--------------------------------------------------------------*/
.bt-reserve {
  font-family: "Larke Neue", sans-serif;
  color: #b38a64;
  background: #fff;
  padding: 10px 30px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all ease-in-out 0.3s;
  font-weight: normal;
  line-height: 1;
  font-size: 16px;
  white-space: nowrap;
  text-transform: uppercase;
}

.bt-reserve:hover {
  background: #6e7a60;
  color: #fff;
}

.bt-reserve:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .bt-reserve {
    padding: 8px 20px;
    font-size: 14px;
    margin: 0px;
  }

}

/*--------------------------------------------------------------
# Experience Section
--------------------------------------------------------------*/
.experience {
  /*background-color: #fff;*/
  padding: 80px 0;
  text-align: center;
}
.experience h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #b38a64;
  font-size: 45px;
  margin-bottom: 55px;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.experience h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 20px;
  text-align: justify;
  margin-bottom: 8px;
}
.experience p {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

@media (max-width: 992px) {
  .experience h2 {
    font-size: 35px;
  }
  .experience p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .experience h2 {
    font-size: 25px;
  }
  .experience p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Archieve Section
--------------------------------------------------------------*/
.archieve {
 /* background-color: #fff;*/
  padding: 0;
}
.archieve h2 {
  font-family: "Larken-Bold", sans-serif;
  font-size: 45px;
  color: #6e7a60;
}
.archieve h3 {
  font-family: "Larken-Bold", sans-serif;
  font-size: 16px;
  color: #6e7a60;
  margin-bottom: 8px;
}
.archieve ul {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
}

.archieve ul li {
  margin-bottom: 15px;
  margin-right: 150px;
  text-align: justify;
}

.archieve img {
  text-align: right;
}

.archieve-left {
  margin-left: 30px;
}

@media (max-width: 992px) {
  .archieve-left {
    margin-left: 0px;
  }
  .archieve img {
    margin-top: 50px;
  }
  .archieve ul li {
    margin-right: 0px;
  }

  .archieve h2 {
    font-size: 35px;
  }
  .archieve ul {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .archieve h2 {
    font-size: 25px;
  }
  .archieve ul {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Learning Section
--------------------------------------------------------------*/
.learning {
  /*background-color: #fff;*/
  padding: 80px 0;
}

.learning h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #b38a64;
  font-size: 45px;
}
.learning h3 {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
}
.learning p {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 35px;
  text-align: justify;
  margin: 0;
}

@media (max-width: 992px) {
  .learning h2 {
    font-size: 35px;
  }
  .learning h3 {
    font-size: 16px;
  }
  .learning p {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .learning h2 {
    font-size: 25px;
  }
  .learning h3 {
    font-size: 14px;
  }
  .learning p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Learning steps Section
--------------------------------------------------------------*/
.learning-steps {
  /*background-color: #fff;*/
  padding: 0;
}

.learning-steps h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 45px;
  margin-top: 20px;
  line-height: 1.2;
}

.learning-steps h2::after {
  display: none;
}

.learning-steps h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 26px;
}

.learning-steps h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 90px;
  margin-right: 10px;
  margin-bottom: -6px;
}

.learning-steps p {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
  text-align: justify;
}

.learning-steps-title {
  display: flex;
}

.learning-steps-left {
  margin-left: 15px;
}
.learning-steps-right {
  margin-right: 15px;
}

@media (max-width: 992px) {
  .learning-steps-left {
    margin-left: 0px;
  }
  .learning-steps-left img {
    margin-top: 30px;
  }

  .learning-steps-right {
    margin-right: 0px;
  }

  .learning-steps h2 {
    font-size: 35px;
    margin-top: 0px;
  }
  .learning-steps h4 {
    font-size: 70px;
    margin-bottom: -4px;
  }
  .learning-steps h3 {
    font-size: 20px;
  }
  .learning-steps p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .learning-steps h2 {
    font-size: 25px;
    margin-top: 0px;
  }
  .learning-steps h4 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .learning-steps h3 {
    font-size: 18px;
  }
  .learning-steps p {
    font-size: 14px;
  }
}

.section-title {
  display: flex;
}



/*--------------------------------------------------------------
# Emotional wellness therapies Section
--------------------------------------------------------------*/
.emotional {
  width: 100%;
  height: auto;
  background: url(../img/programas/detox-funcional/emotional-bg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 80px 0;
}

.emotional:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.emotional h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 45px;
  margin-top: 20px;
}

.emotional h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 26px;
}

.emotional h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 90px;
  margin-right: 10px;
  margin-bottom: -6px;
}

.emotional p {
  font-family: "Larke Neue", sans-serif;
  color: #fff;
  font-size: 18px;
  text-align: justify;
  /*margin-bottom: 240px;*/
  max-width: 560px;
}

.emotional-title {
  display: flex;
}

.emotional-img {
  text-align: center;
  margin-top: 240px;
}

@media (max-width: 992px) {
  .emotional h2 {
    font-size: 35px;
    margin-top: 0px;
  }
  .emotional h3 {
    font-size: 25px;
  }
  .emotional h4 {
    font-size: 70px;
    margin-bottom: -4px;
  }
  .emotional p {
    font-size: 16px;
  }
  .emotional img {
    width: 345px;
    margin-top: 200px;
  }
}

@media (max-width: 768px) {
  .emotional h2 {
    font-size: 25px;
  }
  .emotional h3 {
    font-size: 20px;
  }
  .emotional h4 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .emotional p {
    font-size: 14px;
  }
  .emotional img {
    width: 245px;
  }
}

@media (min-width: 1200px) {
  .emotional {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# I want to be part of the program Section
--------------------------------------------------------------*/
.part-program {
  color: #fff;
  background-color: #b38a64;
  padding: 80px 0;
  text-align: center;
}
.part-program h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 26px;
  margin-bottom: 50px;
}
.part-program h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}
.part-program p {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 20px;
  margin: 0;
}
.part-program-title {
  display: inline-flex;
}

.part-program img {
  margin-top: 5px;
}

@media (max-width: 992px) {
  .part-program h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .part-program h3 {
    color: #fff;
    font-size: 26px;
    margin-top: 10px;
  }
  .part-program p {
    font-size: 18px;
  }

  .part-program img {
    margin-top: 0px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .part-program h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 50px;
  }
  .part-program h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
  }
  .part-program p {
    font-size: 16px;
  }
  .part-program img {
    margin-top: -5px;
    height: 18px;
  }
}

/*--------------------------------------------------------------
# Experience a full day of well-being and renewal Section
--------------------------------------------------------------*/
.full-day {
  padding: 80px 0;
}
.full-day h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 45px;
  margin-top: 20px;
  max-width: 580px;
}
.full-day h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 26px;
}
.full-day h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 90px;
  margin-right: 10px;
  margin-bottom: -6px;
}
.full-day p {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
  margin-bottom: 40px;
}
.full-day-title {
  display: flex;
}


.ico-hoja {
  margin-right: 50px;
  margin-bottom: 22px;
}

@media (max-width: 992px) {
  .full-day h2 {
    font-size: 35px;
  }
  .full-day h3 {
    font-size: 20px;
  }
  .full-day h4 {
    font-size: 70px;
    margin-bottom: -4px;
  }
  .full-day p {
    font-size: 16px;
  }
  .ico-hoja {
    margin-right: 40px;
    display: none;
  }
}

@media (max-width: 768px) {
  .full-day {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .full-day-title h2 {
    font-size: 25px;
    margin-left: 35px;
  }
  .full-day h3 {
    font-size: 18px;
  }
  .full-day h4 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .full-day p {
    font-size: 14px;
  }
  .ico-hoja {
    margin-right: 30px;
  }
}


/*--------------------------------------------------------------
# Accommodation in a sacred and magical setting Section
--------------------------------------------------------------*/
.accommodation-sacred {
  padding-bottom: 80px;
  padding-top: 0px;
}
.accommodation-sacred h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 45px;
  margin-top: 20px;
  max-width: 700px;
}
.accommodation-sacred h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 26px;
}
.accommodation-sacred h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 90px;
  margin-right: 10px;
  margin-bottom: -6px;
}
.accommodation-sacred p {
  font-family: "Larke Neue", sans-serif;
  color: #6e7a60;
  font-size: 18px;
  margin-bottom: 40px;
  text-align: justify;
  margin: 0;
}

@media (max-width: 575px) {
  .accommodation-sacred h2 {
    font-size: 30px !important;
    }
}

@media (max-width: 992px) {
  .accommodation-sacred h2 {
    font-size: 35px;
    margin-top: 0px;
  }
  .accommodation-sacred h3 {
    font-size: 20px;
  }
  .accommodation-sacred h4 {
    font-size: 70px;
    margin-bottom: -4px;
  }
  .accommodation-sacred p {
    font-size: 16px;
    margin-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .accommodation-sacred h2 {
    font-size: 25px;
  }
   .accommodation-sacred h3 {
    font-size: 18px;
  }
  .accommodation-sacred h4 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .accommodation-sacred p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Who directs the program? Section
--------------------------------------------------------------*/
.who-directs {
  color: #fff;
  background-color: #6e7a60;
  padding: 80px 0;
}
.who-directs h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 45px;
}
.who-directs h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #fff;
  font-size: 26px;
}
.who-directs p {
  font-family: "Larke Neue", sans-serif;
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

.who-directs-left {
  margin-left: 30px;
  text-align: justify;
  max-width: 410px;
}

.who-directs-right {
  text-align: right;
}

.who-directs-left img {
    width: 100px;
  }

@media (max-width: 992px) {
  .who-directs-left {
    margin-left: 0px;
    max-width: none;
  }

  .who-directs h2 {
    font-size: 35px;
  }
  .who-directs h3 {
    font-size: 20px;
  }
  .who-directs p {
    font-size: 16px;
  }
  .who-directs-right img {
    display: none;
    width: 156px;
    height: 156px;
  }
  .who-directs-left img {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .who-directs h2 {
    font-size: 25px;
  }
  .who-directs h3 {
    font-size: 18px;
    margin: 0px;
  }
  .who-directs p {
    font-size: 14px;
    margin-top: -20px;
  }
 
  .who-directs-left img {
    width: 60px;
  }
}

/*--------------------------------------------------------------
# Faqs Section
--------------------------------------------------------------*/
.faqs {
  /*background-color: #fff;*/
  padding-bottom: 0;
  padding-top: 80px;
}
.faqs h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 52px;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.faqs h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 26px;
}
.faqs p {
  color: #6e7a60;
  font-size: 18px;
  text-align: justify;
  font-family: "Larke Neue", sans-serif;
}

.faqs a {
  color: #6e7a60;
  font-size: 18px;
  text-align: justify;
  font-family: "Larke Neue", sans-serif;
  transition: 0.5s;
}

.faqs a:hover,
a:active,
a:focus {
  color: #4d5643;
  outline: none;
  text-decoration: none;
}

@media (max-width: 992px) {
  .faqs h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .faqs h3 {
    font-size: 20px;
  }
  .faqs p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faqs h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .faqs h3 {
    font-size: 18px;
  }
  .faqs p {
    font-size: 14px;
  }
}

.itinerary_box-color-1 h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
}
.itinerary_box-color-1 {
  font-family: "Larke Neue", sans-serif;
  font-size: 14px;
  background-color: #e2e1e1;
  padding: 30px;
  height: 480px;
}
.itinerary_box-color-2 h4 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
}
.itinerary_box-color-2 {
  font-family: "Larke Neue", sans-serif;
  font-size: 14px;
  background-color: #efeeef;
  padding: 30px;
  height: 480px;
}
.itinerary_image {
  text-align: center;
}
.itinerary_image img {
  width: 200px;
  height: 200px;
  margin-top: 100px;
}

@media (max-width: 992px) {
  .itinerary_box-color-1 {
    height: auto;
  }
  .itinerary_box-color-2 {
    height: auto;
  }
  .itinerary_image img {
    width: 180px;
    height: 180px;
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .itinerary_image img {
    width: 160px;
    height: 160px;
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding-bottom: 0px;
  padding-top: 80px;
}

#contact h2 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 26px;
}

#contact h3 {
  font-family: "Larken-Bold", sans-serif;
  color: #6e7a60;
  font-size: 52px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

#contact p {
  font-family: "Larke Neue", sans-serif;
    color: #6e7a60;
    font-size: 18px;
    text-align: justify;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #6e7a60;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #9195a2;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #6e7a60;
}

#contact .contact-info a {
  color: #9195a2;
}

#contact .contact-info a:hover {
  color: #6e7a60;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#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;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea,
#contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  color: #6e7a60 !important;
  font-family: "Larke Neue", sans-serif;
}

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

#contact .php-email-form input[type=text]::placeholder,
#contact .php-email-form input[type=email]::placeholder,
#contact .php-email-form textarea::placeholder {
  color: #6e7a60;
}

#contact .php-email-form select {
  word-wrap: normal;
  cursor: pointer;
  border-radius: 0px;
  width: 100%;
  outline: none;
  background-color: #FFF;
  background-image: url(../img/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}


#contact .php-email-form input,
#contact .php-email-form select {
  padding: 10px 15px;
  font-family: "Larke Neue", sans-serif;
}

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

#contact .php-email-form button[type=submit] {
  font-family: "Larke Neue", sans-serif;
  background: #6e7a60;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
}

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

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

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

@media (max-width: 992px) {
  #contact h2 {
    font-size: 20px;
  }
  #contact p {
    font-size: 16px;
  }
  #contact .php-email-form input, #contact .php-email-form textarea, #contact .php-email-form select {
    font-size: 16px;
  }

  #contact h3 {
    font-size: 42px;
    margin-bottom: 50px;
  }

  #contact .php-email-form button[type=submit] {
    background: #6e7a60;
    border: 0;
    padding: 8px 25px;
    color: #fff;
    font-size: 14px;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
  }
}

@media (max-width: 768px) {
  #contact h2 {
    font-size: 18px;
  }
  #contact p {
    font-size: 14px;
  }
   #contact h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  #contact .php-email-form input, #contact .php-email-form textarea, #contact .php-email-form select {
    font-size: 14px;
  }
}




