:root {
  --black-intense: #111111;
  --black: #222222;
  --black-light: #333333;
  --gray: #999999;
  --withe: #dddddd;
  --red-cherry: #f53b57;
  --font-poppins: 'Poppins', sans-serif;
  --font-playfair: 'Playfair Display', serif;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: var(--black-intense);
}

::-webkit-scrollbar-thumb {
  background: var(--red-cherry);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--withe);
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: var(--font-poppins);
  color: var(--withe);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background-color: var(--black);
  font-size: 62.5%;
  min-width: 320px;
  scroll-behavior: auto;
}

a {
  text-decoration: none;
}

.space-lateral {
  padding: 0 24px;
}

.nav {
  width: 100%;
  position: fixed;
  background-color: var(--black-intense);
  z-index: 1;
  padding: 10px 0;
}

.nav__container {
  width: 100%;
  height: 100%;
  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;
  font-size: 1.5rem;
  margin: auto;
}

.nav__container .logo {
  font-size: 2.2rem;
  font-weight: 800;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.nav__container .logo:hover {
  color: var(--red-cherry);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.nav__container .menu {
  position: relative;
  height: 60px;
  width: 25px;
  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;
}

.nav__container .menu:hover .nav__list-links,
.nav__container .menu .nav__list-links:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.nav__container .menu .nav-burger {
  font-size: 28px;
}

.nav__container .menu .nav-burger:hover {
  color: var(--red-cherry);
}

.nav__container .menu .nav__list-links {
  list-style: none;
  display: none;
  background-color: var(--black-intense);
  padding: 20px 20px;
  position: absolute;
  top: 45px;
  right: -20px;
  text-align: end;
}

.nav__container .menu .nav__list-links li a {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.nav__container .menu .nav__list-links li a:hover {
  color: var(--red-cherry);
  text-decoration: underline;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.nav__container .menu .nav__list-links li:nth-child(3) {
  margin: 10px 0 0;
}

.nav__container .menu .nav__list-links li:nth-child(3) a {
  padding: 5px 15px;
  border: 2px solid var(--red-cherry);
  border-radius: 30px;
}

.nav__container .menu .nav__list-links li:nth-child(3) a:hover {
  background-color: var(--red-cherry);
  color: var(--withe);
  text-decoration: none;
}

.header__container {
  height: 100vh;
  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;
  background: var(--black-intense);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.header__container {
  text-align: center;
}

.header__container h1 {
  font-size: 4rem;
  line-height: 4.6rem;
}

.header__container p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: var(--red-cherry);
  opacity: 1;
}

.about-me {
  position: relative;
  width: 100%;
  height: 700px;
  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;
  padding: 100px 0;
}

.about-me__container {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.about-me__left {
  text-align: center;
}

.about-me__left img {
  border: 2px solid var(--withe);
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-me__left .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 15px 0 0;
}

.about-me__left .social-media .fab,
.about-me__left .social-media .fas {
  font-size: 2rem;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.about-me__left .social-media .fab:hover,
.about-me__left .social-media .fas:hover {
  color: var(--red-cherry);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.about-me__right {
  text-align: center;
  max-width: 80%;
}

.about-me__right h2 {
  font-size: 2.5rem;
}

.about-me__right p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.1rem;
  color: var(--gray);
  margin: auto;
}

.about-me .img-wave-up {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-me .img-wave-down {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.work {
  background-color: var(--black-light);
  padding: 100px 0;
}

.work__container .work__content {
  width: 100%;
  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: 10px 0 50px;
}

.work__container .work__content h2 {
  font-size: 2.5rem;
}

.work__container .work__content p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.05rem;
  color: var(--gray);
  max-width: 500px;
  text-align: center;
}

.work__container--block {
  display: block;
}

.work__proyects {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  place-content: center;
  gap: 30px;
}

.work__proyects .card {
  background-color: var(--black);
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px -7px rgba(21, 21, 21, 0.8);
          box-shadow: 0px 10px 30px -7px rgba(21, 21, 21, 0.8);
  max-width: 380px;
}

.work__proyects .card__img {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.work__proyects .card__img .img {
  width: 100%;
  height: 200px;
  background: var(--withe);
  border-radius: 10px 10px 0 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.work__proyects .card__img .img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.work__proyects .card__img .audiservicios {
  background: url(../assets/image/png/@udiservicios.png) center/cover no-repeat var(--withe);
}

.work__proyects .card__img .batatabit {
  background: url(../assets/image/png/batatabit.png) center/cover no-repeat var(--withe);
}

.work__proyects .card__img .reproductor-js {
  background: url(../assets/image/png/reproductor-de-video.png) center/cover no-repeat var(--withe);
}

.work__proyects .card__img .workshop-lazy {
  background: url(../assets/image/png/lazyloading.png) center/cover no-repeat var(--withe);
}

.work__proyects .card__img .landing-page {
  background: url(../assets/image/png/prueba-tecnica-landing-page.jpg) center/cover no-repeat var(--withe);
}

.work__proyects .card__content {
  padding: 40px 24px;
}

.work__proyects .card__content p:nth-child(1) {
  color: var(--red-cherry);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 700;
}

.work__proyects .card__content h3 {
  font-size: 2rem;
}

.work__proyects .card__content p:nth-child(3) {
  color: var(--gray);
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 15px 0 20px;
}

.work__proyects .card__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  font-size: 1.5rem;
}

.badge {
  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;
  gap: 5px;
  height: 40px;
  border-radius: 50px;
  padding: 0 15px;
}

.badge__html {
  background-color: rgba(227, 76, 38, 0.4);
}

.badge__css {
  background-color: rgba(37, 75, 228, 0.4);
}

.badge__bootstrap {
  background-color: rgba(121, 82, 179, 0.4);
}

.badge__sass {
  background-color: rgba(205, 103, 153, 0.4);
}

.badge__js {
  background-color: rgba(240, 219, 79, 0.4);
}

.badge__talwindcss {
  background-color: rgba(22, 190, 202, 0.4);
}

.badge__talwindcss img {
  height: 15px;
}

.badge p {
  font-size: 1.5rem;
  font-weight: bold;
}

.fa-html5 {
  color: #e34c26;
}

.fa-css3-alt {
  color: #264de4;
}

.fa-bootstrap {
  color: #7952b3;
}

.fa-sass {
  color: #cd6799;
}

.fa-js-square {
  color: #f0db4f;
}

.footer {
  background-color: var(--withe);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  padding: 20px 0;
}

.footer__content p,
.footer__content span,
.footer__content b {
  color: var(--black-intense);
}

.footer__content a:hover b:hover {
  color: var(--red-cherry);
  text-decoration: underline;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
/*# sourceMappingURL=style.css.map */