.reviews {
	padding: 80px;
	width: 100%;
}

.reviews_title {
	color: #17252f;
	font-weight: 700;
	font-size: 48px;
	line-height: 56px;
	text-align: center;
}

.reviews_content {
	margin-top: 64px;

	display: flex;
	justify-content: space-between;
	align-items: center;

	flex: 0 0 100%;
}

.review_container {
	padding: 24px;
	background: #ffffff;
	border: 1px solid #f0f1f7;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
	border-radius: 20px;

	max-width: 400px;
	min-height: 385px;
}

.first-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.name {
	color: #17252f;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}

.date {
	color: #878f98;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

.second-row {
	margin-top: 12px;

	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comments {
	margin-top: 24px;

	color: #878f98;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

/* Scroll css */

.slider {
	position: relative;
	overflow: hidden;
}

.slider-content {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.dots {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.dot {
	width: 8px;
	height: 8px;
	background-color: #c4cbd2;
	border-radius: 50%;
	margin: 0 6px;
	cursor: pointer;
}

.dot.active {
	background-color: #878f98;
}

@media screen and (max-width: 767px) {
	.reviews {
		padding: 60px 0;
	}

	.title_main {
		text-align: center;
	}

	.reviews_content {
		margin-top: 48px;
		flex-direction: column;
		gap: 30px;
	}

	.we-look-for-talents {
		padding: 40px 15px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.reviews {
		padding: 60px 15px;
	}

	.reviews_content {
		gap: 24px;
	}

	.review_container {
		padding: 16px;
		height: 620px;
		width: 33%;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
	.reviews {
		padding: 60px 24px;
	}

	.review_container {
		padding: 16px;
		width: 310px;
		height: 450px;
	}
}
