﻿.swiper {
  width: 100%;
  height: 100%;
  max-width: 600px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .ImageContainer {
  display: inline-block;
  position: relative;
}

.swiper-slide img {
  display: block;
  /*width: 100%;
    height: 100%;
    object-fit: cover;*/
  max-height: 550px;
  margin-left: auto;
  margin-right: auto;
}

.focalPoint {
  position: absolute;
  background-color: rgba(255, 115, 0, 0.5);
  border: 1px solid #FFF;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  margin: -25px;
}

  .focalPoint.Pointer {
    animation: scalePulse 2s infinite ease-in-out;
  }

  .focalPoint div {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
  }

  .focalPoint img {
    width: 100%;
    height: 100%;
  }

  .focalPoint.ArrowDown div {
    animation: moveDown 1.5s infinite ease-in;
  }

  .focalPoint.ArrowUp div {
    animation: moveUp 1.5s infinite ease-in;
  }

  .focalPoint.ArrowRight div {
    animation: moveRight 1.5s infinite ease-in;
  }

  .focalPoint.ArrowLeft div {
    animation: moveLeft 1.5s infinite ease-in;
  }

@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3); /* Adjust for desired size */
  }
}

@keyframes moveDown {
  0% {
    top: -40%;
    opacity: 0;
  }

  100% {
    top: 30%;
    opacity: 1;
  }
}

@keyframes moveUp {
  0% {
    top: 60%;
    opacity: 0;
  }

  100% {
    top: -20%;
    opacity: 1;
  }
}

@keyframes moveRight {
  0% {
    left: -40%;
    opacity: 0;
  }

  100% {
    left: 30%;
    opacity: 1;
  }
}

@keyframes moveLeft {
  0% {
    left: 40%;
    opacity: 0;
  }

  100% {
    left: -20%;
    opacity: 1;
  }
}