section.shk-slider {
    overflow: hidden;
	position: relative;
}
.shkSwiper{
	overflow: hidden;
	margin: 110px;
}
  
  .shk-slide {
	display: flex;
	height: auto;
	justify-content: center;
  }
  
  .shk-content {
	display: flex;
	height: 100%;  
	align-items: center;
	max-width: 1200px;
	width: 100%;
	gap: 80px;
  }
  
  .shk-image img {
	max-width: 536px;
	width: 100%;
  }
  
  .shk-text {
	max-width: 500px;
  }
  
  .shk-label {
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0%;
	text-transform: uppercase;
	margin-bottom: 20px;
  }
  
  .shk-text .shk-title {
	font-weight: 500;
	font-size: 40px;
	line-height: 44px;
	letter-spacing: -2%;	
	margin-bottom: 40px;
  }
  
  .shk-text p {
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0%;
	color: #000000B8;	
	margin-bottom: 40px;
  }
  
  .shk-btn {
	display: inline-block;
	background: #FF0000;
	color: #fff;
	padding: 12px 16px;
	border-radius: 4px;
	text-decoration: none;
	transition: 0.3s;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0%;

  }
  
  
  /* Стрелки */
  .shk-button-prev,
  .shk-button-next {
	z-index: 100;
	position: absolute;
	color: #000;
	background-color: #fff;
	width: 56px;
	display: flex;
	justify-content: center;
    align-items: center;
	height: 56px;
	border: 1px solid #D5D5D6;
	border-radius: 50%;
  }
  .shk-button-prev{
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  }
  .shk-button-next{
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  }
  .swiper-wrapper{
	align-items: stretch;
  }

  @media (max-width: 1023px){
	.shk-content{
		flex-direction: column;
		gap: 30px;
		justify-content: space-between;
		
	}
	.shkSwiper{
		margin: 30px 0;
	}
	section.shk-slider{

		padding: 0;
	}
	.shk-text{
		margin: 0 20px;
	}
	.shk-label{
		margin-bottom: 16px;
	}
	.shk-text .shk-title{
		font-weight: 500;
		font-size: 32px;
		line-height: 34px;
		letter-spacing: -2%;
		margin-bottom: 16px;
		hyphens: none;
	}
	.shk-button-prev {
		top: auto;
        bottom: 30px;
		left: 62%;
	}
	.shk-button-next{
		top: auto;
        bottom: 30px;
		left: 80%;
	}	
  }

