:root {
  --bg-color: #131313;
  --text-color: #fff;
  --dark-bg: #181818;
  --header-bg: #181818b4;
  --border-clr: #383737;
  --dark-gray: #acabab;
  --light-gray: #c5c5c5;
  --name-gradient: linear-gradient(to right, #fff, #f9f9f9);
  --btn-clr-primary: #fff;
  --btn-bg-primary: linear-gradient(to bottom, #303030 10%, #141414);
  --btn-clr-sec: #fff;
  --btn-bg-sec: linear-gradient(to bottom, #303030 10%, #141414);
  --btn-shadow: inset 0px 1px 1px 1px #2c2c2c, 0px 1px 1px 1px #131313;
  --img-shadow: rgba(240, 46, 170, 0.3) 0px 8px 24px,
      rgba(240, 46, 170, 0.3) 0px 16px 36px;
  --text-bg: #0d0d0d;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

main {
  overflow-x: hidden;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.container {
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
a,
button,
input,
textarea {
  all: unset;
}

h1 {
  font-size: 80px;
}
h1 > span {
  color: #808080;
}

h2 {
  font-size: 48px;
  margin-bottom: 4rem;
}

h3 {
  font-size: 32px;
  margin-bottom: 1rem;
}

h4 {
  font-size: 16px;
  margin-bottom: 1rem;
}

p {
  font-size: 16px;
  line-height: 2;
  color: var(--dark-gray);
}

a:not(:has(i)) {
  font-size: 16px;
  color: var(--light-gray);
}
a:not(:has(i)):hover {
  color: var(--text-color);
  cursor: pointer;
}
a:not(:has(i)):not(.btn) {
  position: relative;
  padding-bottom: 0.5rem;
}
a:not(:has(i)):not(.btn):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--text-color);
  scale: 0;
  transform-origin: center;
}
a:not(:has(i)):not(.btn):hover:after {
  scale: 1;
}

a.btn,
button {
  font-size: 18px;
  padding: 1rem 2rem;
  border-radius: 9px;
  margin-right: 8px;
}
a.btn:hover,
button:hover {
  cursor: pointer;
}

a.btn.primary,
button {
  color: var(--btn-clr-primary);
  background-image: var(--btn-bg-primary);
  box-shadow: var(--btn-shadow);
}
a.btn.primary:hover,
button:hover {
  box-shadow: none;
}

a.btn.secondary {
  background-color: var(--dark-bg);
  color: var(--dark-gray);
}
a.btn.secondary:hover {
  box-shadow: var(--btn-shadow);
}

i {
  font-size: 32px;
}
i:hover {
  cursor: pointer;
}

header {
  width: 100%;
  z-index: 2;
  margin: 1.5rem 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background-color: var(--header-bg);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
header .logo {
  width: 80px;
}
header div,
header nav,
header .social {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}
header .social {
  margin-left: auto;
}
header i {
  font-size: 1.5rem;
  color: var(--light-gray);
  transition: all 0.05s;
}
header i:hover {
  cursor: pointer;
  color: var(--text-color);
}
header hr {
  height: 18px;
  color: var(--light-gray);
}

nav.mobile {
  position: fixed;
  z-index: 3;
  bottom: 1rem;
  padding: 1rem 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 32px;
  background-color: var(--header-bg);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
nav.mobile i {
  display: inline-block;
  padding: 0.8rem;
  border-radius: 1rem;
  font-size: 24px;
}

section,
footer {
  padding: 4rem 0;
}

.hero .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 1.5rem;
  max-width: 1000px;
}
.hero h1 {
  background: var(--name-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 20px;
  line-height: 2;
  text-wrap: balance;
}
.hero span.react {
  color: #4079b0;
}
.hero .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.clicked {
  background-color: rgba(255, 255, 255, 0.2117647059);
}

.stack {
  background: var(--header-bg);
  padding: 1rem;
  white-space: nowrap;
}
.stack .slide {
  display: inline-block;
  animation: slide 10s infinite linear;
}
.stack img {
  padding: 0 60px;
}

@keyframes slide {
  to {
    transform: translateX(-100%);
  }
}
.work .card {
  padding: 3rem;
  margin-bottom: 3rem;
  background-color: var(--dark-bg);
  border: 2px solid var(--border-clr);
  border-radius: 32px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 2rem;
}
.work .card > img {
  width: 520px;
  align-self: start;
}
.work .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
.work p {
  text-wrap: balance;
  min-height: 250px;
}
.work a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  position: relative;
  margin-top: 1rem;
}
.work a:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--text-color);
  scale: 0;
  transform-origin: left;
}
.work a:hover:after {
  scale: 1;
}
.work a:hover {
  cursor: pointer;
}

.contact form {
  width: 100%;
  background-color: var(--dark-bg);
  border: 2px solid var(--border-clr);
  border-radius: 12px;
  padding: 1rem;
  font-size: 16px;
}
.contact h3 {
  text-align: center;
}
.contact .input-field {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0;
  margin: 0.5rem 0;
}
.contact .input-field:not(:nth-of-type(3)) {
  border-bottom: 1px solid var(--border-clr);
}
.contact input {
  padding: 0.5rem 1rem;
  background-color: transparent;
  flex: 1;
}
.contact input:-moz-placeholder-shown {
  color: rgba(var(--dark-gray), 0.5);
}
.contact input:placeholder-shown {
  color: rgba(var(--dark-gray), 0.5);
}
.contact input:-webkit-autofill {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0.1607843137);
}
.contact input:focus,
.contact textarea:focus {
  border-bottom: 1px solid var(--dark-gray);
}
.contact hr {
  margin: 3rem 0;
  height: 1px;
  background-color: var(--border-clr);
  border: none;
}
.contact textarea {
  background-color: var(--text-bg);
  width: 100%;
  border-radius: 12px;
  box-sizing: border-box;
  white-space: pre-line;
  padding: 1rem;
  overflow-wrap: break-word;
}
.contact button {
  display: block;
  margin: 0.5rem 0 0.5rem auto;
}
.contact .social {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

hr.divider {
  height: 1px;
  color: var(--dark-bg);
  border: none;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
  flex-wrap: wrap;
}
footer .container > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}
footer .container > div:nth-child(1) {
  width: 450px;
}
footer .container > div:not(:nth-child(1)) {
  min-width: 150px;
}

@media (max-width: 992px) {
  .work .card {
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
  }
  .work .card > img {
    width: 100%;
  }
}
@media (max-width: 769px) {
  h1 {
    font-size: 54px;
  }
  .hero a {
    width: 100%;
    text-align: center;
  }
  header nav {
    display: none;
  }
  nav.mobile {
    display: flex;
  }
}
@media (width >= 769px) {
  nav.mobile {
    display: none;
  }
}
@media (max-width: 480px) {
  img[alt=lang] {
    width: 24px;
  }
  img[alt=iti] {
    width: 14px;
  }
  .work .card {
    padding: 1rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  footer .container > div {
    width: 100%;
    align-items: center;
  }
}/*# sourceMappingURL=styles.css.map */