/*!
Theme Name: Beton Konkret
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: beton-konkret
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Beton Konkret is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--container: clamp(calc(100vw - 64px * 2), 92vw, calc(100vw - 18px * 2));
	--gap: 16px;
	--radius: 8px;
	--admin-bar: 32px;

	--brand-blue: #262262;
	--brand-blue-deep: #15133f;
	--brand-gray: #6d6e71;
	--concrete: #f3f4f6;
	--line: #d9dde5;
	--ink: #151622;
	--muted: #5d6270;
	--white: #ffffff;
	--signal: #d4a72c;
	--field: #f9fafb;
	--green: #2d7568;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-weight: 400;
	font-family: Arial, sans-serif;
	line-height: 1.5;
	background: var(--white);
	color: var(--ink);
}
a {
	color: inherit;
	text-decoration: none;
	transition: .5s;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Arial, sans-serif;
	font-weight: 700;
	margin: calc(var(--gap) * 1.5) 0 var(--gap);
	line-height: 1;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
/*h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}*/
p, ul, ol, blockquote {
	margin: 0 0 var(--gap);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--concrete);
}
.wpcf7-form p {
	margin: 0;
}
.wpcf7-form .form-wide,
.wpcf7-form .form-submit,
.wpcf7-response-output {
	grid-column: 1 / -1;
}
.wpcf7-form label {
	display: grid;
	gap: 8px;
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 800;
}
.wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 5px;
	background: var(--white);
	color: var(--ink);
}
textarea.wpcf7-form-control {
	min-height: 126px;
	resize: vertical;
}
.wpcf7-not-valid-tip {
	text-transform: none;
}
.wpcf7-submit {
	display: inline-flex;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 5px;
	background: var(--signal);
	color: var(--brand-blue-deep);
	font-weight: 900;
	cursor: pointer;
}
.wpcf7-spinner {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.bk-fallback-form {
	padding: 18px;
	border: 1px dashed var(--line);
	color: var(--muted);
}
.wpcf7 form .wpcf7-response-output {
	margin: 10px 0 0;
	padding: 10px 16px;
	font-size: 15px;
}


.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}
.w-100 {
	width: 100%;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	font-size: 1rem;
	font-family: Arial, sans-serif;
	font-weight: 800;
	line-height: 1;
	border: 1px solid transparent;
	padding: 0 24px;
	border-radius: 6px;
	outline: none;
	min-height: 46px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn.btn-sm {
	padding: 0 20px;
}
.btn svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}
.btn-primary {
	background-color: var(--brand-blue);
	border-color: var(--brand-blue);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--line);
	color: var(--brand-blue);
}
/*.btn-outline-primary {
	background-color: transparent;
	border-color: var(--grey);
	color: var(--black);
}
.btn-outline-primary:hover {
	background-color: var(--grey);
	border-color: var(--grey);
	color: var(--white);
}
.btn-outline-primary:before,
.btn-outline-primary:after {
	background-color: var(--black);
}
.btn-outline-primary:hover:before,
.btn-outline-primary:hover:after {
	background-color: var(--white);
}
.btn-outline-secondary {
	background-color: transparent;
	border-color: #777777;
	color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: #777777;
	border-color: #777777;
	color: var(--white);
}
.btn-outline-secondary:before,
.btn-outline-secondary:after {
	background-color: var(--white);
}
.btn.btn-link {
	font-weight: 400;
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--black);
	min-width: inherit;
	min-height: inherit;
}
.btn.btn-link.white {
	color: var(--white);
}
.btn.btn-link.red {
	color: var(--red);
}
.btn.btn-link:hover,
.btn.btn-link.white:hover {
	color: var(--red);
}
.btn.btn-link.red:hover {
	color: var(--black);
}
.btn.btn-link:before,
.btn.btn-link:after {
	background-color: var(--black);
}
.btn.btn-link.white:before,
.btn.btn-link.white:after {
	background-color: var(--white);
}
.btn.btn-link.red:before,
.btn.btn-link.red:after {
	background-color: var(--red);
}
.btn.btn-link:hover:before,
.btn.btn-link:hover:after,
.btn.btn-link.white:hover:before,
.btn.btn-link.white:hover:after {
	background-color: var(--red);
}
.btn.btn-link.red:hover:before,
.btn.btn-link.red:hover:after {
	background-color: var(--black);
}
.btn-icon-download:before,
.btn-icon-download:after {
	-webkit-mask-image: url(images/download.svg);
	mask-image: url(images/download.svg);
}
.btn-icon-arrowRight:before,
.btn-icon-arrowRight:after {
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}
.btn-icon-arrowLeft:before,
.btn-icon-arrowLeft:after {
	transform: scale(-1, 1);
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.667);
	gap: calc(var(--gap) / 3);
}
.swiper-pagination-bullet {
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px !important;
	height: 5px !important;
	background: #CFCFCF !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: var(--radius) !important;
	-webkit-border-radius: var(--radius) !important;
	border-radius: var(--radius) !important;
	transition: .5s;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	background: var(--red) !important;
}
.swiper-pagination-bullet-active {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
}


button.swiper-navigation {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: var(--black);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transform: translateY(-50%);
	opacity: 0;
	transition: .5s;
	z-index: 3;
}
button.swiper-navigation.white {
	background: #F0F0F0;
}
*:hover > button.swiper-navigation {
	opacity: 1;
}
button.swiper-navigation:hover,
button.swiper-navigation.white:hover {
	background: var(--red);
}
button.swiper-navigation:disabled {
	background: var(--black);
	opacity: 0;
	cursor: no-drop;
}
button.swiper-navigation.white:disabled {
	background: #F0F0F0;
}
button.swiper-navigation.prev {
	left: -20px;
}
button.swiper-navigation.next {
	right: -20px;
}
button.swiper-navigation:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    background-color: var(--white);
    flex: 0 0 28px;
    max-width: 28px;
    width: 28px;
    height: 28px;
    transition: .5s;
}
button.swiper-navigation.white:before {
	background-color: var(--black);
}
button.swiper-navigation.white:hover:before {
	background-color: var(--white);
}
button.swiper-navigation.prev:before {
	transform: scale(-1, 1);
}
button.swiper-navigation:disabled:before {
	background-color: var(--white);
}
button.swiper-navigation.white:disabled:before {
	background-color: var(--black);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #202020;
	border: 1px solid #4F4F4F;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.soc-links li a:hover {
	background: #4F4F4F;
}
.soc-links li a svg {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.soc-links li a path {
	fill: var(--white);
	transition: .5s;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.mobile-header {
	position: relative;
	padding: var(--gap);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	height: calc(44px + var(--gap) * 2);
	z-index: 1;
}
.mobile-logo {
	max-width: 110px;
}
.mobile-logo img {
	max-height: 44px;
}
.modal-mobile-close {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--red);
}
.mobile-body {
	flex: auto;
	padding: 0 var(--gap) var(--gap);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	font-size: var(--h6-size);
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--light);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--red);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--red);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--red);
	transform: rotate(180deg);
}
.mobile-menu ul {
	max-height: 0;
	overflow: hidden;
	flex: 0 0 100%;
	max-width: 100%;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}
.mobile-menu li.active > ul {
	max-height: 9999px !important;
	margin: 0 0 10px;
}
.mobile-footer {
	position: relative;
	padding: var(--gap);
	background: var(--black);
	color: var(--white);
	z-index: 1;
}
.mobile-footer a {
	color: var(--white);
	text-decoration: none;
}
.mobile-footer a:hover {
	color: var(--red);
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 480px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-dialog.modal-full {
	max-width: var(--container);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 2) var(--gap) var(--gap);
	-moz-border-radius: calc(var(--radius) * 2);
	-webkit-border-radius: calc(var(--radius) * 2);
	border-radius: calc(var(--radius) * 2);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .8;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: calc(var(--gap) / 3);
}
.modal-description {
	text-align: center;
	color: var(--grey);
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--grey);
	width: 32px;
	height: 32px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}


.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: calc(var(--radius) * 2);
	-webkit-border-radius: calc(var(--radius) * 2);
	border-radius: calc(var(--radius) * 2);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - var(--gap)) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
	margin-top: calc(var(--gap) / 4);
	font-style: italic;
}
.alignleft {
	float: left;
	margin-right: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}
*/





.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	position: sticky;
	top: 0;
	border-bottom: 1px solid rgba(38, 34, 98, 0.12);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	z-index: 20;
}
.header-wrap {
	display: grid;
	grid-template-columns: minmax(150px, 240px) 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 82px;
	padding: 16px 0;
}
.brand img {
	width: min(200px, 42vw);
}
.menu-toggle {
	display: none;
}
.nav-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: clamp(16px, 3vw, 34px);
	color: var(--brand-gray);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.nav-links li {
	position: relative;
}
.nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 0;
}
.nav-links li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: var(--brand-gray);
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	transition: .5s;
}
.nav-links li.menu-item-has-children > a:hover:after,
.nav-links li.current-menu-item > a:after {
	background-color: var(--brand-blue);
}
.nav-links li.menu-item-has-children.open > a:after {
	transform: rotate(180deg);
}
.nav-links a:hover,
.nav-links li.current-menu-item > a {
	color: var(--brand-blue);
}
.catalog-panel {
    position: absolute;
    z-index: 40;
    top: calc(100% + 14px);
    left: 50%;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: min(1120px, calc(100vw - 48px));
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 64px rgba(21, 19, 63, 0.16);
    color: var(--ink);
    text-transform: none;
    transform: translateX(-50%);
}
.open > .catalog-panel {
	display: grid;
}
.catalog-direction {
    display: grid;
    align-content: start;
    gap: 4px;
}
.catalog-direction a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: center;
    min-height: 40px;
    padding: 6px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}
.catalog-direction a.with-icon {
	grid-template-columns: 20px 1fr;
}
.catalog-direction .catalog-direction-title {
    grid-template-columns: minmax(0, 1fr) 16px;
    min-height: 58px;
    margin-bottom: 4px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.3;
}
.catalog-direction .catalog-direction-title.with-icon {
	grid-template-columns: 22px minmax(0, 1fr) 16px;
}
.catalog-direction a div {
	width: 18px;
	height: 18px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--signal);
}
.catalog-direction .catalog-direction-title svg:last-child {
    width: 15px;
    height: 15px;
    color: var(--brand-blue);
    transition: .5s;
}
.catalog-direction .catalog-direction-title:hover svg:last-child {
	transform: translateX(3px);
}
.catalog-all {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px !important;
    border-radius: 6px;
    background: var(--concrete);
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: none;
}
.catalog-all svg {
    width: 18px;
    height: 18px;
}





.footer {
	padding: 30px 0;
	border-top: 1px solid var(--line);
	background: #f7f7f8;
}
.footer-wrap {
	display: grid;
	grid-template-columns: minmax(150px, 230px) 1fr auto;
	gap: 24px;
	align-items: center;
}
.footer img {
    width: 210px;
}
.footer div {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
}
.footer strong {
    color: var(--brand-blue);
}
.footer a {
    color: var(--brand-blue);
    font-weight: 900;
}
.footer .footer-credit {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}







.hero-section {
	background: linear-gradient(rgba(38, 34, 98, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 34, 98, 0.055) 1px, transparent 1px), var(--white);
    background-size: 52px 52px;
    padding: clamp(44px, 7vw, 96px) 0 46px;
    min-height: calc(100svh - 126px);
}
.hero-wrap {
	display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 68px);
}
.hero-main {
	align-self: center;
    max-width: 880px;
}
.hero-content p {
	max-width: 740px;
	margin: 26px 0 0;
	color: #303342;
	font-size: clamp(18px, 2.2vw, 26px);
	line-height: 1.42;
}
.hero-content p:first-child {
	margin: 0 0 14px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.hero-content h1 {
	margin: 0;
	color: var(--brand-blue);
	font-size: clamp(58px, 9vw, 132px);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: uppercase;
}
.hero-actions {
	display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: 820px;
	margin-top: 52px;
	border: 1px solid rgba(38, 34, 98, 0.16);
	background: rgba(38, 34, 98, 0.16);
}
.hero-metrics div {
	position: relative;
	min-height: 116px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.84);
}
.metric-icon {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 22px;
	height: 22px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: rgba(38, 34, 98, 0.32);
}
.hero-metrics strong,
.hero-metrics span {
	display: block;
}
.hero-metrics strong {
	color: var(--brand-blue);
	font-size: clamp(22px, 2.6vw, 34px);
	line-height: 1.05;
	text-transform: uppercase;
}
.hero-metrics span {
	margin-top: 10px;
	color: var(--muted);
	font-size: 14px;
}
.hero-side {
	position: relative;
    align-self: center;
    display: grid;
    gap: 14px;
}
.hero-product {
	position: relative;
	min-height: 320px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(38, 34, 98, 0.18);
	border-radius: 8px;
	background: var(--brand-blue-deep);
	box-shadow: 0 24px 70px rgba(21, 19, 63, 0.18);
}
.hero-product::before,
.hero-product::after {
	content: "";
	position: absolute;
	z-index: 2;
	pointer-events: none;
}
.hero-product::before {
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-right-color: transparent;
	border-bottom-color: transparent;
}
.hero-product::after {
	top: 0;
	bottom: 0;
	left: 25%;
	width: 1px;
	background: rgba(255, 255, 255, 0.64);
}
.hero-product > img,
.hero-product > video {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}
.hero-product > video {
	display: block;
}
.hero-product figcaption {
	position: absolute;
	z-index: 3;
	left: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: calc(100% - 36px);
	padding: 13px 15px;
	border-radius: 6px;
	background: rgba(21, 19, 63, 0.9);
	color: var(--white);
	backdrop-filter: blur(12px);
}
.hero-product figcaption i {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: var(--signal);
}
.hero-product figcaption span,
.hero-product figcaption strong {
	display: block;
}
.hero-product figcaption span {
	font-size: 12px;
	line-height: 1.4;
}
.hero-product figcaption strong {
	font-size: 14px;
}
.hero-product-badge {
	position: absolute;
	z-index: 3;
	top: 18px;
	right: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 190px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	background: rgba(255, 255, 255, 0.92);
	color: var(--brand-blue);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}
.hero-product-badge i {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: var(--brand-blue);
}
.quote-panel {
	padding: clamp(24px, 3.4vw, 38px);
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 54px rgba(21, 19, 63, 0.12);
}
.panel-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--signal);
	margin-bottom: 10px;
}
.panel-title-row svg {
	width: 16px;
	height: 16px;
}
.panel-title-row .panel-kicker {
	margin: 0;
}
.quote-panel h2 {
	margin: 0;
	color: var(--brand-blue-deep);
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.05;
}
.quote-panel p:not(.panel-kicker) {
	margin: 18px 0 28px;
	color: var(--muted);
	line-height: 1.55;
}
.contact-strip {
	display: grid;
	gap: 10px;
	margin-top: 22px;
	color: var(--brand-gray);
	font-size: 14px;
}
.contact-strip a {
	display: flex;
	align-items: center;
	gap: 9px;
	overflow-wrap: anywhere;
}
.contact-strip svg {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: var(--brand-blue);
}




.section-band {
	background: linear-gradient(180deg, rgba(38, 34, 98, 0.035), rgba(38, 34, 98, 0)), var(--concrete);
}
.catalog-section,
.process-section,
.geography-section,
.quote-section,
.page-body {
	padding: clamp(64px, 8vw, 112px) 0;
}

.eyebrow,
.panel-kicker,
.page-breadcrumbs {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
	gap: clamp(20px, 5vw, 72px);
	align-items: end;
	margin: 0 0 42px;
}
.section-title {
	max-width: 960px;
}
.section-title .eyebrow {
	margin-bottom: 18px;
}
.section-heading > p:not(.eyebrow) {
	max-width: 590px;
	padding-bottom: 4px;
}
.section-heading.compact {
	display: block;
	max-width: 760px;
}

.section-heading h2,
.production-copy h2,
.geography-section h2,
.custom-copy h2,
.quote-copy h2 {
	margin: 0;
	color: var(--brand-blue-deep);
	font-size: clamp(34px, 4.6vw, 70px);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
}
.section-heading p:not(.eyebrow),
.production-copy p,
.geography-section p,
.custom-copy p,
.quote-copy p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.62;
}
.catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.category-link {
	display: flex;
	min-width: 0;
}
.category-card {
	position: relative;
	min-height: 282px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition:
	transform 200ms ease,
	border-color 200ms ease,
	box-shadow 200ms ease;
	width: 100%;
}
.category-card::after {
	content: "";
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 94px;
	height: 94px;
	border: 1px solid rgba(38, 34, 98, 0.1);
	transform: rotate(45deg);
	transition: transform 240ms ease;
}
.category-card:hover {
	z-index: 1;
	transform: translateY(-5px);
	border-color: rgba(38, 34, 98, 0.34);
	box-shadow: 0 18px 40px rgba(21, 19, 63, 0.1);
}
.category-card:hover::after {
	transform: rotate(45deg) scale(1.25);
}
.category-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.category-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(38, 34, 98, 0.16);
	border-radius: 6px;
	background: rgba(38, 34, 98, 0.055);
	color: var(--brand-blue);
	transition:
	background 200ms ease,
	color 200ms ease,
	transform 200ms ease;
}
.category-card:hover .category-icon {
	transform: rotate(-4deg);
	background: var(--brand-blue);
	color: var(--white);
}
.category-icon i {
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: var(--brand-blue);
	transition: .5s;
}
.category-card:hover .category-icon i {
	background-color: var(--white);
}
.category-more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}
.category-more svg {
	width: 18px;
	height: 18px;
	transition: transform 180ms ease;
}
.category-link:hover .category-more svg {
	transform: translateX(4px);
}
.category-index {
	color: var(--signal);
	font-size: 13px;
	font-weight: 900;
}
.category-card h3 {
	margin: 28px 0 12px;
	color: var(--brand-blue);
	font-size: 24px;
	line-height: 1.08;
}


.showcase-section {
	padding: clamp(54px, 7vw, 90px) 0;
	background: var(--brand-blue-deep);
	color: var(--white);
}
.showcase-wrap {
	display: grid;
	grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: end;
}
.showcase-intro h2 {
	margin: 0;
	max-width: 460px;
	font-size: clamp(30px, 3.7vw, 54px);
	line-height: 1;
}
.showcase-intro .eyebrow {
	color: var(--signal);
}
.showcase-intro > a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	color: var(--white);
	font-weight: 900;
}
.showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.showcase-card {
	position: relative;
	min-height: 420px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #2b2c34;
}
.showcase-card img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	filter: saturate(0.78) contrast(1.04);
	transition:
	transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
	filter 300ms ease;
}
.showcase-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(21, 19, 63, 0.9), transparent 60%);
	pointer-events: none;
}
.showcase-card:hover img {
	transform: scale(1.055);
	filter: saturate(1) contrast(1.02);
}
.showcase-card .showcase-caption {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.45;
}
.showcase-card .showcase-caption i {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	background-color: var(--signal);
}
.showcase-card .showcase-caption span,
.showcase-card .showcase-caption strong {
	display: block;
}
.showcase-card .showcase-caption strong {
	color: var(--white);
	font-size: 16px;
}
.showcase-card .showcase-arrow {
	margin-left: auto;
	width: 18px;
	height: 18px;
	transition: transform 180ms ease;
}
.showcase-card:hover .showcase-arrow {
	transform: translateX(3px);
}



.category-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}
.direction-card {
	min-height: 320px;
}
.direction-count {
	margin-top: 18px;
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}
.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 20px;
}
.tag-row span,
.region-cloud span {
	border: 1px solid rgba(38, 34, 98, 0.14);
	border-radius: 999px;
	background: rgba(38, 34, 98, 0.05);
	color: var(--brand-blue);
	font-size: 12px;
	font-weight: 800;
	padding: 8px 10px;
}




.production-section {
	padding: clamp(64px, 8vw, 116px) 0;
}
.production-wrap {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
	gap: clamp(32px, 5vw, 76px);
	align-items: center;
}
.production-image {
	position: relative;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
	background: var(--concrete);
}
.image-callout {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: calc(100% - 36px);
	padding: 14px 16px;
	border-radius: 6px;
	background: rgba(21, 19, 63, 0.9);
	color: var(--white);
	backdrop-filter: blur(12px);
}
.image-callout i {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--signal);
}
.image-callout span,
.image-callout strong {
	display: block;
}
.image-callout span {
	font-size: 12px;
}
.image-callout strong {
	font-size: 14px;
}
.production-image img {
	width: 100%;
	min-height: 460px;
	object-fit: cover;
}
.production-copy p {
	margin-top: 24px;
}
.strength-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 32px;
}
.strength-list div {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 18px;
	border-left: 4px solid var(--brand-blue);
	background: var(--concrete);
	color: var(--ink);
	font-weight: 800;
	line-height: 1.35;
}
.strength-list i {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--brand-blue);
}



.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}
.process-grid div {
	position: relative;
	min-height: 220px;
	padding: 28px;
	border: 1px solid rgba(38, 34, 98, 0.14);
	border-radius: 8px;
	background: var(--white);
}
.process-grid div > i {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 34px;
	height: 34px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: rgba(38, 34, 98, 0.24);
	transition:
    color 180ms ease,
    transform 180ms ease;
}
.process-grid div:hover > i {
	transform: translateY(-3px);
	background-color: var(--brand-blue);
}
.process-grid span {
	color: var(--signal);
	font-weight: 900;
}
.process-grid h3 {
	margin: 28px 0 12px;
	color: var(--brand-blue);
	font-size: 24px;
}
.process-grid p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}



.geography-wrap {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}
.geography-section p {
	margin-top: 22px;
}
.region-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.region-cloud span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-color: rgba(45, 117, 104, 0.28);
	background: rgba(45, 117, 104, 0.08);
	color: var(--green);
	font-size: 15px;
	padding: 12px 16px;
}
.region-cloud svg {
	width: 16px;
	height: 16px;
}




.custom-section {
	position: relative;
	padding: clamp(54px, 7vw, 90px) 0;
	color: var(--white);
	overflow: hidden;
}
.custom-wrap {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) auto;
	gap: 28px;
	align-items: end;
}
.custom-graphic {
	position: absolute;
	top: 50%;
	right: 7%;
	width: min(28vw, 360px);
	height: min(28vw, 360px);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: rgba(255, 255, 255, 0.07);
	transform: translateY(-50%);
	pointer-events: none;
}
.custom-copy {
	position: relative;
	z-index: 1;
	max-width: 920px;
}
.custom-section > a {
	position: relative;
	z-index: 1;
}
.custom-copy .eyebrow,
.custom-copy h2,
.custom-copy p {
	color: var(--white);
}
.custom-copy p {
	margin-top: 22px;
	opacity: 0.82;
}




.quote-section {
	background: var(--white);
}
.quote-wrap {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 800px);
	gap: clamp(30px, 6vw, 82px);
	align-items: start;
	justify-content: space-between;
}
.quote-copy p {
	margin-top: 22px;
}
.quote-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 34px;
	padding: 22px;
	border-left: 5px solid var(--signal);
	background: var(--concrete);
}
.quote-note > svg {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	color: var(--signal);
}
.quote-note div {
	display: grid;
	gap: 10px;
}
.quote-note strong {
	color: var(--brand-blue);
}
.quote-note span {
	color: var(--muted);
}
.quote-form label {
	display: grid;
	gap: 8px;
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	border: 1px solid #cfd4de;
	border-radius: 6px;
	background: var(--field);
	color: var(--ink);
	outline: none;
	padding: 14px 15px;
	text-transform: none;
}
.quote-form textarea {
	resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px rgba(38, 34, 98, 0.14);
}





.content-hero {
	min-height: 430px;
	padding: clamp(58px, 8vw, 110px) 0;
	background:
	linear-gradient(rgba(38, 34, 98, 0.055) 1px, transparent 1px),
	linear-gradient(90deg, rgba(38, 34, 98, 0.055) 1px, transparent 1px),
	var(--concrete);
	background-size: 52px 52px;
}
.content-hero-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: center;
}
.content-hero-wrap > div {
	max-width: 980px;
}
.content-hero h1 {
	margin: 0;
	color: var(--brand-blue-deep);
	font-size: clamp(58px, 8vw, 116px);
	line-height: 0.9;
	text-transform: uppercase;
}
.content-hero p:not(.eyebrow) {
	max-width: 760px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.55;
}
.content-hero-wrap > i {
	width: clamp(110px, 16vw, 240px);
	height: clamp(110px, 16vw, 240px);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: rgba(38, 34, 98, 0.1);
}
.content-hero-wrap > svg {
    width: clamp(110px, 16vw, 240px);
    height: clamp(110px, 16vw, 240px);
    color: rgba(38, 34, 98, 0.1);
    stroke-width: 0.8;
}




.contacts-section {
	padding: clamp(64px, 8vw, 112px) 0;
}
.contacts-wrap {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 0.9fr);
	gap: clamp(34px, 7vw, 100px);
	align-items: start;
}
.contacts-list {
	display: grid;
	gap: 1px;
	background: var(--line);
}
.contact-item {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 18px;
	align-items: center;
	min-height: 116px;
	padding: 24px;
	background: var(--white);
}
.contact-item > svg {
	width: 30px;
	height: 30px;
	color: var(--brand-blue);
}
.contact-item span,
.contact-item small,
.contact-item strong {
	display: block;
}
.contact-item small {
	margin-bottom: 7px;
	color: var(--brand-gray);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}
.contact-item strong {
	overflow-wrap: anywhere;
	color: var(--brand-blue);
	font-size: clamp(17px, 2vw, 24px);
}
.contact-form {
	padding: clamp(26px, 4vw, 46px);
}
.form-heading h2 {
	margin: 0 0 12px;
	color: var(--brand-blue-deep);
	font-size: clamp(30px, 3.5vw, 48px);
	line-height: 1;
}


.featured-post {
	display: grid;
	grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.8fr);
	gap: clamp(30px, 6vw, 82px);
	align-items: center;
	padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
}
.featured-post figure {
	min-height: 520px;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}
.featured-post img {
	width: 100%;
	min-height: 520px;
	object-fit: cover;
}
.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--brand-gray);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}
.post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.post-meta span:first-child {
	color: var(--brand-blue);
}
.post-meta svg {
	width: 15px;
	height: 15px;
}
.featured-post h2 {
	margin: 20px 0 0;
	color: var(--brand-blue-deep);
	font-size: clamp(34px, 4.4vw, 64px);
	line-height: 1;
}
.featured-post p {
	margin: 22px 0 30px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.62;
}


.blog-section {
	padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
	background: var(--concrete);
}
.blog-title {
	margin-bottom: 38px;
}
.blog-title h2 {
	margin: 0;
	color: var(--brand-blue-deep);
	font-size: clamp(34px, 4.6vw, 66px);
	line-height: 1;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.blog-card {
	display: flex;
	min-height: 480px;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
}
.blog-card-image {
	display: block;
	min-height: 210px;
	overflow: hidden;
	padding: 0 !important;
}
.blog-card-image img {
	aspect-ratio: 2 / 1;
	object-fit: cover;
	transition: transform 360ms ease;
}
.blog-card:hover .blog-card-image img {
	transform: scale(1.045);
}
.blog-card > .post-meta,
.blog-card > h3,
.blog-card > p,
.blog-card > .blog-card-link {
	margin-right: 22px;
	margin-left: 22px;
}
.blog-card > .post-meta {
	margin-top: 22px;
}
.blog-card h3 {
	margin-top: 18px;
	margin-bottom: 0;
	color: var(--brand-blue);
	font-size: 23px;
	line-height: 1.12;
}
.blog-card p {
	margin-top: 14px;
	margin-bottom: 20px;
	color: var(--muted);
	line-height: 1.55;
}
.blog-card-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding: 18px 0 22px;
	border-top: 1px solid var(--line);
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}
.blog-card-link svg {
	width: 18px;
	height: 18px;
}



.navigation.pagination {
	margin-top: clamp(24px, 4vh, 48px);
}
.navigation.pagination .nav-links {
	flex-direction: row;
	align-items: flex-end;
	gap: clamp(4px, 1vw, 8px);
	color: var(--brand-gray);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.navigation.pagination .nav-links .page-numbers {
	padding: 10px 2px;
}
.navigation.pagination .nav-links .page-numbers:not(.dots) {
	min-height: 40px;
	min-width: 40px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.navigation.pagination .nav-links .page-numbers:not(.dots):hover,
.navigation.pagination .nav-links .page-numbers.current {
	background: var(--brand-blue);
	color: var(--white);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-bottom: 34px;
	color: var(--brand-gray);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}
.breadcrumbs a:hover {
	color: var(--brand-blue);
}
.breadcrumbs strong {
	color: var(--brand-blue);
}


.article-page {
	padding: clamp(48px, 7vw, 96px) 0 clamp(70px, 9vw, 130px);
	background: var(--white);
}
.article-header {
	max-width: 1080px;
	margin: 0 auto 46px;
}
.article-header h1 {
	margin: 22px 0 0;
	color: var(--brand-blue-deep);
	font-size: clamp(42px, 6vw, 86px);
	line-height: 0.98;
}
.article-header > p {
	max-width: 860px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.55;
}
.article-image {
	max-width: 1240px;
	min-height: 560px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 8px;
}
.article-image img {
	width: 100%;
	min-height: 560px;
	object-fit: cover;
}
.article-layout {
	max-width: 1080px;
	margin: clamp(50px, 7vw, 86px) auto 0;
}
.article-body {
	display: grid;
	gap: 24px;
}
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
	margin: 0;
	color: var(--brand-blue);
	line-height: 1.15;
}
.article-body h1 {
	font-size: 32px;
}
.article-body h2 {
	font-size: 28px;
}
.article-body h3 {
	font-size: 24px;
}
.article-body h4 {
	font-size: 22px;
}
.article-body h5 {
	font-size: 20px;
}
.article-body h6 {
	font-size: 18px;
}
.article-body p {
	margin: 14px 0 0;
	color: #414552;
	font-size: 18px;
	line-height: 1.72;
}
.article-body h1 + p,
.article-body h2 + p,
.article-body h3 + p,
.article-body h4 + p,
.article-body h5 + p,
.article-body h6 + p {
	margin-top: 0;
}
.article-back a {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--brand-blue);
	font-weight: 900;
}
.article-back a span {
	display: flex;
	align-items: center;
	gap: 9px;
}
.article-back svg {
	width: 18px;
	height: 18px;
}
.article-back {
	max-width: 1080px;
	margin: 60px auto 0;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}


.navigation.post-navigation .nav-links {
	flex-direction: row;
	justify-content: space-between;
}
.navigation.post-navigation .nav-links > div {
	flex: 1;
}
.navigation.post-navigation .nav-links .nav-next {
	margin-left: auto;
	text-align: right;
}
.navigation.post-navigation .nav-links .nav-next svg {
	transform: rotate(180deg);
}



.category-cta {
	padding: clamp(54px, 7vw, 90px) 0;
	background: var(--brand-blue-deep);
	color: var(--white);
}
.category-cta-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	align-items: end;
}
.category-cta-wrap > div {
	max-width: 950px;
}
.category-cta .eyebrow {
	color: var(--signal);
}
.category-cta h2 {
	margin: 0;
	font-size: clamp(34px, 4.8vw, 68px);
	line-height: 1;
}
.category-cta p:not(.eyebrow) {
	max-width: 760px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.6;
}