.blurred-circle1 {
  position: absolute;
  top: 0;
  right: 50%;
  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);
}

.delivery-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8vw;
}

.delivery-text{
  margin: 0 7vw;
  color: var(--main-grey);
}

.delivery-text h2{
  background-color: var(--main-blue);
  color: var(--main-white);
  padding: 1vw;
  border-radius: 25px;
  font-size: var(--font-size-pc-m-h);
  display: inline-block;
  margin: 0;
}

.delivery-text p{
  text-align: justify;
  font-size: var(--font-size-pc-p);
}

.delivery-container-img {
  z-index: 2;
  margin: 0 5vw;
  border-radius: 5px;
  width: 40vw;
  height: auto;
  opacity: 0.5;
  transform: scale(0.8);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.animate {
  opacity: 1;
  transform: scale(1);
}

.rectangle {
  z-index: 0;
  position: absolute;
  width: 40vw;
  height: 20vw;
  border-radius: 5px;
}

.rectangle:nth-child(1) {
  border: 1vw solid var(--main-blue);
  background: transparent;
  top: -3vw;
  left: 7vw;
  opacity: 0;
  animation: moveVertical1 1s ease-out forwards, opacity 0.5s ease-in-out;
}

.rectangle:nth-child(2) {
  background: var(--main-blue);
  height: 25vw;
  width: 35vw;
  top: 1vw;
  left: 6vw;
  opacity: 0;
  animation: moveDiagonal2 1s ease-out forwards, opacity 0.5s ease-in-out;
}

.rectangle:nth-child(3) {
  background: transparent;
  width: 30vw;
  height: 20vw;
  top: 5vw;
  left: 10vw;
  position: absolute;
  opacity: 0;
  animation: moveDiagonal3 1.5s ease-out forwards, opacity 0.5s ease-in-out;
  animation-delay: 0.5s;
}

@keyframes moveDiagonal3 {
  from {
    top: 5vw;
    left: 10vw;
  }
  to {
    opacity: 1;
    top: 10vw;
    left: 20vw;
  }
}

@keyframes moveDiagonal2 {
  from {
    top: 1vw;
    left: 6vw;
  }
  to {
    opacity: 1;
    top: 3vw;
    left: 4vw;
  }
}

@keyframes moveVertical1 {
  from {
    top: -15vw;
    left: 14vw;
  }
  to {
    opacity: 1;
    top: -3vw;
    left: 7vw;
  }
}

.rectangle:nth-child(3)::before {
  border-radius: 5px;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(83, 189, 3, 0.84) 25%, transparent 25%, transparent 50%, rgba(83, 189, 3, 0.84) 50%, rgba(83, 189, 3, 0.84) 75%, transparent 75%, transparent);
  background-size: 3vw 3vw;
}

.advantages-container{
  margin-top: 7vw;
}

.services {
  margin: 13vw auto 4vw auto;
  padding: 0 15vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services h2 {
  text-align: center;
  margin: 0 auto 2vw auto;
  color: var(--main-white);
  font-size: var(--font-size-pc-m-h);
  background-color: var(--main-blue);
  display: block;
  width: fit-content;
  padding: 1vw 1.5vw;
  border-radius: 25px;
}

.service-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  justify-content: space-between;
  gap: 4vw;
}

.service-item {
  width: 15vw;
  position: relative;
  margin-bottom: 2vw;
  padding: 1.5vw;
  border: 2px solid var(--main-salat);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item h3 {
  text-align: center;
  color: var(--main-white);
  font-size: var(--font-size-pc-h);
  margin: 0;
}

.service-item h3::before {
  content: "✔";
  position: absolute;
  top: -1.7vw;
  left: -1.7vw;
  font-size: var(--font-size-pc-h);
  color: black;
  background-color: var(--main-salat);
  padding: 0.5vw 1vw;
  border-radius: 50%;
}

.services h2,
.service-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.service-item.animate {
  opacity: 1;
  transform: scale(1);
}

.service-item {
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-item {
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  opacity: 0;
}

.service-item.animate {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--delay, 0s);
}

.advantages {
  max-width: 70vw;
  margin: 2vw auto;
  padding: 1.5vw;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--main-blue);
}

.advantages h2 {
  margin: 1vw auto 3vw auto;
  background-color: var(--main-blue);
  display: block;
  width: fit-content;
  padding: 1vw 1.5vw;
  border-radius: 25px;
  text-align: center;
  color: var(--main-white);
  font-size: var(--font-size-pc-m-h);
}

.advantage {
  margin-bottom: 0;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advantage h3 {
  display: inline-block;
  margin:0;
  color: var(--main-white);
  font-size: var(--font-size-pc-h);
  position: relative;
  padding-left: 3.5vw;
}

.advantage h3::before {
  content: attr(data-number);
  display: inline-block;
  width: 2.5vw;
  height: 2.5vw;
  line-height: 2.5vw;
  text-align: center;
  font-size: var(--font-size-pc-h);
  color: black;
  background-color: var(--main-salat);
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.advantage p {
  text-align: justify;
  color: var(--main-white);
  font-size: var(--font-size-pc-p);
  line-height: 1.6;
}

.advantages h2,
.advantage {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.advantage {
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.advantage.animate {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--delay, 0s);
}


@media (max-width: 768px) {
  .delivery-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 8vw;
  }

  .delivery-text{
    margin: 10vw 7vw 0 7vw;
    color: var(--main-grey);
  }

  .delivery-text h2{
    background-color: var(--main-blue);
    color: var(--main-white);
    padding: 2vw;
    border-radius: 10px;
    font-size: var(--font-size-ph-m-h);
    display: inline-block;
    margin: 0;
  }

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

  .delivery-container img {
    z-index: 2;
    margin: 0 5vw;
    border-radius: 5px;
    width: 70vw;
    height: auto;
  }

  .rectangle {
    z-index: 0;
    position: absolute;
    width: 60vw;
    height: 40vw;
    border-radius: 5px;
  }

  .rectangle:nth-child(1) {
    border: 1vw solid var(--main-blue);
    background: transparent;
    top: -15vw;
    left: 2vw;
    opacity: 0;
    animation: moveVertical1 1s ease-out forwards, opacity 0.5s ease-in-out;
  }

  .rectangle:nth-child(2) {
    background: var(--main-blue);
    height: 35vw;
    width: 65vw;
    top: 1vw;
    left: 20vw;
    opacity: 0;
    animation: moveDiagonal2 1s ease-out forwards, opacity 0.5s ease-in-out;
  }

  .rectangle:nth-child(3) {
    background: transparent;
    width: 50vw;
    height: 30vw;
    top: 5vw;
    left: 20vw;
    position: absolute;
    opacity: 0;
    animation: moveDiagonal3 1s ease-out forwards, opacity 0.5s ease-in-out;
    animation-delay: 0.5s;
  }

  @keyframes moveDiagonal3 {
    from {
      top: 5vw;
      left: 20vw;
    }
    to {
      top: 20vw;
      left: 40vw;
      opacity: 1;
    }
  }

  @keyframes moveDiagonal2 {
    from {
      top: 1vw;
      left: 20vw;
    }
    to {
      top: 18vw;
      left: 10vw;
      opacity: 1;
    }
  }

  @keyframes moveVertical1 {
    from {
      top: -15vw;
      left: 2vw;
    }
    to {
      top: -5vw;
      left: 28vw;
      opacity: 1;
    }
  }

  .rectangle:nth-child(3)::before {
    border-radius: 5px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(83, 189, 3, 0.84) 25%, transparent 25%, transparent 50%, rgba(83, 189, 3, 0.84) 50%, rgba(83, 189, 3, 0.84) 75%, transparent 75%, transparent);
    background-size: 3vw 3vw;
  }

  .advantages-container{
    margin-top: 0;
  }

  .services {
    margin: 13vw auto 4vw auto;
    padding: 0 3vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .services h2 {
    text-align: center;
    margin: 0 auto 2vw auto;
    color: var(--main-white);
    font-size: var(--font-size-ph-m-h);
    background-color: var(--main-blue);
    display: block;
    width: fit-content;
    padding: 2vw 2.5vw;
    border-radius: 10px;
  }

  .service-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: space-between;
    gap: 2vw;
  }

  .service-item {
    width: 30vw;
    position: relative;
    margin-bottom: 2vw;
    padding: 1.5vw;
    border: 2px solid var(--main-salat);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-item h3 {
    text-align: center;
    color: var(--main-white);
    font-size: 3vw;
    margin: 0;
  }

  .service-item h3::before {
    content: "✔";
    position: absolute;
    top: -2vw;
    left: -2vw;
    font-size: 3.5vw;
    color: black;
    background-color: var(--main-salat);
    padding: 0.5vw 1vw;
    border-radius: 50%;
  }

  .advantages {
    max-width: 90vw;
    margin: 4vw auto;
    padding: 1.5vw;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--main-blue);
  }

  .advantages h2 {
    margin: 1vw auto 3vw auto;
    background-color: var(--main-blue);
    display: block;
    width: fit-content;
    padding: 1vw 1.5vw;
    border-radius: 10px;
    text-align: center;
    color: var(--main-white);
    font-size: var(--font-size-ph-m-h);
  }

  .advantage {
    margin-bottom: 0;
    padding: 3px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .advantage h3 {
    display: inline-block;
    margin:0;
    color: var(--main-white);
    font-size: var(--font-size-ph-p);
    position: relative;
    padding-left: 6vw;
  }

  .advantage h3::before {
    content: attr(data-number);
    display: inline-block;
    width: 5vw;
    height: 5vw;
    line-height: 5vw;
    text-align: center;
    font-size: var(--font-size-ph-p);
    color: black;
    background-color: var(--main-salat);
    border-radius: 50%;
    position: absolute;
    left: 0;
  }

  .advantage p {
    color: var(--main-white);
    font-size: var(--font-size-ph-p);
    line-height: 1.6;
  }
}
