html {
  box-sizing: border-box;
  font-family: 'Montserrat', Helvetica, sans-serif;
  user-select: none;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
}

* {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.contenedor {
  width: 90%;
  margin: 0 auto;
}

/**********************************************HEADER**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
/******Idiomas**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.idiomas {
  position: fixed;
  top: 0;
  left: 60px;
  display: flex;
  justify-content: space-around;
  background-color: #348A94;
  z-index: 999;
  border-bottom: 2px solid #eaeaea;
  border-right: 2px solid #eaeaea;
  border-left: 2px solid #eaeaea;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 5px;
}

@media(min-width:1024px) {
  .idiomas {
    left: 90px;
  }
}

.idiomas a {
  color: #eaeaea;
  font-size: 0.75rem;
  font-weight: 300;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
}

.idiomas a:last-of-type {
  margin-right: 0;
}

.idiomas a:hover {
  font-weight: 700;
  transform: scale(1.1);
  background-color: #eaeaea;
  color: #348A94;
}

/******Navegacion**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.portada {
  width: 100%;
  background: #348A94;
}

@media(min-width:992px) {
  .portada {
    height: 100vh;
  }
}

.contenedor-menu {
  height: 100%;
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: transparent;
  clip-path: polygon(0 0, 60px 0, 60px 60px, 0 60px);
  transition: all 0.7s ease-in-out;
}

@media(min-width:1024px) {
  .contenedor-menu {
    clip-path: polygon(0 0, 90px 0, 90px 90px, 0 90px);
  }
}

.contenedor-menu.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: 999;
}

.navbar {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contenedor-menu.active .navbar {
  display: flex;
  animation: bounce-in-bottom 1s both;
}

@keyframes bounce-in-bottom {
  0% {
    transform: translateY(500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}

.navbar a {
  margin-bottom: 3rem;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #eaeaea;
  font-size: 2rem;
  position: relative;
  transition: all 0.7s ease-in-out;
}

.navbar a:last-of-type {
  margin-bottom: 0;
}

.navbar a span {
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 0%;
  height: 3px;
  background-color: #eaeaea;
  transition: all 0.3s ease;
}

.navbar a:hover>span {
  width: 120%;
}

.btn-abrir {
  position: absolute;
  left: 30px;
  top: 30px;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.btn-abrir i {
  font-size: 2.5rem;
  color: #eaeaea;
  transform: scale(0.9);
  transition: all 0.6s ease-in-out;
}

.btn-abrir i:hover {
  transform: scale(1) rotate(360deg);
}

@media(min-width:1024px) {
  .btn-abrir {
    left: 45px;
    top: 45px;
    width: 4rem;
    height: 4rem;
  }
}

#cerrar {
  display: none;
}

/******Contenido header y logo**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.contenido-header {
  height: 100%;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media(min-width:768px) {
  .contenido-header {
    height: 92.5vh;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14rem;
  transition: all 1s ease;
  margin-bottom: 3rem;
  height: 50vh;
}

.logo:hover {
  transform: scale(0.9);
}

@media(min-width:768px) {
  .logo {
    width: 20rem;
    height: auto;
  }
}

.titulo-portada {
  text-align: center;
  max-width: 90%;
  height: 50vh;
}

.titulo-portada h1 {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

@media(min-width:768px) {
  .titulo-portada {
    max-width: 60%;
    height: auto;
    margin-bottom: 5rem;
  }

  .titulo-portada h1 {
    font-size: 1.6rem;
  }
}

.caja-secciones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

@media(min-width:768px) {
  .caja-secciones {
    flex-direction: row;
  }
}

.seccion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  cursor: pointer;
}

.seccion img {
  width: 300px;
  height: 200px;
  filter: grayscale(100%);
  border: 1px solid #303030;
  transition: all 1s ease;
  border-radius: 10px;
}

@media(min-width:768px) {
  .seccion {
    margin-bottom: 0;
    margin-right: 3rem;
  }

  .seccion:last-of-type {
    margin-right: 0;
  }
}

.titulo-seccion {
  margin-top: .8rem;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
}

.titulo-seccion span {
  position: absolute;
  left: -10%;
  bottom: -25%;
  height: 2px;
  width: 0%;
  background-color: #eaeaea;
  transition: all 1s ease;
}

.seccion:hover>a img {
  filter: grayscale(0);
  transform: scale(0.9);
}

.seccion:hover>.titulo-seccion span {
  width: 120%;
}

/******SERVICIOS ICONOS**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.portada-servicios {
  width: 100%;
  background-image: url(../img/foto-servicios.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.caja-servicios {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 95%;
}

@media(min-width:600px) {
  .caja-servicios {
    flex-direction: row;
  }
}

@media(min-width:1400px) {
  .caja-servicios {
    width: 90%;
  }
}

.titulo-servicios {
  text-align: center;
  max-width: 90%;
  height: 50vh;
}

.titulo-servicios h1 {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.titulo-servicios span {
  font-weight: 500;
}

@media(min-width:768px) {
  .titulo-servicios {
    max-width: 75%;
    height: auto;
    margin-bottom: 3rem;
  }

  .titulo-servicios h1 {
    font-size: 1.1rem;
  }
}

.servicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid #eaeaea;
  border-radius: 25px;
  padding: 30px 15px;
  min-width: 150px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.servicio:hover {
  transform: scale(0.9);
}

.servicio i {
  color: #eaeaea;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.fa-wine-bottle {
  transform: rotate(-45deg) translateX(-3px);
}

.titulo-servicio {
  margin-top: .8rem;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  font-size: .8rem;
  transition: all 0.3s ease;
}

.titulo-servicio span {
  position: absolute;
  left: -10%;
  bottom: -25%;
  height: 2px;
  width: 0%;
  background-color: #eaeaea;
  transition: all .3s ease;
}

@media(min-width:992px) {
  .servicio {
    min-width: 180px;
    margin-bottom: 0;
  }

  .titulo-servicio {
    font-size: 1rem;
  }
}

@media(min-width:1024px) {
  .servicio {
    transition: all 0.1s ease;
    box-shadow: -5px 5px 0px 0px rgba(234, 234, 234, 1);
  }

  .servicio:hover {
    transform: scale(1);
  }

  .servicio:active {
    transform: translateY(5px) translateX(-5px);
    box-shadow: 0px 0px 0px 0px rgba(234, 234, 234, 1);
  }

  .titulo-servicio {
    opacity: .7;
  }

  .servicio:hover .titulo-servicio {
    opacity: 1;
  }

  .servicio:hover .titulo-servicio span {
    width: 120%;
  }
}

@media(min-width:1400px) {
  .servicio {
    min-width: 250px;
    padding: 50px;
  }
}

.consultanos {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.consultanos p {
  color: #eaeaea;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.consultanos a {
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #eaeaea;
  border: 2px solid white;
  border-radius: 25px;
  padding: 30px 45px;
  cursor: pointer;
  transition: all 0.1s ease;
  box-shadow: -3px 3px 0px 0px rgba(234, 234, 234, 1);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultanos a i {
  margin-bottom: 0.5rem;
}

.consultanos a:hover {
  color: white;
}

.consultanos a:active {
  transform: translateY(3px) translateX(-3px);
  box-shadow: 0px 0px 0px 0px rgba(234, 234, 234, 1);
}

/******MARKETING,NEGOCIOS,PRODUCTO,PERSONAS**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.contenedor-lista {
  height: 92.5vh;
  width: 100%;
  background: linear-gradient(180deg, rgba(52, 138, 148, 1) 0%, rgba(52, 138, 148, 1) 38%, rgba(113, 173, 180, 1) 100%);
}

.lista-servicios {
  font-size: 0.8rem;
  height: 92.5vh;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lista-servicios h2 {
  color: #eaeaea;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 3rem;
}

.lista-servicios ul {
  margin:2rem 0;
  color: #eaeaea;
  font-weight: 500;
  text-transform: uppercase;
}

.lista-servicios ul li {
  margin-top: 1rem;
}

.lista-servicios ul li:first-of-type {
  margin-top: 0;
}
@media(min-width:992px){
  .lista-servicios{
    font-size: 1em;
  }
  .lista-servicios ul{
    margin:5rem 0;
  }
}
.boton-lista {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: -5px 5px 0px 0px rgba(234, 234, 234, 1);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.1s ease;
}

.boton-lista i {
  color: #eaeaea;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.boton-lista p {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #eaeaea;
}

.boton-lista:active {
  transform: translateY(5px) translateX(-5px);
  box-shadow: 0px 0px 0px 0px rgba(234, 234, 234, 1);
}

.boton-lista:hover i {
  transform: rotate(-360deg);
}

.marketing {
  width: 100%;
  background-image: url(../img/foto-marketing.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.negocio {
  width: 100%;
  background-image: url(../img/foto-negocios.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.personas{
  width: 100%;
  background-image: url(../img/foto-personas.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.producto{
  width: 100%;
  background-image: url(../img/foto-producto.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.kpi{
  text-transform: lowercase;
}
/******NOSOTROS**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.caja-nosotros {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parte-superior-nosotros {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1rem;
}

.logo-nosotros img {
  width: 6rem;
}

.botones-nosotros {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.botones-nosotros a:first-of-type {
  margin-right: 2rem;
}

.botones-nosotros a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eaeaea;
  padding: 10px 12px;
  border: 1px solid #eaeaea;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.botones-nosotros a:hover {
  background-color: #eaeaea;
  color: #348a94;
}

@media(min-width:1024px) {
  .logo-nosotros img {
    width: 11rem;
  }
}

.contenido-nosotros {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.imagen-nosotros {
  position: relative;
  height: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: rgb(52, 138, 148);
  background: linear-gradient(180deg, rgba(52, 138, 148, 1) 0%, rgba(52, 138, 148, 1) 38%, rgba(113, 173, 180, 1) 100%);
}

.imagen-nosotros img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.imagen-nosotros span {
  position: absolute;
  bottom: 0;
  color: #eaeaea;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}

.imagen-nosotros img:hover+span {
  transform: translateY(30px);
  opacity: 1;
}

.texto-nosotros {
  font-size: 0.7rem;
  line-height: 1.4;
  height: 60%;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  color: #303030;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.texto-nosotros span {
  font-weight: 500;
}

@media(min-width:500px) {
  .texto-nosotros {
    font-size: 0.8rem;
  }

  .texto-nosotros p {
    width: 80%;
  }
}

@media(min-width:768px) {
  .contenido-nosotros {
    flex-direction: row;
  }

  .imagen-nosotros {
    height: 100%;
    width: 50%;
    align-items: center;
    justify-content: center;
  }

  .imagen-nosotros img {
    max-width: 370px;
    border-radius: 10px;
  }

  .imagen-nosotros span {
    bottom: 25%;
  }

  .texto-nosotros {
    height: 100%;
    width: 50%;
    font-size: 1rem;
    border-top-left-radius: 80px;
  }

  .texto-nosotros p {
    width: 80%;
  }
}

@media(min-width:1024px) {
  .imagen-nosotros img {
    max-width: 450px;
  }

  .texto-nosotros p {
    width: 70%;
  }
}

.footer-nosotros {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #348a94;
  width: 100%;
  height: 10%;
}

.footer {
  font-size: 0.75rem;
}

/******PROYECTOS**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.contenido-header-proyectos {
  height: 100%;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media(min-width:768px) {
  .contenido-header-proyectos {
    height: 100vh;
  }
}

.fondo-proyectos {
  width: 100%;
  background-image: url(../img/foto-proyectos.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.fondo-proyectos::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.flechas-proyectos {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.flecha {
  display: flex;
  flex-direction: column;
}
.flecha a{
  text-decoration: none;
  color:#eaeaea;
  text-transform: uppercase;
  letter-spacing: 3px;
  border:1px solid #eaeaea;
  padding:1rem 1.2rem;
  border-radius: 10px;
  transition: 0.5s;
}
.flecha a:hover{
  transform: scale(1.1);
}

.flecha:first-of-type {
  margin-right: 1.5rem;
}

.flecha span {
  text-transform: uppercase;
  color: #eaeaea;
  opacity: 0;
  transform: translateY(60px);
  transition: all .7s ease;
}

.fa-long-arrow-alt-down {
  font-size: 2.5rem;
  color: #eaeaea;
  cursor: pointer;
  transition: all .7s ease;
}

@media(min-width:768px) {
  .fa-long-arrow-alt-down {
    font-size: 5rem;
    color: #eaeaea;
    cursor: pointer;
    transition: all .7s ease;
  }
}

.fa-long-arrow-alt-down:hover {
  transform: translateY(30px);
}

.flecha a:hover+span {
  opacity: 1;
  transform: translateY(40px);
}

.portada-proyectos {
  background-color: #348A94;
}

.contenedor-proyectos {
  background: rgba(255, 255, 255, 0.5);
}

.caja-proyectos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-clientes {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(12, 1fr);
  grid-gap: 10px;
}

.grid-clientes img {
  height: 170px;
  width: 170px;
  border-radius: 30%;
}

@media(min-width:992px) {
  .grid-clientes {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(8, 1fr)
  }

  .grid-clientes img {
    height: 250px;
    width: 250px;
  }
}

@media(min-width:1400px) {
  .grid-clientes {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-gap: 20px;
  }
}

.cliente img {
  transition: all .7s ease;
  cursor: pointer;
}

.cliente img:hover {
  transform: scale(1.2);
}

.caja_botones {
  margin: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#vermas_boton {
  display: flex;
  justify-content: center;
}

#mas {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

#mas i {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: #eaeaea;
  border: 2px solid #eaeaea;
}

#mas span {
  margin-top: 1rem;
  text-transform: uppercase;
  color: #eaeaea;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

#mas:hover>span {
  opacity: 1;
  transform: translateY(0px);
}

/******testimoniales**************************
--------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
.contenedor-testimoniales {
  width: 100%;
  margin-top: 8rem;
  padding: 5rem 0;
}

.contenedor-testimoniales h2 {
  text-transform: uppercase;
  color: #eaeaea;
  background-color: #303030;
  text-align: center;
  padding: 5rem;
  font-weight: 300;
  margin-bottom: 5rem;
}

.testimoniales {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(8, 1fr);
  grid-gap: 2.5rem;
}

.testimonial {
  font-size: 1rem;
  margin: 0 auto;
  max-width: 500px;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
}

@media(min-width:768px) {
  .testimoniales {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .testimonial {
    font-size: 1rem;
  }
}

.texto-testimonial {
  line-height: 1.5;
}
.titulo-testimonial{
  display:flex;
  flex-direction: column;
  align-items: center;

}
.testimonial h4 {
  font-size: 0.85rem;
  margin-top: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.testimonial h5 {
  font-size: 0.85rem;
  margin-top: 2rem;
  font-weight: 500;
  text-align: center;
}

.testimonial span {
  margin-right: 0.3rem;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #303030;
}
/**********************Footer**********************/
.footer-politicas{
  padding:0.5rem;
  font-size: .75rem;
  width:100%;
  height:7.5vh;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #348a94
}
.enlaces-politicas{
  margin-top:1rem;
  width:100%;
  display:flex;
  justify-content: center;
}

.enlaces-politicas a{
  margin-right:2rem;
  text-decoration: none;
  color:#303030;
  transition:0.5s;
}
.enlaces-politicas a:hover{
  color:black;
}
.enlaces-politicas a:last-of-type{
  margin-right:0;
}
/******************************COOKIES*********************/
