@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/* Reset styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
a, a:link, a:visited  {
    text-decoration: none;
}
a:hover  {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
	display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}
h1,h2,h3 {
	line-height: 1;
}
h1, .h1,
h2, .h2 {
	font-size: 64px;
}
h3, .h3 {
	font-size: 54px;
}
ul, ol {
	margin-bottom: 30px;
	padding-left: 30px;
}
ul {
	list-style-type: square;
}
ol ul {
	margin-bottom: 0;
}
ul.menu-wrapper {
	padding: 0;
	margin: 0;
	list-style: none;
}
img {
	vertical-align: top;
}
img, svg {
	max-width: 100%;
	height: auto;
}
address {
  font-style: normal;
}
input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
	display: none;
}
textarea {
	resize: vertical;
}
button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
label {
	cursor: pointer;
}
legend {
	display: block;
}
input[type='file'] {
	max-width: 100%;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes animateWidthReduce {
	0% {
		width: 100%;
	}
	100% {
		width: 0%;
	}
}
@keyframes animateWidthIncrease {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}


:root {
    --text--black: #1a181a;
    --text--grey: #4e4e4e;
    --white: white;
    --orange: #eb6f25;
    --grey: grey;
    --grey-50: #80808080;
    --white-smoke: whitesmoke;
    --text--light: #ccc;
    --orange-pale: #ffe4d4;
    --light-grey: #d2d2d2;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	letter-spacing: -.03em;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: var(--text--black);
}
p a {
	text-decoration: none;
	color: var(--orange);
}
p a:hover {
	text-decoration: underline;
}
.container {
	max-width: 1520px;
	width: 100%;
	margin: 0 auto;
}

.btn {
	outline: none;
	border: none;
	background: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text--black);
	text-transform: uppercase;
    transition: all .3s;
}
.btn-black {
	padding: 13px 24px;
	background-color: var(--text--black);
	color: var(--white);
}
.btn-black:hover {
	background-color: rgba(26, 24, 26, 0.75);
}
.btn-white {
	padding: 18px 24px;
	background-color: var(--white);
    color: var(--text--black);
}
.btn-white:hover {
	background-color: rgba(255, 255, 255, 0.75);
}
.btn-orange {
	padding: 18px 24px;
	background-color: var(--orange);
    color: var(--white);
}
.btn-orange:hover {
	background-color: rgba(235, 111, 37, 0.75);
}

.header {
	position: sticky;
	top: 0;
	z-index: 101;
	border-bottom: 1px solid var(--grey);
    background-color: var(--white);
}
.header__wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	grid-gap: 15px;
}
.header-logo img {
	display: block;
	max-width: 299px;
}
.header-nav {
	display: flex;
	align-items: center;
	height: 80px;
	padding: 0 15px;
	border-left: 1px solid var(--grey);
	width: fit-content;
	margin: 0 auto;
}
.header-nav__burger {
	display: none; /* flex */
	align-items: center;
	justify-content: center;
}
.header-nav__burger[aria-expanded="false"] .dropdown-icon.close,
.header-nav__burger[aria-expanded="true"] .dropdown-icon.open {
	display: none;
}
.header-nav__burger span,
.header-nav__burger svg {
	display: block;
}
.header-nav .menu-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px 10px;
}
.header-nav .menu-wrapper li a {
	color: var(--text--black);
	text-transform: uppercase;
    padding: 10px 5px;
	line-height: 1;
    text-decoration: none;
    transition: opacity .3s;
}
.header-nav .menu-wrapper li:not(.current-menu-item) a:hover {
	opacity: 0.7;
}
.header-nav .menu-wrapper li.current-menu-item a {
	color: var(--orange);
}
.header__right {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header__languages {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__languages li.current-lang {
	display: none;
}
.header__languages li a {
	padding: 10px 5px;
	color: var(--text--black);
	text-transform: uppercase;
	transition: 0.3s;
}
.header__languages li a:hover {
	color: var(--orange);
}
.header__right .btn {
	min-width: 223px;
}

body.single .header {
	background-color: var(--text--black);
}
body.single .header-nav .menu-wrapper li a,
body.single .header__languages li a {
	color: var(--white);
}
body.single .header__right .btn {
	border: 1px solid var(--orange);
}
body.single .header__right .btn:hover {
	background-color: var(--orange);
	opacity: 1;
}

.footer {
	background-color: var(--text--black);
    color: var(--white);
	padding: 50px 0;
}
.footer-top {
	margin-bottom: 64px;
}
.footer-logo img {
	display: block;
	max-width: 299px;
}
.footer-middle {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: flex-start;
	grid-gap: 40px 20px;
}
.footer__title {
	margin-bottom: 17px;
	text-transform: uppercase;
}
.footer-nav ul {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.footer-nav ul li a {
	color: #ccc;
    text-decoration: underline;
    transition: all .3s;
}
.footer-nav ul li a:hover {
	text-decoration: none;
}
.footer-timework__text {
    color: var(--text--grey);
}
.footer-address .footer__title {
	text-align: right;
}
.footer-address__text {
	color: var(--text--grey);
	text-align: right;
}
.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
	margin-top: auto;
}
.footer-links a {
	color: #ccc;
    text-decoration: underline;
    transition: all .3s;
}
.footer-links a:hover {
	text-decoration: none;
}
.footer-contacts {
	grid-column: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 7px;
}
.footer-contacts a {
	font-size: 24px;
	color: var(--white);
	text-decoration: underline;
    transition: all .3s;
}
.footer-contacts a:hover {
	text-decoration: none;
}
.footer-bottom {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.footer-copyright {
	color: var(--text--grey);
}
.footer-developer {
	color: var(--text--light);
}
.footer-developer a {
	color: var(--text--light);
    transition: all .3s;
}
.footer-developer a:hover {
	color: var(--orange);
}

.animated {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.animated.fadeInUp.visible {
	animation-name: fadeInUp;
}

.main-title-block {
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid var(--grey);
	border-bottom: 1px solid var(--grey);
}
.main-title-block__wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}
.main-title-block__h1 {
	font-size: 6vw;
	text-transform: uppercase;
	font-weight: bold;
}
.main-title-block__right {
	font-size: 24px;
	line-height: 1.3;
	text-align: right;
}
.main-title-block__anim {
	transition: .5s linear;
}
.main-title-block__anim:hover {
	color: var(--orange);
}

.section {
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 80px;
}
.section-head {
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
	grid-gap: 20px;
}
.section-head__desc {
	font-size: 20px;
	line-height: 1.3;
}

.hero-section {
	padding-top: 0;
	padding-bottom: 5vw;
}
.hero-section__wrap {
	position: relative;
	z-index: 1;
}
.hero-section__video {
	position: relative;
	z-index: 1;
	height: 38vw;
	max-height: 609px;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.hero-section__video:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #1a181a66;
}
.hero-section__video:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	background-color: #fff;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.hero-section__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-section__video.animated.visible:after {
	animation-name: animateWidthReduce;
}
.hero-section__info {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	max-width: 582px;
	padding: 0 0 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.hero-section__desc {
	letter-spacing: normal;
	font-size: 20px;
	line-height: 1.3;
	color: var(--white);
}
.hero-section__info .btn {
	width: 100%;
}

.advantages-items {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: stretch;
	grid-gap: 20px;
}
.advantages-item {
	border: 1px solid var(--grey-50);
    align-items: flex-start;
    padding: 267px 20px 20px 20px;
    display: flex;
    position: relative;
    overflow: hidden;
	letter-spacing: normal;
    font-size: 20px;
    line-height: 1.3;
}
.advantages-item:nth-child(2),
.advantages-item:nth-child(4),
.advantages-item:nth-child(5) {
	grid-column: 2 span;
}
.advantages-item__number {
	content: '1';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 300px;
	color: var(--text--grey);
    letter-spacing: 0;
    text-transform: uppercase;
	line-height: 1;
}
.advantages-item__desc {
	max-width: 420px;
}

.services {
	overflow: hidden;
}
.services .section-head {
	grid-template-columns: 1fr auto;
	align-items: flex-end;
}
.services__slider {
	width: calc(100% + 20px) !important;
	margin-left: -10px !important;
}
.services__slider .slick-list {
	overflow: visible;
}
.services__slider .slick-slide {
	padding: 0 10px !important;
}
.services-item {
	position: relative;
	z-index: 1;
	padding: 20px;
	height: 28.125vw;
    max-height: 450px;
	background-position: center;
	background-size: cover;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	color: var(--white);
}
.services-item__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.services-item__title {
	font-size: 24px;
	line-height: 1.3;
}
.services-item a {
	display: flex;
	align-items: center;
	width: fit-content;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.5;
	transition: color .3s;
}
.services-item a svg {
	width: 24px;
	height: 24px;
}
.services-item a:hover {
	color: #ffffffb3;
}

.why-us-items {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: stretch;
	grid-gap: 20px;
}
.why-us-item {
	padding: 30px 20px;
	background-color: var(--white-smoke);
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.why-us-item__title {
	max-width: 80%;
	font-size: 40px;
	line-height: 1;
}
.why-us-item__desc {
	color: var(--text--grey);
}

.team-experience__wrap {
	display: grid;
	grid-template-columns: 39.47% 49.3%;
	align-items: stretch;
	justify-content: space-between;
	grid-gap: 20px;
}
.team-experience__left {
	position: relative;
	z-index: 1;
}
.team-experience__left:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	background-color: #fff;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.team-experience__left.animated.visible:after {
	animation-name: animateWidthReduce;
}
.team-experience__left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-experience__items {
	margin-bottom: 40px;
}
.team-experience-item {
	border-top: 1px solid var(--grey);
	padding: 40px 0;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	align-items: center;
}
.team-experience-item__number {
	font-size: 40px;
	line-height: 1;
}
.team-experience-item__desc {
	color: var(--text--grey);
}
.team-experience__desc .btn {
	width: 100%;
}

.slick-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-arrow {
	border: 1px solid var(--orange);
    color: var(--orange);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    transition: all .3s;
    display: flex;
}
.slick-arrow svg {
	width: 24%;
}
.slick-arrow:hover {
	background: var(--orange);
	color: var(--white);
}

.about-hero {
	padding-top: 20px;
}
.about-hero__wrap {
	position: relative;
	z-index: 1;
	padding: 40px 40px 26px 40px;
	background-image: url('/wp-content/uploads/2026/03/64fd82e47fae295e3d55795b_about-hero-scaled.jpg');
	background-position: center;
	background-size: cover;
	color: var(--white);
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 15px;
}
.about-hero__line-top,
.about-hero__line-bottom {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	margin: 0 auto;
	background-color: #ffffff80;
    width: 1px;
}
.about-hero__line-top {
	top: 0;
	height: 9.375vw;
}
.about-hero__line-bottom {
	bottom: 0;
	height: 300px;
}
.about-hero__top,
.about-hero__bottom {
	display: grid;
	grid-template-columns: repeat(2, minmax(306px, 406px));
	align-items: stretch;
	justify-content: space-between;
	grid-gap: 20px;
}
.about-hero__middle {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 90px 42px;
	border-left: 1px solid #ffffff80;
	width: fit-content;
	margin: 0 auto 15px auto;
	color: var(--white);
	text-align: center;
}
.about-hero__title {
	font-size: 80px;
	line-height: 1;
	font-weight: bold;
	text-transform: uppercase;
}
.about-hero__title span {
	transition: 0.3s linear;
}
.about-hero__desc {
	max-width: 620px;
	width: 100%;
	font-size: 20px;
	line-height: 1.3;
}
.about-hero-item {
	position: relative;
	z-index: 1;
	padding: 20px 30px;
}
.about-hero-item:before,
.about-hero-item:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 20px;
	border-right: 1px solid var(--white);
    border-left: 1px solid var(--white);
}
.about-hero-item:before {
	top: 0;
	border-top: 1px solid var(--white);
	border-radius: 3px 3px 0 0;
}
.about-hero-item:after {
	bottom: 0;
	border-bottom: 1px solid var(--white);
	border-radius:  0 0 3px 3px;
}
.about-hero-item__uptitle {
	margin-bottom: 5px;
	font-size: 22px;
	line-height: 1.3;	
}
.about-hero-item__title {
	margin-bottom: 50px;
	font-size: 24px;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--orange);
}
.down-link {
	position: absolute;
	right: 16px;
	bottom: 40px;
	z-index: 10;
	padding: 0 12px;
	color: var(--white);
	transition: 0.3s linear;
}
.down-link svg {
	width: 8px;
}
.down-link:hover {
	color: var(--orange);
}

.numbers__items {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: stretch;
	grid-gap: 20px;
}
.numbers-item {
	border: 1px solid var(--grey-50);
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.numbers-item__title {
	font-size: 64px;
	line-height: 1;
}
.numbers-item__desc {
	line-height: 1.3;
}

.countries__wrap {
	display: grid;
	grid-template-columns: 1fr 367px;
	align-items: flex-start;
	grid-gap: 74px;
}
.countries__left {
	position: relative;
	z-index: 1;
}
.countries__left:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	background-color: #fff;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.countries__left.animated.visible:after {
	animation-name: animateWidthReduce;
}
.countries__right {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.countries-item {
	display: grid;
	grid-template-columns: 10px 1fr;
	align-items: flex-start;
	grid-gap: 10px;
}
.countries-item:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	margin-top: 8px;
	background-color: var(--text--black);
}
.countries-item:nth-child(2):before {
	background-color: var(--orange);
}
.countries-item__title {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.3;
}
.countries-item__desc {
	color: var(--text--grey);
}

.experience__wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-top: 170px;
}
.experience-line {
	position: relative;
	flex: none;
	background-image: linear-gradient(to bottom, var(--text--black), #1a181a00);
	width: 2px;
	height: 50px;
}
.experience-line.experience-line-250 {
	height: 250px;
}
.experience-line.experience-line-240 {
	height: 240px;
}
.experience-line.experience-line-230 {
	height: 250px;
}
.experience-line.experience-line-220 {
	height: 220px;
}
.experience-line.experience-line-210 {
	height: 210px;
}
.experience-line.experience-line-200 {
	height: 200px;
}
.experience-line.experience-line-190 {
	height: 190px;
}
.experience-line.experience-line-180 {
	height: 180px;
}
.experience-line.experience-line-170 {
	height: 170px;
}
.experience-line.experience-line-160 {
	height: 160px;
}
.experience-line.experience-line-150 {
	height: 150px;
}
.experience-line.experience-line-140 {
	height: 140px;
}
.experience-line.experience-line-130 {
	height: 130px;
}
.experience-line.experience-line-120 {
	height: 120px;
}
.experience-line.experience-line-110 {
	height: 110px;
}
.experience-line.experience-line-100 {
	height: 100px;
}
.experience-line.experience-line-90 {
	height: 90px;
}
.experience-line.experience-line-80 {
	height: 80px;
}
.experience-line.main-experience-line-1 {
	height: 400px;
}
.experience-line.main-experience-line-2 {
	height: 600px;
}
.experience-item {
	position: absolute;
	left: 50%;
	bottom: 100%;
	z-index: 10;
	transform: translateX(-50%);
	width: 215px;
	text-align: center;
	display: flex;
	flex-direction: column-reverse;
	gap: 16px;
	margin-bottom: 28px;
}
.experience-item__text {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s linear;
}
.experience-item__year {
	font-size: 64px;
	line-height: 1;
	transition: 0.3s linear;
}
.experience-item .experience-item__year:hover {
	color: var(--orange);
}
.experience-item .experience-item__year:hover ~ .experience-item__text {
	visibility: visible;
	opacity: 1;
}

.accordions-item,
.kt-accordion-pane {
	display: block;
	border-bottom: 1px solid rgb(0, 0, 0);
	padding: 40px 0;
}
.accordions-item__head,
.kt-blocks-accordion-header {
	display: grid !important;
	grid-template-columns: minmax(300px, 920px) auto;
	align-items: flex-start !important;
	justify-content: space-between;
	grid-gap: 20px;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
}
.accordions-item__icon,
.kt-blocks-accordion-icon-trigger {
	position: relative !important;
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.accordions-item__icon:before,
.accordions-item__icon:after,
.kt-blocks-accordion-icon-trigger:before,
.kt-blocks-accordion-icon-trigger:after {
	content: '';
	position: static !important;
	background-color: var(--orange) !important;
    width: 58.325% !important;
    height: 2px !important;
	transform: none !important;
}
.accordions-item__icon:after,
.kt-blocks-accordion-icon-trigger:after  {
	position: absolute !important;
	left: inherit !important;
	top: inherit !important;
	bottom: inherit !important;
	right: inherit !important;
	transform: rotate(90deg) !important;
	transition: 0.3s linear !important;
}
.accordions-item.active .accordions-item__icon:after ,
.kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger:after {
	width: 0px !important;
}
.accordions-item__body,
.kt-accordion-panel {
	padding-top: 20px;
	max-width: 920px;
	display: none;
}
.accordions-item__body > *,
.kt-accordion-panel .kt-accordion-panel-inner > * {
	margin-bottom: 40px;
}
.accordions-item__body > *:last-child,
.kt-accordion-panel .kt-accordion-panel-inner > *:last-child {
	margin-bottom: 0;
}
.kt-accordion-pane {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.kt-accordion-pane.visible {
	animation-name: fadeInUp;
}
.kt-blocks-accordion-header {
	padding: 0 !important;
	background: none !important;
	border: none !important;
}
.kt-blocks-accordion-header.kt-accordion-panel-active {
	color: var(--text--black) !important;
}
.kt-blocks-accordion-title-wrap {
	padding: 0 !important;
}
.kt-blocks-accordion-title {
	font-size: 40px;
	line-height: 1;
	color: var(--text--black);
}
.kt-accordion-panel-inner {
	padding: 0 !important;
}


.documents-item a {
	display: grid;
	grid-template-columns: minmax(300px,70%) auto;
	align-items: center;
	justify-content: space-between;
	grid-gap: 20px;
	border-bottom: 1px solid var(--grey);
	padding: 30px 0;
	color: var(--text--grey);
	font-size: 24px;
	line-height: 1.3;
}
.documents-item a:after {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8.5L22 12.5L18 16.5' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M2 12.5H22' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.documents-item:last-child a {
	border-bottom: none;
}

body.page-template-page-team .team .section-head__desc {
	font-size: 16px;
	line-height: 1.2;
}
body.page-template-page-team .team .section-head {
	margin-bottom: 50px;
	gap: 30px;
}

.filter-tabs__menu {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.filter-tabs__tab {
	outline: none;
	border: none;
	text-decoration: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-smoke);
    padding: 14px 18px;
	color: #222;
}
.filter-tabs__tab.active {
	background-color: var(--orange);
	color: var(--white);
}
.filter-tabs__cards {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: stretch;
	grid-gap: 16px;
}
.team-preview {
	cursor: pointer;
}
.team-preview__photo {
	position: relative;
	z-index: 1;
	padding-top: 120%;
}
.team-preview__photo img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-preview__content {
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.team-preview__name {
	margin-bottom: 5px;
	font-size: 22px;
	line-height: 1.3;
}
.team-preview__post {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.team-preview__post p {
	margin: 0;
}
.team-preview__contacts {
	display: none;
	flex-direction: column;
	gap: 5px;
}
.team-preview__contacts a {
	width: fit-content;
	color: var(--orange);
	text-decoration: none;
	transition: 0.3s linear;	
}
.team-preview__contacts a:hover {
	opacity: 0.7;
}
.team-preview__desc {
	display: none;
}
.team-preview__desc p {
	margin-bottom: 10px;
}
.team-preview__desc p:last-child {
	margin-bottom: 0;
}
.team-preview__more {
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--orange);
	transition: 0.3s linear;
}
.team-preview__more:after {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7H17V17' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M7 17L17 7' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.team-preview__more:hover {
	opacity: 0.7;
}
.team-popup {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: #1a181a99;
	visibility: hidden;
	opacity: 0;
	transition: all .5s;
}
.team-popup.active {
	visibility: visible;
	opacity: 1;
}
.team-popup__wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%,-50%);
	width: 90%;
    max-width: 1020px;
    padding: 20px;
	background-color: #fff;
}
.team-popup__close {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 10;
	width: 40px;
	height: 40px;
	transition: all .5s;
}
.team-popup__close:hover {
	transform: rotate(180deg);
}
.team-popup .team-preview {
	display: flex;
	align-items: stretch;
	gap: 30px;
}
.team-popup .team-preview__photo {
	width: 35.7%;
	padding-top: 0;
}
.team-popup .team-preview__photo img {
	position: static;
}
.team-popup .team-preview__content {
	width: 57%;
	padding: 0;
	gap: 20px;
	height: 46vw;
    max-height: 461px;
	overflow: auto;
}
.team-popup .team-preview__name {
	margin: 0;
	font-size: 40px;
}
.team-popup .team-preview__post {
	font-size: 20px;
}
.team-popup .team-preview__contacts {
	display: flex;
}
.team-popup .team-preview__desc {
	display: block;
	padding-top: 60px;
}
.team-popup .team-preview__more {
	display: none !important;
}


.contacts__wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	align-items: stretch;
	grid-gap: 20px;
}
.contacts__left {
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 30px;
}
.contacts-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contacts-item__title {
	text-transform: uppercase;
}
.contacts-item__desc {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contacts-item__desc a {
	text-decoration: none;
	color: var(--text--grey);
	transition: all .3s;
}
.contacts-item__desc a:hover {
	color: var(--orange);
	text-decoration: none;
}
.contacts-item__desc a[href*="https://yandex.ru/"] {
	display: flex;
	align-items: center;
	width: fit-content;
	color: var(--orange);
	text-transform: uppercase;
	transition: all .3s;
}
.contacts-item__desc a[href*="https://yandex.ru/"]:after {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7H17V17' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M7 17L17 7' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.contacts-item__desc a[href*="https://yandex.ru/"]:hover {
	opacity: 0.7;
}
.contacts__right iframe {
	display: block;
	width: 100%;
	height: 100%;
	filter: saturate(0%);
}

.events .section-head {
	margin-bottom: 50px;
}
.events-preview__link {
	min-height: 325px;
	height: 100%;
	border: 1px solid var(--text--black);
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	color: var(--text--black);
	transition: all .3s;
}
.events-preview__title {
	font-size: 24px;
	line-height: 1.3;
	transition: all .3s;
}
.events-preview__date {
	color: var(--text--grey);
}
.events-preview__link:hover {
	background-color: var(--text--black);
}
.events-preview__link:hover .events-preview__title {
	color: var(--white);
}

body.page-template-page-projects .numbers .numbers-item{
	border: none;
	background-color: var(--white-smoke);
}

.customers__items {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	align-items: stretch;
	grid-gap: 20px;
}
.customers-item {
	padding: 20px;
	border: 1px solid var(--grey-50);
	filter: grayscale(100%);
	transition: all .5s;
}
.customers-item img {
	width: 100%;
	max-width: 100%;
}
.customers-item:hover {
	filter: grayscale(0%);
}


body.page-template-page-services .section-head__desc {
	font-size: 16px;
	line-height: 1.2;
}
.page-services__items {
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 20px;
}
.page-services-item__link {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: flex-start;
	border-bottom: 1px solid var(--grey);
	padding-bottom: 40px;
	text-decoration: none;
    transition: all .3s;
	font-size: 40px;
	line-height: 1;
	color: var(--text--black);
}
.page-services-item__link:after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7H17V17' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M7 17L17 7' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.page-services-item__link:hover {
	color: var(--orange);
}

.page-services--single .section-head {
	margin-bottom: 50px;
}
.page-services--single .kt-accordion-panel-inner .wp-block-list {
	max-width: 500px;
}
.page-services--single .page-services-links {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px;
}
.page-services--single .page-services-links__item {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-smoke);
    color: var(--text--black);
    padding: 20px 18px;
    text-decoration: none;
}
.page-services--single .page-services-links__item.active {
	background-color: var(--text--black);
    color: var(--white);
}
.page-services--single .page-services__wrap {
	border-top: 1px solid #000;
	margin-top: 50px;
}
.page-services--single .wp-block-kadence-accordion .kt-accordion-pane:first-child {
	padding-top: 0;
}
.page-services--single .wp-block-kadence-accordion .kt-accordion-pane:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.page-services-content {
	padding: 40px 0;
	border-bottom: 1px solid #000;
}
.page-services-content p {
	font-size: 20px;
	line-height: 1.3;
}
.page-services-content > *:not(.wp-block-kadence-accordion) {
	max-width: 920px;
}
.page-services-content > *:not(:last-child) {
	margin-bottom: 40px;
}
.page-services-content > *:last-child {
	margin-bottom: 0;
}
.page-services-content > * {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.page-services-content > *:not(.wp-block-kadence-accordion).visible {
	animation-name: fadeInUp;
}

.region-drop {
	position: relative;
}
.region-drop__btn {
	display: flex;
	align-items: center;
	gap: 2px;
	padding-top: 10px;
	padding-bottom: 15px;
	font-size: 18px;
}
.region-drop__btn:after {
	content: '';
	display: block;
	width: 21px;
	height: 21px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px auto;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.75 1.03125L6.5 6.28125L1.25 1.03125' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
	transition: all .5s;
}
.region-drop__btn.active:after {
	transform: rotate(-180deg);
}
.region-drop__wrap {
	background-color: #fff;
	box-shadow: 0 8px 24px #c5c5c540;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 101;
	display: none;
}
.region-drop__list {
	width: fit-content;
	height: 300px;
	padding-top: 1.25vw;
    padding-bottom: 1.25vw;
	overflow: auto;
}
.region-drop__list button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	cursor: pointer;
	padding: .45vw .9vw;
}
.region-drop__list button.active {
	background-color: rgb(235, 111, 37);
    color: rgb(255, 255, 255);
}
.projects .section-head {
	margin-bottom: 0;
}
.projects__wrap {
	display: grid;
	grid-template-columns: 66% 27%;
	align-items: flex-start;
	justify-content: space-between;
	grid-gap: 20px;
}
.projects-map {
	position: relative;
	z-index: 1;
	margin-top: 60px;
	overflow: hidden;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}
.projects-map:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 10vw;
	height: 100%;
	background-image: linear-gradient(90deg, #fff, #fff0);
}
.projects-map__image {
	position: relative;
	z-index: 1;
	flex: none;
    width: 125%;
}
.projects-map__image img {
	display: block;
	max-width: none;
	width: 100%;
}
.projects-region {
	max-width: 367px;
	margin-left: auto;
	display: none;
}
.projects-region__title {
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 1.3;
}
.projects-region__tag {
	width: fit-content;
	margin: 5px 0 !important;
	background-color: var(--orange);
    color: var(--white);
    border-radius: 3px;
    padding: 4px;
    font-size: 14px;
}
.projects-region__text {
	font-size: 20px;
	line-height: 1.3;
}
.projects-region__date {
	color: var(--text--grey);
	line-height: 1.3;
}
.projects-region .accordions-item {
	padding: 0 0 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--grey);
}
.projects-region .accordions-item__head {
	font-size: 20px !important;
}
.projects-region .accordions-item__icon {
	width: 24px !important;
	height: 24px !important;
}
.projects-region .accordions-item__body {
	flex-direction: column;
	gap: 5px;
	padding-top: 10px;
}
.projects-region .projects-region__text > *:not(:last-child) {
	margin-bottom: 5px;
}
.projects-region .projects-region__text ul {
	padding-left: 20px;
	margin-bottom: 10px;
	list-style-type: square;
}
.projects-region .accordions-item__body > *:not(:last-child) {
	margin-bottom: 5px;
}
.projects-map__box {
    color: var(--orange-pale);
    cursor: pointer;
    height: auto;
    position: absolute;
    inset: 0% 0% auto auto;
}
.projects-map__box.active {
	color: var(--orange);
}
.projects-map__box.burkina-faso {
  width: 2.1874%;
  inset: auto auto 40.2197% 45.5791%;
}
.projects-map__box.guinei {
  width: 1.8914%;
  inset: auto auto 39.2% 42.912%;
}
.projects-map__box.kazahstan {
  width: 11.22%;
  inset: 30.279% 28.667% auto auto;
}
.projects-map__box.kareliya {
  width: 2.2289%;
  inset: 19.079% 42.42% auto auto;
}
.projects-map__box.novosibirsk {
  width: 3.9215%;
  inset: 26.879% 30.99% auto auto;
}
.projects-map__box.irkutsk {
  width: 7.98%;
  inset: 20.957% 18.553% auto auto;
}
.projects-map__box.yakutiya {
  width: 12.219%;
  inset: 12.4% 12.537% auto auto;
}
.projects-map__box.kamchatka {
  width: 3.88%;
  inset: 24.1% 5.72% auto auto;
}
.projects-map__box.sahalin {
  width: .71%;
  inset: 31.0387% 12.787% auto auto;
}
.projects-map__box.murmansk {
  width: 3.4536%;
  inset: 16.4% 41.4% auto auto;
}
.projects-map__box.moscow {
  width: 1.65%;
  inset: 24.56% 40.98% auto auto;
}
.projects-map__box.rostov {
  width: 2.4878%;
  inset: 30.92% 41.09% auto auto;
}
.projects-map__box.kurguzstan {
  width: 2.649%;
  inset: 38.959% 30.5953% auto auto;
}
.projects-map__box.zabaikal {
  width: 5%;
  inset: 24.15% 15.8887% auto auto;
}
.projects-map__box.kemerovo {
  width: 1.82%;
  inset: 27.84% 29.267% auto auto;
}
.projects-map__box.magadan {
  width: 7.6347%;
  display: block;
  inset: 17.879% 6.43% auto auto;
}
.projects-map__box.krasnoyarsk {
  width: 10.69%;
  height: 28.74%;
  inset: 3.1% 21.4664% auto auto;
}
.projects-map__box.krasnoyarsk .projects-map__box-inner {
  width: 70.87%;
  margin-top: -16.5%;
  margin-left: 12%;
}
.projects-map__box.sverdlovsk {
  width: 1.889%;
  inset: 24.04% 36.22% auto auto;
}
.projects-map__box.uzbekistan {
  width: 3.36%;
  inset: 37.48% 33.82% auto auto;
}
.projects-map__box.amursk {
  width: 3.4%;
  inset: 30.28% 15.088% auto auto;
}
.projects-map__box.buryatia {
  width: 7.288%;
  inset: 25.327% 18.276% auto auto;
}
.projects-map__box.belgorod {
  width: 1.37%;
  inset: 27.4% 43.5% auto auto;
}
.projects-map__box.kab-balk {
  width: 1.5%;
  inset: 36.6% 40.1% auto auto;
}
.projects-map__box-inner.yakutiya {
  width: 32.58%;
  position: absolute;
  inset: -26% 26% auto auto;
}
.projects-map__box-inner.magadan {
  position: absolute;
  inset: 0%;
}

.event-hero-section {
	padding: 120px 0 20px 0;
	background-color: var(--text--black);
    color: var(--white);
}
.event-hero-section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: flex-start;
	grid-gap: 40px;
	margin-bottom: 80px;
}
.event-hero-section .btn {
	padding-left: 40px;
	padding-right: 40px;
}
.event-hero-section .btn:before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 16L2 12L6 8' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M22 12L2 12' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.event-content {
	padding: 160px 0 0 0;
}
.event-content__wrap {
	display: grid;
	grid-template-columns: 1fr 365px;
	align-items: flex-start;
	grid-gap: 20px;
}
.event-content__left {
	max-width: 750px;
}
.event-content__title {
	margin-bottom: 80px;
}
.event-content__desc > * {
	margin-bottom: 20px;
}
.event-content__desc > *:last-child {
	margin-bottom: 0;
}
.event-content__desc img {
	display: block;
	height: auto;
	margin: 0 auto;
}
.event-content__down-image {
	margin-top: 100px;
}
.event-content__down-image img {
	display: block;
	width: 100%;
}
.event-content__bottom {
	margin-top: 10px;
}
.event-content__link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: fit-content;
	color: var(--orange);
	text-transform: uppercase;
	line-height: 1.5;
	transition: .3s;
}
.event-content__link:after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7H17V17' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M7 17L17 7' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.event-content__link:hover {
	opacity: 0.7;
}
.other-events__title {
	margin-bottom: 80px;
	font-size: 24px;
	line-height: 1.3;
}
.other-events__wrap {
	border-top: 1px solid var(--grey);
}
.other-events-item a {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: flex-start;
	grid-gap: 10px;
	text-decoration: none;
	padding: 20px 0;
	border-bottom: 1px solid var(--grey);
    color: var(--text--black);
	transition: .3s;
}
.other-events-item a[href]:after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='100%25' style='' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7H17V17' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M7 17L17 7' stroke='%23eb6f25' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}
.other-events-item a[href]:hover {
	color: var(--orange);
}

@media (min-width: 992px) {
	.header-nav .btn {
		display: none;
	}
}
@media (max-width: 1550px) {
	.container {
		max-width: 1550px;
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media (min-width: 992px) and (max-width: 1360px) {
	.header-logo img {
		width: 18.68vw;
	}
	.header-nav .menu-wrapper li a {
		font-size: 1.2vw;
		white-space: nowrap;
	}
	.header__languages li a {
		font-size: 1.2vw;
	}
	.header__right .btn {
        min-width: auto;
		font-size: 1.2vw;
		white-space: nowrap;
    }
}
@media (max-width: 991px) {
	h1, .h1, 
	h2, .h2 {
		font-size: 5vw;
	}
	.header__wrap {
		align-items: center;
		gap: 40px;
		height: 64px;
	}
	.header__wrap:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		height: 100%;
		width: 100%;
		background-color: var(--white);
	}
	.header-logo {
		position: relative;
		z-index: 5;
	}
	.header-logo img {
		max-width: 200px;
	}
	.header-nav__burger {
		display: flex;
		z-index: 5;
	}
	.header__right {
		grid-column: 3;
	}
	.header__right .btn {
		display: none;
	}
	.header-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 1px);
		z-index: -1;
		width: 100%;
		background-color: var(--white);
		flex-direction: column;
		gap: 50px;
		padding: 50px 0;
		height: auto;
		border: none;
		min-height: calc(100svh - 64px);
		max-height: calc(100svh - 64px);
		overflow: auto;
		transform: translateY(-125%);
		transition: 0.5s linear;
	}
	.header-nav.active {
		transform: translateY(0);
	}
	.header-nav .menu-wrapper {
		flex-direction: column;
		gap: 10px;
	}
	.header-nav .menu-wrapper a {
		display: block;
	}
	.header__languages {
		z-index: 5;
	}
	.header__languages li a {
		display: block;
		font-size: 14px;
	}
	body.single .header__wrap:before,
	body.single .header-nav {
		background-color: var(--text--black);
	}
	body.single .header-nav__burger {
		color: var(--white);
	}
	body.single .header-nav .btn {
		border: 1px solid var(--orange);
	}
	body.single .header-nav .btn:hover {
		background-color: var(--orange);
		opacity: 1;
	}

	.main-title-block__right {
		font-size: 2.5vw;
	}

	.advantages-items {
		grid-template-columns: 1fr 1fr;
		grid-gap: 15px;
	}
	.advantages-item {
		padding-top: 23vw;
		font-size: 18px;
	}
	.advantages-item:nth-child(3) {
		grid-column: 2 span;
	}
	.advantages-item:nth-child(2), 
	.advantages-item:nth-child(4), 
	.advantages-item:nth-child(5) {
		grid-column: auto;
	}
	.advantages-item__number {
		top: -3.1vw !important;
		right: -4.8vw !important;
		font-size: 24vw;
	}
	.advantages-item:nth-child(1) .advantages-item__number {
		right: -4.8vw !important;
	}

	.slick-initialized .slick-slide {
		width: 34vw;
	}
	.services-item {
		height: 44vw;
	}
	.services-item__title {
		font-size: 2.5vw;
	}

	.why-us-items {
		grid-template-columns: repeat(2,1fr);
	}
	.why-us-item__title {
		font-size: 3.5vw;
	}

	.filter-tabs__cards {
		grid-template-columns: repeat(3,1fr);
	}
	.events-preview__title {
		font-size: 2.5vw;
	}
	.page-services-item__link,
	.accordions-item__head,
	.kt-blocks-accordion-title,
	.documents-item a {
		font-size: 2.5vw;
	}

	.projects__wrap {
		grid-template-columns: 100%;
	}
	.projects__left {
		display: flex;
		flex-direction: column-reverse;
	}
	.projects-map__image {
		width: 130%;
	}
	.projects-map {
		margin-top: 4vw;
	}
	.projects-region__title {
		font-size: 2.5vw;
	}

	.numbers__items {
		grid-template-columns: repeat(2, 1fr);
	}
	.numbers-item__title {
		font-size: 5vw;
	}
	.customers__items {
		grid-template-columns: repeat(3,1fr);
		grid-gap: 10px;
	}
	.countries__wrap {
		grid-template-columns: 100%;
	}
	.countries-item__title {
		font-size: 2.5vw;
	}

	.experience__wrap {
		padding-top: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.experience-line {
		height: 2px !important;
		width: 5vw;
	}
	.experience-line.experience-line-250 {
		width: 25vw;
	}
	.experience-line.experience-line-240 {
		width: 24vw;
	}
	.experience-line.experience-line-230 {
		width: 25vw;
	}
	.experience-line.experience-line-220 {
		width: 22vw;
	}
	.experience-line.experience-line-210 {
		width: 21vw;
	}
	.experience-line.experience-line-200 {
		width: 20vw;
	}
	.experience-line.experience-line-190 {
		width: 19vw;
	}
	.experience-line.experience-line-180 {
		width: 18vw;
	}
	.experience-line.experience-line-170 {
		width: 17vw;
	}
	.experience-line.experience-line-160 {
		width: 16vw;
	}
	.experience-line.experience-line-150 {
		width: 15vw;
	}
	.experience-line.experience-line-140 {
		width: 14vw;
	}
	.experience-line.experience-line-130 {
		width: 13vw;
	}
	.experience-line.experience-line-120 {
		width: 12vw;
	}
	.experience-line.experience-line-110 {
		width: 11vw;
	}
	.experience-line.experience-line-100 {
		width: 10vw;
	}
	.experience-line.experience-line-90 {
		width: 9vw;
	}
	.experience-line.experience-line-80 {
		width: 8vw;
	}
	.experience-line.main-experience-line-1 {
		width: 60vw;
	}
	.experience-line.main-experience-line-2 {
		width: 60vw;
	}
	.experience-item {
		gap: 10px;
		transform: translateX(0%);
		margin-bottom: 10px;
	}
	.experience-item__year {
		font-size: 5vw;
	}
	.experience-item__text {
		opacity: 1;
		visibility: visible;
	}

	.about-hero__top, 
	.about-hero__bottom {
		grid-template-columns: 100%;
		grid-gap: 40px;
	}
	.about-hero__middle {
		border: none;
	}
	.about-hero-item {
		padding: 20px;
	}
	.about-hero-item__uptitle,
	.about-hero-item__title {
		font-size: 2.5vw;
	}
	.about-hero__middle {
		padding: 5.625vw 2.625vw;
	}
	.about-hero__title {
		font-size: 6vw;
	}
	.about-hero__desc {
		font-size: 18px;
	}
}
@media (max-width: 767px) {
	h1, .h1, 
	h2, .h2 {
		font-size: 6vw;
	}
	.section:not(.hero-section):not(.event-hero-section) {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.section-head {
		margin-bottom: 40px;
	}
	.section-head__desc {
		font-size: 18px;
	}

	.main-title-block {
		padding-top: 15px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.main-title-block__wrap {
		grid-template-columns: 100%;
		grid-gap: 15px;
	}
	.main-title-block__h1 {
		font-size: 10vw;
		text-align: center;
	}
	.main-title-block__right {
		font-size: 3.5vw;
		text-align: center;
	}
	.hero-section__info {
		padding: 0 20px 20px 20px;
	}
	.hero-section__desc {
		font-size: 18px;
	}
	.hero-section__video {
		height: 70vw;
	}

	.advantages-items {
		grid-template-columns: 1fr;
	}
	.advantages-item {
		padding-top: 40vw;
	}
	.advantages-item:nth-child(3) {
		grid-column: 1 span;
	}
	.advantages-item__number {
		font-size: 40vw;
	}
	.advantages-item:nth-child(1) .advantages-item__number {
		right: -8.4vw !important;
	}

	.services .section-head {
		grid-template-columns: 100%;
		grid-gap: 40px;
	}
	.services .slick-nav {
		justify-content: flex-start;
	}
	.slick-initialized .slick-slide {
		width: 43vw;
	}
	.services-item {
		height: 56vw;
	}
	.services-item__title {
		font-size: 3.5vw;
	}

	.why-us-items {
		grid-template-columns: repeat(1,1fr);
	}
	.why-us-item__title {
		font-size: 5vw;
	}

	.team-experience__wrap {
		grid-template-columns: 100%;
	}
	.team-experience__items {
		margin-bottom: 2.5vw;
	}
	.team-experience-item {
		padding: 30px 0;
	}

	.footer {
		padding: 40px 0;
		text-align: center;
	}
	.footer-logo {
		width: fit-content;
		margin: 0 auto;
	}
	.footer-logo img {
		max-width: 200px;
	}
	.footer-middle {
		grid-template-columns: 100%;
		justify-content: center;
	}
	.footer-contacts {
		grid-column: 1;
		align-items: center;
	}
	.footer-contacts {
		font-size: 3.5vw;
	}
	.footer-links {
		align-items: center;
	}
	.footer-address .footer__title,
	.footer-address .footer-address__text {
		text-align: center;
	}
	.footer-top {
		margin-bottom: 50px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 10px;
	}

	.contacts__wrap {
		grid-template-columns: 100%;
	}
	.contacts__right iframe {
		height: 50vw;
		max-height: none !important;
		margin-top: 50px;
	}
	.filter-tabs__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.events-preview__title {
		font-size: 3.5vw;
	}
	.event-hero-section {
		padding-top: 80px;
	}
	.event-hero-section__head {
		grid-template-columns: 100%;
		grid-gap: 30px;
		margin-bottom: 60px;
	}
	.event-hero-section__date {
		grid-row: 1;
	}
	.event-content__title {
		margin-bottom: 40px;
	}
	.event-content__wrap {
		grid-template-columns: 100%;
		grid-gap: 60px;
	}
	.other-events__title {
		margin-bottom: 40px;
		font-size: 20px;
	}
	.page-services-item__link,
	.accordions-item__head,
	.kt-blocks-accordion-title,
	.documents-item a {
		font-size: 3.5vw;
	}
	.page-services--single .page-services-links__item {
		padding: 10px;
	}
	.projects-map__image {
		width: 120%;
	}
	.projects-map {
		margin-top: 7.5vw;
	}
	.projects-region__title {
		font-size: 3.5vw;
	}
	.region-drop__list button {
		padding: 5px 10px;
	}
	.numbers-item__title {
		font-size: 6vw;
	}
	.customers__items {
		grid-template-columns: repeat(2,1fr);
	}
	.team-preview__content {
		padding: 10px 0 15px 0;
	}
	.team-popup__wrap {
		height: 90vh;
		overflow: auto;
	}
	.team-popup .team-preview {
		flex-direction: column;
	}
	.team-popup__close {
		width: 30px;
		height: 30px;
		right: 10px;
	}
	.team-popup .team-preview__photo {
		width: 80%;
		height: 65vw;
	}
	.team-popup .team-preview__photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.team-popup .team-preview__content {
		width: 100%;
	}
	.team-popup .team-preview__name {
		font-size: 34px;
	}
	.team-popup .team-preview__post {
		font-size: 18px;
	}
	.team-popup .team-preview__content {
		height: auto;
		max-height: none;
	}
	.team-popup .team-preview__desc {
		padding-top: 0;
	}
	.countries-item__title {
		font-size: 3.5vw;
	}
	.experience-item__year {
		font-size: 6vw;
	}
	.about-hero__wrap {
		padding: 20px;
	}
	.about-hero-item__uptitle,
	.about-hero-item__title {
		font-size: 3.5vw;
	}
	.about-hero__title {
		font-size: 8vw;
	}
}
@media (max-width: 525px) {
	h1, .h1, 
	h2, .h2 {
		font-size: 9vw;
	}
	.main-title-block__right {
		font-size: 5vw;
	}
	.hero-section__video {
		height: 120vw;
	}
	.slick-initialized .slick-slide {
		width: 70vw;
	}
	.services-item {
		height: 91vw;
	}
	.services-item__title {
		font-size: 5vw;
	}
	.why-us-item__title {
		max-width: 100%;
		font-size: 34px;
	}
	.team-experience-item {
		grid-template-columns: 100%;
		grid-gap: 20px;
	}
	.footer-contacts {
		font-size: 5vw;
	}
	.contacts__right iframe {
		height: 110vw;
	}
	.filter-tabs__cards {
		grid-template-columns: repeat(1,1fr);
	}
	.filter-tabs__tab {
		padding: 14px 12px 14px 14px;
        font-size: 14px;
	}
	.events-preview__title {
		font-size: 5.5vw;
	}
	.page-services-item__link,
	.accordions-item__head,
	.kt-blocks-accordion-title {
		font-size: 7vw;
	}
	.documents-item a {
		font-size: 5vw;
	}
	.projects-map__image {
		width: 172%;
	}
	.projects-map {
		margin-top: 10vw;
	}
	.projects-region__title {
		margin-bottom: 20px;
		font-size: 5vw;
	}
	.projects-region .accordions-item__head {
		font-size: 18px !important;
	}
	.numbers__items {
		grid-template-columns: repeat(1, 1fr);
	}
	.numbers-item__title {
		font-size: 9vw;
	}
	.customers-item {
		filter: none;
	}
	.countries-item__title {
		font-size: 5vw;
	}
	.experience-item__year {
		font-size: 9vw;
	}
	.about-hero-item__uptitle,
	.about-hero-item__title {
		font-size: 5vw;
	}
	.about-hero__title {
		font-size: 10vw;
	}
}
ul.ull {
    color: #EB6F25;
}
ul.ull span {
    color: #1a181a;
}