:root {
	--bc-dark: #0f172a;
	--bc-dark-2: #111827;
	--bc-white: #ffffff;
	--bc-text-light: #cbd5e1;
	--bc-gold: #d6b45f;
	--bc-border: rgba(255,255,255,.10);
	--bc-transition: .25s ease;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Manrope', Arial, sans-serif;
	background: #f8fafc;
	color: var(--bc-dark);
}

a,
button {
	transition: color var(--bc-transition), background var(--bc-transition), border-color var(--bc-transition), opacity var(--bc-transition), transform var(--bc-transition);
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.site-header {
	padding-bottom: 4px;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--bc-dark);
	border-bottom: 1px solid var(--bc-border);
	position: relative;
}

.site-header__inner {
	width: 100%;
	height: 80px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	max-width: 1416px;
	margin: auto;
	box-sizing: border-box;
}

.site-header__logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-header__logo img {
	display: block;
	width: 226px;
	height: auto;
}

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.site-menu a {
	display: flex;
	align-items: center;
	height: 80px;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
	color: #cbd5e1;
	white-space: nowrap;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a {
	color: #ffffff;
}

.site-menu .menu-item-has-children > a:after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 9px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .75;
}

.site-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 240px;
	margin: 0;
	padding: 12px;
	list-style: none;
	background: var(--bc-dark-2);
	border: 1px solid var(--bc-border);
	box-shadow: 0 22px 50px rgba(0,0,0,.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--bc-transition), visibility var(--bc-transition), transform var(--bc-transition);
}

.site-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 5;
}

.site-menu .sub-menu a {
	height: auto;
	min-height: 0;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
	color: #cbd5e1;
	border-radius: 6px;
}

.site-menu .sub-menu a:hover {
	color: #ffffff;
	background: rgba(255,255,255,.06);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.language-switcher {
	position: relative;
	border: 5px solid #0f172a;
	margin-right: 8px;
}

.language-switcher__toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	color: #cbd5e1;
	background: transparent;
	border: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
}

.language-switcher__toggle:hover {
	color: #ffffff;
}

.language-switcher__icon {
	display: flex;
	width: 16px;
	height: 16px;
}

.language-switcher__list {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	min-width: 110px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--bc-dark-2);
	border: 1px solid var(--bc-border);
	box-shadow: 0 22px 50px rgba(0,0,0,.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--bc-transition), visibility var(--bc-transition), transform var(--bc-transition);
	outline: 5px solid transparent;
}

.language-switcher:hover .language-switcher__list,
.language-switcher.is-open .language-switcher__list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-switcher__list a {
	display: block;
	padding: 9px 12px;
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
	color: #cbd5e1;
	border-radius: 6px;
}

.language-switcher__list a:hover,
.language-switcher__list .is-active a {
	color: #ffffff;
	background: rgba(255,255,255,.06);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 31px 17px 32px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	border: 1px solid transparent;
	white-space: nowrap;
}

.button--light {
	color: #0f172a;
	background: #ffffff;
	border-color: #ffffff;
}

.button--light:hover {
	color: #ffffff;
	background: transparent;
}

.mobile-menu-toggle {
	display: none;
}


.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--bc-dark);
	color: #ffffff;
}

.page-hero--big {
	padding: 129px 0;
}

.page-hero--small {
	padding: 170px 0 95px;
}

.page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.page-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
}

.page-hero--small .page-hero__content {
	max-width: 820px;
}

.page-hero__overline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 50px;
	padding: 11px 18px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 999px;
	background: rgba(255,255,255,.05);
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.page-hero__overline span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bc-gold);
}

.page-hero__title {
	margin: 0;
	font-size: 58px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
}

.page-hero--small .page-hero__title {
	max-width: 820px;
	font-size: 56px;
}

.page-hero__title span {
	color: var(--bc-gold);
}

.page-hero__subtitle {
	margin-top: 49px;
	max-width: 620px;
	color: #94a3b8;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
}

.page-hero__text {
	margin-top: 48px;
	max-width: 720px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}

.page-hero__buttons {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 95px;
}

.button--outline {
	color: #ffffff;
	background: transparent;
	border-color: rgba(255,255,255,.18);
}

.button--outline:hover {
	color: #0f172a;
	background: #ffffff;
	border-color: #ffffff;
}

.page-hero__visual {
	position: absolute;
	z-index: 1;
	top: 55%;
	right: 10%;
	transform: translateY(-50%);
	opacity: .55;
	pointer-events: none;
}


.container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
	box-sizing: content-box;
}

.cards-section {
	padding: 100px 0;
	background: #fafbfc;
	padding-bottom: 80px;
}

.cards-section__head {
	margin-bottom: 80px;
}

.cards-section__title {
	margin: 0;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.cards-section__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.cards-section__card {
	position: relative;
	width: calc(50% - 20px);
	min-height: 310px;
	padding: 44px 36px 42px;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e5e9ed;
	border-radius: 4px;
}

.cards-section__card:nth-child(4n + 1),
.cards-section__card:nth-child(4n + 4) {
	width: calc(58% - 20px);
}

.cards-section__card:nth-child(4n + 2),
.cards-section__card:nth-child(4n + 3) {
	width: calc(42% - 20px);
}

.cards-section__card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 7px;
}

.cards-section__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
}

.cards-section__icon svg {
	display: block;
	width: 32px;
	height: 32px;
}

.cards-section__overline {
	margin-bottom: 16px;
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
}

.cards-section__badge {
	width: 42px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 6px;
	background: #d7b877;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
}

.cards-section__card-title {
	margin: 0 0 10px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 26px;
	font-weight: 600;
	line-height: 32px;
}

.cards-section__text {
	max-width: 604px;
	color: #60738E;
	font-size: 14px;
	font-weight: 500;
	line-height: 26px;
}

.cards-section__link {
	margin-top: auto;
	padding-top: 31px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.cards-section__link:hover {
	color: #0f1726;
}

.cards-section__link span {
	font-size: 18px;
	line-height: 1;
	margin-top: 2px;
}

.industries {
	padding: 128px 0;
	background: #f1f3f5;
}

.industries__head {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 16px;
}

.industries__title {
	margin: 0;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 45px;
	font-weight: 700;
	line-height: 56px;
	letter-spacing: 0;
}

.industries__badge {
	position: relative;
	padding: 8px 18px 8px 34px;
	border: 1px solid #c9d1db;
	border-radius: 100px;
	background: rgba(255,255,255,.05);
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.industries__badge:before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d6b45a;
	transform: translateY(-50%);
}

.industries__subtitle {
	margin-top: 13px;
	margin-bottom: 70px;
	max-width: 760px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
}

.industries__items {
	display: flex;
	justify-content: space-between;
}

.industries__item {
	width: 20.8%;
}

.industries__number {
	margin-bottom: 24px;
	color: #cbd5e1;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 64px;
	letter-spacing: 0;
}

.industries__number::after {
	display: none;
}

.industries__number span {
	color: #d7b877;
}

.industries__item-title {
	margin-bottom: 5px;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 26px;
	font-weight: 600;
	line-height: 34px;
	letter-spacing: 0;
}

.industries__item-subtitle {
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
}

.dark-cards {
	padding: 90px 0;
	padding-top: 80px;
	background: #0f172a;
}

.dark-cards__title {
	margin: 0 0 79px;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.dark-cards__items {
	display: flex;
	gap: 24px;
}

.dark-cards__card {
	width: calc(25% - 18px);
	padding: 36px 28px;
	padding-bottom: 44px;
	overflow: hidden;
	background: #131c2c;
	border: 1px solid #3f4551;
	border-radius: 4px;
}

.dark-cards__icon {
	width: 26px;
	height: 26px;
	margin-bottom: 32px;
	color: #d7b877;
}

.dark-cards__icon svg {
	display: block;
	width: 26px;
	height: 26px;
}

.dark-cards__card-title {
	margin: 0 0 16px;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.dark-cards__text {
	width: 218px;
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.dark-cards__line {
	width: 40px;
	height: 1px;
	margin-top: 24px;
	background: rgba(255,255,255,.2);
}

.dark-cards__card:nth-child(1) {
	background: #131c2c;
}

.dark-cards__card:nth-child(2) {
	border: 1px solid #5E6677;
	background: #202634;
}

.dark-cards__card:nth-child(3) {
	border: 1px solid #565E6E;
	background: #2C3442;
}

.dark-cards__card:nth-child(4) {
	border: 1px solid #515969;
	background: #384152;
}

.case-studies {
	padding: 128px 0;
	background: #fafbfc;
}

.case-studies__head {
	margin-bottom: 80px;
}

.case-studies__title {
	margin: 0;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.case-studies__items {
	display: flex;
	gap: 26px;
}

.case-studies__card,
.case-studies__more {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e9ed;
	border-radius: 4px;
	width: 24%;
}

.case-studies__image {
	width: 100%;
	height: 220px;
	margin: 1px;
	overflow: hidden;
	object-fit: cover;
}

.case-studies__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-studies__badge {
	position: absolute;
	top: 18px;
	right: 15px;
	z-index: 2;
	padding: 3px 12px;
	display: flex;
	align-items: center;
	border-radius: 20px;
	background: #d7b877;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
}

.case-studies__content {
	/* width: 274px; */
	/* height: 146px; */
	margin: 0 1px 1px;
	padding: 27px 24px;
}

.case-studies__card-title {
	margin: 0 0 16px;
	color: #0f1726;
	font-size: 19px;
	font-weight: 600;
	line-height: 26px;
}

.case-studies__text {
	width: 226px;
	color: #69778C;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.case-studies__more {
	display: block;
	background: #0f172a;
	border-color: #0f172a;
}

.case-studies__more-inner {
	position: relative;
	width: 218px;
	height: 232px;
	margin: 33px 29px 0;
}

.case-studies__more-badge {
	position: relative;
	margin-left: 21px;
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.case-studies__more-badge span {
	position: absolute;
	left: -19px;
	top: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d6b45a;
}

.case-studies__more-title {
	margin-top: 88px;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
}

.case-studies__more-arrow {
	margin-top: 35px;
	color: #94a3b8;
	font-size: 42px;
	line-height: 24px;
}

.case-studies__more:hover {
	background: #131c2c;
}

.cta {
	position: relative;
	padding: 107px 0 96px;
	background: #0f172a url('../images/Container.png') center center / cover no-repeat;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
}

.cta__inner {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.cta__overline {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	margin-bottom: 32px;
	padding: 0 20px 0 36px;
	border: 1px solid rgba(229,233,237,.2);
	border-radius: 100px;
	background: rgba(255,255,255,.1);
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.cta__overline span {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d6b45a;
	transform: translateY(-50%);
}

.cta__title {
	margin: 0;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.cta__title span {
	color: #d7b877;
}

.cta__text {
	margin-top: 33px;
	color: #cbd5e1;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}

.cta__buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 48px;
}

.cta__button {
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 22.5px;
}

.cta__button--light {
	width: 233px;
	background: #ffffff;
	color: #0f1726;
}

.cta__button--dark {
	width: 233px;
	border: 1px solid #3f4551;
	color: #ffffff;
}

.cta__button--light:hover {
	background: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.cta__button--dark:hover {
	background: #ffffff;
	color: #0f1726;
}


.footer {
	padding: 66px 0;
	background: #fafbfc;
}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.footer__logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.footer__logo img {
	display: block;
	/* height: 44px; */
	width: auto;
}

.footer__menu {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.footer-menu {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.footer-menu a:hover {
	color: #0f1726;
}

.footer__socials {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}

.footer__social svg {
	width: 18px;
	height: 18px;
	display: block;
}

.footer__social:hover {
	color: #0f1726;
}

body.popup-open {
	overflow: hidden;
}

.site-popup {
	position: fixed;
	z-index: 999;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.site-popup.is-active {
	display: flex;
}

.site-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,23,42,.76);
	backdrop-filter: blur(6px);
}

.site-popup__box {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow: auto;
	padding: 42px;
	background: #ffffff;
	border: 1px solid #e5e9ed;
	border-radius: 8px;
	box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.site-popup__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 36px;
	height: 36px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: #ffffff;
	font-size: 34px;
	line-height: 1;
	z-index: 5;
	color: black;
}

/* CF7 */

.wpcf7-form {
	margin: 0;
	position: relative;
}

.wpcf7-form p {
	margin: 0 0 18px;
	position: relative;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 8px;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #d5dce5;
	border-radius: 6px;
	background: #ffffff;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	outline: none;
}

.wpcf7-form textarea {
	height: 140px;
	padding-top: 14px;
	resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: #d7b877;
	box-shadow: 0 0 0 3px rgba(215,184,119,.18);
}

.wpcf7-form input[type="submit"] {
	width: 100%;
	height: 56px;
	margin-top: 6px;
	border: 1px solid #0f1726;
	border-radius: 8px;
	background: #0f1726;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
	cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
	background: #ffffff;
	color: #0f1726;
}

.wpcf7-not-valid-tip {
	margin-top: -4px;
	color: #b42318;
	font-size: 11px;
	line-height: 20px;
	position: absolute;
	top: 100%;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 0;
	border-radius: 6px;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 12px;
	line-height: 22px;
	border: none;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #b42318;
	color: #b42318;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #16a34a;
	color: #166534;
}


span.wpcf7-form-control-wrap {
	display: block;
}

.cta-2-buttons {
	padding: 71px 0 90px;
	background: #ffffff;
}

.cta-2-buttons__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.cta-2-buttons__content {
	width: 55.91%;
	max-width: 693px;
}

.cta-2-buttons__title {
	margin: 0;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	letter-spacing: 0;
}

.cta-2-buttons__title span {
	color: #d7b877;
}

.cta-2-buttons__text {
	margin-top: 20px;
	width: 90.3%;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
}

.cta-2-buttons__buttons {
	width: 37.64%;
	max-width: 467px;
	margin-top: 52px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.cta-2-buttons__button {
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 22.5px;
	white-space: nowrap;
}

.cta-2-buttons__button--dark {
	width: 44.13%;
	background: #0f1726;
	border: 1px solid #0f1726;
	color: #ffffff;
}

.cta-2-buttons__button--light {
	width: 52.45%;
	background: transparent;
	border: 1px solid #dbe3ef;
	color: #0f1726;
}

.cta-2-buttons__button--dark:hover {
	background: transparent;
	color: #0f1726;
}

.cta-2-buttons__button--light:hover {
	background: #0f1726;
	border-color: #0f1726;
	color: #ffffff;
}


.cards-section__metas {
	margin-top: 25px;
	color: #69778C;
	font-size: 13px;
}

.cards-section__meta {
	margin-bottom: 7px;
}

.before-after {
	padding: 112px 0 90px;
	background:
			linear-gradient(90deg, rgba(15,23,42,.94), rgba(15,23,42,.78)),
			url('../images/6981b6b5463967d9d7431eeeadca05a0a1b26e1c.png') center center / cover no-repeat;
	color: #ffffff;
}

.before-after__inner {
	width: 100%;
}

.before-after__title {
	margin: 0 0 80px;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.before-after__cards {
	display: flex;
	gap: 48px;
}

.before-after__card {
	width: calc(50% - 24px);
	height: 460px;
	padding: 49px;
	border-radius: 8px;
	border: 1.111px solid #2c323c;
}

.before-after__card--before {
	background: #222832;
}

.before-after__card--after {
	background: #161f2e;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.before-after__card-title {
	margin: 0 0 48px;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}

.before-after__card--before .before-after__card-title {
	color: #94a3b8;
}

.before-after__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.before-after__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	color: #cbd5e1;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
}

.before-after__icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d7b877;
	font-size: 15px;
	line-height: 1;
}

.before-after__card--before .before-after__icon {
	color: #64748b;
}

.consulting-steps {
	padding: 120px 0;
	background: #fafbfc;
	text-align: center;
}

.consulting-steps__title {
	margin: 0;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.consulting-steps__subtitle {
	width: 61.29%;
	margin: 24px auto 72px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 30px;
}

.consulting-steps__items {
	display: flex;
	gap: 24px;
	text-align: left;
}

.consulting-steps__card,
.consulting-steps__more {
	width: calc((100% - 96px) / 5);
	border-radius: 8px;
}

.consulting-steps__card {
	padding: 29px;
	background: #ffffff;
	border: 1.111px solid #e5e9ed;
}

.consulting-steps__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f1f7ff;
	color: #d7b877;
}

.consulting-steps__icon svg {
	display: block;
	width: 25px;
	height: 25px;
}

.consulting-steps__card-title {
	margin: 0 0 8px;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
}

.consulting-steps__text {
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
}

.consulting-steps__more {
	display: block;
	padding: 29px;
	background: #0f172a;
	color: #ffffff;
}

.consulting-steps__more-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #ffffff;
	font-size: 24px;
	line-height: 1;
}

.consulting-steps__more-title {
	display: block;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 26px;
	font-weight: 600;
	line-height: 26px;
}

.consulting-steps__more-text {
	display: block;
	margin-top: 8px;
	color: #CBD5E1;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}


.cards-section__card.cards-section__card--dark {
	background: #0F1726;
}

.cards-section__card.cards-section__card--dark h3.cards-section__card-title {
	color: white;
}

.cards-section__card.cards-section__card--dark .cards-section__text {
	color: #69778C;color: #69778C;
}

.trainings {
	padding: 112px 0;
	background: #fafbfc;
}

.trainings__item {
	display: flex;
	width: 100%;
	min-height: 930px;
	margin-bottom: 84px;
	background: #ffffff;
	border: 1px solid #e5e9ed;
	border-radius: 8px;
	overflow: hidden;
}

.trainings__item:last-child {
	margin-bottom: 0;
}

.trainings__item--reverse {
	flex-direction: row-reverse;
}

.trainings__image-wrap {
	position: relative;
	width: 50%;
	min-height: 930px;
}

.trainings__image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trainings__number {
	position: absolute;
	top: 38px;
	left: 38px;
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #d7b877;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.trainings__content {
	width: 50%;
	padding: 93px 70px 70px;
}

.trainings__overline {
	position: relative;
	margin-bottom: 32px;
	padding-left: 14px;
	color: #d7b877;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.trainings__overline span {
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 4px;
	background: #d7b877;
	border-radius: 50%;
}

.trainings__title {
	margin: 0 0 56px;
	max-width: 540px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.trainings__meta {
	max-width: 540px;
}

.trainings__meta-row {
	/* padding-left: 32px; */
	margin-bottom: 32px;
}

.trainings__meta-row--outcome {
	margin-top: 32px;
	padding-top: 25px;
	border-top: 1px solid #e5e9ed;
}

.trainings__meta-title {
	margin-bottom: 12px;
	color: #334155;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.trainings__meta-row--outcome .trainings__meta-title {
	color: #d7b877;
}

.trainings__meta-text {
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
}

.trainings__meta-row--outcome .trainings__meta-text {
	color: #0f1726;
	font-weight: 600;
}

.trainings__button {
	width: 233px;
	height: 56px;
	/* margin-left: 32px; */
	margin-top: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #0f1726;
	border-radius: 8px;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
}

.trainings__button:hover {
	background: #0f1726;
	color: #ffffff;
}


section.dark-cards.light {
	background: white;
}

section.dark-cards.light h2.dark-cards__title {
	color: #0F1726;
}

.text-sidebar {
	padding: 80px 0;
	background: #ffffff;
	padding-bottom: 110px;
}

.text-sidebar__inner {
	display: flex;
	justify-content: space-between;
	gap: 72px;
}

.text-sidebar__content {
	width: 67.42%;
	color: #334155;
	font-size: 18px;
	font-weight: 500;
	line-height: 32px;
}

.text-sidebar__content p {
	margin: 0 0 24px;
}

.text-sidebar__content p:last-child {
	margin-bottom: 0;
}

.text-sidebar__side {
	width: 26.14%;
}

.text-sidebar__card {
	margin-bottom: 20px;
	border-radius: 12px;
	background: #0f172a;
}

.text-sidebar__card:last-child {
	margin-bottom: 0;
}

.text-sidebar__card-inner {
	display: flex;
	gap: 12px;
	padding: 24px;
}

.text-sidebar__icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-top: 4px;
	color: #d7b877;
	font-size: 16px;
	line-height: 20px;
}

.text-sidebar__card-title {
	margin-bottom: 4px;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}

.text-sidebar__card-text {
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
}

.steps {
	padding: 98px 0 120px;
	background: #F8F9FA;
}

.steps__title {
	margin: 0 0 81px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.steps__items {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.steps__item {
	padding: 65px;
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 18px;
}

.steps__item-inner {
	display: flex;
	align-items: center;
	width: 100%;
	height: 144px;
}

.steps__number {
	flex: 0 0 151px;
	color: #334155;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 104px;
	font-weight: 700;
	line-height: 96px;
}

.steps__number span {
	color: #d7b877;
}

.steps__content {
	margin-left: 64px;
	max-width: 895px;
}

.steps__item-title {
	margin: 0 0 8px;
	color: #0f1726;
	font-family: Sora;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 44px; /* 137.5% */
}

.steps__text {
	color: #334155;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
}

.steps__focus {
	margin-top: 16px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
}

.steps__item--reverse .steps__item-inner {
	justify-content: flex-end;
	text-align: right;
}

.steps__item--reverse .steps__content {
	margin-left: 0;
	margin-right: 64px;
	order: 1;
}

.steps__item--reverse .steps__number {
	order: 2;
}

.apply_cards {
	padding: 75px 0 120px;
	background: #f1f3f5;
}

.apply_cards__title {
	margin: 0 32px 64px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.apply_cards__items {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 0 32px;
}

.apply_cards__card {
	flex: 1 1 calc(50% - 16px);
	padding: 56px;
	border-radius: 8px;
	border: 1px solid #e5e9ed;
	background: #ffffff;
}

.apply_cards__top {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}

.apply_cards__icon-wrap {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #d7b877;
}

.apply_cards__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.apply_cards__icon svg {
	display: block;
	width: 22px;
	height: 22px;
}

.apply_cards__card-title {
	margin: 0;
	color: #0f1726;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
}

.apply_cards__text {
	color: #334155;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 28px;
}

.apply_cards__link {
	margin-top: 40px;
	padding-top: 21px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid #e5e9ed;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
}

.apply_cards__link:hover {
	color: #0f1726;
}


section.cta:before {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 38, 0.66) 0%, rgba(30, 41, 59, 0.63) 100%);
	opacity: 0.7;
	z-index: 1;
}

.text-sidebar__title {
	margin: 0 0 80px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.text-sidebar__glance {
	width: 40.48%;
	padding: 40px;
	border-radius: 12px;
	background: #0f172a;
	color: #ffffff;
}

.text-sidebar__glance-title {
	margin: 0 0 32px;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 28px;
}

.text-sidebar__glance-row {
	margin-bottom: 27px;
}

.text-sidebar__glance-label {
	margin-bottom: 8px;
	color: white;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
}

.text-sidebar__glance-text {
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
}

.text-sidebar__glance-counters {
	margin-top: 27px;
	padding-top: 40px;
	border-top: 1px solid #2c323c;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.text-sidebar__glance-counter {
	/* flex: 1 1 0; */
	text-align: center;
}

.text-sidebar__glance-number {
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 48px;
}

.text-sidebar__glance-counter-text {
	margin-top: 8px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 22px;
}


.text-sidebar__glance-number span {
	font-size: 45px;
	color: #D7B877;
}

.card-light .dark-cards__card {
	background: white;
	border: 1px solid #E5E9ED;
}

section.dark-cards.light.card-light {
	background: #F1F3F5;
}

.card-light  .dark-cards__icon {
	background: #F1F7FF;
	padding: 15px;
	box-sizing: content-box;
	border-radius: 50%;
}

.card-light h3.dark-cards__card-title {
	color: #0F1726;
}

.card-light .dark-cards__line {
	display: none;
}

section.steps.dark {
	background: #FAFBFC;
}

.dark .steps__item {
	border-radius: 16px;
	background: #0F1726;
	border: none;
}

.dark .steps__number {}

.dark h3.steps__item-title {
	color: white;
}

.dark .steps__text {
	color: #CBD5E1;
}

.contacts {
	padding: 120px 0 83px;
	background: #f8fafc;
}

.contacts__title {
	margin: 0 0 80px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.contacts__inner {
	display: flex;
	align-items: flex-start;
	gap: 47px;
}

.contacts__left {
	width: 54.24%;
	display: flex;
	flex-direction: column;
	gap: 66px;
}

.contacts__card {
	padding: 30px 41px 41px;
	border: 1px solid #e5e9ed;
	border-radius: 8px;
	background: #ffffff;
}

.contacts__icon {
	width: 34px;
	height: 34px;
	margin-bottom: 19px;
	color: #94a3b8;
}

.contacts__icon svg {
	display: block;
	width: 32px;
	height: 32px;
}

.contacts__card-title {
	margin: 0 0 1px;
	color: #0f1726;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 48px;
}

.contacts__card-text {
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 30px;
}

.contacts__best-label {
	margin-top: 27px;
	color: #d7b877;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 16.5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.contacts__best-text {
	margin-top: 1px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
}

.contacts__button {
	margin-top: 22px;
	min-width: 194px;
	min-height: 56px;
	padding: 16px 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #0f1726;
	border-radius: 8px;
	background: #0f1726;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 23px;
}

.contacts__card:last-child .contacts__button {
	min-width: 233px;
	background: #ffffff;
	color: #0f1726;
}

.contacts__button:hover {
	background: #ffffff;
	color: #0f1726;
}

.contacts__card:last-child .contacts__button:hover {
	background: #0f1726;
	color: #ffffff;
}

.contacts__right {
	width: 41.85%;
	padding: 69px 65px 40px;
	border-radius: 8px;
	background: #0f172a;
	color: #ffffff;
}

.contacts__right-title {
	margin: 0 0 58px;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 48px;
}

.contacts__steps {
	padding-bottom: 73px;
	border-bottom: 1px solid #273244;
}

.contacts__step {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 48px;
}

.contacts__step:last-child {
	margin-bottom: 0;
}

.contacts__step-number {
	min-width: 50px;
	min-height: 40px;
	padding: 4px 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #d7b877;
	color: #ffffff;
	font-family: 'Sora', Arial, sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 32px;
}

.contacts__step-text {
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 28px;
}

.contacts__bullets {
	padding: 41px 0 56px;
	border-bottom: 1px solid #273244;
}

.contacts__bullet {
	position: relative;
	margin-bottom: 24px;
	padding-left: 20px;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 22.5px;
}

.contacts__bullet:last-child {
	margin-bottom: 0;
}

.contacts__bullet:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d7b877;
}

.contacts__direct-title {
	margin-top: 41px;
	margin-bottom: 32px;
	color: #64748b;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 19.5px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contacts__direct-item {
	margin-bottom: 28px;
}

.contacts__direct-item:last-child {
	margin-bottom: 0;
}

.contacts__direct-label {
	margin-bottom: 8px;
	color: #ffffff;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 19.5px;
	text-transform: uppercase;
}

.contacts__direct-text {
	color: #94a3b8;
	font-family: 'Manrope', Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 22.5px;
}


nav.site-header__nav:after {
	content: "";
	display: block;
	height: 20px;
	width: 1px;
	background: rgba(255, 255, 255, 0.10);
	margin-right: 21px;
	margin-left: 25px;
}

footer .container {
}

.consulting-steps__more:hover {
	opacity: 0.9;
}

.card-light .dark-cards__card:hover {
	background: #131c2c;
}

.card-light .dark-cards__card:hover h3.dark-cards__card-title {
	color: white;
}

.dark-cards__card {
	transition: 0.2s;
}

.card-light h3.dark-cards__card-title {
	transition: 0.2s;
}

span.wpcf7-spinner {
	position: absolute;
	right: 0px;
	bottom: 17px;
}