body.menu-open .logo {
  z-index: 1000;
  position: relative;
}
body.menu-open .logo svg {
  width: 200px;
}
body.menu-open .logo svg .grey-fill {
  fill: #B6B7B7;
}
body.menu-open .logo svg .black-fill {
  fill: white;
}
.logo svg .grey-fill {
  fill: #B6B7B7;
}
.logo svg .black-fill {
  fill: #1E1E1E;
}
.header-container.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0px;
  background-color: white;
  box-shadow: 0px 11px 15px -3px #00000014;
}
@media only screen and (max-width: 430px) {
  .header-container.fixed {
    width: 100%;
    padding: 15px;
  }
}
.header-container.fixed .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.header-container {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: background-color 0s ease-in, box-shadow 0.4s ease-in;
}
@media only screen and (max-width: 430px) {
  .header-container {
    padding: 30px 15px;
  }
}
.header-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-container .menu-container {
  position: relative;
  /* Estado inicial (sin transformaciones) */
  /* Estado activo (cuando el JS agrega la clase 'active') */
}
.header-container .menu-container .menu-icon {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  border: 2px solid #1E1E1E;
  padding: 14px 20px;
  border-radius: 25px;
  transition: 0.4s all ease;
}
.header-container .menu-container .menu-icon:hover {
  background-color: #1E1E1E;
}
.header-container .menu-container .menu-icon:hover .bar {
  background-color: white;
}
.header-container .menu-container .menu-icon .bar {
  background-color: #1E1E1E;
  border-radius: 3px;
  display: block;
  height: 2px;
  margin: 3px;
  position: relative;
  width: 19px;
  transition: opacity 0.2s, transform 0.2s;
  transition: 0.4s all ease;
}
.header-container .menu-container .menu-icon .bar + .bar {
  margin-top: 4px;
}
.header-container .menu-container .menu-icon .bar {
  top: 0;
  bottom: 0;
  opacity: 1;
  transform: none;
}
.header-container .menu-container .menu-icon.active {
  border: 2px solid #fff;
}
.header-container .menu-container .menu-icon.active .bar {
  background-color: #fff;
}
.header-container .menu-container .menu-icon.active .bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.header-container .menu-container .menu-icon.active .bar:nth-child(2) {
  opacity: 0;
}
.header-container .menu-container .menu-icon.active .bar:nth-child(3) {
  top: -6px;
  transform: rotate(-45deg);
}
.header-container .menu-container .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1E1E1E;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-container .menu-container .menu.open {
  transform: translateX(0);
}
.header-container .menu-container .menu .menu-centered {
  list-style: none;
  padding: 40px;
  text-align: left;
  width: 100vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered {
    width: 93vw;
  }
}
@media only screen and (max-width: 430px) {
  .header-container .menu-container .menu .menu-centered {
    padding: 15px;
    width: 93vw;
  }
}
.header-container .menu-container .menu .menu-centered ul {
  width: auto;
  display: flex;
  flex-direction: column;
  padding: 80px 0 0 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered ul {
    padding: 60px 0 0 0;
    gap: 30px;
  }
}
.header-container .menu-container .menu .menu-centered ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-container .menu-container .menu .menu-centered ul li:nth-child(1) {
  border-top: 1px solid white;
  padding: 30px 0 0 0;
}
.header-container .menu-container .menu .menu-centered ul li:nth-child(3) {
  border-bottom: 1px solid white;
  padding: 0 0 30px 0;
}
.header-container .menu-container .menu .menu-centered ul a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.header-container .menu-container .menu .menu-centered ul a:hover span,
.header-container .menu-container .menu .menu-centered ul a:focus span,
.header-container .menu-container .menu .menu-centered ul a:active span {
  font-style: oblique;
  font-weight: 900;
}
.header-container .menu-container .menu .menu-centered ul a:hover .arrow,
.header-container .menu-container .menu .menu-centered ul a:focus .arrow,
.header-container .menu-container .menu .menu-centered ul a:active .arrow {
  border: 2px solid #1E1E1E;
  background-color: white;
  transition: all 0.3s ease-in;
}
.header-container .menu-container .menu .menu-centered ul a:hover .arrow svg path,
.header-container .menu-container .menu .menu-centered ul a:focus .arrow svg path,
.header-container .menu-container .menu .menu-centered ul a:active .arrow svg path {
  stroke: #1E1E1E !important;
}
.header-container .menu-container .menu .menu-centered ul a span {
  color: white;
  text-decoration: none;
  font-size: 10rem;
  text-transform: uppercase;
  font-style: normal;
  transition: font-style 0.1s ease-in, font-weight 0.1s ease-in;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered ul a span {
    font-size: 6rem;
  }
}
@media only screen and (max-width: 430px) {
  .header-container .menu-container .menu .menu-centered ul a span {
    font-size: 2.5rem;
  }
}
.header-container .menu-container .menu .menu-centered ul .arrow {
  display: flex;
  align-items: center;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 35px;
}
.header-container .menu-container .menu .menu-centered ul .arrow svg path {
  stroke: white;
}
.header-container .menu-container .menu .menu-centered .twins {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered .twins {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 430px) {
  .header-container .menu-container .menu .menu-centered .twins {
    flex-direction: column;
  }
}
.header-container .menu-container .menu .menu-centered .twins .rrss.email {
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered .twins .rrss.email {
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.header-container .menu-container .menu .menu-centered .twins .rrss.email .email {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header-container .menu-container .menu .menu-centered .twins .rrss.email .email a {
  font-size: 1.5rem;
  text-transform: lowercase;
  font-weight: 300;
  margin-right: 10px;
}
.header-container .menu-container .menu .menu-centered .twins .rrss.email .email a:hover,
.header-container .menu-container .menu .menu-centered .twins .rrss.email .email a:focus,
.header-container .menu-container .menu .menu-centered .twins .rrss.email .email a:active {
  font-style: oblique;
}
.header-container .menu-container .menu .menu-centered .twins .rrss {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 50%;
  padding: 0 0 0 0;
}
@media only screen and (max-width: 430px) {
  .header-container .menu-container .menu .menu-centered .twins .rrss {
    width: 100%;
    margin: 20px 0;
  }
}
.header-container .menu-container .menu .menu-centered .twins .rrss .followme {
  font-weight: 800;
  font-size: 1.5rem;
  color: #8F9090;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul {
  width: 100%;
  flex-direction: row;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered .twins .rrss ul {
    flex-direction: column;
    gap: 20px;
  }
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .header-container .menu-container .menu .menu-centered .twins .rrss ul li {
    justify-content: flex-start;
  }
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li:nth-child(1) {
  border-top: none;
  padding: 0 0 0 0;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li:nth-child(3) {
  border-bottom: none;
  padding: 0 0 0 0;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a span {
  color: white;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:hover span,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:focus span,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:active span {
  font-style: oblique;
  background-color: none;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:hover .arrow,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:focus .arrow,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:active .arrow {
  border: 0;
  background-color: transparent!important;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:hover .arrow svg path,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:focus .arrow svg path,
.header-container .menu-container .menu .menu-centered .twins .rrss ul li a:active .arrow svg path {
  stroke: white;
}
.header-container .menu-container .menu .menu-centered .twins .rrss ul li .arrow {
  display: flex;
  align-items: center;
  border: none;
  padding: 5px 13px;
  border-radius: 0;
}
.header-container .menu-container .menu .menu-centered .twins .rrss a {
  color: white;
  text-decoration: none;
  font-size: 3.5rem;
  text-transform: uppercase;
  transition: font-style 0.1s ease-in;
  font-weight: 300;
}
.header-container .menu-container .menu .menu-centered .twins .rrss a:hover,
.header-container .menu-container .menu .menu-centered .twins .rrss a:focus,
.header-container .menu-container .menu .menu-centered .twins .rrss a:active {
  font-style: oblique;
}
.header-container .menu-container .menu .menu-centered .twins .rrss a:hover .arrow,
.header-container .menu-container .menu .menu-centered .twins .rrss a:focus .arrow,
.header-container .menu-container .menu .menu-centered .twins .rrss a:active .arrow {
  border: 0;
  background-color: transparent!important;
}
.header-container .menu-container .menu .menu-centered .twins .rrss a:hover .arrow svg path,
.header-container .menu-container .menu .menu-centered .twins .rrss a:focus .arrow svg path,
.header-container .menu-container .menu .menu-centered .twins .rrss a:active .arrow svg path {
  stroke: white;
}
footer {
  background: #1E1E1E;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 430px) {
  footer {
    flex-direction: column;
    gap: 20px;
  }
}
footer p {
  color: white;
  font-size: 1.2rem;
}
footer .links {
  width: 30%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  footer .links {
    width: 50%;
  }
}
@media only screen and (max-width: 430px) {
  footer .links {
    width: 100%;
  }
}
footer .links a {
  display: flex;
  align-items: center;
}
footer .links a span {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin-right: 5px;
  text-transform: uppercase;
}
footer .links a span:hover {
  font-style: oblique;
}
main.home {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding: 40px;
}
@media only screen and (max-width: 430px) {
  main.home {
    padding: 20px 15px;
    gap: 5rem;
  }
}
main.home .container {
  gap: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (max-width: 430px) {
  main.home .container {
    gap: 30px;
  }
}
main.home .container .hero span {
  font-size: 2rem;
  font-weight: 300;
}
main.home .container .hero h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.1;
  padding-top: 20px;
}
@media only screen and (max-width: 1440px) {
  main.home .container .hero h1 {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  main.home .container .hero h1 {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  main.home .container .hero h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 430px) {
  main.home .container .hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
main.home .container .hero h1 span {
  color: #b6b7b7;
  font-size: 7rem;
  font-weight: 800;
}
@media only screen and (max-width: 1440px) {
  main.home .container .hero h1 span {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  main.home .container .hero h1 span {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  main.home .container .hero h1 span {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 430px) {
  main.home .container .hero h1 span {
    font-size: 2.8rem;
  }
}
main.home .container .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 430px) {
  main.home .container .group {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
  }
}
main.home .container .group .button-talk {
  background-color: #1E1E1E;
  border-radius: 40px;
  border: 1px solid #1E1E1E;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  gap: 20px;
}
main.home .container .group .button-talk span {
  color: white;
  font-weight: 200;
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  main.home .container .group .button-talk span {
    font-size: 1.5rem;
  }
}
main.home .container .group .button-talk svg path {
  stroke: white;
}
main.home .container .group .text {
  font-size: 3rem;
  font-weight: 200;
  width: 40%;
  min-width: min-content;
}
@media only screen and (max-width: 1200px) {
  main.home .container .group .text p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1200px) {
  main.home .container .group .text {
    width: 55%;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 430px) {
  main.home .container .group .text {
    width: 100%;
  }
}
main.home .container-works .group-works {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.home .container-works .group-works h2 {
  font-size: 2rem;
  font-weight: 800;
}
main.home .container-works .group-works a {
  text-decoration: none;
}
main.home .container-works .group-works a .button-works {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: white;
  border-radius: 40px;
  border: 2px solid #1E1E1E;
}
main.home .container-works .group-works a .button-works svg path {
  stroke: #1E1E1E;
}
main.home .container-works .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}
@media only screen and (max-width: 430px) {
  main.home .container-works .row {
    flex-direction: column;
  }
}
main.home .container-works .row .card {
  width: 50%;
  transition: transform 0.2s ease-out;
}
@media only screen and (max-width: 430px) {
  main.home .container-works .row .card {
    width: 100%;
  }
}
main.home .container-works .row .card a {
  text-decoration: none;
}
main.home .container-works .row .card a .background {
  background-color: #EBEBEB;
  overflow: hidden;
  max-height: 490px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
main.home .container-works .row .card a .background img {
  width: 100%;
}
main.home .container-works .row .card a .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
main.home .container-works .row .card a .group .texts .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
main.home .container-works .row .card a .group .texts .subtitle {
  font-size: 1.5rem;
  font-weight: 200;
}
main.home .container-works .row .card a .group span {
  padding: 10px 20px;
  background-color: white;
  border-radius: 40px;
  border: 2px solid #1E1E1E;
}
main.home .container-works .row .card a .group span svg path {
  stroke: #1E1E1E;
}
main.home .uxui {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
main.home .uxui .left {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  main.home .uxui .left {
    width: 100%;
  }
}
main.home .uxui .left .title {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1.1;
}
@media only screen and (max-width: 1440px) {
  main.home .uxui .left .title {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  main.home .uxui .left .title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 430px) {
  main.home .uxui .left .title {
    font-size: 2.9rem;
  }
}
main.home .uxui .left .subtitle {
  font-size: 1.5rem;
  font-weight: 200;
  min-width: min-content;
  width: 75%;
}
@media only screen and (max-width: 1024px) {
  main.home .uxui .left .subtitle {
    width: 100%;
  }
}
main.home .uxui .left a {
  text-decoration: none;
}
main.home .uxui .left a .button-aboutme {
  border-radius: 40px;
  border: 2px solid #1E1E1E;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  gap: 20px;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 1.5rem;
}
main.home .uxui .left a .button-aboutme span svg path {
  stroke: #1E1E1E;
}
main.home .uxui .left .conjunto {
  display: flex;
  align-items: flex-end;
}
main.home .uxui .left .conjunto .right-mobile {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  main.home .uxui .left .conjunto .right-mobile {
    display: block;
  }
}
main.home .uxui .left .conjunto .right-mobile ul {
  list-style: none;
}
main.home .uxui .left .conjunto .right-mobile ul li {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 100;
}
main.home .uxui .right {
  width: 20%;
}
@media only screen and (max-width: 1024px) {
  main.home .uxui .right {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  main.home .uxui .right {
    display: none;
  }
}
main.home .uxui .right ul {
  list-style: none;
}
main.home .uxui .right ul li {
  text-align: right;
  font-size: 2.5rem;
  font-weight: 100;
}
@media only screen and (max-width: 1024px) {
  main.home .uxui .right ul li {
    font-size: 2rem;
  }
}
main.home .reviews {
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
main.home .reviews .review-box {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 200;
  min-height: 126px;
}
@media only screen and (max-width: 1024px) {
  main.home .reviews .review-box {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  main.home .reviews .review-box {
    max-width: 100%;
    text-align: left;
    min-height: 210px;
  }
}
@media only screen and (max-width: 430px) {
  main.home .reviews .review-box {
    font-size: 1.5rem;
  }
}
main.home .reviews .names {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
@media only screen and (max-width: 430px) {
  main.home .reviews .names {
    gap: 1rem;
  }
}
main.home .reviews .names .name {
  display: flex;
  flex-direction: column;
  color: #8F9090;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
main.home .reviews .names .name span {
  color: #8F9090;
  font-size: 1.2rem;
  font-weight: 200;
}
main.home .reviews .names .name.selected {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1E1E1E;
}
main.home .reviews .names .name.selected span {
  color: #1E1E1E;
  font-size: 1.2rem;
  font-weight: 200;
}
.about {
  padding: 0 40px 40px 40px;
  gap: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  .about {
    padding: 10px 40px 30px 40px;
    gap: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .about {
    padding: 10px 15px 30px 15px;
    gap: 30px;
  }
}
.about .container {
  gap: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (max-width: 430px) {
  .about .container {
    gap: 30px;
  }
}
.about .container .hero span {
  font-size: 2rem;
  font-weight: 300;
}
.about .container .hero h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.1;
  padding-top: 20px;
}
@media only screen and (max-width: 1440px) {
  .about .container .hero h1 {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .about .container .hero h1 {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .about .container .hero h1 {
    font-size: 3.5rem;
    padding-top: 0px;
  }
}
@media only screen and (max-width: 430px) {
  .about .container .hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    padding-top: 0px;
  }
}
.about .container .hero h1 span {
  color: #b6b7b7;
  font-size: 7rem;
  font-weight: 800;
}
@media only screen and (max-width: 1440px) {
  .about .container .hero h1 span {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .about .container .hero h1 span {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .about .container .hero h1 span {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 430px) {
  .about .container .hero h1 span {
    font-size: 2.8rem;
  }
}
.about .container-aboutme .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .about .container-aboutme .row {
    flex-direction: column-reverse;
  }
}
.about .container-aboutme .row .left {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .about .container-aboutme .row .left {
    width: 100%;
    padding: 20px;
  }
}
.about .container-aboutme .row .left img {
  width: 100%;
}
.about .container-aboutme .row .right {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .about .container-aboutme .row .right {
    width: 100%;
    padding: 20px;
  }
}
.about .container-aboutme .row .right .text {
  width: 71%;
  margin: 0 auto;
  color: #1E1E1E;
  font-size: 1.5rem;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .about .container-aboutme .row .right .text {
    width: 100%;
  }
}
.about .container-aboutme .row .right .text strong {
  font-size: 1.5rem;
  font-weight: 600;
}
.about .experience .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .about .experience .row {
    flex-direction: column;
  }
}
.about .experience .row .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .about .experience .row .left {
    width: 100%;
  }
}
.about .experience .row .left .title {
  font-size: 2rem;
  font-weight: 800;
}
.about .experience .row .left a {
  text-decoration: none;
  border: 2px solid #1E1E1E;
  border-radius: 35px;
  color: #1E1E1E;
  font-size: 1.6rem;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .about .experience .row .left a {
    display: none;
  }
}
.about .experience .row .left a svg path {
  stroke: #1E1E1E;
}
.about .experience .row .left a:hover,
.about .experience .row .left a:focus,
.about .experience .row .left a:active {
  color: white;
  border: 2px solid #1E1E1E;
  background-color: #1E1E1E;
}
.about .experience .row .left a:hover svg path,
.about .experience .row .left a:focus svg path,
.about .experience .row .left a:active svg path {
  stroke: white!important;
}
.about .experience .row .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .about .experience .row .right {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .about .experience .row .right {
    width: 100%;
    align-items: flex-start;
  }
}
.about .experience .row .right .site {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .about .experience .row .right .site {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about .experience .row .right .site .left {
  width: auto;
}
.about .experience .row .right .site .left .title strong {
  font-size: 1.7rem;
  font-weight: 500;
}
.about .experience .row .right .site .left .bussines {
  font-size: 1.5rem;
  font-weight: 200;
}
.about .experience .row .right .site .right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
}
.about .experience .row .right .site .right .year {
  font-size: 1.5rem;
  font-weight: 100;
}
.about .experience .row .right a {
  display: none;
  text-decoration: none;
  border: 2px solid #1E1E1E;
  border-radius: 35px;
  color: #1E1E1E;
  font-size: 1.6rem;
  padding: 12px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .about .experience .row .right a {
    display: flex;
    font-size: 1.5rem;
  }
}
.about .experience .row .right a svg path {
  stroke: #1E1E1E;
}
.about .experience .row .right a:hover,
.about .experience .row .right a:focus,
.about .experience .row .right a:active {
  color: white;
  border: 2px solid #1E1E1E;
  background-color: #1E1E1E;
}
.about .experience .row .right a:hover svg path,
.about .experience .row .right a:focus svg path,
.about .experience .row .right a:active svg path {
  stroke: white!important;
}
.about .education .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .about .education .row {
    flex-direction: column;
  }
}
.about .education .row .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .about .education .row .left {
    width: 100%;
  }
}
.about .education .row .left .title {
  font-size: 2rem;
  font-weight: 800;
}
.about .education .row .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .about .education .row .right {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .about .education .row .right {
    width: 100%;
    align-items: flex-start;
  }
}
.about .education .row .right .site {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.about .education .row .right .site .title strong {
  font-size: 1.7rem;
  font-weight: 500;
}
.about .education .row .right .site .year {
  font-size: 1.5rem;
  font-weight: 100;
  margin-bottom: 15px;
}
.about .education .row .right .site .school {
  font-size: 1.5rem;
  font-weight: 200;
}
.about .skills .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .about .skills .row {
    flex-direction: column;
  }
}
.about .skills .row .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .about .skills .row .left {
    width: 100%;
  }
}
.about .skills .row .left .title {
  font-size: 2rem;
  font-weight: 800;
}
.about .skills .row .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .about .skills .row .right {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .about .skills .row .right {
    width: 100%;
    align-items: flex-start;
  }
}
.about .skills .row .right .site {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.about .skills .row .right .site .title {
  margin-bottom: 10px;
}
.about .skills .row .right .site .title strong {
  font-size: 1.7rem;
  font-weight: 500;
}
.about .skills .row .right .site .skill {
  font-size: 1.5rem;
  font-weight: 200;
}
.hitmeup {
  background-color: #e4e4e4;
  padding: 10rem 40px;
}
@media only screen and (max-width: 768px) {
  .hitmeup {
    padding: 5rem 40px;
  }
}
@media only screen and (max-width: 430px) {
  .hitmeup {
    padding: 5rem 15px;
  }
}
.hitmeup .centered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  gap: 13rem;
}
@media only screen and (max-width: 768px) {
  .hitmeup .centered {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    align-items: flex-start;
  }
}
.hitmeup .centered .left {
  width: auto;
  max-width: 60%;
}
@media only screen and (max-width: 768px) {
  .hitmeup .centered .left {
    max-width: 100%;
  }
}
.hitmeup .centered .left .title {
  color: #1E1E1E;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hitmeup .centered .left .subtitle {
  color: #1E1E1E;
  font-size: 1.5rem;
  font-weight: 300;
}
.hitmeup .centered .right {
  width: auto;
}
.hitmeup .centered .right a {
  background-color: #1E1E1E;
  color: white;
  border-radius: 25px;
  padding: 13px 25px;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  width: fit-content;
}
.hitmeup .centered .right a svg path {
  stroke: white;
}
.project-list {
  padding: 0 40px 40px 40px;
}
@media only screen and (max-width: 768px) {
  .project-list {
    padding: 10px 40px 30px 40px;
  }
}
@media only screen and (max-width: 430px) {
  .project-list {
    padding: 10px 15px 30px 15px;
  }
}
.project-list h1 {
  font-size: 9rem;
  line-height: 1;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1200px) {
  .project-list h1 {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 768px) {
  .project-list h1 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 430px) {
  .project-list h1 {
    font-size: 2.8rem;
  }
}
.project-list h1 span {
  font-size: inherit;
  color: #b6b7b7;
}
.project-list .projects-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 2rem;
  justify-content: space-between;
  margin: 0;
}
.project-list .projects-grid .project-item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  cursor: default;
}
.project-list .projects-grid .project-item:nth-child(4n + 1) {
  width: 60%;
}
@media only screen and (max-width: 1200px) {
  .project-list .projects-grid .project-item:nth-child(4n + 1) {
    width: 48%;
  }
}
@media only screen and (max-width: 430px) {
  .project-list .projects-grid .project-item:nth-child(4n + 1) {
    width: 100%;
  }
}
.project-list .projects-grid .project-item:nth-child(4n + 2) {
  width: 38%;
}
@media only screen and (max-width: 1200px) {
  .project-list .projects-grid .project-item:nth-child(4n + 2) {
    width: 48%;
  }
}
@media only screen and (max-width: 430px) {
  .project-list .projects-grid .project-item:nth-child(4n + 2) {
    width: 100%;
  }
}
.project-list .projects-grid .project-item:nth-child(4n + 3) {
  width: 38%;
}
@media only screen and (max-width: 1200px) {
  .project-list .projects-grid .project-item:nth-child(4n + 3) {
    width: 48%;
  }
}
@media only screen and (max-width: 430px) {
  .project-list .projects-grid .project-item:nth-child(4n + 3) {
    width: 100%;
  }
}
.project-list .projects-grid .project-item:nth-child(4n + 4) {
  width: 60%;
}
@media only screen and (max-width: 1200px) {
  .project-list .projects-grid .project-item:nth-child(4n + 4) {
    width: 48%;
  }
}
@media only screen and (max-width: 430px) {
  .project-list .projects-grid .project-item:nth-child(4n + 4) {
    width: 100%;
  }
}
.project-list .projects-grid .project-item .box-image {
  background-color: #EBEBEB;
  border-radius: 25px;
  height: 500px;
  overflow: hidden;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 430px) {
  .project-list .projects-grid .project-item .box-image {
    height: 250px;
  }
}
.project-list .projects-grid .project-item .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
.project-list .projects-grid .project-item .box .project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-list .projects-grid .project-item .box .project-content .title {
  color: #1E1E1E;
  font-size: 1.8rem;
  font-weight: 700;
}
.project-list .projects-grid .project-item .box .project-content .type {
  color: #1E1E1E;
  font-size: 1.5rem;
  font-weight: 200;
}
.project-list .projects-grid .project-item .box a {
  text-decoration: none;
  border: 2px solid #1E1E1E;
  border-radius: 35px;
  color: #1E1E1E;
  font-size: 1.6rem;
  padding: 3px 15px;
}
.project-list .projects-grid .project-item .box a svg path {
  stroke: #1E1E1E;
}
.project-list .projects-grid .project-item .box a:hover,
.project-list .projects-grid .project-item .box a:focus,
.project-list .projects-grid .project-item .box a:active {
  color: white;
  border: 2px solid #1E1E1E;
  background-color: #1E1E1E;
}
.project-list .projects-grid .project-item .box a:hover svg path,
.project-list .projects-grid .project-item .box a:focus svg path,
.project-list .projects-grid .project-item .box a:active svg path {
  stroke: white;
}
.project-list button#ver-mas-btn {
  margin: 0 auto;
  display: flex;
  background-color: white;
  border: 2px solid black;
  padding: 10px 45px;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 400;
}
.project-list button#ver-mas-btn:hover,
.project-list button#ver-mas-btn:focus,
.project-list button#ver-mas-btn:active {
  color: white;
  border: 2px solid #1E1E1E;
  background-color: #1E1E1E;
}
@media (max-width: 768px) {
  .project-list .project-item {
    width: 100% !important;
    flex-direction: column;
  }
}
* {
  font-family: "Outfit", sans-serif;
  color: #1E1E1E;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}
header .menuheader {
  display: flex;
  gap: 40px;
  align-items: end;
}
@media only screen and (max-width: 430px) {
  header .menuheader {
    gap: 10px;
  }
}
header .menuheader a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}
header .menuheader a:hover .button-talk,
header .menuheader a:focus .button-talk,
header .menuheader a:active .button-talk {
  background-color: #1E1E1E;
  transition: all 0.3s ease-in;
}
header .menuheader a:hover span,
header .menuheader a:focus span,
header .menuheader a:active span {
  color: white!important;
}
header .menuheader a:hover svg path,
header .menuheader a:focus svg path,
header .menuheader a:active svg path {
  stroke: white!important;
}
header .menuheader a .button-talk {
  background-color: white;
  border-radius: 40px;
  border: 2px solid #1E1E1E;
  padding: 12px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  gap: 12px;
}
@media only screen and (max-width: 430px) {
  header .menuheader a .button-talk {
    display: none;
  }
}
header .menuheader a .button-talk span {
  color: #1E1E1E;
  font-weight: 300;
  font-size: 1.5rem;
}
header .menuheader a .button-talk svg path {
  stroke: #1E1E1E;
}
