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

body {
  background-color: #000000;
  color: #a9abb3;
  font-size: 16px;
  font-family: "Roboto Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

button,
a,
input {
  outline: none;
}

a {
  color: #a9abb3;
  text-decoration: none;
}

ul {
  list-style: none;
}

.contenedor {
  width: 90%;
  margin: auto;
}

.nav__main {
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 20px 0;
}

.span {
  color: #a9abb3;
}

.nav__logo {
  width: 50px;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__lista {
  padding: 10px;
}

.nav__enlace {
  padding: 6px;
}
.nav__enlace:hover {
  border-bottom: 2px solid #a9abb3;
}

.nav-main ul.nav-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
}

.menu-btn {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 18px;
  right: 30px;
  z-index: 100;
  font-size: 1.5rem;
  color: #a9abb3;
  background: none;
  border: none;
}

.header {
  text-align: center;
}

.header__titulo {
  margin: 45px 0 10px 0;
  color: #fff;
}

.header__subtitulo {
  padding-bottom: 15px;
}

.header__contenedor-items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 5px;
}

.header__items {
  width: 30%;
  height: 225px;
  padding: 15px;
  margin: 20px 0;
  transition: 0.2s all ease;
}
.header__items i {
  font-size: 45px;
  padding-bottom: 15px;
  color: #a9abb3;
}
.header__items .header__titulo-item {
  color: #fff;
  margin-bottom: 10px;
}
.header__items p {
  color: #a9abb3;
  font-size: 15px;
  transition: 0.2s all ease;
}
.header__items:hover {
  background: rgba(255, 255, 255, 0.1);
}

.portfolio {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.portfolio__titulo {
  font-size: 30px;
  text-align: center;
  padding-top: 25px;
  color: #fff;
}

.portfolio__contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.porfolio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 10px;
  overflow: hidden;
}
.porfolio__item a {
  text-align: center;
}
.porfolio__item img {
  width: 280px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.9);
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.9);
}
.porfolio__item img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.portfolio__enlace {
  padding: 3px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #fff;
}
.portfolio__enlace:hover {
  color: #a9abb3;
}

.cv {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cv .cv__boton a {
  display: inline-block;
  text-align: center;
  line-height: 70px;
  width: 350px;
  height: 70px;
  margin-top: 20px;
  margin-bottom: 35px;
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.42);
  background: linear-gradient(90deg, #ff1f75, #ff4746);
  color: #fff;
  transition: 0.3s ease all;
  cursor: pointer;
}
.cv .cv__boton a:hover {
  background: linear-gradient(90deg, #fc5e9b, #f56161);
}

.curriculum {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.curriculum__articulo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: 0.2s all ease;
}
.curriculum__articulo:hover {
  background: rgba(255, 255, 255, 0.1);
}

.curriculum__titulo {
  width: 20%;
  padding: 30px 0;
}
.curriculum__titulo h3 {
  font-size: 23px;
  color: #fff;
}
.curriculum__titulo h3 i {
  color: #a9abb3;
  font-size: 23px;
}

.curriculum__descripcion {
  width: 75%;
  padding: 30px 0;
}
.curriculum__descripcion h4 {
  font-size: 18px;
  color: #fff;
}
.curriculum__descripcion p {
  margin-top: 20px;
  font-size: 15px;
}
.curriculum__descripcion p a {
  text-decoration: underline;
  font-weight: bold;
}

.curriculum__segundo-titulo {
  margin-top: 20px;
}

.curriculum__articulo .curriculum__descripcion-listas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
  padding: 30px 0;
}
.curriculum__articulo .curriculum__descripcion-listas ul {
  margin-top: 20px;
}

.curriculum__grupo h4 {
  font-size: 18px;
  color: #fff;
}

footer .redes-sociales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .redes-sociales a i {
  font-size: 20px;
  line-height: 60px;
}

.redes-sociales__enlace {
  display: block;
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #ff1f75, #ff4746);
  color: #fff;
  margin: 20px;
  text-align: center;
  border-radius: 100px;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.redes-sociales__contenedor-icono:hover a {
  background: linear-gradient(90deg, #fc5e9b, #f56161);
}

@media screen and (max-width: 900px) {
  .contactos a {
    font-size: 15px;
  }

  .menu-btn {
    display: block;
  }

  .nav__main ul.nav__menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    -webkit-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    transform: translateX(-400px);
    padding: 70px 50px 30px 30px;
    opacity: 0.9;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
  }

  .nav__main ul.nav__menu.show {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  .nav-main ul.nav-menu li {
    padding: 20px;
    border-bottom: #a9abb3 solid 1px;
  }

  .nav__enlace {
    color: #fff;
  }
  .nav__enlace:hover {
    border-bottom: 2px solid #fff;
  }

  .header__items {
    width: 100%;
    margin: 10px 0;
  }

  .porfolio__item img {
    width: 100%;
  }

  .redes-sociales__enlace {
    margin: 10px;
  }

  .curriculum__articulo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: 0.2s all ease;
  }
  .curriculum__articulo:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .curriculum__articulo .curriculum__titulo {
    width: 90%;
    text-align: center;
  }
  .curriculum__articulo .curriculum__descripcion {
    width: 90%;
  }

  .curriculum__articulo .curriculum__descripcion-listas {
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
  }
  .curriculum__articulo .curriculum__descripcion-listas .curriculum__grupo {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 400px) {
  .cv .cv__boton a {
    line-height: 70px;
    width: 200px;
    height: 70px;
  }

  .header__items i {
    font-size: 37px;
  }

  .contactos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contactos a {
    font-size: 14px;
  }

  .span {
    display: none;
  }

  footer .redes-sociales a i {
    line-height: 45px;
  }

  .redes-sociales__enlace {
    margin: 5px;
    width: 45px;
    height: 45px;
  }
}

/*# sourceMappingURL=main.css.map */
