/*=============== PROFILE ===============*/
.flex {
  margin-top: 2rem;
}

.flex .desktop-image {
  display: none;
}

.profile {
  position: relative;
  padding-top: 2rem;
}

.profile__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile__nav .profile__container {
  width: 100%;
}

.profile__nav ul {
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 4rem;
}

.profile__nav ul a {
  padding: 0.5rem 0.9rem;
  color: var(--title-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

.profile__nav ul a:hover {
  opacity: 0.8;
}

.profile__nav ul a.logo-link {
  padding: 0.5rem 0;
  display: block;
}

.profile .logo-link {
  min-width: 120px;
  margin-right: auto;
}

.profile .logo-link img {
  max-width: 120px;
}

.profile__container {
  row-gap: 2rem;
}

.profile__data {
  display: -ms-grid;
  display: grid;
  text-align: center;
}

.profile__perfil {
  width: 100px;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(hsla(var(--hue), var(--sat), var(--lig), 1)), to(hsla(var(--hue), var(--sat), var(--lig), 0.2)));
  background: linear-gradient(180deg, hsla(var(--hue), var(--sat), var(--lig), 1) 0%, hsla(var(--hue), var(--sat), var(--lig), 0.2) 100%);
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile__perfil img {
  width: 100%;
  -webkit-transform: translate(-1.3px, 22px) scale(0.9);
          transform: translate(-1.3px, 22px) scale(0.9);
}

.profile__border {
  border: 3.5px solid var(--first-color);
  -ms-grid-column-align: center;
      justify-self: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
}

.profile__name {
  font-size: var(--h2-font-size);
}

.profile__profession {
  font-size: var(--smaller-font-size);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.profile__hi {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.profile__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: .75rem;
          column-gap: .75rem;
}

.profile__social-link {
  font-size: 1.25rem;
  color: var(--title-color);
  -webkit-transition: .3s;
  transition: .3s;
}

.profile__social-link:hover {
  color: var(--first-color);
}

.profile__social:last-child i {
  margin-top: 0.2rem;
}

.profile__info {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.profile__info-group {
  text-align: center;
}

.profile__info-number {
  font-size: var(--normal-font-size);
  margin-bottom: .25rem;
}

.profile__info-description {
  font-size: var(--smaller-font-size);
  font-weight: 500;
}

.profile__buttons, .profile__buttons-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile__buttons {
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.profile__buttons-small {
  -webkit-column-gap: .25rem;
          column-gap: .25rem;
}

/*=============== BUTTONS ===============*/
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: .5rem;
          column-gap: .5rem;
  background-color: var(--first-color);
  color: #fff;
  padding: 1.15rem 1.5rem;
  border-radius: .5rem;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 8px 24px hsla(var(--hue), var(--sat), var(--lig), 0.25);
          box-shadow: 0 8px 24px hsla(var(--hue), var(--sat), var(--lig), 0.25);
  cursor: pointer;
}

.button i {
  font-size: 1.25rem;
}

.button i.bx.fast-btn {
  font-size: 1.45rem;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__small {
  padding: .75rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button__gray {
  background-color: var(--text-color-lighten);
  color: var(--title-color);
}

.button__gray:hover {
  background-color: var(--text-color-light);
}

/*=============== FILTERS TABS===============*/
.filters__content {
  margin: 2rem 0 2.5rem;
  background-color: var(--text-color-lighten);
  padding: .375rem;
  border-radius: .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: .5rem;
          column-gap: .5rem;
}

.filters__button {
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  font-weight: 500;
  border-radius: .75rem;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

.filters__button:hover {
  background-color: var(--body-color);
}

.filters .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4px;
  width: 90px;
  margin: 0.5rem auto 1.5rem;
}

.filters .divider .large {
  width: 80%;
  height: 100%;
  background-color: var(--title-color);
  border-radius: 4px;
}

.filters .divider .dot {
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background-color: var(--title-color);
  margin-left: 4px;
}

/*=============== PROJECTS ===============*/
.dark-theme .projects__card {
  border-color: transparent;
}

.projects__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid;
}

.projects__card.last {
  display: none;
}

.projects__card img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__card:hover .projects__modal {
  bottom: 0;
}

.projects__title-top {
  font-size: var(--h3-font-size);
  text-align: center;
}

.projects__modal {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(hsla(var(--hue), 24%, 40%, 0.3)), color-stop(95%, hsla(var(--hue), 24%, 4%, 1)));
  background: linear-gradient(180deg, hsla(var(--hue), 24%, 40%, 0.3) 0%, hsla(var(--hue), 24%, 4%, 1) 95%);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1.5rem 1.25rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.projects__subtitle, .projects__title {
  color: #fff;
}

.projects__subtitle {
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  color: var(--text-color-unique);
  font-weight: bold;
}

.projects__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.projects__tages {
  font-size: 13px;
  word-spacing: 10px;
  color: var(--text-color-unique);
  margin-bottom: 1.5rem;
  max-width: 80%;
  line-height: 1.7;
}

.projects__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.projects__flex a {
  margin-right: 0.4rem;
}

.projects__flex .button-right {
  margin-left: auto;
  padding: 6px 15px;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projects__flex .button-right i {
  margin-left: 0.4rem;
}

.projects__button {
  padding: .3rem;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
}

/* =============== SKILLS =============== */
.skills__content {
  row-gap: 3.5rem;
}

.skills__content .title {
  display: none;
}

.skills__title {
  font-size: var(--h3-font-size);
  text-align: center;
  margin-bottom: 1.5rem;
}

.skills__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
}

.skills__group {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  row-gap: 1rem;
}

.skills__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .5rem;
          column-gap: .5rem;
}

.skills__data i {
  font-size: 1rem;
  color: var(--first-color);
}

.skills__name {
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 18px;
}

.skills__level {
  font-size: var(--smaller-font-size);
}

.about__title {
  font-size: var(--h3-font-size);
  text-align: center;
}

.about__desktop-image {
  display: none;
}

.about__about-me {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  max-width: 45ch;
  margin: 0 auto 2rem;
}

.about__about-me-stylish {
  display: none;
}

.about__about-me .button {
  margin-top: 0.5rem;
  background: transparent;
}

.about__about-me .button:hover {
  background: transparent;
}

.about__floating {
  max-width: 185px;
  display: block;
  margin: 0 auto;
  -webkit-animation-name: floating;
          animation-name: floating;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  50% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  50% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

/* Hide and show projects & skills */
.filters [data-content] {
  display: none;
}

.filters__active[data-content] {
  display: -ms-grid;
  display: grid;
}

/* Activate button filter */
.filter-tab-active {
  background-color: var(--body-color);
}

/*=============== CONTACT ===============*/
.contact {
  margin-top: 1.875rem;
}

.contact.success-send .contact__notification.success {
  right: 5%;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.contact.failed-send .contact__notification.failed {
  right: 5%;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.contact__notification {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 12px 20px;
  position: fixed;
  top: 3%;
  color: white;
  font-size: var(--small-font-size);
  border-radius: 5px;
  -webkit-transition: .7s ease right;
  transition: .7s ease right;
}

.contact__notification.success {
  right: -250%;
  opacity: 0;
  background-color: #4BB543;
}

.contact__notification.failed {
  right: -250%;
  opacity: 0;
  background-color: #ff2f20;
}

.contact__title {
  font-size: var(--h3-font-size);
  text-align: center;
}

.contact__form {
  margin: 0 1.2rem;
}

.contact__form > * {
  display: block;
  margin-bottom: 1rem;
}

.contact .input-icon-set {
  width: 100%;
  max-width: 428px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid var(--text-color);
  border-radius: 5px;
}

.contact__input {
  position: relative;
  margin-bottom: 1rem;
}

.contact__input i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact__input input {
  color: var(--text-color);
  padding: 12px 40px 12px 15px;
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
}

.contact textarea {
  color: var(--text-color);
  padding: 12px 40px 12px 15px;
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
}

.contact .submit {
  width: 100%;
  max-width: 428px;
  margin-right: auto;
  margin-left: auto;
  outline: none;
  border: none;
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.contact .submit:hover {
  -webkit-box-shadow: 0px 0px 29px 0px #0d1e2e34;
          box-shadow: 0px 0px 29px 0px #0d1e2e34;
}

.back-to-contact-btn {
  display: none;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .profile__info {
    -webkit-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .profile__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
  .skills__box {
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.project-wrapper {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 2rem;
  overflow: auto;
}

.filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1rem;
  border-bottom: 1px solid var(--text-color-light);
  padding-bottom: 0.75rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.filter-wrapper div > * {
  cursor: pointer;
}

.filter-wrapper input {
  display: inline-block;
  margin-right: 0.3rem;
}

@media screen and (min-width: 400px) {
  .about__about-me {
    max-width: 49ch;
  }
  .projects__content {
    -ms-grid-columns: minmax(280px, 400px);
        grid-template-columns: minmax(280px, 400px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .projects__content {
    -ms-grid-columns: minmax(380px, 430px);
        grid-template-columns: minmax(380px, 430px);
  }
  .filters__content {
    width: 500px;
    margin: 3rem auto;
  }
  .about__about-me {
    max-width: 55ch;
  }
}

@media screen and (min-width: 776px) {
  .projects__content,
  .skills__content {
    -ms-grid-columns: (332px)[2];
        grid-template-columns: repeat(2, 332px);
  }
  .skills__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 3rem;
            column-gap: 3rem;
  }
  .projects__card {
    height: 250px;
  }
  .projects__content .title {
    grid-column: span 2;
  }
  .project-wrapper {
    grid-column: span 2;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 700px;
    padding-right: 5px;
  }
}

/* For large devices */
@media screen and (min-width: 882px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .profile__nav ul {
    padding-right: 1.5rem;
  }
  .profile__nav ul a {
    display: inline;
  }
  .profile {
    padding-top: 2.8rem;
  }
  .profile__border {
    width: 135px;
    height: 135px;
    margin-bottom: 1rem;
  }
  .profile__perfil {
    width: 120px;
    height: 120px;
  }
  .profile__perfil img {
    width: 90px;
  }
  .profile__profession {
    margin-bottom: 1.5rem;
  }
  .profile__info {
    -webkit-column-gap: 3rem;
            column-gap: 3rem;
  }
  .profile__info-description {
    font-size: var(--small-font-size);
  }
  .profile__buttons {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
  .profile .change-theme {
    top: 2.95rem;
    right: 2.5rem;
  }
  .profile .logo-link {
    top: 2.45rem;
  }
  .projects__content {
    padding: 4rem 0rem;
    gap: 2rem 3rem;
  }
  .projects__modal {
    padding: 0.8rem;
  }
  .projects__card {
    height: 260px;
  }
  .skills__title {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }
  .filters__content {
    display: none;
  }
  .filters [data-content] {
    display: -ms-grid;
    display: grid;
  }
  .footer__copy {
    margin: 4.5rem 0 2.5rem;
  }
}

@media screen and (min-width: 882px) {
  .flex {
    margin-top: 8rem;
    margin-bottom: 8rem;
    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;
  }
  .flex .desktop-image {
    margin-top: 3rem;
    display: block;
    position: relative;
  }
  .flex .desktop-image .image-assets {
    position: absolute;
  }
  .flex .desktop-image .guy-background {
    width: 90%;
    height: auto;
    margin-right: -4.5rem;
  }
  .flex .desktop-image .face {
    width: 66px;
    top: -8%;
    left: -20%;
    z-index: -1;
  }
  .flex .desktop-image .laptop {
    -webkit-animation-duration: 6s;
            animation-duration: 6s;
    right: -5%;
    top: 30%;
    z-index: -1;
    width: 110px;
  }
  .flex .desktop-image .pen {
    width: 60px;
    right: 15%;
    top: -10%;
  }
  .flex * {
    text-align: left;
  }
  .flex .profile__hi, .flex .profile__profession {
    font-size: var(--h3-font-size);
  }
  .flex .profile__name {
    font-weight: 700;
    font-size: 40px;
    line-height: 68px;
    letter-spacing: 0.04em;
  }
  .flex .profile__profession {
    margin-bottom: 2rem;
  }
  .flex .profile__social {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 26px;
  }
  .flex .profile__social i {
    font-size: 1.8rem;
    font-weight: 100;
  }
  .flex .profile__info {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .profile__border {
    display: none;
  }
  .about__area {
    margin-bottom: 4rem;
    padding-top: 2rem;
  }
  .about__area .divider {
    width: 70px;
  }
  .about__about-me {
    font-size: 1rem;
    line-height: 26px;
    font-weight: 400;
    max-width: 51ch;
    text-align: left;
    margin: 0 0 2.5rem;
    position: relative;
  }
  .about__about-me-stylish {
    display: block;
    position: absolute;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 587px;
    height: 200px;
    bottom: -7%;
    left: 0%;
    font-size: 90px;
    font-weight: 700;
    line-height: 192px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(22.55%, rgba(12, 21, 29, 0.233)), color-stop(85.33%, rgba(23, 31, 38, 0)));
    background: linear-gradient(360deg, rgba(12, 21, 29, 0.233) 22.55%, rgba(23, 31, 38, 0) 85.33%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0.3;
  }
  .about__about-me .button {
    border: none;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 20;
    background: var(--text-color-lighten);
  }
  .about__about-me .button:hover {
    background-color: var(--text-color-light);
  }
  .about__flex {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about__desktop-image {
    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;
    position: relative;
    margin-left: 5rem;
    width: 300px;
    height: 310px;
  }
  .about__desktop-image::after {
    content: '';
    border: 4px solid var(--first-color);
    border-radius: 10px;
    width: 200px;
    height: 285px;
    position: absolute;
    left: 25%;
    top: 17%;
    z-index: -1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .about__desktop-image:hover::after {
    left: 27%;
    top: 19%;
  }
  .about__desktop-image img {
    width: 230px;
    position: relative;
    border-radius: 10px;
  }
  .about__floating {
    max-width: 375px;
    display: none;
  }
  .skills__content {
    padding: 2rem 0;
    margin: 2rem 0;
    row-gap: 1.5rem;
  }
  .skills__content .divider {
    width: 70px;
  }
  .skills__content .title {
    display: block;
    grid-column: span 2;
  }
  .projects__content,
  .skills__content {
    -ms-grid-columns: (375px)[2];
        grid-template-columns: repeat(2, 375px);
  }
  .dark-theme .about__about-me-stylish {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10.55%, rgba(241, 242, 244, 0.1)), color-stop(70.33%, rgba(241, 242, 244, 0)));
    background: linear-gradient(360deg, rgba(241, 242, 244, 0.1) 10.55%, rgba(241, 242, 244, 0) 70.33%);
    -webkit-background-clip: text;
    opacity: 0.4;
  }
  .dark-theme .about__about-me .button {
    background: var(--container-color);
  }
  .dark-theme .about__about-me .button:hover {
    background-color: hsl(var(--hue), 24%, 16%);
  }
}

@media screen and (min-width: 952px) {
  .flex .desktop-image::before {
    width: 340px;
    height: 340px;
  }
  .flex .desktop-image .guy-background {
    width: 100%;
    margin-right: -3.5rem;
  }
  .flex .desktop-image .face {
    width: 97px;
    left: -33%;
  }
  .flex .desktop-image .laptop {
    width: 150px;
  }
  .flex .desktop-image .pen {
    width: 60px;
  }
  .flex .profile__name {
    font-size: var(--h2-font-size);
  }
  .about__about-me {
    max-width: 55ch;
  }
}

@media screen and (min-width: 1330px) {
  .container {
    max-width: 1074px;
  }
  .about__about-me {
    max-width: 58ch;
  }
  .about__desktop-image {
    margin-left: 8rem;
    margin-right: 5rem;
    margin-top: -1rem;
  }
  .about__desktop-image::after {
    left: 22%;
  }
  .skills__content {
    -ms-grid-columns: (375px)[2];
        grid-template-columns: repeat(2, 375px);
    -webkit-column-gap: 9rem;
            column-gap: 9rem;
  }
  .projects__content {
    -ms-grid-columns: (328px)[3];
        grid-template-columns: repeat(3, 328px);
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
  .projects__content .title {
    grid-column: 3 span;
  }
  .projects__content .project-wrapper {
    grid-column: span 3;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 40px;
        grid-template-rows: 40px;
    gap: 1.5rem;
    height: 595px;
    padding-right: 5px;
  }
  .projects__card {
    height: 250px;
  }
  .projects__card.last {
    display: initial;
  }
  .contact__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 800px;
    margin-inline: auto;
    gap: 1rem;
  }
  .contact .input-icon-set {
    max-width: 800px;
    margin-bottom: 1rem;
  }
  .contact__form > * {
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=styles.css.map */