#navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  left: 30%;
  z-index: 99999999;
  width: 300px;
}

html {
  scroll-behavior: smooth;
}

.cover {
  position: relative;
  left: 45%;
  height: 60vh;
  width: 50vw;
}

.model {
  height: 200px;
  width: 100px;
}

.zmodel {
  height: 350px;
  width: 100px;
}

.scover {
  height: 700px;
  width: 50vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  left: 29%;
  padding-top: 90px;
  justify-content: space-around;
  margin-bottom: -30px;
  row-gap: 1px;
}

.zcover {
  height: 700px;
  width: 50vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  left: 27%;
  row-gap: 40px;
  top: -50vh;
}

.side {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 5px;
  height: 450px;
  padding-bottom: 70px;
}

.introtext {
  margin-left: 60%;
}

.loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: black;
  width: 800px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  ;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

#textcontainer {
  padding-top: 10%;
  color: White;
  background-color: #000000;
  height: fit-content;
  max-height: 700px;
}

#about {
  padding-top: 5%;
  color: White;
  background-color: white;
  max-height: 1000px;
  height: 700px;

  word-wrap: break-word;
}

#products {
  padding-left: 270px;
  padding-right: 270px;
}

.cursor-pointer {
  box-shadow: 4px 5px 9px black;
  background-color: #ededed;
}

.btn-shine {
  transform: translate(-50%, -50%);
  padding: 1px;
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 30px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

#reviews {

  padding: 90px;
  display: flex;
}

.card {
  --font-color: #323232;
  --bg-color: #e0e0e0;
  width: 250px;
  height: 350px;
  border-radius: 20px;
  background: var(--bg-color);
  box-shadow: -9px 9px 18px black;
  display: flex;
  flex-direction: column;
  transition: .4s;
  flex: 1;
  margin-left: 90px;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 10px 2px #5a5a5a;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  background-color: blueviolet;
}

.card__descr-wrapper {
  padding: 15px;
  display: grid;
}

.card__title {
  color: var(--font-color);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 16px;
}

.card__descr {
  color: var(--font-color);
}

.svg {
  width: 25px;
  height: 25px;
  transform: translateY(25%);
  fill: var(--font-color);
}

.card__links {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
}

.card__links .link {
  color: var(--font-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.card__links .link:hover {
  text-decoration: underline;
}