/*** base ***/
:root {
	--color-accent: #1B7BE5;
	--color-bg-accent: #04306D;

	--color-dark: #232323;
	--color-grey: #434343;
	--color-text: #616161;
	--color-placeholder: #878787;
	--color-border:  #f5f5f5;

	--color-error: #9e0e0e;
	--color-ok:  #56de00;
	--color-white: #fff;
	--rgba-white: rgba(255,255,255,0.7);
	--rgba-dark: rgba(0,0,0,0.3);
}
body, html { 
	margin: 0; 
	padding: 0; 
	width: 100%; 
	min-height: 100vh; 
	height: auto; 
	font-size: 14px; 
	-webkit-tap-highlight-color:transparent;
	font-family: 'Noto Sans Display', sans-serif;
	background: var(--color-white);
	background-attachment: fixed;
}
* { 
	box-sizing: border-box; 
}
*, *::before, *::after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--color-accent);
}
h1 {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}
h2 {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}
h3 {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}
h1,h2,h3,h4,h5,h6 {
	color: var(--color-bg-accent);
	width: 100%;
}
.block h1, .block h2, .block h3 {
	display: none;
}
.page-home .block h1, .page-home .block h2, .page-home .block h3, #partners h3 {
	display: block;
}
.no-scroll {
	overflow: hidden;
}
.grecaptcha-badge{
	visibility: collapse !important;  
}
input[type="submit"]:disabled {
	filter: grayscale(100%);
	transition: all 0.2 ease;
}
input, textarea {
	border:  1px solid var(--color-border);
	border-radius: 4px;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-border); 
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}
::-webkit-scrollbar-thumb {
    background: var(--color-border); 
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
:focus{
    outline:none;
}
div.clear{
    clear:both;
}  
.btn {
	padding:  16px 32px;
	border-radius:  4px;
	cursor:  pointer;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color:  var(--color-white);
	background: var(--color-bg-accent);
	text-shadow: 2px 2px 3px rgba(0,0,0,0.1);
	transition: all 0.2s ease;
}
.btn:hover, .btn:hover span, .btn:hover i {
	color: var(--color-bg-accent);
	transition: all 0.2s ease;
}
.btn i {
	margin-left: 10px;
	font-size: 20px;
	font-weight: 100;
}
.btn span, .btn i {
	position: relative;
	z-index: 3;
}
.btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--color-white);
	width: 0px;
	height: 0px;
	z-index: 2;
	border-radius: 4px;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
}
.btn:hover:after {
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	transition: all 0.4s ease;
}
.btn-light {
	background:  var(--color-white);
	color: var(--color-bg-accent);
	transition: all 0.4s ease;
}
.btn-light:after {
	background: var(--color-bg-accent);
	transition: all 0.4s ease;
}
.btn-light:hover, .btn-light:hover span, .btn-light:hover i {
	color: var(--color-white);
	transition: all 0.4s ease;
}
.r-90 {
	transform: rotate(90deg);
}
.r-180 {
	transform: rotate(180deg);
}
.r-270 {
	transform: rotate(270deg);
}
.circle {
	border-radius: 50%;
}
p {
	margin-top: 0;
}
/*** loader ***/

#loader {
	background: rgba(0,0,0,0.85);
	border-radius: 15px;
	position: fixed;
	z-index: 999999999;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%, 110%);
	transition: all 0.05s ease;
}
#loader.active {
	transform: translate(-50%, -50%);
	transition: all 0.1s ease;
}

/*** wrapper ***/

#wrapper {
	width: 100%;
	height:  auto;
	min-height: 100vh;
	position: relative;
	padding:  0;
	z-index: 0;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 10px 15px;
	color: var(--color-text);
}
.page-home .text-cont {
	padding: 0;
}
.block {
	width: 100%;
	margin: 0;
	padding: 0;
}
.split {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.split__item {
	width: 100%;
	margin-bottom: 20px;
}
/*** header ***/
#header {
	position: fixed;
	left:  0;
	top:  0;
	z-index: 150;
	height:  80px;
	width:  100%;
	background: var(--color-white);
	color:  var(--color-text);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
#header .container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s ease;
	box-shadow: unset;
}
#header.expanded {
	height: 100vh;
	z-index:  999;
	background:  var(--color-white);
	transition: all 0.3s ease;
}
#header.expanded .container {
	transition: all 0.3s ease;
}
.h-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
#h-left, #h-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}
#h-right {
	max-height: 0;
	opacity: 0;
	justify-content: center;
	overflow: hidden;
}
#h-left {
	justify-content: flex-start;
	align-items: flex-start;
}
#header #logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 32px;
	line-height: 38px;
	height: 60px;
	width:  auto;
	text-align: center;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}
#header #logo svg, #header #logo img {
	height: 60px;
	max-width: 40vw;
	aspect-ratio: 145 / 60;
	transition: all 0.2s ease; 
}

#spacer {
	flex-grow: 0;
}


/*** menu ***/
#h-right .h-row {
	width: 100%;
}
#menu {
	width: 100%;
	height:  30px;
	font-size: 18px;
	letter-spacing: 0.3px;
	list-style: none;
	margin-right: -15px;
	color:  var(--color-white) !important;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	justify-self: flex-end;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	flex-direction: column;
	transition: all 0.3s ease;
}
#header.expanded #menu, #header.expanded #h-right {
	max-height: 90vh;
	padding-right: 15px;
	overflow: visible;
	height:  auto;
	padding:  30px 0;
	opacity: 1;
	transition: all 0.3s ease;
}
.menu__item  {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}
.menu__item:hover {
	transition: all 0.2s ease;
}
.menu__item.active {
	transition: all 0.2s ease;
}
.menu__item a {
	padding: 5px 15px;
	margin:  0;
	display: block;
	font-weight: 500;
	color:  var(--color-dark);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	transition: all 0.2s ease;
}
.menu__item:hover > a, .sm__item:hover > a {
	color: var(--color-accent);
	transition: all 0.2s ease;
}
#mmenu {
	position: absolute;
	right: 20px;
	top: 20px;
	display:  block;
	background:  var(--color-accent);
	border:  0;
	color:  var(--color-white);
	text-align: center;
	padding:  10px;
	font-size: 18px;
	border-radius:  4px;
	width:  40px;
	height:  40px;
}
.menu__chevron {
	color: var(--color-accent);
	display: flex;
	height: 24px;
	width: 24px;
	font-size: 18px;
	position: absolute;
	right: 10%;
	top: 3px;
	transform: rotate(0deg);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}
.dropdown.visible .menu__chevron {
	transform: rotate(180deg);
	transition: all 0.2s ease;
}
.menu__item > a:hover::after, .menu__item.active > a::after {
	width: calc(100% - 10px);
	transition: all 0.2s ease;
}
.menu__item .submenu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	max-height: 0;
	width: auto;
	position: relative;
	top: 0;
	left: 0;
	flex-wrap: nowrap;
	padding: 0 10px;
	overflow-x: hidden;
	overflow-y: hidden;
	border-radius: 4px;
	box-shadow: 0 0 15px rgba(0,0,0, 0);
	transition: all 0.5s ease;
}
.menu__item.dropdown.visible .submenu {
	max-height: calc(60vh);
	padding: 20px 10px;
	overflow-y: scroll;
	background: var(--color-white);
	transition: all 0.5s ease;
}
.menu__item .sm__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.menu__item .sp__parent {
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
	transition: all 0.2s ease;
/*	border-bottom: 1px solid var(--color-accent);*/
}
.sp__child {
	font-weight: 200;
	font-size: 13px;
}

/*** content ***/

#content {
	padding-top: 80px;
	position: relative;
}
#content .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.split-cont {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.small-cont {
	width: 100%;
}
.small-cont h3 {
	margin: 0 0 10px;
}
.left-cont {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-bottom: 20px;
}
.left-cont h2 {
	width: 100%;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-border);
	margin: 0;
	padding: 5px 10px;
	font-size: 18px;
	position: relative;
}
.left-cont h2:after {
	content: "\f078";
	font-family: "ForkAwesome";
	position: absolute;
	right: 15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 50%;
	transform: translate(0, -50%) rotate(0deg);
	transition: all 0.2s ease;
}
.left-cont.expanded h2:after {
	transform: translate(0, -50%) rotate(180deg);
	transition: all 0.2s ease;
}

/*** left menu ***/
.left-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	transform-origin: 50% 0;
	transform: scale(1, 0);
	transition: all 0.2s ease;
}
.left-menu.expanded {
	max-height: 100vh;
	transform-origin: 50% 0;
	transform: scale(1, 1);
	transition: all 0.2s ease;
}
.left-menu.sub {
	transform: scale(1, 0);
	transform-origin: 50% 0;
	max-height: 0;
	transition: all 0.2s ease;
}
.left-menu-item a {
	font-size: 13px;
	line-height: 20px;
	padding: 3px;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.left-menu-item.expanded > .left-menu.sub {
	transform: scale(1, 1);
	max-height: 1000px;
	transition: all 0.2s ease;
}
.left-menu-item.expanded > .left-menu-arrow {
	transform: rotate(180deg);
	transition: all 0.2s ease;
}
.left-menu-item.active > a {
	font-weight: 600;
	color: var(--color-accent);
}
.left-menu-item {
	padding: 3px 10px 3px 25px;
	position: relative;
}
.left-menu-item:hover > a {
	background: var(--color-accent);
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	transition: all 0.2s ease;
}
.left-menu-arrow {
	font-size: 12px;
	position: absolute;
	left: 5px;
	top: 0;
	width: 20px;
	text-align: center;
	cursor: pointer;
	line-height: 25px;
	transition: all 0.2s ease;
}
.contacts__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 0;
}
.contacts__item span {
	width: 30px;
	color; #fff
}

/*** footer ***/

#footer {
	color:  var(--color-white);
	position: relative;
	min-height:  20px;
	z-index: 10;
	padding: 20px 0px;
	width: 100%;
	display: flex;
	flex-direction: column;
	border-top: 2px solid var(--color-bg-accent);
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	background: var(--color-bg-accent) url('/images/footer-bg.webp') 50% 50% / cover no-repeat;
}

#footer .container {
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	display: flex;
}
#footer .copy {
	position: relative;
}
#footer .copy:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: calc(100% - 30px);
	transform: translate(-50%);
	border-top: 1px solid rgba(255,255,255,0.3);
}

.footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}
.footer h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 10px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.footer__item div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
}
.footer__item  div i {
	color: #fff;
	width: 30px !important;
	height: 25px;
	line-height: 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.footer__item div span {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer__link {
	color: #fff;
	padding: 5px 0;
}
#dev, #copy, #engine {
	color:  var(--color-white);
	font-size: 12px;
}
#dev a {
	color: var(--color-white);
	text-decoration: none;
	padding:  1px 5px;
	border-radius: 4px;
	transition: all 0.2s ease;
}
#dev a:hover {
	background: rgba(0,0,0,0.7);
	color:  var(--color-white);
	transition: all 0.2s ease;
}

/*** blocks ***/
#blocks {
	background: var(--color-bg-accent);
	margin-bottom: 150px;

}
#blocks .container {
	padding-bottom: 0;
}
.block {

}
.blocks__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: space-between;
}
.blocks__header h1 {
	color: var(--color-white);
	font-size: 24px;
	text-align: left;
}
.blocks {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	transform: translate(0, 20%);
	margin-top: -70px;
}
.blocks__item {
	height: 200px;
	width: calc(50% - 20px);
	min-width: calc(50vw - 25px);
	margin-bottom: 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.blocks__item:hover .blocks__inner {
	transform: rotate3d(1, 0, 0.1, 180deg);
	background: var(--color-accent);
	transition: all 0.5s ease;
}
.blocks__inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	padding: 30px;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0px 1px 50px 5px rgba(137, 143, 156, 0.15);
	transition: all 0.5s ease;
}
.blocks__text {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-dark);
	text-align: center;
	transition: all 0.2s ease;
}
.blocks__img {
	max-height: 60px;
	overflow: hidden;
	font-size: 56px;
	color: var(--color-bg-accent);
	transition: all 0.2s ease;
}
.blocks__hidden {
	font-size: 13px;
	color: #fff;
	max-height: 0;
	overflow: hidden;
	text-align: center;
	transition: all 0.2s ease;
	transform: rotate3d(1, 0, 0, 180deg);
}

.blocks__item:hover .blocks__img {
	max-height: 0;
	transition: all 0.2s ease;
}
.blocks__item:hover .blocks__hidden {
	max-height: 65px;
	transition: all 0.5s ease;
}
.blocks__item:hover .blocks__text {
	transform: rotate3d(1, 0, 0, 180deg);
	color: #fff;
	transition: all 0.5s ease;
}

/*** about ***/
#about h2 {
	color: var(--color-bg-accent);
	font-weight: 800;
	text-align: left;
}
#about .sub_title {
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 30px;
}
.about {
	border-top: 1px solid var(--color-bg-accent);
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.about__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 0;
}
.about__img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-right:30px;
	font-size: 56px;
	color: var(--color-bg-accent);
}
.about__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.about__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--color-bg-accent);
}
.about__text {
	font-size: 16px;
	font-weight: 400;
}
.aimg {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	padding: 10px;
}
.aimg__bg {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.aimg__bg img {
	animation: rotateAnimation 25s infinite linear;
	transform-origin: 50% 50%;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 558 / 566;
	max-width: calc(90vw);
}
.aimg__img {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}
.aimg__img img {
	border-radius: 50%;
	max-width: calc(71vw);
	width: 500px;
	height: auto;
	aspect-ratio: 1;
	box-shadow: 0px 1px 15px 5px rgba(137, 143, 156, 0.15);
}
@keyframes rotateAnimation {
	0% {
    -webkit-transform: rotate(0deg);
	    transform: rotate(0deg);
	}
	100% {
	    -webkit-transform: rotate(360deg);
	    transform: rotate(360deg);
	}
}
/*** aics ***/
#aics {
	background: var(--color-bg-accent) url('/images/aics.webp') 50% 50% / cover no-repeat;
}
.aics {
	padding: 25px 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	color: var(--color-white);
	justify-content: space-between;
}
.aics__item {
	width: calc(50% - 10px);
	display: flex;
	margin-bottom: 25px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.aics__title {
	font-size: 48px;
	padding-bottom: 15px;
	font-weight: 800;
	text-align: center;
}
.aics__title i {
	margin-right: 15px;
}
.aics__title span {
	margin-left: 5px;
}
.aics__text {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

/*** speciality ***/
#specialty h3 {
	color: var(--color-bg-accent);
	font-size: 30px;
	font-weight: 800;
	text-align: center;
	width: 100%;
}
#specialty .text {
	text-align: center;
	font-size: 16px;
}
.specs {
	margin-top: 30px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.specs__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 350px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}
.specs__img {
	width: 100%;
}
.specs__img img {
	width: 100%;
	height: auto !important;
}
.specs__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	opacity: 0;
	padding: 30px;
	border-radius: 8px;
	background: var(--color-white);
	top: 0;
/*	max-height: 0;*/
	overflow: hidden;
	transform: rotate3d(1, 0, 0.1, 180deg);
	transition: all 0.5s ease;
}
.specs__item:hover .specs__info {
	max-height: calc(100vh);
	opacity: 0.8;
	transform: rotate3d(0, 0, 0, 0deg);
	transition: all 0.5s ease;
}
.specs__title {
	color: var(--color-bg-accent);
	font-size: 25px;
	font-weight: 700;
}
.specs__text {
	text-align: center;
	font-size: 16px;
	color: var(--color-dark);
}
.specs__btn {

}

/*** partners ***/
#partners {
	background: var(--color-bg-accent);
}
#partners h3 {
	color: var(--color-white);
	text-align: left;
}
.partners {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 40px 0;
}
.partners__item {
	width: calc(33.3% - 10px);
	aspect-ratio: 1;
	border-radius: 8px;
	margin: 20px 0;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	background: var(--color-white);
}
.partners__img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.partners__img img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	padding: 10px;
}
.partners__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	opacity: 0;
	padding: 20px;
	border-radius: 8px;
	background: var(--color-accent);
	top: 0;
	overflow: hidden;
	transform: rotate3d(1, 0, 0.1, 180deg);
	transition: all 0.5s ease;
}
.partners__item:hover .partners__info {
	max-height: calc(100vh);
	opacity: 1;
	transform: rotate3d(0, 0, 0, 0deg);
	transition: all 0.5s ease;
}
.partners__title {
	color: var(--color-white);
	font-size: 22px;
	font-weight: 700;
	white-space: nowrap;
}
.partners__text {
	text-align: center;
	font-size: 16px;
	color: var(--color-white);
}

/*** personnel ***/
#personnel {

}
#personnel .blocks__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
#personnel h3 {
	color: var(--color-bg-accent);
	font-size: 30px;
	font-weight: 800;
}
#personnel .sub {
	font-size: 16px;
}
.pers {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	margin-top: 30px;
	flex-wrap: wrap;
}
.pers__item {
	width: calc(50% - 10px);
	max-width: 200px;
	height: auto;
	background: var(--color-border);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1)
}
.pers__img {
	width: 100%;
	aspect-ratio: 1;
}
.pers__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}
.pers__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}
.pers__name {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 15px;
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-bg-accent);
}
.pers__pos {
	font-size: 12px;
	font-weight: 500;
	height: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/*** Feeds ***/
#feedback {
	background: var(--color-border);
}
#feedback .blocks__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
#feedback h3 {
	color: var(--color-bg-accent);
	font-size: 30px;
	font-weight: 800;
}
#feedback .sub {
	font-size: 16px;
}
.feed {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	margin-top: 30px;
	flex-wrap: wrap;
}
.feed__item {
	width: calc(50% - 10px);
	max-width: 200px;
	height: auto;
	background: var(--color-white);
	border-radius: 4px;
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: center;

	justify-content: flex-start;
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1)
}
.feed__rating {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: #FFC107;
}
.feed__rating i {
	font-size: 24px;
	padding: 4px;
}
.feed__text {
	font-size: 12px;
	font-weight: 300;
	color: var(--color-text);
	margin-top: 20px;
	text-align: center;
	line-height: 1.4;
}
.feed__img {
	width: 100%;
	display: flex;
	margin-top: 20px;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.feed__img img {
	width: 120px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	box-shadow: -5px 5px 0 0 var(--color-accent);

}
.feed__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
	text-align: center;
}
.feed__name {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-bg-accent);
}
.pers__pos {
	font-size: 12px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/*** breadcrumbs ***/

#breadcrumbs {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 10px;
	justify-content: flex-start;
}
.breadcrumbs__item {
	margin-right: 10px;
	font-size: 12px;
	color: var(--color-text);
}
.breadcrumbs__item:first-child i {
	margin-right: 5px;
	color: var(--color-text);
}

/*** gallery ***/
.gallery {
	width: calc(100% + 16px);
    display: flex;		
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 -8px;
	padding-top: 10px;
	justify-content: space-between;
}
.gallery .fi {
	position: relative;
	cursor: pointer;
	z-index: 99;
	margin: 0 4px 8px;
	width: calc(50% - 8px);
	aspect-ratio: 1;
}
.fi-filler {
	flex-grow: 1;
}
.gallery .fi-image {
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
}
.gallery .fi-image, .gallery .gi-image {
	border:  0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1;
}
.fi-image img {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	max-width: calc(100% * 3 / 2);
	max-height: calc(100% * 3 / 2);
}
.gallery .gi-image img {
	width: 100%;
}
/*** lightbox ***/

#lightbox, .modal {
	position: fixed;
	z-index: 9999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: scale(1, 0);
	transform-origin: 50% 50%;
	/*transition: all 0.2s ease;*/
}
.modal-b {
	top: unset;
	bottom: 0;
	justify-content: flex-end;
	transform-origin: 50% 100%;
}
#lightbox.visible, .modal.visible {
	transform: scale(1, 1);
	/*transition: all 0.2s ease;*/
}
#lightbox-wrapper {
	background: var(--rgba-dark) url(/images/loading.svg) 50% 50% no-repeat;
	border-radius: 0;
	padding: 2px;
}
#lightbox-wrapper, .modal-wrapper {
	position: relative;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
	max-width: 95%;
	max-height: 90%;
	transform: scale(1,0.3);
	transform-origin: 50% 50%;
	transition: all 0.2s ease;
}
#lightbox.visible #lightbox-wrapper, .modal.visible .modal-wrapper {
	transform: scale(1,1);
	transition: all 0.2s ease;
}
#lightbox-content, .modal-content {
	width: 100%;
	height: 100%;
}
.modal-b .modal-wrapper {
	max-width: 100%;
	max-height: 90vh;
	width: 100%;
}
.modal-b .modal-content {
	background: var(--color-white);
	padding: 25px;
	width: 100%;
	border-top-left-radius: 48px;
	border-top-right-radius: 48px;
}
#lightbox-content {
	min-height: 200px;
	min-width: 200px;
	padding: 0;
	display: flex;
}
#lightbox-content img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0;
}
.lightbox-btn {
	position: absolute;
	top: 0;
	opacity: 0.01;
	cursor: pointer;
	height: 100%;
	width: 50%;
	z-index: 4;
	line-height: calc(100%);
	text-align: center;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	transition: all 0.2s ease-in;
}

.lightbox-btn i {
	position: absolute;
	left: 20px;
	text-align: center;
	top: 50%;
	width: 40px;
	color: rgba(255,255,255,0.7);
	transform: translate(0, -50%);
	font-size: 32px;
	transition: all 0.2s ease-in;
}
.lightbox-btn:hover {
	opacity: 0;
	transition: all 0.2s ease-in;
}
.lightbox-btn:hover i {
	color:  rgba(255,255,255,0.8);
	transition: all 0.2s ease-in;
}
#lightbox-left {
	left: 0;
}
#lightbox-right {
	right: 0;
}
#lightbox-right i {
	left: unset;
	right: 20px;
}
#share {
	position: absolute;
	top:  2px;
	right: 2px;
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	padding: 0 5px;
	border-radius: 0;
	border-bottom-left-radius: 5px;
	border:  0;
	z-index: 5;
	background: rgba(0,0,0,0.7);
	color:  #fff;
}
#share i {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}
#lightbox-download {
	font-size: 14px;
	color: #fff;
	padding: 2px 5px !important;
}
#lightbox-download i {
	font-size: 18px
}
#lightbox-count {
	position: absolute;
	top:  2px;
	left: 2px;
	padding: 3px 5px;
	text-align: center;
	border-radius: 0;
	border-bottom-right-radius: 5px;
	border:  0;
	z-index: 2;
	background: rgba(0,0,0,0.7);
	color:  #fff;
	font-size: 10px;
}
#lightbox-info {
	background: var(--rgba-dark);
	color: var(--color-border);
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	text-transform: uppercase;
	max-width: 90vw;
	flex-wrap: wrap;
}
#lightbox-info i {
	color: var(--color-green);
	margin-right: 10px;
	font-size: 14px;
}
#lightbox-info img {
	width: 14px;
	margin: 0 10px;
}
#lightbox-info span {
	white-space: nowrap;
	display: flex;
	align-items: center;
}

/*** cookies ***/
#cookies {
	position: fixed;
	bottom: 10px;
	left: 50%;
	width: 90vw;
	height: auto;
	padding: 20px;
	z-index: 100;
	border-radius: 4px;
	box-shadow: 2px 2px 5px var(--rgba-dark);
	background: var(--color-text);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transform: translate(-50%, 0);
}
#cookies-text {
	font-size: 16px;
}
#cookies-btn {
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
}
/*** socials ***/
.socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
}
.socials__item {
	font-size: 14px;
	line-height: 12px;
	padding: 3px 10px;
}
.socials__item i {
	font-size: 18px;
}
/*********** CSlider ************/
.cslider {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: row;
	margin-bottom: 50px;
}
.cslider__controls {
	width: 50px;
	font-size: 48px;
	border: 0;
	cursor: pointer;
	background: transparent;
}
.cslider__wrapper {
	width: calc(100% - 140px);
	position: relative;
	overflow: hidden;
	height: 250px;
}
.cslider__inner {
	width: 10000000px;
	left: 0;
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	transition: all 0.2s ease;	
}
.cslider__item {
	width: calc(100vw - 100px - 40px);
	height: 250px;
	padding: 0 20px;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.cslider.animating .cslider__item {
	transform-origin: 50% 50%;
	transform: scale(0.5, 0.5);
	transition: all 0.2s ease;
}
.cslider__img img {
	max-width: 100%;
	max-height: 100%;
}


/*** search ***/
#search {
	justify-content: flex-start;
	padding-top: 50px;
}
.search-btn {
	border: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	color: var(--color-white);
	background: var(--color-accent);
	line-height: 30px;
	text-align: center;
	margin: 0 0 0 20px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 4px;
}
#search_wrapper {
	border-radius: 4px;
}
#search_module {
	position: relative;
}
#search_field {
	width:  100%;
	min-width: 90vw;
	border:  1px solid var(--color-border);
	color: var(--color-gery);
	padding:  10px 65px 10px 25px;
	border-radius: 4px;
	height: 60px;
	font-size: 18px;
	cursor: text;
}
#search_field::placeholder {
	color:  var(--color-placeholder);
}
#search_button {
	display: block;
	cursor: pointer;
	position: absolute;
	right: 0px;
	top: 0px;
	width:  45px;
	height: 60px;
	background: var(--color-grey);
	border:  1px solid var(--color-grey);
	color: var(--color-white);
	border-radius: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;

}
#search_results {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	position: absolute;
	top: 65px;
	left:  0;
	width: 100%;
	height:  0;
	border-radius: 4px;
	overflow-y: scroll;
	background: var(--color-white);
	box-shadow: 5px 5px 15px rgba(0,0,0,0);
	transition: all 0.2s ease;
}
#search_results.active {
	height:  auto;
	min-height: 200px;
	max-height: 50vh;
	border:  0;
	transition: all 0.2s ease;
}
.search_res {
	padding: 5px 15px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
	min-height: 20px;
	transition: all 0.2s ease;
}
.search_res-title {
	padding: 5px 15px !important;
	margin:  0 !important;
}
.search-all-res-btn {
	position: absolute;
	right: 15px;
	font-size: 13px;
	top: 50%;
	transform: translate(0, -50%);
}
.search-all-res-btn i {
	font-weight: 200;
	margin-right: 10px;
	font-size: 14px;
}
#search_page .search_res {
	padding: 5px;
}
#search .search_res:hover {
	background: var(--color-border);
	transition: all 0.2s ease;
}
#search .search_res a {
	color: var(--color-accent);
	font-size: 14px;
}
#search .search_res span {
	font-size: 10px;
}
#search_results::-webkit-scrollbar {
  width: 4px;
  margin-right:  12px;
}
#search_results::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#search_results::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  outline: 1px solid var(--color-grey);
}
#search_page {
	width: 100%;
}
#search_page .search_res {
	padding: 10px 0;
}
#search_page .search_res a {
	color: var(--color-accent);
}
.searchword {
	background: var(--color-accent);
	color:  var(--color-white);
} 

/*** tooltips ***/

#tooltip {
	display: block;
	position: fixed;
	left: 50%;
	bottom: -200px;
	max-width: 50vw;
	user-select: none;
	max-height: 0;
	transition: all 0.2s ease;
	background: var(--color-border);
	color: var(--color-text);
	z-index: 9999999999;
}
#tooltip.error {
	background: var(--color-error);
	color:  var(--color-white);
	transition: all 0.2s ease;
}
#tooltip.active {
	bottom: 0;
	max-height: 300px;
	transform: translateX(-50%);
	transition: all 0.2s ease;
}
#tooltip-message {
	margin: 10px 60px 10px 25px;
	font-size: 16px;
	line-height: 25px;
}
#tooltip-close {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 25px;
	transform: translateY(-50%);
}

/*** slider ***/
#slider {
	height: calc(100vh - 80px - 300px);
	width:  100%;
	overflow: hidden;
}
.slider {
	position: relative;
	height: 100%;
}
.slider__wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 9;
}
.slider__inner {
	position: absolute;
	width: 99999px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	transition: all 0.4s ease;
}
.slider__item {
	width:  100vw;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.slider__image {
	width: auto;
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.slider__title {
	position: absolute;
	left: 50%;
	top:  25%;
	width: calc(100% - 40px);
	font-size: 20px;
	text-transform: uppercase;
	color:  #fff;
	text-align: center;
	font-weight: 800;
	transform: translate(-50%);
	text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}
.slider__text {
	position: absolute;
	left: 50%;
	top:  45%;
	width: calc(100% - 40px);
	font-weight: 700;
	font-size: 16px;
	color:  #fff;
	text-align: center;
	transform: translate(-50%);
	text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}
.slider__link {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%);
}

.slider__btn {
	position: absolute;
	top:  50%;
	width:  64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 16px;
	color:  #fff;
	border: 0;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--rgba-dark);
	opacity:  0.5;
	z-index: 11;
	transition: all 0.2s ease;
}
.slider__btn i {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.slider__btn:hover {
	opacity:  1;
	transition: all 0.2s ease;
}
.slider__btn.slider__prev {
	left:  30px;
	transform: translate(-150%, -50%);
	transition: all 0.2s ease;
}
.slider__btn.slider__next {
	right:  30px;
	transform: translate(150%, -50%);
	transition: all 0.2s ease;
}
#slider:hover .slider__btn {
	transform: translate(0, -50%);
	transition: all 0.2s ease;
}

.slider__dots {
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	bottom:  15px;
	left:  50%;
	z-index: 11;
	transform: translate(-50%, 0);
}
.slider__dot {
	width: 24px;
	height: 24px;
	padding: 0;
	margin-right:  5px;
	background: transparent;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.slider__dot:after {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #fff;
	background: #fff;
	border-radius: 50%;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.3), 0 0 5px rgba(0,0,0,0.2);
}
.slider__dot.active:after{
	background: var(--color-accent);
	transition: all 0.2s ease;
}
/*** map ***/
#map {
	width: calc(100%);
	height: 500px;
}
#map iframe {
	overflow:hidden;
	background:none !important;
	height:500px;
	width:100%;
	border: 0 !important;
}

/*** Categories module ***/
#subcats {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.subcats__item {
	padding: 3px;
	margin: 5px 10px 5px 0;
}

/*** animation ***/
.ani {
	opacity: 0.01;
	transition: all 0.5s ease-in;
}
.ani-t {
	transform: translate(0, 50%);
	transition: all 0.5s ease-out;
}
.ani-l {
	transform: translate(-100%, 0);
	transition: all 0.5s ease-out;
}
.ani-r {
	transform: translate(100%, 0);
	transition: all 0.5s ease-out;
}
.ani-b {
	transform: translate(0, -50%);
	transition: all 0.5s ease-out;
}
.animated {
	transform: translate(0, 0);
	opacity: 1;
	transition: all 0.5s ease-out;
}
/*** media queries ***/

@media screen and (min-width: 500px) {
	.gallery .fi {
		width: calc((100%) / 3 - 8px);
	}
	
}
@media screen and (min-width: 750px) {
	#logo svg {
		max-width: unset;
	}
	.slider__title {
		font-size: 36px;
	}
	.slider__text {
		font-size: 18px;
	}
	#search_field {
		min-width: 400px;
	}
	#dev, #copy, #engine {
		font-size: 13px;
	}
	#footer .container {
		flex-direction: row;
	}
	.split-cont {
		flex-direction: row;
	}
	.left-cont {
		width: 200px;
	}
	.small-cont {
		width: calc( 100% - 20px - 200px);
	}
	.left-cont h2:after {
		display: none;
	}
	.left-menu {
		transform: scale(1,1);
		max-height: unset;
	}
	.gallery .fi {
		width: calc((100%) / 4 - 8px);
	}
}
@media screen and (min-width: 1000px) {

	h1, h2, h3 {
		font-size: 30px;
	}
	.cslider__item {
		width: calc((100vw - 180px) / 2);
	}
	.blocks {
		transform: translate(0, 50%);
	}
	.blocks__item {
		width: calc(25% - 20px);
		min-width: unset;
		margin-bottom: 0;
	}
	.h-row {
		flex-direction: row;
	}
	.aics {
		padding: 70px 0 45px ;
	}
	.gallery .fi {
		width: calc((100%) / 5 - 8px);
	}
	.blocks__header  {
		flex-direction: row; 
		text-align: left;
	}
	.blocks__text {
		font-size: 22px;
	}
	.blocks__hidden {
		font-size: 18px;
	}
	.menu__item {
		color: var(--color-dark);
	}
	.aics__item {
		width: calc(25% - 20px);
	}
	.specs {
		flex-direction: row;
	}
	.specs__item {
		width: 350px;
		margin: 15px;
	}
	.partners__item {
		width: calc(20% - 20px);
	}
	.pers__item {
		width: calc(25% - 20px);
		margin-bottom: 20px;
		max-width: unset;
	}
	.pers__name {
		font-size: 20px;
		height: 50px;
	}
	.pers__pos {
		font-size: 16px;
		height: 40px;
	}
	.feed__item {
		width: calc(30% - 20px);
		max-width: unset;
	}
	.feed__text {
		font-size: 15px;
	}
	.feed__name {
		font-size: 20px;
	}
	.feed__pos {
		font-size: 16px;
	}
	.feed__img img {
		width: 150px;
	}
	.split {
		flex-direction: row;
	}
	.split__item {
		width: calc(50% - 10px);
	}
	#main-1.block {
		margin-left: -25px;
		width: calc(100% + 50px);
		padding: 25px;
	}
	#content {
		padding-top: 81px;
	}
	.breadcrumbs__item {
		font-size: 13px;
	}
	.slider__title {
		font-size: 60px;
		max-width: 1400px;
	}
	.slider__text {
		font-size: 20px;
	}
	.container {
		padding-left: 25px;
		padding-right: 25px;
	}
	#menu {
		flex-direction: row;
		max-height: unset;
		opacity: 1;
		overflow: visible;
	}
	.menu__item .submenu {
		position: absolute;
		flex-direction: row;
		flex-wrap: wrap;
		overflow: hidden !important;
		box-shadow: 0 0 15px rgba(0,0,0,0.05);
	}
	.menu__chevron {
		right: 0;
		font-size: 12px;
	}
	.dropdown:hover .menu__chevron {
		transform: rotate(180deg);
		transition: all 0.2s ease;
	}
	.menu__item.dropdown {
		padding-right: 10px;
	}
	.menu__item .submenu {
		width: auto;
		top: 100%;
	}
	.menu__item.dropdown:hover .submenu {
		max-height: calc(60vh);		
		padding: 20px 10px;
		overflow-y: scroll;
		background: var(--color-white);
		box-shadow: 5px 0 10px 0 rgba(0,0,0,0.2);
		transition: all 0.5s ease;
	}
	.sm__item {
		width: auto;
	}
	.aimg__img img {
		border-radius: 50%;
		max-width: 420px;
	}
	#header .container {
		flex-direction: row;
	}
	#h-right {
		max-height: unset;
		opacity: 1;
		overflow: visible;
		align-items: flex-end;
	}
	.menu__item {
		font-size: 14px;
	}
	#spacer {
		flex-grow: 1;
	}
	#mmenu {
		display:  none;
	}
	#footer .container, .footer {
		flex-direction: row;
		justify-content: space-between;
	}
	#footer .copy:before {
		width: calc(100% - 50px);
	}
	.footer__item {
		width: calc(25% - 20px);
	}
	#cookies {
		width: auto;
		flex-direction: row;
	}
	#cookies-btn {
		margin-top: unset;
		margin-left: 20px;
	}
	.left-cont {
		width: 300px;
	}
	.small-cont {
		width: calc( 100% - 20px - 300px);
	}
}
@media screen and (min-width: 1200px) {
	.menu__item {
		font-size: 16px;
	}
	.lightbox-btn {
		display:  block;
	}
	.cslider__item {
		width: calc(600px - 50px - 40px);
	}
	.gallery .fi {
		width: calc((100%) / 6 - 8px);
	}
}
@media screen and (min-width: 1350px) {
	.menu__item {
		font-size: 17px;
	}
	.gallery .fi {
		width: calc(100% / 6 - 8px);
	}
}
@media screen and (min-width: 1800px) {
	.container {
		max-width: 1400px;
	}
	.cslider__item {
		width: calc(700px - 50px - 40px);
	}
}
