
	.sliderMain {
		position: relative;
		max-width: 1200px;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.sliderMain .slick-list {
		position: relative;
		display: block;
		height: 350px;
		border-radius: 33px;
		background: linear-gradient(#005f9a 0%, rgba(115, 214, 221, 0.8) 100%);
		transition: all .3s ease-out;
	}

	.slide {
		height: 350px;
	}

	.infoBlock_back {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		*background: rgba(0, 0, 0, 0.25);
		transition: all .3s ease-out;
	}

	.sliderMain .slick-slide .caption_inner {
		position: absolute;
		display: inline-block;
		width: 100%;
		top: 53%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 9;
		border-radius: 3px;
		text-align: center;
	}

	.caption_inner .video {
		position: relative;
		display: inline-block;
		width: 340px;
		height: 190px;
		margin-right: 20px;
		vertical-align: top;
		overflow: hidden;
		border-radius: 11px;
	}

	.caption_inner .infoBlock {
		display: inline-block;
		text-align: left;
		width: 40%;
		height: auto;
		font-size: 36px;
		line-height: 38px;
		color: white;
		vertical-align: top;
	}

	.infoBlock h2 {
		font-size: 32px;
		line-height: 34px;
		margin: 0 0 10px;
		color: white;
	}

	.infoBlock p {
		font-size: 16px;
		line-height: 21px;
		color: white;
		margin: 0 0 10px;
	}

	.button {
		position: relative;
		display: inline-block;
		text-decoration: none;
		cursor: pointer;
		color: #C6007E;
		background: white;
		border: 1px solid transparent;
		white-space: nowrap;
		font-family: inherit;
		vertical-align: middle;
		text-align: center;
		font-size: 12px;
		line-height: 36px;
		padding: 0 25px;
		margin: 10px auto;
		font-weight: 700;
		border-radius: 20px;
		user-select: none;
		-webkit-appearance: none;
		box-shadow: 0 12px 12px -6px rgb(172, 32, 134, 0.3);
	}

	.button:hover {
		background: #C6007E;
		color: white;
	}

	.slick-prev {
		left: 3px;
		background-position: left bottom;
	}

	.slick-next {
		right: 3px;
		background-position: right bottom;
	}

	@media only screen and (max-width:1200px) {
		.sliderMain .slick-list {
			border-radius: 0;
		}

		.sliderMain {
			*padding: 0 20px;
		}

		.slick-list {
			border-radius: 0;
		}
	}

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

		.sliderMain .slick-list {
			height: 300px;
		}

		.caption_inner .video {
			display: none;
		}

		.caption_inner .infoBlock {
			text-align: center;
			width: 80%;
			font-size: 28px;
			line-height: 32px;
		}


		.infoBlock h2 {
			font-size: 28px;
			line-height: 36px;
		}

		.infoBlock p {
			font-size: 18px;
			line-height: 24px;
			margin: 0 0 10px;
		}
	}

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

		.sliderMain,
		.slick-slide {
			height: 250px;
		}

		.slide img {
			position: absolute;
			width: auto;
			height: 250px;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
		}

		.infoBlock h2 {
			width: 100%;
			font-size: 18px;
			line-height: 21px;
		}

		.infoBlock p {
			font-size: 14px;
			line-height: 16px;
			margin: 0 0 5px;
		}
	}