#BigSlider {
	padding-right: 0;
	padding-left: 0; 
}

#BigSlider .slider-item {
    background-position: 50% 50%;
    background-size: cover;
}

#BigSlider .swiper-pagination-bullet-active {
	position: relative;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid #007ec4; 
}

#BigSlider .swiper-pagination-bullet-active:before {
    position: absolute;
    width: 16px;
    height: 16px;
    content: " ";
    left: 2px;
    top: 2px;
    background: #007ec4;
    border-radius: 50%; 
}

#BigSlider .swiper-pagination-bullet {
    margin: 0 4px;
    position: relative;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid #007ec4;
    opacity: 100%; 
}

#BigSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


#BigSlider .swiper-pagination-bullet {
    margin: 0 4px;
    position: relative;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0);
    border: 2px solid #0190e0;
    opacity: 100%;
}


#BigSlider .swiper-content .play_button {
    width: 100px;
    height: 100px;
    background: radial-gradient( rgb(254 186 1 / 80%) 60%, rgba(255, 255, 255, 1) 62%);
    border-radius: 50%;
    position: absolute;
    display: block;
    box-shadow: 0px 0px 25px 3px rgb(254 186 0 / 80%);
	bottom: 5%;

}

/* triangle */
#BigSlider .swiper-content .play_button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
#BigSlider .swiper-content .play_button:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -30%;
  left: -30%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}



#BigSlider .swiper-content .play_button.button_pos_left {
    left: 13%;
}

#BigSlider .swiper-content .play_button.button_pos_center {
    right: 0;
	left: 0;
	margin: auto;
	bottom: 12%;

}

#BigSlider .swiper-content .play_button.button_pos_right {
    left: 78.5%;
}

@media screen and (max-width: 575px) {

	#BigSlider .swiper-content .play_button.button_pos_left {
		left: 3%;
	}
	#BigSlider .swiper-content .play_button.button_pos_right {
		left: 66%;
	}
	#BigSlider .swiper-content .play_button.button_pos_center {
		right: 0;
		left: 0;
		margin: auto;
		bottom: 0;
		top: 0;
	
	}

}

@media (min-width: 576px) and (max-width: 991px) {

	#BigSlider .swiper-content .play_button.button_pos_left {
		left: 10%;
	}
	#BigSlider .swiper-content .play_button.button_pos_center {
		right: 0;
		left: 0;
		margin: auto;
		bottom: 0;
		top: 0;
	
	}

}

@media (min-width: 992px) and (max-width: 1199px) {

	#BigSlider .swiper-content .play_button.button_pos_left {
		left: 11%;
	}

}

@media (min-width: 1200px) and (max-width: 1600px) {

	#BigSlider .swiper-content .play_button.button_pos_left {
		left: 12%;
	}

}