.swiper {
    width: 100%;
    height: 500px;
}



  .swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .slide-content {
    position: absolute;
    right: 30%;
    bottom: 20%;
}
.slide-bg {
    height: 100%;
}
.slide-content-btn a {
    background: #90886f;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    transition: all 0.3s;
}
.slide-content-btn a:hover {
    background: #343a3e;
}

@media only screen and (max-width : 1440px) {
	.slide-content {
		position: absolute;
		right: 23%;
		bottom: 20%;
	}
}
@media only screen and (max-width : 1024px) {
	.slide-content {
		position: absolute;
		right: 14%;
		bottom: 20%;
	}
	.swiper-slide img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.slide-content {
		position: absolute;
		right: 23%;
		bottom: 30%;
	}
}

@media only screen and (max-width : 768px) {
	.slide-content {
		position: absolute;
		right: 23%;
		bottom: 20%;
	}
	.swiper-slide img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.swiper {
		width: 100%;
		height: 200px;
	}
	.slide-content-btn a {
		font-size: 12px;
	}
}

@media only screen and (max-width : 425px) {
	.slide-content {
		position: absolute;
		right: 16%;
		bottom: 30%;
	}

	.slide-content-btn a {
		font-size: 9px;
	}
}