.clinic-services-and-present-section {
	display: flex;
	flex-flow: column;
	background-color: $color-black-100;
	margin-top: 96px;

	@include desktop {
		margin-bottom: calc(194px - (112px / 2));
	}

	@include mobile {
		margin-top: 64px;
	}
}

.clinic-services-and-present-section__main {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: -96px;
	padding: 0 16px;

	@include desktop {
		gap: 64px;
	}

	@include mobile {
		margin-top: -64px;
	}
}

.clinic-services-and-present-section__video-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1024px;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: $color-black-200;

	@include tablet {
		max-width: 704px;
	}

	@include mobile {
		max-width: 328px;
	}
}

.clinic-services-and-present-section__video-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	aspect-ratio: 2 / 2;
	border-radius: 50%;
	background-color: rgba(white, 0.24);

	@include tablet {
		width: 110px;
	}

	@include mobile {
		width: 52px;
	}

	@include support-blur {
		backdrop-filter: blur(5px);
	}

	svg {
		width: 48px;
		height: 64px;
		color: white;

		@include desktop {
			transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		}

		@include tablet {
			width: 33px;
			height: 44px;
		}

		@include mobile {
			width: 15.38px;
			height: 20.5px;
		}
	}

	@include desktop {
		transition:
			background-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
			transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

		&:hover {
			transform: scale(0.8);
			background-color: $color-green-400;

			@include support-blur {
				background-color: rgba($color-green-400, 0.5);
			}

			svg {
				transform: scale(1.15);
			}
		}
	}
}

.clinic-services-and-present-section__grid {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	max-width: 1160px;

	@include desktop {
		margin-bottom: calc(-194px + (112px / 2));
	}

	@include tablet {
		gap: 31px 16px;
		padding: 32px 0;
		max-width: 600px;
		justify-content: center;
	}

	@include mobile {
		gap: 23px 0;
		padding: 16px 0;
		max-width: 400px;
	}
}

.clinic-services-and-present-section__item {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 16px;

	@include desktop {
		flex: 1;
	}

	@include tablet {
		padding: 0 16px;
	}

	@include mobile {
		gap: 8px;
		padding: 0 12px;
	}
}

.clinic-services-and-present-section__item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	aspect-ratio: 2 / 2;
	border-radius: 50%;
	background-color: white;
	border: 0.875px solid $color-black-200;
	box-sizing: border-box;

	@include tablet {
		width: 80px;
	}

	@include mobile {
		width: 64px;
	}

	svg {
		width: 100%;
		aspect-ratio: 2 / 2;
	}
}

.clinic-services-and-present-section__item__text {
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
	text-align: center;
	overflow-wrap: break-word;

	@include tablet {
		width: 100%;
		max-width: 112px;
		font-size: 13px;
		line-height: 15px;
	}

	@include mobile {
		max-width: 88px;
	}
}
