﻿.servicesZone {
	width: min(1600px, calc(100% - 180px));
	margin: 100px auto 100px;
	position: relative;
}
.servicesZone h2 strong {
	position: relative;
	color: #fff;
	margin: 0 5px;
	white-space:nowrap;
	isolation: isolate;
}
.servicesZone h2 strong::after {
	content: '';
	position: absolute;
	width: 107%;
	height: 100%;
	background: var(--primary);
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	z-index:-1;
}

.servicesZone .topZone {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 50px;
}
.servicesZone .topZone h2 {
	width: 100%;
	text-align:center;
}

.servicesZone .topZone .navigation {
	display: flex;
	position: absolute;
	width: calc(100% + 120px);
	justify-content: space-between;
	margin: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
	z-index: 10;
}

.servicesZone .topZone .navigation li {
	display: flex;
	list-style-type: none;
	width: 40px;
	height: 40px;
	background: var(--dark);
	justify-content: center;
	align-items: center;
	color: #fff;
	cursor: pointer;
	border-radius: var(--radius);
}
.servicesZone .slider {
	position: relative;
}

.servicesZone .items {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 50px;
}

/*.servicesZone .items {
	position: relative;
	width: 100%;
	white-space: nowrap;
	font-size: 0;
	overflow: hidden;
	transition: 0.3s ease;
	display: flex;
	gap: 20px;
}*/


.servicesZone .item {
	display: inline-block;
	user-select: none;
	/*min-width: calc(100%/4 - 16px);*/
	width: calc(100%/3 - 35px);
	font-size: 33px;
	font-weight: bold;
	background: var(--platform);
	padding: 30px;
	border-radius: var(--radius);
	height: 600px;
	position: relative;
	backdrop-filter: blur();
	transition: .3s;
	text-decoration: none;
	color: var(--dark);
}
.servicesZone .item::after {
	content: '';
	position:absolute;
	background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
	bottom: 0;
	left:0;
	width:100%;
	height: 2px;
	opacity: 0;
	transition: .3s;
}
.servicesZone .item:hover::after {
	opacity:1;
}
.servicesZone .item h3 {
	font-weight: var(--medium);
	font-size: 26px;
	white-space: wrap
}
.servicesZone .item p{
	white-space :wrap;
	font-size: 14px;
	font-weight: var(--light);
	line-height: 1.2em;
}
.servicesZone .item p strong {
	font-weight: var(--bold);
	color: var(--primary);
}
.servicesZone .item .image {
	position: absolute;
	inset:0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.servicesZone .item .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: var(--radius);
}
.servicesZone .item:last-child {
	font-size: 14px;
	font-weight: var(--light);
}
.servicesZone .item .btnFollowUp {
	position: absolute;
	left: 20px;
	bottom: 20px;
	height: 41px;
	width: 41px;
	display: flex;
	align-items:center;
	background: var(--dark);
	color: #fff;
	padding: 8px 12px;
	border-radius: var(--radius);
	gap: 5px;
	font-weight: var(--light);
	font-size: 22px;
	transition: .3s;
	text-decoration: none;
}
.servicesZone .item .btnFollowUp span {
	width: 0;
	overflow:hidden;
	white-space: nowrap;
	transition: .3s;
	display: flex;
	font-size: 16px;
}
.servicesZone .item .btnFollowUp i {
	transition: .3s;
	margin-left: -6px;
}
.servicesZone .item:hover .btnFollowUp i {
	transform: rotate(180deg);
}
.servicesZone .item:hover .btnFollowUp {
	width: 115px;
}
.servicesZone .item:hover .btnFollowUp span {
	width: 100%;
}
@media (max-width: 1600px) {
	.servicesZone .item h3 {
		font-size: 21px;
	}
	.servicesZone .item p {
		font-size: 12px;
	}
	.servicesZone .item {
		height: 500px;
	}
}
@media (max-width: 1400px) {
	.servicesZone .item p {
		display: none;
	}
	.servicesZone .item {
		height: 400px;
	}
}
@media (max-width: 1200px) {
	.servicesZone {
		margin: 75px auto
	}
	.servicesZone .items {
		gap:20px;
	}
	.servicesZone .item {
		/*min-width: calc(100%/3 - 35px);*/
		width : calc(100%/3 - 15px);
		padding: 20px;
	}

	.servicesZone .item h3 {
		font-size: 17px;
	}
}
@media (max-width: 992px) {

	.servicesZone .item {
		height: 320px;
	}
}
@media (max-width: 768px) {
	.servicesZone {
		margin: 50px auto;
	}
	.servicesZone .item {
		min-width: calc(100%/2 - 10px);
	}
}
@media (max-width: 600px) {
	.servicesZone .item {
		min-width: calc(100%/2 - 10px);
	}
	.servicesZone {
		width: 100%;
	}
	.servicesZone .topZone {
		flex-direction:column;
		margin-bottom: 10px;
		text-align:center;
	}
	.servicesZone .topZone .navigation li {
		width: 30px;
		height: 30px;
	}
	.servicesZone .topZone .navigation {
		position: unset;
		width: 100%;
		justify-content: space-between;
		gap: 20px;
		transform: unset;
	}
}

@media (max-width: 500px) {
	.servicesZone {
		margin: 30px auto;
	}
}
@media (max-width: 500px) {
	.servicesZone .item {
		min-width: calc(100%/2 - 10px);
	}
}
@media (max-width: 400px) {
	.servicesZone .item {
		min-width: calc(100%/1 - 10px);
		height: 350px;
	}
}