.main-swiper.swiper {
  width: 100%;
  height: calc(100vh - 245px);
  position: relative;
  background: black;
}

.main-swiper:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 200px;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5 ) 100%);
	z-index: 999;
}

.main-swiper img {
	opacity: .7;
	width: 100vw;
	height: 100%;
	object-fit: cover;
  animation: breathing 12s infinite ease;
}

.catalog .main-swiper img {
	animation: none;
}

@keyframes breathing {
  0% {
      transform: scale(1.0);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1.0);
  }
}

.main-swiper.swiper .text {
	position: absolute;
	z-index: 1000;
	top: 300px;
	width: 30%;
}

.main-swiper.swiper .text .title {
	color: white;
	font-weight: 600;
	font-size: 2.5em;
	text-transform: uppercase;
	text-shadow: 2px 2px black;
}

.main-swiper.swiper .text .btn {
	border-radius: 10px;
	margin-right: 15px;
}

.main-swiper.swiper .swiper-slide {
	overflow: hidden;
}