.page-seo #projectHeader {
	text-align: center;
	padding-bottom: 72px;
}

body.page-seo main.projectPres h2 {
	margin-top: 58px;
	margin-bottom: 10px;
}

body.page-seo main.projectPres h2:first-child {
	margin-top: 0 !important;
}

body.page-seo main.projectPres h3,
body.page-seo main.projectPres .page-seo-copy {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	font-size: 16px;
	color: #35434A;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 600px) {
	.page-seo #projectHeader {
		padding-bottom: 34px;
	}

	.page-seo #projectHeader h1 {
		line-height: 1.12;
	}
}

.page-seo-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 29px 0 115px;
}

body.page-seo main.projectPres .page-seo-images + h2 {
	margin-top: 0;
}

.page-seo-images img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px) {
	.page-seo-images {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 60px;
	}

	.page-seo-images img:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.page-seo-images {
		display: block;
		margin: 48px 0 104px;
	}

	body.page-seo main.projectPres .page-seo-images + h2 {
		margin-top: 0;
	}

	.page-seo-images img {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.page-seo-images img:last-child {
		margin-bottom: 0;
	}
}

.about-block {
	text-align: center;
	margin: 46px 0 0;
}

.about-portrait {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.about-contact-links {
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 14px auto 10px;
}

.about-contact-link {
	display: block;
	width: 28px;
	height: 28px;
	text-decoration: none;
	color: #52D089;
}

.about-contact-link:hover {
	color: #2DAC65;
}

.about-contact-link__icon {
	display: block;
	width: 100%;
	height: 100%;
	background-color: currentColor;
	background-repeat: no-repeat;
	background-position: center center;
}

.about-contact-link__icon--phone {
	-webkit-mask-image: url(../images/ic-contact-phone.svg);
	mask-image: url(../images/ic-contact-phone.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 12px 12px;
	mask-size: 12px 12px;
}

.about-contact-link__icon--email {
	-webkit-mask-image: url(../images/ic-contact-email.svg);
	mask-image: url(../images/ic-contact-email.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 13px 13px;
	mask-size: 13px 13px;
}

.about-contact-link__icon--instagram {
	-webkit-mask-image: url(../images/ic-contact-instagram.svg);
	mask-image: url(../images/ic-contact-instagram.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 13px 13px;
	mask-size: 13px 13px;
}

.page-seo-video-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 20px;
	margin: 29px 0 115px;
}

body.page-seo main.projectPres .page-seo-video-grid + h2 {
	margin-top: 0;
}

@media (max-width: 900px) {
	.page-seo-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.page-seo-video-grid {
		grid-template-columns: 1fr;
		row-gap: 30px;
		margin: 48px 0 104px;
	}

	body.page-seo main.projectPres .page-seo-video-grid + h2 {
		margin-top: 0;
	}
}

.page-seo-gallery .page-seo-images {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 6px;
	column-gap: 20px;
	row-gap: 12px;
	margin: 29px 0 115px;
	align-items: start;
}

.page-seo-gallery .page-seo-item {
	position: relative;
	grid-row-end: span 1;
}

.page-seo-gallery .page-seo-item-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: transparent;
}

.page-seo-gallery .page-seo-item img {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
}

.page-seo-gallery .lightbox {
	position: fixed;
	inset: 0;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.page-seo-gallery .lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.page-seo-gallery .lightbox img {
	max-height: 90%;
	max-width: 90%;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.page-seo-gallery-cream .lightbox {
	background: #f2f3ef;
}

.page-seo-gallery .lightbox-arrow {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transform: translateY(-50%);
}

.page-seo-gallery .lightbox-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border-top: 1px solid #00FF7F;
	border-right: 1px solid #00FF7F;
	transform-origin: center;
}

.page-seo-gallery .lightbox-arrow.left {
	left: 30px;
}

.page-seo-gallery .lightbox-arrow.left::before {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.page-seo-gallery .lightbox-arrow.right {
	right: 30px;
}

.page-seo-gallery .lightbox-arrow.right::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 901px) {
	.page-seo-gallery .lightbox-arrow {
		top: 0;
		bottom: 0;
		height: 100%;
		transform: none;
		z-index: 2;
	}

	.page-seo-gallery .lightbox-arrow::before {
		display: none;
	}

	.page-seo-gallery .lightbox-arrow.left {
		left: 0;
		width: 34%;
		cursor: w-resize;
	}

	.page-seo-gallery .lightbox-arrow.right {
		right: 0;
		width: 66%;
		cursor: e-resize;
	}
}

body.page-seo-gallery.lightbox-open {
	overflow: hidden;
}

body.page-seo-gallery.lightbox-open header {
	display: none;
}

body.page-seo-gallery.lightbox-open #close {
	cursor: pointer;
}

@media (min-width: 901px) {
	.page-seo-gallery .page-seo-item.is-featured {
		grid-column: span 2;
	}

	.page-seo-gallery .page-seo-item.is-horizontal.is-wide .page-seo-item-inner {
		max-height: 360px;
	}

	.page-seo-gallery .page-seo-item.is-horizontal.is-wide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 900px) {
	.page-seo-gallery .page-seo-images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 18px;
		row-gap: 14px;
	}

	.page-seo-gallery .page-seo-item.is-featured {
		grid-column: span 1;
	}
}

@media (max-width: 600px) {
	.page-seo-gallery .page-seo-images {
		display: block;
		margin: 48px 0 104px;
	}

	.page-seo-gallery .page-seo-item {
		margin-bottom: 30px;
	}

	.page-seo-gallery .page-seo-item:last-child {
		margin-bottom: 0;
	}

	.page-seo-gallery .page-seo-item-inner {
		max-height: none !important;
		overflow: visible;
	}

	.page-seo-gallery .page-seo-item img {
		cursor: default;
		height: auto !important;
		object-fit: contain !important;
	}
}
