@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");
header {
  width: 100%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

header .header__main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}

header .header__main .header__nav-toggle-close {
  display: none;
}

header .header__main .header__nav-toggle-open {
  cursor: pointer;
}

header .header__main .logo {
  font-size: clamp(1.5rem, 2.25vw, 3.75rem);
  font-weight: 700;
}

@media (min-width: 768px) {
  header .header__main .header__nav-toggle-close, header .header__main .header__nav-toggle-open {
    display: none;
  }
}

header nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav {
  display: none;
  width: 100%;
  height: 40vh;
  background: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0;
  -webkit-animation: fade .5s ease;
          animation: fade .5s ease;
}

@media (min-width: 768px) {
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    position: relative;
    height: auto;
    width: auto;
  }
}

header nav svg {
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

header nav ul {
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

@media (min-width: 768px) {
  header nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
  header nav ul .header__nav-toggle-close {
    display: none;
  }
}

header nav ul li {
  -webkit-animation: fade 1s;
          animation: fade 1s;
}

@media (min-width: 768px) {
  header nav ul li {
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

main {
  width: 100%;
  padding: 5rem 1.5rem 0 1.5rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 1.5rem;
  }
}

main .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

main .text-container h1 {
  line-height: 1.2;
}

@media (min-width: 768px) {
  main .text-container {
    width: 60%;
  }
}

main .image-container {
  width: 100%;
  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;
}

main .image-container .image {
  width: 350px;
  height: auto;
}

@media (min-width: 768px) {
  main .image-container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 40%;
  }
}

@media (min-width: 920px) {
  main .image-container .image {
    width: 400px;
  }
}

@media (min-width: 1024px) {
  main .image-container .image {
    width: 500px;
  }
}

.gallery {
  width: 100%;
  padding: 0 1.5rem 5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.gallery .gallery__btn-container {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery .gallery__btn-container button.primary {
  background-color: transparent;
  color: #e6e6e6;
  border-bottom: 3px solid #00ff75;
  font-weight: 700;
  -webkit-transition: color .5s ease;
  transition: color .5s ease;
}

.gallery .gallery__btn-container button.primary:hover, .gallery .gallery__btn-container button.primary:focus {
  color: #00ff75;
}

.gallery .tab.active {
  display: block;
}

.gallery .tab {
  padding: 2rem 0;
  display: none;
}

.gallery .tab .gallery__creations {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery .tab .gallery__creations {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.gallery .tab .gallery__creations .gallery__latest, .gallery .tab .gallery__creations .gallery__all-work {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.gallery .tab .gallery__creations .gallery__latest .img-lg, .gallery .tab .gallery__creations .gallery__all-work .img-lg {
  width: 300px;
  background: #1d1f21;
  aspect-ratio: 16 / 9;
}

@media (min-width: 920px) {
  .gallery .tab .gallery__creations .gallery__latest .img-lg, .gallery .tab .gallery__creations .gallery__all-work .img-lg {
    width: 450px;
  }
}

@media (min-width: 1024px) {
  .gallery .tab .gallery__creations .gallery__latest .img-lg, .gallery .tab .gallery__creations .gallery__all-work .img-lg {
    width: 600px;
  }
}

.gallery .tab .gallery__creations .gallery__latest .all-work__creations, .gallery .tab .gallery__creations .gallery__all-work .all-work__creations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery .tab .gallery__creations .gallery__latest .all-work__creations .img-sm, .gallery .tab .gallery__creations .gallery__all-work .all-work__creations .img-sm {
  width: 150px;
  background: #1d1f21;
  aspect-ratio: 1 / 1;
}

footer {
  width: 100%;
  padding: 1rem;
  text-align: center;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: 0;
  outline: none;
}

body {
  background: -webkit-gradient(linear, left top, right top, from(#1d1f21), to(#383a3d));
  background: linear-gradient(90deg, #1d1f21 0%, #383a3d 100%);
  min-height: 100vh;
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #e6e6e6;
}

body h1 {
  font-size: clamp(2.5rem, 3.5vw, 6rem);
  font-weight: 700;
}

body h2 {
  font-size: clamp(2.25rem, 3vw, 5rem);
  font-weight: 700;
}

body h3 {
  font-size: clamp(1.5rem, 2.25vw, 3.75rem);
  font-weight: 500;
}

body li {
  font-weight: 700;
}

body p, body label {
  font-size: clamp(1rem, 1.25vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
}

body a {
  color: #e6e6e6;
}

body a:hover, body a:focus {
  color: #00ff75;
  -webkit-transition: color .5s ease;
  transition: color .5s ease;
}

body span {
  color: #00ff75;
}

body section, body main {
  width: 100%;
}

body svg {
  fill: #e6e6e6;
}

body svg:hover, body svg:active {
  -webkit-transition: fill .5s ease;
  transition: fill .5s ease;
  fill: #00ff75;
}

body img {
  width: 100%;
  height: auto;
}

body button {
  border: 0;
  outline: none;
  cursor: pointer;
  padding: .5rem 1rem;
  border-radius: .2rem;
  margin: .25rem;
  font-size: clamp(0.85rem, 1.2vw, 1.4rem);
}

body .blob {
  position: absolute;
  width: 400px;
  z-index: -1;
  opacity: .05;
  left: -40%;
  top: -20%;
}

@media (min-width: 768px) {
  body .blob {
    width: 1000px;
    top: -25%;
  }
}
/*# sourceMappingURL=main.css.map */