/**
* Template Name: Remember
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/remember-free-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {font-family: "Open Sans", sans-serif;color: #444444;}
a {text-decoration: none;color: #8fc04e;}
a:hover {color: #a7cd74;text-decoration: none;}
h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif;}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #8fc04e;
  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: #a2cb6c;color: #fff;}
.back-to-top.active {visibility: visible;opacity: 1;}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {[data-aos-delay] {transition-delay: 0 !important;}}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {width: 100%;height: 70vh;position: relative;}
#hero:before {content: "";background: rgba(0, 0, 0, 0.2);position: absolute;bottom: 0;top: 0;left: 0;right: 0;}
#hero .hero-container {position: absolute;bottom:0;top:0;left:0;right:0;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center;padding:0 15px;}
#hero h1 {margin: 0 0 10px 0;font-size: 48px;font-weight: 700;line-height: 56px;color: #fff;}
#hero h2 {color: #eee;margin-bottom: 50px;font-size: 24px;}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #8fc04e;
  color: #fff;
  background-color: #445c25d9;
}
#hero .btn-get-started:hover {background: #8fc04e;}
@media (min-width: 1024px) {#hero {background-attachment: fixed;}}
@media (max-width: 768px) {
  #hero {height: 100vh;}
  #hero h1 {font-size: 28px;line-height: 36px;}
  #hero h2 {font-size: 18px;line-height: 24px;margin-bottom: 30px;}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {padding: 60px 0;overflow: hidden;}
.section-title-acdm {text-align: center;padding-bottom: 30px;}
.section-title-acdm h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f3f8ec;
  color: #8fc04e;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title-acdm h3 {margin:15px 0 0 0;font-size:32px;font-weight:700;}
.section-title-acdm h3 span {color: #8fc04e;}
.section-title-acdm p {margin: 15px auto 0 auto;font-weight: 600;}
@media (min-width: 1024px) {.section-title-acdm p {width: 70%;}}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #f3f8ec;
  color: #8fc04e;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.about .box-heading h3 {font-size: 28px;font-weight: 700;color: #353535;margin-bottom: 15px;}
.about .icon-box {margin-top: 40px;}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d6e8bf;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {color: #8fc04e;font-size: 32px;}
.about .icon-box:hover .icon {background: #8fc04e;border-color: #8fc04e;}
.about .icon-box:hover .icon i {color: #fff;}
.about .icon-box .title {margin-left: 85px;font-weight: 700;margin-bottom: 10px;font-size: 18px;}
.about .icon-box .title a {color: #343a40;transition: 0.3s;}
.about .icon-box .title a:hover {color: #8fc04e;}
.about .icon-box .description {margin-left: 85px;line-height: 24px;font-size: 14px;}
.about .video-box {
  background-size: cover;
  min-height: 650px; /* anterior valor 400px*/
  position: relative;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#8fc04e 50%, rgba(143, 192, 78, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .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);
}
.about .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(143, 192, 78, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {border-left: 15px solid #8fc04e;transform: scale(20);}
.about .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;
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {padding: 50px 30px;box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);transition: all ease-in-out 0.3s;}
.why-us .box span {display: block;font-size: 28px;font-weight: 700;color: #8fc04e;}
.why-us .box h4 {font-size: 24px;font-weight: 600;padding: 0;margin: 20px 0;color: #353535;}
.why-us .box p {color: #919191;font-size: 15px;margin: 0;padding: 0;}
.why-us .box:hover {background: #8fc04e;padding: 30px 30px 70px 30px;box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);}
.why-us .box:hover span,.why-us .box:hover h4,.why-us .box:hover p {color: #fff;}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {background: #fff;padding: 0 0 60px 0;}
.counts .counters span {font-size: 48px;display: block;color: #8fc04e;}
.counts .counters p {padding: 0;margin: 0 0 20px 0;font-family: "Raleway", sans-serif;font-size: 14px;}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.8)), url("/static/reservas/images/cta.f3d505425369.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}
.cta-text {width:75%;margin:0 auto;}
.cta h3 {color: #fff;font-size: 28px;font-weight: 700;}
.cta p {color: #fff;}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {background: #8fc04e;border: 2px solid #8fc04e;}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {text-align: center;border: 1px solid #e5f0d5;padding: 80px 20px;transition: all ease-in-out 0.3s;background: #fff;}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f3f8ec;
  border-radius: 50px;
  border: 1px solid #d6e8bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {color: #bfdb99;font-size: 28px;transition: ease-in-out 0.3s;}
.services .icon-box h4 {font-weight: 700;margin-bottom: 15px;font-size: 24px;}
.services .icon-box h4 a {color: #353535;transition: ease-in-out 0.3s;}
.services .icon-box p {line-height: 24px;font-size: 14px;margin-bottom: 0;}
.services .icon-box:hover {border-color: #fff;box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);}
.services .icon-box:hover h4 a,.services .icon-box:hover .icon i {color: #8fc04e;}
.services .icon-box:hover .icon {border-color: #8fc04e;}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {background-color:#f5faf066;}
.pricing .box {padding: 20px;background: #ffffff;text-align: center;border-radius: 8px;position: relative;overflow: hidden;border: 1px solid #f9f9f9;}
.pricing .box h3 {margin-top: 15px;font-size:18px;font-weight:600;color:#353535;}
.pricing .box h4 {font-size: 42px;color: #8fc04e;font-weight: 500;font-family: "Open Sans", sans-serif;margin-bottom: 20px;}
.pricing .box h4 sup {font-size: 20px;top: -15px;left: -3px;}
.pricing .box h4 span {color: #bababa;font-size: 16px;font-weight: 300;}
.pricing .box ul {padding: 0;list-style: none;color: #353535;text-align: center;line-height: 20px;font-size: 14px;}
.pricing .box ul li {padding-bottom: 16px;}
.pricing .box ul i {color: #8fc04e;font-size: 18px;padding-right: 4px;}
.pricing .box ul .na {color: #ccc;text-decoration: line-through;}
.pricing .box .btn-wrap {padding: 15px;text-align: center;}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #8fc04e;
  color: #8fc04e;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {background: #8fc04e;color: #fff;}
.pricing .recommended {border-color: #8fc04e;}
.pricing .recommended .btn-buy {background: #8fc04e;color: #fff;}
.pricing .recommended .btn-buy:hover {background: #7aa93c;border-color: #7aa93c;}
.pricing .recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #8fc04e;
  color: #fff;
  border-radius: 0 0 25px 25px;
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {background: #f5faf0;}
.faq .section-title-acdm h2 {background: #e9f3dd;}
.faq .faq-list {padding: 0 100px;}
.faq .faq-list ul {padding: 0;list-style: none;}
.faq .faq-list li+li {margin-top: 15px;}
.faq .faq-list li {padding: 20px;background: #fff;border-radius: 4px;position: relative;}
.faq .faq-list a {display: block;position: relative;font-family: "Poppins", sans-serif;font-size: 16px;line-height: 24px;font-weight: 500;padding: 0 30px;outline: none;cursor: pointer;}
.faq .faq-list .icon-help {font-size: 24px;position: absolute;right: 0;left: 20px;color: #cbe1ac;}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {font-size: 24px;position: absolute;right: 0;top: 0;}
.faq .faq-list p {margin-bottom: 0;padding: 10px 0 0 0;}
.faq .faq-list .icon-show {display: none;}
.faq .faq-list a.collapsed {color: #343a40;}
.faq .faq-list a.collapsed:hover {color: #8fc04e;}
.faq .faq-list a.collapsed .icon-show {display: inline-block;}
.faq .faq-list a.collapsed .icon-close {display: none;}
@media (max-width: 1200px) {.faq .faq-list {padding: 0;}}
/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contact .info {width: 100%;background: #fff;}
.contact .info i {
  font-size: 20px;
  color: #8fc04e;
  float: left;
  width: 44px;
  height: 44px;
  background: #f3f8ec;
  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: #353535;}
.contact .info p {padding: 0 0 0 60px;margin-bottom: 0;font-size: 14px;color: #686868;}
.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: #8fc04e;color: #fff;}
.contact .php-email-form {width: 100%;background: #fff;}
.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 input,
.contact .php-email-form textarea {border-radius: 0;box-shadow: none;font-size: 14px;}
.contact .php-email-form input {height: 44px;}
.contact .php-email-form textarea {padding: 10px 12px;}
.contact button[type=submit] {
  background: #8fc04e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 40px;
  font-family: 'Open Sans';
  font-size: 16px;
}
.contact .php-email-form button[type=submit]:hover {background: #7aa93c;}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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