.example {
  background: linear-gradient(to top right, #D7DBE0, #D7DBE0 20%, #fff 100%);
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.example__container {
  position: relative;
}

.example__title {
  margin-bottom: 70px;
}

.example__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}

.example__pagination .swiper-pagination-bullet {
  width: 90px; 
  height: 3px; 
  border-radius: 0;
  background: rgba(205, 210, 216, 1);
  opacity: 1;
  transition: all 0.3s ease;
}

.example__pagination .swiper-pagination-bullet-active {
  background: #FF1493; 
  transform: none; 
}

.example__swiper {
  overflow: hidden;
}

.example__wrapper {
  display: flex;
  align-items: stretch;
}

.example__slide {
  width: calc(100% / 3);
  flex-shrink: 0;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .example__slide {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .example__slide {
    width: 50%;
  }
}

.example__img {
  width: 100%;
  border-radius: 16px;
}

.examle__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.examle__bg-img {
  animation: example-ellipse 60s ease-in-out infinite;
}

@keyframes example-ellipse {
  0% {
    transform: rotate(-45deg) scale(1);
  }
  25% {
    transform: rotate(45deg) scale(1.2);
  }
  50% {
    transform: rotate(-45deg) scale(1);
  }
  75% {
    transform: rotate(45deg) scale(.8);
  }
  100% {
    transform: rotate(-45deg) scale(1);
  }
}

@media (max-width:1200px) {
  .example {
    padding: 100px 0 64px 0;
  }
}

@media (max-width:1024px) {
  .examle__bg {
    display: none;
  }
}

@media (max-width:768px) {
  .example__pagination {
    gap: 3px;
  }
  .example__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }
}
