/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #a8ba34;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #2c9966;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #6ec083;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #f5f5f5;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

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

#topbar .contact-info i {
  color: #a8ba34;
  padding-right: 4px;
}

#topbar .contact-info i.icofont-phone {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #777777;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #a8ba34;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/* -----------------
# Modal Dialog
------------------- */
.modal {
  z-index: 2000 !important;
}

.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.modal-body {
  position:relative;
  padding:0px;
}

.close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}

.btn-video-modal {
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.btn-video-modal:hover {
  opacity: 0.8;
  transform: scale(1.02, 1.02);
  transform-origin: center;
  transition: all 0.2s ease-in;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 999;
  padding: 20px 0;
  /* top: 40px; */
}

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

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

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

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

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 15px 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #fff;
}

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

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #a8ba34;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.page-template-page-home .link-home a,
.page-template-about-us .link-nosotros a,
.page-template-our-services .link-servicios a,
.page-template-our-clients .link-clientes a {
  color: #a8ba34;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

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

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



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 30px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #a8ba34;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* ----------
  HEADER
------------- */
.localidad {
  margin-right: 32px;
  font-size: 15px;
  font-style: italic;
  color: #2c9966;
}

.nav-menu .social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  width: 24px;
  height: 24px;
  background-color: #d4d4d4;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}

.social-links a.facebook {
  background-color: #3B5998;
}

.social-links a.instagram {
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.social-links a.email {
  background-color: #7d7d7d;
}
.social-links a.whatsapp {
  background-color: #25d366;
}

.nav-menu .social-links a.whatsapp.btn {
  width: 185px;
  border-radius: 15px;
  font-size: 12px;
  height: 32px;
  margin-left: 10px;
  color: white;
}

.nav-menu .social-links a.whatsapp.btn:hover {
  color: white;
  background-color: #1bc159;
}

.nav-menu .social-links a.whatsapp.btn i {
  margin-right: 7px;
  font-size: 16px;
}



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

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}

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

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

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  text-shadow: 0px 6px 10px rgb(0 0 0 / 44%);
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 20px;
  width: 65%;
  text-shadow: 0px 6px 10px rgb(0 0 0 / 44%);
}

#hero p.first {
  font-size: 19px;
  width: 50%;
  background-color: rgb(44 153 102 / 47%);
  text-shadow: 0px 6px 10px rgb(0 0 0 / 44%);
  border-radius: 16px;
  padding: 6px 15px;
  text-transform: uppercase;
  font-weight: 600;
}

#hero p.first span {
  color: #64ffaa;
  font-weight: 700;
}

#hero p.second {
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffc478;
  text-shadow: 0px 6px 10px rgb(0 0 0 / 44%);
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

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

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #009966;
}

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

.page-template-about-us #hero,
.blog #hero,
.page-template-our-services #hero,
.page-template-our-clients #hero,
.page-template-contact #hero,
.error404 #hero {
  height: 45vh;
}

.page-template-about-us #hero .carousel-container,
.blog #hero .carousel-container,
.page-template-our-services #hero .carousel-container,
.page-template-our-clients #hero .carousel-container,
.page-template-contact #hero .carousel-container,
.error404 #hero .carousel-container {
  top: 160px;
}


@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 66px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #a8ba34;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 70px 0 70px;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(
    0deg,
    #222222 0%,
    #2f2f2f 50%,
    #222222 100%
  );
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #a8ba34;
  font-size: 42px;
}

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

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

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

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about {
  background: #f5f5f5 url('../img/bg-about.jpg') right top no-repeat;
  background-size: contain;
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content h4 {
  text-align: center;
}

.about .content ul {
  list-style: none;
  padding-top: 40px;
  padding-right: 32px;
}

.about .content ul li {
  padding-bottom: 35px;
  font-size: 17px;
  font-weight: 500;
  color: #696969;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: white;
  padding: 28px 28px;
  border-radius: 15px;
  box-shadow: 0px 8px 29px rgb(0 0 0 / 14%);
  margin-bottom: 30px;
}

.about .content ul li .icon {
  width: 120px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 23px;
}

.about .content ul li .icon a {
  font-size: 15px;
  color: blue;
  line-height: 16px;
  transition: all .2s ease-in-out;
}

.about .content ul li .icon a:hover {
  color: #222222;
  transition: all .2s ease-in-out;
}

.about .content ul li .icon a img {
  width: 90px;
  margin-bottom: 10px;
}

.about .content ul li .info {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.about .content ul li .info span {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #2c9966;
}

.about .content ul li .info .social-links {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.about .content ul li .info .social-links .consulta {
  color: #383838;
  margin-right: 12px;
}

.about .content ul li .info .social-links a {
  width: 24px;
  height: 24px;
  background-color: #d4d4d4;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}

.about .content ul li .info .social-links a.facebook {
  background-color: #3B5998;
}

.about .content ul li .info .social-links a.instagram {
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.about .content ul li .info .social-links a.email {
  background-color: #7d7d7d;
}

.about .content ul li .info .social-links a.whatsapp {
  background-color: #25d366;
}

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

#about-us .row-about h3 {
  font-size: 25px;
  font-weight: 700;
  color: #a8ba34;
}

#about-us .row-about h3 i {
  font-size: 20px;
  margin-left: 5px;
}

#about-us .row-about p {
  margin-bottom: 0px;
}

#about-us .row-about img {
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
  box-shadow: 5px 5px 19px -2px rgba(34, 34, 34, 0.53);
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
#clients {
  margin-top: 100px;
  margin-bottom: 30px;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 100%;
  opacity: 0.5;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #a8ba34 !important;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  background: url('../img/bg-services.png') left 37% no-repeat;
  background-size: 27%;
}

.services .icon-box {
  text-align: center;
  padding: 20px 20px 50px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.15);
  border-radius: 10px;
}

.services .icon-box .service-image img {
  border-radius: 10px;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 24px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  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 35px 0 rgba(0, 0, 0, 0.2);
}

.services .icon-box a.link {
  color: #a8ba34;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid #a8ba34;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
  transition: ease-in-out 0.3s;
}

.services .icon-box:hover a.link {
  color: #708912;
  transition: ease-in-out 0.3s;
}

.services .iconbox-blue i {
  color: #a8ba34;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #a8ba34;
}

.services .iconbox-orange i {
  color: #a8ba34;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #a8ba34;
}

.services .iconbox-pink i {
  color: #a8ba34;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #a8ba34;
}

.services .iconbox-yellow i {
  color: #a8ba34;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #a8ba34;
}

.services .iconbox-red i {
  color: #a8ba34;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #a8ba34;
}

.services .iconbox-teal i {
  color: #a8ba34;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #a8ba34;
}


.service .img-service {
  width: 100%;
  height: 350px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);
  border-radius: 10px;
}

.service .content {
  line-height: 28px;
}


.service .content.lh-19 {
  line-height: 19px !important;
}

.service .content.lh-38 {
  line-height: 38px !important;
}

.service .content.estudios-geologicos {
  line-height: 32px;
}

.service .content.gestion p i,
.service .content.estudios-geologicos p i,
.service .content.capacitaciones p i {
  color: #a8ba34;
  font-size: 22px;
}

#capacitaciones-in-company {
  padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2c9966;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 31px;
  line-height: 47px;
  font-weight: 500;
  font-style: italic;
}

.cta h3 span {
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

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

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

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

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

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #a8ba34;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #a8ba34;
  border-bottom: 3px solid #a8ba34;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

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

.contact .info .social-links {
  padding-left: 60px;
}

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

.contact .info .social-links a:hover {
  background: #a8ba34;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #a8ba34;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #a8ba34;
  border-bottom: 3px solid #a8ba34;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.wpcf7 input:focus[type=text],
.wpcf7 input:focus[type=email],
.wpcf7 input:focus[type=submit] {
  outline: none;
  box-shadow: unset !important;
}

.wpcf7 input[type=submit] {
    color: #fff;
    border-color: #a8ba34;
    background-color: #a8ba34;
}

.wpcf7 input[type=submit]:hover {
    background: #708912;
    border-color: #708912;
    color: #fff;
}

.wpcf7 input:not(:disabled):not(.disabled):active[type=submit] {
    background: #708912 !important;
    border-color: #708912 !important;
    color: #fff !important;
}

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

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

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

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

.contact .php-email-form input {
  height: 44px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
  margin-top: 122px;
}

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

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

.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: #3c3c3c;
  content: "/";
}

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

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #a8ba34 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

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

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

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}


/*--------------------------------------------------------------
# Single
--------------------------------------------------------------*/
.single #single-wrapper {
  padding-top: 106px;
}

.single #single-wrapper .container {
    outline: none;
}

.single #single-wrapper .entry-header {
  background-color: #ecefe0;
  padding: 52px 0px;
  margin-bottom: 40px;
}

.single #single-wrapper .entry-header .entry-title {
  font-size: 36px;
  font-weight: 700;
}

.single #single-wrapper article .entry-thumb {
  margin-bottom: 25px;
}

.single #single-wrapper article .entry-thumb img {
  border-radius: 10px;
}

.single #single-wrapper .related-posts-title {
  font-size: 23px;
  font-weight: 600;
  padding-left: 5px;
}

.single #single-wrapper .related-posts {
  padding-left: 0px;
}

.single #single-wrapper .related-posts li {
  list-style: none;
  border-bottom: 1px solid #f1f1f1;
  padding: 7px;
  transition: all .3s ease-in-out;
}

.single #single-wrapper .related-posts li:hover {
  padding-left: 15px;
  transition: all .3s ease-in-out;
}

.blog #content {
  outline: none;
}

.blog .hero {
  padding-top: 138px;
}

.blog .blog-img-post img {
  border-radius: 10px;
  width: 100%;
}

.blog .entry-title a {
  font-size: 26px;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.blog .entry-title a:hover {
    color: #708912;
    transition: all .3s ease-in-out;
}

.blog .entry-content .btn-secondary {
  background-color: #a8ba34;
  border-color: #a8ba34;
  padding: .200rem .75rem;
}

.blog .entry-content .btn-secondary:hover {
  background-color: #708912;
  border-color: #708912;
}

.blog .pagination {
  display: flex;
  justify-content: center;
}

.blog .pagination .page-item.active .page-link {
  background-color: #a8ba34;
  border-color: #a8ba34;
  color: white;
}

.blog .pagination .page-link {
  color: #656565;
}

.blog .pagination .page-link:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #090909;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer .logo-footer {
  margin-bottom: 35px;
}

#footer .logo-footer img {
  width: 163px;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2c9966;
  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: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

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

div.wpcf7-mail-sent-ok{
  border: 1px solid #66bb6a;
  background-color: #66bb6a;
  color: #fff;
}
.wpcf7 .wpcf7-validation-errors{
  height: unset;
  background-color: #ef5350;
  color: #fff;
  line-height: initial;
  font-size: 14px;
  border: 1px solid #ef5350;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #ef5350;
  font-size: 14px;
}
div.wpcf7-response-output{
  margin: 0;
  font-size: 14px;
  border-radius: .25rem;
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .get-started-btn{
    margin-right: 10px;
  }
  .single #single-wrapper {
    padding-top: 56px;
  }
  .page-contact .wpcf7{
    max-width: unset;
  }
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .page-template-about-us #hero .carousel-container,
  .blog #hero .carousel-container,
  .page-template-our-services #hero .carousel-container,
  .page-template-our-clients #hero .carousel-container,
  .error404 #hero .carousel-container {
    top: 80px;
  }
  .page-contact #hero .carousel-container{
    top:100px;
  }
}


@media (max-width: 768px) {
  .get-started-btn
  .single #single-wrapper {
    padding-top: 42px;
  }
  section {
    padding: 40px 0;
  }
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
    display: none;
  }
  .mobile-nav a.get-started-btn {
    display: block;
    position: relative;
    color: #222222;
    background-color: transparent;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    margin-top: 0px;
    font-size: 16px;
  }
  #hero h2 {
    font-size: 28px;
  }
  .why-us .content-item {
    padding: 40px 0;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  #about {
    background-image: none;
  }
  .about .content ul {
    padding: 0px;
  }
  .about-us__info{
    padding-top: 15px;
  }
  .about-us__image,
  .about-us__info {
    text-align: center;
  }
  .service .img-service{
    height: unset;
  }
  .page-our-services section{
    padding: 35px 0;
  }
  .page-contact #hero p{
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 0 90px;
    color: #fff;
    font-size: 16px;
    width: 100%;
  }
  span.wpcf7-not-valid-tip{
    font-size: 12px;
  }

  #hero h2 {
    font-size: 19px;
    margin-bottom: 0px;
  }

  #hero p.first {
    font-size: 13px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .page-template-about-us #hero,
  .page-template-our-services #hero,
  .page-template-our-clients #hero,
  .page-template-contact #hero,
  .error404 #hero,
  .blog #hero {
    height: 34vh;
  }

  .page-template-about-us #hero .carousel-container,
  .blog #hero .carousel-container,
  .page-template-our-services #hero .carousel-container,
  .page-template-our-clients #hero .carousel-container,
  .error404 #hero .carousel-container {
    top: 88px;
  }

  .page-template-contact #hero .carousel-container{
    top: 88px;
  }

  .page-template-contact #contact .container .row {
    display: flex;
    flex-flow: column-reverse;
  }

  .page-template-contact #contact .container .row .col-lg-7 {
    margin-top: -20px !important;
  }

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

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

  .service .content.gestion p,
  .service .content.estudios-geologicos p {
    margin-bottom: 5px;
    line-height: 24px;
    margin-top: 15px;
  }

  .why-us .content-item {
    padding: 30px 0;
    text-align: center;
  }

  .page-contact #hero p {
    display: none;
  }
}



@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}




