.about {
	display: flex;
	border-radius: var(--border-radius-default);
	background: var(--color-gray-light);
}
.about__img-wrapper {
	width: 40%;
	line-height: 1;
	overflow: hidden;
}
.about__text-wrapper {
	width: 60%;
}
.about__img-img {
	object-fit: cover;
	object-position: left center;
	height: 100%;
	border-radius: var(--border-radius-default) 0 0 var(--border-radius-default);
	line-height: 1;
}
.about__text-inner {
	padding: var(--px-100);
}

@media (max-width: 1100px) {
	.about__img-wrapper {
		display: none;
	}
	.about__text-wrapper {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.about {
		flex-direction: column;
		margin-left: var(--wrap-padding-minus);
		margin-right: var(--wrap-padding-minus);
		border-radius: 0;
	}
	.about__img-wrapper {
		display: block;
		width: 100%;
		line-height: 1;
		overflow: hidden;
	}
	.about__text-wrapper {
		width: 100%;
	}
	.about__img-img {
		width: 100%;
		border-radius: 0 !important;
		line-height: 1;
		object-fit: initial;
		height: initial;
	}
	.about__text-inner {
		padding: 32px;
	}
}
