.centers{
	position: relative;
	padding: 0;
	padding-top: 85px;
	padding-bottom: 110px;
	cursor: pointer;
	max-height: 1000px;
}
.centers::before{
	content: '';
	display: block;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding-bottom: 42%;
	background-image: url(../images/centers.webp);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
}
@media (max-width: 768px){
	.centers::before{
		display: none;
	}
}
.centers__gallery-link{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1920px;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}
@media (max-width: 768px){
	.centers__gallery-link{
		display: none;
	}
}
.centers .container{
	max-width: 1920px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 60px;
	z-index: 2;
	pointer-events: none;
}
@media (max-width: 1000px){
	.centers .container{
		padding-bottom: 40px;
	}
}
@media (max-width: 600px){
	.centers .container{
		padding-bottom: 30px;
	}
}
@media (max-width: 768px){
	.centers{
		padding-top: 0;
		padding-bottom: 40px;
		cursor: default;
	}
	.centers .container{
		position: relative;
		transform: none;
		left: auto;
		padding-bottom: 0;
	}
}
.centers__inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}
@media (max-width: 1000px){
	.centers__inner{
		gap: 40px;
	}
}
@media (max-width: 600px){
	.centers__inner{
		gap: 30px;
	}
}
.centers__text{	
    font-weight: 500;
    max-width: 900px;
    text-align: center;
    font-size: 48px;
    line-height: 56px;
    color: #292B26;
    pointer-events: auto;
}
.centers__text strong{	
	color: #98A781;
	font-weight:400;
}
@media (max-width: 1400px){
	.centers__text{
		font-size: 32px;
	}
}
@media (max-width: 1000px){
	.centers__text{
		font-size: 20px;
		line-height: 26px;       
	}
}
@media (max-width: 600px){
	.centers__text{
		font-size: 18px;
		line-height: 24px;
        margin-top: 20px;
	}
}
.centers__slider{
	display: none;
}
@media (max-width: 768px){
	.centers__slider{
		display: block;
		width: 100%;
		margin-bottom: 20px;
		position: relative;
		margin-top: 20px;
	}
	.centers__slider-item{
		padding: 0 10px;
		outline: none;
		aspect-ratio: 16 / 9;
		overflow: hidden;
	}
	.centers__slider-item img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		border-radius: 20px;
	}
}
.centers__slider-nav{
	display: none;
}
@media (max-width: 768px){
	.centers__slider-nav{
		display: flex;
		justify-content: center;
		margin-top: 20px;
		padding: 0 10px;
	}
	.centers__slider-nav .slick-dots{
		display: flex;
		align-items: center;
		gap: 8px;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.centers__slider-nav .slick-dots li{
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: #D9D9D9;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}
	.centers__slider-nav .slick-dots li button{
		display: none;
	}
	.centers__slider-nav .slick-dots li.slick-active{
		background-color: #98A781;
	}
}
