@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100&family=Roboto:wght@100;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth; /*Desliza al click*/
}

.subtitulo {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
}

.texto {
  font-family: "Raleway", sans-serif;
}

a.cvlac {
  color: #fff;
}

body {
  background-color: #0c0c0d;
  color: #ededed;
}

.heading {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  margin-bottom: 40px;
}
.heading span {
  color: #0c96e1;
}

.title {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  text-align: left;
}

.btn-form {
  background-color: #0c96e1;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}
.btn-form:hover {
  background-color: #fff;
  color: #0c96e1;
}

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: 0.3s;
}

.header.sticky {
  background-color: #0b121e;
  box-shadow: 1px 0.5px 1px #000000;
}

.header span {
  color: #0c96e1;
}

.header img {
  width: 50px;
}

.logo {
  position: relative;
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}

.navbar {
  position: relative;
}

.navbar a {
  font-size: 0.8rem;
  color: #ededed;
  font-weight: 400;
  margin-left: 1.4rem;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.navbar a:hover {
  color: #0c96e1;
}

.navbar a.active {
  color: #0c96e1;
  font-weight: 800;
}

#menu-icon {
  position: relative;
  font-size: 3rem;
  cursor: pointer;
  color: #fff;
  display: none;
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

.home {
  display: flex;
  align-items: center;
  padding: 0 9%;
}

.home-content {
  max-width: 50rem;
  z-index: 99;
}
.home-content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}
.home-content span {
  color: #0c96e1;
}
.home-content .text-animate {
  position: relative;
  width: 10rem;
  background-color: #0c96e1;
}
.home-content .text-animate h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 0.7px #0c96e1;
  font-family: "Roboto", sans-serif;
  background-image: linear-gradient(#0c96e1, #0c96e1);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  background-position: 0 0;
  animation: homeBgTexto 6s linear infinite;
  animation-delay: 2s;
}
.home-content .text-animate h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-right: 1px solid #0c96e1;
  z-index: -1;
  animation: homeCursorTexto 6s linear infinite;
  animation-delay: 2s;
}
.home-content p {
  font-size: 1.2rem;
  margin: 1.5rem 0 2rem;
  font-family: "Raleway", sans-serif;
  text-align: justify;
}

/* .btn-box{
    position: relative;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    width: 100%;
    height: 5rem;
    .btn{
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 10rem;
        height: 60%;
        margin-right: 50px;
        background-color: $primario;
        color: $fondo2;
        border: .1rem solid $primario;
        border-radius: .6rem;
        font-size: 1.1rem;
        letter-spacing: .1rem;
        z-index: 1;
        overflow: hidden;
        color: $blanco;
        transition: .5s;
        &:hover{
            color: $blanco;
        }
    }
}


.btn-box .btn:nth-child(1){
    background: transparent;
    color: $blanco;
}
.btn-box .btn:nth-child(1):hover{
    color: $primario;
}
.btn-box .btn:nth-child(1)::before{
    background: $blanco;

}
.btn-box .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color:$fondo1;
    z-index: -1;
    transition: .5s;
}
.btn-box .btn:hover::before{
    width: 100%;
} */
.home-social {
  position: absolute;
  bottom: 4rem;
  width: 170px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.home-social a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0.1rem solid #0c96e1;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
.home-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.home-social a:hover {
  color: #0c96e1;
}

.home-social a:hover::before {
  width: 100%;
  color: #0c96e1;
}

.home-img {
  position: absolute;
  top: 180px;
  right: 0;
  width: 35%;
  height: 50vh;
  transition: 3s;
}

.home-img img {
  width: 100%;
  height: 100%;
}

.about {
  background-color: #0b121e;
  padding: 0 9%;
}
.about h2 {
  font-size: 2rem;
  text-align: center;
  padding: 20px;
  font-family: "Roboto", sans-serif;
}
.about p {
  font-size: 1.5rem;
  line-height: 20px;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
}
.about p span {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #0c96e1;
}
.about .content-about p {
  text-align: center;
}
.about .content {
  display: flex;
}
.about .content .info-personal, .about .content .info-intereses {
  width: 50%;
  font-family: "Raleway", sans-serif;
}
.about .content .info-personal h3, .about .content .info-intereses h3 {
  margin: 60px 0px;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
}
.about .content .info-personal ul, .about .content .info-intereses ul {
  list-style: none;
}
.about .content .info-personal ul li, .about .content .info-intereses ul li {
  margin: 12px 0;
}
.about .content .info-personal ul li b, .about .content .info-intereses ul li b {
  display: inline-block;
  color: #0c96e1;
  width: 250px;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-size: 1.4rem;
}

.skills {
  background-color: #0c0c0d;
  padding: 0 9%;
}
.skills .skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 5rem;
}

.skills-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 500px;
  height: 200px;
  background-color: #0b121e;
  margin-bottom: 0.2rem;
  padding: 10px;
}
.skills-header .skills-icon {
  font-size: 3.4rem;
  color: #0c96e1;
  margin-right: 0.7rem;
}
.skills-header .skills-arrow {
  color: #0c96e1;
  font-size: 2.6rem;
  margin-left: auto;
}

.skills-header:not(:last-child) {
  margin-bottom: 20px;
}

.skills-title {
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
}

.skills-subtitle {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
}

.skills-active .skills-arrow {
  transform: rotate(-90deg);
  transition: 0.3s;
}

.skills [data-content] {
  display: none;
}

.skills-active[data-content] {
  display: block;
}

.skills-list, .skills-data {
  margin-bottom: 40px;
}

.skills-titles {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.5rem;
}

.skills-name {
  font-size: 1.1rem;
  font-family: "Raleway", sans-serif;
  width: 150px;
}

.skills-number {
  margin-left: auto;
}

.skills-bar,
.skills-percentage {
  width: 500px;
  height: 5px;
  border-radius: 0.25rem;
}

.skills-bar {
  background-color: #ededed;
}

.skills-percentage {
  display: block;
  background-color: #0c96e1;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}

.curriculum {
  padding: 0 9%;
  background-color: #0b121e;
}
.curriculum .content-curriculum {
  width: 100vh;
  margin: auto;
  width: 100%;
}
.curriculum .content-curriculum .content-row {
  display: flex;
  justify-content: space-between;
}
.curriculum .content-curriculum .content-row .content-col {
  width: 100%;
  padding: 0 20px;
}
.curriculum .content-curriculum .content-row .content-col .item {
  padding: 25px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 30px;
  position: relative;
  background-color: #0c0c0d;
}
.curriculum .content-curriculum .content-row .content-col .item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
.curriculum .content-curriculum .content-row .content-col .item .lugar {
  display: block;
  font-size: 1.3rem;
  color: #0c96e1;
  font-weight: 600;
}
.curriculum .content-curriculum .content-row .content-col .item .fecha {
  display: block;
  color: #0c96e1;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
}
.curriculum .content-curriculum .content-row .content-col .item .conectord {
  height: 2px;
  background-color: #0c96e1;
  width: 30px;
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 6;
}
.curriculum .content-curriculum .content-row .content-col .item .conectori {
  height: 2px;
  background-color: #0c96e1;
  width: 30px;
  position: absolute;
  top: 50%;
  right: -30px;
}
.curriculum .content-curriculum .content-row .content-col .der {
  border-left: 2px solid #0c96e1;
}
.curriculum .content-curriculum .content-row .content-col .izq {
  border-right: 2px solid #0c96e1;
}
.curriculum .content-curriculum .content-row .education {
  border-right: 2px solid #0b121e;
}
.curriculum .content-curriculum .content-row .educationContinua {
  border-left: 2px solid #077fff;
}

.experience {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: auto;
  padding: 0 9%;
  width: 100%;
  background-color: #0c0c0d;
}
.experience .experience-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 3rem;
}
.experience .experience-row .experience-column {
  flex: 1 1 4rem;
}
.experience .experience-row .experience-column .experience-box {
  border-left: 0.1rem solid #0c96e1;
}
.experience .experience-row .experience-column .experience-box .experience-content {
  position: relative;
  padding-left: 2rem;
}
.experience .experience-row .experience-column .experience-box .experience-content .content {
  position: relative;
  padding: 1.5rem;
  border: 0.1rem solid #0c96e1;
  border-radius: 0.6rem;
  margin-bottom: 2rem;
  overflow: hidden;
  z-index: 1;
}
.experience .experience-row .experience-column .experience-box .experience-content .content .year {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #0c96e1;
  padding-bottom: 0.5rem;
}
.experience .experience-row .experience-column .experience-box .experience-content .content h3 {
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
}
.experience .experience-row .experience-column .experience-box .experience-content .content p {
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
}
.experience .experience-row .experience-column .experience-box .experience-content .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0c96e1;
  opacity: 0.3;
  z-index: -1;
  transition: 0.5s;
}
.experience .experience-row .experience-column .experience-box .experience-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #077fff;
  border-radius: 50%;
}

.work {
  padding: 0 9%;
  background-color: #0b121e;
}

.work-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  margin-bottom: 1rem;
}
.work-filters .work-item {
  cursor: pointer;
  color: #ededed;
  padding: 0.25rem 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  font-family: "Roboto", sans-serif;
}

.active-work {
  background-color: #0c96e1;
  color: #fff;
}

.work-container {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 1.8rem;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.work-container .work-card {
  background-color: #0c0c0d;
  padding: 1.25rem;
  border-radius: 0.5rem;
}
.work-container .work-card .work-img {
  border-radius: 0.5rem;
  margin-bottom: 10px;
  width: 300px;
  height: 200px;
}
.work-container .work-card .work-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.work-container .work-card .work-button {
  font-family: "Raleway", sans-serif;
  color: #0c96e1;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  cursor: pointer;
}
.work-container .work-card .work-button .work-button-icon {
  font-size: 1rem;
  transition: 0.3s;
}
.work-container .work-card .work-button:hover .work-button-icon {
  transform: translateX(0.25rem);
}
.work-container .work-card .portfolio-item-details {
  display: none;
}

.portfolio-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-popup.open {
  opacity: 1;
  visibility: visible;
}

.portfolio-popup-inner {
  width: 1000px;
  border-radius: 0.5rem;
  background-color: #0c0c0d;
  padding: 2rem;
  position: relative;
}

.portfolio-popup-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.portfolio-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #0c96e1;
  cursor: pointer;
}

.portfolio-popup-img {
  border-radius: 0.5rem;
  width: 400px;
}

.portfolio-popup-subtitle {
  color: #ededed;
  font-family: "Raleway", sans-serif;
}

.details-title {
  font-family: "Roboto", sans-serif;
  margin-bottom: 1rem;
  color: #0c96e1;
}

.details-description {
  font-family: "Raleway", sans-serif;
  margin-bottom: 1rem;
  width: 450px;
}

.details-info {
  list-style: none;
}
.details-info li {
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
}
.details-info span {
  font-family: "Raleway", sans-serif;
}
.details-info .span-url {
  color: #0c96e1;
}

.dishes {
  padding: 0 9%;
  background-color: #0c0c0d;
}

.dishes .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1.5rem;
}

.dishes .box-container .box {
  padding: 2.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dishes .box-container .box .bx-link {
  position: absolute;
  top: 1.5rem;
  background: #fff;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  color: #0c96e1;
  border: 1px solid #0c96e1;
}

.dishes .box-container .box .bx-link:hover {
  background: #0c96e1;
  color: #fff;
}

.dishes .box-container .box .bx-link {
  right: -15rem;
}

.dishes .box-container .box:hover .bx-link {
  right: 1.5rem;
}

.dishes .box-container .box img {
  height: 10rem;
  margin: 1rem 0;
}

.dishes .box-container .box h3 {
  color: #0c96e1;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.dishes .box-container .box span {
  color: #121424;
  font-weight: bolder;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.contact {
  background-color: #0c0c0d;
  padding: 9%;
}

.contact-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.contact-card {
  width: 500px;
  padding: 1rem;
  background-color: #0b121e;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.contact-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card-title,
.contact-card-data {
  font-size: 1.2rem;
}

.contact-card-title {
  font-family: "Roboto", sans-serif;
}

.contact-card-data {
  font-family: "Raleway", sans-serif;
  display: block;
  margin-bottom: 10px;
  color: #ededed;
}

.contact-button {
  color: #0c96e1;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  cursor: pointer;
}

.contact-button-icon {
  font-size: 1rem;
  transition: 0.3s;
}

.contact-button a {
  color: #077fff;
}

.contact-button a:visited {
  color: #0c96e1;
}

.contact-button:hover .contact-button-icon {
  transform: translateX(0.25rem);
}

iframe {
  width: 600px;
  height: 450px;
}

.main-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 8px 10px;
  width: 100%;
}

.main-box .input-box {
  width: calc(50% - 15px);
  height: 50px;
  border-bottom: 2px solid #0c96e1;
  margin: 15px 5px;
  position: relative;
  color: #fff;
}

.input-box input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  padding-right: 38px;
  color: #0c96e1;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600px;
  pointer-events: none;
  transition: 0.5s ease;
  font-family: var(--poppins);
}

.input-box .icon {
  position: absolute;
  top: 13px;
  right: 0;
  font-size: 19px;
  color: #0c96e1;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;
  background-color: #0b121e;
}

.footer-text p {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: #0c96e1;
}

.footer-iconTop a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background-color: #0c96e1;
  color: #ededed;
  border: 2px solid #0c96e1;
  border-radius: 0.3rem;
  z-index: 1;
  overflow: hidden;
}
.footer-iconTop a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0c0c0d;
  z-index: -1;
  transition: 0.5s;
}
.footer-iconTop a i {
  font-size: 1.4rem;
}

.footer-iconTop a:hover::before {
  width: 100%;
}

.animate {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c0d;
  z-index: 98;
}

.logo .animate,
.navbar .animate,
#menu-icon .animate {
  animation: showRight 1s ease forwards;
  animation-delay: calc(0.3s * var(--i));
}

@media (max-width: 1200px) {
  html {
    font-size: 80%;
  }
  .home-content {
    max-width: 50rem;
    z-index: 99;
  }
  .home-content h1 {
    font-size: 2.5rem;
  }
  .home-img {
    top: 170px;
    right: 4px;
  }
  .work-container {
    grid-template-columns: repeat(2, 330px);
    gap: 3rem;
  }
  .contact-container {
    grid-template-columns: 930px;
    row-gap: 3rem;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 2rem 4%;
  }
  .home-content {
    max-width: 40rem;
    z-index: 99;
  }
  .home-content h1 {
    font-size: 2.5rem;
  }
  .home-img {
    width: 40%;
  }
  .section {
    padding: 10rem 4% 2rem;
  }
  .content-about .content .info-intereses .content-intereses .intereses {
    width: 150px;
    height: 150px;
  }
  .work-card {
    padding: 1rem;
  }
  .work-img {
    margin-bottom: 1rem;
    height: 300px;
  }
  .work-title {
    margin-bottom: 1rem;
  }
  .portfolio-popup-inner {
    width: 650px;
    margin-left: -100px;
  }
  .contact-container {
    flex-direction: column;
  }
  .footer {
    padding: 2rem 4%;
  }
}
@media (max-width: 820px) {
  .header {
    background-color: #0c0c0d;
    height: 60px;
  }
  .header img {
    width: 50px;
    display: flex;
    align-items: center;
  }
  .home-content {
    max-width: 80rem;
    z-index: 99;
  }
  .home-content h1 {
    font-size: 3rem;
    text-align: center;
  }
  .home-content p {
    text-align: center;
    font-size: 1.5rem;
  }
  .home-social {
    width: 80%;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .home-img {
    display: none;
  }
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    padding: 1rem 4%;
    background-color: #0c0c0d;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: 0.25s ease;
    transition-delay: 0.25s;
    z-index: 1;
  }
  .navbar.active {
    transition-delay: 0s;
    left: 0;
  }
  .navbar .active-nav {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0b121e;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    z-index: -1;
    transition: 0.25s ease;
    transition-delay: 0s;
  }
  .navbar.active .active-nav {
    left: 0;
    transition: 0.25s ease;
  }
  .navbar a {
    display: block;
    font-size: 1rem;
    margin: 2rem 0;
    transform: translateX(-20rem);
    transition: 0.25s ease;
    transition-delay: 0s;
  }
  .navbar.active a {
    transform: translateX(0);
    transition-delay: 0.25s;
  }
  .btn-box {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .content-about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content-about .content .info-personal {
    width: 100%;
  }
  .content-about .content .info-intereses {
    width: 100%;
  }
  .content-about .content .info-intereses .content-intereses .intereses {
    width: 150px;
    height: 150px;
  }
  .skills-content {
    width: 100%;
  }
  .curriculum {
    padding: 0 19%;
  }
  .curriculum .content-curriculum {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row {
    flex-direction: column;
  }
  .curriculum .content-curriculum .content-row .content-col {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item span {
    font-size: 2rem;
  }
  .curriculum .content-curriculum .content-row .content-col .item .conectord, .curriculum .content-curriculum .content-row .content-col .item .conectori {
    display: none;
  }
  .curriculum .content-curriculum .content-row .education {
    border-right: none;
  }
  .curriculum .content-curriculum .content-row .educationContinua {
    border-left: none;
  }
  .portfolio-popup-inner {
    width: 550px;
    margin-left: -100px;
  }
  .contact-container {
    grid-template-columns: 530px;
    row-gap: 3rem;
  }
  iframe {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header {
    background-color: #0c0c0d;
  }
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    padding: 1rem 4%;
    background-color: #0c0c0d;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: 0.25s ease;
    transition-delay: 0.25s;
    z-index: 1;
  }
  .navbar.active {
    transition-delay: 0s;
    left: 0;
  }
  .navbar .active-nav {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0b121e;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    z-index: -1;
    transition: 0.25s ease;
    transition-delay: 0s;
  }
  .navbar.active .active-nav {
    left: 0;
    transition: 0.25s ease;
  }
  .navbar a {
    display: block;
    font-size: 1rem;
    margin: 2rem 0;
    transform: translateX(-20rem);
    transition: 0.25s ease;
    transition-delay: 0s;
  }
  .navbar.active a {
    transform: translateX(0);
    transition-delay: 0.25s;
  }
  .home-content {
    max-width: 80rem;
    z-index: 99;
    padding-top: 20px;
  }
  .home-content h1 {
    font-size: 3rem;
    text-align: center;
  }
  .home-content p {
    text-align: center;
    font-size: 1.5rem;
  }
  .home-social {
    width: 80%;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .home-img {
    display: none;
  }
  .btn-box a {
    margin-bottom: 30px;
  }
  .content-about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content-about .content .info-personal {
    width: 100%;
  }
  .content-about .content .info-intereses {
    width: 100%;
  }
  .content-about .content .info-intereses .content-intereses .intereses {
    width: 150px;
    height: 150px;
  }
  .skills-content {
    width: 100%;
  }
  .curriculum {
    padding: 0 19%;
  }
  .curriculum .content-curriculum {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row {
    flex-direction: column;
  }
  .curriculum .content-curriculum .content-row .content-col {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item span {
    font-size: 2rem;
  }
  .curriculum .content-curriculum .content-row .content-col .item .conectord, .curriculum .content-curriculum .content-row .content-col .item .conectori {
    display: none;
  }
  .curriculum .content-curriculum .content-row .education {
    border-right: none;
  }
  .curriculum .content-curriculum .content-row .educationContinua {
    border-left: none;
  }
  .portfolio-popup-inner {
    width: 550px;
    margin-left: -100px;
  }
  .contact-container {
    grid-template-columns: 530px;
    row-gap: 3rem;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 60%;
  }
  .home {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .home-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-top: 60px;
  }
  .home-content h1 {
    display: flex;
    flex-direction: column;
    font-size: 2.8rem;
  }
  .home-content p {
    font-size: 1.8rem;
  }
  .home-content .btn-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3rem;
  }
  .home-content .btn-box .btn {
    width: 20rem;
    height: 80%;
    margin-right: 0px;
    font-size: 1.8rem;
    color: #fff;
  }
  .home-social {
    width: 80%;
  }
  .home-social a {
    width: 30px;
    height: 30px;
  }
  .home-content {
    max-width: 80rem;
    z-index: 99;
  }
  .home-content h1 {
    font-size: 2.5rem;
  }
  .home-img {
    display: none;
  }
  .about {
    padding: 0 3%;
  }
  .about .content-about p {
    text-align: center;
  }
  .about .content-about .content {
    display: flex;
    flex-direction: column;
  }
  .about .content-about .content .info-personal, .about .content-about .content .info-intereses {
    width: 100%;
    font-family: "Raleway", sans-serif;
  }
  .about .content-about .content .info-personal h3, .about .content-about .content .info-intereses h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  .about .content-about .content .info-personal ul, .about .content-about .content .info-intereses ul {
    list-style: none;
  }
  .about .content-about .content .info-personal ul li, .about .content-about .content .info-intereses ul li {
    margin: 12px 10px;
    font-size: 1.5rem;
  }
  .about .content-about .content .info-personal ul li b, .about .content-about .content .info-intereses ul li b {
    width: 250px;
    font-size: 1.5rem;
  }
  .about .content-about .content .info-personal .content-intereses, .about .content-about .content .info-intereses .content-intereses {
    display: flex;
    flex-wrap: wrap;
  }
  .about .content-about .content .info-personal .content-intereses .intereses, .about .content-about .content .info-intereses .content-intereses .intereses {
    width: 100px;
    height: 100px;
  }
  .info-personal, .info-intereses {
    width: 100%;
  }
  .skills-bar,
  .skills-percentage {
    width: 400px;
  }
  .curriculum {
    padding: 0;
  }
  .curriculum .content-row {
    width: 100%;
  }
  .curriculum .content-row .content-col {
    width: 100%;
  }
  .curriculum .content-row .content-col .title {
    font-size: 2rem;
  }
  .curriculum .content-row .content-col .item {
    width: 100%;
  }
  .curriculum .content-row .content-col .item span {
    font-size: 1.5rem;
  }
  .work-container {
    grid-template-columns: 330px;
    row-gap: 3rem;
  }
  .work-container .work-button {
    font-size: 1.5rem;
  }
  .contact-container {
    grid-template-columns: 330px;
    row-gap: 3rem;
  }
  .portfolio-popup-inner {
    width: 100%;
    margin: 10px;
    background-color: #0c0c0d;
  }
  .portfolio-popup-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .portfolio-popup-close {
    font-size: 3.5rem;
  }
  .portfolio-popup-img {
    width: 360px;
    margin: 0 20px;
  }
  .portfolio-popup-subtitle {
    font-size: 1.5rem;
  }
  .details-title {
    font-size: 2rem;
  }
  .details-description {
    width: auto;
    font-size: 1.5rem;
  }
  .details-info {
    list-style: none;
  }
  .details-info li {
    font-size: 1.2rem;
  }
  .main-box {
    display: flex;
    flex-direction: column;
  }
  .main-box .input-box {
    width: 100%;
  }
  .input-area textarea {
    margin-left: 5px;
  }
}
@media (max-width: 462px) {
  .content-intereses {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content-intereses .intereses {
    display: none;
  }
  .home-social {
    display: none;
  }
  .skills {
    padding: 0;
  }
  .skills-header {
    width: 400px;
  }
  .skills-list {
    padding: 40px;
  }
  .skills-bar,
  .skills-percentage {
    width: 380px;
  }
  .curriculum {
    padding: 0 19%;
  }
  .curriculum .content-curriculum {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row {
    flex-direction: column;
  }
  .curriculum .content-curriculum .content-row .content-col {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item {
    width: 100%;
  }
  .curriculum .content-curriculum .content-row .content-col .item span {
    font-size: 2rem;
  }
  .curriculum .content-curriculum .content-row .content-col .item .conectord, .curriculum .content-curriculum .content-row .content-col .item .conectori {
    display: none;
  }
  .curriculum .content-curriculum .content-row .education {
    border-right: none;
  }
  .curriculum .content-curriculum .content-row .educationContinua {
    border-left: none;
  }
  .portfolio-popup-img {
    width: 300px;
    margin: 0 10px 10px 10px;
  }
  .dishes .box-container .box img {
    height: auto;
    width: 100%;
  }
  .contact-card {
    width: 300px;
  }
}
@media (max-width: 414px) {
  .home-content .btn-box {
    display: block;
  }
  .home-content .btn-box .btn {
    margin-bottom: 10px;
  }
  .home-social {
    display: none;
  }
  .skills {
    padding: 0;
  }
  .skills-header {
    width: 350px;
  }
  .skills-list {
    padding: 5px;
  }
  .skills-bar,
  .skills-percentage {
    width: 350px;
  }
}
@keyframes homeBgTexto {
  0%, 10%, 100% {
    background-position: -33rem 0;
  }
  65%, 85% {
    background-position: 0 0;
  }
}
@keyframes homeCursorTexto {
  0%, 10%, 100% {
    width: 0;
  }
  65%, 78%, 85% {
    width: 100%;
    opacity: 1;
  }
  75%, 81% {
    opacity: 0;
  }
}
@keyframes showRight {
  100% {
    width: 0;
  }
}/*# sourceMappingURL=style.css.map */