/* ------------------------------ normaliz css ------------------------------ */
*,
*::after,
*::before,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  color: white;
  font-family: "regular";
  font-size: 1rem;
}

table,
th,
td {
  border-collapse: collapse;
}

html {
  font-size: 62.5%;
}

img {
  display: block;
  width: 100%;
}
/* -------------------------------------------------------------------------- */

/* -------------------------------- container ------------------------------- */
.container {
  padding: 0 1.6rem;
  margin-right: auto;
  margin-left: auto;
}

/* -------------------------------------------------------------------------- */
#icon-pack {
  display: none;
}

#developing {
  display: none;
}

body {
  background-color: var(--bg-color);
  overflow-x: hidden;
}

header {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* background-image: url(/images/hero-bg.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-text {
  width: 80%;
  margin: 5rem auto;
}

.header-bg {
  transform: translate(0, -8rem);
  display: block;
}

.mobile-nav{
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}

nav {
  background-color: var(--dark-1);
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}

nav img {
  width: 40px;
  height: 40px;
}

.section-title {
  text-align: center;
  font-family: "black";
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #5d41ff -12.36%, #bf00e6 103.42%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.portfolio-part {
  margin-bottom: 1.6rem;
}

.portfolio-seprator__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.portfolio-seprator__line {
  width: 100%;
}

.portfolio-seprator__line span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primery-color);
  border-radius: 10px;
}
.portfolio-seprator__text {
  width: 150px;
  font-size: 1.8rem;
  color: var(--primery-color);
}

.portfolio-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 0.8rem;
}

.products-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 0.8rem;
}

.resume-wrapper {
  display: grid;
  grid-gap: 0.8rem;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

section {
  margin-bottom: 2.4rem;
}
.copyright {
  font-size: 1.4rem;
  font-family: "regular";
  text-align: center;
  margin-bottom: 10rem;
}
