.progects{
	margin-top: 50px;
}
.progects__wrap {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
}
.progects__title {
	text-align: center;
	margin-bottom: 25px;
}
.progects__item {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.progects__item.progects__item--reverse {
	flex-direction: row-reverse;
}
.progects__img {
	display: block;
	width: 40%;
	aspect-ratio: 1;
	border-radius: 20px;
	overflow: hidden;
}
.progects__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.progects__content {
	width: 60%;
	padding-top: 20px;
}
.progects__text {
	font-size: 16px;
	color: #383838;
	margin-bottom: 0;
}
.progects__details {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-bottom: 30px;
}
.progects__details dt,
.progects__details dd {
	width: 50%;
	display: flex;
	align-items: flex-end;
	font-size: 16px;
	color: #383838;
	text-wrap: balance;
}
.progects__details dd {
	text-align: right;
}
.progects__details dt:after,
.progects__details dd:before {
	content: '';
	flex-grow: 1;
	border-bottom: 1px dashed #383838;
}

@media screen and (max-width: 599px) {
	.progects__wrap {
		gap: 20px;
	}
	.progects__item,
	.progects__item.progects__item--reverse {
		flex-direction: column;
		gap: 20px;
	}
	.progects__details {
		margin-bottom: 20px;
	}
	.progects__img,
	.progects__content {
		width: 100%;
		padding-top: 0;
	}
	.progects__img {
		height: 200px;
	}
}