/* GENERALES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.contenedor {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 35px;
}

.titulo-seccion h1 {
  font-size: 2rem;
  color: #4A4A4A;
  margin-bottom: 20px;
  font-weight: 700;
}

.titulo-seccion p {
  font-size: 1rem;
  color: #575757;
  font-weight: 500;
  line-height: 30px;
}

#lineaArribaTituloCentrado {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 100;
  margin-bottom: 10px;
  color: #64C5B6;
}

#lineaArribaTituloJustificado {
  text-align: left;
  font-size: 2.3rem;
  font-weight: 100;
  margin-bottom: 10px;
  color: #64C5B6;
}


/* Boton volver arriba */
.btn-volver-arriba {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(3, 126, 107, 0.7);
  border-radius: 10px;
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 99999999;
  transition: all .4s ease;
  margin-right: -60px;
}

.btn-volver-arriba .volver-arriba {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  text-align: center;
}

.btn-volver-arriba .volver-arriba i {
  font-size: 1.25rem;
  line-height: 40px;
  color: #fff;
}

/* ---------- ENCABEZADO ---------- */
.menu-bar-pc {
  width: 100%;
  min-height: 70px;
  padding: 0 50px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo {
  display: inline-block;
  width: 210px;
}

.logo img {
  width: 100%;
  vertical-align: top;
}

.menu-principal a {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 1px;
  line-height: 1.5rem;
  transition: all .3s ease;

}

.menu-principal a:last-child {
  padding-right: 0;
}

.menu-principal a:hover {
  color: #eeeaea;
}

/* Menu fixed */
.fixed-header {
  width: 100%;
  min-height: 70px;
  padding: 0 60px;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all .3s ease;
  margin-top: -80px;
  box-shadow: 0px 1px 4px 0px #9e9898;
}

.fixed-header .menu-principal a {
  color: #2F353C;
}

.fixed-header .menu-principal a:hover {
  color: #2DB8A3;
}

/* Munu mobile */
.menu-mobile {
  display: none;
}


/* ---------- MAIN ---------- */
.main {
  width: 100%;
  margin-top: -70px;
}

.main .banner-principal {
  width: 100%;
  position: relative;
}

.main .banner-principal .banner {
  width: 100%;
  height: 100vh;
  background-image: url('../img/bkg-banner-mancha.png');
  background-color: #F6F7FB;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 10;
}

.main .banner-principal .texto-banner {
  display: inline-block;
  width: 40%;
  position: absolute;
  left: 6%;
  top: 60%;
  transform: translate(-6%, -60%);
  text-align: left;
}

.main .banner-principal .dibujo-banner {
  width: 46%;
  position: absolute;
  right: 0;
  top: 70%;
  transform: translate(-5%, -70%);
}

.main .banner-principal .dibujo-banner img {
  width: 100%;
  height: auto;
}

.main .banner-principal .texto-banner h1{
  font-size: 5.5rem;
  line-height: 80px;
  color: #1E9583;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: -5px;
}

.main .banner-principal .texto-banner p {
  font-size: 1.05rem;
  line-height: 1.7rem;
  color: #9A9696;
  font-weight: 500;
  margin-bottom: 80px;
}

.main .banner-principal .texto-banner a {
  text-decoration: none;
  display: inline-block;
  border: none;
  background: #1E9583;
  border: 1px solid #1E9583;
  color: #fff;
  padding: 10px 37px;
  transition: all .5s ease;
}

.main .banner-principal .texto-banner a:hover {
  background: #fff;
  color: #1E9583;
}



/* NOSOTROS */
.main .nosotros {
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 110px;
}

.main .nosotros .iconos-nosotros {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.main .nosotros .iconos-nosotros .icono {
  width: 100%;
  max-width: 220px;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 7px 25px -2px rgba(0,0,0,0.1);
  margin-bottom: 3%;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.main .nosotros .iconos-nosotros .icono:hover {
  box-shadow: 0px 7px 25px -2px rgba(0,0,0,0.25);
}

.main .nosotros .iconos-nosotros .icono .vector-icono img {
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}

.main .nosotros .iconos-nosotros .icono .texto-icono-nosotros h2 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
}

.main .nosotros .iconos-nosotros .icono:first-of-type .texto-icono-nosotros h2 {
  color: #5651E1;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(2) .texto-icono-nosotros h2 {
 color: #9F16A5;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(3) .texto-icono-nosotros h2 {
  color: #7B68EE;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(4) .texto-icono-nosotros h2 {
  color: #EF5253;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(5) .texto-icono-nosotros h2 {
  color: #EF5253;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(6) .texto-icono-nosotros h2 {
  color: #188DA8;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(7) .texto-icono-nosotros h2 {
  color: #DC143C;
}

.main .nosotros .iconos-nosotros .icono:nth-of-type(8) .texto-icono-nosotros h2 {
  color: #E2B824;
}





/* NUESTROS VALORES */
.main .nuestros-valores {
  background-color: #2F353C;
  padding: 130px 0;
}

.main .nuestros-valores .contenedor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.main .nuestros-valores .contenedor .texto-valores {
  width: 47%;
  padding-right: 3%;
}

.main .nuestros-valores .contenedor .texto-valores .titulo-seccion {
  text-align: left;
}

.main .nuestros-valores .contenedor .texto-valores .titulo-seccion h1 {
  color: #eeebeb;
}

.main .nuestros-valores .contenedor .texto-valores .titulo-seccion p {
  color: #eeebeb;
  font-weight: 300;
  line-height: 1.875rem;
}

.main .nuestros-valores .contenedor .foto{
  width: 50%;
  height: 400px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/foto2.jpg');
  background-position: center;
  background-size: cover;
}



/* SERVICIOS */
.main .servicios {
  background-color: #F6F7FB;
  padding-top: 90px;
  padding-bottom: 110px;
}

.contenedor-servicio-mobile {
  display: none;
}

.main .servicios .contenedor .contenido-servicios {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  /* height: 600px; */
  padding-top: 20px;
}

/* Style the tab */
.main .servicios .contenedor .contenido-servicios .tab {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;

}

/* Style the buttons inside the tab */
.main .servicios .contenedor .contenido-servicios .tab button {
  padding: 10px 16px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;

}

.main .servicios .contenedor .contenido-servicios .tab button:last-child {
  margin-bottom: 0px;
}

.main .servicios .contenedor .contenido-servicios .tab button .icono-servicio {
  font-size: 1rem;
  width: 16%
}

.main .servicios .contenedor .contenido-servicios .tab button .icono-servicio img {
  width: 100%;
  min-width: 32px;
  padding-right: 10px;
}

.main .servicios .contenedor .contenido-servicios .tab button .texto-btn-servicio h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96875rem;
  font-weight: 700;
  color: #575757;
  text-align: left;
}

/* Change background color of buttons on hover */
.main .servicios .contenedor .contenido-servicios .tab button:hover {
  background-color: #dfdfdf;
}

.main .servicios .contenedor .contenido-servicios .tab button.active {
  background-color: #dfdfdf;
}

/* Style the tab content */
.main .servicios .contenedor .contenido-servicios .tabcontent {
  padding: 5%;
  margin: 0 0 0 2%;
  background-color: #dfdfdf;
  width: 68%;
  border-left: none;
  height: 542px;

}

.main .servicios .contenedor .contenido-servicios .tabcontent h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #575757;
  text-align: left;
}

.main .servicios .contenedor .contenido-servicios .tabcontent p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.90625rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #575757;
  text-align: left;

}



/* CLIENTES */
.main .clientes {
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 80px;
}

.main .clientes .contenido-clientes {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-self: auto;

}

.main .clientes .contenido-clientes .logos-clientes {
  margin-bottom: 60px;
  width: 25%;
  text-align: center;
}

.main .clientes .contenido-clientes .logos-clientes img {
  width: 60%;
  min-width: 120px;
}


/* ESTRATEGIAS */
.main .estrategias {
  background-color: #2F353C;
  padding: 130px 0;
}

.main .estrategias .contenedor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.main .estrategias .contenedor .texto-estrategias {
  width: 47%;
  padding-right: 3%;
}

.main .estrategias .contenedor .texto-estrategias .titulo-seccion {
  text-align: left;
}

.main .estrategias .contenedor .texto-estrategias .titulo-seccion h1 {
  color: #eeebeb;
}

.main .estrategias .contenedor .texto-estrategias .titulo-seccion p {
  color: #eeebeb;
  font-weight: 300;
  line-height: 1.875rem;
}

.main .estrategias .contenedor .foto{
  width: 50%;
  height: 500px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/foto5.jpg');
  background-position: center;
  background-size: cover;
}



/* CONTACTO */
.main .contacto{
  padding: 190px 0;
  background-color: #64C5B6;
}

.main .contacto .contenedor-formulario{
  background: #fff;
  min-height: 485px;
  border-radius: 3px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
}

.main .contacto .contenedor-formulario .formulario{
  width: 50%;
  padding: 70px;
}

.main .contacto .contenedor-formulario .formulario .titulo-seccion h1{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 24px;
  color: #4A4A4A;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.main .contacto .contenedor-formulario .formulario .titulo-seccion p{
  color: red;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}

.main .contacto .contenedor-formulario .formulario .titulo-seccion  {
  text-align: left;
}

.main .contacto .contenedor-formulario .formulario .titulo-seccion  #lineaArribaTituloJustificado {
  font-size: 2.3rem;
  font-weight: 100;
  margin-bottom: 10px;
  color: #32C5D2;
}

.main .contacto .contenedor-formulario .formulario form input[type="text"], .main .contacto .contenedor-formulario .formulario form input[type="email"], .main .contacto .contenedor-formulario .formulario form input[type="tel"]{
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  outline: none;
  width: 100%;
  margin-bottom: 10px;
  color: #575757;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
}

.main .contacto .contenedor-formulario .formulario form textarea{
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  outline: none;
  width: 100%;
  max-width: 100%;
  max-height: 88px;
  min-height: 88px;
  color: #575757;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  font-weight: 400;
}

.main .contacto .contenedor-formulario .formulario form input[type="submit"]{
  width: 100%;
  border: none;
  border: 1px solid #64C5B6;
  padding: 8px;
  background: #64C5B6;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all .7s ease;
}

.main .contacto .contenedor-formulario .formulario form input[type="submit"]:hover{
  background: #fff;
  color: #64C5B6;
}

.main .contacto .contenedor-formulario .formulario form .ultimo .msg {
  margin-top: 10px;
  text-align: center;
}

.main .contacto .contenedor-formulario .foto{
  width: 50%;
  background-image: url('../img/foto1.jpg');
  background-size: cover;
  background-position: center;
}

/*Validacion formulario*/

.main .contacto .contenedor-formulario .formulario form .error{
  display: none;
  color: #ff8c8c;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 10px;
}


/* FOOTER */
footer {
  background-color: #455364;
  padding: 80px 0;
  text-align: center;
}

footer .contenedor {
  color: #fff;
}

footer .contenedor h3 {
  font-size: 1rem;
  font-weight: 500;
}

footer .contenedor p {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 300;
}

footer .contenedor a {
  text-decoration: none;
}


/* MEDIAS QUERYS */
@media screen and (max-width: 1040px){
  .main .banner-principal .texto-banner h1{
    font-size: 4.5rem;
    line-height: 60px;
    color: #1E9583;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: -5px;
  }

  .main .banner-principal .texto-banner p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #9A9696;
    font-weight: 500;
    margin-bottom: 80px;
  }

  .main .banner-principal .texto-banner a {
    text-decoration: none;
    display: inline-block;
    border: none;
    background: #1E9583;
    border: 1px solid #1E9583;
    color: #fff;
    padding: 10px 37px;
    transition: all .5s ease;
  }

  /* Nosotros */
  .main .nosotros {
  }

  .main .nosotros .iconos-nosotros {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .main .nosotros .iconos-nosotros .icono {
    width: 100%;
    max-width: 195px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 9px 25px -1px rgba(0,0,0,0.2);
    margin-bottom: 3%;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
  }

  .main .nosotros .iconos-nosotros .icono:hover {
    box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.2);
  }

  .main .nosotros .iconos-nosotros .icono .vector-icono img {
    display: inline-block;
    margin-bottom: 10px;
  }

  .main .nosotros .iconos-nosotros .icono .texto-icono-nosotros h2 {
    font-size: 0.75rem;
    color: #4A4A4A;
    font-weight: 700;
  }

}


@media screen and (max-width: 900px){
  .menu-bar-pc{
    display: none;
  }

  .menu-mobile {
    display: block;
    width: 100%;
    min-height: 60px;
    padding: 15px 20px;
    background: #fff;
    color: #444444;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(204,204,204,0.5);
    border-right: 1px solid rgba(204,204,204,0.5);
    box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.2);
  }
  .menu-mobile .barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-mobile .barra a i {
    font-size: 1.4rem;
    color: #444444;
  }

  .menu-mobile .menu-principal {
    width: 100%;
    display: block;
    position: fixed;
    top: 60px;
    left: -100%;
    border-bottom: 1px solid rgba(204,204,204,0.5);
    border-right: 1px solid rgba(204,204,204,0.5);
    box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.2);
    background: #fff;
    text-align: center;
  }

  .menu-mobile .menu-principal a {
    display: block;
    padding: 10px;
    color: #444444;
    border-bottom: 1px solid rgba(204,204,204,0.5);
  }

  .menu-mobile .menu-principal a:hover {
    background: #f7f7f7;
  }

  .fixed-header {
  display: none;
  }

  /* Main 900 */
  .main {
    width: 100%;
    margin-top: 0px;
  }

  /* Banner 900 */
  .main .banner-principal .texto-banner {
    left: 6%;
    top: 50%;
    transform: translate(-6%, -50%);
    text-align: left;
  }

  .main .banner-principal .dibujo-banner {
    width: 50%;
    position: absolute;
    right: 0;
    top: 70%;
    transform: translate(-5%, -70%);
  }



  /* Nosotros 900 */
  .main .nosotros .iconos-nosotros {
    display: none;
  }
  /* Nuestros valores 900 */
  .main .nuestros-valores {
    padding: 70px 0;
  }

  .main .nuestros-valores .contenedor {
    width: 90%;
  }

  .main .nuestros-valores .contenedor .texto-valores {
    width: 100%;
    padding-right: 0;
  }

  .main .nuestros-valores .contenedor .texto-valores .titulo-seccion {
    text-align: center;
  }

  .main .nuestros-valores .contenedor .foto{
    display: none;
  }



  /* Servicios 900 cambia a acordeon */
  .main .servicios .contenedor .contenido-servicios {
    display: none;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile {
    width: 100%;
    display: block;
  }


  /* Servicios cambio acordeon */
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion {
    margin: 0 auto;
    width: 90%;
    background: #ccc;
    cursor: pointer;
  }
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item {
    height: 70px;
    background: #fff;
    color: #575757;
    border-bottom: 0.3px solid #c8c4c4;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item:last-of-type  {
    border-bottom: 0 solid #9d9d9d;
  }
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item h3 {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    padding-left: 30px;
    font-size: 0.96875rem;
    font-weight: 700;
  }
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item img {
    padding-left: 15px;
    width: 50px;
    vertical-align: middle;
  }
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item h3:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile .accordion p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 500;
    padding: 15px;
    display: none;
    background: #49a294;
    color: #fff;
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.2);


  }

  .main .clientes .contenido-clientes {
    padding-top: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-self: auto;
  }

  .main .clientes .contenido-clientes .logos-clientes {
    margin-bottom: 60px;
    width: 25%;
    text-align: center;
  }

  .main .clientes .contenido-clientes .logos-clientes img {
    width: 60%;
    min-width: 120px;
  }


  /* Estrategias 900 */
  .main .estrategias {
    padding: 70px 0;
  }

  .main .estrategias .contenedor {
    width: 90%;
  }

  .main .estrategias .contenedor .texto-estrategias {
    width: 100%;
    padding-right: 0;
  }

  .main .estrategias .contenedor .texto-estrategias .titulo-seccion {
    text-align: center;
  }

  .main .estrategias .contenedor .foto{
    display: none;
  }

  /* Contacto 900 */
  .main .contacto{
    /* padding: 70px 0; */
  }

  .main .contacto .contenedor-formulario{
    width: 100%;
  }

  .main .contacto .contenedor-formulario .formulario{
    width: 100%;
    padding: 30px 70px;
  }

  .main .contacto .contenedor-formulario .formulario .titulo-seccion  {
    text-align: center;
  }

  .main .contacto .contenedor-formulario .formulario .titulo-seccion h1{
    text-align: center;
  }

  .main .contacto .contenedor-formulario .foto{
    display: none;
  }

  /* footer 900 */
  footer {
    background-color: #455364;
    padding: 50px 0;
    text-align: center;
  }
}


@media screen and (max-width: 800px){
  .main .nosotros .iconos-nosotros {
    display: none;
  }

  .main .banner-principal .banner {
    width: 100%;
    height: 100vh;
    background-image: url('../img/bkg-banner-mancha.png');
    background-color: #F6F7FB;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    background-attachment: fixed;
    z-index: 10;
  }

  .main .banner-principal .texto-banner h1{
    font-size: 4.5rem;
    line-height: 60px;
    color: #1E9583;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: -5px;
  }

  .main .banner-principal .texto-banner p {
    font-size: 1rem;
    line-height: 1.4rem;
    color: #9A9696;
    font-weight: 500;
    margin-bottom: 80px;
  }

  .main .banner-principal .texto-banner {
    display: inline-block;
    width: 100%;
    position: absolute;
    left: 6%;
    top: 60%;
    transform: translate(-6%, -60%);
    text-align: center;
    padding: 0 20px;
  }

  .main .banner-principal .dibujo-banner img {
    display: none;
  }

}

@media screen and (max-width: 550px){
  .main .nosotros .iconos-nosotros {
    display: none;
  }

  /* Clientes 500 */
  .main .clientes {
    /* padding-top: 50px;
    padding-bottom: 50px; */
  }

  .main .contacto

  .main .clientes .contenido-clientes {
    padding-top: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-self: auto;
  }

  .main .clientes .contenido-clientes .logos-clientes {
    margin-bottom: 40px;
    width: 50%;
    text-align: center;
  }

  .main .clientes .contenido-clientes .logos-clientes img {
    width: 20%;
    min-width: 120px;
  }

  .main .contacto .contenedor-formulario .formulario{
    width: 100%;
    padding: 20px 30px;
  }


}

@media screen and (max-width: 375px){
  .main .banner-principal .banner {
    width: 100%;
    height: 100vh;
    background-image: url('../img/bkg-banner-mancha.png');
    background-color: #F6F7FB;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    background-attachment: fixed;
    z-index: 10;
  }

  .titulo-seccion h1 {
    font-size: 1.5rem;
    color: #4A4A4A;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .titulo-seccion p {
    font-size: 0.8125rem;
    line-height: 1.4rem;
    color: #575757;
    font-weight: 500;
  }

  #lineaArribaTituloCentrado {
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 10px;
    color: #64C5B6;
  }

  #lineaArribaTituloJustificado {
    text-align: left;
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 10px;
    color: #64C5B6;
  }

  .main .nuestros-valores .contenedor .texto-valores .titulo-seccion p {
    line-height: 1.4rem;
  }

  .main .estrategias .contenedor .texto-estrategias .titulo-seccion p {
    line-height: 1.4rem;
  }

  .main .banner-principal .texto-banner h1{
    font-size: 3.2rem;
    line-height: 45px;
    color: #1E9583;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: -5px;
  }

  .main .banner-principal .texto-banner p {
    font-size: 0.8125rem;
    line-height: 1.3rem;
    color: #9A9696;
    font-weight: 500;
    margin-bottom: 80px;
  }


  .main .banner-principal .texto-banner {
    display: inline-block;
    width: 100%;
    position: absolute;
    left: 6%;
    top: 60%;
    transform: translate(-6%, -60%);
    text-align: center;
    padding: 0 20px;
  }

  .main .banner-principal .dibujo-banner img {
    display: none;
  }


  /* Servicios cambio acordeon */
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion {
    width: 95%;
  }
  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item {
    height: 60px;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item h3 {
    padding-left: 5px;
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile .accordion .item img {
    padding-left: 10px;
    width: 40px;
    vertical-align: middle;
  }

  .main .servicios .contenedor .contenedor-servicio-mobile .accordion p {
    font-size: 0.8125rem;
    line-height: 1.5rem;
    font-weight: 500;
    padding: 15px;
    display: none;
    background: #49a294;
    color: #fff;
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.2);
  }
}
