/**
 * Block: About Us (prefix abt_)
 */

.abt_block {
	width: 100%;
}

.abt_wrap {
	max-width: var(--container-max, 1856px);
	margin: 0 auto;
	padding: 48px var(--global-padding, 32px);
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.abt_row {
	width: 100%;
}

.abt_heading {
	margin: 0;
	text-align: center;
}
.abt_richtext{
	width: 80%;
	margin: 0 auto;
	font-weight: 300;
}
.abt_richtext > *:first-child {
	margin-top: 0;
}

.abt_richtext > *:last-child {
	margin-bottom: 0;
}
.big_text{
	font-size: 40px;
    line-height: 40px;
    font-weight: 400;
}

.abt_image_wrap {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
}

.abt_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.abt_image_wrap picture.abt_image {
	display: block;
	width: 100%;
	height: 100%;
}

.abt_image_wrap picture.abt_image > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.abt_columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.abt_col_image {
	width: 100%;
	height: 700px;
}

.abt_col_img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 16px;
}

.abt_col_image picture.abt_col_img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.abt_col_image picture.abt_col_img > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}
.abt_col_text img{
	height: 80px;
	width: auto;
	margin-bottom: 20px;
}
.abt_column_text {
	margin: 0;
}

.abt_time_grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	max-width: 80%;
	margin: 0 auto;
	border-top: 1px solid #EBEBEB;
	padding-top: 32px;
}

.abt_time_col.abt_time_col_details{
	border-right: 1px solid #EBEBEB;
	padding-right: 48px;
}

.abt_time_description {
	margin: 0;
	line-height: 36px;
}

.abt_time_details > *:first-child {
	margin-top: 0;
}

.abt_time_details > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.abt_wrap {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.abt_wrap {
		padding: 32px var(--global-padding, 16px) 0;
		gap: 20px;
	}
	.abt_col_image{
		height: 350px;
	}
	.abt_col_text img{
		margin-bottom: 18px;
	}
	.abt_columns,
	.abt_time_grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.abt_richtext{
		width: 94%;
	}
}