/*!
Theme Name: RockForAds
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
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: rockforads
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.

RockForAds 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/
*/

@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');

:root {
	--container: 1480px;
	--gap: 20px;

	--text-size: 20px;
	--text-size-sm: 18px;
	--text-size-esm: 16px;

	--h1-size: 40px;
	--h2-size: 36px;
	--h3-size: 30px;
	--h4-size: 26px;
	--h5-size: 24px;
	--h6-size: 22px;

	--dark: #242424;
	--light: #EEEEEE;
	--blue: #2350D8;
	--red: #C00003;
}
*, ::after, ::before {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Jura', sans-serif;
	line-height: 1.3;
	color: var(--black);
	background: var(--light);
}
body.styleDark {
	color: var(--light);
	background: var(--dark);
}
body.styleDark.post-type-archive-projects:before {
	content: '';
	background: url(images/archive-projects-bg-dark.png) no-repeat center top;
	background-size: 100%;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 110px;
	left: 0;
	z-index: -1;
}
a {
	color: var(--blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Jura', sans-serif;
	font-weight: 700;
	margin: 20px 0 12px;
	line-height: 1.2;
}
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 12px;
}
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%;
}
.blockLightStyle-flex {
	display: flex !important;
}
.blockLightStyle-inline-block {
	display: inline-block !important;
}
.blockDarkStyle-flex,
.blockDarkStyle-inline-block {
	display: none !important;
}
body.styleDark .blockLightStyle-flex,
body.styleDark .blockLightStyle-inline-block {
	display: none !important;
}
body.styleDark .blockDarkStyle-flex {
	display: flex !important;
}
body.styleDark .blockDarkStyle-inline-block {
	display: inline-block !important;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px -14px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 7px;
	margin-bottom: 14px;
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, 0.7);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, 0.7);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, 0.7);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, 0.7);
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	font-size: var(--text-size-sm);
	font-weight: 500;
	font-family: 'Jura', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: transparent;
	border: 1px solid var(--dark);
	color: var(--dark);
	border-radius: 10px;
	padding: 15px 24px;
	min-height: 60px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 145px;
	resize: vertical;
}
select {
	cursor: pointer;
}
input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
input[type="tel"].wpcf7-not-valid,
select.wpcf7-not-valid,
textarea.wpcf7-not-valid {
	border-color: var(--red);
	color: var(--red);
}
.form-field-button {
	margin-top: 6px;
}
body.styleDark .form-field-button .btn-link {
	color: var(--dark);
}
body.styleDark .form-field-button .btn-link:hover {
	color: var(--blue);
}
body.styleDark .form-field-button .btn-link:after {
	background-color: var(--dark);
}
body.styleDark .form-field-button .btn-link:hover:after {
	background-color: var(--blue);
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-esm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 16px;
	font-size: var(--text-size-sm);
	text-align: center;
}


.resume-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
.resume-wrapper .wpcf7-form-control-wrap {
	display: none;
}
.resume-button {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	font-size: var(--text-size-sm);
	font-weight: 500;
	font-family: 'Jura', sans-serif;
	line-height: 1.5;
	background: transparent;
	border: 1px solid var(--dark);
	color: rgba(36, 36, 36, 0.7);
	border-radius: 10px;
	padding: 5px 12px;
	height: 60px;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.resume-button.filled {
	color: var(--dark);
}
.resume-button:hover {
	border-color: var(--blue);
	color: var(--blue);
}
.resume-button.error {
	border-color: var(--red);
	color: var(--red);
}
.resume-button:after {
	content: '';
	-webkit-mask-image: url(images/paper.svg);
	mask-image: url(images/paper.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: rgba(36, 36, 36, 0.7);
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	transition: .5s;
}
.resume-button.filled:after {
	background-color: var(--dark);
}
.resume-button:hover:after {
	background-color: var(--blue);
}
.resume-button.error:after {
	background-color: var(--red);
}
.resume-message {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
	font-size: var(--text-size-sm);
	line-height: 1.111;
}
.resume-button.error + .resume-message {
	color: var(--red);
}



.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;
	}
}


.heading {
	position: relative;
	margin-bottom: 30px;
}
.heading.center {
	text-align: center;
}
.heading h1,
.heading h2 {
	font-size: var(--h2-size);
	font-weight: 700;
	text-transform: uppercase;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	font-size: var(--h5-size);
	font-family: 'Jura', sans-serif;
	font-weight: 700;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 9px 30px;
	border-radius: 10px;
	outline: none;
	min-height: 60px;
	text-decoration: none;
	cursor: pointer;
	transition: .5s;;
}
.btn.btn-lg {
	padding: 7px 30px;
	min-height: 66px;
	font-size: calc(var(--h2-size) / 1.125);
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	flex: 0 0 26px;
	max-width: 26px;
	width: 26px;
	height: 26px;
	transition: .5s;
}
.btn-icon-left:hover:before,
.btn-icon-right:hover:after {
	transform: rotate(45deg);
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--light);
}
.btn-primary:hover {
	background-color: var(--dark);
	border-color: var(--dark);
	color: var(--light);
}
body.styleDark .btn-primary:hover {
	background-color: var(--light);
	border-color: var(--light);
	color: var(--dark);
}
.btn-primary:before,
.btn-primary:after {
	background-color: var(--light);
}
body.styleDark .btn-primary:hover:before,
body.styleDark .btn-primary:hover:after {
	background-color: var(--dark);
}
.btn-outline-secondary {
	background-color: rgba(217, 217, 217, 0.1);
	border-color: var(--dark);
	color: var(--dark);
}
body.styleDark .btn-outline-secondary {
	border-color: var(--light);
	color: var(--light);
}
.btn-outline-secondary:hover,
body.styleDark .btn-outline-secondary:hover {
	background-color: rgba(217, 217, 217, 0.1);
	border-color: var(--blue);
	color: var(--blue);
}
.btn-outline-secondary:before,
.btn-outline-secondary:after {
	background-color: var(--dark);
}
body.styleDark .btn-outline-secondary:before,
body.styleDark .btn-outline-secondary:after {
	background-color: var(--light);
}
.btn-outline-secondary:hover:before,
.btn-outline-secondary:hover:after,
body.styleDark .btn-outline-secondary:hover:before,
body.styleDark .btn-outline-secondary:hover:after {
	background-color: var(--blue);
}
.btn.btn-link {
	min-width: auto;
    min-height: 22px;
    padding: 0;
    color: var(--dark);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: none;
	font-size: var(--text-size-sm);
}
body.styleDark .btn-link {
	color: var(--light);
}
.btn-link.white {
	color: var(--light);
}
body.styleDark .btn-link.white {
	color: var(--dark);
}
.btn-link:hover,
.btn-link.white:hover,
body.styleDark .btn-link:hover,
body.styleDark .btn-link.white:hover {
	color: var(--blue);
}
.btn.btn-link:before,
.btn.btn-link:after {
	background-color: var(--dark);
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
}
body.styleDark .btn-link:before,
body.styleDark .btn-link:after {
	background-color: var(--light);
}
.btn-link.white:before,
.btn-link.white:after {
	background-color: var(--light);
}
body.styleDark .btn-link.white:before,
body.styleDark .btn-link.white:after {
	background-color: var(--dark);
}
.btn-link:hover:before,
.btn-link:hover:after,
.btn-link.white:hover:before,
.btn-link.white:hover:after,
body.styleDark .btn-link:hover:before,
body.styleDark .btn-link:hover:after,
body.styleDark .btn-link.white:hover:before,
body.styleDark .btn-link.white:hover:after {
	background-color: var(--blue);
}
.btn-icon-arrow_r_u:before,
.btn-icon-arrow_r_u:after {
	-webkit-mask-image: url(images/arrow-right-up.svg);
	mask-image: url(images/arrow-right-up.svg);
}

.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 6px;
}
.swiper-pagination-bullet {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px !important;
	height: 4px !important;
	background: var(--dark) !important;
	margin: 0 !important;
	opacity: 1 !important;
	border-radius: 10px !important;
	transition: .5s;
}
body.styleDark .swiper-pagination-bullet {
	background: var(--light) !important;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active,
body.styleDark .swiper-pagination-bullet:hover,
body.styleDark .swiper-pagination-bullet-active {
	background: var(--blue) !important;
}
.swiper-pagination-bullet-active {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px !important;
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.soc-links li a:hover {
	transform: scale(1.1);
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}



.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-wrap {
	position: relative;
	background: var(--light);
	height: 100%;
	width: 100%;
	transform: translateY(-100%);
	transition: .5s;;
	overflow: auto;
	z-index: 1;
}
body.styleDark .modal-mobile-wrap {
	background: var(--dark);
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	padding: 10px 0;
	z-index: 1;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 30px;
}
.modal-mobile-header-logo {
	flex: auto;
}
.modal-mobile-header-logo img {
	max-height: 30px;
}
.modal-mobile-header-logo img:nth-child(2),
body.styleDark .modal-mobile-header-logo img:nth-child(1) {
	display: none;
}
body.styleDark .modal-mobile-header-logo img:nth-child(2) {
	display: inline;
}
.modal-mobile-close {
	flex: 0 0 26px;
	max-width: 26px;
	width: 26px;
	height: 26px;
	-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(--dark);
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;;
}
body.styleDark .modal-mobile-close {
	background-color: var(--light);
}
.modal-mobile-close:hover,
body.styleDark .modal-mobile-close:hover {
	background-color: var(--blue);
}
.modal-mobile-body {
	padding: 20px 0;
}
.mobile-menu {
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mobile-menu li a {
	color: var(--dark);
	text-decoration: none;
	font-size: var(--h4-size);
	font-weight: 500;
}
body.styleDark .mobile-menu li a {
	color: var(--light);
}
.mobile-menu li a:hover,
.mobile-menu li.current-menu-item a,
body.styleDark .mobile-menu li a:hover,
body.styleDark .mobile-menu li.current-menu-item a {
	color: var(--blue);
}
.mobile-lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-lang-menu > li > a {
	display: none;
}
.mobile-lang-menu ul {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-lang-menu ul li a {
	font-size: var(--h4-size);
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--dark);
	padding: 3px 8px;
	border-radius: 10px;
	display: block;
}
body.styleDark .mobile-lang-menu ul li a {
	color: var(--light);
}
.mobile-lang-menu ul li a:hover,
body.styleDark .mobile-lang-menu ul li a:hover {
	color: var(--blue);
}
.mobile-lang-menu ul li.current-lang a,
body.styleDark .mobile-lang-menu ul li.current-lang a {
	background: var(--blue);
	color: var(--light);
}



.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 {
	display: flex;
	flex-wrap: wrap;
	margin: 26px -12px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -24px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item * {
	height: 100%;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 40px;
	margin-bottom: 50px;
}
.alignright {
	float: right;
	margin-left: 40px;
	margin-bottom: 50px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

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

.header {
	/*position: sticky;*/
	position: relative;
	top: 0;
	background: var(--light);
	border-bottom: 1px solid var(--dark);
	padding: 22px 0;
	transition: .5s;
	z-index: 92;
}
body.styleDark .header {
	background: transparent;
	border-bottom-color: var(--light);
}
body.home .header {
	border-bottom-color: transparent;
	background: transparent;
}
/*.header.fixed {
	background: var(--light) !important;
	border-bottom-color: var(--dark) !important;
}
body.styleDark .header.fixed {
	background: var(--dark) !important;
	border-bottom-color: var(--light) !important;
}*/
.header-wrap {
	display: flex;
	align-items: center;
	height: 65px;
	gap: var(--gap);
}
.header-logo {
	flex: 1;
}
.header-logo img {
	max-height: 65px;
}
.header-logo img:nth-child(2),
body.styleDark .header-logo img:nth-child(1) {
	display: none;
}
body.styleDark .header-logo img:nth-child(2) {
	display: inline;
}
.main-menu {
	flex: 4;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
	font-weight: 500;
}
.main-menu li a {
	color: var(--dark);
	text-decoration: none;
}
body.styleDark .main-menu li a {
	color: var(--light);
}
.main-menu li a:hover,
.main-menu li.current-menu-item a,
body.styleDark .main-menu li a:hover,
body.styleDark .main-menu li.current-menu-item a {
	color: var(--blue);
}
.header-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: calc(var(--gap) * 1.5);
}
.header-themeStyle {
	display: flex;
}
.header-themeStyle button {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/moon.svg);
	mask-image: url(images/moon.svg);
	background-color: var(--dark);
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
body.styleDark .header-themeStyle button {
	background-color: var(--light);
}
body.styleDark .header-themeStyle button {
	-webkit-mask-image: url(images/sun.svg);
	mask-image: url(images/sun.svg);
}
.header-themeStyle button:hover,
body.styleDark .header-themeStyle button:hover {
	background-color: var(--blue);
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-sm);
	font-weight: 700;
	text-transform: uppercase;
}
.lang-menu > li {
	position: relative;
}
.lang-menu > li > a {
	position: relative;
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	z-index: 1;
}
body.styleDark .lang-menu > li > a {
	color: var(--light);
}
.lang-menu > li > a:hover,
body.styleDark .lang-menu > li > a:hover {
	color: var(--blue);
}
.lang-menu > 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/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--dark);
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	transition: .5s;
}
body.styleDark .lang-menu > li.menu-item-has-children > a:after {
	background-color: var(--light);
}
.lang-menu > li.active > a:after {
	transform: rotate(-180deg);
}
.lang-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	width: 100%;
	border: 1px solid var(--dark);
	background: var(--light);
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 9;
}
body.styleDark .lang-menu ul {
	border-color: var(--light);
	background: var(--dark);
}
.lang-menu ul li {
	position: relative;
	text-align: center;
	border-bottom: 1px solid var(--dark);
	z-index: 1;
}
body.styleDark .lang-menu ul li {
	border-bottom-color: var(--light);
}
.lang-menu ul li:last-child {
	border-bottom: none;
}
.lang-menu ul li a {
	color: var(--dark);
	text-decoration: none;
	display: block;
	padding: 5px;
}
body.styleDark .lang-menu ul li a {
	color: var(--light);
}
.lang-menu ul li a:hover,
body.styleDark .lang-menu ul li a:hover {
	color: var(--blue);
}
.header-toggle {
	display: flex;
}
.header-toggle button {
	-webkit-mask-image: url(images/bar_humburger_menu.svg);
	mask-image: url(images/bar_humburger_menu.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--dark);
	flex: 0 0 26px;
	max-width: 26px;
	width: 26px;
	height: 26px;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
body.styleDark .header-toggle button {
	background-color: var(--light);
}
.header-toggle button:hover,
body.styleDark .header-toggle button:hover {
	background-color: var(--blue);
}



.main {
	position: relative;
	margin-top: -110px;
	z-index: 1;
}
body.post-type-archive-vacancies .main {
	overflow: hidden;
}
body.styleDark.page-template-page-about .main {
	overflow: hidden;
}
body.styleDark.page-template-page-about .main:before {
	content: '';
	background: url(images/p_about-bg-dark-1.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 818px;
	height: 690px;
	left: calc((100% - var(--container)) / 2 - 250px);
	top: 22px;
	z-index: -1;
}
body.styleDark.page-template-page-about .main:after {
	content: '';
	background: url(images/p_about-bg-dark-2.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 668px;
	height: 628px;
	right: calc((100% - var(--container)) / 2 - 278px);
	bottom: -120px;
	z-index: -1;
}



.footer {
	position: relative;
	padding: 60px 0;
	z-index: 1;
}
.contacts-info {
	margin-bottom: 50px;
	text-align: center;
}
.contacts-heading {
	font-size: var(--h4-size);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.23;
	margin-bottom: 16px;
}
.contacts-email {
	font-size: var(--h5-size);
	line-height: 1.2;
	margin-bottom: 8px;
}
.contacts-email a {
	font-weight: 700;
}
.contacts-address {
	line-height: 1.2;
	font-size: var(--text-size-sm);
}
.copyright {
	font-size: 14px;
	text-align: center;
}



.hero-section {
	position: relative;
	padding: 210px 0 100px;
	min-height: 540px;
	overflow: hidden;
	border-bottom: 1px solid var(--dark);
	z-index: 1;
}
body.styleDark .hero-section {
	border-bottom-color: var(--light);
}
.hero-section:after {
	content: '';
	background: url(images/sots.png) no-repeat center;
	background-size: contain;
	width: 593px;
	height: 375px;
	position: absolute;
	top: 125px;
	right: calc((100% - var(--container)) / 2 - 70px);
	transform: rotate(61deg);
	z-index: -1;
}
body.styleDark .hero-section:after {
	background-image: url(images/hero-bg-dark.jpg);
	background-size: cover;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	opacity: 1;
	transform: none;
}
.hero-wrap {
	padding-left: 21%;
}
.hero-heading {
	position: relative;
	font-weight: 600;
	font-size: var(--h1-size);
	line-height: 1.175;
	margin-bottom: 35px;
	z-index: 1;
}
.hero-heading:before {
	content: '';
	position: absolute;
	width: 100px;
	height: 2px;
	background: var(--dark);
	border-radius: 10px;
	bottom: -22px;
	left: -50px;
	z-index: 1;
}
.hero-heading:after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100px;
	background: var(--dark);
	border-radius: 10px;
	bottom: -54px;
	left: -17px;
	z-index: 1;
}
body.styleDark .hero-heading:before,
body.styleDark .hero-heading:after {
	background: var(--light);
}
.hero-description {
	line-height: 1.2;
}



.projectsLogo-section {
	position: relative;
	padding: 100px 0;
	border-bottom: 1px solid var(--dark);
	z-index: 1;
}
body.styleDark .projectsLogo-section {
	border-bottom-color: var(--light);
}
.projectsLogo-mobile {
	display: none;
}
.projectsLogo-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 70px;
	max-width: 1100px;
	margin: auto;
}
.projectsLogo-button {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	/*align-items: center;
	justify-content: center;*/
	opacity: 0;
	background: rgba(238, 238, 238, .4);
	backdrop-filter: blur(4px);
	transition: .5s;
	z-index: 1;
}
body.styleDark .projectsLogo-button {
	background: rgba(36, 36, 36, 0.4);
}
.projectsLogo-button a {
	flex: 0 0 100%;
}
.projectsLogo-button:hover {
	opacity: 1;
}



.counters-section {
	position: relative;
	border-bottom: 1px solid var(--dark);
	padding: 55px 0;
	z-index: 1;
}
body.styleDark .counters-section {
	border-bottom-color: var(--light);
}
.counters-items {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1350px;
	margin: 0 auto;
}
.counters-item {
	flex: 0 0 calc((100% / 3) - (2 * 40px / 3));
	max-width: calc((100% / 3) - (2 * 40px / 3));
}
.counters-item__wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.counters-item__text {
	font-size: var(--h6-size);
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--blue);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.counters-item__value {
	font-size: calc(var(--h1-size) * 2.25);
	font-weight: 700;
	line-height: 1.17777;
	color: var(--blue);
}




.about-section {
	position: relative;
	padding: 80px 0 0;
	z-index: 1;
}
.about-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-left {
	flex: calc(43% - 50px);
	max-width: calc(43% - 50px);
	display: flex;
}
.about-image {
	flex: 0 0 calc(100% - 36px);
	max-width: calc(100% - 36px);
	border-radius: 10px;
	overflow: hidden;
}
.about-caption {
	position: relative;
	flex: 0 0 36px;
	max-width: 36px;
	z-index: 1;
}
.about-caption span {
	position: absolute;
    width: max-content;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: rotate(-90deg);
    transform-origin: top left;
    bottom: -32px;
    text-transform: uppercase;
    color: #767676;
}
.about-right {
	flex: 0 0 57%;
	max-width: 57%;
}
.about-heading.heading {
	margin-bottom: 12px;
}
.about-content {
	font-size: var(--text-size-sm);
	margin-bottom: 34px;
}
.about-button {
	text-align: center;
}



.vacancies-section {
	position: relative;
	padding: 80px 0 40px;
	overflow: hidden;
	z-index: 1;
}
.vacancies-swiper .swiper-slide {
	width: 333px;
}
.vacancies-item__wrap {
	position: relative;
	background: var(--dark);
	color: var(--light);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}
body.styleDark .vacancies-item__wrap {
	background: var(--light);
	color: var(--dark);
}
.vacancies-item__wrap.closed {
	color: rgba(238, 238, 238, .5);
	background: rgba(36, 36, 36, 0.5);
}
body.styleDark .vacancies-item__wrap.closed {
	background: #3F3F3F;
	color: rgba(238, 238, 238, .5);
}
.vacancies-item__closed {
	position: absolute;
	background: var(--blue);
	color: var(--light);
	font-size: var(--text-size-esm);
	font-weight: 500;
	padding: 5px 13px;
	border-radius: 10px;
	transform: rotate(7deg);
	top: 2px;
	right: -8px;
	z-index: 1;
}
.vacancies-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}
.vacancies-item__title a {
	color: var(--light);
	text-decoration: none;
}
body.styleDark .vacancies-item__title a {
	color: var(--dark);
}
.vacancies-item__wrap.closed .vacancies-item__title a,
body.styleDark .vacancies-item__wrap.closed .vacancies-item__title a {
	color: rgba(238, 238, 238, .5);
}
.vacancies-item__title a:hover,
body.styleDark .vacancies-item__title a:hover {
	color: var(--blue);
}
.vacancies-item__content {
	margin-bottom: 20px;
	font-size: var(--text-size-esm);
	line-height: 1.25;
}
.vacancies-item__button {
	text-align: center;
}
.vacancies-item__wrap.closed .vacancies-item__button a {
	color: rgba(238, 238, 238, .5);
}
.vacancies-item__wrap.closed .vacancies-item__button a:after {
	background-color: rgba(238, 238, 238, .5);
}




.page-header {
	position: relative;
	padding: 135px 0 80px;
	z-index: 1;
}
body.single-projects .page-header {
	padding-bottom: 50px;
}
body.single-vacancies .page-header {
	padding-bottom: 56px;
}
.page-breadcrumbs {
	font-size: calc(var(--text-size-esm) / 1.06667);
	line-height: 1.2;
	margin: 0;
}
.page-breadcrumbs a {
	color: var(--dark);
	text-decoration: none;
}
body.styleDark .page-breadcrumbs a {
	color: var(--light);
}
.page-breadcrumbs a:hover,
body.styleDark .page-breadcrumbs a:hover {
	color: var(--blue);
}
.page-title {
	margin: 72px 0 0;
	text-align: center;
	font-size: calc(var(--h1-size) * 1.75);
	font-weight: 700;
	text-transform: uppercase;
}
.page-title span {
	position: relative;
	color: var(--light);
	z-index: 1;
}
.page-title span:before {
	content: '';
	position: absolute;
	width: calc((100vw - var(--container)) / 2 + 100% + 12px);
	height: 70px;
	top: 8px;
	right: -12px;
	background: var(--blue);
	border-radius: 0 10px 10px 0;
	z-index: -1;
}
body.post-type-archive-projects .page-title,
body.post-type-archive-vacancies .page-title {
	text-align: left;
	margin-top: 40px;
}
body.single-projects .page-title {
	margin-top: 40px;
}
.page-description {
	margin-top: 28px;
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.18;
}
body.single-projects .page-description {
	margin-top: 12px;
	font-size: var(--h6-size);
	font-weight: 400;
	line-height: 1.18;
	text-align: center;
}
body.post-type-archive-vacancies .page-title,
body.post-type-archive-vacancies .page-description {
	max-width: 685px;
}
.page-body {
	position: relative;
	padding-bottom: 60px;
	border-bottom: 1px solid var(--dark);
}
body.styleDark .page-body {
	border-bottom-color: var(--light);
}




.pAbout-wrap {
	position: relative;
	max-width: 88%;
	margin: 0 auto;
	z-index: 1;
}
.pAbout-wrap:after {
	content: '';
	display: block;
	clear: both;
}
.pAbout-image {
	float: left;
	margin: 0 40px 50px 0;
	max-width: 520px;
}
.pAbout-image img {
	border-radius: 10px;
	max-width: calc(var(--container) * .4);
}
.pAbout-item {
	margin-bottom: 50px;
}
.pAbout-item:last-child {
	margin-bottom: 0;
}
.pAbout-item__both {
	clear: both;
}

.pAbout-item__blockquote {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 25px 0;
	z-index: 1;
}
.pAbout-item__blockquote:before,
.pAbout-item__blockquote:after {
	content: '';
	background: var(--dark);
	position: absolute;
	width: 100%;
	height: 1px;
	max-width: 310px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
body.styleDark .pAbout-item__blockquote:before,
body.styleDark .pAbout-item__blockquote:after {
	background: var(--light);
}
.pAbout-item__blockquote:before {
	top: 0;
}
.pAbout-item__blockquote:after {
	bottom: 0;
}
.pAbout-item__blockquote blockquote {
	position: relative;
	color: var(--blue);
	font-size: var(--text-size-sm);
	line-height: 1.222;
	font-style: italic;
	font-weight: 700;
	text-align: center;
	padding: 0 44px;
	z-index: 1;
}
body.styleDark .pAbout-item__blockquote blockquote {
	color: var(--light);
}
.pAbout-item__blockquote blockquote:before,
.pAbout-item__blockquote blockquote:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	-webkit-mask-image: url(images/quote.svg);
	mask-image: url(images/quote.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
	top: calc(50% - 15px);
	z-index: 1;
}
body.styleDark .pAbout-item__blockquote blockquote:before,
body.styleDark .pAbout-item__blockquote blockquote:after {
	background-color: var(--light);
}
.pAbout-item__blockquote blockquote:before {
	left: 0;
	transform: scale(-1, 1);
}
.pAbout-item__blockquote blockquote:after {
	right: 0;
}


.error-404-number {
	font-size: calc(var(--h1-size) * 6);
	font-weight: 900;
	text-align: center;
	line-height: 1;
	margin-bottom: 30px;
}
.error-404-button {
	text-align: center;
}





.projects-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.projects-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.projects-item:nth-child(1),
.projects-item:nth-child(2) {
	flex: 0 0 50%;
	max-width: 50%;
}
.projects-item__wrap {
	position: relative;
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.2578);
	border: 1px solid var(--dark);
	border-radius: 10px;
	overflow: hidden;
	display: block;
	z-index: 1;
}
body.styleDark .projects-item__wrap {
	border-color: var(--light);
}
.projects-item:nth-child(1) .projects-item__wrap,
.projects-item:nth-child(2) .projects-item__wrap {
	height: calc((var(--container) - var(--gap)) / 2 / 1.2578);
}
.projects-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.projects-item__image img {
	object-position: center top;
}
.projects-item__button {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	background: rgba(36, 36, 36, .4);
	backdrop-filter: blur(4px);
	opacity: 0;
	padding: var(--gap);
	transition: .5s;
	z-index: 1;
}
body.styleDark .projects-item__button {
	background: rgba(238, 238, 238, .4);
}
.projects-item__wrap:hover .projects-item__button {
	opacity: 1;
}



.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	gap: calc(var(--gap) / 2);
	list-style: none;
}
.nav-links .page-numbers {
	background: rgba(217, 217, 217, 0.1);
	border: 1px solid var(--dark);
	font-size: var(--h5-size);
	font-weight: 700;
	color: var(--dark);
	min-width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	border-radius: 10px;
}
body.styleDark .nav-links .page-numbers {
	background: rgba(36, 36, 36, .4);
	border-color: var(--light);
	color: var(--light);
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current,
body.styleDark .nav-links .page-numbers:hover,
body.styleDark .nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--light);
}



.singleProjects-wrap {
	display: grid;
	grid-template-columns: 4fr 2fr;
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 54px;
	grid-row-gap: 25px;
}
.singleProjects-image {
	grid-area: 1 / 1 / 2 / 2;
	overflow: hidden;
	border-radius: 10px;
	height: calc((var(--container) * .67 - 27px) / 1.8181);
}
.singleProjects-image img {
	object-position: center top;
}
.singleProjects-info {
	position: relative;
	grid-area: 1 / 2 / 3 / 3;
	z-index: 1;
}
.singleProjects-content {
	grid-area: 2 / 1 / 3 / 2;
}
.singleProjects-info-sticky {
	position: sticky;
	top: 140px;
	z-index: 1;
}
.singleProjects-website {
	margin-bottom: 64px;
	font-size: var(--text-size-sm);
	line-height: 1.22;
}
.singleProjects-website p {
	margin-bottom: 12px;
}
.singleProjects-website:last-child,
.singleProjects-website p:last-child {
	margin-bottom: 0;
}
.singleProjects-website .btn {
	width: 100%;
}
.singleProjects-soc {
	margin-bottom: 30px;
}
.singleProjects-soc:last-child {
	margin-bottom: 0;
}
.singleProjects-soc p {
	font-size: var(--text-size-sm);
	line-height: 1.22;
	margin-bottom: 12px;
}



.archiveVacancies-images {
	position: relative;
	height: 400px;
	margin-bottom: 70px;
	z-index: 1;
}
.archiveVacancies-image {
	position: absolute;
	border-radius: 10px;
	overflow: hidden;
	z-index: 1;
}
.archiveVacancies-image:nth-child(1) {
	top: 0;
	left: 0;
	width: 632px;
	height: 400px;
	transform: rotate(3.28deg);
}
.archiveVacancies-image:nth-child(2) {
	width: 342px;
    height: 408px;
    top: -108px;
    left: 712px;
	transform: rotate(-7.42deg);
    z-index: 2;
}
.archiveVacancies-image:nth-child(3) {
	width: 420px;
	height: 500px;
	left: 1000px;
	top: -303px;
	transform: rotate(9.34deg);
}
.archiveVacancies-info {
	position: relative;
	max-width: 1000px;
	margin: 50px auto 0;
	z-index: 1;
}
body.styleDark .archiveVacancies-info:before {
	content: '';
	background: url(images/archive-vacancies-info-bg-dark.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 683px;
	height: 453px;
	top: -85px;
	right: calc((100vw - var(--container)) / 2 - 455px);
	z-index: -1;
}

.vacanciesList-item {
	position: relative;
	width: 100vw;
	margin-left: calc((100vw - var(--container)) / -2);
	border-bottom: 1px solid var(--dark);
	z-index: 1;
}
.vacanciesList-item:first-child {
	border-top: 1px solid var(--dark);
}
body.styleDark .vacanciesList-item {
	border-bottom-color: var(--light);
}
body.styleDark .vacanciesList-item:first-child {
	border-top-color: var(--light);
}
.vacanciesList-item__wrap {
	max-width: 1000px;
	margin: auto;
	padding: 30px 0;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.vacanciesList-item__wrap.closed {
	opacity: .5;
}
body.styleDark .vacanciesList-item__wrap.closed {
	opacity: 1;
}
body.styleDark .vacanciesList-item__wrap.closed:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3F3F3F;
	z-index: -1;
}
body.styleDark .vacanciesList-item__wrap.closed > * {
	opacity: .5;
}
.vacanciesList-item__left {
	flex: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.vacanciesList-item__right {
	flex: 0 0 auto;
}
.vacanciesList-item__title {
	font-size: calc(var(--h3-size) / 1.0714);
	margin: 0;
	font-weight: 700;
	line-height: 1.0714;
	text-transform: uppercase;
}
.vacanciesList-item__title a {
	text-decoration: none;
	color: var(--dark);
}
body.styleDark .vacanciesList-item__title a {
	color: var(--light);
}
.vacanciesList-item__title a:hover,
body.styleDark .vacanciesList-item__title a:hover {
	color: var(--blue);
}
.vacanciesList-item__project {
	font-size: var(--text-size);
	line-height: 1.5;
	text-transform: uppercase;
}




.singleVacancies-wrap {
	position: relative;
	z-index: 1;
}
.singleVacancies-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: 45px;
	max-width: calc(var(--container) * .66 - 45px);
}
.singleVacancies-logo img {
	max-height: 36px;
}
.singleVacancies-title {
	max-width: calc(var(--container) * .66 - 45px);
	font-size: var(--h1-size);
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 40px;
	margin-top: 0;
}
.singleVacancies-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 1;
}
.singleVacancies-left {
	flex: 0 0 calc(66% - 44px);
	max-width: calc(66% - 45px);
}
.singleVacancies-right {
	position: sticky;
	top: 140px;
	flex: 0 0 calc(34% - 45px);
	max-width: calc(34% - 45px);
	z-index: 1;
}
.singleVacancies-characteristics {
	margin-bottom: 50px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.singleVacancies-characteristics:last-child {
	margin-bottom: 0;
}
.singleVacancies-characteristics li {
	position: relative;
	padding-left: 22px;
	z-index: 1;
}
.singleVacancies-characteristics li:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 5px;
	left: 0;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--dark);
	z-index: 1;
}
body.styleDark .singleVacancies-characteristics li:before {
	background-color: var(--light);
}
.singleVacancies-characteristics li.location:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.singleVacancies-characteristics li.work_place:before {
	-webkit-mask-image: url(images/business_global.svg);
	mask-image: url(images/business_global.svg);
}
.singleVacancies-characteristics li.format:before {
	-webkit-mask-image: url(images/work.svg);
	mask-image: url(images/work.svg);
}
.singleVacancies-characteristics li.schedule:before {
	-webkit-mask-image: url(images/list.svg);
	mask-image: url(images/list.svg);
}
.singleVacancies-characteristics li.salary:before {
	-webkit-mask-image: url(images/money.svg);
	mask-image: url(images/money.svg);
}
.singleVacancies-characteristics:last-child {
	margin-bottom: 0;
}
.singleVacancies-button {
	margin-bottom: 26px;
}
.singleVacancies-button:last-child {
	margin-bottom: 0;
}
.singleVacancies-button .btn {
	width: 100%;
}




.form-section {
	position: relative;
	border-bottom: 1px solid var(--dark);
	padding: 66px 0;
	z-index: 1;
}
body.styleDark .form-section {
	border-color: var(--light);
	background-color: var(--light);
	color: var(--dark);
}
.form-wrap {
	max-width: 1136px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form-left {
	flex: 0 0 calc(56% - 100px);
	max-width: calc(56% - 100px);
}
.form-right {
	flex: 0 0 44%;
	max-width: 44%;
}
.form-heading {
	font-size: var(--h4-size);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.23;
	margin-bottom: 18px;
}
.form-content {
	font-size: var(--text-size-sm);
}



@media (max-width: 1549px) {
	:root {
		--container: 1310px;
		--gap: 20px;

		--text-size: 18px;
		--text-size-sm: 16px;
		--text-size-esm: 14px;

		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.header {
		padding: 16px 0;
	}
	.header-wrap {
		height: 56px;
	}
	.header-logo img {
		max-height: 56px;
	}
	.main {
		margin-top: -90px;
	}
	.hero-section {
		padding-top: 190px;
	}
	.hero-wrap {
		padding-left: 13%;
	}
	.page-header {
		padding-top: 115px;
	}
	.page-title span:before {
		height: 66px;
	}
	.pAbout-item__blockquote br {
		display: none;
	}
	.archiveVacancies-images {
		height: 375px;
	}
	.archiveVacancies-image:nth-child(1) {
		width: 560px;
		height: 375px;
	}
	.archiveVacancies-image:nth-child(2) {
		width: 290px;
		height: 360px;
		top: -100px;
		left: 650px;
	}
	.archiveVacancies-image:nth-child(3) {
		width: 360px;
		height: 420px;
		left: 930px;
		top: -275px;
	}
	.singleProjects-info-sticky,
	.singleVacancies-right {
		top: 110px;
	}
}




@media (max-width: 1399px) {
	:root {
		--container: 1110px;
		--gap: 20px;

		--text-size: 18px;
		--text-size-sm: 16px;
		--text-size-esm: 14px;

		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	input[type="text"], input[type="email"], input[type="tel"], select, textarea {
		padding: 14px 20px;
		min-height: 54px;
	}
	.main-menu {
		gap: 40px;
	}
	.resume-button {
		height: 54px;
		padding: 5px 8px;
	}
	.resume-button:after {
		flex: 0 0 36px;
		max-width: 36px;
		width: 36px;
		height: 36px;
	}
	.btn {
		font-size: var(--h6-size);
		padding: 8px 24px;
		min-height: 54px;
	}
	.btn.btn-lg {
		padding: 7px 24px;
		min-height: 60px;
		font-size: calc(var(--h3-size) / 1.125);
	}
	.heading {
		margin-bottom: 24px;
	}
	.hero-section {
		min-height: 480px;
		padding: 170px 0 80px;
	}
	.hero-section:after {
		top: 145px;
		right: calc((100% - var(--container)) / 2 - 160px);
	}
	.hero-wrap {
        padding-left: 10%;
    }
    .projectsLogo-section {
    	padding: 80px 0;
    }
    .projectsLogo-items {
    	gap: 40px;
    }
    .counters-items {
    	gap: 30px;
    }
    .counters-item__value {
    	font-size: calc(var(--h1-size) * 2);
    }
    .footer {
    	padding: 50px 0 30px;
    }
    .contacts-info {
    	margin-bottom: 30px;
    }
    .page-header {
    	padding: 105px 0 50px;
    }
    .page-title {
    	font-size: calc(var(--h1-size) * 1.5);
    	margin-top: 40px;
    }
	.page-title span:before {
		height: 60px;
		width: calc((100vw - var(--container)) / 2 + 100% + 9px);
		top: 6px;
		right: -9px;
	}
	.pAbout-image {
		margin: 0 30px 40px 0;
	}
	.pAbout-item {
		margin-bottom: 40px;
	}
	.pAbout-item__blockquote {
		padding: 20px 0;
	}
	.pAbout-item__blockquote blockquote {
		padding: 0 36px;
	}
	body.post-type-archive-projects .page-title, body.post-type-archive-vacancies .page-title {
		margin-top: 30px;
	}
	.page-description {
		margin-top: 24px;
	}
	.singleProjects-wrap {
		grid-column-gap: 40px;
		grid-row-gap: 24px;
	}
	.singleProjects-website {
		margin-bottom: 40px;
	}
	.singleProjects-soc {
		margin-bottom: 24px;
	}
	body.post-type-archive-vacancies .page-title, body.post-type-archive-vacancies .page-description {
		max-width: 620px;
	}
	.archiveVacancies-images {
		height: 320px;
		margin-bottom: 50px;
	}
	.archiveVacancies-image:nth-child(1) {
		width: 480px;
		height: 320px;
		left: 40px;
	}
	.archiveVacancies-image:nth-child(2) {
        width: 250px;
        height: 300px;
        top: -50px;
        left: 560px;
    }
	.archiveVacancies-image:nth-child(3) {
		width: 280px;
		height: 360px;
		left: 820px;
		top: -200px;
	}
	.vacanciesList-item__wrap {
		padding: 24px 0;
	}
	body.single-vacancies .page-header {
		padding-bottom: 40px;
	}
	.singleVacancies-meta {
		margin-bottom: 30px;
	}
	.singleVacancies-title {
		margin-bottom: 24px;
	}
	.singleVacancies-left {
		flex: 0 0 calc(66% - 20px);
		max-width: calc(66% - 20px);
	}
	.singleVacancies-right {
		flex: 0 0 calc(34% - 20px);
		max-width: calc(34% - 20px);
	}
	.singleVacancies-characteristics {
		margin-bottom: 36px;
	}
	.singleVacancies-button {
		margin-bottom: 20px;
	}
	.form-left {
		flex: 0 0 calc(56% - 60px);
		max-width: calc(56% - 60px);
	}
	.contacts-email {
		font-size: var(--h6-size);
	}
	.nav-links .page-numbers {
		min-width: 54px;
		height: 54px;
		font-size: var(--h6-size);
	}
}





@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 20px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;

		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header {
		padding: 8px 0;
	}
	.main {
		margin-top: -74px;
	}
	.hero-section {
		padding: 174px 0 80px;
	}
	.hero-section:after {
		top: 110px;
		right: calc((100% - var(--container)) / 2 - 230px);
	}
	.counters-items {
		gap: 20px;
	}
	.counters-item {
		flex: 0 0 calc((100% / 3) - (2 * 20px / 3));
		max-width: calc((100% / 3) - (2 * 20px / 3));
	}
	.projectsLogo-items {
		gap: 30px;
	}
	.about-left {
		flex: calc(47% - 30px);
		max-width: calc(47% - 30px);
	}
	.about-right {
		flex: 0 0 53%;
		max-width: 53%;
	}
	.about-content {
		margin-bottom: 24px;
	}
	.page-header {
    	padding: 89px 0 36px;
    }
    .page-title,
    body.single-projects .page-title {
    	margin-top: 24px;
    }
    .pAbout-wrap {
    	max-width: 100%;
    }
    body.post-type-archive-projects .page-title, body.post-type-archive-vacancies .page-title {
    	margin-top: 24px;
    }
    .page-description {
    	margin-top: 16px;
    }
    .page-title span:before {
    	height: 50px;
    }
    body.single-projects .page-header {
    	padding-bottom: 36px;
    }
    .archiveVacancies-images {
    	height: 280px;
    }
    .archiveVacancies-image:nth-child(1) {
    	left: 0;
    	width: 430px;
    	height: 280px;
    }
	.archiveVacancies-image:nth-child(2) {
		width: 235px;
		height: 280px;
		top: -40px;
		left: 460px;
	}
	.archiveVacancies-image:nth-child(3) {
        width: 245px;
        height: 305px;
        left: 660px;
        top: -190px;
    }
}


@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 14px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;

		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 17px;
		--h6-size: 16px;
	}
	body.styleDark.post-type-archive-projects:before {
		top: 130px;
	}
	input[type="text"], input[type="email"], input[type="tel"], select, textarea {
		padding: 7px 13px;
		min-height: 40px;
		font-size: var(--text-size-esm);
	}
	.resume-wrapper {
		gap: 8px;
	}
	.resume-button {
		flex: 0 0 100%;
		max-width: 100%;
		height: 40px;
		padding: 2px 13px;
	}
	.resume-message {
		flex: 0 0 100%;
		max-width: 100%;
		font-size: var(--text-size-esm);
	}
	.resume-button:after {
        flex: 0 0 30px;
        max-width: 30px;
        width: 30px;
        height: 30px;
    }
	.btn {
        font-size: var(--h3-size);
        padding: 7px 24px;
        min-height: 48px;
    }
	.btn.btn-lg {
        padding: 7px 24px;
        min-height: 54px;
        font-size: var(--h3-size);
    }
	.btn.btn-link {
		font-size: var(--text-size-sm);
	}
	.heading {
		text-align: center;
	}
	.heading h1, .heading h2 {
		font-size: var(--h1-size);
	}
	.header {
		padding: 10px 0;
	}
	.header-wrap {
		height: 30px;
	}
	.header-logo img {
		max-height: 30px;
	}
	.main-menu {
		display: none;
	}
	.main {
		margin-top: -51px;
	}
	.hero-section {
		min-height: 184px;
		padding: 80px 0 60px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.hero-wrap {
		padding-left: 0;
	}
	.hero-heading:before,
	.hero-heading:after {
		display: none;
	}
	.hero-heading {
		font-size: var(--h4-size);
		text-align: center;
		text-transform: uppercase;
		margin: 0 0 12px;
	}
	.hero-description {
		text-align: center;
		font-size: var(--text-size-sm);
		max-width: 380px;
		margin: 0 auto;
	}
	.hero-description br {
		display: none;
	}
	.hero-section:after {
		top: -60px;
		right: calc((100% - var(--container)) / 2 - 230px);
		width: 424px;
		opacity: .4;
	}
	body.styleDark .hero-section:after {
		background-position: center 70%;
	}
	.projectsLogo-section {
		padding: 20px 0;
		/*height: 69px;*/
	}
	.projectsLogo-mobile {
		display: block;
	}
	.projectsLogo-desktop {
		display: none;
	}
	.projectsLogo-marquee {
		width: 100%;
		overflow: hidden;
	}
	.projectsLogo-marquee span {
		margin-right: 22px;
	}
	.projectsLogo-marquee > span {
		display: none;
	}
	.projectsLogo-marquee img {
		max-height: 28px;
	}

	.counters-section {
		padding: 20px 0 32px;
		border-bottom: none;
	}
	.counters-items {
		gap: 28px 28px;
	}
	.counters-item {
		flex: 0 0 calc((100% / 2) - (28px / 2));
		max-width: calc((100% / 2) - (28px / 2));
	}
	.counters-item__wrap {
		flex-direction: column-reverse;
	}
	.counters-item__value {
		font-size: calc(var(--h3-size) * 2);
		margin-bottom: 4px !important;
	}
	.counters-item__text {
		font-size: var(--text-size-esm);
		padding-bottom: 16px;
		margin-bottom: 0;
		line-height: 1.09;
	}
	.about-section {
		padding: 0 0 26px;
		border-bottom: 1px solid var(--dark);
		overflow: hidden;
	}
	body.styleDark .about-section {
		border-bottom-color: var(--light);
	}
	.about-left {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
		margin-bottom: 26px;
	}
	.about-image {
		border-radius: 0;
		max-width: 100vw;
		width: 100vw;
		margin-left: calc((100vw - var(--container)) / -2);
		height: calc(100vw / 1.3);
	}
	.about-caption {
		max-width: 100%;
	}
	.about-caption span {
		position: relative;
		transform: none;
		bottom: 0;
		width: 100%;
		height: auto;
		text-align: center;
		font-weight: 700;
		margin-top: 13px;
	}
	.about-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.about-heading.heading {
		margin-bottom: 20px;
	}
	.about-content {
		font-weight: 500;
	}
	.vacancies-section {
		padding: 36px 0 0;
	}
	.vacancies-item__title {
		font-size: var(--h1-size);
	}
	.vacancies-item__content {
		font-size: var(--text-size);
	}
	.footer {
		padding: 36px 0 16px;
	}
	.contacts-info {
		margin-bottom: 20px;
	}
	.contacts-heading {
		font-size: var(--text-size);
	}
	.contacts-email {
		font-size: var(--text-size-sm);
	}
	.contacts-address {
		font-size: var(--text-size-esm);
	}
	.copyright {
		font-size: 11px;
	}
	.lang-menu {
		display: none;
	}
	.page-header {
		padding: 68px 0 30px;
	}
	.page-title {
		text-align: left;
		font-size: var(--h1-size);
	}
	.page-title, body.single-projects .page-title,
	body.post-type-archive-projects .page-title, body.post-type-archive-vacancies .page-title {
		margin-top: 16px;
	}
	.pAbout-image {
		margin: 0 0 24px;
		float: none;
		max-width: 100%;
	}
	.pAbout-image img {
		max-width: 100%;
	}
	.pAbout-item {
		margin-bottom: 24px;
	}
	.page-body {
		padding-bottom: 40px;
	}
	.page-title span:before {
		height: 26px;
		width: calc((100vw - var(--container)) / 2 + 100% + 4px);
		top: 3px;
		right: -4px;
	}
	.page-description {
		margin-top: 8px;
		font-weight: 400;
	}
	.projects-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.projects-item__wrap {
		height: calc((var(--container) - var(--gap)) / 2 / 1.459) !important;
	}
	body.single-projects .page-description {
		margin-top: 8px;
		text-align: left;
		font-size: var(--text-size-esm);
	}
	body.single-projects .page-header {
		padding-bottom: 16px;
	}
	.singleProjects-wrap {
		display: block;
	}
	.singleProjects-image {
		height: calc(var(--container) / 1.8181);
		margin-bottom: 16px;
	}
	.singleProjects-info {
		margin-bottom: 26px;
	}
	.singleProjects-info-sticky {
		display: flex;
		flex-direction: column;
		gap: 26px;
		position: relative;
		top: 0;
	}
	.singleProjects-website {
		margin-bottom: 0;
		order: 1;
	}
	.singleProjects-website p:first-child {
		display: none;
	}
	.singleProjects-characteristics {
		order: 2;
	}
	.singleProjects-soc {
		order: 3;
		margin-bottom: 0;
	}
	.singleProjects-soc p {
		margin-bottom: 10px;
		font-size: var(--text-size);
	}
	.soc-links {
		gap: 10px;
	}
	.soc-links li a {
		width: 30px;
		height: 30px;
	}
	body.post-type-archive-vacancies .page-title, body.post-type-archive-vacancies .page-description {
		max-width: 100%;
	}
	.archiveVacancies-wrap {
		display: flex;
		flex-direction: column;
	}
	.archiveVacancies-images {
		order: 1;
		display: flex;
		margin-bottom: 26px;
		height: 240px;
		gap: 8px;
	}
	.archiveVacancies-image {
		position: relative;
		flex: 0 0 calc(25% - 6px);
		max-width: calc(25% - 6px);
		top: 0 !important;
		left: 0 !important;
		bottom: 0 !important;
		right: 0 !important;
		height: auto !important;
		width: auto !important;
		transform: none !important;
		z-index: 1;
	}
	.archiveVacancies-image:nth-child(1) {
		flex: 0 0 calc(50% - 4px);
		max-width: calc(50% - 4px);
	}
	.archiveVacancies-posts {
		order: 2;
		margin-bottom: 40px;
	}
	.archiveVacancies-info {
		order: 3;
		margin-bottom: 0;
		margin-top: 0;
	}
	.vacanciesList-item__wrap {
		flex-direction: column;
	}
	.vacanciesList-item__left {
		width: 100%;
	}
	.vacanciesList-item__right {
		flex: auto;
		width: 100%;
		text-align: center;
	}
	.vacanciesList-item__title {
		font-size: var(--h3-size);
	}
	.nav-links .page-numbers {
		min-width: 48px;
		height: 48px;
	}
	body.single-vacancies .page-header {
		padding-bottom: 30px;
	}
	.singleVacancies-wrap {
		display: flex;
		flex-direction: column;
	}
	.singleVacancies-title {
		order: 1;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.singleVacancies-meta {
		max-width: 100%;
		order: 2;
		margin-bottom: 20px;
	}
	.singleVacancies-logo img {
		max-height: 36px;
	}
	.singleVacancies-date {
		font-size: var(--text-size-esm);
	}
	.singleVacancies-inner {
		order: 3;
		flex-direction: column-reverse;
		align-items: normal;
	}
	.singleVacancies-right {
		position: relative;
		flex: auto;
		max-width: 100%;
		top: 0;
		margin-bottom: 26px;
	}
	.singleVacancies-left {
		flex: auto;
		max-width: 100%;
	}
	.singleVacancies-characteristics {
		margin-bottom: 20px;
	}
	.singleVacancies-button {
		margin-bottom: 12px;
	}
	.form-section {
		padding: 26px 0;
	}
	.form-wrap {
		max-width: 100%;
	}
	.form-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 26px;
	}
	.form-heading {
		font-size: var(--h1-size);
		margin-bottom: 14px;
	}
	.form-content {
		font-size: var(--text-size);
	}
	.form-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	body.styleDark .archiveVacancies-info:before {
		width: 305px;
		height: 205px;
		top: -140px;
		right: calc((100vw - var(--container)) / 2 - 100px);
		transform: rotate(12deg);
	}
	body.styleDark.page-template-page-about .main:before {
		display: none;
	}
	body.styleDark.page-template-page-about .main:after {
		width: 368px;
		height: 345px;
		right: calc((100% - var(--container)) / 2 - 175px);
		bottom: 0;
	}

	.projectsLogo-item img {
		max-width: 280px;
		max-height: 32px;
	}
}


@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 14px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;

		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 17px;
		--h6-size: 16px;
	}
}


@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 24px);
		--gap: 14px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;

		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 17px;
		--h6-size: 16px;
	}
	.archiveVacancies-images {
		height: 120px;
	}
	.projectsLogo-item img {
		max-width: 160px;
		max-height: 28px;
	}
}