@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Space_Mono/SpaceMono-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Space_Mono/SpaceMono-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Space_Mono/SpaceMono-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Space_Mono/SpaceMono-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Italiana";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Italiana/Italiana-Regular.woff2") format("woff2");
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
:root {
  --black: #1b1a1a;
  --white: #ffffff;
  --primary: #df3e41;
  --secondary: #f2c94c;
  --primaryFont: "Space Mono", monospace;
  --secondaryFont: "Italiana", cursive;
  --maxWidth: 1600px;
  --medWidth: 1200px;
  --iconsWidth: 60px;
  --iconsHeight: 510px;
}
body {
  font-family: var(--primaryFont);
  background-color: var(--black);
  color: var(--white);
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  background: var(--black);
  width: 100%;
  z-index: 2;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--secondaryFont);
  gap: 10px;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: var(--maxWidth);
  position: relative;
}
.header-nav .logo-text {
  color: var(--white);
  height: calc(40px + 1.5vw);
}
.header-nav .logo-text svg {
  height: 100%;
  width: auto;
}
.header-nav ul {
  display: flex;
  gap: 50px;
  margin-left: auto;
}
.header-nav li {
  font-size: 28px;
}
.header-nav li a {
  color: var(--white);
  cursor: pointer;
}
.header-nav li a:hover {
  text-decoration: underline;
}
.header-nav > button {
  border: none;
  background: none;
  color: var(--white);
  padding: 8px 12px;
  height: 60px;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.header-nav > button:hover {
  background: #ffffff05;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 18px;
  margin-left: 14px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: #ffffff08;
  box-shadow:
    0 0 0 1px #96303a2e,
    inset 0 0 18px #0000003d;
  color: var(--white);
  font-family: var(--primaryFont);
  flex: 0 0 auto;
}
.language-switcher__icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.9;
}
.language-switcher__option {
  border: none;
  background: transparent;
  color: #ffffff9e;
  min-width: 28px;
  height: 34px;
  padding: 0;
  font-family: var(--primaryFont);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.language-switcher__option:hover,
.language-switcher__option:focus-visible,
.language-switcher__option.is-active {
  color: var(--white);
}
.language-switcher__option:hover {
  transform: translateY(-1px);
}
.language-switcher__option:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
  border-radius: 999px;
}
.language-switcher__divider {
  width: 1px;
  height: 22px;
  background: #ffffff8c;
}
#dark-mode {
  margin-left: 30px;
}
#dark-mode:hover svg {
  transform: scale(1.05);
}
#dark-mode svg {
  transition: 0.3s linear;
  filter: drop-shadow(0 0 5px var(--white));
  width: 100%;
  height: 100%;
}
#dark-mode svg #external {
  opacity: 0;
}
#hamburger {
  display: none;
  position: relative;
  width: 60px;
}
#hamburger span {
  position: absolute;
  width: 60%;
  height: 5px;
  border-radius: 5px;
  background: var(--white);
  left: 20%;
  transition: 0.3s;
}
#hamburger span:nth-child(1) {
  top: 25%;
}
#hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#hamburger span:nth-child(3) {
  bottom: 25%;
}
#hamburger.active {
  background: #ffffff08;
}
#hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
#hamburger.active span {
  background: var(--primary);
}
.hero {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 50px auto 370px;
  width: calc(100% - 40px);
  max-width: var(--maxWidth);
}
.hero__left--big-text {
  font-size: calc(100px + 3.33vw);
  font-family: var(--secondaryFont);
  margin-bottom: 8px;
  display: block;
}
.hero__left p {
  font-size: calc(16px + 0.5vw);
  max-width: calc(320px + 11vw);
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 50px;
}
.hero__left p strong {
  font-weight: 700;
  color: var(--primary);
}
.hero__left button {
  border: 1px solid var(--primary);
  background: none;
  color: var(--white);
  padding: calc(12px + 0.45vw) calc(30px + 1.25vw);
  border-radius: 55px;
  font-size: calc(20px + 0.55vw);
  cursor: pointer;
  font-family: var(--secondaryFont);
  letter-spacing: 3px;
  line-height: 1;
  text-transform: capitalize;
}
.hero__left button:hover {
  background: var(--primary);
  color: var(--white);
}
.hero__center {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  bottom: -150px;
  transform: translate(-50%);
}
.hero__center img {
  width: calc(350px + 8.5vw);
  height: calc(350px + 8.5vw);
}
.hero__center > div {
  position: absolute;
  background-color: #4f4f4f;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) translateY(70px);
  padding: 30px;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  transition: 0.3s;
  border-radius: 100px;
}
.hero__center > div .icon {
  width: 60px;
  height: 60px;
  background-size: calc(var(--iconsWidth) * 2) calc(var(--iconsHeight) * 2);
  background-repeat: no-repeat;
  background-position: 0 -240px;
  filter: invert(1);
}
.hero__center > div:before {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.hero__blob {
  border-radius: 70% 30% 30% 70%/60% 40%;
  background-color: var(--primary);
  position: absolute;
  width: calc(350px + 8.5vw);
  height: calc(370px + 8.5vw);
  top: 12.5%;
  z-index: -1;
  animation: blob 15s infinite linear;
}
@keyframes blob {
  0% {
    border-radius: 70% 30% 30% 70%/60% 40%;
    transform: translate(0);
  }
  25% {
    border-radius: 40% 60% 30% 70%/60% 40%;
    transform: translate(25px, 25px);
  }
  50% {
    border-radius: 30% 70% 70% 30%/60% 40%;
    transform: translate(0);
  }
  75% {
    border-radius: 60% 40% 70% 30%/60% 40%;
    transform: translate(-25px, -25px);
  }
  to {
    border-radius: 70% 30% 30% 70%/60% 40%;
    transform: translate(0);
  }
}
.hero__right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-family: var(--secondaryFont);
  padding-top: 35px;
}
.hero__right h2 {
  font-size: calc(90px + 3vw);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}
.hero__right p {
  font-size: calc(26px + 0.7vw);
  letter-spacing: 3px;
  margin-bottom: 25px;
}
.hero__social {
  display: flex;
  gap: 20px;
}
.hero__social .icon {
  filter: invert(1);
}
.hero__social a {
  padding: 8px;
  border-radius: 8px;
}
.hero__social a:hover {
  background: #ffffff14;
}
.icon {
  background-image: url("../img/icons.svg");
  background-size: var(--iconsWidth) var(--iconsHeight);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
}
.github-icon {
  background-position: 0 0;
}
.instagram-icon {
  background-position: -30px 0;
}
.youtube-icon {
  background-position: 0 -30px;
}
.linkedin-icon {
  background-position: -30px -30px;
}
.code-icon {
  background-position: 0 -120px;
}
.technologies-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 185px;
}
.technologies-carousel__wrapper {
  display: flex;
  animation: scroll 120s linear infinite;
  width: -moz-max-content;
  width: max-content;
  gap: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}
.technologies-icon {
  display: block;
  width: 120px;
  height: 120px;
  background-size: calc(var(--iconsWidth) * 4) calc(var(--iconsHeight) * 4);
  background-image: url("../img/icons.svg");
  background-repeat: no-repeat;
  background-position: -120px -720px;
  opacity: 0.5;
  filter: invert(1);
}
.tech-item {
  display: flex;
  align-items: center;
  font-size: 90px;
  font-family: var(--secondaryFont);
  color: var(--black);
  text-shadow:
    2px 0 #fff,
    -2px 0 #fff,
    0 2px #fff,
    0 -2px #fff,
    1px 1px #fff,
    -1px -1px #fff,
    1px -1px #fff,
    -1px 1px #fff;
  white-space: nowrap;
  opacity: 0.5;
  transition: 0.2s linear;
  pointer-events: all;
  cursor: pointer;
}
.tech-item:hover {
  opacity: 1;
  color: var(--white);
  text-shadow: 0 0 0 #fff;
}
.technologies-carousel__wrapper:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
section {
  width: calc(100% - 40px);
  max-width: var(--medWidth);
  margin: 0 auto;
}
div:has(#about) {
  width: 100%;
  overflow: hidden;
}
#about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 250px;
}
#about .laptop-icon {
  background-size: calc(var(--iconsWidth) * 4) calc(var(--iconsHeight) * 4);
  background-position: -120px -360px;
  width: 120px;
  height: 120px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(87%) saturate(1139%) hue-rotate(324deg) brightness(110%) contrast(90%);
  transform: scaleX(1.25);
}
#about h2 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 25px;
}
#about h2 a {
  font-size: 22px;
  color: var(--white);
  display: inline-block;
}
#about h2 a:hover {
  transform: scale(1.02);
}
#about p {
  font-family: var(--secondaryFont);
  font-size: calc(30px + 1.4vw);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
#about .icon-spiral {
  background-size: calc(var(--iconsWidth) * 7) calc(var(--iconsHeight) * 7);
  background-position: -210px -2310px;
  width: 210px;
  height: 210px;
  filter: invert(1);
  opacity: 0.1;
  animation: spin 33s linear infinite;
  position: absolute;
  bottom: -2.5vw;
  right: -4vw;
}
.about-signature {
  width: 80%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
#experience {
  margin-bottom: 200px;
}
.experience-container:first-of-type {
  margin-bottom: 150px;
}
.experience-container > div:first-of-type {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  width: 100%;
}
.experience-container > div:first-of-type span {
  width: 170px;
  height: 170px;
  background: #232323;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.experience-container > div:first-of-type span i {
  width: 90px;
  height: 90px;
  background-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
  opacity: 0.3;
  filter: invert(1);
}
.experience-container > div:first-of-type span .student-icon {
  background-position: -90px -1080px;
}
.experience-container > div:first-of-type span .worker-icon {
  background-position: 0px -1080px;
}
.experience-container > div:first-of-type p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: capitalize;
}
.experience-container h2 {
  font-size: 74px;
  font-family: var(--secondaryFont);
  font-weight: 400;
}
.experience-slider {
  max-width: 1000px;
  margin-left: auto;
  position: relative;
}
.experience-wrapper {
  display: flex;
  width: 100%;
  gap: 30px;
  transition: 0.3s;
  overflow: hidden;
}
.experience-slider > button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translate(50%);
  border: none;
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
  transition: 0.2s;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.experience-slider > button > span {
  display: block;
  transform: translateY(-7%);
}
.experience-card {
  background: #232323;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 200px;
  width: 100%;
  display: flex;
  border-radius: 5px;
}
.experience-card > span {
  width: 100px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.experience-card > span .icon {
  width: 60px;
  height: 60px;
  background-size: calc(var(--iconsWidth) * 2) calc(var(--iconsHeight) * 2);
  background-position: 0 -780px;
  filter: invert(1);
}
.experience-card > div {
  padding: 30px 35px;
  flex-grow: 1;
  width: calc(100% - 100px);
}
.experience-card div h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--secondaryFont);
}
.experience-card div span,
.experience-card div p {
  font-size: 16px;
  letter-spacing: 2px;
}
.experience-card div span {
  margin-bottom: 10px;
  display: block;
}
.experience-card div p {
  color: #828282;
  line-height: 1.5;
}
.brands {
  padding: 80px 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  margin-bottom: calc(50px + 5vw);
}
.brands p {
  font-size: 30px;
  font-family: var(--secondaryFont);
  color: var(--white);
}
.brands-carousel {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  overflow: hidden;
}
.brands-carousel__wrapper {
  display: grid;
  grid-auto-flow: column;
  gap: 100px;
}
#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(50px + 5vw);
}
#projects > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 4px;
  text-align: center;
}
#projects > h2 {
  font-size: calc(35px + 1.8vw);
  font-family: var(--secondaryFont);
  font-weight: 400;
  margin-bottom: 75px;
  text-align: center;
}
.projects-container {
  margin-bottom: 75px;
  width: 100%;
}
.project {
  display: flex;
}
.project > div {
  width: 100%;
  flex-grow: 1;
}
.project__img {
  width: 100%;
  aspect-ratio: 1;
}
.project__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: #d9d9d9;
}
.project:nth-child(2n) {
  flex-direction: row-reverse;
}
.project__info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.project__info > div {
  width: 100%;
  margin-left: 50px;
}
.project:nth-child(2n) .project__info {
  justify-content: flex-start;
}
.project:nth-child(2n) .project__info > div {
  margin-left: 0;
  margin-right: 50px;
}
.project__info > div > div {
  display: flex;
  align-items: center;
  gap: calc(15px + 0.55vw);
  margin-bottom: 20px;
}
.project__info > div > div > a i {
  filter: invert(1);
}
.project__info > div > span {
  padding: 5px 20px;
  background: var(--white);
  color: #1f1f1f;
  border-radius: 5px;
  font-size: calc(12px + 0.22vw);
  display: inline-block;
  margin-bottom: 20px;
}
.project__info h3 {
  font-size: 30px;
  font-family: var(--secondaryFont);
  color: var(--primary);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.project__info p {
  font-size: 16px;
  line-height: 1.66;
  margin-bottom: 20px;
}
.project__info a {
  font-size: 18px;
  color: var(--primary);
  text-decoration: underline;
  text-transform: capitalize;
}
.project__info a span {
  font-size: 22px;
  display: inline-block;
  color: var(--white);
}
#projects > a {
  border: 1px solid var(--primary);
  background: none;
  color: var(--white);
  padding: 20px 50px;
  border-radius: 55px;
  font-size: 30px;
  cursor: pointer;
  font-family: var(--secondaryFont);
  letter-spacing: 3px;
  line-height: 1;
  text-transform: capitalize;
  display: inline-block;
}
#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(50px + 5vw);
  padding: 100px 0;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
#services > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 4px;
  text-align: center;
}
#services > h2 {
  font-size: calc(35px + 1.5vw);
  font-family: var(--secondaryFont);
  font-weight: 400;
  margin-bottom: 75px;
  text-align: center;
}
#services > ul {
  width: 100%;
}
.service {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: calc(20px + 0.8vw) calc(30px + 2.2vw);
}
.service__left,
.service__right {
  display: flex;
  align-items: center;
}
.service:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service__left i {
  width: 45px;
  height: 45px;
  -webkit-mask-image: url("../img/icons.svg");
  mask-image: url("../img/icons.svg");
  -webkit-mask-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
  mask-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--primary);
  transition: 0.4s;
  opacity: 0.8;
}
.service:hover .service__left i {
  background: var(--white);
}
.web-icon {
  -webkit-mask-position: -45px -585px;
  mask-position: -45px -585px;
}
.api-icon {
  -webkit-mask-position: 0 -630px;
  mask-position: 0 -630px;
}
.ecommerce-icon {
  -webkit-mask-position: -45px -630px;
  mask-position: -45px -630px;
}
.service h3 {
  font-size: 26px;
  font-family: var(--secondaryFont);
  font-weight: 400;
  width: 240px;
  margin-left: 30px;
}
.service p {
  width: 440px;
  letter-spacing: 2px;
  padding: 0 50px;
  line-height: 1.66;
}
.service__right {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
.service ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service ul li {
  display: flex;
  gap: 15px;
  align-items: center;
}
.service ul li i {
  width: 15px;
  height: 15px;
  background-size: calc(var(--iconsWidth) * 0.5) calc(var(--iconsHeight) * 0.5);
  background-position: 0 -90px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(868%) hue-rotate(92deg) brightness(100%) contrast(88%);
}
.service ul li span {
  font-family: var(--primaryFont);
}
.service__right button {
  width: 60px;
  height: 60px;
  background: #1f1f1f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}
.service__right button:hover {
  background: var(--primary);
  transform: rotate(45deg);
}
.service__right button i {
  background-size: calc(var(--iconsWidth)) calc(var(--iconsHeight));
  background-position: -30px -120px;
  filter: invert(1);
}
#skills {
  margin-bottom: 200px;
}
#skills > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 4px;
  text-align: center;
}
#skills > h2 {
  font-size: 75px;
  font-family: var(--secondaryFont);
  font-weight: 400;
  margin-bottom: 75px;
  text-align: center;
}
#skills ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
#skills ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 20%;
  padding: 20px;
  background: #232323;
  border-radius: 200px;
  font-family: var(--secondaryFont);
  cursor: pointer;
  box-shadow: 0 0 0 0 var(--primary);
  transition: 0.2s;
  width: 240px;
}
#skills ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 0 var(--primary);
}
#skills ul li > span {
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff1a;
}
#skills ul li .icon {
  width: 36px;
  height: 36px;
  background-size: calc(var(--iconsWidth) * 1.2) calc(var(--iconsHeight) * 1.2);
}
#skills .figma-icon {
  background-position: 0 -288px;
}
#skills .wordpress-icon {
  background-position: -36px -252px;
}
#skills .php-icon {
  background-position: -36px -288px;
}
#skills .mysql-icon {
  background-position: 0 -324px;
}
#skills .laravel-icon {
  background-position: 0 -396px;
}
#skills .javascript-icon {
  background-position: -36px -324px;
}
#skills .html-icon {
  background-position: 0 -360px;
}
#skills .css-icon {
  background-position: -36px -360px;
}
#skills .tailwind-icon {
  background-position: 0 -540px;
}
#skills .vscode-icon {
  background-position: -36px -540px;
}
#skills ul li > div span {
  letter-spacing: 2px;
  font-size: 15px;
}
#contact {
  display: flex;
  padding: calc(20px + 4.2vw);
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  gap: calc(17px + 5vw);
  margin-bottom: calc(50px + 5vw);
}
.contact-info h2 {
  font-family: var(--secondaryFont);
  font-size: calc(35px + 1.5vw);
  height: 70px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 25px;
}
.contact-info > p {
  font-size: calc(14px + 0.1vw);
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.66;
  width: 100%;
  max-width: calc(300px + 3vw);
}
.contact-info ul {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.contact-info ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact-info ul li > a {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff1a;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.contact-info ul li > a:hover {
  background: var(--primary);
}
.contact-info ul li > a i {
  filter: invert(1);
  transform: scale(1.11);
  opacity: 0.75;
}
.contact-info ul li > div p {
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 7px;
  line-height: 1;
}
.contact-info ul li > div a {
  color: var(--white);
  font-family: var(--secondaryFont);
  font-size: calc(18px + 0.35vw);
  line-height: 1;
  font-weight: 700;
}
.contact-info [data-contact-text] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.contact-info ul li:first-of-type > div a {
  letter-spacing: 2px;
}
.contact-info .whatsapp-icon {
  background-position: 0 -90px;
}
.contact-info .telegram-icon {
  background-position: 0 -60px;
}
.contact-info .email-icon {
  background-position: -30px -60px;
}
.contact-form-wrapper {
  padding-top: 95px;
  width: 100%;
}
.form-group {
  display: flex;
  gap: calc(15px + 0.55vw);
  margin-bottom: calc(15px + 0.55vw);
}
.contact-form input,
.contact-form .form-group > div,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.66;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  font-family: var(--primaryFont);
}
.contact-form textarea::-moz-placeholder,
.form-group input::-moz-placeholder {
  color: #fff6;
}
.contact-form textarea::placeholder,
.form-group input::placeholder {
  color: #fff6;
}
.contact-form .form-group > div {
  padding: 15px 20px;
}
.form-group select {
  height: 100%;
  width: 100%;
  font-weight: 600;
  background: none;
  border: none;
  font-family: var(--primaryFont);
  font-size: 16px;
  line-height: 1.66;
  outline: none;
  color: #fff6;
}
.form-group select option {
  background: #232323;
  color: var(--white);
}
.contact-form textarea {
  resize: none;
  height: 100px;
  margin-bottom: calc(15px + 0.55vw);
}
.contact-form button {
  border: 1px solid var(--primary);
  font-family: var(--primaryFont);
  background: none;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 55px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: capitalize;
  display: inline-block;
  transition: 0.2s;
}
.contact-form button:hover {
  background: var(--primary);
}
.contact-form input.input-error,
.contact-form textarea.input-error {
  background: #ff000014;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.error-message {
  color: var(--primary);
  font-family: var(--primaryFont);
  font-weight: 600;
  margin-bottom: 20px;
}
.success-message {
  color: #16a23c;
  font-family: var(--primaryFont);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer {
  width: 100%;
  background: #262626;
  padding-top: calc(50px + 5vw);
}
.footer > div {
  position: relative;
  width: calc(100% - 40px);
  max-width: var(--medWidth);
  margin: 0 auto;
}
.footer > div > div {
  display: flex;
  justify-content: space-between;
  gap: calc(50px + 5vw);
}
.footer h3 {
  font-family: var(--secondaryFont);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 25px;
}
.footer__top-social ul,
.footer__top-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}
.footer__top-social ul li a,
.footer__top-links ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--white);
  height: 30px;
  gap: 15px;
  cursor: pointer;
}
.footer__top-social ul li a i {
  filter: invert(1);
  opacity: 0.75;
}
.footer__top-social ul li a:hover,
.footer__top-links ul li a:hover {
  color: var(--primary);
}
.footer__top-social ul li a:hover i {
  filter: brightness(0) saturate(100%) invert(25%) sepia(14%) saturate(4927%) hue-rotate(317deg) brightness(95%) contrast(94%);
}
.footer__bottom {
  background: var(--black);
  margin-top: 50px;
  padding: 20px 3.5vw;
  align-items: center;
}
.footer__bottom a {
  color: var(--white);
  font-size: 16px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.footer__bottom a * {
  pointer-events: none;
}
.footer__bottom a i {
  background-position: 0 -480px;
  filter: invert(1);
}
.footer__bottom a:hover {
  text-decoration: underline;
}
.footer__text-logo {
  margin-right: auto;
}
.footer__text-logo a {
  font-size: calc(30px + 2vw);
  font-family: var(--secondaryFont);
  color: var(--white);
}
@media (max-width: 1300px) {
  .hero__left--big-text {
    font-size: 100px;
  }
  .hero__left p {
    font-size: 20px;
    max-width: 420px;
  }
  .hero__center img {
    width: calc(300px + 7vw);
    height: calc(300px + 7vw);
  }
  .hero__blob {
    width: calc(300px + 7vw);
    height: calc(320px + 7vw);
  }
  .hero__center > div {
    width: calc(140px + 4.8vw);
    height: calc(140px + 4.8vw);
  }
  .hero__center > div p {
    font-size: calc(12px + 0.3vw);
  }
  .hero__right h2 {
    font-size: 100px;
  }
  .hero__right p {
    font-size: 30px;
  }
  .tech-item {
    font-size: 80px;
  }
  #about .icon-spiral {
    bottom: -4.5vw;
    right: 0;
  }
  .experience-container > div:first-of-type span {
    width: calc(118px + 4vw);
    height: calc(118px + 4vw);
  }
  .experience-container > div:first-of-type p {
    font-size: calc(13px + 0.25vw);
  }
  .experience-container h2 {
    font-size: calc(48px + 2vw);
  }
  .experience-slider {
    padding-right: 30px;
  }
  .experience-slider > button {
    width: 60px;
    height: 60px;
    right: 30px;
  }
}
@media (max-width: 1150px) {
  .header .logo-text {
    font-size: 45px;
  }
  .header-nav ul {
    gap: 40px;
  }
  .header-nav li {
    font-size: 24px;
  }
  .language-switcher {
    height: 50px;
    padding: 0 14px;
    gap: 10px;
  }
  .language-switcher__icon {
    width: 22px;
    height: 22px;
  }
  .language-switcher__option {
    font-size: 16px;
  }
  #dark-mode {
    margin-left: 20px;
    height: 55px;
  }
  .tech-item {
    font-size: 70px;
  }
  .technologies-carousel__wrapper {
    gap: 40px;
  }
  .technologies-icon {
    width: 90px;
    height: 90px;
    background-position: -90px -540px;
    background-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
  }
  .experience-card > div {
    padding: 25px;
  }
  .experience-card div h3 {
    font-size: calc(20px + 1vw);
  }
  .experience-card div p {
    font-size: calc(13px + 0.3vw);
  }
  .service {
    padding: calc(20px + 0.8vw) calc(20px + 1.5vw);
  }
  .service__left {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-right: calc(20px + 1.5vw);
  }
  .service p {
    padding: 0 calc(20px + 1.5vw);
  }
  .service h3 {
    margin-left: auto;
    width: 180px;
    white-space: nowrap;
    text-align: center;
    font-size: 22px;
  }
  .service__right button {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1010px) {
  #dark-mode {
    margin-left: 15px;
  }
  .header .logo-text {
    font-size: 40px;
  }
  .header-nav ul {
    gap: 35px;
  }
  .header-nav li {
    font-size: 22px;
  }
  #dark-mode {
    margin-left: 20px;
    height: 50px;
  }
  .hero__center {
    bottom: -100px;
  }
  .hero__center img {
    width: calc(200px + 10vw);
    height: calc(200px + 10vw);
  }
  .hero__blob {
    width: calc(200px + 10vw);
    height: calc(220px + 10vw);
  }
  .hero__center > div {
    width: calc(120px + 5.5vw);
    height: calc(120px + 5.5vw);
  }
  .hero__center > div p {
    font-size: calc(11px + 0.3vw);
  }
  .hero__center > div:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .hero__right h2 {
    margin-bottom: 15px;
  }
  #about .icon-spiral {
    background-size: calc(var(--iconsWidth) * 6) calc(var(--iconsHeight) * 6);
    background-position: -180px -1980px;
    width: 180px;
    height: 180px;
  }
  .experience-slider {
    padding-right: 25px;
  }
  .experience-slider > button {
    width: 50px;
    height: 50px;
    right: 25px;
  }
  .experience-card > span {
    width: 90px;
  }
  .experience-card > span .icon {
    width: 51px;
    height: 51px;
    background-size: calc(var(--iconsWidth) * 1.7) calc(var(--iconsHeight) * 1.7);
    background-position: 0 -663px;
  }
  .experience-card div h3 {
    font-size: 24px;
  }
  .project__info > div {
    width: 100%;
    margin-left: 30px;
  }
  .service {
    padding: calc(20px + 0.8vw) calc(15px + 1.25vw);
  }
  .service__left {
    padding-right: calc(15px + 1.25vw);
  }
  .service p {
    padding: 0 calc(15px + 1.25vw);
    font-size: 14px;
    width: 380px;
  }
  .service h3 {
    width: 160px;
    white-space: nowrap;
    text-align: center;
    font-size: 20px;
  }
  .service ul li span {
    font-size: 14px;
  }
  #contact {
    display: flex;
    padding: calc(20px + 3.2vw) calc(20px + 2vw);
    background: #232323;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    gap: calc(17px + 1vw);
  }
}
@media (max-width: 940px) {
  #dark-mode {
    margin-left: 10px;
  }
  .header .logo-text {
    font-size: 36px;
  }
  .header-nav ul {
    gap: 25px;
  }
  .header-nav li {
    font-size: 20px;
  }
  .language-switcher {
    height: 46px;
    padding: 0 12px;
    gap: 8px;
  }
  .tech-item {
    font-size: 50px;
  }
  .technologies-carousel__wrapper {
    gap: 30px;
  }
  .technologies-icon {
    width: 60px;
    height: 60px;
    background-position: -60px -360px;
    background-size: calc(var(--iconsWidth) * 2) calc(var(--iconsHeight) * 2);
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    margin: 50px auto 100px;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
  .hero__left {
    width: 100%;
  }
  .hero__left--big-text {
    font-size: calc(66px + 6vw);
  }
  .hero__left p {
    font-size: calc(16px + 1.5vw);
    max-width: 100%;
  }
  .hero__left button {
    font-size: calc(18px + 1.5vw);
    width: 100%;
    max-width: 320px;
    padding: 18px 30px;
  }
  .hero__center {
    position: relative;
    margin: 0 auto;
    width: 100%;
    transform: none;
    bottom: initial;
    left: initial;
  }
  .hero__center > div .icon {
    width: 45px;
    height: 45px;
    background-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
    background-position: 0 -180px;
  }
  .hero__right {
    padding-top: 50px;
    align-items: center;
  }
  .technologies-carousel,
  #about,
  #experience,
  #skills {
    margin-bottom: calc(85px + 7.5vw);
  }
  .projects-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
  .project {
    flex-direction: column;
    margin: 0 auto;
  }
  .project__img {
    margin-bottom: 25px;
  }
  .project__img img {
    border-radius: 10px;
  }
  .project__info > div {
    margin-left: 0;
  }
  .project__info h3 {
    font-size: calc(22px + 1.35vw);
  }
  .project:nth-child(2n) {
    flex-direction: column;
  }
  .project__info p {
    font-size: calc(14px + 0.5vw);
  }
  .project__info a {
    font-size: 20px;
  }
  .service {
    padding: 50px;
    flex-direction: column;
  }
  .service > div {
    flex-direction: column;
    border-left: none;
  }
  .service__left i {
    width: 120px;
    height: 120px;
    -webkit-mask-size: calc(var(--iconsWidth) * 4) calc(var(--iconsHeight) * 4);
    mask-size: calc(var(--iconsWidth) * 4) calc(var(--iconsHeight) * 4);
    background: var(--primary);
    margin-bottom: 25px;
  }
  .service__left .web-icon {
    -webkit-mask-position: -120px -1560px;
    mask-position: -120px -1560px;
  }
  .api-icon {
    -webkit-mask-position: 0 -1680px;
    mask-position: 0 -1680px;
  }
  .ecommerce-icon {
    -webkit-mask-position: -120px -1680px;
    mask-position: -120px -1680px;
  }
  .service__left {
    padding-right: 0;
  }
  .service h3 {
    width: 100%;
    text-align: center;
    font-size: calc(35px + 2vw);
    margin-bottom: calc(15px + 1.5vw);
  }
  .service p {
    text-align: center;
    padding: 0;
    font-size: calc(15px + 0.5vw);
    width: 100%;
    margin-bottom: calc(25px + 2.7vw);
  }
  .service ul {
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    gap: calc(15px + 1vw);
    margin-bottom: calc(25px + 2.7vw);
  }
  .service ul li span {
    font-size: calc(15px + 0.4vw);
  }
  .service__right button {
    width: 105px;
    height: 105px;
    margin: 0 auto;
  }
  .service__right button i {
    width: 75px;
    height: 75px;
    background-size: calc(var(--iconsWidth) * 2.5) calc(var(--iconsHeight) * 2.5);
    background-position: -75px -300px;
    filter: invert(1);
  }
  #contact {
    flex-direction: column;
    gap: calc(20px + 3.2vw);
  }
  .contact-info ul li > div p {
    font-size: 18px;
  }
  .contact-info ul li > div a {
    font-size: 25px;
  }
  .contact-form {
    padding-top: 0;
  }
  .form-group {
    gap: 25px;
    margin-bottom: 25px;
  }
  .contact-form textarea {
    margin-bottom: 25px;
  }
  .footer__bottom {
    padding: 20px;
  }
  #about .laptop-icon {
    width: 90px;
    height: 90px;
    background-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    background-position: -90px -270px;
  }
}
@media (max-width: 880px) {
  .experience-container h2 {
    font-size: calc(44px + 2vw);
  }
  .experience-container:first-of-type {
    margin-bottom: 100px;
  }
  .experience-card {
    min-width: 360px;
  }
  .experience-container > div:first-of-type span {
    width: calc(100px + 4vw);
    height: calc(100px + 4vw);
  }
  .experience-container > div:first-of-type span i {
    width: 69px;
    height: 69px;
    background-size: calc(var(--iconsWidth) * 2.3) calc(var(--iconsHeight) * 2.3);
  }
  .experience-container > div:first-of-type span .worker-icon {
    background-position: 0 -828px;
  }
  .experience-container > div:first-of-type span .student-icon {
    background-position: -69px -828px;
  }
  .experience-card > span {
    width: 80px;
  }
  .experience-card > div {
    padding: 15px 20px;
  }
  .experience-card {
    height: 160px;
  }
  .experience-card > span .icon {
    width: 45px;
    height: 45px;
    background-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
    background-position: 0 -585px;
  }
  .experience-card div span {
    line-height: 1;
  }
  .experience-card div h3 {
    font-size: 22px;
    line-height: 1;
  }
  .experience-card div p {
    font-size: calc(12px + 0.2vw);
  }
  #skills ul {
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .header-nav {
    padding: 10px 0;
  }
  .header-nav > ul {
    display: none;
  }
  .language-switcher {
    margin-left: auto;
  }
  #dark-mode {
    height: 55px;
    margin-left: auto;
  }
  #hamburger {
    display: block;
    height: 55px;
  }
  #about p {
    font-size: calc(24px + 1.4vw);
  }
  #about .icon-spiral {
    background-size: calc(var(--iconsWidth) * 5) calc(var(--iconsHeight) * 5);
    background-position: -150px -1650px;
    width: 150px;
    height: 150px;
    bottom: 2.5vw;
  }
  #skills > h2 {
    font-size: calc(30px + 4vw);
    margin-bottom: calc(25px + 4vw);
  }
  body:has(.active-menu) {
    overflow: hidden;
  }
  .header-nav.active-menu #hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header-nav.active-menu #hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header-nav.active-menu #hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .header-nav ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translate(-50%);
    background: #000c;
    z-index: -1;
  }
  .header-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(25px + 5vw);
    position: absolute;
    top: 100%;
    transform: translate(-100vw);
    transition: 0.5s;
    left: 0;
    width: 100%;
    height: calc(100vh - 100%);
    z-index: -1;
  }
  .header-nav.active-menu ul {
    transform: translate(0);
  }
  .header-nav ul li {
    font-size: calc(24px + 5vw);
    font-weight: 700;
    letter-spacing: 8px;
  }
}
@media (max-width: 768px) {
  #projects{
    margin-bottom: 25px;
  }
  .contact-form-wrapper {
    padding-top: 25px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 25px !important;
  }
  .footer__bottom a {
    margin-right: 0;
    font-size: 24px;
    gap: 15px;
  }
  .footer__bottom a .contact-icon {
    width: 45px;
    height: 45px;
    background-position: 0 -720px;
    background-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
  }
}
@media (max-width: 690px) {
  .experience-container:first-of-type {
    margin-bottom: 50px;
  }
  .experience-container h2 {
    font-size: calc(26px + 2.5vw);
  }
  .experience-container > div:first-of-type {
    gap: 25px;
    margin-bottom: 25px;
  }
  .experience-container > div:first-of-type p {
    font-size: calc(12px + 0.2vw);
    letter-spacing: 3px;
  }
  .experience-container > div:first-of-type span {
    width: calc(80px + 5vw);
    height: calc(80px + 5vw);
  }
  .experience-container > div:first-of-type span i {
    width: 60px;
    height: 60px;
    background-size: calc(var(--iconsWidth) * 2) calc(var(--iconsHeight) * 2);
  }
  .experience-container > div:first-of-type span .worker-icon {
    background-position: 0 -720px;
  }
  .experience-container > div:first-of-type span .student-icon {
    background-position: -60px -720px;
  }
  #services > h2 {
    font-size: calc(20px + 7.5vw);
    padding: 0 20px;
  }
  .service__left i {
    width: 90px;
    height: 90px;
  }
  .service__left .web-icon {
    -webkit-mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    -webkit-mask-position: -90px -1170px;
    mask-position: -90px -1170px;
  }
  .service__left .api-icon {
    -webkit-mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    -webkit-mask-position: 0 -1260px;
    mask-position: 0 -1260px;
  }
  .service__left .ecommerce-icon {
    -webkit-mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    mask-size: calc(var(--iconsWidth) * 3) calc(var(--iconsHeight) * 3);
    -webkit-mask-position: -90px -1260px;
    mask-position: -90px -1260px;
  }
  .service {
    padding: 50px 25px;
  }
  .service h3 {
    font-size: calc(25px + 1.5vw);
  }
  .service ul {
    flex-wrap: wrap;
  }
  .service__right button {
    width: 95px;
    height: 95px;
  }
  .service__right button i {
    width: 60px;
    height: 60px;
    background-size: calc(var(--iconsWidth) * 2) calc(var(--iconsHeight) * 2);
    background-position: -60px -240px;
  }
  .footer .footer__top {
    flex-direction: column;
    gap: 50px;
  }
  .footer > div > div {
    gap: 25px;
  }
}
@media (max-width: 625px) {
  .experience-wrapper {
    gap: calc(13px + 1vw);
  }
  .experience-card {
    padding: 5px 10px;
    height: 144px;
  }
  .experience-card > div {
    padding: 15px;
  }
  .form-group {
    flex-direction: column;
    gap: 25px;
  }
  .contact-form button {
    width: 100%;
  }
}
@media (max-width: 565px) and (min-width: 400px) {
  #skills ul {
    gap: 15px;
  }
  #skills ul li {
    width: 200px;
    padding: 10px;
    gap: 15px;
  }
  #skills ul li > span {
    width: 50px;
    height: 50px;
  }
  #skills ul li .icon {
    width: 30px;
    height: 30px;
    background-size: calc(var(--iconsWidth) * 1) calc(var(--iconsHeight) * 1);
  }
  #skills .javascript-icon {
    background-position: -30px -270px;
  }
  #skills .html-icon {
    background-position: 0 -300px;
  }
  #skills .css-icon {
    background-position: -30px -300px;
  }
  #skills .tailwind-icon {
    background-position: 0 -450px;
  }
  #skills .vscode-icon {
    background-position: -30px -450px;
  }
  #skills .laravel-icon {
    background-position: 0 -330px;
  }
  #skills .mysql-icon {
    background-position: 0 -270px;
  }
  #skills .php-icon {
    background-position: -30px -240px;
  }
  #skills .wordpress-icon {
    background-position: -30px -210px;
  }
  #skills .figma-icon {
    background-position: 0 -240px;
  }
}
@media (max-width: 540px) {
  .service__right button {
    width: 75px;
    height: 75px;
  }
  .service__right button i {
    width: 45px;
    height: 45px;
    background-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
    background-position: -45px -180px;
  }
}
@media (max-width: 500px) {
  .header-nav {
    padding: 5px 0;
  }
  .language-switcher {
    height: 42px;
    padding: 0 10px;
    gap: 7px;
  }
  .language-switcher__icon {
    width: 20px;
    height: 20px;
  }
  .language-switcher__option {
    min-width: 24px;
    height: 30px;
    font-size: 14px;
  }
  .language-switcher__divider {
    height: 18px;
  }
  .hero__center > div .icon {
    width: 30px;
    height: 30px;
    background-size: var(--iconsWidth) var(--iconsHeight);
    background-position: 0 -120px;
  }
  .hero__right h2 {
    font-size: calc(35px + 11vw);
  }
  .tech-item {
    font-size: calc(25px + 2vw);
  }
  .technologies-carousel__wrapper {
    gap: 25px;
  }
  .technologies-icon {
    width: 45px;
    height: 45px;
    background-position: -45px -270px;
    background-size: calc(var(--iconsWidth) * 1.5) calc(var(--iconsHeight) * 1.5);
  }
  #about p {
    font-size: calc(20px + 1.2vw);
  }
  #contact {
    padding: 25px 15px;
  }
  .contact-form input,
  .contact-form .form-group > div,
  .contact-form textarea {
    padding: 10px 15px;
  }
}
@media (max-width: 500px) and (min-width: 400px) {
  #skills ul {
    gap: 10px;
  }
  #skills ul li {
    font-size: 13px;
    gap: 10px;
    width: 168px;
  }
  #skills ul li > span {
    width: 40px;
    height: 40px;
  }
  #skills ul li > div span {
    font-size: 12px;
  }
  #skills ul li .icon {
    width: 21px;
    height: 21px;
    background-size: calc(var(--iconsWidth) * 0.7) calc(var(--iconsHeight) * 0.7);
  }
  #skills .javascript-icon {
    background-position: -21px -189px;
  }
  #skills .html-icon {
    background-position: 0 -210px;
  }
  #skills .css-icon {
    background-position: -21px -210px;
  }
  #skills .tailwind-icon {
    background-position: 0 -315px;
  }
  #skills .vscode-icon {
    background-position: -21px -315px;
  }
  #skills .laravel-icon {
    background-position: 0 -231px;
  }
  #skills .mysql-icon {
    background-position: 0 -189px;
  }
  #skills .php-icon {
    background-position: -21px -168px;
  }
  #skills .wordpress-icon {
    background-position: -21px -147px;
  }
  #skills .figma-icon {
    background-position: 0 -168px;
  }
}
@media (max-width: 480px) {
  #contact {
    display: flex;
    background: #232323;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    gap: calc(17px + 1vw);
  }
  .contact-info ul li > a {
    width: 55px;
    height: 55px;
  }
  .contact-info .icon {
    width: 24px;
    height: 24px;
    background-size: calc(var(--iconsWidth) * 0.8) calc(var(--iconsHeight) * 0.8);
  }
  .contact-info .whatsapp-icon {
    background-position: 0 -72px;
  }
  .contact-info .telegram-icon {
    background-position: 0 -48px;
  }
  .contact-info .email-icon {
    background-position: -24px -48px;
  }
  .contact-info ul li {
    gap: 15px;
  }
  .contact-info ul li > div a {
    font-size: 20px;
  }
  .contact-info ul li > div p {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .hero__right p {
    font-size: calc(20px + 1.5vw);
  }
  .tech-item {
    font-size: 25px;
    text-shadow:
      1px 0 #fff,
      -1px 0 #fff,
      0 1px #fff,
      0 -1px #fff,
      1px 1px #fff,
      -1px -1px #fff,
      1px -1px #fff,
      -1px 1px #fff;
  }
  .technologies-carousel__wrapper {
    gap: 20px;
  }
  .technologies-icon {
    width: 30px;
    height: 30px;
    background-position: -30px -180px;
    background-size: var(--iconsWidth) var(--iconsHeight);
  }
}
