/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family:"Metropolis"; 
  src: url("assets/vendor/Metropolis/Metropolis-Bold.woff?#iefix") format("woff");
}

body {
  font-family: "Metropolis";
}
a {
  color: #6f6f6e;
  text-decoration: none;
}

a:hover {
  color: #e5e825;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #6f6f63;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #6f6f6e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
/* .back-to-top:hover {
  background: #3284f1;
  color: #fff;
} */
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #6f6f6e;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}
@media screen and (max-width: 500px) {
  #topbar {
    background: #6f6f6e;
    height: 30px;
    font-size: 12px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
  }
  #topbar .contact-info i {
    font-style: normal;
    color: #fff;
  }
  #topbar .contact-info i a,
  #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
  }
  #topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
  }
  #topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
  }
  #topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 10px;
  }
  #topbar .social-links a:hover {
    color: white;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 75px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 80px;
}

#header .logo a {
  color: #6f6f6e;
}

#header .logo img {
  max-height: 60px;
  max-width: 300px;
}

.scrolled-offset {
  margin-top: 70px;
}
@media screen and (max-width: 568px) {
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 55px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #header.fixed-top {
    height: 60px;
  }

  #header .logo a {
    color: #6f6f6e;
  }

  #header .logo img {
    max-height: 50px;
    max-width: 150px;
  }

  .scrolled-offset {
    margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #6f6f6e;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.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: #e5e825;
}
.mobile-nav-toggle {
  color: #6f6f6e;
  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(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #6f6f6e;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #e5e825;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	/*Pantallas de más de 992px*/
  width: 100%;
  height: 75vh;
  background: url("../img/index/portada6696x2232 mas de 992px.jpg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;	
}

@media (min-width: 768px) and (max-width: 991px) {
  #hero {
    
	width: 100%;
	height: 70vh;
	background: url("../img/index/portada5580x2232 entre 991 a 768px.jpg");
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
  }
}

@media (min-width: 571px) and (max-width: 767px) {
  #hero {
	  
	width: 100%;
	background: url("../img/index/portada4464x2232 - menos de 768px.jpg");
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
}
}

@media screen and (max-width: 570px) {
  #hero {
	  
	width: 100%;
	max-height:35vh;
	background: url("../img/index/portada3348x2232.jpg");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f392;
}
.back {
  background-color: #d9d9d9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.impact h3 {
  text-align: center;
  font-family: "Metropolis";
  color: #6f6f6e;
  margin: 10px 0;
  font-weight: 700;
  font-size: 24px;
}
.impact h5 {
  text-align: start;
  font-family: "Metropolis";
  color: #6f6f6e !important;
  margin: 20px 0;
  font-weight: 600;
  font-size: 18px;
}
.impact p {
  text-align: justify;
}
.impact ul {
  padding-left: 0;
  padding-top: 15px;
  position: relative;
  list-style-type: none;
}
.impact ul li {
  padding: 0 0 0 60px;
  position: relative;
  font-size: 14px;
  padding-left: 30px;
  margin-bottom: 15px;
}
.impact ul li i {
  position: absolute;
  font-size: 20px;
  left: 0;

  top: 0;
  color: #6f6f6e;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e5e825;
  color: #6f6f63;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  font-family: "Metropolis";
}

.section-title #styled {
  margin: 15px auto 0 auto;
  font-weight: 600;
  font-size: 22px;
  font-family: "Amiri", serif;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafad3;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #e5e825;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 10px 0 10px 0;
    font-size: 14px;
  }
}
.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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs ol {
    display: flex;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .breadcrumbs ol li + li {
    padding-left: 5px;
  }
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 5px;
    color: #6c757d;
    content: "/";
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fafad3;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
  font-family: "Amiri";
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  background: #e5e825;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #6f6f6e;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #6f6f6e;
}
.featured-services ul li {
  color: #6f6f6e;
  font-size: 18px;
}

.featured-services .description {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
}

@media screen and (max-width: 1220px) {
  .featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fafad3;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
    font-family: "Amiri", serif;
  }
  .featured-services .icon {
    margin-bottom: 15px;
  }
  .featured-services .icon i {
    font-size: 50px;
    line-height: 1;
    color: #6f6f6e;
    transition: all 0.3s ease-in-out;
  }
  .featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    color: #6f6f6e;
  }
  .featured-services ul li {
    color: #6f6f6e;
    font-size: 18px;
  }

  .featured-services .description {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fafad3;
    box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
    font-family: "Amiri", serif;
  }
  .featured-services .icon {
    margin-bottom: 10px;
  }
  .featured-services .icon i {
    font-size: 30px;
    line-height: 1;
    color: #6f6f6e;
    transition: all 0.3s ease-in-out;
  }
  .featured-services .title {
    margin-bottom: 15px;
    font-size: 15px;
    color: #6f6f6e;
  }
  .featured-services ul li {
    color: #6f6f6e;
    font-size: 14px;
  }

  .featured-services .description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  color: #6f6f6e;
  margin-bottom: 40px;
  font-family: "Amiri", serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 20px 40px;
  position: relative;
  font-family: "Amiri", serif;
  font-size: 17px;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: 0;
  color: #6f6f6e;
}
.about .content li:last-child {
  margin-top: 20px;
}

@media screen and (min-width: 992px) and (max-width: 1220px) {
  .about h3 {
    font-weight: 700;
    font-size: 23px;
    text-align: center;
    color: #6f6f6e;
  }

  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding: 0 0 20px 40px;
    position: relative;
  }
  .about .content ul i {
    position: absolute;
    font-size: 22px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }
  .about .content p:last-child {
    margin-top: 10px;
  }
}
@media screen and (max-width: 570px) {
  .about h3 {
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    color: #6f6f6e;
  }

  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding: 0 0 20px 30px;
    position: relative;
    font-size: 14px;
  }
  .about .content ul i {
    position: absolute;
    font-size: 18px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }
  .about .content p:last-child {
    margin-top: 2px;
  }
}

/*--------------------------------------------------------------
# Gallery 
-----------------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --full-width: 100%;
  --max-width: 62.5rem;
  --min-width: 22.5rem;
  --flex-flow: 30rem;
  --space: 1rem;
  --conditional-space: clamp(0px, (30rem - 100%) * 999, 1rem);
}

.container__flex-flow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space);
  margin-inline: var(--conditional-space);
}

.container__flex-flow > * {
  flex-grow: 1;
  flex-basis: calc((var(--flex-flow) - var(--full-width)) * 999);
}

.card {
  display: flex;
  min-width: 20rem;
  overflow: hidden;
  border-radius: clamp(0px, (40vw - var(--full-width)), var(--space));
  box-shadow: rgb(40, 40, 40, 0.1) 0px 2px 3px, rgb(20, 20, 20, 0.2) 0px 5px 8px, rgb(0, 0, 0, 0.25) 0px 10px 12px;
}

.card > img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transition: transform 700ms ease;
}
.card h3 {
  text-align: center;
  color: #6f6f6e;
  transition: transform 700ms ease;
}

.card:hover img {
  transform: scale(1.03);
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fafad3;
  height: 100%;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #6f6f6e;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #6f6f6e;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;

  width: 100%;
}
.services .logo_simple {
  border: 1px solid #d9d9d9;
  transition: all ease-in-out 0.3s;
  background: #e5e825;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .logo_simple img {
  display: none;
}
.services .logo_simple:hover img {
  display: flex;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f2f392;
  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #6f6f6e;
  font-size: 35px;
  transition: ease-in-out 0.3s;
}
.services .icon-box a h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #e5e825;
}
.services .icon-box a h4 {
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 20px;
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
}
.services .icon-box:hover p {
  color: #6f6f6e;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
  transform: translateY(-10px);
}

.services .icon-box:hover {
  background: #e5e825;
}
.services .icon-box:hover .icon {
  border: 2px solid #6f6f6e;
}
.services .icon-box:hover a h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #6f6f6e;
}

/*--------------------------------------------------------------
# INNER HTML  SERVICIO
--------------------------------------------------------------*/

#fila {
  margin: 60px 0;
  /* background-color: #d9d9d9; */
}
.servicio p {
  line-height: 2rem;
  text-align: center;
  font-size: 14px;
  margin: 0 15px;
}

.secondText h6 {
  text-align: start !important;
  font-size: 13px;
  color: #e5e825;
  margin: 20px 10px;
}

.servicio h3 {
  color: #6f6f6e;
  margin: 20px 0;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
.servicio ul {
  padding-left: 0;
}

.servicio ul li {
  font-size: 14px;
  padding-left: 20px;
  margin: 10px 10px;
}
.servicio ol {
  padding-left: 0;
}

.servicio ol li {
  position: relative;
  font-size: 14px;
  margin: 10px 10px;
  padding-left: 10px;
}
.servicio .items {
  padding-left: 30px;
}
.servicio ol li i {
  position: absolute;
  font-size: 15px;
  left: 0;
  top: 0;
  color: #6f6f6e;
}

.secondText ul {
  list-style: none;
  padding: 0;
}
.secondText ul li {
  padding: 0 0 0 30px;
  position: relative;
  font-size: 14px;
}
.sime.secondText ul li {
  padding: 0 0 0 30px;
  position: relative;
  font-size: 14px;
}
.secondText ul i {
  position: absolute;
  font-size: 25px;
  left: 0;
  top: 0;
  color: #6f6f6e;
}

@media screen and (min-width: 769px) and (max-width: 1020px) {
  .servicio {
    padding: 0 30px;
  }
  .servicio h6 {
    text-align: left;
    color: #e5e825;
    font-size: 14px;
  }

  #fila {
    margin: 60px 0;
  }
  .servicio p {
    line-height: 1.2rem;
    text-align: justify;
    font-size: 14px;
    margin-bottom: 30px;
    margin-left: 40px;
  }
  .servicio h3 {
    color: #6f6f6e;
    margin: 20px 0;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
  }

  .secondText ul {
    list-style: none;
    padding: 0;
  }
  .secondText ul li {
    padding: 0 0 0 25px;
    position: relative;
    font-size: 14px;
  }
  .secondText ul i {
    position: absolute;
    font-size: 22px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }
  .servicio ol {
    padding-right: 0;
  }

  .servicio ol li {
    position: relative;
    font-size: 13px;
    padding-left: 10px;
    margin: 10px 30px;
  }
  .servicio ol li i {
    position: absolute;
    font-size: 15px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }

  .servicio h3 {
    color: #6f6f6e;
    margin: 20px 0;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
  }
}
@media screen and (min-width: 1021px) {
  .servicio {
    padding: 0;
    margin: 10px 0;
  }
  #fila {
    margin: 50px 0;
  }
  .servicio p {
    line-height: 1.2rem;
    text-align: justify;
    font-size: 14px;
    margin-left: 12px;
  }

  .secondText p {
    font-size: 14px;
    text-align: justify;
  }
  .servicio ol {
    padding-left: 0;
  }

  .servicio ol li {
    position: relative;
    font-size: 13px;
    padding-left: 10px;
    margin: 10px 30px;
  }
  .servicio ol li i {
    position: absolute;
    font-size: 15px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }

  .servicio h3 {
    color: #6f6f6e;
    margin: 10px 0;
    text-align: center;
    font-weight: 700;
    font-size: 19px;
  }
  .servicio h6 {
    text-align: left;
    color: #e5e825;
    font-size: 16px;
  }
  .secondText ul {
    list-style: none;
    padding: 0;
  }
  .sime.secondText ul li {
    padding: 0 0 0 25px;
    position: relative;
    font-size: 14px;
  }
  .secondText ul i {
    list-style: none;
    position: absolute;
    font-size: 22px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }

  .servicio h5 {
    text-align: start !important;
    font-size: 16px;
    color: #e5e825;
  }
}
@media screen and (max-width: 768px) {
  .servicio {
    padding: 0;
  }
  #fila {
    margin: 80px 0;
  }
  .servicio p {
    line-height: 1rem;
    text-align: justify;
    font-size: 11px;
    padding: 0;
  }

  .servicio h6 {
    text-align: left;
    color: #e5e825;
    font-size: 11px;
  }

  .servicio h3 {
    color: #6f6f6e;
    margin: 15px 0;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
  }

  .servicio ul li {
    list-style-type: disc;
    font-size: 11px;
    padding-left: 0;
  }

  .secondText ul {
    list-style: none;
    padding: 0;
  }
  .secondText ul li {
    padding: 5px 0 0px 20px;
    position: relative;
    font-size: 11px;
    list-style-type: none;
  }

  .servicio ol {
    padding-left: 0;
  }

  .servicio ol li {
    position: relative;
    font-size: 11px;
    padding-left: 10px;
    margin: 2px 0;
  }
  .servicio ol li i {
    position: absolute;
    font-size: 10px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }
  .secondText p {
    font-size: 11px;
  }
  .secondText ul i {
    position: absolute;
    font-size: 18px;
    left: 0;
    top: 0;
    color: #6f6f6e;
  }

  .secondText h6 {
    text-align: start !important;
    font-size: 16px;
    color: #e5e825;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  text-align: center;
}
#clients_below {
  border-top: 1px solid #6f6f6e;
}
.clients img {
  /*width: 90%;*/
  height: auto;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  /*padding: 15px 0;*/
}

/* body { */
  /* align-items: center; */
  /* background: #E3E3E3; */
  /* display: flex; */
  /* height: 100vh; */
  /* justify-content: center; */
/* } */

/*#fafad3*/

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 9));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 9));
  }
}
.slider {
  background: #f2f392;
  /*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);*/
  height: 190px;
  margin: auto;
  overflow: hidden;
  position: relative;
  align-items:center;
  width: max-content;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, #f2f392 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  background-position:top;
  height: 300px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  align-items:center;
  margin:20px;
  width: calc(180px * 36);
}
.slider .slide {
  width: 180px;
  align-items:center;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.slider .slide:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# INNER HTML  ARQUITECTO
--------------------------------------------------------------*/
.arquitecto {
  padding: 0 30px;
}
.arquitecto p {
  text-align: justify;
}

.arquitecto h3 {
  color: #6f6f63;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 992px) and (max-width: 1220px) {
  .arquitecto h3 {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
  }

  .arquitecto p {
    font-size: 16px;
  }
}
@media screen and (max-width: 567px) {
  .arquitecto h3 {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
  }

  .arquitecto p {
    font-size: 16px;
    line-height: 1.3rem;
  }
}

/*--------------------------------------------------------------
# IMPACTOS
--------------------------------------------------------------*/
#impacto ul {
  padding-left: 20px;
  margin-bottom: 35px;
}
.impacto p {
  line-height: 1.2rem;
  text-align: justify;
  font-size: 14px;
  margin: 10px 15px;
}

.impacto h3 {
  color: #6f6f6e;
  margin: 20px 0;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
#impacto ul li {
  list-style: disc;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 10px;
}
#impacto .second li {
  list-style: circle;
  font-size: 13px;
  line-height: 17px;
}
#ambiente ul {
  list-style: disc;
  padding-left: 16px;
  margin-bottom: 16px;
}
#ambiente ul li {
  position: relative;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  background: #3b8af2;
}
.team .member .social i {
  font-size: 18px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 40px 0;
  margin: 50px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.contenedor {
  padding: 20px 20px;
}
.faq .faq-list li {
  border-bottom: 1px solid #e5e825;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list .question {
  display: block;
  position: relative;

  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #6f6f6e;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
/* .faq .faq-list .collapsed:hover {
  color: #e5e825;
} */
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #6f6f6e;
  background-color: #fafad3;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 10px 0 20px 0;
}
.contact .info-box i {
  font-size: 25px;
  color: #6f6f6e;
  border-radius: 50%;
  padding: 8px;
  border: 3px dotted #e5e825;
}
.contact .info-box h3 {
  font-size: 22px;
  color: #6f6f63;
  font-weight: 700;
  margin: 20px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: red;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #6f6f6e;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #e5e825;
  border: 0;
  padding: 10px 30px;
  color: #6f6f6e;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #e2eefd;
  color: black;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #6f6f6e;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  background: #d9d9d9;
  text-align: center;
}
.footer-top img {
  max-height: 80px;
  max-width: 350px;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

.footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  margin-left: 20px;
  color: #6f6f63;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
  text-align: center;
  float: right;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin-left: 100px;
  margin-top:15px;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6f6f6e;
  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: #6f6f6e;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #6f6f6e;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #e5e825;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits > a {
  color: #fff;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  #footer {
  color: #fff;
  }
  
  #footer .footer-top {
    padding: 30px 0 10px 0;
    background: #d9d9d9;
  }
  .footer-top img {
    max-width: 200px;
    max-height: 40px;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 10px;
    width: 33%;
  }

  #footer .footer-top .footer-contact p {
    font-size: 8px;
    line-height: 18px;
    margin-bottom: 0;
    color: #6f6f6e;
    margin-left: 2px;
  }
  #footer .footer-top h4 {
    font-size: 12px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 20px;
    width: 33%;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #6f6f6e;
    font-size: 13px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 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: #6f6f6e;
    transition: 0.3s;
    display: inline-block;
    line-height: 0.5rem;
    font-size: 9px;
  }
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
  }
  #footer .footer-top .social-links a {
    font-size: 10px;
    display: inline-block;
    background: #6f6f6e;
    color: #fff;
    line-height: 0.5;
    padding: 3px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 15px;
    height: 15px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #e5e825;
    color: #fff;
    text-decoration: none;
  }
  #footer .copyright {
    text-align: center;
    float: left;
    font-size: 9px;
  }
  #footer .credits {
    float: right;
    text-align: center;
    font-size: 9px;
    color: #fff;
  }
  #footer .credits > a {
    color: #fff;
    margin-left: 5px;
    font-size: 10px;
    font-weight: 500;
  }
}
@media screen and (min-width: 769px) and (max-width: 998px) {
  #footer .footer-top {
    padding: 30px 0 10px 0;
    background: #d9d9d9;
  }
  .footer-top img {
    max-width: 150px;
    max-height: 50px;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 10px;
    width: 33%;
  }
  #footer .footer-top .footer-contact h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  #footer .footer-top .footer-contact h3 span {
    color: #6f6f6e;
  }
  #footer .footer-top .footer-contact p {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 0;

    color: #6f6f6e;
  }
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
    width: 33%;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #6f6f6e;
    font-size: 15px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #6f6f6e;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
  }
  #footer .footer-top .social-links a {
    font-size: 11px;
    display: inline-block;
    background: #6f6f6e;
    color: #fff;
    line-height: 0.5;
    padding: 6px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 20px;
    height: 20px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #e5e825;
    color: #fff;
    text-decoration: none;
  }
  #footer .copyright {
    text-align: center;
    float: left;
  }
  #footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
  #footer .credits > a {
    color: #fff;
    margin-left: 5px;
    font-size: 15px;
    font-weight: 700;
  }
}

