* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}
::-webkit-scrollbar-track {
  background-color: #000;
}
img {
  aspect-ratio: auto 500 / 220;
  height: 220px;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
}
img,
video {
  max-width: 100%;
  height: auto;
}
.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay {
  z-index: 11;
  background-color: rgb(10, 10, 10);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.overlay-loader {
  width: 50px;
  height: 50px;
  background-color: #3af901;
}
nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  background: transparent;
  padding: 16px 58.5px;
  justify-content: space-between;
  align-items: center;
  gap: 0 8px;
  transition: all 0.5s ease;
}
.nav--sticky {
  padding: 8px 58.5px;
  background: transparent;
  backdrop-filter: blur(4px);
}
@media (max-width: 575px) {
  nav {
    padding: 16px 40px;
  }
  .nav--sticky {
    padding: 8px 40px;
  }
}
@media (max-width: 383px) {
  nav {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
nav button,
nav .menu-toggle {
  cursor: pointer;
}
.hero__icon {
  width: 24px;
  height: 18px;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__icon1 {
  flex: 1 0 40;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.btn-start-project {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  min-width: 153px;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  padding: 11px 16px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid rgb(255, 255, 255, 0.107);
  overflow: hidden;
}
@media (max-width: 479px) {
  .btn-start-project {
    min-width: unset;
    padding: 9px 13px;
  }
}
.btn-icon-start-project {
  margin: 2px 0;
  width: 16px;
  min-width: 0;
  height: 16px;
  z-index: 1;
}
@media (max-width: 479px) {
  .btn-icon-start-project {
    display: none;
  }
}
.btn-text-start-project {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  font: 550 14px/1.42 Geist, Helvetica, Arial, serif;
  color: rgb(202, 202, 202);
  text-align: center;
}
.btn-start-project:hover .btn-icon-start-project path {
  stroke: black;
}
.btn-start-project:hover .btn-text-start-project {
  color: black;
  z-index: 1;
}
.btn-start-project:after {
  content: "";
  background-color: white;
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
  -webkit-transform: skewX(-45deg) scale(0, 1);
  -moz-transform: skewX(-45deg) scale(0, 1);
  -ms-transform: skewX(-45deg) scale(0, 1);
  -o-transform: skewX(-45deg) scale(0, 1);
}
.btn-start-project:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transform: skewX(-45deg) scale(1, 1);
  -moz-transform: skewX(-45deg) scale(1, 1);
  -ms-transform: skewX(-45deg) scale(1, 1);
  -o-transform: skewX(-45deg) scale(1, 1);
}
