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

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

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

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

}

.titulo-seccion h2{
  color: #98ce00;
  font-size: 3.125rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.titulo-seccion p{
  color: #757780;
  font-size: 1rem;
  font-weight: 400;
}

/*---------BOTON ARRIBA-------------*/

.btn-volver-arriba{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(152, 206, 0, 0.5);
  border-radius: 30%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  margin-right: -60px;
  transition: all .4s ease;
}

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

.btn-volver-arriba a i{
  font-size: 1.5rem;
  color: #fffffc;
  line-height: 40px;

}
/*----------ENCABEZADO----------*/

.menu-bar-pc{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(152, 206, 0, 0.5);
  padding: 0 36px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

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

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

.menu-principal a, .top-redes a{
  display: inline-block;
  padding: 0 10px;
  color: #757780;
  text-decoration: none;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
}

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

.top-redes a i{
  font-size: 1rem;
  color: #757780;
}

.menu-principal a:hover, .top-redes a i:hover{
  color: #98ce00;
}

.fixed-header{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(152, 206, 0, 0.5);
  padding: 0 36px;
  background-color: #757780;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all .4s ease;
  margin-top: -68px;
}

.fixed-header .menu-principal a, .fixed-header .top-redes a i{
  color: #fffffc;
}

.fixed-header .menu-principal a:hover, .top-redes a i:hover{
  color: #98ce00;
}
/*--------MENU MOVIL-----------*/
.menu-movil{
  display: none;
}


/*----------MAIN-----------*/

/*--------BANNER----------*/
.main{
  width: 100%;
  margin-top: -68px;
}

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

.main .banner-principal .banner{
  width: 100%;
  height: 100vh;
  background-image: url('../img/banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

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

.main .banner-principal .texto-banner img{
  width: 50%;
  text-align: center;

}

.main .banner-principal .texto-banner a{
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(152, 206, 0, 0.5);
  color: #fdfffc;
  text-align: center;
  transition: all .7s ease;
}

.main .banner-principal .texto-banner a:hover{
  background: rgba(253, 255, 252, 0.5);
  color: #98ce00;
}

/*----------NOSOTROS --------*/
.main .acerca-de{
  background-image: url('../img/fondoBlanco.png');
  background-size:cover;
  padding: 130px 0;
}

.main .acerca-de .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .acerca-de .contenedor .titulo-seccion{
  width: 33,33%;
  padding: 5px;
  text-align: left;

}

.main .acerca-de .contenedor .titulo-seccion h2{
  margin-bottom: 0;
}

.main .acerca-de .contenedor .texto-acerca-de{
  width: 66.66%;
  padding: 15px;
  text-align: left;
}

.main .acerca-de .texto-acerca-de p{
  color: #757780;
  font-size: 1rem;
  font-weight: 400;
}

/*---SLIDER---- */

.main .contenedor-slider{
  width: 100%;
  overflow: hidden;
  background-color: #fffffc;
  padding: 54px 0;
  position: relative;
}

.main .contenedor-slider .slider{
  width: 300%;
  display: flex;
}

.main .contenedor-slider .slider .slide{
  width: 15%;
  max-width: 950px;
  margin-right: 0.7%;
  box-shadow: 0px 20px 40px #fff;
}

.main .contenedor-slider .slider .slide img{
  width: 100%;
  vertical-align: top;
}

.main .contenedor-slider .btn-anterior, .main .contenedor-slider .btn-siguiente{
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main .contenedor-slider .btn-anterior{
  left: 2%;
}

.main .contenedor-slider .btn-siguiente{
  right: 2%;
}

.main .contenedor-slider .btn-anterior i, .main .contenedor-slider .btn-siguiente i{
  color: #fff;
  font-size: 3rem;
}

.main .contenedor-slider .btn-anterior i:hover, .main .contenedor-slider .btn-siguiente i:hover{
  color: #98ce00;
}

/*-------SOPORTE TECNICO---------*/

.main .soporte-tecnico{
  background-image: url('../img/fondoBlanco.png');
  background-size:cover;
  padding: 130px 0;
}

.main .soporte-tecnico .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .soporte-tecnico .contenedor .soporte{
  width: 50%;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: center;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte:first-child{
  margin-bottom: 30px;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte .icono-soporte{
  width: 5%;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte .icono-soporte i{
  font-size: 1.5rem;
  color: #98ce00;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte .texto-soporte{
  margin-left: 3%;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte .texto-soporte h4{
  font-size: 1.875rem;
  line-height: 24px;
  color: #98ce00;
  font-weight: 500;
  margin-bottom: 15px;
}

.main .soporte-tecnico .contenedor .soporte .contenido-soporte .texto-soporte p{
  color: #757780;
  font-size: 1rem;
  font-weight: 400;
}

.main .soporte-tecnico .contenedor .foto{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(152, 206, 0, 1.5);
  background-image: url('../img/soporte.jpg');
  background-position: center;
  background-size: cover;
}


/*----------SOPORTE TECNICO DETALLE --------*/
.main .acerca-deSoporte{
  padding: 130px 0;
  background-image: url('../img/fondoSoporte.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .acerca-deSoporte .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .acerca-deSoporte .contenedor .titulo-seccion{
  width: 100%;
  padding: 5px;
  text-align: center;

}

.main .acerca-deSoporte .contenedor .titulo-seccion h2{
  font-size: 4.5rem;
  margin-bottom: 0;
  padding: 8px 20px;
}

.main .acerca-deSoporte .contenedor .texto-acerca-de{
  background-image: url('../img/fondoBlancoOpacidad.png');
  background-size:cover;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.main .acerca-deSoporte .texto-acerca-de h4{
  color: #98ce00;
}

.main .acerca-deSoporte .texto-acerca-de h3{
  font-size: 1.5rem;
  font-weight: 400;
  padding: 8px 20px;
  color: #001011;
}

.main .acerca-deSoporte .texto-acerca-de p{
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 20px;
  color: #001011;
}

/*-------REDES---------*/

.main .sector-redes{
  background-image: url('../img/fondoBlanco.png');
  background-size:cover;
  padding: 130px 0;
}

.main .sector-redes .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .sector-redes .contenedor .redes{
  width: 50%;
}

.main .sector-redes .contenedor .redes .contenido-redes{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.main .sector-redes .contenedor .redes .contenido-redes:first-child{
  margin-bottom: 30px;
}

.main .sector-redes .contenedor .redes .contenido-redes .icono-redes{
  width: 5%;
}

.main .sector-redes .contenedor .redes .contenido-redes .icono-redes i{
  font-size: 1.5rem;
  color: #98ce00;
}

.main .sector-redes .contenedor .redes .contenido-redes .texto-redes{
  margin-left: 3%;
}

.main .sector-redes .contenedor .redes .contenido-redes .texto-redes h4{
  font-size: 1.875rem;
  line-height: 24px;
  color: #98ce00;
  font-weight: 500;
  margin-bottom: 15px;
}


.main .sector-redes .contenedor .redes .contenido-redes .texto-redes p{
  color: #757780;
  font-size: 1rem;
  font-weight: 400;
}

.main .sector-redes .contenedor .foto{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(152, 206, 0, 1.5);
  background-image: url('../img/redes.jpg');
  background-position: center;
  background-size: cover;
}

/*----------REDES DETALLE --------*/
.main .acerca-deRedes{
  padding: 130px 0;
  background-image: url('../img/fondoRedes.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .acerca-deRedes .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .acerca-deRedes .contenedor .titulo-seccion{
  width: 100%;
  padding: 5px;
  text-align: center;
}

.main .acerca-deRedes .contenedor .titulo-seccion h2{
  margin-bottom: 0;
  padding: 8px 20px;
  font-size: 4.5rem;

}

.main .acerca-deRedes .contenedor .texto-acerca-de{
  width: 100%;
  padding: 15px;
  text-align: left;
}

.main .acerca-deRedes .texto-acerca-de p{
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 20px;
  background-image: url('../img/fondoBlancoOpacidad.png');
  background-size:cover;
  color: #001011;
}

/*-------OTROS---------*/

.main .sector-otros{
  background-image: url('../img/fondoBlanco.png');
  background-size:cover;
  padding: 130px 0;
}

.main .sector-otros .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .sector-otros .contenedor .otros{
  width: 50%;
}

.main .sector-otros .contenedor .otros .contenido-otros{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.main .sector-otros .contenedor .otros .contenido-otros:first-child{
  margin-bottom: 30px;
}

.main .sector-otros .contenedor .redes .contenido-otros .icono-otros{
  width: 5%;
}

.main .sector-otros .contenedor .otros .contenido-otros .icono-otros i{
  font-size: 1.5rem;
  color: #98ce00;
}

.main .sector-otros .contenedor .otros .contenido-otros .texto-otros{
  margin-left: 3%;
}

.main .sector-otros .contenedor .otros .contenido-otros .texto-otros h4{
  font-size: 1.875rem;
  line-height: 24px;
  color: #98ce00;
  font-weight: 500;
  margin-bottom: 15px;
}

.main .sector-otros .contenedor .otros .contenido-otros .texto-otros p{
  color: #757780;
  font-size: 1rem;
  font-weight: 400;
}

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

/*----------OTROS DETALLES --------*/
.main .acerca-deOtros{
  padding: 130px 0;
  background-image: url('../img/fondoOtros.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .acerca-deOtros .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .acerca-deOtros .contenedor .titulo-seccion{
  width: 100%;
  padding: 15px;
  text-align: center;

}

.main .acerca-deOtros .contenedor .titulo-seccion h2{
  font-size: 4.5rem;
  margin-bottom: 0;
}

.main .acerca-deOtros .contenedor .texto-acerca-de{
  width: 100%;
  padding: 15px;
  text-align: center;
}

.main .acerca-deOtros .texto-acerca-de p{
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 20px;
  background-image: url('../img/fondoBlancoOpacidad.png');
  background-size:cover;
  color: #001011;
}


/*-------CONTACTO---------*/

.main .sector-contacto{
  padding: 130px 0;
  background-image: url('../img/fondoSoporte.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .sector-contacto .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;

}

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

.main .sector-contacto .contenedor .contacto .contenido-contacto{
  text-align: center;
}

.main .sector-contacto .contenedor .contacto .contenido-contacto{
  margin-bottom: 30px;
}

.main .sector-contacto .contenedor .contacto .contenido-contacto .icono-contacto{

}

.main .sector-contacto .contenedor .contacto .contenido-contacto .icono-contacto i{
  font-size: 5rem;
  color: #98ce00;
  padding: 10px;
}

.main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto{
  margin-left: 5px;
}

.main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto h4{
  font-size: 1.875rem;
  line-height: 24px;
  color: #98ce00;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 8px 20px;
}

.main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto p{
  color: #001011;
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 20px;
  background-image: url('../img/fondoBlancoOpacidad.png');
  background-size:cover;
  margin: 8px 300px;
}


/*---------PIE DE PÁGINA--------*/

footer{
  background: #757780;
  padding: 54px 0;
  text-align: center;
}

footer .copy{
  color: #fffffc;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 15px;
}

footer .top-redes a i{
  color: #fffffc;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
}

footer .top-redes a:hover, .top-redes a i:hover{
  color: #98ce00;
}

/*---------TAMAÑO ----------*/
@media screen and (max-width: 1040px){

  .main .soporte-tecnico .contenedor .soporte{
    width: 100%;
  }
  .main .soporte-tecnico .contenedor .foto{
    display: none;
  }

  .main .sector-redes .contenedor .redes{
    width: 100%;
  }
  .main .sector-redes .contenedor .foto{
    display: none;
  }

  .main .sector-otros .contenedor .otros{
    width: 100%;
  }
  .main .sector-otros .contenedor .foto{
    display: none;
  }

  .main .sector-contacto .contenedor .contacto{
    width: 100%;
  }
  .main .sector-contacto .contenedor .foto{
    display: none;
  }
}
@media screen and (max-width: 1040px){
  /*--------ENCABEZADO--------*/
  .menu-bar-pc{
    display: none;
  }

  .menu-movil{
    display: block;
    width: 100%;
    padding: 5px 18px;
    background: #757780;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }

  .menu-movil .barra{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-movil .barra .logo{
    width: 70px;
  }

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

  .menu-movil .barra i:hover{
    background: #98ce00;
  }

  .menu-movil .menu-principal{
    width: 80%;
    display: block;
    position: fixed;
    top: 56px;
    left: -100%;
    border-bottom: 1px solid rgba(152, 206, 0, 0.5);
    border-right: 1px solid rgba(152, 206, 0, 0.5);
    background: #757780;
    text-align: center;
  }

  .menu-movil .menu-principal a{
    display: block;
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(152, 206, 0, 0.5);
  }

  .menu-movil .menu-principal a:hover{
    background: #98ce00;
  }

  .fixed-header{
    display: none;
  }
/*---MAIN-----*/
  .main{
    margin-top: 0;
  }

/*------nosotros------*/
  .main .acerca-de .contenedor .titulo-seccion, .main .acerca-de .contenedor .texto-acerca-de{
    width: 100%;
    text-align: center;
  }
/*------soporte------*/
  .main .acerca-deSoporte .contenedor .seccion-soporte, .main .acerca-deSoporte .contenedor .texto-soporte{
    width: 100%;
    text-align: center;
  }
/*------redes------*/
  .main .acerca-deRedes .contenedor .seccion-redes, .main .acerca-deRedes .contenedor .texto-redes{
    width: 100%;
    text-align: center;
  }
/*------otros------*/
  .main .acerca-deOtros .contenedor .seccion-otros, .main .acerca-deOtros .contenedor .texto-otros{
    width: 100%;
    text-align: center;
  }

/*------contacto------*/
  .main .acerca-deContacto .contenedor .seccion-contacto, .main .acerca-deContacto .contenedor .texto-contacto{
    width: 100%;
    text-align: center;
  }
  .main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto p{
    margin: 8px 150px;
  }
}

@media screen and (max-width: 600px){
  .titulo-seccion h2{
    font-size: 2.125rem;
  }
  /*--------SOPORTE-------*/
  .main .soporte-tecnico .contenedor .soporte .contenido-soporte{
    flex-wrap: wrap;
    text-align: center;
  }

  .main .soporte-tecnico .contenedor .soporte .contenido-soporte .icono-soporte{
    width: 100%;
    margin-bottom: 25px;
  }

  .main .soporte-tecnico .contenedor .soporte .contenido-soporte .icono-soporte i{
    font-size: 3.5rem;
  }

  .main .soporte-tecnico .contenedor .soporte .contenido-soporte .texto-soporte{
    margin-left: 0;
  }

  .main .soporte-tecnico .contenedor .soporte .contenido-soporte .texto-soporte h4{
    font-size: 1.175rem;
  }

  .main .soporte-tecnico .contenedor .soporte .contenido-soporte:first-child{
    margin-bottom: 40px;
  }
  .main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto p{
    margin: 8px 20px;
  }
/*--------REDES-------------*/
  .main .sector-redes .contenedor .redes .contenido-redes{
    flex-wrap: wrap;
    text-align: center;
  }

  .main .sector-redes .contenedor .redes .contenido-redes .icono-redes{
    width: 100%;
    margin-bottom: 25px;
  }

  .main .sector-redes .contenedor .redes .contenido-redes .icono-redes i{
    font-size: 3.5rem;
  }

  .main .sector-redes .contenedor .redes .contenido-redes .texto-redes{
    margin-left: 0;
  }

  .main .sector-redes .contenedor .redes .contenido-redes .texto-redes h4{
    font-size: 1.175rem;
  }

  .main .sector-redes .contenedor .redes .contenido-redes:first-child{
    margin-bottom: 40px;
  }

/*----------OTROS-----------*/
  .main .sector-otros .contenedor .otros .contenido-otros{
    flex-wrap: wrap;
    text-align: center;
  }

  .main .sector-otros .contenedor .otros .contenido-otros .icono-otros{
    width: 100%;
    margin-bottom: 25px;
  }

  .main .sector-otros .contenedor .otros .contenido-otros .icono-otros i{
    font-size: 3.5rem;
  }

  .main .sector-otros .contenedor .otros .contenido-otros .texto-otros{
    margin-left: 0;
  }

  .main .sector-otros .contenedor .otros .contenido-otros .texto-otros h4{
    font-size: 1.175rem;
  }

  .main .sector-otros .contenedor .otros .contenido-otros:first-child{
    margin-bottom: 40px;
  }

/*------------CONTACTO--------------*/
  .main .sector-contacto .contenedor .contacto .contenido-contacto{
    flex-wrap: wrap;
    text-align: center;
  }

  .main .sector-contacto .contenedor .contacto .contenido-contacto .icono-contacto{
    width: 100%;
    margin-bottom: 25px;
  }

  .main .sector-contacto .contenedor .contacto .contenido-contacto .icono-contacto i{
    font-size: 3.5rem;
  }

  .main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto{
    margin-left: 0;
  }

  .main .sector-contacto .contenedor .contacto .contenido-contacto .texto-contacto h4{
    font-size: 1.175rem;
  }

  .main .sector-contacto .contenedor .contacto .contenido-contacto:first-child{
    margin-bottom: 40px;
  }
}
