@font-face {
	font-family: CeraPro;
	font-display: swap;
	src: url("../fonts/CeraPro-Bold.woff2") format("woff2"), url("../fonts/CeraPro-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: CeraPro;
	font-display: swap;
	src: url("../fonts/CeraPro-Regular.woff2") format("woff2"), url("../fonts/CeraPro-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"),
		url("../fonts/Montserrat-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
		url("../fonts/Montserrat-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
		url("../fonts/Montserrat-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: OpenSans;
	font-display: swap;
	src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: OpenSans;
	font-display: swap;
	src: url("../fonts/OpenSans-Medium.woff2") format("woff2"), url("../fonts/OpenSans-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: OpenSans;
	font-display: swap;
	src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	color: var(--clr-black);
	line-height: 1;
	font-family: "OpenSans";
	font-size: 1.125rem;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
	font-family: "OpenSans";
	font-size: inherit;
}

button,
input.cta {
	cursor: pointer;
}
button {
	color: inherit;
	background-color: inherit;
}

a {
	color: inherit;
}

a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}
main a {
	color: var(--clr-orange);
	transition: color 0.3s ease;
}
main a:hover {
	color: var(--clr-blue);
}
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

.lock body {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.wrapper > main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.wrapper > * {
	min-width: 0;
}

:root {
	--clr-white: #fff;
	--clr-light-gray: #d9dadd;
	--clr-dark-gray: #5e6167;
	--clr-blue-gray: #8696a5;
	--clr-superlight-gray: #fafafa;
	--clr-superlight-blue: #f4f7ff;
	--clr-black: #03050f;
	--clr-orange: #e5680d;
	--clr-blue: #405361; /* #002a99 */
	--clr-blue-alpha: rgba(0, 42, 153, 0.8);
	--clr-light-blue: #8095cd;
	--clr-almost-dark: #06154a;
	--bsh-card: 4px 5px 30px rgba(8, 31, 90, 0.12);
	--ff-sec: "Montserrat", "OpenSans", sans-serif;
	--ff-main: "OpenSans", "Montserrat", sans-serif;
}

.container {
	/*	-webkit-box-sizing: content-box;
			box-sizing: content-box;*/
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 72.5rem;
	margin: 0 auto;
	padding: 0 1rem;
	width: 100%;
}

.select {
	position: relative;
}

.select__body {
	position: relative;
	font-family: var(--ff-sec);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.25;
	color: var(--clr-white);
}

.footer .select__body,
.header--background .select__body {
	color: var(--clr-blue);
}

.select__title {
	color: inherit;
	text-align: left;
	cursor: pointer;
	width: 100%;
	border-radius: 4px;
	font: inherit;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

._select-open .select__title {
	color: var(--clr-blue);
}

.select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 1.875rem;
	padding: 0 0.9375rem;
	gap: 0.625rem;
	font: inherit;
}

.select__value > * {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.select__value:after {
	content: "";
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	height: 0.5rem;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-right: 1px solid var(--clr-white);
	border-bottom: 1px solid var(--clr-white);
	-webkit-transform: rotate(45deg) translateY(-0.125rem);
	-ms-transform: rotate(45deg) translateY(-0.125rem);
	transform: rotate(45deg) translateY(-0.125rem);
}

._select-open .select__value:after,
.footer .select__value:after,
.header--background .select__value:after {
	border-color: var(--clr-blue);
}

.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}

.select__text {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}

.select__options {
	color: #000;
	position: absolute;
	top: 29px;
	min-width: 100%;
	left: 0;
	background-color: var(--clr-white);
}

.footer .select__options,
.header--background .select__options {
	background-color: var(--clr-superlight-blue);
}

.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
}

.select__option {
	width: 100%;
	display: block;
	text-align: left;
	cursor: pointer;
	padding: 5px 15px;
	color: inherit;
	font: inherit;
}

.select__option._select-selected {
	background-color: var(--clr-blue);
	outline: none;
}

.select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.select._select-open {
	z-index: 5;
}

._select-tag {
	cursor: pointer;
}

body::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 149;
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px 10px;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
}

.popup_show {
	z-index: 150;
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	min-height: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
	padding-top: 1.875rem;
}

.popup__content {
	position: relative;
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	background-color: var(--clr-white);
	padding: 1.25rem;
	padding-top: 1.875rem;
	width: 100%;
	max-width: 63.75rem;
}

.lock .popup__content {
	visibility: visible;
}

.popup__content h4 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.popup__content h4:not(:last-child) {
	margin-bottom: 0.3125rem;
}

.popup__content h5 {
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 160%;
	color: var(--clr-black);
}

.popup__content #show-position h5 {
	margin-bottom: 2.5rem;
}

.popup__content h6 {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--clr-blue);
}

.popup__content p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
}

.popup__content p:not(:last-child) {
	margin-bottom: 1.875rem;
}

.popup__close {
	position: absolute;
	top: 0.9375rem;
	right: 0.9375rem;
	outline: none;
}

.popup__close svg {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
}

[class*="-ibg"] {
	position: relative;
}

[class*="-ibg"] img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.projects__container [class*="-ibg"] img {
border-radius: 30px;
}

.new [class*="-ibg"] img {
	width: unset;
	right: 0;
	left: unset;
}
[class*="-ibg_contain"] img {
	-o-object-fit: contain;
	object-fit: contain;
}

.cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	padding: 0.625rem 2.5rem;
	border-radius: 0.4285714286em;
	background-color: var(--clr-orange);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 150%;
	color: var(--clr-white);
	text-transform: uppercase;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;	
}


.cta--stroke {
	background-color: var(--clr-white);
	color: var(--clr-blue);
	border: 2px solid #1279BE;
	background:  linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.cta:disabled {
  background-color: #ccc;
  color: #676;
  cursor: not-allowed;
}
.main-title {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.slider-activities {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.slider-activities--tripple a:first-child {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.slider-activities--reverse.slider-activities {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.slider-activities .swiper-pagination {
	margin-bottom: 1.875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.slider-activities .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 0.5rem;
	flex: 0 0 0.5rem;
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--clr-light-gray);
	border-radius: 50%;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.slider-activities .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
	margin-right: 0.3125rem;
}

.slider-activities .swiper-pagination .swiper-pagination-bullet-active {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.5625rem;
	flex: 0 0 1.5625rem;
	width: 1.5625rem;
	background-color: var(--clr-orange);
	border-radius: 3.375rem;
}

.projects.another-products .slider-activities .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--clr-white);
}

.slider-activities a {
  font-family: var(--ff-main);
  font-size: 0.875rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: var(--clr-black);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-light-blue);
  -webkit-transition: all 0.32s ease-in-out;
  -o-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  margin-top: 12px;
}

.slider-activities a svg {
	display: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.slider-activities--light .swiper-pagination .swiper-pagination-bullet {
	background-color: rgba(134, 150, 165, 0.7);
}

.slider-activities--light .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--clr-white);
}

.slider-activities--light a {
	color: var(--clr-light-gray);
}

.slider-activities--light a svg {
	fill: var(--clr-light-gray);
}

.scroll-top {
	position: fixed;
	z-index: 99999999;
	right: max(0.625rem, (100% - 1160px) / 2 - 70px);
	bottom: 20vh;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.scroll-top.active {
	opacity: 1;
	pointer-events: all;
}

.scroll-top svg {
	display: block;
	width: 40px;
	height: 40px;
}

.fl-r {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.gr-cl {
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
}

.certificates {
	margin-bottom: 3.75rem;
}

.certificates .certificates__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.certificates .certificates__container h2 {
	max-width: 35rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue-gray);
	text-align: center;
	margin-bottom: 1.875rem;
}

.certificates .certificates__container button {
	width: 100%;
	margin-top: 2.5rem;
}

.not-found {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.not-found__container h1 {
	color: #fff;
	font-family: Montserrat;
	font-size: 181px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 181px */
}

.not-found__container a,
.not-found__container button {
	max-width: 12.25rem;
	/*margin: 0 auto;*/
	margin-top: 60px;
}
.not-found__container span {
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 48px */
}
.menu {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2.5rem 0 3.75rem;
	background-color: var(--clr-white);
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	opacity: 0;
	pointer-events: none;
	overflow-y: auto;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.menu-open .menu {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	pointer-events: all;
}

.menu .menu__body:not(:last-child) {
	margin-bottom: 1.25rem;
}

.menu .menu__body > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.menu .menu__body > ul > li {
	position: relative;
}

.menu .menu__body > ul > li ul li a,
.menu .menu__body > ul > li ul li.active > span {
	display: block;
	padding: 0.625rem 1.25rem;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.35;
	letter-spacing: 0.02em;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.menu .menu__body > ul > li > a,
.menu .menu__body > ul > li > span {
	display: block;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 140%;
	text-align: center;
	color: var(--clr-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.icon-menu {
	display: block;
	position: relative;
	width: 1rem;
	height: 0.75rem;
	cursor: pointer;
	z-index: 999995;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
	content: "";
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	right: 0;
	position: absolute;
	height: 0.125rem;
	border-radius: 0.625rem;
	background-color: var(--clr-white);
}

.icon-menu::before {
	top: 0;
	width: 60%;
}

.icon-menu::after {
	bottom: 0;
	right: auto;
	left: 0;
	width: 60%;
}

.icon-menu span {
	top: calc(50% - 0.0625rem);
	width: 100%;
}

.menu-open .icon-menu span {
	width: 0;
}

.menu-open .icon-menu::before,
.menu-open .icon-menu::after {
	width: 100%;
	background-color: var(--clr-blue);
}

.menu-open .icon-menu::before {
	top: calc(50% - 0.0625rem);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-open .icon-menu::after {
	bottom: calc(50% - 0.0625rem);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header--background .icon-menu span,
.header--background .icon-menu::before,
.header--background .icon-menu::after {
	background-color: #fff;
}

.menu-open .header--background .icon-menu span,
.menu-open .header--background .icon-menu::before,
.menu-open .header--background .icon-menu::after {
	background-color: #415462;
}

/*
.logo .logo__icon {
	width: 8.1875rem;
	height: 2.3125rem;
}
*/

.logo .logo__icon {

}

.header_bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;	
}

.logo_mob {
	display: none;
}
.header_fixed .logo_mob {
	display: inline-flex;
	max-width: 70%;
}

.logo_mob_img {
	width: 100%;
}
span.header__logo.logo {
  max-width: 70%;
}
.logo_top_mob {
  display: inline-flex;
  width: 100%;
}
.logo_top_desk{
	display: none;
}

@media (min-width: 70.9988em) {

	.header_fixed .logo_mob, .logo_top_mob {
		display: none;
	}
	.logo_top_desk{
		display: inline-flex;
	}
}
.breadcrumbs {
	margin: 1.25rem 0 2.5rem;
}

.breadcrumbs ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.breadcrumbs ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.breadcrumbs ul li:not(:last-child)::after {
	content: "/";
	margin: 0 0.25rem;
	color: var(--clr-dark-gray);
}

.breadcrumbs ul li a,
.breadcrumbs ul li > span {
	font-family: var(--clr-main);
	font-size: 0.75rem;
	line-height: 1.33;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	color: var(--clr-dark-gray);
}

.breadcrumbs ul li a:focus {
	outline: none;
	color: var(--clr-black);
}

.breadcrumbs ul li:last-child a,
.breadcrumbs ul li:last-child > span {
	color: var(--clr-black);
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.pagination:not(:first-child) {
	margin-top: 1.875rem;
}

.pagination ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.pagination ul li:not(:last-child) {
	margin-right: 0.625rem;
}

.pagination ul li .page-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 2.5rem;
	flex: 0 0 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.pagination ul li .page-numbers:focus {
	outline: none;
	background-color: var(--clr-light-blue);
	color: var(--clr-white);
}

.pagination ul li .page-numbers.current {
	color: var(--clr-white);
	background-color: var(--clr-blue);
}

.response-form .response-form__body {
	display: -ms-grid;
	display: grid;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	row-gap: 1.125rem;
}

.response-form .response-form__body div {
	position: relative;
}

.response-form .response-form__body div .close-button {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	top: 0.5rem;
	right: 0.625rem;
	background-color: var(--clr-white);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.response-form .response-form__body div .close-button svg {
	display: block;
	width: 0.75rem;
	height: 0.75rem;
}

.response-form .response-form__body div .close-button.shown {
	opacity: 1;
	pointer-events: all;
}

.response-form .response-form__activities {
	margin-top: 1.5rem; /*2.1875rem;*/
	position: relative;
}

.response-form .response-form__activities input[type="file"] {
	position: absolute;
	pointer-events: none;
	top: -200px;
	opacity: 0;
}

.response-form .response-form__activities label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.375;
	color: var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}
.response-form .response-form__activities label[for="summary"] {
	cursor: pointer;
}

.response-form .response-form__activities label img {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.25rem;
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.3125rem;
}

.response-form .response-form__activities button,
.response-form .response-form__activities .cta {
	width: 100%;
	margin-top: 1.25rem;
}

.response-form input:not(.cta),
.response-form textarea {
	display: block;
	width: 100%;
	height: 2.5rem;
	padding: 0 0.625rem;
	background-color: transparent;
	border: 1px solid var(--clr-light-gray);
	font-family: var(--ff-main);
	font-size: 1rem;
	line-height: 1.875;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	resize: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.response-form input:not(.cta)::-webkit-input-placeholder,
.response-form textarea::-webkit-input-placeholder {
	color: var(--clr-dark-gray);
}

.response-form input:not(.cta)::-moz-placeholder,
.response-form textarea::-moz-placeholder {
	color: var(--clr-dark-gray);
}

.response-form input:not(.cta):-ms-input-placeholder,
.response-form textarea:-ms-input-placeholder {
	color: var(--clr-dark-gray);
}

.response-form input:not(.cta)::-ms-input-placeholder,
.response-form textarea::-ms-input-placeholder {
	color: var(--clr-dark-gray);
}

.response-form input:not(.cta)::placeholder,
.response-form textarea::placeholder {
	color: var(--clr-dark-gray);
}

.response-form input:not(.cta):focus,
.response-form textarea:focus {
	outline: none;
	-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	border-color: var(--clr-blue);
}

.response-form input:not(.cta).filled,
.response-form textarea.filled {
	background-color: var(--clr-superlight-blue);
	border-color: transparent;
}

.response-form textarea {
	height: 8.75rem;
	margin-top: 0.75rem;
	padding: 0.3125rem 0.625rem;
}

.response-form input:not(.cta).just-validate-error-field {
	background-color: var(--clr-superlight-blue);
	border-color: transparent;
}

.response-form .just-validate-error-label {
	margin-top: 0.3125rem;
	font-size: 0.75rem;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: #d60a0a;
}

.search {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.search label {
	cursor: pointer;
	margin-bottom: 0.3125rem;
	margin-right: 0.625rem;
	-webkit-transform: translateY(2.125rem);
	-ms-transform: translateY(2.125rem);
	transform: translateY(2.125rem);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.search label svg {
	display: block;
	width: 18px;
	height: 18px;
	-o-object-fit: contain;
	object-fit: contain;
	stroke: var(--clr-light-blue);
	fill: transparent;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.search input {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
	width: 100%;
	max-width: 22.5rem;
	height: 2.5rem;
	padding: 0 0.625rem;
	background-color: var(--clr-white);
	-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.search input:focus {
	outline: none;
	opacity: 1;
	pointer-events: all;
}

.search input:focus + label {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.purchase-item {
	padding: 1.25rem;
	background-color: var(--clr-superlight-gray);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.purchase-item:not(:last-child) {
	margin-bottom: 0.625rem;
}

.purchase-item--old.purchase-item .purchase-item__activities {
	margin-top: 1.25rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	column-gap: 3.125rem;
	row-gap: 1.25rem;
}

.purchase-item--old.purchase-item .purchase-item__activities .purchase-item__date {
	margin: 0;
}

.purchase-item--old.purchase-item .purchase-item__description {
	height: 100%;
}

.purchase-item--old.purchase-item .purchase-item__description p {
	margin-bottom: auto;
}

.purchase-item--old.purchase-item .purchase-item__description a {
	margin-top: 0.625rem;
}

.purchase-item .purchase-item__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.purchase-item a {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.purchase-item a:focus {
	outline: none;
	color: var(--clr-blue);
}

.purchase-item .purchase-item__description {
	max-width: 42.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.purchase-item .purchase-item__description span {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 140%;
	color: var(--clr-dark-gray);
}

.purchase-item .purchase-item__description span:not(:last-child) {
	margin-bottom: 0.625rem;
}

.purchase-item .purchase-item__description h6 {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--clr-blue);
}

.purchase-item .purchase-item__description p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
}

.purchase-item .purchase-item__description:not(:last-child) {
	margin-bottom: 1.875rem;
}

.purchase-item .purchase-item__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.purchase-item .purchase-item__date span:first-child {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 140%;
	color: var(--clr-dark-gray);
}

.purchase-item .purchase-item__date span:last-child {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	margin-top: 0.3125rem;
}

.purchase-item .purchase-item__date:not(:last-child) {
	margin-bottom: 0.625rem;
}

.purchase-item .purchase-item__activities {
	margin-top: 1.5625rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.purchase-item .purchase-item__activities a {
	margin-bottom: 0.625rem;
}

.purchase-form h3 {
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
}

.purchase-form h3:not(:last-child) {
	margin-bottom: 0.625rem;
}

.purchase-form h3:not(:first-child) {
	margin-top: 2.5rem;
}

.purchase-form .purchase-form__body {
	display: -ms-grid;
	display: grid;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	row-gap: 1.125rem;
}

.purchase-form .purchase-form__body div {
	position: relative;
}

.purchase-form .purchase-form__body div .close-button {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	top: 0.5rem;
	right: 0.625rem;
	background-color: var(--clr-white);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.purchase-form .purchase-form__body div .close-button svg {
	display: block;
	width: 0.75rem;
	height: 0.75rem;
}

.purchase-form .purchase-form__body div .close-button.shown {
	opacity: 1;
	pointer-events: all;
}

.purchase-form .purchase-form__activities {
	margin-top: 1.5rem; /*2.1875rem;*/
	position: relative;
}

.purchase-form .purchase-form__activities input[type="file"] {
	position: absolute;
	pointer-events: none;
	top: -200px;
	opacity: 0;
}

.purchase-form .purchase-form__activities label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.375;
	color: var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}
.purchase-form .purchase-form__activities label[for="summary"] {
	cursor: pointer;
}

.purchase-form .purchase-form__activities label img {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.25rem;
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.3125rem;
}

.purchase-form .purchase-form__activities button,
.purchase-form .purchase-form__activities .cta {
	width: 100%;
	margin-top: 1.25rem;
}

.purchase-form input:not(.cta),
.purchase-form textarea {
	display: block;
	width: 100%;
	height: 2.5rem;
	padding: 0 0.625rem;
	background-color: transparent;
	border: 1px solid var(--clr-light-gray);
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 1.875;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	resize: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.purchase-form input:not(.cta)::-webkit-input-placeholder,
.purchase-form textarea::-webkit-input-placeholder {
	color: var(--clr-dark-gray);
}

.purchase-form input:not(.cta)::-moz-placeholder,
.purchase-form textarea::-moz-placeholder {
	color: var(--clr-dark-gray);
}

.purchase-form input:not(.cta):-ms-input-placeholder,
.purchase-form textarea:-ms-input-placeholder {
	color: var(--clr-dark-gray);
}

.purchase-form input:not(.cta)::-ms-input-placeholder,
.purchase-form textarea::-ms-input-placeholder {
	color: var(--clr-dark-gray);
}

.purchase-form input:not(.cta)::placeholder,
.purchase-form textarea::placeholder {
	color: var(--clr-dark-gray);
}

.purchase-form input:not(.cta):focus,
.purchase-form textarea:focus {
	outline: none;
	-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	border-color: var(--clr-blue);
}

.purchase-form input:not(.cta).filled,
.purchase-form textarea.filled {
	background-color: var(--clr-superlight-blue);
	border-color: transparent;
}

.purchase-form textarea {
	height: 8.75rem;
	margin-top: 0.75rem;
	padding: 0.3125rem 0.625rem;
}

.purchase-form input:not(.cta).just-validate-error-field {
	background-color: var(--clr-superlight-blue);
	border-color: transparent;
}

.purchase-form .just-validate-error-label {
	margin-top: 0.3125rem;
	font-size: 0.75rem;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: #d60a0a;
}

.docs {
	display: none;
}

.footer__container .language > span {
	display: none;
}

.lang {
	position: relative;
	z-index: 40;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	height: 1.875rem;
	padding-right: 0.625rem;
}

.lang .lang-item {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--ff-sec);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.25;
	color: var(--clr-white);
	text-transform: uppercase;
}

.lang .lang-item a {
	display: block;
	padding: 0.3125rem 0.625rem;
	padding-right: 1.5rem;
	font: inherit;
	color: inherit;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin: 0;
}

.lang .lang-item:not(.current-lang) a {
	color: var(--clr-black);
}

.lang .lang-item:not(.current-lang) a:active {
	background-color: var(--clr-blue);
	color: var(--clr-white);
}

/* .lang .lang-item.current-lang::after { */
.lang::after {
	font-family: var(--ff-sec);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.25;
	cursor: pointer;
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 0.46875rem;
	flex: 0 0 0.46875rem;
	width: 0.46875rem;
	height: 0.46875rem;
	-webkit-transform: rotate(45deg) translateY(-0.125rem);
	-ms-transform: rotate(45deg) translateY(-0.125rem);
	transform: rotate(45deg) translateY(-0.125rem);
	border-right: 1px solid var(--clr-white);
	border-bottom: 1px solid var(--clr-white);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
	display: block;
	position: absolute;
	right: 1rem;
	top: 0.675rem;
	pointer-events: none;
}

.lang .lang-item.current-lang:hover {
	color: var(--clr-blue);
}

/*.lang .lang-item.current-lang:hover::after {*/
.lang:hover::after {
	border-color: var(--clr-blue);
}

.lang .lang-item:not(.current-lang) {
	color: var(--clr-black);
	background-color: var(--clr-white);
	display: none;
}

.lang.open .lang-item:not(.current-lang) {
	display: block;
}

.lang.open .current-lang {
	color: var(--clr-blue);
}

.lang.open .current-lang::after {
	border-color: var(--clr-blue);
}

.lang.open .lang-item:not(.current-lang):hover {
	background-color: var(--clr-superlight-blue);
}

.lang--dark.lang .lang-item.current-lang {
	color: #fff;
}

/*.lang--dark.lang .lang-item.current-lang::after { */
.lang--dark.lang::after {
	border-color: #fff;
}

.hero {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	animation: slidescale 30s infinite;
}


@keyframes slidescale {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}


.hero .hero__container {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1.5rem;
	padding-top: 5.3125rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 74.5rem;
}

.hero .hero__container h1 {
	font-family: var(--ff-sec);
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	color: var(--clr-white);
	text-align: center;
	margin-bottom: calc(50vh - 41px - 50px);
}

.hero .hero__container h1 span:first-of-type {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 160%;
}

.hero .hero__container h1 span:last-of-type {
	font-weight: 600;
	font-size: 2rem;
	line-height: 100%; /* 140%; */
}

.hero .hero__container p {
	display: none;
}

.hero .hero__container button {
	width: 100%;
}

.industry {
	margin-bottom: 3.75rem;
}
.contact-info + .industry {
	margin-top: 3.75rem;
}

.hero + .industry {
	margin: 5.625rem 0 4.625rem;
}

.industry h2 {
  font-family: var(--ff-sec);
  line-height: 160%;
  font-size: 1.25rem;
  max-width: 59rem;
  margin: 0;
  text-align: left;
  margin-bottom: 1.875rem;
  color: #415462;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.72px;
}

.industry .industry__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.industry .industry__slide {
	position: relative;
}

.industry .industry__slide a {
	margin-left: 0.9375rem;
	margin-right: 0.9375rem;
}

.industry .industry__slider {
	overflow: visible !important;
	margin-left: 1.875rem;
	margin-right: 1.875rem;
	position: relative;
}

.industry .industry__slider .projects__button-next {
	right: -0.5rem;
}

.industry .industry__slider .projects__button-prev {
	left: -0.5rem;
}

.industry .industry__slider .projects__button-prev svg {
	transform: rotate(-180deg);
}

.industry--noslider .industry__wrapper {
	display: block;
}

.industry--noslider .industry__slide:not(:last-child) {
	margin-right: 0;
	margin-bottom: 1.25rem;
}

.industry--noslider .industry__activities {
	margin-top: 1.875rem;
}

.industry-card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 8.125rem;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.industry-card:not(:last-child) {
	margin-right: 1.875rem;
}

.industry-card::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--clr-blue);
	opacity: 0.8;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.industry-card span,
.industry-card h4 {
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	padding: 0.9375rem;
	font-family: var(--ff-sec);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 140%;
	text-align: center;
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	color: var(--clr-white);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.industry-card span {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: var(--clr-orange);
}

.industry-card h4 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.industry-card img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.industry-card div {
	position: relative;
	height: 8.125rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.125rem;
	flex: 0 0 8.125rem;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.about,
.vacancies {
	margin-bottom: 2.5rem;
}

a.o_norm {
  color: #002A99;
  font-size: 16px;
  letter-spacing: 0.32px;
  text-decoration: underline;
}


div:not(.contact-info) + .about.about--reverse {
	margin-top: 0;
}

.about.about--combined .about__container {
	margin-bottom: 3.75rem;
}

.about .about__container .about__description {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 15rem;
	flex: 1 0 15rem;
	display: none;
}

.about .about__container .about__description {
	font-family: var(--ff-sec);
	color: var(--clr-blue);
	font-size: 1.25rem;
	line-height: 1.35;
	background: var(--Premium-blue-gradient, linear-gradient(270deg, #1279BE 0%, #005686 80.69%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about .about__container .about__description span {
	font-weight: 300;
	/*	line-height: 180%; */
}

.about .about__container .about__description strong {
	font-weight: 600;
	/*	line-height: 1.4; */
	letter-spacing: 0.02em;
}

.about .about__container > div {
	max-width: 41.25rem;
}

.about .about__container div div {
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 180%;
	color: #405361;
}

.about .about__container div div:not(:last-child) {
	margin-bottom: 5.4375rem;
}

.about .about__container p {
	text-align: center;
}

.about .about__container p:not(:last-child),
.about .about__container ol:not(:last-child),
.about .about__container ul:not(:last-child),
.about .about__item ol:not(:last-child),
.about .about__item ul:not(:last-child) {
	margin-bottom: 1.3888888889em;
}
.about .about__container li > ol,
.about .about__container li > ul,
.about .about__item li > ol,
.about .about__item li > ul {
	margin-top: 0.7em;
}
.about .about__container ul,
.about .about__item ul {
	padding-left: 1.25rem;
}
.about .about__container ul > li,
.about .about__item ul > li {
	list-style: disc;
}
.about .about__container ol,
.about .about__item ol {
	padding-left: 2.5rem;
}
.about .about__container ol > li,
.about .about__item ol > li {
	list-style: decimal;
}
.about .about__container li,
.about .about__item li {
	margin-bottom: 0.75rem;
}

.about .about__container li > ul > li,
.about .about__item li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.about .about__container li > ul > li:before,
.about .about__item li > ul > li:before {
	content: "— ";
}

.about .about__container a {
	width: 100%;
}

.about .about__container a.big {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.about .about__titles {
	text-align: center;
	margin-bottom: 1.875rem;
}

.about .about__titles h2 {
	max-width: 60rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 135%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.about .about__titles h4 {
	max-width: 40rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-style: normal;
	color: #898989;
	font-size: 16px;
	font-weight: 400;
	line-height: 199%;
	letter-spacing: 0.32px;	
}

.about .about__item:not(:last-child) {
	margin-bottom: 3.75rem;
}

.about .about__item img {
	width: 100%;
	max-width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	margin-top: 1.25rem;
}

.about .about__item p,
.about .about__item li {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.about .about__item p:not(:first-child),
.about .about__item ul:not(:first-child),
.about .about__item ol:not(:first-child) {
	margin-top: 0.9375rem;
}

.about .about__item--reverse.about__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.benefits {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 3.63rem;
	padding-bottom: 0;
	margin-bottom: 0;
	margin-top: 3.125rem;
  background: #415462;	
}

.benefits h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 130%; 
	letter-spacing: 0.72px;
	color: #FFF;
	font-size: 1.25rem;
	text-align: left;
	margin-bottom: 1.5rem;
}

.benefits .benefits__container {
	padding-right: 1.875rem;
	padding-left: 1.875rem;
}

.benefits .benefits__body h3 {
	font-family: var(--ff-sec);
	font-weight: 600;
	font-size: 2rem;
	line-height: 140%;
	text-align: center;
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	color: #fff;
	margin-bottom: 1.5rem;
}

.benefits .benefits__body .benefits__text {
  font-family: var(--ff-main);
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 157%;
}

.benefits .benefits__body .benefits__text p:not(:last-child) {
	margin-bottom: 0.9375rem;
}

.benefits .benefits__body button {
	width: calc(100% + 28px);
	margin-left: -0.875rem;
	margin-right: -0.875rem;
}

.benefits__items {
	margin-bottom: 2.5rem;
}

.benefits__items li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1.25rem 0.625rem;
	background-color: var(--clr-white);
	-webkit-filter: drop-shadow(var(--bsh-card));
	filter: drop-shadow(var(--bsh-card));
  border-radius: 10px;	
}

.benefits__items li:not(:last-child) {
	margin-bottom: 1rem;
}

.benefits__items li span {
  text-align: center;
  margin-bottom: 0;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 157%;
  background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits__items li p {
	/*	font-weight: 500; */
	font-size: 1rem;
	line-height: 180%;
	text-align: center;
	color: #415462;
}

.benefits__items li:first-child p, .benefits__items li:nth-child(4) p {
	color: #fff;	
}
.benefits__items li:first-child span, .benefits__items li:nth-child(4) span {
	background: #fff;	
	background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefits__items li:first-child, .benefits__items li:nth-child(4) {
  border-radius: 10px;
  background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
}

.projects {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.projects.another-products {
	margin-bottom: 0;
}
.projects__container {
	position: relative;
}



.projects__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 50%; /*35rem;*/
	margin: 0 auto;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--clr-blue-gray);
}

.projects.another-products .projects__container h2 {
	color: var(--clr-white);
}

.projects__container .projects__slider {
	margin-bottom: 1rem;
}

.projects__container .projects__slider:not(.swiper-initialized) .projects__wrapper {
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
}

.projects__container .projects__slide {
	text-align: center;
}

.projects__container .projects__slide div {
	padding-bottom: 111.1111111111%;
	margin-bottom: 0.5rem;
}

.projects__container .projects__slide h3 {
	font-family: var(--ff-main);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 130%;
	/*	color: var(--clr-black); */
	color: var(--clr-blue);
	margin: 20px 0 10px;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 32px */
	letter-spacing: 0.4px;

	background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.projects.another-products .projects__container .projects__slide h3 {
	color: var(--clr-white);
}

.projects__container .projects__slide p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: #405361;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
	letter-spacing: 0.32px;
	text-align: unset;
}

.projects.another-products .projects__container .projects__slide p {
	color: var(--clr-white);
}

.projects__container .projects__button-next {
	right: 1.5rem;
}

.projects__container .projects__button-prev {
	left: 1.5rem;
}

.projects__container .projects__button-prev svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.projects__button {
	display: none;
}

.project {
	text-align: center;
}

.project div {
	padding-bottom: 111.1111111111%;
	margin-bottom: 0.5rem;
}

.project h3 {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
	color: var(--clr-blue);
	margin-bottom: 4px;
}
/*
.projects:not(.another-products) .project h3 {
	text-align: center;
}
*/

.project p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	text-align: justify;
	word-spacing: -0.025rem;
}

.contact-info {
	background-color: #415462;
	background-repeat: no-repeat;
	background-size: 100% 80px;
	background-position: left bottom;
	background-image: url("../img/contacts-form/logo_form.png");
	padding: 4.0625rem 0 5.9375rem;
}

.contact-info--mb {
	margin-bottom: 3.75rem;
}

.contact-block > div {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.contact-block > div h2,
.contact-block > div p {
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #fff;
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.02em;
}

.contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
  display: inline-block;
  font-size: 1.375rem;
  -webkit-transition: all 0.32s ease-in-out;
  -o-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  color: #FFF;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.contact-block > div span {
	display: block;
	color: #fff;
	margin-bottom: 1rem;
	font-family: var(--ff-sec);
	font-weight: 400;
	font-size: 1rem;
	line-height: 180%;
}

.contact-block span.wpcf7-not-valid-tip {
	color: #EF7A0E;
}

.contact-block form p, .contact-block form .wpcf7-response-output {
  margin-bottom: 1.25rem;
  font-family: var(--ff-main);
  line-height: 180%;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.contact-block form div {
	position: relative;
}

.contact-block form div .close-button {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	top: 0.5rem;
	right: 0.625rem;
	background-color: var(--clr-white);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.contact-block form div .close-button svg {
	display: block;
	width: 0.75rem;
	height: 0.75rem;
}

.contact-block form div .close-button.shown {
	opacity: 1;
	pointer-events: all;
}

.contact-block form input:not(.cta) {
	width: 100%;
	height: 2.5rem;
	padding: 0 0.625rem;
	background-color: transparent;
	border: 1px solid transparent;
	border-bottom: 1px solid #A0AAB8;
	font-family: var(--ff-main);
	font-size: 1rem;
	line-height: 1.875;
	letter-spacing: 0.02em;
	color: #fff;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.contact-block form input:not(.cta)::-webkit-input-placeholder {
	color: #fff;
}

.contact-block form input:not(.cta)::-moz-placeholder {
	color: #fff;
}

.contact-block form input:not(.cta):-ms-input-placeholder {
	color: var(--clr-dark-gray);
}

.contact-block form input:not(.cta)::-ms-input-placeholder {
	color: #fff;
}

.contact-block form input:not(.cta)::placeholder {
	color: #fff;
}

.contact-block form input:not(.cta):focus {
	outline: none;
	-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	border-color: var(--clr-blue);
}

.contact-block form input:not(.cta).filled {
	background-color: var(--clr-superlight-blue);
	border-bottom: 1px solid transparent;
}

.contact-block form input:not(.cta).just-validate-error-field {
	background-color: var(--clr-superlight-blue);
	border-color: transparent;
}

.contact-block form div:not(:last-child) {
	margin-bottom: 2rem;
}

.contact-block form .cta {
	width: 100%;
	margin-top: 2.5rem;
}

.contact-block form .just-validate-error-label {
	margin-top: 0.3125rem;
	font-size: 0.75rem;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: #d60a0a;
}

.reviews {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 2.5rem 0 2.25rem;
	position: relative;
}
section.reviews:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(0, 86, 134, 0.80) 0.53%, rgba(18, 121, 190, 0.27) 89.06%);
}
.reviews--mb {
	margin-bottom: 3.75rem;
}

.reviews .reviews__container {
	max-width: 65rem;
	position: relative;
}

.reviews .reviews__container .reviews__button-next,
.product-preview .product-preview__container .reviews__button-next {
	right: -0.5rem;
}

.reviews .reviews__container .reviews__button-prev,
.product-preview .product-preview__container .reviews__button-prev {
	left: -0.5rem;
}

.reviews .reviews__container .reviews__button-prev svg,
.product-preview .product-preview__container .reviews__button-prev svg,
.product-preview .o_product_preview_container .reviews__button-prev svg {
	transform: rotate(-180deg);
}

.reviews .reviews__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-white);
	margin-bottom: 2rem;
}

.reviews .reviews__container .reviews__slide {
	padding: 1.5rem 1rem;
	background-color: var(--clr-white);
}

.reviews .reviews__container .reviews__slide img {
	display: block;
	margin: 0 auto;
	margin-bottom: 1rem;
}
.reviews .reviews__container .reviews__slide .rounded-image img {
	width: 2.5rem;
	height: 2.5rem;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.reviews .reviews__container .reviews__slide .sized-image img {
	max-width: 3.75rem;
	max-height: 3.75rem;
	height: auto;
}

.reviews .reviews__container .reviews__slide h3 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 135%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	font-size: 1rem;
	text-align: center;
	color: var(--clr-blue);
	margin-bottom: 1.5rem;
}

.reviews .reviews__container .reviews__slide p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
	font-weight: 400;
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

.reviews .reviews__container .reviews__slide span {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 1.6;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 180%;
}

.reviews .reviews__container .reviews__slide span:last-of-type {
	display: block;
	color: var(--clr-dark-gray);
}

.reviews .reviews__container .reviews__slider {
	margin-bottom: 1.875rem;
}

.news {
  padding: 2.5rem 0;
  background-color: #fff;
  margin-bottom: 2.5rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  background-image: url(../img/news/bg_news.svg);
}

.bg_text2, .product-preview.onlytext.sf.bg_text2{
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  background-image: url(../img/news/bg_text2.svg);
}

.news .news__container h2 {
  font-family: var(--ff-sec);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  text-align: left;
  color: #415462;
  margin-bottom: 2rem;
}

.new {
	margin-bottom: 0;
}

.new .image-ibg {
	padding-bottom: 78.8888888889%;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.new h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	text-align: center;
	color: var(--clr-blue);
	margin-bottom: 1rem;
}

.new p {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
	line-height: 1.8;
	font-size: 0.9375rem;
}

.new p:not(:last-of-type) {
	margin-bottom: 0.9375rem;
}

.new p:last-of-type {
	margin-bottom: 1.3rem;
}

.new button,
.new .cta {
	width: 100%;
}

.partners {
	margin-top: 3.125rem;
	margin-bottom: 3.125rem;
}

.partners .partners__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue-gray);
	text-align: center;
	margin-bottom: 2.5rem;
}

.partners .partners__container > div {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	justify-items: center;
	row-gap: 2.3125rem;
	-webkit-column-gap: 1rem;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
}
.partners .partners__container > div div {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
	height: 100%;
}

.partners .partners__container div img {
	width: 100%;
	max-width: 150px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
	flex: 1;
	display: block;
}

.partners .partners__container div img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.partners .partners__container > div p {
	margin-top: 1rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.3;
}

.contacts {
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	padding: 2.5rem 0;
	margin-bottom: 0;
	position: relative;
}
.contacts:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/contacts/bg_contacts.svg) no-repeat;
	background-size: cover;
}
.contacts .contacts__container h2, .contacts .contacts__container .h2 {
	font-family: var(--ff-sec);
	font-weight: 600;  
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 2rem;
}
.container.contacts__container {
  position: relative;
}

.contacts .contacts__container > div {
	position: relative;
	margin-top: 5rem;
}
.contacts .contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
  color: #415462;
}
.contacts .contact-block > div span {
	color: #415462;
}

#footer_contact_form.contact-block > div h2, #footer_contact_form.contact-block > div p {
	color: #415462;  
}


#footer_contact_form.contact-block form input:not(.cta) {
	color: #415462;
}

#footer_contact_form.contact-block form input:not(.cta)::-webkit-input-placeholder {
	color: #415462;
}

#footer_contact_form.contact-block form input:not(.cta)::-moz-placeholder {
	color: #415462;
}

#footer_contact_form.contact-block form input:not(.cta):-ms-input-placeholder {
	color: 415462;
}

#footer_contact_form.contact-block form input:not(.cta)::-ms-input-placeholder {
	color: #415462;
}

#footer_contact_form.contact-block form input:not(.cta)::placeholder {
	color: #415462;
}


.contacts .contacts__container ul {
	margin-bottom: 2.5rem;
}

.contacts .contacts__container ul li {
	font-family: var(--ff-main);
	line-height: 180%;
	/*	font-weight: 500; */
	font-size: 1rem;
	color: var(--clr-almost-dark);
}

.contacts .contacts__container ul li:not(:last-child) {
	margin-bottom: 0.625rem;
}

.contacts .contacts__container #map {
	width: 100%;
	height: 12.5rem;
}

.contacts .contacts__container #map .ymaps-2-1-79-map-copyrights-promo,
.contacts .contacts__container #map .ymaps-2-1-79-copyright.ymaps-2-1-79-copyright_logo_no/*,
.contacts .contacts__container #map .ymaps-2-1-79-controls__control*/ {
	display: none;
}

.solution-preview {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: var(--ff-sec);
	line-height: 140%;
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-white);
	padding: 3.75rem 0; /* 3.75rem 0 8rem */
	min-height: 21.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.solution-preview-contacts {
	min-height: 28.25rem;
	padding: 6.75em 0 !important;
}

.solution-preview--product {
	min-height: 28.125rem;
	text-align: center;
}

.solution-preview--product .solution-preview__container h1 {
	margin: 0 auto;
}
.solution-preview.product-header {
	padding-top: 3.5rem;
	padding-bottom: 0;
}
.solution-preview.product-header .solution-preview__container--center {
	flex-direction: column;
}
.solution-preview.product-header h1 {
	padding-bottom: 3.5rem;
}
.solution-preview.product-header img {
	display: block;
	overflow: hidden;
	height: 18rem;
	width: 90%;
	border-radius: 14px 14px 0 0;
	object-fit: cover;
	object-position: top center;
}

.solution-preview__container--center {
	text-align: center;
}

.solution-preview__container--center h1 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-light);
	margin: 0 auto;
}

.solution-preview__container--product h1 {
	font-weight: 600;
}

.solution-preview h1 {
	max-width: 34.2375rem;
}

.solution-preview h1 span {
	display: block;
}

.solution-description {
	margin-bottom: 2.5rem;
}

.solution-description .solution-description__container .solution-navigation {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.25rem;
	flex: 0 0 16.25rem;
	margin-right: 0.625rem;
	margin-bottom: 2.5rem;
}

.solution-description .solution-description__container div {
	text-align: center;
	margin-bottom: 2.5rem;
}

.solution-description .solution-description__container div h2 {
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	color: var(--clr-blue);
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}

.solution-description .solution-description__container div p {
	font-size: 0.875rem;
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.solution-description .solution-description__container div p:not(:last-child),
.solution-description .solution-description__container div ul:not(:last-child),
.solution-description .solution-description__container div ol:not(:last-child) {
	margin-bottom: 0.9375rem;
}

.solution-description .solution-description__container div ul,
.solution-description .solution-description__container div ol {
	text-align: left;
}
.solution-description .solution-description__container div ul {
	padding-left: 1.25rem;
}
.solution-description .solution-description__container div li {
	margin-bottom: 0.75rem;
}
.solution-description .solution-description__container div ul > li {
	list-style: disc;
}
.solution-description .solution-description__container div ol {
	padding-left: 1.75rem;
}
.solution-description .solution-description__container div ol > li {
	list-style: decimal;
}
.solution-description .solution-description__container div li > ul,
.solution-description .solution-description__container div li > ol {
	margin-top: 0.75rem;
}
.solution-description .solution-description__container div li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.solution-description .solution-description__container div li > ul > li:before {
	content: "— ";
}

.solution-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow: auto;
}

.solution-navigation li > a,
.solution-navigation li > span {
	position: relative;
	display: inline-block;
	padding: 0.625rem;
	padding-left: 0.75rem;
	color: var(--clr-light-blue);
	font-family: var(--ff-sec);
	line-height: 160%;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	font-size: 0.875rem;
	-webkit-transition: color 0.32s ease-in-out;
	-o-transition: color 0.32s ease-in-out;
	transition: color 0.32s ease-in-out;
}

.solution-navigation li > a::before,
.solution-navigation li > span::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	width: 4px;
	height: 60%;
	background-color: var(--clr-blue);
	opacity: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.solution-navigation li > a:focus,
.solution-navigation li > span:focus {
	outline: none;
	color: var(--clr-blue);
	font-weight: 500;
}

.solution-navigation li > a:focus::before,
.solution-navigation li > span:focus::before {
	opacity: 1;
}

.solution-navigation li > span {
	cursor: default;
	font-weight: 500;
	color: var(--clr-blue);
}

.solution-navigation li > span::before {
	opacity: 1;
}

.solution-item {
	padding: 4.25rem 0 0;
}

.solution-item--blue {
	background-color: var(--clr-superlight-blue);
}

.solution-item .solution-item__container {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-top: 15rem;
}

.solution-item .solution-item__container .image-ibg {
	position: absolute;
	top: 0;
	left: 0;
	height: 28.125rem;
	width: 100%;
}

.solution-item .solution-item__container div:not(.image-ibg) {
	max-width: 37.5rem;
	padding: 1.25rem 1.25rem 1.25rem;
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.solution-item .solution-item__container div:not(.image-ibg) h2 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin-bottom: 0.625rem;
}

.solution-item .solution-item__container div:not(.image-ibg) p {
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 1.6;
	font-size: 0.875rem;
}

.solution-item .solution-item__container div:not(.image-ibg) p:not(:last-of-type) {
	margin-bottom: 0.9375em;
}

.solution-item .solution-item__container div:not(.image-ibg) p:last-of-type {
	margin-bottom: 1.875em;
}

.solution-item.solution-item--right .solution-item__container {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.solution-item.solution-item--right .image-ibg {
	left: auto;
	right: 0;
}

.solution-about {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 2.5rem 0;
}

.solution-about--mr.solution-about {
	margin-bottom: 2.5rem;
}

.solution-about .solution-about__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.solution-about h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 140%;
	letter-spacing: 0.02em;
	font-size: 1.625rem;
	color: var(--clr-white); 
}

.solution-about h2:last-child {
	font-weight: 500;
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.solution-servicies {
	padding: 3.75rem 0 5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 2.5rem;
}

.solution-servicies--first.solution-servicies {
	margin-bottom: 1.25rem;
}

.solution-servicies .solution-servicies__container h1,
.solution-servicies .solution-servicies__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--clr-white);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.2);
}
/*
.solution-servicies .solution-servicies__container h1 {
	text-transform: uppercase;
}
*/

.solution-servicies .solution-servicies__container .solution-servicies__body {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
	gap: 1.25rem;
}

.solution-servicies .solution-servicies__container .solution-servicies__body a svg {
	margin-right: 0.75rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 3rem;
	flex: 0 0 3rem;
	width: 3rem;
	height: 3rem;
	-webkit-transform: translateY(0.1875rem);
	-ms-transform: translateY(0.1875rem);
	transform: translateY(0.1875rem);
}

.solution-servicies .solution-servicies__container .solution-servicies__body a {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.6875rem 1.25rem 0.6875rem 0.625rem;
	background: rgba(255, 255, 255, 0.75);
	-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	border-radius: 8px;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.solution-servicies .solution-servicies__container .solution-servicies__body a span {
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 130%;
	color: var(--clr-black);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.solution-servicies .solution-servicies__activities {
	margin-top: 2.5rem;
}

.solution-tabset {
	overflow: hidden;
	margin-bottom: 2.5rem;
}

.solution-tabset .solution-tabs nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
	margin-bottom: 3.75rem;
}

.solution-tabset .solution-tabs nav button {
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 160%;
	color: var(--clr-black);
	margin-top: 1.25rem;
	padding: 0.25rem 1.5rem;
	font-size: 0.875rem;
	background-color: var(--clr-white);
	border-bottom: 2px solid var(--clr-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.solution-tabset .solution-tabs nav button:focus {
	outline: none;
	background-color: var(--clr-light-blue);
	color: var(--clr-white);
}

.solution-tabset .solution-tabs nav button._tab-active {
	background-color: var(--clr-blue);
	color: var(--clr-white);
}

.solution-tabset .solution-tabset__content section h2 {
	max-width: 60rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	text-align: center;
}

.solution-tabset .solution-tabset__content section > div {
	margin-right: 0;
}

.solution-tabset .solution-tabset__content section .solution_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  flex-direction: column;
  gap: 40px;
}

.solution_inner {
  position: relative;
}

.services_title_new {
  color: #FFF;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 747px;
  position: relative;
  margin-bottom: 40px;
}

.services_content {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 4px 14.6px 0 rgba(152, 162, 176, 0.46);
  backdrop-filter: blur(7.800000190734863px);
  padding: 20px;
  max-width: 555px;
}

.solution-tabset .solution-tabset__content section div .image-ibg {
	position: absolute;
	top: 0;
	left: 0;
	right: -1rem;
	height: 100%;
	/*	min-height: 43.75rem; */
	width: calc(100% + 16px);
}
.solution-tabset .solution-tabset__content section div > .image-ibg > div {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


.solution-tabset .solution-tabset__content section div div:not(.image-ibg) p,
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li {
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 1.6;
	font-size: 0.875rem;
color: var(--5-e-6167, #5E6167);

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
letter-spacing: 0.32px;
}

.solution-tabset .solution-tabset__content section div div:not(.image-ibg) p:not(:last-of-type),
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li {
	margin-bottom: 0.9375em;
}

.solution-tabset .solution-tabset__content section div div:not(.image-ibg) p:last-of-type {
	margin-bottom: 1.875em;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ul:last-child,
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ol:last-child {
	margin-bottom: 0.9375em;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ul,
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ol {
	margin-top: 0.9375em;
}

.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ul,
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ol {
	margin-top: 0.75rem;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li {
	margin-bottom: 0.75rem;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ul {
	padding-left: 1.25rem;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ul > li {
	list-style: disc;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ol {
	padding-left: 2.5rem;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) ol > li {
	list-style: decimal;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li > ul > li:before {
	content: "— ";
}

.products {
	margin-top: 6.25rem;
	margin-bottom: 3.75rem;
}

.products .products__container a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	background-color: var(--clr-superlight-blue);
	padding: 0 1.25rem 1.875rem;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.products .products__container a:not(:last-child) {
	margin-bottom: 5.625rem;
}

.products .products__container a img {
	max-width: calc(100% + 20px);
	margin-top: -3.75rem;
	margin-bottom: 1.25rem;
	margin-right: -0.625rem;
	margin-left: -0.625rem;
	-webkit-box-shadow: 5px 8px 16px rgba(0, 41, 88, 0.25);
	box-shadow: 5px 8px 16px rgba(0, 41, 88, 0.25);
	border-radius: 20px;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.products .products__container a h3 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin-bottom: 0.3125rem;
}

.products .products__container a p {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-family: var(--ff-sec);
	font-style: normal;
	/*	font-weight: 500; */
	line-height: 160%;
	letter-spacing: 0.02em;
	font-size: 1rem;
}

.products .products__container a p:not(:last-child) {
	margin-bottom: 1.875rem;
}

.products .products__container a span {
	margin-top: auto;
}

.product-preview {
	margin-top: 3.75rem;
	margin-bottom: 3.75rem;
}
.product-preview:not(.onlytext) {
	margin-top: 8rem;
}
.breadcrumbs + .product-preview {
	margin-top: 0;
}

.product-preview .product-preview__container {
	position: relative;
}

.product-preview .product-preview__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.product-preview .product-preview__slider {
	background-size: 20%;
	background-position: center top;
}

.product-preview .product-preview__slide {
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.product-preview .product-preview__slide img {
	max-width: 100%;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border-radius: 20px;
}

.product-preview .product-preview__slider:not(.swiper-initialized) .product-preview__slide {
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.product-preview .product-preview__slider:not(.swiper-initialized) .product-preview__slide:nth-child(2) {
	-webkit-transform: scale(2) translateY(3.75rem);
	-ms-transform: scale(2) translateY(3.75rem);
	transform: scale(2) translateY(3.75rem);
}

.product-preview .product-preview__slider:not(.swiper-initialized) .product-preview__slide:not(:last-child) {
	margin-right: 10.625rem;
}

.product-preview .product-preview__activities {
	position: relative;
	z-index: 12;
	margin-top: 2.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product-preview p,
.product-preview h2,
.product-preview h3,
.product-preview h4,
.product-preview ol,
.product-preview ul {
	max-width: 47.5rem;
	margin: 0 auto;
	font-family: var(--ff-main);
}
.product-preview ol,
.product-preview ul {
	padding-left: 1.25rem;
}
.product-preview h2 {
	font-family: var(--ff-sec);
	font-size: 1.875rem;
}
.product-preview p,
.product-preview li {
	font-size: 0.875rem;
	line-height: 180%;
	/*	font-weight: 500; */
	color: var(--clr-black);
}
.product-preview h2,
.product-preview h3,
.product-preview h4 {
	font-weight: 600;
	text-align: center;
}
.product-preview h2 {
	color: var(--clr-blue-gray);
}
.product-preview:not(.onlytext) h2 {
	font-size: 1.5rem;
}
.product-preview h3 {
	font-size: 1.25rem;
}
.product-preview h4 {
	font-size: 1rem;
}

.product-preview p:not(:last-child),
.product-preview h2:not(:last-child),
.product-preview h3:not(:last-child),
.product-preview h4:not(:last-child),
.product-preview li:not(:last-child) {
	margin-bottom: 1.875rem;
}

.product-preview.onlytext  p:not(:last-child), .product-preview.onlytext li {
	margin-bottom: 0.75rem;
}

.documents {
	background-color: var(--clr-superlight-blue);
	padding: 2.5rem 0;
}

.documents--no-bg {
	background-color: transparent;
}

.documents--search.documents .documents__container h2 {
	margin-bottom: 1.125rem;
}

.documents .documents__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.documents .documents__container > div {
	margin: 0 auto;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--clr-white);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.documents .documents__container > div:not(:last-child) {
	margin-bottom: 1.25rem;
}

.documents .documents__container > div > span {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 2.375rem;
	flex: 0 0 2.375rem;
	width: 2.375rem;
	height: 2.375rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	margin-right: 0.625rem;
	margin-bottom: 0.3125rem;
}

.documents .documents__container > div > span svg {
	display: block;
	width: 1.625rem;
	height: 1.625rem;
}

.documents .documents__container > div div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	margin-right: 2.5rem;
}

.documents .documents__container > div div h6 {
	font-size: 0.875rem;
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 1.6;
}

.documents .documents__container > div div span {
	font-size: 0.75rem;
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	color: var(--clr-blue-gray);
}

.documents .documents__container > div a {
	font-size: 0.875rem;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
	margin-top: 0.3125rem;
}

.documents .documents__container > div a:focus {
	color: var(--clr-blue);
}

.documents .documents__container .documents__search:not(:last-child) {
	margin-bottom: 1.125rem;
}

.documents .documents__pagination {
	max-width: 50rem;
}

.desicion {
	margin-bottom: 2.5rem;
}

.desicion .desicion__container h2 {
	text-align: center;
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin-bottom: 1.875rem;
}

.desicion .desicion__container article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.desicion .desicion__container article div h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
	margin-bottom: 1.25rem;
}

.desicion .desicion__container article div ul {
	padding-left: 0.9375rem;
}

.desicion .desicion__container article div ul li {
	list-style: disc;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
}

.desicion .desicion__image-ibg {
	padding-bottom: 60.7142857143%;
	margin-bottom: 1.875rem;
}

.result {
	padding: 3.75rem 0;
	margin-bottom: 2.5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*
.result--double .result__container div ul {
	-ms-flex-item-align: start;
		  align-self: flex-start;
}
*/
.result--double .result__container div ul {
	columns: 2;
	column-gap: 1.5rem;
}

.result--nomr {
	margin-bottom: 0;
}

.result .result__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-white);
	margin-bottom: 1.875rem;
}

.result .result__container > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--ff-main);
	/*	font-weight: 600; */
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--clr-white);
}

.result .result__container div ul {
	padding-top: 1.875rem;
}

.result .result__container div ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: center;
	align-items: baseline;
	margin-bottom: 1.25rem;
}

.result .result__container div ul li::before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.125rem;
	flex: 0 0 1.125rem;
	height: 0.9375rem;
	margin-right: 1.0625rem;
	margin-left: 0.3125rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../img/result/icon.svg");
	background-size: contain;
}

.result .result__container div img {
	max-width: 28.75rem;
	/*	max-height: 18.375rem; */
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.another-products {
	background-color: #415462;
	padding: 2.5rem 0 3.75rem;
}

.another-products .another-products__container {
	position: relative;
}

.another-products .another-products__container::before {
/* 	content: "";
	position: absolute;
	z-index: 5;
	top: 0;
	left: -100%;
	height: 100%;
	width: 100%;
	background-color: var(--clr-orange); */
}

.another-products .another-products__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-white);
	text-align: center;
	margin-bottom: 1.875rem;
}

.another-products .another-products__slider {
	overflow: visible !important;
	padding-top: 5rem;
}

.another-products .another-products__slider--mini {
	padding-top: 0;
}

.another-products .another-products__slide a.product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	background-color: var(--clr-superlight-blue);
	padding: 0 1.25rem 1.875rem;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.another-products .another-products__slide a.product:not(:last-child) {
	margin-bottom: 5.625rem;
}

.another-products .another-products__slide a.product img {
	max-width: 100%;
	margin-top: -3.75rem;
	margin-bottom: 1.25rem;
	-webkit-box-shadow: 5px 8px 16px rgba(0, 41, 88, 0.25);
	box-shadow: 5px 8px 16px rgba(0, 41, 88, 0.25);
	border-radius: 20px;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.another-products .another-products__slide a img {
	max-width: 100%;
}

.another-products .another-products__slide a.product h3 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin-bottom: 0.3125rem;
}

.another-products .another-products__slide a h3 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: var(--clr-white);
	margin-top: 0.625rem;
}

.another-products .another-products__slide a.product p {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-family: var(--ff-sec);
	font-style: normal;
	/*	font-weight: 500; */
	line-height: 160%;
	letter-spacing: 0.02em;
	font-size: 1rem;
}

.another-products .another-products__slide a.product p:not(:last-child) {
	margin-bottom: 1.875rem;
}

.another-products .another-products__slide a.product span {
	margin-top: auto;
}

.devices {
	margin-bottom: 3.75rem;
}

.devices .devices__container {
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
}
.devices > .container:not(.devices__container) {
	margin-bottom: 1.25rem;
}

.item-devices h4 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin: 0.625rem 0 0.3125rem;
	font-size: 1rem;
}

.item-devices p {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	margin-top: 0.3125rem;
	text-align: center;
}

.item-devices__image-ibg,
.item-devices__image-ibg_contain {
	padding-bottom: 111.1111111111%;
}

.device {
	margin-bottom: 2.5rem;
}

.device .device__sliders {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 35rem;
	flex: 1 0 35rem;
	min-width: 0;
}

.device .device__sliders:not(:last-child) {
	margin-bottom: 1.875rem;
}

.device .device__slider {
	margin-bottom: 1.25rem;
}

.device .device__slide {
	position: relative;
	padding-bottom: 89.2857142857%;
	width: 100%;
}

.device .device__slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*
	-o-object-fit: cover;
		 object-fit: cover;
*/
	-o-object-fit: contain;
	object-fit: contain;
}

.device .device__content h1 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	margin-bottom: 1.25rem;
}

.device .device__content h2 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
	margin-top: 1.25rem;
	margin-bottom: 0.625rem;
}

.device .device__content p {
	margin-top: 0.625rem;
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
}

.device .device__content ul {
	padding-left: 0.9375rem;
}

.device .device__content ul li {
	list-style: disc;
	font-family: var(--ff-main);
	/*	font-weight: 500;*/
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
}

.device-mini__slide {
	position: relative;
	padding-bottom: 25%;
}

.device-mini__slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.chars {
	margin-bottom: 2.5rem;
}

.chars .chars__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.chars .chars__container div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.chars .chars__container div:not(:last-child) {
	margin-bottom: 0.3125rem;
}

.chars .chars__container div h6 {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0.75rem 1.25rem;
	height: 100%;
	border-right: 1px solid var(--clr-light-blue);
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--clr-dark-gray);
}

.chars .chars__container div span {
	padding: 0.75rem 1.25rem;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}

.chars .chars__container button {
	margin: 0 auto;
	margin-top: 1.875rem;
}

.product-preview table {
	border: 1px solid var(--clr-light-blue);
	border-width: 0 0 1px 1px;
	width: 100%;
	border-collapse: collapse;
}
.product-preview table td {
	border: 1px solid var(--clr-light-blue);
	border-width: 1px 1px 0 0;
	font-size: 1rem;
	line-height: 1.6;
	padding: 0.75rem 1.25rem;
}
.product-preview tr:hover td {
	background-color: var(--clr-superlight-blue);
}

.director {
	padding: 1.875rem 0 2.5rem;
	margin-bottom: 2.5rem;
	background-color: var(--clr-superlight-blue);
}

.director--no-mr.director {
	margin-bottom: 0;
}

.director .director__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.director .director__container .img {
	display: block;
	width: 100%;
	height: 15rem;
}
.director .director__container .img img {
	display: block;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
	opacity: 0.5;
}

.director .director__container .img:not(:last-child) {
	margin-bottom: 1.875rem;
}

.director .director__container h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.director .director__container h3:not(:last-child) {
	margin-bottom: 0.625rem;
}

.director .director__container h4 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
}

.director .director__container h4:not(:first-child) {
	margin-top: 0.625rem;
}

.director .director__container h5 {
	font-family: var(--ff-sec);
	line-height: 160%;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: var(--clr-dark-gray);
	font-size: 0.875rem;
}

.director .director__container h5:not(:last-child) {
	margin-bottom: 1.875rem;
}

.director .director__container p {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}

.director .director__container p:not(:first-child) {
	margin-top: 0.9375rem;
}

.all-projects {
	margin-bottom: 2.5rem;
}

.all-projects .all-projects__container h1 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue);
	max-width: 35rem;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 1.875rem;
}

.all-projects .all-projects__container nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1.875rem;
	overflow: auto;
	white-space: nowrap;
	padding: 0 0.9375rem 0.3125rem;
}

.all-projects .all-projects__container nav button {
	font-size: 0.875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	padding: 0.75rem 1.5625rem;
	background: var(--clr-white);
	border-bottom: 2px solid var(--clr-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.all-projects .all-projects__container nav button br {
	display: none;
}

.all-projects .all-projects__container nav button:focus {
	background-color: var(--clr-light-blue);
	color: var(--clr-white);
}

.all-projects .all-projects__container nav button._tab-active {
	background-color: var(--clr-blue);
	color: var(--clr-white);
}

.all-projects .all-projects__container > button {
	margin: 0 auto;
	margin-top: 2.5rem;
}

.all-projects .all-projects__body {
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
}

.all-projects .all-projects__body .filter__hidden,
.all-projects .tabs-item .filter__hidden {
	display: none;
}

.description {
	margin-bottom: 3.75rem;
}

.press .description {
	margin-bottom: 0;
}

.description .description__container > ul > li:not(:last-child) {
	margin-bottom: 1.875rem;
}

.description .description__container ul > li > h2,
.description .description__container ul > li > .h2 {
	font-family: var(--ff-sec);
	line-height: 140%;
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 43%;
	flex: 0 0 43%;
	margin-bottom: 0.625rem;
}

.description .description__container > ul > li p,
.description .description__container > ul > li li {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.description .description__container > ul > li h3 {
	font-size: 1rem;
}

.description .description__container > ul > li p:not(:last-child),
.description .description__container > ul > li ul:not(:last-child),
.description .description__container > ul > li ol:not(:last-child),
.description .description__container > ul > li h3:not(:last-child),
.description .description__container > ul > li h2:not(:last-child) {
	margin-bottom: 1.25rem;
}
.description .description__container > ul > li ul,
.description .description__container > ul > li ol {
	margin-top: 1.25rem;
}

.description .description__container > ul > li li {
	margin-bottom: 0.75rem;
}

.description .description__container > ul > li ul {
	padding-left: 1.25rem;
}
.description .description__container > ul > li ul > li {
	list-style: disc;
}
.description .description__container > ul > li ol {
	padding-left: 2.5rem;
}
.description .description__container > ul > li ol > li {
	list-style: decimal;
}
.description .description__container li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.description .description__container li > ul > li:before {
	content: "— ";
}

.description .description__container > ul > li a:not(.marina)  {
	white-space: nowrap;
	margin-top: 1.25rem;
}

.description .description__container > ul > li a svg {
	display: block;
	margin-right: 0.3125rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.25rem;
	flex: 0 0 1.25rem;
	height: 1.25rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.project-main {
	margin-bottom: 3.75rem;
}

.project-main .project-main__container {
	position: relative;
}

.project-main .project-main__container h1 {
	max-width: 41.25rem;
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.project-main .project-main__container h1:not(:last-child) {
	margin-bottom: 1.25rem;
}

.project-main .project-main__container p {
	max-width: 41.25rem;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
}

.project-main .project-main__container p:not(:last-child) {
	margin-bottom: 1.875rem;
}

.project-main .project-main__slide img {
	width: 100%;
	height: 100%;
	max-height: 60vh;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: 50% 50%;
}

.project-main .project-main__button-prev {
	top: 55%;
	left: 1.5rem;
}

.project-main .project-main__button-prev svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.project-main .project-main__button-next {
	top: 55%;
	right: 1.5rem;
}

.project-main .project-main__activities {
	margin-top: 1.875rem;
}

.all-reviews {
	margin-bottom: 3.75rem;
}

.reviews-block {
	background-color: var(--clr-superlight-gray);
	-webkit-box-shadow: var(--bsh-card);
	box-shadow: var(--bsh-card);
	padding: 0.9375rem 0.625rem 1.25rem;
}

.reviews-block:not(:last-child) {
	margin-bottom: 2.5rem;
}

.reviews-block img {
	display: block;
	width: 100%;
	max-height: 10rem;
	-o-object-fit: cover;
	object-fit: cover;
}

.reviews-block img:not(:last-child) {
	margin-bottom: 1.25rem;
}

.reviews-block div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.reviews-block div h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.reviews-block div p {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}

.reviews-block div p:not(:first-child) {
	margin-top: 0.625rem;
}

.reviews-block div span {
	display: block;
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.6;
	margin-top: 1.25rem;
}

.reviews-block div span:last-of-type {
	display: block;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
	margin-top: 0;
	color: var(--clr-dark-gray);
}

.reviews-block div button,
.reviews-block div a {
	margin-top: 1.875rem;
}

.vacancies .vacancies__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
	text-align: center;
}

.vacancies .vacancies__container > p {
	/*	max-width: 37.5rem; */
	margin-top: 1.25rem;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.6;
	/*	color: var(--clr-dark-gray); */
}

.vacancies .vacancies__container > button {
	margin-top: 1.25rem;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 1rem;
	color: var(--clr-blue);
}

.spollers-item:not(:last-child) {
	margin-bottom: 1.25rem;
}

.spollers-item > button {
	width: 100%;
	text-align: left;
	padding: 0.9375rem 1.25rem;
	-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
	border-bottom: 1px solid transparent;
}

.spollers-item > button._spoller-active {
	border-color: var(--clr-light-gray);
	background-color: var(--clr-superlight-blue);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.spollers-item > button:focus {
	background-color: var(--clr-superlight-blue);
}

.spollers-item > div {
	padding: 1.25rem 1.25rem 1.875rem;
	background-color: var(--clr-superlight-blue);
}

.spollers-item div:not(.spoller-body) button {
	width: 100%;
}

.spollers-item .spoller-body {
	display: -ms-grid;
	display: grid;
	margin-bottom: 1.875rem;
	gap: 1.875rem;
}

.spollers-item .spoller-body h4 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
}

.spollers-item .spoller-body h4:not(:last-child) {
	margin-bottom: 0.625rem;
}

.spollers-item .spoller-body ul li {
	list-style: disc;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
}

.spollers-item .spoller-body ul {
	padding-left: 0.9375rem;
}

.company-info {
	margin-bottom: 3.75rem;
}

.company-info .company-info__container {
	display: -ms-grid;
	display: grid;
	row-gap: 1.875rem;
}

.company-info .company-info__container div div:not(:last-child) {
	margin-bottom: 1.875rem;
}

.company-info .company-info__container h3 {
	font-family: var(--ff-main);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue); /* var(--clr-blue-gray); */
}

.company-info .company-info__container h3:not(:last-child) {
	margin-bottom: 0.3125rem;
}

.company-info .company-info__container p {
	max-width: 35rem;
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.company-info .company-info__container p:not(:last-child) {
	margin-bottom: 0.625rem;
}

.company-info .company-info__container a {
	color: var(--clr-blue);
}

.demo-file {
    text-align: center;
    margin-top: 60px;
    font-size: 30px;
}

.btn_orange {
  display: inline-flex;
}

.btn_orange:hover {
  color: #fff;
}

.team {
	margin-bottom: 3.75rem;
}

.team .team__container h2 {
	max-width: 35rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue-gray);
	text-align: center;
	margin-bottom: 1.875rem;
}

.team .team__container .team-card {
	margin-bottom: 2.5rem;
}

.team-card div {
	padding-bottom: 111.1111111111%;
	margin-bottom: 0.5rem;
}

.team-card h3 {
	font-family: var(--ff-main);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
	color: var(--clr-blue);
}

.team-card h3:not(:last-child) {
	margin-bottom: 0.3125rem;
}

.team-card span {
	display: block;
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
}

.team-card span:not(:last-child) {
	margin-bottom: 0.3125rem;
}

.team-card a {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
	color: var(--clr-blue);
}

.team-card p a {
	color: var(--clr-dark-gray);
}

.employe {
	margin-bottom: 3.75rem;
}

.employe .employe__container {
	display: -ms-grid;
	display: grid;
	-webkit-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	row-gap: 1.875rem;
}

.employe .employe__container div h4 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
}

.employe .employe__container div h4:not(:last-child) {
	margin-bottom: 0.625rem;
}

.employe .employe__container div a {
	display: block;
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
	color: var(--clr-blue);
}

.employe .employe__container h1 {
  font-family: var(--ff-sec);
  color: var(--clr-blue);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
}

.employe .employe__container h1:not(:last-child) {
	margin-bottom: 0.4166666667em;
}

.employe .employe__container h2 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
}

.employe .employe__container h2 {
	margin-bottom: 1em;
	margin-top: 1.66666666667em;
}
.employe .employe__container h1 + h2 {
	margin-top: 0;
	margin-bottom: 2em;
}

.employe .employe__container p {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.employe .employe__container p {
	margin-bottom: 0.75em;
}

.employe .employe__image-ibg {
	padding-bottom: 111.1111111111%;
}

.employe .employe__image-ibg:not(:last-child) {
	margin-bottom: 2.5rem;
}

.publication {
	padding: 2.5rem 0;
	margin-bottom: 3.75rem;
	background-color: var(--clr-superlight-blue);
}

.publication .publication__container h2 {
	max-width: 35rem;
	margin: 0 auto;
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	color: var(--clr-blue-gray);
	text-align: center;
	margin-bottom: 1.875rem;
}

.publication .publication__container .fl-r {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.publication .publication__container > div a {
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	color: var(--clr-light-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.publication .publication__container > div a svg {
	display: none;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.publication-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	margin-bottom: 1.875rem;
}

.publication-card img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 15rem;
	flex: 0 0 15rem;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1.25rem;
}

.publication-card h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.publication-card p {
	font-family: var(--ff-main);
	line-height: 1.6;
	font-size: 0.875rem;
}

.publication-card p:not(:first-child) {
	margin-top: 0.9375rem;
}

.publication-card a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	background-color: transparent;
}

.publication-card a:not(:first-child) {
	margin-top: 1.25rem;
}

.all-news {
	margin-bottom: 3.75rem;
}

.all-news .all-news__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.all-news .all-news__body {
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
}

.all-news .solution-navigation {
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	-webkit-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
}

.new-block {
	display: block;
	background: var(--clr-white);
	padding: 1.25rem;
	-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.new-block:not(:last-child) {
	margin-bottom: 1.875rem;
}

.new-block div h3 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.02em;
	/*	text-transform: uppercase; */
	line-height: 160%;
	color: var(--clr-blue);
}

.new-block div p {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}

.new-block div p:not(:last-child) {
	margin-top: 1.875rem;
}

.new-block div span {
	display: block;
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	color: var(--clr-dark-gray);
}

.new-block div span:not(:first-child) {
	margin-top: 0.625rem;
}

.new-block img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: 1.875rem;
}

.press {
	margin-bottom: 1.875rem;
}

.press + .news-slider {
	margin-top: 3.75rem;
}
.press + .documents {
	/*
	margin-bottom: 3.75rem;
*/
	background-color: transparent;
}

.press .press__container h1 {
	font-family: var(--ff-sec);
	font-weight: 500;
	line-height: 160%;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	text-align: center;
	margin-bottom: 1.875rem;
}

.press-item img {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 28.75rem;
	flex: 0 0 28.75rem;
	width: 100%;
	min-height: 15.625rem;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 0.625rem;
}

.press-item div h2 {
	font-family: var(--ff-sec);
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
}

.press-item div h3 {
	font-family: var(--ff-sec);
	font-style: normal;
    font-size: 20px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.02em;
	color: var(--clr-blue-gray);
    margin: 16px 0;
}

.press-item div p,
.press-item div ul,
.press-item div ol,
.press-item div td,
.press-item div th {
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}
.press-item div td,
.press-item div th {
	border-bottom: 1px solid var(--clr-light-gray);
	vertical-align: top;
}
.press-item div th {
	text-align: center;
	font-weight: 600;
}
.press-item div td:first-child,
.press-item div th:first-child {
	text-align: left;
}
.press-item div table {
	border-top: 1px solid var(--clr-light-gray);
}
.press-item div li {
	margin-bottom: 0.75rem;
}
.press-item div li > ul,
.press-item div li > ol {
	margin-top: 0.75rem;
}
.press-item div ul {
	padding-left: 1.25rem;
}
.press-item div ul > li {
	list-style: disc;
}
.press-item div ol {
	padding-left: 2.5rem;
}
.press-item div ol > li {
	list-style: decimal;
}
.press-item div li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.press-item div li > ul > li:before {
	content: "— ";
}
.press-item div li > ul,
.press-item div li > ol {
	margin-top: 0.75rem;
}

.press-item div p:not(:first-child),
.press-item div ul:not(:first-child),
.press-item div ol:not(:first-child),
.press-item div ul:not(:first-child) > li,
.press-item div ol:not(:first-child) > li,
.press-item div table:not(:first-child) {
	margin-top: 0.9375rem;
}
.press-item div td,
.press-item div th {
	padding: 0.46875rem;
}

.press-item:not(:last-child) {
	margin-bottom: 2.5rem;
}

.press-item:last-of-type {
	margin-bottom: 1.25rem;
}

.press-item--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
/* изменено rtrtrtrtrtrt */
.employe .employe__container h1 {
  font-family: var(--ff-sec);
  color: var(--clr-blue);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
}
.employe .employe__container h1 + h2 {
  margin-bottom: 1.6em;
}
.employe .employe__container h1:not(:last-child) {
  margin-bottom: 0.5266666667em;
}
.projects__container [class*="-ibg"] img {
  border-radius: 30px; 
}
.projects__slide .projects__image-ibg {
  border: 1px solid #ececec;
  border-radius: 30px;
}
.press-avtor-date {
	font-family: var(--ff-sec);
	font-size: 16px;
	color: var(--clr-dark-gray);
	text-align: right;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: 0.32px;
  padding-bottom: 35px;	
}
.press-d {
	font-weight: 500;
}
.press-d-l {
  display: inline-flex;
  flex-direction: column;
	align-items: flex-start;	
}
.press-avtor-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.press-avtor-img {
  width: 67px;
  height: 67px;
  overflow: hidden;
  border-radius: 50%;
}
.press-avtor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-avtor {
  display: flex;
  align-items: center;
  color: #5E6167;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.32px;
  gap: 21px;
}
.avtor-title {
  font-weight: 500;
}
.press-avtor-title {
  text-align: left;
}
.container.team_mini {
  display: flex;
  gap: 90px;
}
.o_team_mini_card_img {
  display: flex;
  width: 62px;
  overflow: hidden;
  height: 62px;
  border-radius: 50%;
  flex: 0 0 62px;
}
.o_team_mini_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o_team_mini_card_holder {
  display: flex;
  gap: 20px;
}
.o_team_mini_card_text {
  max-width: 120px;
  color: #002A99;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 123%;
  letter-spacing: 0.36px;
}
.o_team_mini {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.o_project_title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.o_director_img {
  display: flex;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  overflow: hidden;
}  
.o_director_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o_director {
  display: flex;
  gap: 20px;
}
.o_director {
  display: flex;
  gap: 20px;
  color: #5E6167;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.32px;
}
.o_director_title {
  max-width: 200px;
}
.o_director_top {
  font-weight: 400;
}
.project-main .project-main__container .o_project_title h1 {  
  margin-bottom: 0;
}
.container.project-main__container.o_project_main .o_project_title {
  margin-bottom: 1.25rem;
}
/* //изменено */

.news-slider {
	margin-top: 3.75rem;
	margin-bottom: 3.75rem;
}

.news-slider .news-slider__container {
	position: relative;
}

.news-slider .news-slider__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	max-width: 35rem;
	margin: 0 auto;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.news-slider .news-slider__slider {
	padding-bottom: 1.875rem;
	position: relative;
}

.news-slider .news-slider__slider:not(.swiper-initialized) .news-slider__wrapper {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.news-slider .news-slider__slide {
	min-width: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.news-slider .news-slider__slide .new-block {
	max-width: 53.75rem;
}

.news-slider .news-slider__button-next {
	top: 55%;
	right: 5%;
}

.news-slider .news-slider__button-prev {
	top: 55%;
	left: 5%;
}

.news-slider .news-slider__button-prev svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.news-slider .news-slider__activities {
	max-width: 53.75rem;
	margin: 0 auto;
}

.about-benefits {
	padding: 2.5rem 0 3.75rem;
	margin-bottom: 3.75rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.about-benefits .about-benefits__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.about-benefits .about-benefits__body {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
	gap: 2.5rem;
}

.about-benefits .about-benefits__body li {
	padding: 1.25rem 0.625rem 1.875rem;
	background: var(--clr-white);
	-webkit-box-shadow: var(--bsh-card);
	box-shadow: var(--bsh-card);
}

.about-benefits .about-benefits__body li h3 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	/*	text-transform: uppercase; */
	color: var(--clr-blue);
	text-align: center;
}

.about-benefits .about-benefits__body li h3:not(:last-child) {
	margin-bottom: 0.625rem;
}

.about-benefits .about-benefits__body li p {
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 1.8;
	text-align: center;
	color: var(--clr-almost-dark);
}

.standarts {
	margin-top: 3.75rem;
	margin-bottom: 3.75rem;
}

.standarts .standarts__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-blue-gray);
	margin-bottom: 1.875rem;
}

.standarts .standarts__body {
	display: -ms-grid;
	display: grid;
	gap: 1.875rem;
}

.standarts .standarts__item {
	padding: 2.5rem 1.25rem;
	background-color: var(--clr-white);
	-webkit-box-shadow: var(--bsh-card);
	box-shadow: var(--bsh-card);
}

.standarts .standarts__item h4 {
	font-family: var(--ff-sec);
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 140%;
	text-align: center;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
}

.standarts .standarts__item h4:not(:last-child) {
	margin-bottom: 1.25rem;
}

.standarts .standarts__item a,
.standarts .standarts__item span {
	display: block;
	font-family: var(--ff-main);
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: var(--clr-black);
	color: var(--clr-dark-gray);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.standarts .standarts__item a:not(:last-child),
.standarts .standarts__item span:not(:last-child) {
	margin-bottom: 1.25rem;
}

.standarts .standarts__item a:focus {
	color: var(--clr-almost-dark);
}

.history {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.history__container {
	position: relative;
}

.history__container h2 {
	font-family: var(--ff-sec);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	font-size: 1.25rem;
	text-align: center;
	color: var(--clr-blue-gray);
}

.history__slider {
	position: relative;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(50%, transparent),
		color-stop(50%, var(--clr-blue)),
		color-stop(51%, var(--clr-blue)),
		color-stop(51%, transparent)
	);
	background-image: -o-linear-gradient(
		top,
		transparent 50%,
		var(--clr-blue) 50%,
		var(--clr-blue) 51%,
		transparent 51%
	);
	background-image: linear-gradient(
		to bottom,
		transparent 50%,
		var(--clr-blue) 50%,
		var(--clr-blue) 51%,
		transparent 51%
	);
	background-position: 0 center;
}

.history__slider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background-color: var(--clr-blue);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.history__slider::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background-color: var(--clr-blue);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.history__wrapper {
	min-height: 13.125rem;
}

.history__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.history__slide span {
	position: relative;
	z-index: 15;
	width: 3.75rem;
	height: 3.75rem;
	background-color: var(--clr-white);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid var(--clr-blue);
	font-family: var(--ff-sec);
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.8;
	text-align: center;
	letter-spacing: 0.02em;
	color: var(--clr-blue);
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../img/history/bg.jpg");
	background-size: 0 0;
}

.history__slide.swiper-slide-active span {
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	color: var(--clr-white);
	-webkit-filter: drop-shadow(4px 4px 10px rgba(8, 31, 90, 0.15));
	filter: drop-shadow(4px 4px 10px rgba(8, 31, 90, 0.15));
	background-size: 100% 100%;
}

.history .history-info__slider {
	max-width: 35rem;
	margin: 0 auto;
	padding-top: 0.9375rem;
}

.history .history-info__slide {
	position: relative;
	padding: 1.875rem;
	font-family: var(--ff-main);
	/*	font-weight: 500; */
	font-size: 0.875rem;
	line-height: 180%;
	color: var(--clr-black);
	background-color: var(--clr-superlight-blue);
	border: 1px solid rgba(217, 218, 221, 0.2);
	-webkit-filter: drop-shadow(4px 5px 15px rgba(8, 31, 90, 0.08));
	filter: drop-shadow(4px 5px 15px rgba(8, 31, 90, 0.08));
}

.history .history-info__slide::before {
	content: "";
	position: absolute;
	top: -0.9375rem;
	left: 50%;
	width: 0;
	height: 0;
	border-bottom: 15px solid var(--clr-blue);
	border-right: 13px solid transparent;
	border-left: 13px solid transparent;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.history .history__text {
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
	margin-top: 1.875rem;
	font-family: var(--ff-main);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
}

.history .history__text li {
	margin-bottom: 0.5rem;
}
.history .history__text ul {
	padding-left: 1.25rem;
}
.history .history__text ul > li {
	list-style: disc;
}
.history .history__text ol {
	padding-left: 1.75rem;
}
.history .history__text ol > li {
	list-style: decimal;
}
.history .history__text li > ul > li {
	list-style: none;
	text-indent: -1.25rem;
}
.history .history__text li > ul > li:before {
	content: "— ";
}

.history .history__text p:not(:last-child),
.history .history__text ul:not(:last-child),
.history .history__text ol:not(:last-child) {
	margin-bottom: 1.25rem;
}
.history .history__text li > ul,
.history .history__text li > ol {
	margin-top: 1.25rem;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 1.025rem;
	z-index: 50;
}

.header--background {
	position: static;
}

.header--background.header {
	padding: 0.5rem 0;
}

.header--background .menu .menu__body > ul > li > a,
.header--background .menu .menu__body > ul > li > span {
	color: var(--clr-almost-dark);
	border-bottom: none;
}

.header--background .menu .menu__body > ul > li > a:focus,
.header--background .menu .menu__body > ul > li > span:focus {
	border-color: var(--clr-blue);
	background-color: var(--clr-white);
}

.menu .contacts__body {
	display: none;
  justify-content: flex-end;
}

.header .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: flex-start;
  flex-direction: column;
}

.header_top {
  width: 100%;
}
.header_top  .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_bottom {
  width: 100%;
}

.header_fixed .header_top {
	display: none;
}


.header .lang:not(:last-child) {
	margin-bottom: 2.5rem;
}

.header .lang .lang-item.current-lang {
	color: var(--clr-blue);
}

.header .lang .lang-item.current-lang::after {
	border-color: var(--clr-blue);
}

.footer {
  padding-top: 55px;
	background: #405361;
}

.footer__container div a,
.footer__container div .logo {
	display: block;
	text-align: center;
	margin-bottom: 1rem;
}

.footer__container div a svg {
	width: 13.25rem;
	height: 3.75rem;
}

.footer__container p {
	font-family: var(--ff-sec);
	font-size: 0.875rem;
	line-height: 180%;
	text-align: center;
	color: #fff;
	margin-bottom: 2.1875rem;
}

.footer__container button.footer__button {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 140%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: rgba(128, 149, 205, 0.7);
	margin: 0 auto;
}

.footer__container nav {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.footer__container nav.open {
	max-height: 100%;
	opacity: 1;
}

.footer__container nav > ul {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	margin: 0 auto;
}

.footer__container nav > ul > li {
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid-column;
}

.footer__container nav > ul > li > a,
.footer__container nav > ul > li > span {
	font-size: 1rem;
	font-weight: 600;
	line-height: 180%;
	color: #fff;
}

.footer__container nav > ul > li:not(:last-child) {
	margin-bottom: 1rem;
}

.footer__container nav ul li ul li a,
.footer__container nav ul li ul li > span {
	display: block;
	font-size: 0.875rem;
	line-height: 180%;
	letter-spacing: 0.02em;
	color: #fff;
}
.footer__container nav ul li ul li > span {
	color: #fff;
}

.footer__container nav ul li a:hover,
.footer__container nav ul > li.active > span,
.footer__container nav ul li ul li > span {
	font-weight: 600;
}

.footer__container div span {
	font-weight: 400;
	font-size: 1rem;
	line-height: 180%;
}

.footer__container .language {
	visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.875rem;
	-webkit-transition: all 0.32s ease-in-out;
	-o-transition: all 0.32s ease-in-out;
	transition: all 0.32s ease-in-out;
}

.footer__container .language .lang {
	height: 38px;
}

.footer__container .footer__logo img {
	width: 13.25rem;
	height: 1.375rem;
}

.copyright {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.copyright div {
	border-top: 1px solid #fff;
	padding: 1rem 0 1.25rem;
	margin-top: 1.875rem;
	text-align: center;
	font-family: var(--ff-sec);
	font-size: 0.875rem;
	line-height: 160%;
	color: #fff;
	flex-grow: 1;
}
.copyright div + div {
	margin-top: 0;
}
@media (min-width: 29.99874em) {
	.copyright div + div {
		margin-top: 1.875rem;
	}
}

.slider__wrapper {
	position: relative;
}
.swiper {
	overflow: hidden;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.swiper:not(.swiper-initialized) .swiper-wrapper {
	justify-content: center;
	gap: 20px;
}

.swiper-vertical .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
	display: none !important;
}

.project-main__slide {
	width: 100%;
}

.reviews .reviews__container .reviews__slide .reviews__slide__footer > div.reviews__slide__footer_left {
    display: flex;	
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
	padding-right: 10px;
	gap: 15px;
}

.reviews .reviews__container .reviews__slide .reviews__slide__footer > div.reviews__slide__footer_left img, .reviews .reviews__container .reviews__slide .reviews__slide__footer > div.reviews__slide__footer_left span  {
  margin-bottom: 0;
}



@media (min-width: 29.99875em) {
	.certificates .certificates__container button {
		width: auto;
		padding-right: 5rem;
		padding-left: 5rem;
	}

	.purchase-form h3 {
		font-size: 1.125rem;
	}

	.hero .hero__container h1 span:first-of-type {
		font-size: 1.75rem;
	}

	.hero .hero__container h1 span:last-of-type {
		font-size: 2.25rem;
	}


	.reviews .reviews__container .reviews__slide .rounded-image img {
		width: 3.75rem;
		height: 3.75rem;
	}
	.reviews .reviews__container .reviews__slide .sized-image img {
		max-width: 5rem;
		max-height: 5rem;
		height: auto;
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.125rem;
	}

	.contacts .contacts__container #map {
		height: 15.625rem;
	}
	.reviews .reviews__container .reviews__slide .reviews__slide__footer {
		display: flex;
		flex-direction: row;
	}
	.reviews .reviews__container .reviews__slide .reviews__slide__footer > div {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.reviews .reviews__container .reviews__slide .reviews__slide__footer > div:first-child {
		flex: 1;
	}
	.reviews .reviews__container .reviews__slide .reviews__slide__footer > div:last-child {
		max-width: 33%;
	}

	.solution-preview h1 {
		font-size: 1.5rem;
	}

	.solution-item a {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.products .products__container a span {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		margin-right: auto;
		margin-left: auto;
	}

	.documents .documents__container > div a {
		margin-top: 0;
	}

	.another-products .another-products__slide a.product span {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		margin-right: auto;
		margin-left: auto;
	}

	.chars .chars__container div h6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 69%;
		flex: 0 1 69%;
	}

	.all-projects .all-projects__container nav button {
		font-size: 1rem;
		padding: 0.9375rem 1.875rem;
	}

	.description .description__container > ul > li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.description .description__container > ul > li h2,
	.description .description__container > ul > li .h2 {
		margin-right: 1.25rem;
		margin-bottom: 0;
	}

	.description .description__container > ul > li a:not(.marina)  {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.reviews-block {
		padding: 1.25rem 1.25rem 1.875rem;
	}

	.publication .publication__container .fl-r {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.publication-card img {
		margin-bottom: 1.875rem;
	}

	.footer__container nav > ul {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}

	.industry .swiper-initialized .swiper-slide {
		opacity: 0;
		visibility: hidden;
		transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	}
	.industry .swiper-initialized .swiper-slide-active {
		opacity: 1;
		visibility: visible;
	}
	.copyright {
		flex-direction: row;
	}
}

@media (min-width: 33.749375em) {
	.popup__close {
		top: 1.25rem;
		right: 1.875rem;
	}

	.fl-c {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.response-form .response-form__activities {
		margin-top: 2.5rem; /*3.4375rem;*/
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: flex-end; /*center;*/
		align-items: flex-end; /*center;*/
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.response-form .response-form__activities button,
	.response-form .response-form__activities .cta {
		width: auto;
		margin-top: 0;
	}

	.purchase-form .purchase-form__activities {
		margin-top: 2.5rem; /*3.4375rem;*/
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: flex-end; /*center;*/
		align-items: flex-end; /*center;*/
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.purchase-form .purchase-form__activities button,
	.purchase-form .purchase-form__activities .cta {
		width: auto;
		margin-top: 0;
	}

	.industry--noslider .industry__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.industry--noslider .industry__slide:not(:last-child) {
		margin-right: 1.25rem;
		margin-bottom: 1.25rem;
	}

	.industry--noslider .industry__activities {
		margin-top: 3.75rem;
	}

	.industry-card {
		width: 16.25rem;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.25rem;
		flex: 0 0 16.25rem;
	}

	.director .director__container .img {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 22.5rem;
		flex: 1 0 22.5rem;
		max-width: 22.5rem;
	}

	.reviews-block div button,
	.reviews-block div a {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}

	.spollers-item div:not(.spoller-body) button {
		width: auto;
	}

	.team .team__container .team-card {
		width: 47%;
	}

	.team .team__container .team-card:not(:nth-child(2n)) {
		margin-right: 3%;
	}

	.swiper:not(.swiper-initialized):not(.projects__slider):not(.device__slider)
		.swiper-slide:not(.project-main__slide):nth-child(1):last-child {
		max-width: 50%;
	}

	.industry .swiper-initialized .swiper-slide-active + .swiper-slide {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 39.999375em) {
	.documents .gr-cl {
		grid-template-columns: repeat(1, minmax(18.125rem, 1fr));
	}
	.documents .project div {
		min-height: 420px;
	}	
}
@media (min-width: 39.999375em) {
	.projects__image-ibg a img {
		max-width: 100%;
		width: auto;
		max-height: 100%;
		height: auto;
		margin: 0 auto;
		display: block;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.popup__wrapper {
		padding-top: 2.5rem;
	}

	.popup__content {
		padding: 1.25rem 1.875rem 1.875rem;
	}

	.popup__content h5 {
		font-size: 1rem;
	}

	.gr-cl {
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [2];
		grid-template-columns: repeat(2, minmax(18.125rem, 1fr));
	}

	.not-found__container h1 {
		/*font-size: max(9.375rem, 20vw);*/
	}

	.response-form .response-form__body {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}

	.response-form .response-form__body .response-form__item:last-child {
		-ms-grid-column-span: 2;
		grid-column: span 2;
	}

	.purchase-item--old.purchase-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.purchase-item--old.purchase-item .purchase-item__activities {
		margin-top: 0;
		margin-left: 0.9375rem;
	}

	.purchase-item .purchase-item__content {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.purchase-item .purchase-item__description {
		margin-right: auto;
	}

	.purchase-item .purchase-item__description:not(:last-child) {
		margin-bottom: 0;
	}

	.purchase-item .purchase-item__date:last-child {
		margin-left: 3.125rem;
	}

	.purchase-item .purchase-item__date:not(:last-child) {
		margin-left: 1.25rem;
		margin-bottom: 0;
	}

	.purchase-item .purchase-item__activities {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.purchase-item .purchase-item__activities > div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.purchase-item .purchase-item__activities a {
		margin-bottom: 0;
	}

	.purchase-form h3 {
		font-size: 1.25rem;
	}

	.purchase-form h3:not(:last-child) {
		margin-bottom: 1.25rem;
	}

	.purchase-form .purchase-form__body {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}

	.purchase-form .purchase-form__body .response-form__item:last-child {
		-ms-grid-column-span: 2;
		grid-column: span 2;
	}

	.purchase-form input:not(.cta),
	.purchase-form textarea {
		font-size: 1rem;
	}

	.hero .hero__container {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.hero .hero__container h1 {
		text-align: left;
		margin-bottom: 0.75rem;
	}

	.hero .hero__container p {
		max-width: 28.75rem;
		display: block;
		/*		font-weight: 500; */
		line-height: 160%;
		letter-spacing: 0.02em;
		color: var(--clr-light-gray);
		margin-bottom: calc(50vh - 41px - 50px);
	}

	.hero .hero__container button {
		display: none;
	}

	.industry {
		margin-bottom: 11.25rem;
	}

	.contact-info + .industry {
		margin-top: 5rem;
	}

	.industry h2 {
		font-size: 1.5rem;
	}

	.industry .swiper-initialized .swiper-slide-active + .swiper-slide + .swiper-slide {
		opacity: 1;
		visibility: visible;
	}

	.industry .industry__slider .projects__button-prev {
		left: -0.75rem;
	}
	.industry .industry__slider .projects__button-next {
		right: -0.75rem;
	}
	.industry .industry__slider .projects__button.button-initialized {
		background-color: transparent;
		border: 1px solid var(--clr-light-blue);
	}
	.industry .industry__slider .projects__button.button-initialized:hover {
		background-color: var(--clr-white);
		border-color: var(--clr-blue);
	}

	.about .about__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.about.about--reverse .about__container {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.about.about--reverse .about__container > div:last-child {
		margin-left: 0;
		margin-right: 1.875rem;
	}

	.about .about__container .about__description {
		display: inline-block;
	}

	.about .about__container > div:last-child {
		margin-left: 1.875rem;
	}

	.about .about__container div div {
		font-size: 1rem;
	}

	.about .about__container div div:not(:last-child) {
		margin-bottom: 2.5rem;
	}

	.about .about__container p {
		text-align: left;
	}

	.about .about__titles h2 {
		font-size: 1.5rem;
	}

	.about .about__item p,
	.about .about__item li {
		font-size: 1rem;
	}

	.benefits .benefits__body .benefits__text {
		font-size: 1rem;
	}

	.benefits .benefits__body button {
		width: auto;
		margin: 0 auto;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.benefits__items {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.benefits__items li:not(:last-child) {
		margin-bottom: 0;
	}

	.projects__container .projects__slider:not(.swiper-initialized) .projects__wrapper {
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [2];
		grid-template-columns: repeat(2, minmax(18.125rem, 1fr));
	}

	.projects__container .projects__slide h3 {
		font-size: 1rem;
	}

	.project h3 {
		font-size: 1rem;
	}

	.contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
		font-size: 1.5rem;
	}

	.contact-block form p,
	.contact-block form .wpcf7-response-output {
		font-size: 1.25rem;
	}

	.reviews .reviews__container .reviews__button.button-initialized {
		background-color: transparent;
		border: 1px solid var(--clr-light-blue);
	}
	.reviews .reviews__container .reviews__button.button-initialized:hover {
		background-color: var(--clr-white);
		border-color: var(--clr-blue);
	}

	.reviews .reviews__container .reviews__slide {
		padding: 2.5rem;
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.5rem;
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.5rem;
	}

	.reviews .reviews__container .reviews__slide p {
		font-size: 1rem;
	}

	.reviews .reviews__container .reviews__slide p {
		font-size: 1rem;
	}

	.reviews .reviews__container .reviews__slide span {
		font-size: 0.8125rem;
	}

	.reviews .reviews__container .reviews__slide span:first-of-type {
		font-weight: 500;
	}

	.new p {
		font-size: 1rem;
	}

	.new {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse; 
	}

	.new .image-ibg {
		padding-bottom: 25%;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 22.5rem;
		flex: 0 0 27.13rem;
		margin-bottom: 0;
		margin-left: 1.25rem;
		overflow: hidden;
	}
	

	.new h3 {
		text-align: left;
	}

	.new button,
	.new .cta {
		width: auto;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}

	.contacts .contacts__container ul li {
		font-size: 1rem;
	}

	.contacts .contacts__container #map {
		height: 21.875rem;
	}

	.solution-preview {
		font-size: 1.5rem;
	}

	.solution-preview h1 {
		font-size: 1.75rem;
	}

	.solution-description .solution-description__container div h2 {
		font-size: 1.5rem;
	}

	.solution-description .solution-description__container div h3 {
		font-size: 1.25rem;
	}

	.solution-description .solution-description__container div p,
	.solution-description .solution-description__container div li {
		font-size: 1rem;
		text-align: left;
	}

	.solution-navigation li > a,
	.solution-navigation li > span {
		font-size: 1rem;
	}


	.solution-item .solution-item__container .image-ibg {
		width: calc(100% - 32px);
		left: 16px;
	}

	.solution-item .solution-item__container div:not(.image-ibg) h2 {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}

	.solution-item .solution-item__container div:not(.image-ibg) p {
		font-size: 1rem;
	}

	.solution-item .solution-item__container div:not(.image-ibg) {
		padding: 1.875rem 2.5rem 2.5rem;
	}

	.solution-item.solution-item--right .image-ibg {
		width: calc(100% - 32px);
		right: 16px;
		left: auto;
	}

	.solution-about h2 {
		font-size: 2rem;
	}

	.solution-servicies .solution-servicies__container .solution-servicies__body a span {
		font-size: 1rem;
	}

	.solution-tabset .solution-tabs nav button {
		font-size: 1rem;
	}

	.solution-tabset .solution-tabs nav button {
		font-size: 0.875rem;
	}

	.solution-tabset .solution-tabset__content section h2 {
		font-size: 1.5rem;
	}

	.solution-tabset .solution-tabset__content section div div:not(.image-ibg) p,
	.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li {
		font-size: 1rem;
	}

	.products .products__container a h3 {
		font-size: 1.5rem;
	}

	.products .products__container {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		row-gap: 5.625rem;
	}

	.products .products__container a {
		padding: 0 1.25rem 2.5rem;
	}

	.products .products__container a:not(:last-child) {
		margin-bottom: 0rem;
	}

	.product-preview .product-preview__container::before,
	.product-preview .product-preview__container::after {
		content: "";
		position: absolute;
		top: -0.625rem;
		background-color: var(--clr-superlight-blue);
		width: 100%;
		height: 18.75rem;
		z-index: -1;
	}

	.product-preview .product-preview__container::before {
		left: calc(-100% + 20px);
	}

	.product-preview .product-preview__container::after {
		right: calc(-100% + 15px);
	}

	.product-preview .product-preview__slider::before {
		content: "";
		position: absolute;
		top: -0.625rem;
		background-color: var(--clr-superlight-blue);
		width: 100%;
		height: 18.75rem;
	}

	.product-preview .product-preview__activities {
		margin-bottom: 1.25rem;
	}

	.product-preview p,
	.product-preview li {
		font-size: 1rem;
	}


	.documents .documents__container > div > span {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 3rem;
		flex: 0 0 3rem;
		width: 3rem;
		height: 3rem;
		margin-bottom: 0;
		align-self: flex-start;
	}

	.documents .documents__container > div > span svg {
		width: 2rem;
		height: 2rem;
	}

	.desicion .desicion__container h2 {
		font-size: 1.5rem;
	}

	.desicion .desicion__container article div ul li {
		font-size: 1rem;
	}

	/*
	.result--double .result__container div ul {
		-ms-flex-item-align: center;
				-ms-grid-row-align: center;
				align-self: center;
	}
*/

	.result .result__container div {
		font-size: 1rem;
	}

	.another-products .another-products__slide a.product h3 {
		font-size: 1.5rem;
	}

	.another-products .another-products__slide a h3 {
		font-size: 1rem;
	}

	.another-products .another-products__slide a.product {
		padding: 0 1.25rem 2.5rem;
		height: 100%;
	}

	.another-products .another-products__slide a.product:not(:last-child) {
		margin-bottom: 0rem;
	}

	.devices .devices__container {
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [2];
		grid-template-columns: repeat(2, minmax(18.125rem, 1fr));
	}

	.item-devices h4 {
		font-size: 1rem;
	}

	.device .device__content h2 {
		margin-top: 2.5rem;
		margin-bottom: 1.25rem;
	}

	.device .device__content p {
		font-size: 1rem;
	}

	.device .device__content ul li {
		font-size: 1rem;
	}

	.director--reverse.director .director__container {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.director--reverse.director .director__container img:not(:last-child) {
		margin-left: 2.5rem;
		margin-right: 0;
		max-width: 300px;
	}

	.director .director__container {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.director .director__container .img {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 18.75rem;
		flex: 1 0 18.75rem;
		max-width: 18.75rem;
	}

	.director .director__container .img:not(:last-child) {
		margin-right: 2.5rem;
		margin-bottom: 0;
	}

	.director .director__container h5 {
		font-size: 1rem;
	}

	.all-projects .all-projects__container nav {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 3.75rem;
	}

	.all-projects .all-projects__container nav button {
		font-size: 1.125rem;
		padding: 1.0625rem 2.125rem;
	}

	.all-projects .all-projects__container nav button br {
		display: inline;
	}

	.all-projects .all-projects__body {
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [2];
		grid-template-columns: repeat(2, minmax(18.125rem, 1fr));
	}

	.description .description__container > ul > li > h2 {
		font-size: 1.5rem;
	}

	.description .description__container > ul > li p,
	.description .description__container > ul > li li {
		font-size: 1rem;
	}

	.description .description__container > ul > li h3 {
		font-size: 1.25rem;
	}

	.project-main .project-main__container p {
		font-size: 1rem;
	}

	.reviews-block div p:not(:first-child) {
		margin-top: 1.25rem;
	}

	.vacancies .vacancies__container > p {
		margin-top: 1.875rem;
	}

	.spollers-item > button {
		font-size: 1.125rem;
	}

	.spollers-item .spoller-body h4 {
		font-size: 1rem;
	}

	.spollers-item .spoller-body h4:not(:last-child) {
		margin-bottom: 1.25rem;
	}

	.company-info .company-info__container p {
		font-size: 1rem;
	}

	.team-card h3 {
		font-size: 1rem;
	}

	.team-card a {
		font-size: 1rem;
	}

	.employe .employe__container div a {
		font-size: 1rem;
	}

	.employe .employe__container h2 {
		font-size: 1rem;
	}

	.employe .employe__container p {
		font-size: 1rem;
	}

	.employe .employe__container {
		-ms-grid-columns: 22.5rem 1fr;
		grid-template-columns: 22.5rem 1fr;
	}

	.publication {
		padding: 3.75rem 0;
	}

	.publication-card img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 22.5rem;
		flex: 0 0 22.5rem;
		max-width: 40%;
	}

	.publication-card p {
		font-size: 1rem;
	}

	.new-block div h3 {
		font-size: 1.125rem;
	}

	.new-block img {
		margin-left: 2.5rem;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 15rem;
		flex: 0 0 15rem;
		width: 15rem;
		margin-top: 0;
	}

	.new-block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		justify-content: space-between;
	}

	.press .press__container h1 {
		font-size: 1.5rem;
	}

	.press .press__container h1:not(:last-child) {
		margin-bottom: 3.75rem;
	}

	.press-item img {
		margin-bottom: 1.25rem;
	}

	.press-item div p:not(:first-child),
	.press-item div ul:not(:first-child),
	.press-item div ol:not(:first-child) > li,
	.press-item div ol:not(:first-child) > li,
	.press-item div table:not(:first-child) {
		margin-top: 1.25rem;
	}

	.about-benefits {
		padding: 3.75rem 0 5rem;
	}

	.standarts .standarts__item h4 {
		font-size: 1.25rem;
	}

	.history .history-info__slide {
		font-size: 1rem;
	}

	.standarts .standarts__item a,
	.standarts .standarts__item span {
		font-size: 1rem;
	}

	.about-benefits .about-benefits__body li {
		padding: 1.25rem 1.325rem 1.875rem;
	}

  .about .about__container div div.o_job_title {
    margin-bottom: 17px;
  }
  .about .about__container div div.o_job_img {
    margin-bottom: 22px;
  }	
	

}

@media (min-width: 39.999375em) and (max-width: 74.5em) {
	.product-preview .product-preview__container::before,
	.product-preview .product-preview__container::after {
		height: 21.875rem;
		top: -5rem;
	}

	.product-preview .product-preview__slider::before {
		height: 21.875rem;
		top: -5rem;
	}
}

@media (min-width: 47.99875em) {
	.popup__wrapper {
		padding-top: 3.75rem;
	}

	.slider-activities--reverse.slider-activities {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.slider-activities--reverse.slider-activities a {
		margin-left: 0;
		margin-right: 38%;
	}

	.slider-activities .swiper-pagination {
		margin-bottom: 0;
	}

	.slider-activities a svg {
		display: block;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 1.25rem;
		flex: 0 0 1.25rem;
		width: 1.25rem;
		height: 1.25rem;
		fill: var(--clr-light-blue);
		-webkit-transform: translateY(0.5px);
		-ms-transform: translateY(0.5px);
		transform: translateY(0.5px);
	}

	.slider-activities {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin-top: 0.7em;
	}
	.news-slider__activities, header:not(.header--home) + main .reviews__activities/*, .projects__activities*/ {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.slider-activities--tripple {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.slider-activities--tripple a {
		margin-left: 0;
	}

	.slider-activities--tripple a:first-child {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.slider-activities--center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.response-form .response-form__activities label {
		font-size: 1rem;
	}

	.purchase-form .purchase-form__activities label {
		font-size: 1rem;
	}

	.docs {
		position: fixed;
		left: 0;
		bottom: 0;
		padding: 1.25rem 6.25rem 1.25rem 8.75rem;
		background-color: var(--clr-blue);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}

	.docs.active {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.docs .docs__body {
		position: relative;
	}

	.docs .docs__close {
		position: absolute;
		top: 0.625rem;
		right: 0.625rem;
	}

	.docs .docs__close svg {
		display: block;
		width: 1.5rem;
		height: 1.5rem;
		stroke: var(--clr-light-gray);
		-webkit-transition: all 0.32s ease-in-out;
		-o-transition: all 0.32s ease-in-out;
		transition: all 0.32s ease-in-out;
	}

	.docs .docs__close:focus {
		outline: none;
	}

	.docs .docs__close:focus svg {
		stroke: var(--clr-white);
	}

	.docs .docs__body a {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		font-family: var(--ff-sec);
		font-weight: 500;
		font-size: 1rem;
		line-height: 160%;
		/*		text-transform: uppercase; */
		color: var(--clr-white);
	}

	.docs .docs__body a::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: var(--clr-white);
	}

	.docs .docs__body a img {
		margin-left: 0.8125rem;
	}

	.docs .docs__body a:not(:last-child) {
		margin-bottom: 1.875rem;
	}

	.hero .hero__container h1 span:first-of-type {
		font-size: 2rem;
	}

	.hero .hero__container h1 span:last-of-type {
		font-size: 3rem;
	}

	.about .about__container a {
	/*	width: auto; */
	/*	display: -webkit-inline-box; */
	/*	display: -ms-inline-flexbox; */
	
	}

	.about .about__item img {
		margin-left: 2.5rem;
		margin-top: 0;
		max-width: 35rem;
	}

	.about .about__item p:not(:first-child),
	.about .about__item ul:not(:first-child),
	.about .about__item ol:not(:first-child) {
		margin-top: 1.875rem;
	}

	.about .about__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.about .about__item div {
		width: 50%;
	}

	.about .about__item--reverse.about__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.about .about__item--reverse.about__item img {
		margin-left: 0;
		margin-right: 2.5rem;
		margin-top: 0;
	}

	.projects__container .projects__slider {
		margin-bottom: 1.875rem;
	}

	.projects__container .projects__slide {
		text-align: left;
	}

	.projects__button.button-initialized {
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 3rem;
		height: 3rem;
		top: 38%;
		-webkit-transform: translateY(-45%);
		-ms-transform: translateY(-45%);
		transform: translateY(-45%);
		background-color: var(--clr-white);
		background-color: rgba(255, 255, 255, 0.8);
		-webkit-filter: drop-shadow(-0.5px 0px 6px rgba(7, 51, 92, 0.15))
			drop-shadow(4px 2px 10px rgba(7, 51, 92, 0.25));
		filter: drop-shadow(-0.5px 0px 6px rgba(7, 51, 92, 0.15)) drop-shadow(4px 2px 10px rgba(7, 51, 92, 0.25));
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
		border-radius: 100%;
		-webkit-transition: all 0.32s ease-in-out;
		-o-transition: all 0.32s ease-in-out;
		transition: all 0.32s ease-in-out;
	}
	.product-preview .product-preview__container .projects__button.button-initialized {
		top: 25%;
	}

	.projects__button.button-initialized svg {
		width: 2rem;
		height: 2rem;
		fill: var(--clr-light-blue);
		-webkit-transition: all 0.32s ease-in-out;
		-o-transition: all 0.32s ease-in-out;
		transition: all 0.32s ease-in-out;
	}

	.projects__button.button-initialized:focus:hover {
		background-color: var(--clr-white);
	}

	.projects__button.button-initialized:focus:hover svg {
		fill: var(--clr-blue);
	}

	.project {
		text-align: left;
	}

	.contact-block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.contact-block > div {
		text-align: left;
		margin-right: 1.25rem;
		max-width: 35rem;
		margin-bottom: 0;
		width: 50%;
	}

	.partners .partners__container > div {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [4];
		grid-template-columns: repeat(4, 1fr);
	}

	.solution-description .solution-description__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.solution-navigation {
		border-left: 2px solid var(--clr-blue);
		padding-bottom: 0;
		padding-left: 0;
		margin-bottom: 0;
		display: block;
		white-space: initial;
		overflow: initial;
	}

	.solution-navigation li > a::before,
	.solution-navigation li > span::before {
		height: 100%;
		top: 0;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		left: -0.1875rem;
	}

	.solution-item .solution-item__container .image-ibg {
		width: 46.875rem;
	}

	.solution-item.solution-item--right .image-ibg {
		width: 46.875rem;
	}

	.solution-servicies .solution-servicies__activities a {
		margin-left: auto;
	}

	.solution-tabset .solution-tabs nav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		overflow: hidden;
	}

	.solution-tabset .solution-tabset__content section div .image-ibg {
		width: 100%;
	}

	.desicion .desicion__container article {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.desicion .desicion__image-ibg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 26.25rem;
		flex: 0 0 26.25rem;
		margin-right: 2.5rem;
		margin-bottom: 0;
		padding-bottom: 29.4%;
	}

	.result {
		padding-bottom: 5rem;
	}

	/*
	.result--double .result__container div ul {
		-ms-flex-item-align: start;
				align-self: flex-start;
	}
*/

	.result .result__container > div {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.result .result__container div ul,
	.result .result__container div ol,
	.result .result__container div p {
		margin-right: 1.25rem;
		padding-bottom: 1.875rem;
		padding-top: 0;
	}

	.result .result__container div ul:last-child,
	.result .result__container div ol:last-child,
	.result .result__container div p:last-child {
		padding-bottom: 0;
	}

	.result .result__container div img {
		/*
		-ms-flex-item-align: end;
				align-self: flex-end;
*/
		margin-left: 1.25rem;
	}

	.director .director__container .img {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 22.5rem;
		flex: 1 0 22.5rem;
		max-width: 22.5rem;
	}

	.description .description__container > ul > li:not(:last-child) {
		margin-bottom: 3.75rem;
	}

	.description .description__container > ul > li p:not(:last-child),
	.description .description__container > ul > li ul:not(:last-child),
	.description .description__container > ul > li ol:not(:last-child),
	.description .description__container > ul > li h2:not(:last-child),
	.description .description__container > ul > li h3:not(:last-child) {
		margin-bottom: 1.3888888889em;
	}

	.reviews-block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.reviews-block img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 18.75rem;
		flex: 0 0 18.75rem;
	}

	.reviews-block img:not(:last-child) {
		margin-bottom: 0;
		margin-right: 1.25rem;
	}

	.vacancies .vacancies__container > p {
		margin-top: 2.5rem;
	}

	.spollers-item .spoller-body {
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
	}

	.spollers-item:not(:last-child) {
		margin-bottom: 1.875rem;
	}

	.company-info .company-info__container {
		-ms-grid-columns: 1.2fr 1fr;
		grid-template-columns: 1.2fr 1fr;
		-webkit-column-gap: 5rem;
		-moz-column-gap: 5rem;
		column-gap: 5rem;
	}

	.team-card {
		text-align: left;
	}

	.publication .publication__container > div a {
		margin-left: 38%;
	}

	.publication .publication__container > div a svg {
		display: block;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 1.25rem;
		flex: 0 0 1.25rem;
		width: 1.25rem;
		height: 1.25rem;
		fill: var(--clr-light-blue);
		-webkit-transform: translateY(0.5px);
		-ms-transform: translateY(0.5px);
		transform: translateY(0.5px);
	}

	.publication-card img {
		margin-left: 2.5rem;
		margin-bottom: 0;
	}

	.publication-card p:not(:first-child) {
		margin-top: 1.875rem;
	}

	.publication-card a:not(:first-child) {
		margin-top: 2.5rem;
	}

	.publication-card {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.all-news .all-news__body {
		-ms-grid-columns: 12.5rem 1fr;
		grid-template-columns: 12.5rem 1fr;
	}

	.press-item img {
		min-height: 0;
		max-height: 27rem;
		margin-right: 2.5rem;
		max-width: 627px;
	}

	.press-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.press-item:not(:last-child) {
		margin-bottom: 3.75rem;
	}

	.press-item:last-of-type {
		margin-bottom: 2.5rem;
	}

	.press-item--reverse img {
		margin-right: 0;
		margin-left: 2.5rem;
	}

	.standarts .standarts__body {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}

	.history__slider {
		background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			color-stop(49%, transparent),
			color-stop(49%, var(--clr-blue)),
			color-stop(51%, var(--clr-blue)),
			color-stop(51%, transparent)
		);
		background-image: -o-linear-gradient(
			top,
			transparent 49%,
			var(--clr-blue) 49%,
			var(--clr-blue) 51%,
			transparent 51%
		);
		background-image: linear-gradient(
			to bottom,
			transparent 49%,
			var(--clr-blue) 49%,
			var(--clr-blue) 51%,
			transparent 51%
		);
	}

	.history__slide span {
		width: 5rem;
		height: 5rem;
		font-size: 1.375rem;
	}

	.history .history__text {
		margin-top: 3.75rem;
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}

	.footer__container button.footer__button {
		display: none;
	}

	.footer__container nav {
		max-height: 100%;
		opacity: 1;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}

	.footer__container .language {
		visibility: visible;
		margin-top: 0;
	}

	.footer__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.footer__container > div:first-child {
		max-width: 18.5625rem;
	}

	.footer__container > div:first-child p {
		text-align: left;
	}

	.footer__container > div:first-child .logo {
		margin-left: 0;
		text-align: left;
	}
}

@media (min-width: 47.99875em) and (any-hover: hover) {
	.docs .docs__close:hover svg {
		stroke: var(--clr-white);
	}

	.projects__button.button-initialized:hover {
		background-color: var(--clr-white);
	}

	.projects__button.button-initialized:hover svg {
		fill: var(--clr-blue);
	}
}

@media (min-width: 61.99875em) {
	.popup__wrapper {
		padding-top: 5.625rem;
	}

	.popup__content {
		padding: 1.25rem 2.5rem 2.5rem;
	}

	.popup__content h4 {
		font-size: 1.5rem;
	}

	.main-title {
		font-size: 1.5rem;
	}

	.main-title {
		margin-bottom: 3.75rem;
	}

	.gr-cl {
		gap: 2.5rem;
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [3];
		grid-template-columns: repeat(3, minmax(18.125rem, 1fr));
	}

	.certificates {
		margin-bottom: 1.5rem;
	}

	.certificates .certificates__container h2 {
		font-size: 1.5rem;
	}

	.certificates .certificates__container h2 {
		margin-bottom: 3.75rem;
	}
	

	.menu {
		position: static;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		pointer-events: all;
		padding: 0;
		background-color: transparent;
		flex-direction: row;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		overflow-y: initial;
	}

	.menu .contacts__body {
		width: 100%;
		font-size: 1rem; /* 0.75rem; */
		display: flex;
		flex-direction: row;
		padding: 0.75rem 0 0 1.25rem;
	}
	.header--home .menu .contacts__body {
		padding-top: 0.55rem;
	}

	.menu .contacts__body span,
	.menu .contacts__body a {
		display: block;
		padding: 0 1.25rem 0.5rem 0;
		color: var(--clr-white);
		/*border-bottom: 1px dotted var(--clr-white);*/
	}

	.header--background .menu .contacts__body span,
	.header--background .menu .contacts__body a {
		color: var(--clr-dark-gray);
		/*border-color: var(--clr-light-gray);*/
	}

	.menu .menu__body:not(:last-child) {
		margin-right: 0.75rem; /*1.25rem;*/
		margin-bottom: 0;
		flex-grow: 1;
	}

	.menu .menu__body > ul {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 37px;
	}

	.menu .menu__body > ul > li ul {
		position: absolute;
		z-index: 100;
		top: 100%;
		left: -50%;
		min-width: 13.25rem;
		background-color: var(--clr-white);
		-webkit-box-shadow: var(--bsh-card);
		box-shadow: var(--bsh-card);
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
		-webkit-transform: translateY(1.25rem);
		-ms-transform: translateY(1.25rem);
		transform: translateY(1.25rem);
		-webkit-transition: all 0.32s ease-in-out;
		-o-transition: all 0.32s ease-in-out;
		transition: all 0.32s ease-in-out;
		border-top: 2px solid var(--clr-blue);
		-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
		box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	}

	.menu .menu__body > ul > li ul li a,
	.menu .menu__body > ul > li ul li.active > span {
		text-align: left;
	}

	.menu .menu__body > ul > li ul li a:focus,
	.menu .menu__body > ul > li ul li a:active,
	.menu .menu__body > ul > li ul li.active > span {
		outline: none;
	}

	.menu .menu__body > ul > li > a,
	.menu .menu__body > ul > li > span {
		font-size: 1rem;
		color: var(--clr-white);
	}

	.menu .menu__body > ul > li > a:focus,
	.menu .menu__body > ul > li > span:focus {
		outline: none;
	}

	.icon-menu {
		display: none;
	}

	.search input {
		font-size: 1rem;
		line-height: 1.6;
	}

	.hero .hero__container h1 span:first-of-type {
		font-size: 2.25rem;
	}

	.hero .hero__container h1 span:last-of-type {
		font-size: 3.25rem;
	}

	.hero + .industry {
		margin-top: -6.25rem;
	}

	.industry h2 {
		margin-bottom: 3.75rem;
	}

	.industry .industry__slider.swiper-initialized {
		/*		margin-left: max(1.875rem, (100% - 1160px) / 2); */
		margin-right: 0;
		margin-left: 0;
	}
	.industry .swiper-initialized .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
		opacity: 1;
		visibility: visible;
	}

	.industry--noslider .industry__wrapper {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.industry--noslider .industry__slide:not(:last-child) {
		margin-bottom: 0;
	}

	.industry--noslider .industry__activities {
		margin-top: 5.625rem;
	}

	.about .about__container .about__description {
		font-size: 1.5rem;
	}

	.about .about__container .about__description span,
	.about .about__container .about__description strong {
		display: block;
	}
	/*
	.about .about__container div div {
		font-size: 1.125rem;
	}
*/
	.about .about__container a.big {
		font-size: 1.5rem;
	}

	.about .about__titles {
		margin-bottom: 3.75rem;
	}

	.about .about__titles h4 {
		font-size: 1rem;
	}

	.benefits {
		/* background-image: url("../img/benefits/bg.jpg") !important; */
	}

	.benefits h2 {
		font-size: 1.5rem;
	}

	.benefits .benefits__container {
		padding: 0 1rem;
	}
	/*
	.benefits .benefits__body .benefits__text {
		font-size: 1.125rem;
	}
*/
	.benefits .benefits__body {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		-webkit-column-gap: 2.5rem;
		-moz-column-gap: 2.5rem;
		column-gap: 2.5rem;
	}

	.benefits .benefits__body h3 {
		/*		font-size: 2.625rem; */
		text-align: left;
	}

	.benefits .benefits__body .benefits__text {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		grid-row: 2/3;
	}

	.benefits .benefits__body button {
		-ms-grid-column: 1;
		grid-column: 1;
		margin-left: 0;
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		grid-row: 3/5;
	}

	.benefits .benefits__body .benefits__items {
		-ms-grid-column: 2;
		grid-column: 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 5;
		grid-row: 1/6;
	}

	.benefits__items {
		gap: 2.5rem;
	}

	.projects {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.projects.another-products {
		margin-bottom: 0;
	}

	.projects__container h2 {
		font-size: 1.5rem;
	}

	.projects__container .projects__slider:not(.swiper-initialized) .projects__wrapper {
		gap: 2.5rem;
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [3];
		grid-template-columns: repeat(3, minmax(18.125rem, 1fr));
	}

	.projects__container .projects__slide h3 {
		font-size: 1.125rem;
	}

	.project h3 {
		font-size: 1.125rem;
	}

	.contact-info--mb {
		margin-bottom: 7.5rem;
	}

	.contact-block > div h2,
	.contact-block > div h3 {
		font-size: 1.875rem; /*2rem*/
	}

	.contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
		font-size: 1.5rem;
	}
	/*
	.contact-block form p, .contact-block form .wpcf7-response-output {
		font-size: 1.125rem;
	}
*/

	.reviews--mb {
		margin-bottom: 7.5rem;
	}

	.reviews .reviews__container h2 {
		font-size: 1.5rem;
	}

	.reviews .reviews__container .reviews__slide img {
		margin-bottom: 1.25rem;
	}
	.reviews .reviews__container .reviews__slide .rounded-image img {
		width: 5rem;
		height: 5rem;
	}
	.reviews .reviews__container .reviews__slide .sized-image img {
		max-width: 10rem;
		max-height: 10rem;
		height: auto;
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.75rem;
	}
	/*
	.reviews .reviews__container .reviews__slide p {
		font-size: 1.125rem;
	}
*/

	.reviews .reviews__container .reviews__slide span {
		font-size: 0.875rem;
	}

	.news {
		margin-bottom: 5rem;
	}

	.news .news__container h2 {
		font-size: 1.5rem;
	}

	.new h3 {
		font-size: 1.5rem;
	}
	/*
	.new p {
		font-size: 1.125rem;
	}
*/
	.new .image-ibg {
		margin-left: 2.5rem;
	}

	.partners {
		margin-top: 4.375rem;
		margin-bottom: 4.375rem;
	}

	.partners .partners__container h2 {
		font-size: 1.5rem;
	}

	.contacts {
		padding: 3.125rem 0 4.375rem;
	}

	.contacts .contacts__container h2, .contacts .contacts__container .h2 {
		font-size: 1.5rem;
	}

	.contacts .contacts__container h2, .contacts .contacts__container .h2 {
		margin-bottom: 3rem;
	}

	.contacts .contacts__container ul {
		position: absolute;
		max-width: 28.75rem;
		left: 40px;
		bottom: 40px;
		z-index: 9999;
		padding: 1.875rem 1.25rem;
		background-color: rgba(255, 255, 255, 0.9);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		margin-bottom: 0;
	}

	.contacts .contacts__container ul li {
		font-size: 1.125rem;
	}

	.contacts .contacts__container ul li {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.contacts .contacts__container #map {
		height: 28.125rem;
	}

	.solution-preview__container--center h1 {
		font-size: 1.5rem;
	}

	.solution-description {
		margin-bottom: 2.5rem;
	}

	.solution-description .solution-description__container .solution-navigation {
		margin-right: 2.5rem;
	}

	.solution-description .solution-description__container div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.solution-description .solution-description__container div h2 {
		font-size: 1.875rem;
		margin-bottom: 2.5rem;
	}

	.solution-description .solution-description__container div h3 {
		font-size: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.solution-description .solution-description__container div p,
	.solution-description .solution-description__container div li {
		font-size: 1rem; /* 1.125rem; */
	}

	.solution-description .solution-description__container div p:not(:last-child),
	.solution-description .solution-description__container div ul:not(:last-child),
	.solution-description .solution-description__container div ol:not(:last-child) {
		margin-bottom: 2.1875rem;
	}

	.solution-navigation li > a,
	.solution-navigation li > span {
		font-size: 1.125rem;
	}

	.solution-item .solution-item__container {
		padding-top: 8.75rem;
	}

	.solution-about--mr.solution-about {
		margin-bottom: 5rem;
	}

	.solution-about {
		padding: 3.75rem 0;
		background-image: url("../img/benefits/bg.jpg") !important;
	}
	.solution-about h2 {
		color: var(--clr-blue);
	}
	.solution-about h2 {
		font-size: 2.25rem;
	}

	.solution-servicies--first.solution-servicies {
		margin-bottom: 1.25rem;
	}

	.solution-servicies {
		margin-bottom: 5rem;
	}

	.solution-servicies .solution-servicies__container h1,
	.solution-servicies .solution-servicies__container h2 {
		font-size: 1.5rem;
		margin-bottom: 3.125rem;
	}

	.solution-tabset {
		margin-bottom: 5rem;
	}

	.solution-tabset .solution-tabs nav button {
		font-size: 1rem;
		min-width: 8.375rem;
	}

	.solution-tabset .solution-tabset__content section h2 {
		margin-bottom: 3.75rem;
	}

  .solution-tabset .solution-tabset__content section .solution_inner {
    padding-top: 88px;
    padding-bottom: 129px;
  }

	.products {
		margin-bottom: 5.625rem;
		margin-top: 7.5rem;
	}

	.products .products__container a p {
		font-size: 1.5rem;
	}

	.products .products__container {
		row-gap: 7.5rem;
		-webkit-column-gap: 2.5rem;
		-moz-column-gap: 2.5rem;
		column-gap: 2.5rem;
	}

	.products .products__container a img {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
		margin-top: -5rem;
		border-radius: 14px;
	}

	.product-preview {
		margin-top: 7.5rem;
		margin-bottom: 7.5rem;
	}
	.product-preview:not(.onlytext) {
		margin-top: 4.8rem;
	}
	.breadcrumbs + .product-preview {
		margin-top: 0;
	}

	.product-preview .product-preview__slider {
		padding-bottom: 7.5rem;
	}

	.product-preview .product-preview__slide.swiper-slide-active {
		-webkit-transform: scale(1.2) translateY(3.75rem);
		-ms-transform: scale(1.2) translateY(3.75rem);
		transform: scale(1.2) translateY(3.75rem);
	}

	.product-preview .product-preview__slide img {
		border-radius: 14px;
	}

	.product-preview .product-preview__activities {
		margin-bottom: 3.75rem;
	}
	/*
	.product-preview p {
		font-size: 1.125rem;
	}
*/
	.documents {
		padding: 3.75rem 0;
	}

	.documents--no-bg {
		padding: 3.75rem 0 5rem;
	}

	.documents--search.documents .documents__container h2 {
		margin-bottom: 1.125rem;
	}

	.documents .documents__container h2 {
		font-size: 1.5rem;
	}

	.documents .documents__container h2 {
		margin-bottom: 3.75rem;
	}

	.desicion {
		margin-bottom: 5rem;
	}

	.desicion .desicion__container h2 {
		margin-bottom: 3.75rem;
	}

	.desicion .desicion__container article {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.desicion .desicion__container article div h3 {
		font-size: 1.5rem;
	}

	.desicion .desicion__container article div ul li {
		font-size: 1.125rem;
	}

	.desicion .desicion__image-ibg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 35rem;
		flex: 0 0 35rem;
	}

	.result {
		margin-bottom: 5rem;
	}

	.result .result__container h2 {
		font-size: 1.5rem;
	}

	.result .result__container h2 {
		margin-bottom: 3.75rem;
	}

	.result .result__container div {
		/*		font-size: 1.125rem; */
		line-height: 180%;
	}

	.another-products {
		padding: 3.75rem 0 5rem;
	}

	.another-products .another-products__container h2 {
		font-size: 1.5rem;
	}

	.another-products .another-products__container h2 {
		margin-bottom: 3.75rem;
	}

	.another-products .another-products__slider {
		padding-top: 6.25rem;
	}

	.another-products .another-products__slider--mini {
		padding-top: 0;
	}

	.another-products .another-products__slide a h3 {
		font-size: 1.125rem;
	}

	.another-products .another-products__slide a.product p {
		font-size: 1.5rem;
	}

	.another-products .another-products__slide a.product img {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
		margin-top: -5rem;
		border-radius: 14px;
	}

	.devices {
		margin-bottom: 5.625rem;
	}

	.devices .devices__container {
		gap: 2.5rem;
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [3];
		grid-template-columns: repeat(3, minmax(18.125rem, 1fr));
	}

	.item-devices h4 {
		font-size: 1.125rem;
	}

	.device {
		margin-bottom: 5rem;
	}

	.device .device__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.device .device__sliders:not(:last-child) {
		margin-right: 2.5rem;
		margin-bottom: 0;
	}

	.device .device__content h1 {
		font-size: 1.5rem;
	}

	.device .device__content h2 {
		font-size: 1.5rem;
	}
	/*
	.device .device__content p {
		font-size: 1.125rem;
	}

	.device .device__content ul li {
		font-size: 1.125rem;
	}
*/
	.chars {
		margin-bottom: 5rem;
	}

	.chars .chars__container h2 {
		font-size: 1.5rem;
	}

	.chars .chars__container h2 {
		margin-bottom: 3.75rem;
	}

	.chars .chars__container div h6 {
		font-size: 1rem;
		line-height: 1.6;
	}

	.chars .chars__container div span {
		font-size: 1rem;
		line-height: 1.6;
	}

	.chars .chars__container button {
		margin-top: 2.5rem;
	}

	.director {
		padding: 3.125rem 0 4.375rem;
		margin-bottom: 5rem;
	}

	.director .director__container h3 {
		font-size: 1.875rem; /* 1.5rem; */
	}

	.director .director__container h4 {
		font-size: 1.875rem; /* 1.5rem; */
	}

	.director .director__container p {
		/*
		font-size: 1rem;
		line-height: 1.6;
*/
		font-size: 1.125rem;
		line-height: 180%;
	}

	.all-projects {
		margin-bottom: 5rem;
	}

	.all-projects .all-projects__container h1 {
		font-size: 1.5rem;
	}

	.all-projects .all-projects__body {
		-ms-grid-columns: (minmax(18.125rem, 1fr)) [3];
		grid-template-columns: repeat(3, minmax(18.125rem, 1fr));
	}

	.description {
		margin-bottom: 7.5rem;
	}

	.press .description {
		margin-bottom: 0;
	}

	.description .description__container > ul > li:not(:last-child) {
		margin-bottom: 5rem;
	}

	.project-main {
		margin-bottom: 5rem;
	}

	.project-main .project-main__container h1 {
		font-size: 1.5rem;
	}

	.project-main .project-main__container p {
		font-size: 1.125rem;
	}

	.project-main .project-main__activities {
		margin-top: 2.5rem;
	}

	.all-reviews {
		margin-bottom: 7.5rem;
	}

	.reviews-block div h3 {
		font-size: 1.5rem;
	}

	.reviews-block div p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.reviews-block div span:last-of-type {
		font-size: 1rem;
		line-height: 1.6;
	}

	.reviews-block img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 21.25rem;
		flex: 0 0 21.25rem;
	}

	.reviews-block img:not(:last-child) {
		margin-right: 2.5rem;
	}

	.vacancies .vacancies__container h2 {
		font-size: 1.5rem;
	}

	.vacancies .vacancies__container h2 {
		margin-bottom: 3.75rem;
	}

	.vacancies .vacancies__container > p {
		font-size: 1rem;
		line-height: 180%;
	}

	.vacancies .vacancies__container > button {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.spollers-item > button {
		font-size: 1.25rem;
		line-height: 180%;
	}

	.spollers-item .spoller-body h4 {
		font-size: 1.125rem;
	}

	.spollers-item:not(:last-child) {
		margin-bottom: 2.5rem;
	}

	.company-info {
		margin-bottom: 7.5rem;
	}

	.company-info .company-info__container h3 {
		font-size: 1.5rem;
	}

	.company-info .company-info__container {
		-webkit-column-gap: 8.75rem;
		-moz-column-gap: 8.75rem;
		column-gap: 8.75rem;
	}

	.company-info .company-info__container h3:not(:last-child) {
		margin-bottom: 0.625rem;
	}

	.company-info .company-info__container div div:not(:last-child) {
		margin-bottom: 2.5rem;
	}

	.team {
		margin-bottom: 7.5rem;
	}

	.team .team__container h2 {
		font-size: 1.5rem;
	}

	.team .team__container h2 {
		margin-bottom: 3.75rem;
	}

	.team .team__container .team-card {
		width: 31%;
	}

	.team .team__container .team-card:not(:nth-child(2n)) {
		margin-right: 0;
	}

	.team .team__container .team-card:not(:nth-child(3n)) {
		margin-right: 3.5%;
	}

	.team-card h3 {
		font-size: 1.125rem;
	}

	.employe {
		margin-bottom: 7.5rem;
	}

	.employe .employe__container div h4 {
		font-size: 1.5rem;
	}

	.employe .employe__container h1 {
		font-size: 1.5rem;
	}

	.employe .employe__container h2 {
		font-size: 1.125rem;
	}

	.publication {
		margin-bottom: 7.5rem;
	}

	.publication .publication__container h2 {
		font-size: 1.5rem;
	}

	.publication .publication__container h2 {
		margin-bottom: 3.75rem;
	}

	.publication-card h3 {
		font-size: 1.5rem;
	}

	.all-news {
		margin-bottom: 7.5rem;
	}

	.all-news .all-news__container h2 {
		font-size: 1.5rem;
	}

	.all-news .all-news__container h2 {
		margin-bottom: 3.75rem;
	}

	.all-news .all-news__body {
		-ms-grid-columns: 16.25rem 1fr;
		grid-template-columns: 16.25rem 1fr;
		gap: 2.5rem;
	}

	.new-block div h3 {
		font-size: 1.25rem;
	}

	.new-block div p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.press {
		margin-bottom: 3.75rem;
	}
	.press + .news-slider {
		margin-top: 7.5rem;
	}
	/*
	.press + .documents {
		margin-bottom: 7.5rem;
	}
*/
	.press-item div h2 {
		font-size: 1.5rem;
	}

  .press-item div h3 {
		font-size: 1.3rem;
	}

	.press-item div p,
	.press-item div ul,
	.press-item div ol,
	.press-item div td,
	.press-item div th {
		font-size: 1rem;
		line-height: 1.6;
	}

	.news-slider {
		margin-bottom: 7.5rem;
	}

	.news-slider .news-slider__container h2 {
		font-size: 1.5rem;
	}

	.news-slider .news-slider__container h2 {
		margin-bottom: 3.75rem;
	}

	.about-benefits {
		padding: 3.75rem 0 7.5rem;
		margin-bottom: 0;
	}

	.about-benefits .about-benefits__container h2 {
		font-size: 1.5rem;
	}

	.about-benefits .about-benefits__container h2 {
		margin-bottom: 3.75rem;
	}

	.about-benefits .about-benefits__body li.bighead h3 {
		font-size: 1.5rem;
	}

	.standarts {
		margin-top: 7.5rem;
		margin-bottom: 7.5rem;
	}

	.standarts .standarts__container h2 {
		font-size: 1.5rem;
	}

	.standarts .standarts__container h2 {
		margin-bottom: 3.75rem;
	}

	.standarts .standarts__body {
		gap: 2.5rem;
	}

	.standarts .standarts__item h4 {
		font-size: 1.5rem; /* 1.375rem; */
	}

	.history {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}

	.history__container h2 {
		font-size: 1.5rem;
	}

	.history__container h2 {
		margin-bottom: 1.875rem;
	}
	/*
	.history .history-info__slide {
		font-size: 1.125rem;
	}
*/
	.history .history__text {
		font-size: 1rem;
		line-height: 1.6;
	}

	.header--background.header {
		padding: 0;
	}

	.header {
		padding-top: 0.625rem;
	}

	.header .header__logo:not(:last-child) {
		margin-right: 1rem; /*1.875rem;*/
	}

	.header .lang {
		display: none;
	}

	.header .lang:not(:last-child) {
		margin-bottom: 0;
	}

	.header .header__button {
		display: none;
	}

	.footer__container > div:first-child {
		margin-right: 3.75rem;
	}

	.footer__container .footer__logo img {
		width: 18.375rem;
		height: 1.375rem;
	}
}

@media (min-width: 61.99875em) and (any-hover: hover) {
	.menu .menu__body > ul > li ul li a:hover {
		color: #EF7A0E;;
	}
}

@media (any-hover: hover) and (min-width: 61.99875em) {
	.menu .menu__body > ul > li:hover > a,
	.menu .menu__body > ul > li:hover > span {
		color: #EF7A0E;;
	}
}

@media (min-width: 66.87375em) {
	.main-title {
		font-size: 1.75rem;
	}

	.certificates .certificates__container h2 {
		font-size: 1.75rem;
	}

	.about .about__container .about__description {
		font-size: 1.75rem;
	}

	.benefits h2 {
		font-size: 1.75rem;
	}

	.projects__container h2 {
		font-size: 1.75rem;
	}

	.reviews .reviews__container h2 {
		font-size: 1.75rem;
	}

	.news .news__container h2 {
		font-size: 1.75rem;
	}

	.partners .partners__container h2 {
		font-size: 1.75rem;
	}

	.contacts .contacts__container h2, .contacts .contacts__container .h2 {
		font-size: 1.75rem;
	}

	.solution-preview__container--center h1 {
		font-size: 1.75rem;
	}

	.solution-servicies .solution-servicies__container h1,
	.solution-servicies .solution-servicies__container h2 {
		font-size: 1.75rem;
	}

	.documents .documents__container h2 {
		font-size: 1.75rem;
	}

	.result .result__container h2 {
		font-size: 1.75rem;
	}

	.another-products .another-products__container h2 {
		font-size: 1.75rem;
	}

	.chars .chars__container h2 {
		font-size: 1.75rem;
	}

	.all-projects .all-projects__container h1 {
		font-size: 1.75rem;
	}

	.vacancies .vacancies__container h2 {
		font-size: 1.75rem;
	}

	.team .team__container h2 {
		font-size: 1.75rem;
	}

	.publication .publication__container h2 {
		font-size: 1.75rem;
	}

	.all-news .all-news__container h2 {
		font-size: 1.75rem;
	}

	.news-slider .news-slider__container h2 {
		font-size: 1.75rem;
	}

	.about-benefits .about-benefits__container h2 {
		font-size: 1.75rem;
	}

	.about-benefits .about-benefits__body li.bighead h3 {
		font-size: 1.75rem;
	}

	.standarts .standarts__container h2 {
		font-size: 1.75rem;
	}

	.history__container h2 {
		font-size: 1.75rem;
	}
}

@media (min-width: 73.12375em) {
	.container {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
	}

	.header .lang {
		display: block;
	}

	.header--home.header .lang .lang-item.current-lang, 
	.header--search .lang .lang-item.current-lang	{
		color: var(--clr-white);
	}

	.header--home.header .lang .lang-item.current-lang::after,
	.header--search .lang .lang-item.current-lang::after	{
		border-color: var(--clr-white);
	}
}

@media (min-width: 74.5em) {
	.popup__content h6 {
		font-size: 1rem;
		line-height: 180%;
	}

	.main-title {
		font-size: 2rem;
	}

	.certificates .certificates__container h2 {
		font-size: 2rem;
	}

	.purchase-item a {
		font-size: 1rem;
		line-height: 180%;
	}

	.purchase-item .purchase-item__description h6 {
		font-size: 1rem;
		line-height: 180%;
	}

	.purchase-item .purchase-item__date span:last-child {
		font-size: 1rem;
		line-height: 180%;
	}

	.industry {
		margin-bottom: 7.5rem;
	}

	.contact-info + .industry {
		margin-top: 7.5rem;
	}

	.hero + .industry {
		margin-bottom: 7.5rem;
	}

	.industry h2 {
		font-size: 1.975rem;
		line-height: 135%;
	}

	.industry--noslider {
		margin-bottom: 7.5rem;
	}

	.about,
	.vacancies {
		margin: 4.5rem 0;
	}

	.about .about__container .about__description {
		font-size: 2rem;
	}

	.about .about__titles h2 {
		font-size: 1.875rem;
		/*		line-height: 180%; */
	}

	.about .about__item p,
	.about .about__item li {
		font-size: 1rem; /* 1.125rem; */
		line-height: 180%;
	}

	.benefits {
		margin-bottom: 7.5rem;
		margin-top: 7.5rem;
	}

	.benefits h2 {
		font-size: 2.3rem;
		margin-bottom: 1.5rem;
	}

	/*
	.benefits .benefits__body h3 {
		font-size: 3.125rem;
	}
*/
	.projects {
		margin-top: 7.5rem;
		margin-bottom: 7.5rem;
	}
	projects another-products {
		margin-bottom: 0;
	}

	.projects__container h2 {
		font-size: 2rem;
	}

	.projects__container .projects__button-next {
		right: -0.5rem;
	}

	.projects__container .projects__button-prev {
		left: -0.5rem;
	}

  .contact-info {
    background-size: 100% 268px;
    background-position: left bottom;
		padding: 3.75rem 0 5rem;
  }

	.contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.contact-block > div h2,
	.contact-block > div h3 {
		margin-bottom: 1.875rem;
		font-size: 1.875rem; /*2.5rem;*/
		margin-top: -0.75rem;
		max-width: 66%;
        font-weight: 300;
	}

	.contact-block > div span {
		margin-bottom: 1.25rem;
	}

	.contact-block > div:not(.cf7sg-container):not(.wpcf7) a {
		font-size: 1.875rem;
	}

	.contact-block form,
	.contact-block > .wpcf7 {
		max-width: 34.75rem;
		margin-right: 0;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}

	.reviews {
		padding: 3.75rem 0 6.875rem;
	}

	.reviews .reviews__container .reviews__button-next,
	.product-preview .product-preview__container .reviews__button-next{
		right: -0.5rem;
	}

	.reviews .reviews__container .reviews__button-prev,
	.product-preview .product-preview__container .reviews__button-prev{
		left: -0.5rem;
	}

	.reviews .reviews__container h2 {
		font-size: 2rem;
	}

	.reviews .reviews__container .reviews__slide {
		padding: 2.5rem;
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.875rem;
		/*		line-height: 180%;*/
	}

	.reviews .reviews__container .reviews__slide h3 {
		font-size: 1.875rem;
		margin-bottom: 1.875rem;
	}

	.reviews .reviews__container .reviews__slide p {
		margin-bottom: 1.875rem;
	}

	.reviews .reviews__container .reviews__slide span {
		font-size: 1rem;
		line-height: 180%;
	}

	.reviews .reviews__container .reviews__slide span:not(:last-child) {
		margin-bottom: 1rem;
	}

	.news {
		padding: 3.75rem 0;
		margin-bottom: 7.5rem;
	}

	.news .news__container h2 {
		font-size: 2.25rem;
	}

	.new p {
		/*		font-size: 1.125rem; */
		line-height: 180%;
		margin-bottom: 1.875rem;
	}

	.partners {
		margin-top: 7.5rem;
		margin-bottom: 7.5rem;
	}

	.partners .partners__container h2 {
		font-size: 2rem;
	}

	.partners .partners__container h2 {
		margin-bottom: 3.75rem;
	}

	.contacts {
		padding: 3.75rem 0 6.875rem;
	}

	.contacts .contacts__container h2, .contacts .contacts__container .h2 {
		font-size: 2rem;
	}

	.contacts .contacts__container h2, .contacts .contacts__container .h2 {
		margin-bottom: 3.75rem;
	}

	.contacts .contacts__container #map {
		height: 37.5rem;
	}

	.solution-preview {
		font-size: 1.875rem;
		padding: 3.75em 0;
		display: flex;
		justify-content: flex-start;
	}

	.solution-preview__container {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.solution-preview__container--center {
		justify-content: center;
	}

	.solution-preview__container--center h1 {
		font-size: 2rem;
	}

	.solution-preview h1 {
		font-size: 1.875rem;
	}

	.solution-description {
		margin-bottom: 5rem;
	}

	.solution-description .solution-description__container div h2 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.solution-description .solution-description__container div h3 {
		font-size: 1.5rem;
		line-height: 180%;
		text-align: left;
	}

	.solution-description .solution-description__container div p,
	.solution-description .solution-description__container div li {
		font-size: 1rem; /* 1.125rem; */
		line-height: 180%;
	}

	.solution-navigation li > a,
	.solution-navigation li > span {
		font-size: 1.125rem;
	}

	.solution-item .solution-item__container div:not(.image-ibg) h2 {
		font-size: 1.875rem;
		line-height: 130%;
	}

	.solution-item .solution-item__container div:not(.image-ibg) p {
		font-size: 1rem;
		line-height: 180%;
	}

	.solution-about--mr.solution-about {
		margin-bottom: 9.375rem;
	}

	.solution-about {
		padding: 5rem 0;
	}

	.solution-about h2 {
		font-size: 2.5rem;
	}

	.solution-servicies--first.solution-servicies {
		margin-bottom: 1.25rem;
	}

	.solution-servicies {
		margin-bottom: 7.5rem;
	}

	.solution-servicies .solution-servicies__container h1,
	.solution-servicies .solution-servicies__container h2 {
		/*		font-size: 2rem; */
		margin-bottom: 3.75rem;
	}

	.solution-servicies .solution-servicies__container .solution-servicies__body {
		gap: 2.5rem;
	}

	.solution-tabset {
		margin-bottom: 7.5rem;
	}

	.solution-tabset .solution-tabset__content section h2 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.solution-tabset .solution-tabset__content section div div:not(.image-ibg) p,
	.solution-tabset .solution-tabset__content section div div:not(.image-ibg) li {
		font-size: 1rem;
		line-height: 180%;
	}

	.products {
		margin-bottom: 7.5rem;
	}

	.products .products__container a h3 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.product-preview .product-preview__slider {
		padding-bottom: 15.625rem;
	}

	.product-preview .product-preview__slide.swiper-slide-active {
		-webkit-transform: scale(2) translateY(3.75rem);
		-ms-transform: scale(2) translateY(3.75rem);
		transform: scale(2) translateY(3.75rem);
	}

	.documents .documents__container h2 {
		font-size: 2rem;
	}

	.documents .documents__container > div div h6 {
		font-size: 1rem;
		line-height: 180%;
	}

	.documents .documents__container > div a {
		font-size: 1rem;
		line-height: 180%;
	}

	.desicion {
		margin-bottom: 7.5rem;
	}

	.desicion .desicion__container h2 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.result {
		margin-bottom: 7.5rem;
	}

	.result .result__container h2 {
		font-size: 2rem;
	}

	.another-products {
		padding: 3.75rem 0 7.5rem;
	}

	.another-products .another-products__container h2 {
		font-size: 2rem;
	}

	.another-products .another-products__slide a.product h3 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.devices {
		margin-bottom: 7.5rem;
	}

	.device {
		margin-bottom: 7.5rem;
	}

	.chars {
		margin-bottom: 7.5rem;
	}

	.chars .chars__container h2 {
		font-size: 2rem;
	}

	.director {
		padding: 3.75rem 5rem;
		margin-bottom: 7.5rem;
	}

	.director .director__container h5 {
		font-size: 1.125rem;
	}

	.all-projects {
		margin-bottom: 7.5rem;
	}

	.all-projects .all-projects__container h1 {
		font-size: 2rem;
	}

	.description .description__container > ul > li > h2 {
		font-size: 1.875rem;
	}
	/*
	.description .description__container > ul > li p,
	.description .description__container > ul > li li {
		font-size: 1.125rem;
		line-height: 180%;
	}
*/
	.description .description__container > ul > li h3 {
		font-size: 1.5rem;
	}

	.project-main .project-main__button-prev {
		left: -1.5rem;
	}

	.project-main .project-main__button-next {
		right: -1.5rem;
	}

	.reviews-block div span {
		font-size: 1rem;
		line-height: 180%;
	}

	.vacancies .vacancies__container h2 {
		font-size: 2rem;
	}

	.spollers-item .spoller-body {
		gap: 3.125rem;
	}

	.company-info .company-info__container p {
		/*		font-size: 1.125rem; */
		line-height: 180%;
	}

	.team .team__container h2 {
		font-size: 2rem;
	}

	.team-card a {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.employe .employe__container div a {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.employe .employe__container p {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.publication .publication__container h2 {
		font-size: 2rem;
	}

	.publication-card p {
		font-size: 1.125rem;
		line-height: 180%;
	}

	.all-news .all-news__container h2 {
		font-size: 2rem;
	}

	.press .press__container h1 {
		font-size: 1.875rem;
		line-height: 180%;
	}

	.news-slider .news-slider__container h2 {
		font-size: 2rem;
	}

	.about-benefits .about-benefits__container h2 {
		font-size: 2rem;
	}

	.about-benefits .about-benefits__body li.bighead h3 {
		font-size: 1.75rem;
	}

	.about-benefits .about-benefits__body li p {
		font-size: 1rem;
		line-height: 180%;
	}

	.standarts .standarts__container h2 {
		font-size: 2rem;
	}

	.history {
		margin-top: 7.5rem;
		margin-bottom: 7.5rem;
	}

	.history__container h2 {
		font-size: 2rem;
	}

	.footer__container > div:first-child {
		margin-right: 6.25rem;
	}

	.copyright div {
		padding: 1.875rem 0 1.25rem;
	}
}

@media (min-width: 74.99875em) {
	.header .header__button {
		display: inline-block;
		margin-left: auto;
	}

}

@media (min-width: 85.37375em) {
	.hero .hero__container h1 span:first-of-type {
		font-weight: 400;
		font-size: 2.5rem;
		line-height: 140%;
	}

	.hero .hero__container h1 span:last-of-type {
		font-size: 3.25rem;
	}
}


	.menu .menu__body > ul > li:hover > ul {
		visibility: visible;
		pointer-events: all;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

@media (any-hover: hover) {
	.select__option:hover {
		background-color: var(--clr-superlight-blue);
	}

	.footer .select__option:hover,
	.header--background .select__option:hover {
		background-color: var(--clr-blue);
		color: var(--clr-white);
	}

	.select__option:active,
	.select__option:link {
		background: var(--clr-blue);
		color: var(--clr-white);
	}

	.cta:hover {
		background-color: var(--clr-blue);
	}
	.cta:disabled:hover {
		background-color: #ccc;
	}
	.cta--stroke:hover {
    color: var(--clr-white);
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: var(--clr-white);
	}

	.slider-activities a:hover {
		color: var(--clr-blue);
	}

	.slider-activities a:hover svg {
		fill: var(--clr-blue);
	}

	.slider-activities--light a:hover {
		color: var(--clr-white);
	}

	.slider-activities--light a:hover svg {
		fill: var(--clr-white);
	}


	.breadcrumbs ul li a:hover {
		color: var(--clr-black);
	}

	.pagination ul li .page-numbers:hover {
		background-color: var(--clr-light-blue);
		color: var(--clr-white);
	}

	.response-form .response-form__activities label[for="summary"]:hover,
	.response-form .response-form__activities label a:hover {
		color: var(--clr-blue);
	}

	.response-form input:hover,
	.response-form textarea:hover {
		-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
		box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	}

	.search label:hover svg {
		stroke: var(--clr-blue);
	}

	.purchase-item:hover {
		background-color: var(--clr-superlight-blue);
	}

	.purchase-item a:hover {
		color: var(--clr-blue);
	}

	.purchase-form .purchase-form__activities label[for="summary"]:hover,
	.purchase-form .purchase-form__activities label a:hover {
		color: var(--clr-blue);
	}

	.purchase-form input:not(.cta):hover,
	.purchase-form textarea:hover {
		-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
		box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	}

	.industry-card:hover,
	.industry-card:focus {
		outline: none;
		height: 14.375rem;
	}
	.hero + .industry .industry-card:hover,
	.hero + .industry .industry-card:focus {
		transform: translateY(-25%);
	}

	.industry-card:hover::after,
	.industry-card:focus::after {
		opacity: 0;
	}

	.industry-card:hover div,
	.industry-card:focus div {
		height: 9.6875rem;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 9.6875rem;
		flex: 0 0 9.6875rem;
	}

	.industry-card:hover span,
	.industry-card:focus span {
		opacity: 1;
	}

	.industry-card:hover h4,
	.industry-card:focus h4 {
		opacity: 0;
	}

	.contact-block > div a:hover {
		color: #EF7A0E;
	}

	.contact-block form input:not(.cta):hover {
		-webkit-box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
		box-shadow: 3px 3px 6px rgba(10, 69, 157, 0.1);
	}

	.solution-navigation li > a:hover,
	.solution-navigation li > span:hover {
		color: var(--clr-blue);
		font-weight: 500;
	}

	.solution-navigation li > a:hover::before,
	.solution-navigation li > span:hover::before {
		opacity: 1;
	}

	.solution-servicies .solution-servicies__container .solution-servicies__body a:hover {
		background-color: var(--clr-orange);
	}

	.solution-servicies .solution-servicies__container .solution-servicies__body a:hover span {
		color: var(--clr-white);
	}

	.solution-tabset .solution-tabs nav button:hover {
		background-color: var(--clr-light-blue);
		color: var(--clr-white);
	}

	.products .products__container a:hover {
		-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
		box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	}

	.products .products__container a:hover img {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	.products .products__container a:hover span {
		background-color: var(--clr-blue);
		color: var(--clr-white);
	}

	.documents .documents__container > div:hover {
		background-color: rgba(255, 255, 255, 0.8);
	}

	.documents .documents__container > div a:hover {
		color: var(--clr-blue);
	}

	.another-products .another-products__slide a.product:hover {
		-webkit-box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
		box-shadow: 4px 5px 30px rgba(8, 31, 90, 0.12);
	}

	.another-products .another-products__slide a.product:hover img {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	.another-products .another-products__slide a.product:hover span {
		background-color: var(--clr-blue);
		color: var(--clr-white);
	}

	.chars .chars__container div:hover {
		background-color: var(--clr-superlight-blue);
	}

	.all-projects .all-projects__container nav button:hover {
		background-color: var(--clr-light-blue);
		color: var(--clr-white);
	}

	.spollers-item > button:hover {
		background-color: var(--clr-superlight-blue);
	}

	.publication .publication__container > div a:hover {
		color: var(--clr-blue);
	}

	.publication .publication__container > div a:hover svg {
		fill: var(--clr-blue);
	}

	.new-block:hover {
		background-color: var(--clr-superlight-blue);
	}

	.standarts .standarts__item a:hover {
		color: var(--clr-almost-dark);
	}

	.header--background .menu .menu__body > ul > li > a:hover,
	.header--background .menu .menu__body > ul > li:hover > span,
	.header--background .menu .menu__body > ul > li.active > span {
		background-color: var(--clr-white);
		color: var(--clr-blue);
		border-color: var(--clr-blue);
	}
}

nav ul li > span {
	cursor: default;
}

.cookietab {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90000;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--clr-white);
	text-shadow: 1px 1px 0 #000;
	font-family: var(--ff-main);
	font-size: 1rem;
	line-height: 140%;
}
.cookietab > div {
	max-width: 72.5rem;
	width: 100%;
	margin: 0 auto;
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cookietab > div p {
	margin-right: 30px;
}
.cookietab > div p a {
	text-decoration: underline;
}
.cookietab > div button {
	padding: 0.65rem 1.25rem;
	color: #000;
	border: 0;
	background-color: rgba(255, 255, 255, 0.7);
}
.cookietab > div button:hover {
	color: var(--clr-white);
}
.screen-reader-response,
.wpcf7-spinner {
	display: none;
}
.wpcf7-acceptance label {
	display: block;
	position: relative;
	text-align: left;
}
.wpcf7-acceptance label input:not(.cta) {
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	top: 0.2rem;
}
.wpcf7-acceptance label span {
	display: block;
	padding-left: 1.5rem;
	line-height: 1.3;
}
.response-form__activities .wpcf7-acceptance label,
purchase-form__activities .wpcf7-acceptance label {
	margin: 1rem 0;
}

/*new-e-styles*/
/*e-footer*/
.e-footer__container .e-footer__final-col {
	max-width: 240px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 30px;
}
.e-footer__container .e-footer__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}
.e-footer__container .e-footer__button {
	margin: 0;
	margin-bottom: 10px;
}
.e-footer__container .e-footer__adr {
	color: #fff;
	text-align: right;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.21px;
}
.e-footer__container .e-footer__phone {
	text-align: right;
}
.e-footer__container .e-footer__phone a {
	display: inline;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.21px;
	margin: 0;
	padding: 0;
	text-align: right;
}
.e-footer__container .e-footer__time {
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.18px;
	text-transform: lowercase;
	text-align: right;
}
.e-footer__container .e-footer__email {
	text-align: right;
}
.e-footer__container .e-footer__email a {
	display: inline;
	color: #fff;
	text-align: right;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.21px;
	margin: 0;
	padding: 0;
}
.e-copyright div:first-child {
	text-align: left;
}
.e-copyright div:last-child {
	text-align: right;
}
@media screen and (max-width: 1024px) {
	.e-footer__container {
		flex-wrap: wrap;
	}
	.e-footer__container .e-footer__final-col {
		width: 100%;
		max-width: 100%;
		min-width: 0 !important;
		margin-top: 30px;
		gap: 20px;
	}
	.e-footer__container .e-footer__contacts {
		gap: 20px 30px;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
	.e-footer__container .e-footer__button {
		margin-bottom: 0;
	}
	.e-footer__container .e-footer__phone {
		flex-shrink: 0;
		max-width: 100%;
		min-width: 0 !important;
	}
	.e-footer__container .e-footer__email {
		flex-shrink: 0;
		max-width: 100%;
		min-width: 0 !important;
	}
}
@media screen and (max-width: 767px) {
	.e-footer__container .language {
		visibility: visible;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
	}
	.e-footer__container .e-footer__contacts {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 20px;
	}
	.e-footer__container .e-footer__adr {
		text-align: center;
	}
	.e-footer__container .e-footer__phone {
		text-align: center;
	}
	.e-footer__container .e-footer__phone a {
		text-align: center;
	}
	.e-footer__container .e-footer__time {
		text-align: center;
	}
	.e-footer__container .e-footer__email {
		text-align: center;
	}
	.e-footer__container .e-footer__email a {
		text-align: center;
	}
	.e-footer__container .e-footer__final-col {
		align-items: center;
	}
}
@media screen and (max-width: 479px) {
	.e-copyright div:first-child {
		text-align: center;
	}
	.e-copyright div:last-child {
		text-align: center;
	}
}

/*e-header-menu*/
@media screen and (min-width: 992px) {
	.e-slider-header .e-header__menu .e-contacts__body {
		padding-bottom: 10px;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul {
		gap: 37px;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > a {
		border-radius: 5px;
		padding: 10px 10px;
		border: none !important;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li:hover > a {
	/* 	background: rgba(173, 173, 173, 0.3); */
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > span {
		position: relative;
		border-radius: 5px;
		padding: 10px 12px 10px 0;
		border: none !important;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li:hover > span {
		background-color: transparent;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > span.hdr:before,
  .e-slider-header .e-header__menu .e-menu__body > ul > li > a.hdr:before	{
		content: "";
		pointer-events: none;
		position: absolute;
    right: calc(50% - 10px);
    top: 33px;
		width: 39px;
		height: 19px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		background-image: url(../img/icons/e-menu-triangle.svg);
		opacity: 0;
		transform: translateY(1.25rem);
		transition: all 0.32s ease-in-out;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li:hover > span.hdr:before,
  .e-slider-header .e-header__menu .e-menu__body > ul > li:hover > a.hdr:before	{
		transform: translateY(0);
		opacity: 0.5;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > span.hdr:after,
  .e-slider-header .e-header__menu .e-menu__body > ul > li > a.hdr:after	{
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 7px;
		height: 4px;
		margin-left: 5px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		background-image: url(../img/icons/e-menu-arrow.svg);
		transition: all 0.32s ease-in-out;
		transform: rotate(0);
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li:hover > span.hdr:after,
  .e-slider-header .e-header__menu .e-menu__body > ul > li:hover > a.hdr:after	{
		transform: rotate(-180deg);
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > ul {
		background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
		border: none;
		box-shadow: none;
		top: 100%;
		padding: 17px 17px;
		border-radius: 3px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
		width: max-content;
    max-width: 370px;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > ul > li > a {
		color: #d3e3fb;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		padding: 0;
		background-color: transparent !important;
		transition: all 0.32s ease-in-out;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > ul > li.active > span {
		color: #fff;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		padding: 0;
		background-color: transparent !important;
		transition: all 0.32s ease-in-out;
	}
	.e-slider-header .e-header__menu .e-menu__body > ul > li > ul > li > a:hover {
		color: #fff;
	}

	.e-slider-header .e-header__menu .e-menu__body > ul > li.active > span:not(.hdr) {
		/* background: rgba(173, 173, 173, 0.3); */
		color: #EF7A0E;
	}

	.e-color-header {
		padding: 15px 0 !important;
	}
	.e-color-header .e-header__menu .e-contacts__body {
		padding-bottom: 10px;
	}

	.e-color-header .e-header__menu .e-menu__body > ul {
		gap: 37px;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > a {
		border-radius: 5px;
		padding: 10px 12px 10px 0;
		border: none !important;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > a {
		/* background: rgba(173, 173, 173, 0.3); */
		color: #EF7A0E;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > span {
		position: relative;
		border-radius: 5px;
		padding: 10px 12px 10px 0;
		border: none !important;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > span {
		background-color: transparent;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > span.hdr:before,
  .e-color-header .e-header__menu .e-menu__body > ul > li > a.hdr:before	{
		content: "";
		pointer-events: none;
		position: absolute;
    right: calc(50% - 10px);
    top: 33px;
		width: 39px;
		height: 19px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		background-image: url(../img/icons/e-menu-triangle.svg);
		opacity: 0;
		transform: translateY(1.25rem);
		transition: all 0.32s ease-in-out;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > span.hdr:before,
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > a.hdr:before 	{
		transform: translateY(0);
		opacity: 0.8;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > span.hdr:after,
	.e-color-header .e-header__menu .e-menu__body > ul > li > a.hdr:after	{
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 7px;
		height: 4px;
		margin-left: 5px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		background-image: url(../img/icons/e-menu-arrow-bl.svg);
		transition: all 0.32s ease-in-out;
		transform: rotate(0);
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > span.hdr:after,
	.e-color-header .e-header__menu .e-menu__body > ul > li:hover > a.hdr:after	{
		transform: rotate(-180deg);
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > ul {
		background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
		border: none;
		box-shadow: none;
		top: 100%;
		padding: 17px 17px;
		border-radius: 3px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > ul > li > a {
		color: #d3e3fb;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		padding: 0;
		background-color: transparent !important;
		transition: all 0.32s ease-in-out;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > ul > li.active > span {
		color: #fff;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		padding: 0;
		background-color: transparent !important;
		transition: all 0.32s ease-in-out;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li > ul > li > a:hover {
		color: #fff;
	}
	.e-color-header .e-header__menu .e-menu__body > ul > li.active > span:not(.hdr) {
		/* background: rgba(173, 173, 173, 0.3); */
		color: #EF7A0E;
	}
}

/*e-slider*/
.e-slider {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	min-height: 100vh;
	overflow: hidden;
	padding-top: 300px;
	padding-bottom: 80px;
	margin-bottom: 7.5rem;
}

.e-slider .e-slider__bgs {
	pointer-events: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	display: block;
}
.e-slider .e-slider__bgs:after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	display: block;
	background: linear-gradient(71deg, #025483 11.46%, rgba(16, 115, 180, 0.00) 69%);
}
.e-slider .e-slider__bgs .swiper {
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	height: 100%;
	max-height: 100%;
}
.e-slider .e-slider__bgs .swiper-wrapper {
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	height: 100%;
	max-height: 100%;
}
.e-slider .e-slider__bgs .e-slider__bgs-slide {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	height: 100%;
	max-height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.e-slider .e-slider__container {
	position: relative;
	z-index: 3;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.e-slider .e-slider__container .e-slider__title {
  display: block;
  min-width: 0 !important;
  color: #fff;
  font-size: 44px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
  font-family: var(--ff-sec);
  letter-spacing: 0.88px;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.e-slider .e-slider__container .e-slider__title strong {
	font-weight: 600;
}
.e-slider .e-slider__container .e-slider__main {
	display: block;
	position: relative;
	z-index: 3;
	padding-left: 50px;
	padding-bottom: 50px;
	margin-top: auto;
}
.e-slider .e-slider__container .e-slider__main:before {
	content: "";
	position: absolute;
	z-index: 4;
	top: -18px;
	left: -30px;
	display: block;
	width: 70px;
	height: 70px;
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/icons/e-slider-ellips.svg);
	pointer-events: none;
}
.e-slider .e-slider__container .e-slider__main:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 2px;
	z-index: 3;
	width: 1px;
	height: 95%;
	overflow: hidden;
	pointer-events: none;
	background-color: #fff;
}
.e-slider .e-slider__container .e-slider__main .swiper {
	display: block;
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
}
.e-slider .e-slider__container .e-slider__main .swiper-wrapper {
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
}
.e-slider .e-slider__container .e-slider__main-slide {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
}
.e-slider .e-slider__container .e-slider__main-title {
	display: block;
	width: 100%;
	max-width: 600px;
	min-width: 0 !important;
	color: #fff;
	font-family: var(--ff-sec);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.48px;
	text-transform: uppercase;
}
.e-slider .e-slider__container .e-slider__main-title a {
	display: inline;
	color: #fff;
	font-family: var(--ff-sec);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.48px;
	text-transform: uppercase;
	transition: all 0.32s ease-in-out;
}
.e-slider .e-slider__container .e-slider__main-title a:hover {
	color: #e5680d;
}
.e-slider .e-slider__container .e-slider__main-text {
	display: block;
	width: 100%;
	max-width: 600px;
	min-width: 0 !important;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.4px;
	margin-top: 15px;
}
.e-slider .e-slider__container .e-slider__main .swiper-button-prev {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 40px;
	max-width: 100%;
	min-width: 0 !important;
	overflow: hidden;
	border-radius: 5px;
	background-color: transparent;
	border: 1px solid #fff;
	transition: all 0.32s ease-in-out;
	background-size: 10px auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/icons/e-slider-arrow-left.svg);
	margin-right: 15px;
	margin-top: 50px;
	cursor: pointer;
}
.e-slider .e-slider__container .e-slider__main .swiper-button-prev:hover {
	border: 1px solid #e5680d;
	background-color: #e5680d;
}
.e-slider .e-slider__container .e-slider__main .swiper-button-next {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 40px;
	max-width: 100%;
	min-width: 0 !important;
	overflow: hidden;
	border-radius: 5px;
	background-color: transparent;
	border: 1px solid #fff;
	transition: all 0.32s ease-in-out;
	background-size: 10px auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/icons/e-slider-arrow-right.svg);
	margin-top: 50px;
	cursor: pointer;
}
.e-slider .e-slider__container .e-slider__main .swiper-button-next:hover {
	border: 1px solid #e5680d;
	background-color: #e5680d;
}

.e-slider .e-slider__thumbs {
	border-top: 1px solid #fff;
	position: relative;
	z-index: 6;
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-wrapper {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	padding-left: 40px;
	position: relative;
	z-index: 6;
	top: -7px;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-container .swiper {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
  max-height: 77px;															 	
}
.e-slider .e-slider__thumbs .e-slider__thumbs-container .swiper-wrapper {
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-slide {
	display: block;
	position: relative;
	z-index: 6;
	width: 100%;
	max-width: 100%;
	min-width: 0 !important;
	padding-top: 35px;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-slide:before {
	content: "";
	position: absolute;
	z-index: 7;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #fff;
	pointer-events: none;
	transition: all 0.32s ease-in-out;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-text {
	display: block;
	width: 100%;
	max-width: 190px;
	min-width: 0 !important;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.32px;
	cursor: pointer;
	transition: all 0.32s ease-in-out;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-text:hover {
	color: #e5680d;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-slide.swiper-slide-thumb-active:before {
	background-color: #e5680d;
}
.e-slider .e-slider__thumbs .e-slider__thumbs-slide.swiper-slide-thumb-active .e-slider__thumbs-text {
	color: #e5680d;
}

@media screen and (max-width: 1400px) {
	.e-slider {
		padding-top: 200px;
	}
}
@media screen and (max-width: 1024px) {
	.e-slider {
		padding-top: 180px;
		padding-bottom: 60px;
	}
	.e-slider .e-slider__container .e-slider__title {
		font-size: 48px;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 767px) {
	.e-slider {
		margin-bottom: 5.625rem;
		padding-top: 120px;
		padding-bottom: 50px;
	}
	.e-slider .e-slider__container .e-slider__title {
		font-size: 28px;
		margin-bottom: 50px;
	}
	.e-slider .e-slider__container .e-slider__main {
		padding-left: 0;
		padding-bottom: 40px;
	}
	.e-slider .e-slider__container .e-slider__main:before {
		display: none;
	}
	.e-slider .e-slider__container .e-slider__main:after {
		display: none;
	}
	.e-slider .e-slider__container .e-slider__main-title {
		font-size: 20px;
	}
	.e-slider .e-slider__container .e-slider__main-title a {
		font-size: 20px;
	}
	.e-slider .e-slider__container .e-slider__main-text {
		font-size: 16px;
		margin-top: 15px;
	}
	.e-slider .e-slider__container .e-slider__main .swiper-button-prev {
		margin-top: 40px;
	}
	.e-slider .e-slider__container .e-slider__main .swiper-button-next {
		margin-top: 40px;
	}
	.e-slider .e-slider__thumbs .e-slider__thumbs-wrapper {
		padding-left: 0;
	}
	.e-slider .e-slider__thumbs .e-slider__thumbs-text {
		font-size: 14px;
	}
}
/*new-e-styles*/

/* Никита Матеюк 21.11.23 */

.solution-servicies--first.solution-servicies {
	position: relative;
	padding-top: 190px;
}

.solution-preview--product {
	padding-top: 200px;
}

.solution-servicies--first.solution-servicies::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(72deg, #01517ddb 0%, #01517d69 100%);
}

.solution-servicies--first.solution-servicies > .container {
	position: relative;
	z-index: 2;
}

.solution-servicies .solution-servicies__container .solution-servicies__body a {
	gap: 30px;
	padding: 28px 34px;

	border-radius: 10px;
	background: linear-gradient(305deg, #fff -6.97%, rgba(255, 255, 255, 0) 105.99%);

	box-shadow: 4px 4px 25px 0px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
}

.solution-servicies .solution-servicies__container .solution-servicies__body a:last-child:nth-child(4),
.solution-servicies .solution-servicies__container .solution-servicies__body a:last-child:nth-child(7),
.solution-servicies .solution-servicies__container .solution-servicies__body a:last-child:nth-child(10) {
  /* временное решение */
  grid-column: 2 / 3;
}

.solution-servicies .solution-servicies__container .solution-servicies__body a svg {
	width: 50px;
	height: 50px;
	margin-right: 0;
	transform: rotate(-10deg);
}

.section-title-c {
	display: block;
	min-width: 0 !important;
	color: #fff;
	font-size: 40px !important;
	font-style: normal;
	font-weight: 300 !important;
	line-height: 1.2;
	font-family: var(--ff-sec);
	letter-spacing: 1.28px;
	text-transform: uppercase;
	margin-bottom: 80px;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left !important;
}

.section-title-c strong {
	font-weight: 600;
}

@media (min-width: 74.5em) {
	.solution-servicies .solution-servicies__container .solution-servicies__body {
		gap: 20px;
	}
}

/* Никита Матеюк 21.11.23 */

.collapse:not(.collapse_show) {
  display: none;
}

section ul a:link:not([class]),
section ul a:visited:not([class]),
section .press-item a:link:not([class]),
section .press-item a:visited:not([class]) {
	color: var(--clr-light-blue);
}
section ul a:link:hover:not([class]),
section ul a:visited:hover:not([class]),
section .press-item a:link:hover:not([class]),
section .press-item a:visited:hover:not([class]) {
	color: var(--clr-blue);
}
@media (max-width: 971px) {
	.solution-description .solution-description__container .solution-navigation {
		display: block;
	}
}
@media (max-width: 971px) {
	.not-found__container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.not-found__container h1 {
		font-size: 120px;
	}
	.not-found__container span {
		font-size: 22px;
	}
	.contact-info {
		padding-bottom: 0;
	}
	.reviews__slide__footer .cta--stroke {
		margin-top: 20px;
		font-size: 13px;
	}
}

@media (max-width: 380px) {
	.partners .partners__container > div {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Adaptiv fix */
@media (max-width: 1150px) {
	section.description > .container.description__container > ul > li > h2 {
		flex: 1;
	}
	section.description > .container.description__container > ul > li div {
		flex: 2;
		overflow: scroll;
	}
	.description .description__container > ul > li a {
		white-space: unset;
		width: 100%;
	}
	.reviews .reviews__container .reviews__button-next, .product-preview .product-preview__container .reviews__button-next{
		right: 0.5rem;
	}
	.reviews .reviews__container .reviews__button-prev, .product-preview .product-preview__container .reviews__button-prev {
		left: 0.5rem;
	}
}
@media (max-width: 640px) {
	section.news article > .image-ibg {
		display: flex;
		justify-content: center;
	}
	.new [class*="-ibg"] img {
		left: unset;
		right: unset;
	}
	.scroll-top {
		bottom: 5vh;
	}
	.e-slider .e-slider__container .e-slider__title {
		font-size: 32px!important;
	}
}
@media (max-width: 450px) {
	main > .solution-preview {
		min-height: unset;
	}
	main > div.solution-preview h1.section-title-c {
		font-size: unset!important;		
	}
	.product-preview h2 {
		font-size: unset;
	}
	.e-slider .e-slider__container .e-slider__title {
		font-size: 24px!important;
	}

}
/* /Adaptiv fix */


h1.page__title-new {
    font-family: var(--ff-sec);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--clr-blue);
    font-size: 1.25rem;
    max-width: 35rem;
    margin: 0 auto;
    text-align: center;
    color: var(--clr-blue-gray);
    font-size: 2rem;
    margin-bottom: 3.75rem;
}		
h1.about__title-new {
    max-width: 60rem;
    margin: 0 auto;
    font-family: var(--ff-sec);
    font-weight: 600;
    line-height: 135%;
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: var(--clr-blue);
		font-size: 1.875rem;
}		
h1.reviews__title-new {
    font-family: var(--ff-sec);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-size: 2rem;
    text-align: center;
    color: var(--clr-white);
    margin-bottom: 2rem;
}
h1.services__title-new {
    max-width: 60rem;
    margin: 0 auto;
    font-family: var(--ff-sec);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--clr-blue);
    text-align: center;
		margin-bottom: 1.75rem;
		font-size: 1.875rem;
    line-height: 180%;
}

.product-preview.onlytext ul li{
	list-style: disc;
}


/*********** PRODUCTS   *****************/
.o_products {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}
.o_products_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
		
}
.o_product_item_wrap {
    padding: 20px;
    height: 100%;
}
.o_product_item {
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    background: #FFF;
    min-height: 452px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
		box-shadow: 2px 4px 25px 0px rgba(0, 0, 0, 0.20);
		height: 100%;
}
.o_product_img {
    height: 196px;
    overflow: hidden;
    border-radius: 15px;
    max-width: 100%;
    flex: 0 0 196px;
		width: 100%;
}
.o_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.o_product_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    width: 100%;		
}
.o_product_text h3, .another-products .another-products__slide a .o_product_text h3 {
    color: #002A99;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 146%;
    letter-spacing: 0.36px;
}
.another-products .another-products__slide a.o_product_item  {
    height: 100%;
		min-height: auto;
}
.o_another_products {
    padding-bottom: 100px;
}
.another-products__slider {
    margin-left: -20px;
    margin-right: -20px;
}
.o_another_products .swiper-wrapper {
    margin-left:-20px;
		margin-right:-20px;
}
.o_product_text p {
    color: var(--03050-f, #03050F);
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.32px;
    margin-top: 8px;
}
.o_cta {
    background: var(--clr-blue);
		border-radius: 10px;		
}
.o_cta:hover {
    background: var(--clr-orange); 
}
.industry .industry__slider .projects__button.button-initialized:hover{
		background: #002A99;
}

@media (max-width: 1023.9px) {
    .o_products_container {
    grid-template-columns: repeat(2, 1fr);		
	}
}
@media (max-width: 767.9px) {
    .o_products_container {
    grid-template-columns: repeat(1, 1fr);
		
	}
}
/*********** //PRODUCTS   *****************/
/*********** SINGLE-PRODUCTS   *****************/
.about .about__container .o_about_description {
     font-size: 30px;
}
.o_product_preview_slide.swiper-slide {
    width: 30%;
    overflow: hidden;
    height: 218px;
		border-radius: 30px;
		border: 1px solid #DFDFDF;
}
.o_product_preview_slide.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container.o_product_preview_container {
    position: relative;
}
.product-preview__slider.swiper.o_product_preview_slider {
    padding-bottom: 0;
}
.product-preview  .o_product_preview_container .product-preview__slider::before{
		background: none;
}
.product-preview h2.o_big_title, .about-benefits__container h2.o_big_title, .another-products__container  h2.o_big_title {
    color: var(--002-a-99, #002A99);
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.72px;
    text-align: left;
    margin: 0 0 42px;
}
.another-products__container h2.o_big_title {
  color: #FFF;
  font-size: 36px;
}
.o_big_title strong {
	  display: block;
}

.result  .result__container .o_title, .about .about__item .o_title{
    margin: 0 0 50px;
    text-align: left;
    padding: 0;
		font-size: 30px;
}
.o_title, .about .about__item .o_title{
    color: #002A99;
}
.o_product_preview_wrapper {
		position: relative;
}

.product-preview .o_product_preview_container .reviews__button-next {
		right: -1.2rem;
    filter: drop-shadow(2px 4px 25px rgba(0, 0, 0, 0.20));
    width: 39px; 
    height: 39px;
    border-radius: 9px !important;
    stroke: #002A99;		
		filter: drop-shadow(2px 4px 25px rgba(0, 0, 0, 0.20));
}


.product-preview .o_product_preview_container .reviews__button-prev {
		left: -1.2rem;
		filter: drop-shadow(2px 4px 25px rgba(0, 0, 0, 0.20));
    width: 39px;
    height: 39px;
    border-radius: 9px !important;	
    stroke: #002A99;	
		filter: drop-shadow(2px 4px 25px rgba(0, 0, 0, 0.20));		
}
.about-benefits .about-benefits__body li {
    border-radius: 10px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 2px 4px 25px 0px rgba(0, 0, 0, 0.20);
}
.about-benefits .about-benefits__body li h3 {
    line-height: normal;
    text-align: left;
}
.about-benefits .about-benefits__body li p {
    text-align: left;
}
.about-benefits {
	  background: none;
}
.doc-item__icon {
    align-items: center !important;
}
.documents .documents__container > div div span.o_file_description {
    color: #03050F;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.32px;
}
.projects__container .projects__button.o_projects_button.button-initialized {
    filter: drop-shadow(2px 4px 25px rgba(0, 0, 0, 0.20));
}
.o_product_preview_wrapper .swiper-initialized .swiper-slide {
    max-width: 390px;
}
@media (any-hover: hover) {
	.projects__button.o_projects_button.button-initialized:hover {
		background: #E5680D;
		stroke: #fff;
	}
}



/*********** //SINGLE-PRODUCTS   *****************/

.header {

background: transparent;
    transition: all 0.32s ease-in-out;

}
.header_fixed {
  position: fixed;
background: linear-gradient(90deg, #01517D 0%, #1279BE 100%);
    transition: all 0.32s ease-in-out;
        padding: 15px 0 !important;
}
.header.header--background.e-color-header.header_fixed .menu .contacts__body span, .header.header--background.e-color-header.header_fixed .menu .contacts__body a {
        color: white;
        /* border-color: var(--clr-light-gray); */
    }


   .header.header--background.e-color-header.header_fixed .menu .menu__body > ul > li > a, .header.header--background.e-color-header.header_fixed .menu .menu__body > ul > li > span {

        color: var(--clr-white);
    }

@media (any-hover: hover) {
.header.header--background.e-color-header.header_fixed .menu .menu__body > ul > li > a:hover, .header.header--background.e-color-header.header_fixed .menu .menu__body > ul > li:hover > span, .header.header--background.e-color-header.header_fixed .menu .menu__body > ul > li.active > span {
        background-color: transparent;
        color: var(--clr-white);
        border-color: var(--clr-blue);
    }
}

.header.header--background.e-color-header.header_fixed .lang .lang-item.current-lang {
    color: var(--clr-white);

}

.header.header--background.e-color-header.header_fixed .search_button path {
    stroke: var(--clr-white);

}

@media screen and (min-width: 992px) {
    .e-color-header.header_fixed .e-header__menu .e-menu__body > ul > li > span.hdr:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 7px;
        height: 4px;
        margin-left: 5px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        background-image: url(../img/icons/e-menu-arrow.svg);
        transition: all 0.32s ease-in-out;
        transform: rotate(0);
    }
}
#wpadminbar {
    position: absolute!important;

}

.contact-block form .cta {
    width: unset;

}


/*  NEW TEAM */
.product-preview.onlytext.sf .main-title, .used_in_servises h2, .used_in_projects  h2 {
  text-align: left;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  color: #415462;
  font-size: 36px;
	margin-bottom: 32px
}

.team .team__container h2 {
	color: var(--clr-blue);
}

.o_grid_team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px 25px;
}
 .o_team_card {
    border-bottom: 1px solid #D4D4D4;
		padding: 0 0 15px;
}    
.o_team_card_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
		gap: 16px;				
} 
.o_team_card_text {
    display: flex;
    flex-direction: column;
    align-items: center;
		gap: 6px;		
} 
.o_team_card_text h3 {
    color: var(--clr-blue);
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 123%;
    letter-spacing: 0.4px;

}
.o_team_card_text {
    color: #5E6167;
		text-align: center;
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 130%; 
		letter-spacing: 0.32px;
}
.o_link_team {
		text-decoration: underline;
}

.container.team__container {
    display: flex;
    gap: 10px;
		flex-direction: column;		
}

@media (min-width: 39.9994em) {
    .employe .employe__container p {
        font-size: 1rem;
        line-height: 160%;
    }
}
@media (min-width: 61.9988em) {
    .team .team__container h2, .team {
        margin-bottom: 1.7rem;
    }
}
/*  /NEW TEAM */
/*********** SEARCH   *****************/
.searh_section {
    margin-bottom: 150px;
    min-height: 190px;
}
.search_wrap {
		position: relative;
}
.search_holder {
    position: absolute;
    background: linear-gradient(90deg, #01517D 0%, #1279BE 100%);
    backdrop-filter: blur(8.899999618530273px);
    padding: 20px 0;
    margin-top: 50px;
    top: 0;
    left: 0;
    right: 0;
		opacity: 0;
		transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
		visibility: hidden;
}
.search_holder.active {
		opacity: 1;
		visibility: visible;
}
.search__form {
    width: 100%;
		display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
}
.search__form label {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
		position: relative;
}

.search__field, .search__field:active, .search__field:focus  {
    border-radius: 5px;
    background: #415462;
    backdrop-filter: blur(8.899999618530273px);
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
    padding: 9px 20px;
    flex: 100%;
		outline: none;
}

.search__field::placeholder {
    color: #FFF; 
		font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
}
.search__field:-ms-input-placeholder {
    color: #FFF; 
		font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
}
.search__field::-ms-input-placeholder {
    color: #FFF;
		font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .search__field::-webkit-input-placeholder {
				color: #FFF; 
				font-family: Montserrat;
				font-size: 16px;
				font-style: normal;
				font-weight: 400;
				line-height: 130%;
				letter-spacing: 0.32px;
    }
}
.search__field:focus {
    border: none; 
}
.search_close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: #415462;
		cursor: pointer;
}
.contacts__body .search_button {
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-left: 31px;
		cursor: pointer;
}

.e-slider-header .e-header__menu .e-contacts__body a {
  font-weight: 700;
}

.search__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0.625rem 2.5rem;
    border-radius: 0.4285714286em;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 150%;
    text-transform: uppercase;
    -webkit-transition: all 0.32s ease-in-out;
    -o-transition: all 0.32s ease-in-out;
    transition: all 0.32s ease-in-out;
    background-color: var(--clr-white);
    color: var(--clr-blue);
}
.search__button:hover {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}
.page_search_btn {
	  background-color: var(--clr-orange);
	  color: var(--clr-white);		
	
} 
.card-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    border-radius: 5px;
    background: #EBEFFE;
    margin-bottom: 30px;
    padding: 14px 27px;
}
.card-search__title {
    color: #002A99;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.36px;
}
.page__title {
    color: #002A99;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.6px;
    margin-bottom: 40px;
}
.page__header {
    color: var(--03050-f, #03050F);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.32px;
    margin-bottom: 30px;
}
.pagination:not(:first-child) {
    margin-top: 1.875rem;
    justify-content: center;
    padding: 10px 0;
    border-radius: 5px;
    background: #EBEFFE;
}
.pagination_bottom {
    gap: 5px;
    margin-bottom: 40px;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    background: #EBEFFE;
}
.page-item {
    width: 25px;
    text-align: center;
}
span.current {
    color: #e5680d;
}
.e-search-header {
    height: 462px;
    background: linear-gradient(72deg, #01517ddb 0%, #01517d69 100%), url(/wp-content/themes/ksm/img/search/search_page.jpg) center no-repeat;
		background-size: cover;
		position: relative;
}
.search_list {
    position: absolute;
    top: 100%;
    width: 100%;
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal; 
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.28px;
		opacity: 0;
		transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
		visibility: hidden;
}
.search_list.active {
		opacity: 1;
		visibility: visible;
}
.search_list_inner {
    padding: 20px 30px 25px;
    border-radius: 0px 0px 5px 5px;
    background: #112468;
    backdrop-filter: blur(8.899999618530273px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.list a {
		transition: color 0.4s ease;
}
.list a:hover {
		color: #FF9A51;
}
.search_list_title {
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.28px;
}
.search_button path {
		stroke: #fff;
}
.header--background .search_button path {
		stroke: #06154A;
}
.header--background .search_holder {
    margin-top: 15px;
}
.menu__buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 14px;
}
@media (max-width: 450px) {
	.search__button {
		display: none; 
	}
}
@media (min-width: 61.99875em) {
	.menu__buttons  {
			display: none;
	}
}
/*********** /SEARCH   *****************/

.o_grid_team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px 25px;
}
 .o_team_card {
    border-bottom: 1px solid #D4D4D4;
		padding: 0 0 15px;
}   
.o_one_person  .o_team_card {
    border-bottom: none;
} 
.o_team_card_holder {
    display: flex;
    flex-direction: column;
		gap: 16px;				
} 
.o_team_card_img {
    height: 332px;
    overflow: hidden;
		width: 100%;
}
.o_one_person {
  min-width: 269px;
}
.o_team_card_img img{
    height: 100%;
    width: 100%;
		object-fit: cover;
		object-position: top center;
}
.o_team_card_text {
    display: flex;
    flex-direction: column;
    align-items: center;
		gap: 6px;		
} 
.o_team_card_text h3 {
    color: var(--clr-blue);
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 123%;
    letter-spacing: 0.4px;

}
.o_team_card_text {
    color: #5E6167;
		text-align: center;
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 130%; 
		letter-spacing: 0.32px;
}
.o_link_team {
		text-decoration: underline;
}
.team_one_person {
    padding: 60px 0 75px;
}
.o_grid_team_one {
    display: flex;
    gap: 74px;
    justify-content: space-between;
}
.o_grid_team_one_item {
    flex: 1;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #D4D4D4;
		background: linear-gradient(208deg, rgba(239, 225, 225, 0.00) 61.78%, #EDEDED 102.25%);
}
.team .team__container .o_grid_team_one_title h2 {
    color: #002A99;
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.6px;
		text-align: left;
		margin: 0;
}
.o_grid_team_one_item h3, .o_grid_team_one_item .o_team_card_text {
	  text-align: left;
	}
.o_grid_team_one_item .o_team_card_text {
    align-items: flex-start;
}
[class*="-ibg"] img {
  object-position: top center;
}
.projects__image-ibg {
    border: 1px solid #ececec;
    border-radius: 4px;
}

.header_fixed_logo {
	display: none;
}
.header_fixed .header_fixed_logo {
	display: block;
}
.header_fixed .header_no_fixed_logo {
	display: none;
}

@media (max-width: 1600px) {
  .o_grid_team_one {
    gap: 25px;
	}
}
@media (max-width: 1440px) {
	.o_grid_team_one {
    gap: 55px;
    flex-direction: column;
	}
	span.o_team_post {
    max-width: 360px;
	}
	.o_grid_team_one_title, .o_one_person {
    flex: 1;
	}
}
@media (max-width: 1200px) {
	.o_grid_team {
    grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.o_grid_team_one_item {  
    flex-direction: column;
    gap: 30px;
	}
	.o_grid_team {
    grid-template-columns: repeat(2, 1fr);
	}	
}
@media (max-width: 550px) {
	.o_grid_team {  
    grid-template-columns: repeat(1, 1fr);
	}	
}
@media (min-width: 61.9988em) {
    .team .team__container h2, .team {
        margin-bottom: 1.7rem;
    }
		
}
.input_visible {
    display: none;
    width: 10px;
    position: absolute;
    opacity: 0;
}
.o_about_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
	gap: 20px
}
.o_about_description {
  color: #002A99;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  flex: 0 1 490px;
}
.o_about_right {
  line-height: 160%;
  letter-spacing: 0.32px;
  flex: 0 1 694px;
}
.o_job_title {
  color: var(--03050-f, #03050F);
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.4px;
  margin-bottom: 17px;
}
.o_job_img {
  max-width: 592px;
  height: 327px;
  overflow: hidden;
  margin-bottom: 22px;
}
.o_job_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o_job_text p:not(:last-child) {
  margin-bottom: 1em;
}
.page_subtitle {
  max-width: 41.25rem;
  font-family: var(--ff-sec);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: var(--clr-blue);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.9988px) {
	.o_about_container {
		flex-direction: column;
	}		
	.o_about_description, .o_about_right {
		flex: auto;
	}
	.o_job_img {
		height: auto;
	}
}

.bg_text {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  background-image: url(../img/news/bg_news.svg);
  margin-bottom: 0 !important;
  padding-bottom: 4.5rem;
}

.used_in_servises__slider {
  position: relative;
}
.used_in_servises {
  padding: 68px 0;
}
.used_in_servises h2, .used_in_projects  h2 {
  max-width: 1000px;
}
.used_in_servises_card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  height: 100%;
  justify-content: space-between;
}
.used_in_servises__wrapper.swiper-wrapper {
  align-items: stretch;
}
.used_in_servises__slide {
  height: auto;
}
.used_in_servises_img_wrap {
  height: 203px;
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #eeeeee;
}
.used_in_servises_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container_used_in_servises {
  position: relative;
	padding: 0 40px;
}
.used_in_servises_title {
  background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.4px;
  margin-top: 30px;
}
.used_in_servises_buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.used_in_servises_btn {
  background: linear-gradient(270deg, #1279BE 0%, #005686 80.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #1279BE;
  padding: 12px 15px;
  display: inline-flex;	
}
.used_in_servises_btn_wrap {
  padding-bottom: 5px;
}
.swiper_button {
  display: inline-flex;
  width: 39px;
  height: 39px;
  border-radius: 8px;
  border: 1px solid var(--clr-orange);
  position: absolute;
  top: 48%;
  background: #fff;
}
.swiper_button svg path{
  stroke: #000;
}
.swiper_button:hover {
  background: var(--clr-orange);
}
.swiper_button:hover svg path{
  stroke: #fff;
}
.used_in_servises__slider__button-prev, .used_in_projects__slider__button-prev {
  left: -30px;
}
.used_in_servises__slider__button-next, .used_in_projects__slider__button-next {
  right: -30px;
}
.used_in_servises__slider__button-next svg, .used_in_projects__slider__button-next svg {
  transform: rotate(180deg);
}
section.projects.another-products.single_device.bg_text {
  margin-top: 0;
}
@media (max-width:1439.9988px) {
	.used_in_servises__slider__button-prev {
		left: 10px;
	}
	.used_in_servises__slider__button-next {
		right: 10px;
	}
	.container_used_in_servises {
		padding: 0px 20px;
	}		
}


.another-products_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.another-products_item {
  display: grid;
  grid-gap: 20px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.another-products_item_img, .another-products_item_text {
  display: block;
  overflow: hidden;
}
.another-products_item_img {
  aspect-ratio: 573 / 322;
  border-radius: 15px;
  border: 1px solid #646D7C;
  width: 573px;
  height: 322px;
}
.another-products_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	transition: transform 3s ease-out;
}
.another-products_item_text {
  border-radius: 15px;
  border: 1px solid #E7E9ED;
  background: #FFF;
  display: flex;
  width: 470px;
  padding: 20px;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
a.another-products_item_link:hover, a.products_all_link.cta:hover {
  color: var(--clr-white);
}
.another-products_item_img:hover img {
	transform:  scale(1.1);
}
.another-products_item_text h3 {
  background: var(--Premium-blue-gradient, linear-gradient(270deg, #1279BE 0%, #005686 80.69%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.56px;
}

.o_documents_container .o_big_title {
  padding: 0 0 20px 15px;
}

.used_in_projects {
  padding: 68px 0;
}
.container_used_in_projects {
  position: relative;
  padding: 0 30px;
}
.used_in_projects_img_wrap {
  height: 410px;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
}
.used_in_projects_text {
  color: #405361;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 15px;
}
.products_all_link_wrap {
  display: flex;
	justify-content: center;
	margin-top: 40px;
}
.products_all_link.cta {
  display: inline-flex;

}
@media (max-width:1439.9988px) {
	.used_in_projects__slider__button-prev {
		left: 10px;
	}
	.used_in_projects__slider__button-next {
		right: 10px;
	}
	.container_used_in_projects {
		padding: 0px 20px;
	}	
	.swiper_button {
		top: 40%;
	}	
	.used_in_projects_img_wrap, .used_in_services_img_wrap {
		height: 320px;
	}	
}
