/* Style the video to cover the section */

.background-video {
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* VİDEOsLİDER */

body {
  overflow-x: hidden;
  /*padding-right: calc(100vw - 100%);*/
}

/* nexand prev button swiper */

.swiper-button-prev {
}

@media (max-width: 576px) {
  .swiper-button-prev, .swiper-button-next {
    padding-top: 240px;
    padding-bottom: 240px;
    padding-left: 30px;
    padding-right: 30px;
    top: 10vh;
  }
}

.bluredBackground {
  background-color: rgba(230,228,228,0.84);
  z-index: 5!important;
  border-radius: 20px;
}

/* sticky navbar */

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #444;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  z-index: 999;
  animation: slideDown 0.3s forwards ease;
  overflow: hidden;
}

/* SlideDown animation */

@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .swiper-button-next {
    padding-bottom: 149px;
    padding-top: 103px;
  }
}

@media (max-width: 600px) {
  .swiper-button-prev {
    padding-bottom: 149px;
    padding-top: 103px;
  }
}

