* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

.contenedor {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

/* -----  ----- HEADER ----- ----- */

header {
  background: url(../imagenes/header.png) #000;
  background-repeat: no-repeat;
  background-position: center;
  max-height: 550px;
  background-size: 150%;
}

header .contenedor {
  position: relative;
  height: 550px;
}

header .menu {
  margin: 40px 0;
  text-align: right;
}

header .menu a {
  margin: 0 20px;
  color: #2aa6ff;
  padding-bottom: 9px;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-size: 1em;
  position: relative;
  transition: all 0.5s;
}

header .menu a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
}

header .contenedor-texto {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 190px 0;
}

header .contenedor-texto .texto {
  margin-top: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  padding: 20px 60px;
  position: absolute;
}

header .contenedor-texto .texto h1,
header .contenedor-texto .texto h2 {
   color: #fff;
   font-weight: 700;
   margin: 0;
}

header .contenedor-texto .texto .nombre {
  margin-bottom: 10px;
  font-size: 50px;
  line-height: 50px;
}

header .contenedor-texto .texto .profesion {
  font-size: 25px;
  line-height: 25px;
}

/* -----  ----- MAIN ----- ----- */
/* -----  ----- Seccion acerca de ----- ----- */
.main .contenedor {
  overflow: visible;
}

.main .acerca-de {
  text-align: center;
}

.main .acerca-de .foto {
  margin-top: -100px;
}

.main .acerca-de .foto img {
  vertical-align: top;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.main .acerca-de .texto {
  font-size: 1em;
  line-height: 30px;
  width: 80%;
  margin: 40px auto;
  margin-bottom: 100px;
}

.main .acerca-de .texto .titulo {
  font-size: 2em;
  line-height: 3em;
  color: #2aa6ff;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.main .acerca-de .texto p{
  font-weight: 400;
  text-align: justify;
}

.main .acerca-de .texto .bold {
  color: #2aa6ff;
}

/* -----  ----- Seccion forma de trabajo ----- ----- */

.main .mi-trabajo {
  background: url(../imagenes/bg-texture-black.png) rgb(10, 10, 10);
  background-repeat: repeat;
  background-position: center;
  max-height: 1300px;
  padding: 100px 0;
}

.main .mi-trabajo .contenedor {
  overflow: hidden;
}

.main .mi-trabajo .forma-trabajo {
  margin-top: 100px;
}

.main .mi-trabajo .forma-trabajo .titulo {
  color: #2aa6ff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}

.main .mi-trabajo .forma-trabajo p {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
}

.main .mi-trabajo .forma-trabajo {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.main .mi-trabajo .forma-trabajo .articulos {
  width: 40%;
  padding: 0 25px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.dos {
  align-self: flex-end;
}

/* -----  ----- Seccion equipos ----- ----- */

.main .equipos {
  background: #000;
}

.main .equipos .contenedor {
  overflow: hidden;
}

.main .equipos .titulo {
  line-height: 25px;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin: 100px 0;
}

.main .equipos .contenedor-equipo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 100px;
}

.main .equipos .contenedor-equipo .equipo {
  width: 20%;
  text-align: center;
}

.main .equipos .contenedor-equipo .equipo img {
  width: 100%;
  opacity: .5;
  transition: all 0.5s;
}

.main .equipos .contenedor-equipo .equipo img:hover {
  opacity: 1;
}

.main .equipos .contenedor-equipo .equipo .titulo-equipo {
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
}

.main .equipos .contenedor-equipo .equipo a {
  font-weight: 400;
  color: #2aa6ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  opacity: .5;
  transition: all 0.5s;
}

.main .equipos .contenedor-equipo .equipo a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
  opacity: 1;
}

/* -----  ----- Seccion contacto ----- ----- */

.main .contacto {
  background: #2aa6ff;
  overflow: hidden;
}

.main .contacto .titulo {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}

.main .contacto p {
  color: #fff;
  text-align: center;
  font-size: .9em;
}

.main .red {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 20px;
}

.main .contacto a {
  color: #fff;
  text-decoration: none;
  font-size: 60px;
  display: block;
  padding: 15px 0;
  width: 100px;
  border-radius: 5px;
  margin: 0 20px;
  transition: all 0.5s;
}

.main .contacto .uno:hover {
  color: #fff;
  background: #1da1f2;
}

.main .contacto .dos:hover {
  color: #fff;
  background: #1769ff;
}

.main .contacto .tres:hover {
  color: #fff;
  background: #f56040;
}

/* -----  ----- FOOTER ----- ----- */

footer {
  background: url(../imagenes/logo1.png) #000;
  background-repeat: no-repeat;
  background-position: center; 
  background-size: 15%;
}

footer .contenedor {
  overflow: hidden;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* -----  ----- Redes ----- ----- */

footer .informacion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px;
}

footer .contenedor-redes {
  width: 200px;
}

footer .contenedor-redes .redes {
  font-weight: 700;
  font-size: .7em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

footer .contenedor-redes .redes a {
  color: #fff;
  fill: #fff;
  text-decoration: none;
  transition: all 0.5s;
}

footer .contenedor-redes a svg {
  margin-top: 10px;
  display: flex;
  margin: 10px auto;
}

footer .contenedor-redes .redes a:hover {
  color: rgb(201, 201, 201);
  fill:rgb(201, 201, 201);
}

/* -----  ----- Equipos ----- ----- */

footer .contenedor-trabajado {
  width: 400px;
  margin-top: -19px;
}

footer .contenedor-trabajado .titulo {
  color: #fff;
  text-align: right;
  font-size: 1em;
}

footer .contenedor-trabajado .equi-trab {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

footer .contenedor-trabajado .equi-trab .logo-e {
  width: 50px;
  margin: 10px 0;
}

footer .contenedor-trabajado .equi-trab .logo-e img {
  width: 100%;
  opacity: .7;
  transition: all 0.5s;
}

footer .contenedor-trabajado .equi-trab .logo-e img:hover {
  opacity: 1;
}

footer p {
  padding-top: 15px;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
}

footer .contenedor p a {
  color: #2aa6ff;
  text-decoration: none;
  transition: all 0.5s;
}

footer .contenedor p a:hover {
  color: #fff;
}

/* ----- ----- MEDIA QUERIES ----- ----- */

@media screen and (max-width: 800px) {

  /* header */
  header {
    background: url(../imagenes/logo1.png) #000;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    background-size: 30%;
  }

  header .texto .titulo {
    font-size: 10px;
  }

  /* footer */
  footer {
    background-size: 30%;
  }

}

@media screen and (max-width: 650px) {

  /* header */
  header .contenedor-texto .texto .nombre {
    font-size: 35px;
  }
  
  header .contenedor-texto .texto .profesion {
    font-size: 25px;
  }

  /* main trabajo */
  .main .mi-trabajo .forma-trabajo .titulo {
    font-size: 1.5em;
  }
  
  .main .mi-trabajo .forma-trabajo p {
    font-size: 0.8em;
  }
  
  .main .mi-trabajo .forma-trabajo {
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
  }

  .dos {
    align-self: flex-start;
  }

  /* main equipos */
  .main .equipos .titulo {
    font-size: 1.5em;
  }
  
  .main .equipos .contenedor-equipo {
    flex-direction: column;
    align-content: center;
  }
  
  .main .equipos .contenedor-equipo .equipo {
    width: 50%;
  }
  
  .main .equipos .contenedor-equipo .equipo .titulo-equipo {
    font-size: 1em;
  }

  /* Footer redes */
  footer .informacion {
    flex-direction: row;
    margin: 40px;
  }

  footer .contenedor-redes {
    width: 100%;
    margin-bottom: 50px;
  }
  
  footer .contenedor-redes .redes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  /* footer equipos */
  footer .contenedor-trabajado {
    width: 400px;
    margin: 0 auto;
  }
  
  footer .contenedor-trabajado .titulo {
    color: #1da1f2;
    text-align: center;
    font-size: 1em;
  }
  
  footer .contenedor-trabajado .equi-trab {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

}

@media screen and (max-width: 400px) {

  /* header */
  header .menu {
    text-align: center;
  }

  header .menu a {
    font-size: .8em;
  }

  header .contenedor-texto {
    margin-top: 90px;
  }

  header .contenedor-texto .texto .nombre {
    font-size: 20px;
  }
  
  header .contenedor-texto .texto .profesion {
    font-size: 15px;
  }

  /* main trabajo */
  .main .mi-trabajo .forma-trabajo {
    width: 100%;
  }

  .main .mi-trabajo .forma-trabajo .articulos {
    width: 80%;
  }

}