.blurred-circle1 {
  position: absolute;
  top: 0;
  left: 60%;
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 calc(15vw / 2) calc(5vw / 2) rgba(112, 255, 0, 1),
  0 0 calc(30vw / 2) calc(15vw / 2) rgba(112, 255, 0, 0.4),
  0 0 calc(50vw / 2) calc(25vw / 2) rgba(112, 255, 0, 0.2);
}

/*main-banner*/
.main-banner-container {
  display: flex;
  align-items: center;
  margin: 0 5vw;
  height: 100vh;
}

.main-banner-container .text {
  margin-top: -15vw;
  color: var(--main-white);
  width: 50%;
}

.main-banner-img-lines {
  position: absolute;
  width: 25vw;
  height: auto;
  top: 55vh;
  left: 0;
}


.main-banner-container .text h2 {
  margin: 0;
  text-align: left;
  font-family: RedRose, sans-serif;
  font-size: 3.5vw;
}

.main-banner-container .text h1 {
  margin: 3vw 0 0 0;
  font-weight: bold;
  font-size: 1.8vw;
}

.main-banner-img-container {
  display: flex;
  margin: 0 auto;
  width: 50%;
  justify-content: center;
  border-radius: 5px;
  animation: zoomIn 2s cubic-bezier(0, 0.4, 0.62, 1.39) forwards;
}

.main-banner-img-planet {
  width: 75%;
  border-radius: 5px;
  transition: transform 0.5s ease;
}

.main-banner-img-planet:hover {
  transform: scale(1.05);
}

@keyframes zoomIn {
  from {
    transform: scale(0.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*.description-container {
  margin: 5vw;
  color: var(--main-white);
  font-size: 1.5vw;
}

.description-container p {
  padding: 3vw;
  border-radius: 25px
}

.description-container p:nth-child(1) {
  background-color: var(--main-salat);
}

.description-container p:nth-child(2) {
  background-color: var(--main-blue);
}*/

.products-container {
  margin-top: 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: relative;
}

.products-container.active {
  opacity: 1;
  transform: translateY(0);
}

.blurred-circle2 {
  position: absolute;
  top: 30%;
  right: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 calc(15vw / 4) calc(5vw / 4) rgba(112, 255, 0, 1),
  0 0 calc(30vw / 4) calc(15vw / 4) rgba(112, 255, 0, 0.4),
  0 0 calc(50vw / 4) calc(25vw / 4) rgba(112, 255, 0, 0.2);
}

.products-text {
  color: var(--main-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50vw;
  text-align: center;
  position: relative;
  z-index: 2;
}

.products-container p {
  font-size: var(--font-size-pc-h);
  text-align: justify;
  margin: 3vw 0;
}

.products-container-img {
  z-index: 1;
  width: 35vw;
  height: auto;
  transition: transform 0.3s ease;
}

.products-container-img:hover {
  transform: scale(1.05);
}

.products-container, .services-container {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s ease, opacity 1s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: relative;
  margin: 3vw 0 10vw 0;
}

.blurred-circle3 {
  position: absolute;
  top: 10vh;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 calc(15vw / 2) calc(5vw / 2) rgba(34, 35, 86, 1),
  0 0 calc(30vw / 4) calc(15vw / 4) rgba(34, 35, 86, 0.4),
  0 0 calc(50vw / 4) calc(25vw / 4) rgba(34, 35, 86, 0.2);
}

.services-text {
  color: var(--main-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50vw;
  position: relative;
  z-index: 2;

  font-size: var(--font-size-pc-h);
  text-align: justify;
}

.services-text a{
display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 30vw;
  height: 15vw;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}

/* truck upper body */
.truckBody {
  width: 18vw;
  height: fit-content;
  margin-bottom: 2vw;
  animation: motion 1s linear infinite;
}

/* truck suspension animation*/
@keyframes motion {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* truck's tires */
.truckTires {
  width: 14vw;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5vw 0 0;
  position: absolute;
  bottom: 0;
}

.truckTires svg {
  width: 2.6vw;
}

.road {
  width: 100%;
  height: 0.2vw;
  background-color: var(--main-white);
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}

.road::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: black;
  right: -50%;
  border-radius: 3px;
  animation: roadAnimation 2s linear infinite;
  border-left: 10px solid black;
}

.road::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: black;
  right: -65%;
  border-radius: 3px;
  animation: roadAnimation 2s linear infinite;
  border-left: 4px solid white;
}

.lampPost {
  fill: #605b55;
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 14vw;
  animation: roadAnimation 2s linear infinite;
}

@keyframes roadAnimation {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-55vw);
  }
}

@media (max-width: 768px) {
  /*main-banner*/
  .main-banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin: 13vw 0 20vw 0;
  }

  .main-banner-container .text {
    order: 2;
    margin-top: 10vw;
    color: var(--main-white);
    width: 80%;
  }

  .main-banner-img-lines {
    position: absolute;
    width: 45vw;
    height: auto;
    /*top: auto;*/
    top: 0;
    left: 0;
  }


  .main-banner-container .text h2 {
    margin: 0;
    text-align: left;
    font-size: var(--font-size-ph-m-h);
  }

  .main-banner-container .text h1 {
    margin: 1vw 0 0 0;
    font-weight: bold;
    font-size: var(--font-size-ph-p);
  }

  .main-banner-img-container {
    order: 1;
    display: flex;
    margin: 0 -30% 0 0;
    width: 60%;
    justify-content: center;
    border-radius: 5px;
    animation: zoomIn 1.5s cubic-bezier(0, 0.4, 0.62, 1.39) forwards;
  }

  .main-banner-img-planet {
    width: 75%;
    border-radius: 5px;
  }

  .services-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    position: relative;
    margin-top: 10vw;
  }

  .services-text {
    color: var(--main-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    text-align: justify;
    position: relative;
    z-index: 2;
  }

  .services-text p{
    font-size: var(--font-size-ph-p);
  }

  .truckWrapper {
    width: 50vw;
    height: 25vw;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    overflow-x: hidden;
    margin-bottom: 4vw;
  }

  /* truck upper body */
  .truckBody {
    width: 36vw;
    height: fit-content;
    margin-bottom: 4vw;
    animation: motion 1s linear infinite;
  }

  /* truck suspension animation*/
  @keyframes motion {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(4px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  /* truck's tires */
  .truckTires {
    width: 29vw;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5vw 0 0;
    position: absolute;
    bottom: 0;
  }

  .truckTires svg {
    width: 6vw;
  }

  .road {
    width: 100%;
    height: 0.2vw;
    background-color: var(--main-white);
    position: relative;
    bottom: 0;
    align-self: flex-end;
    border-radius: 3px;
  }

  .road::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: black;
    right: -50%;
    border-radius: 3px;
    animation: roadAnimation 2s linear infinite;
    border-left: 10px solid black;
  }

  .road::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: black;
    right: -65%;
    border-radius: 3px;
    animation: roadAnimation 2s linear infinite;
    border-left: 4px solid white;
  }

  .lampPost {
    fill: #605b55;
    position: absolute;
    bottom: 0;
    right: -90%;
    height: 24vw;
    animation: roadAnimation 2s linear infinite;
  }

  @keyframes roadAnimation {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-100vw);
    }
  }

  .products-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    position: relative;
    margin-bottom: 10vw;
  }

  .products-text {
    color: var(--main-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .products-text p{
    font-size: var(--font-size-ph-p);
  }

  .products-container img {
    z-index: 1;
    width: 80vw;
    height: auto;
    margin-bottom: 4vw;
  }
}
