/*
Theme Name: Board
Theme URI: https://wordpress.org/
Description: Тема для Wordpress
Author: Divster
Author URI: https://divster.name/
Version: 100.0
*/
@font-face{
	font-family: 'Manrope';
	src: local('Manrope Bold'), local('Manrope-Bold'),
		url('fonts/Manrope-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face{
	font-family: 'Manrope';
	src: local('Manrope Semibold'), local('Manrope-Semibold'),
		url('fonts/Manrope-Semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face{
	font-family: 'Manrope';
	src: local('Manrope Regular'), local('Manrope-Regular'),
		url('fonts/Manrope-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Ropa+Sans&display=swap'); */
/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display: block;
}
ol, ul{
	list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
	list-style-type: none;
	list-style: none;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */
*{
	box-sizing: border-box;
}
html{
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary{
	display: block;
}
:root{
	--color-grey-900: #1B1B1B;
	--color-grey-800: #252525;
	--color-grey-700: #323232;
	--color-grey-600: #4D4D4D;
	--color-grey-500: #8C8A89;
	--color-grey-400: #A7A5A4;
	--color-grey-300: #CDCAC8;
	--color-grey-200: #E9E5E3;
	--color-white: #ffffff;
	--color-beige-light: #FFFEFD;
	--color-light-blue: #D9DFEF;
	--color-light-yellow: #F8E5C8;
	--color-light-orange: #F3D7C7;
	--color-blue-light: #6C8EE1;
	--color-blue: #4060AE;
	--color-blue-dark: #344F92;
	--color-orange: #E09A72;
	--color-red: #D67A7A;
	--color-yellow: #E9A847;
	--color-error: #FA450B;
}
body{
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	line-height: 1;
	color: var(--color-grey-900);
	height: 100%;
}
body.not-scroll{
	overflow-y: hidden;
}
textarea,input[type=text],input[type=email],input[type=password],input[type=search],input[type=tel],input[type=number]{
	font-family: 'Manrope', sans-serif;
	border: 1px solid #666;
	background: #fff;
	color: var(--color-grey-900);
	outline: none;
}
input[type=submit], button{
	margin: 0;
	-webkit-appearance: none;
	font-family: 'Manrope', sans-serif;
	outline: none;
	cursor: pointer;
}
button::-moz-focus-inner{
	border: 0;
}
.inner{
	min-width: 280px;
	max-width: 1160px;
	margin: 0 auto;
}
.clearfix:after{
	content: '';
	display: table;
	clear: both;
}
a{
	color: var(--color-grey-900);
	text-decoration: underline;
	outline: none;
}
a:hover{
	text-decoration: none;
}
.slick-slide{
	outline: none !important;
}
img, svg{
	max-width: 100%;
	height: auto;
}
:invalid{
	box-shadow: none;
}
strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
.site-wrapper{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	/* overflow: hidden; */
	background: #F1EFE9;
	position: relative;
}
.site-container{
	flex: 1 0 auto;
}
.button{
	display: inline-block;
	min-width: 183px;
	padding: 15px 62px;
	border: 1px solid;
	border-radius: 30px;
	background: none;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-grey-900);
	text-decoration: none;
	text-align: center;
	transition: all 0.2s;
}
.button_transparent{
	border-color: var(--color-grey-900);
}
.button_black{
	background: var(--color-grey-900);
	border-color: var(--color-grey-900);
	color: var(--color-white);
}
.button_black:hover{
	background: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-grey-900);
}
.button_black.button_black-border:hover{
	background: transparent;
	border-color: var(--color-grey-900);
	color: var(--color-grey-900);
}
/* Header
-----------------------------------------------------------------------------*/
.site-header{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.site-header__container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 0;
}
.header-logo{
	width: 114px;
	max-width: 100%;
	line-height: 0;
}
.site-header__center{
	padding: 0 30px;
}
.header-nav ul{
	display: flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}
.header-nav ul li{
	margin: 0 20px;
}
.header-nav ul li a{
	display: block;
	position: relative;
	text-decoration: none;
	transition: color 0.3s;
}
.header-nav ul li a:hover{
	color: var(--color-blue);
}
.header-nav ul li a:before{
	position: absolute;
	top: 0;
	left: -3px;
	right: -3px;
	content: attr(data-text);
	font-weight: 700;
	white-space: nowrap;
	color: var(--color-grey-800);
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}
.header-nav ul li a:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: var(--color-grey-900);
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 4px);
	bottom: -7px;
	clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
	pointer-events: none;
	opacity: 0;
	transform: translateY(5px);
	transition: all 0.3s;
}
body:not(.home) .header-nav ul li.current-menu-item a:before{
	opacity: 1;
}
body:not(.home) .header-nav ul li.current-menu-item a:after{
	opacity: 1;
	transform: translateY(0px);
}
body:not(.home) .header-nav ul li.current-menu-item a{
	color: transparent;
}
.site-header__right{
	display: flex;
	align-items: center;
}
.header-lang ul{
	display: flex;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: var(--color-grey-500);
	text-transform: uppercase;
}
.header-lang ul li:not(:last-child):after{
	content: '';
	display: inline-block;
	width: 1px;
	height: 14px;
	background: var(--color-grey-400);
	margin: 0 8px;
}
.header-lang ul li a{
	color: var(--color-grey-500);
	text-decoration: none;
	transition: color 0.2s;
}
.header-lang ul li.current-lang a{
	font-weight: 700;
	color: var(--color-grey-800);
	pointer-events: none;
}
.header-lang ul li a:hover{
	color: var(--color-blue);
}
.header-btn{
	margin-left: 25px;
}
.header-btn a{
	display: inline-block;
	padding: 11px 30px;
	border: 1px solid var(--color-grey-900);
	border-radius: 30px;
	background: none;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-grey-900);
	text-decoration: none;
	transition: all 0.2s;
}
.header-btn a:hover{
	background: var(--color-grey-900);
	color: var(--color-white);
}
.touch-menu{
	display: none;
}
/* Middle
-----------------------------------------------------------------------------*/
.section-welcome{
	padding: 157px 0 38px;
}
.section-welcome__container{
	display: flex;
}
.section-welcome__left{
	width: 52%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.section-welcome__flag{
	margin-bottom: 30px;
}
.section-welcome__flag ul{
	display: flex;
}
.section-welcome__flag ul li{
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #F3F1EC;
	margin: 0 -14px 0 10px;
	overflow: hidden;
}
.section-welcome__content{
	max-width: 100%;
}
.section-welcome__title{
	font-weight: 500;
	font-size: 62px;
	line-height: 62px;
	letter-spacing: -0.03em;
	margin-bottom: 23px;
}
.section-welcome__text{
	width: 400px;
	max-width: 100%;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	margin: 0 0 33px 0;
}
.section-welcome__right{
	width: 48%;
}
.section-welcome__image{
	line-height: 0;
	margin: 0 0 0 -89px;
}
.section-partners{
	padding: 80px 0 38px;
	position: relative;
	overflow: hidden;
}
.section-partners__title{
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	margin-bottom: 17px;
}
.section-partners__list{
	position: relative;
	padding: 28px 0 24px;
}
.section-partners__list:before{
	content: '';
	display: block;
	border-top: 1px solid var(--color-grey-300);
	border-bottom: 1px solid var(--color-grey-300);
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((100vw - 1160px) / -2);
	right: calc((100vw - 1160px) / -2);
}
.section-partners__list ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.section-partners__list li{
	position: relative;
}
.section-partners__list li img{
	max-height: 50px;
}
.section-partners__list li.clone{
	display: none;
}
.section-why{
	padding: 81px 0;
}
.section-title{
	font-weight: 500;
	font-size: 55px;
	line-height: 61px;
	letter-spacing: -0.03em;
	margin-bottom: 49px;
}
.section-why__container{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.section-why__col{
	padding: 0 10px 20px;
}
.section-why_middle{
	width: 41.7%;
}
.section-why_large{
	width: 58.3%;
}
.section-why_small{
	width: 33.3333%;
}
.section-why__item{
	min-height: 290px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 31px 30px;
	background: #fff;
	border: 1px solid var(--color-grey-200);
	border-radius: 30px;
}
.section-why__head{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 55px;
}
.section-why__name{
	font-weight: 500;
	font-size: 34px;
	line-height: 37px;
}
.section-why__icon{
	flex-shrink: 0;
}
.section-why__text{
	margin-left: 33%;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
}
.section-why__btn{
	text-align: right;
}
.section-why_middle .section-why__text{
	margin-left: 20%;
}
.section-why_small .section-why__text{
	margin-left: 26%;
}
.section-why_blue .section-why__item{
	background: var(--color-blue);
	border: 1px solid var(--color-blue-dark);
	color: var(--color-white);
}
.section-why__slider,.section-why .slider-control{
	display: none;
}
.section-quote__container{
	display: flex;
	border-top: 1px solid var(--color-grey-300);
	padding: 74px 0 129px;
}
.section-quote__icon{
	flex-shrink: 0;
}
.section-quote__icon svg{
	fill: var(--color-orange);
}
.section-quote__text{
	font-weight: 500;
	font-size: 34px;
	line-height: 37px;
	padding: 6px 80px 0 60px;
}
.section-quote__author{
	display: flex;
	align-items: flex-start;
	flex-shrink: 0;
	padding: 4px 30px 0 0;
}
.section-quote__image{
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	line-height: 0;
}
.section-quote__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.section-quote__info{
	padding-left: 14px;
}
.section-quote__info svg{
	background: var(--color-orange);
}
.section-quote__name{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 1px;
}
.section-quote__status{
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-grey-600)
}

.section-comunity{
	padding: 100px 0 0;
	background: var(--color-grey-900);
	color: var(--color-white);
}
.section-comunity .section-title{
	position: relative;
	z-index: 1;
}
.section-comunity__container{
	width: 1440px;
	max-width: 100%;
	margin: -145px auto 0;
	position: relative;
}
.section-comunity__map{
	line-height: 0;
}
.section-comunity__list li{
	position: absolute;
}
.section-comunity__list li:nth-child(1){
	top: 32.2%;
	left: 17.6%;
}
.section-comunity__list li:nth-child(2){
	top: 33.6%;
	left: 44.8%;
}
.section-comunity__list li:nth-child(3){
	top: 39.9%;
	left: 70.8%;
}
.section-comunity__list li:nth-child(4){
	top: 58.7%;
	left: 63.9%;
}
.section-comunity__list li:nth-child(5){
	top: 64.7%;
	left: 10.3%;
}
.section-comunity__list li:nth-child(6){
	top: 68.7%;
	left: 36.2%;
}
.section-comunity__list li:nth-child(7){
	top: 71.3%;
	left: 73.9%;
}
.section-comunity__map_mobile{
	display: none;
}
.section-comunity__item{
	display: flex;
	align-items: center;
	height: 43px;
	padding: 0 11px;
	background: var(--color-grey-800);
	border: 1px solid var(--color-grey-700);
	box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.25);
	border-radius: 43px;
}
.section-comunity__item span{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
}
.section-comunity__images{
	display: flex;
	margin: 0 15px 0 -2px;
}
.section-comunity__image{
	width: 29px;
	height: 29px;
	border: 2px solid var(--color-grey-800);
	border-radius: 50%;
	margin: 0 -8px 0 0;
	line-height: 0;
}
.section-comunity__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.section-numbers{
	padding: 120px 0 0;
}
.section-numbers__container{
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0 61px;
	margin: 0 -10px;
	position: relative;
}
.section-numbers__container:after{
	content: '';
	display: block;
	height: 1px;
	background: var(--color-grey-300);
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
}
.section-numbers__col{
	width: 25%;
	padding: 0 10px 20px;
}
.section-numbers__item{
	padding: 10px 25px 23px;
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	border-radius: 30px;
}
.section-numbers__num{
	font-weight: 500;
	font-size: 55px;
	line-height: 61px;
	letter-spacing: -0.03em;
	color: var(--color-grey-600);
	padding: 21px 0 15px;
	border-bottom: 1px solid var(--color-grey-300);
	margin-bottom: 23px;
}
.section-numbers__text{
	display: flex;
	align-items: flex-end;
	min-height: 54px;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: var(--color-grey-500);
}
.section-numbers__item_blue{
	background: var(--color-blue);
	border-color: var(--color-blue-dark);
}
.section-numbers__item_blue .section-numbers__num{
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.2);
}
.section-numbers__item_blue .section-numbers__text{
	color: var(--color-white);
}
.section-industrial{
	padding: 79px 0 110px;
}
.section-industrial__list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px 0 0;
}
.section-industrial__list li{
	display: inline-flex;
	align-items: center;
	height: 67px;
	padding: 20px 41px;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	border-radius: 20px;
	margin: 0 10px 10px 0;
}
.section-industrial__list li:before{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 10px;
}
.section-industrial__list li.color-blue:before{background: var(--color-blue);}
.section-industrial__list li.color-red:before{background: var(--color-red);}
.section-industrial__list li.color-yellow:before{background: var(--color-yellow);}
.section-industrial__list li.color-orange:before{background: var(--color-orange);}
.section-types{
	padding: 120px 0 100px;
	background: var(--color-grey-900);
	color: var(--color-white);
}
.section-types__container{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0;
	margin: 0 -10px;
}
.section-types__col{
	width: 50%;
	padding: 0 10px 20px;
}
.section-types__col_2{
	width: 100%;
}
.section-types__item{
	height: 100%;
	background: var(--color-grey-800);
	border: 1px solid var(--color-grey-700);
	border-radius: 30px;
	padding: 23px 23px 38px 40px;
}
.section-types__head{
	display: flex;
	align-items: flex-start;
	margin-bottom: 44px;
}
.section-types__left{
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 16px 0 0 0;
}
.section-types__tag{
	display: inline-flex;
	align-items: center;
	background: var(--color-grey-700);
	border: 1px solid var(--color-grey-600);
	padding: 5px 10px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-blue-light);
}
.section-types__tag i{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: var(--color-blue-light);
	border-radius: 50%;
	flex-shrink: 0;
	margin: 1px 7px 0 0;
}
.section-types__tag_red{
	color: var(--color-red);
}
.section-types__tag_red i{
	background: var(--color-red);
}
.section-types__tag_yellow{
	color: var(--color-yellow);
}
.section-types__tag_yellow i{
	background: var(--color-yellow);
}
.section-types__title{
	font-weight: 500;
	font-size: 34px;
	line-height: 37px;
	color: var(--color-white);
	margin-bottom: 16px;
}
.section-types__text{
	width: 410px;
	max-width: 100%;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-grey-300);
}
.section-types__image{
	width: 60%;
	padding-left: 83px;
	display: flex;
	justify-content: flex-end;
	line-height: 0;
	position: relative;
}
.section-types__icon{
	position: absolute;
	top: 0;
	left: -10px;
	bottom: 0;
}
.section-types__image span{
	width: 220px;
	max-width: 100%;
	position: relative;
}
.section-types__image span img{
	border-radius: 20px;
}
.section-types__itemlarge{
	display: flex;
	background: var(--color-grey-800);
	border: 1px solid var(--color-grey-700);
	border-radius: 30px;
	padding: 23px 23px 23px 40px;
}
.section-types__itemlarge .section-types__left{
	width: 50%;
	padding: 16px 62px 10px 0;
}
.section-types__itemlarge .section-types__image{
	width: 50%;
	padding-left: 110px;
}
.section-types__itemlarge .section-types__image span{
	width: 436px;
}
.section-types__itemlarge .section-types__icon{
	top: -3px;
}
.section-types__itemlarge .section-types__text{
	width: auto;
}
.section-types__slider{
	display: none;
}
.section-types .slider-control{
	display: none;
}
.section-types .slider-control__nums{
	color: var(--color-white);
}
.section-types .slider-control .slider-control__prev svg,
.section-types .slider-control .slider-control__next svg{
	fill: var(--color-white);
}
.section-gallery{
	overflow: hidden;
	padding: 121px 0 80px;
}
.section-gallery__slider{
	padding: 10px 0 0;
	margin: 0 -300px 30px;
	mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.section-gallery__slide{
	opacity: 0.3;
	transform: scale(0.8) translateX(40px);
	transition: all 0.2s;
}
.slick-center .section-gallery__slide{
	opacity: 1;
	transform: scale(1);
}
.slick-center + .slick-slide .section-gallery__slide{
	transform: scale(0.8) translateX(-40px);
}
.section-gallery__slide a{
	display: block;
	width: 766px;
	max-width: 100%;
	position: relative;
	margin: 0 auto;
	text-decoration: none;
}
.section-gallery__slide a img{
	border-radius: 20px;
}
.section-gallery__slide a span{
	display: block;
	padding: 3px 13px 3px 21px;
	background: #F3F1EC;
	border: 1px solid var(--color-grey-200);
	border-radius: 10px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-grey-900);
	position: absolute;
	left: 12px;
	bottom: 12px;
	opacity: 0;
	transform: scale(0);
	transition: all 0.2s;
}
.section-gallery__slide a span:before{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: var(--color-grey-900);
	border-radius: 50%;
	position: absolute;
	top: 14px;
	left: 11px;
}
.slick-center .section-gallery__slide a span{
	opacity: 1;
	transform: scale(1);
}
.section-get{
	padding: 79px 30px;
	background: var(--color-blue);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
.section-get__decor-1{
	position: absolute;
	bottom: 0;
	left: 0;
	line-height: 0;
}
.section-get__decor-2{
	position: absolute;
	top: 0;
	right: 0;
	line-height: 0;
}
.section-get__container{
	position: relative;
	text-align: center;
}
.section-get__title{
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 8px;
}
.section-get__text{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 10px;
}
.section-get_1{
	width: 1340px;
	max-width: calc(100% - 40px);
	border-radius: 30px;
}
.section-member{
	padding: 121px 0 100px;
}
.section-member__container{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.section-member__col{
	width: 33.333333333%;
	padding: 0 10px 20px;
}
.section-member__item{
	height: 100%;
	padding: 32px;
	background: #FFFEFD;
	border: 1px solid var(--color-grey-200);
	border-radius: 30px;
}
.section-member__num{
	display: inline-block;
	padding: 4px 21px 3px 25px;
	border: 1px solid var(--color-grey-300);
	border-radius: 40px;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-grey-800);
	position: relative;
	margin-bottom: 16px;
}
.section-member__num:before{
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	background: var(--color-grey-900);
	border-radius: 50%;
	position: absolute;
	top: 13px;
	left: 17px;
}
.section-member__title{
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: var(--color-grey-900);
	margin-bottom: 12px;
}
.section-member__text{
	padding: 0 0 0 40px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
}
.section-member__slider,.section-member .slider-control{
	display: none;
}
.section-steps{
	padding: 128px 0 120px;
	background: var(--color-grey-900);
	color: var(--color-white);
}
.section-steps__container{
	display: flex;
}
.section-steps__left{
	width: 50%;
	padding-right: 135px;
}
.section-steps__right{
	width: 50%;
	padding: 2px 0 0 11px;
}
.section-steps__items{
	margin-bottom: 5px;
}
.section-steps__item{
	padding: 40px 0;
	border-bottom: 1px solid var(--color-grey-600);
}
.section-steps__item:first-child{
	padding-top: 0;
}
.section-steps__item:last-child{
	border: none;
}
.section-steps__num{
	display: inline-block;
	padding: 3px 15px;
	background: var(--color-grey-800);
	border: 1px solid var(--color-grey-600);
	border-radius: 40px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-beige-light);
	margin-bottom: 26px;
}
.section-steps__title{
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	margin-bottom: 13px;
}
.section-steps__text{
	width: 375px;
	max-width: 100%;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-grey-400);
}
.section-steps__blue{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 24px;
	background: var(--color-blue);
	border-radius: 20px;
}
.section-steps__blue .section-steps__title{
	margin: 0 55px 0 0;
}
.section-steps__btn{
	flex-shrink: 0;
}
.section-review{
	padding: 121px 0;
}
.section-review__slider{
	background: var(--color-beige-light);
	border: 1px solid var(--color-grey-200);
	border-radius: 20px;
	margin-bottom: 32px;
}
.section-review__container{
	display: flex;
	padding: 39px 39px 41px;
}
.section-review__left{
	width: 57%;
	padding-right: 60px;
	border-right: 1px solid var(--color-grey-200);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.section-review__quotes{
	display: block;
	margin: -8px 0 38px -8px;
}
.section-review__quotes svg{
	fill: var(--color-orange);
}
.section-review__text{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
}
.section-review__right{
	width: 43%;
	padding-left: 32px;
}
.section-review__info{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 22px;
}
.section-review__content{
	padding-right: 30px;
}
.section-review__name{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
}
.section-review__status{
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-grey-500);
}
.section-review__image{
	width: 190px;
	flex-shrink: 0;
	line-height: 0;
}
.section-review__image img{
	border-radius: 10px;
}
.section-review__icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 50px;
	padding: 16px;
	background: #F3F1EC;
	border-radius: 8px;
}
.section-faq{
	padding: 121px 0;
	background: var(--color-beige-light);
}
.section-faq__container{
	width: 767px;
	max-width: 100%;
	margin-left: auto;
}
.section-faq__item{
	padding: 35px 0 31px;
	border-bottom: 1px solid var(--color-grey-300);
}
.section-faq__item:first-child{
	padding-top: 0;
}
.section-faq__question{
	padding-right: 50px;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	position: relative;
	cursor: pointer;
	user-select: none;
}
.section-faq__question i{
	display: block;
	width: 12px;
	height: 6px;
	line-height: 0;
	position: absolute;
	top: 6px;
	right: 10px;
}
.section-faq__question i svg{
	fill: var(--color-grey-900);
	transform: scaleY(-1);
	transition: transform 0.3s;
}
.section-faq__item.active .section-faq__question i svg{
	transform: scaleY(1);
}
.section-faq__answer{
	display: none;
	padding: 23px 140px 0 100px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-grey-700);
}

/* People
-----------------------------------------------------------------------------*/
.people-welcome{
	padding: 159px 0 80px;
	background: #D9DFEF;
}
.people-welcome__container{
	display: flex;
	align-items: flex-end;
}
.people-welcome__left{
	width: 55%;
}
.people-welcome__image{
	line-height: 0;
}
.people-welcome__right{
	width: 45%;
	padding: 0 0 0 51px;
}
.people-welcome__title{
	font-weight: 500;
	font-size: 62px;
	line-height: 62px;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}
.people-welcome__text{
	width: 395px;
	max-width: 100%;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: var(--color-grey-800);
}
.people-main{
	padding: 119px 0;
	background: var(--color-beige-light);
}
.people-main__container{
	display: flex;
}
.people-main__left{
	width: 296px;
	padding: 24px 50px 0 0;
}
.people-main__list{
	position: sticky;
	top: 20px;
	left: 0;
}
.people-main__list ul{
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
}
.people-main__list li{
	margin-bottom: 19px;
}
.people-main__list a{
	display: inline-block;
	padding: 0 11px 0 0;
	position: relative;
	color: var(--color-grey-600);
	text-decoration: none;
	transition: all 0.1s;
}
.people-main__list a:hover{
	padding: 0 7px 0 4px;
	color: var(--color-blue);
}
.people-main__list a i{
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(90deg);
	opacity: 0;
	transition: opacity 0.1s;
}
.people-main__list a i svg{
	fill: var(--color-grey-900);
}
.people-main__list a span{
	display: inline-block;
}
.people-main__list a.active{
	color: var(--color-grey-900);
	padding: 0 0 0 11px;
}
.people-main__list a.active i{
	opacity: 1;
}
.people-main__list a.active span{
	transform: scale(1.21);
	transform-origin: left center;
}
.people-main__right{
	width: calc(100% - 296px);
}
.people-main__section{
	padding: 79px 0;
	border-bottom: 1px solid #CDCAC8;
}
.people-main__section:first-child{
	padding-top: 0;
}
.people-main__section:last-child{
	padding-bottom: 0;
	border: none;
}
.people-main__title{
	font-weight: 500;
	font-size: 55px;
	line-height: 61px;
	letter-spacing: -0.03em;
	margin-bottom: 49px;
}
.people-main__cols{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.people-main__col{
	width: 25%;
	padding: 0 10px 40px;
}
.people-main__item{
	cursor: pointer;
}
.people-main__image{
	line-height: 0;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 12px;
}
.people-main__image img{
	width: 100%;
	transition: transform 0.2s;
}
.people-main__image:hover img{
	transform: scale(1.1);
}
.people-main__content{
	padding: 11px 10px 12px;
	border: 1px solid var(--color-grey-300);
	border-radius: 10px;
}
.people-main__name{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 2px;
}
.people-main__status{
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-grey-500);
}
.people-main__more{
	width: 100%;
	padding: 8px 10px 0;
	text-align: center;
}
.people-main__more:last-child{
	display: none;
}
.people-main__more span{
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-blue);
	cursor: pointer;
}
.people-main__more span i{
	display: inline-block;
	margin-left: 7px;
}
.people-main__more span i svg{
	fill: var(--color-blue);
	transform: rotate(-90deg);
}
.people-main__more ~ .people-main__col{
	display: none;
}
.people-info{
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 20;
	transition: all 0.2s;
}
.people-info.show{
	visibility: visible;
	opacity: 1;
}
.people-info__overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.people-info__panel{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 570px;
	max-width: calc(100vw - 20px);
	padding: 64px 40px 30px;
	background: #fff;
	transform: translateX(30px);
	transition: all 0.2s;
}
.people-info.show .people-info__panel{
	transform: translateX(0px);
}
.people-info__close{
	line-height: 0;
	position: absolute;
	top: 19px;
	right: 19px;
	cursor: pointer;
}
.people-info__wrapper{
	height: 100%;
	overflow-y: auto;
	padding-right: 20px;
	margin-right: -20px;
	position: relative;
}
.people-info__wrapper:not(.success):before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(images/loading.svg) no-repeat center / 100px auto;
}
.people-info__wrapper::-webkit-scrollbar{
	width: 5px;
	height: 8px;
}
.people-info__wrapper::-webkit-scrollbar-thumb{
	background: var(--color-grey-900);
	border-radius: 3px;
}
.people-info__head{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
.people-info__tags{
	display: flex;
	flex-wrap: wrap;
}
.people-info__tags li{
	padding: 5px 12px 5px 21px;
	border: 1px solid var(--color-grey-300);
	border-radius: 30px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	position: relative;
	cursor: default;
	margin: 0 8px 8px 0;
}
.people-info__tags li:before{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: var(--color-grey-900);
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 11px;
}
.people-info__image{
	width: 230px;
	height: 260px;
	border-radius: 10px;
	overflow: hidden;
	line-height: 0;
	flex-shrink: 0;
}
.people-info__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.people-info__name{
	font-weight: 500;
	font-size: 34px;
	line-height: 37px;
	margin-bottom: 23px;
}
.people-info__text{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-grey-600);
}

/* Contacts
-----------------------------------------------------------------------------*/
.contact-main{
	padding: 186px 0 123px;
	position: relative;
	z-index: 1;
}
.contact-main__container{
	display: flex;
}
.contact-main__left{
	width: 50%;
	padding-right: 90px;
}
.contact-main .section-title{
	margin-bottom: 38px;
}
.contact-main__members{
	display: flex;
}
.contact-main__members li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: #F5F4F1;
	border: 2px solid #F5F4F1;
	border-radius: 50%;
	line-height: 0;
	overflow: hidden;
	margin-right: -10px;
}
.contact-main__members li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-main__members li.num{
	border-color: var(--color-grey-300);
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-grey-600);
}
.contact-main__right{
	width: 50%;
	padding: 2px 0 0 10px;
}
.contact-form{
	width: 472px;
	max-width: 100%;
}
.form-input{
	margin-bottom: 23px;
}
.form-input label{
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-grey-600);
	margin-bottom: 5px;
}
.form-input label span{
	display: inline-block;
	color: var(--color-error);
	transform: translate(5px, -5px);
}
.form-input input{
	width: 100%;
	height: 48px;
	padding: 0 15px;
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
}
.form-radio{
	margin-bottom: 32px;
}
.form-radio__title{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 13px;
}
.form-radio .wpcf7-list-item{
	margin: 0 0 9px;
}
.form-radio .wpcf7-list-item label{
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--color-grey-700);
}
.form-radio .wpcf7-list-item label input{
	display: none;
}
.form-radio .wpcf7-list-item label > span{
	display: inline-block;
	position: relative;
	padding-left: 22px;
}
.form-radio .wpcf7-list-item label > span:before{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border: 1px solid #A7A5A4;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 0;
}
.form-radio .wpcf7-list-item label > input:checked + span:before{
	border-color: var(--color-grey-900);
}
.form-radio .wpcf7-list-item label > input:checked + span:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: var(--color-grey-900);
	border-radius: 50%;
	position: absolute;
	top: 7px;
	left: 3px;
}
.form-checkbox{
	margin-bottom: 12px;
}
.form-checkbox .wpcf7-list-item{
	margin: 0;
}
.form-checkbox label{
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	color: var(--color-grey-700);
}
.form-checkbox label input{
	display: none;
}
.form-checkbox label > span{
	display: inline-block;
	position: relative;
	padding-left: 22px;
}
.form-checkbox label > span a{
	color: var(--color-blue);
	text-decoration: none;
}
.form-checkbox label > span:before{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border: 1px solid #A7A5A4;
	border-radius: 2px;
	position: absolute;
	top: 1px;
	left: 0;
}
.form-checkbox label > input:checked + span:before{
	border-color: var(--color-grey-900);
	background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72' width='10' height='10'%3E%3Cpath d='M57.658,12.643c1.854,1.201,2.384,3.678,1.183,5.532l-25.915,40c-0.682,1.051-1.815,1.723-3.064,1.814	C29.764,59.997,29.665,60,29.568,60c-1.146,0-2.241-0.491-3.003-1.358L13.514,43.807c-1.459-1.659-1.298-4.186,0.36-5.646	c1.662-1.46,4.188-1.296,5.646,0.361l9.563,10.87l23.043-35.567C53.329,11.971,55.806,11.442,57.658,12.643z'/%3E%3C/svg%3E") center / 10px auto;
}
.form-input select{
	width: 100%;
	height: 50px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid #6B6B6B;
	border-radius: 3px;
	font-family: 'Manrope';
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}
.form-input input:focus,
.form-input textarea:focus{
	border: 2px solid #568A6D;
}
.nice-select{
	width: 100%;
	position: relative;
}
.nice-select select{
	display: none;
}
.nice-select__current{
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	border-radius: 6px;
	position: relative;
	width: 100%;
	height: 50px;
	padding: 14px 50px 14px 12px;
	font-size: 14px;
	line-height: 18px;
	color: #6B6B6B;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
}
.nice-select__current span{
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.nice-select__current i{
	transform: rotate(-90deg);
	position: absolute;
	top: 19px;
	right: 20px;
	line-height: 0;
}
.nice-select.selected .nice-select__current{
	font-weight: 600;
	color: #000;
}
.nice-select.opened .nice-select__current{
	padding: 13px 49px 13px 11px;
	border: 2px solid #568A6D;
}
.nice-select.opened .nice-select__current i{
	transform: rotate(90deg);
}
.nice-select__list{
	display: none;
	max-height: 50vh;
	overflow-y: auto;
	overflow-x: hidden;
	margin: 0;
	padding: 9px 0;
	list-style: none;
	min-width: 100%;
	background: var(--color-white);
	border: 1px solid var(--color-grey-200);
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	position: absolute;
	top: 52px;
	left: 0;
	z-index: 1;
}
.nice-select.opened .nice-select__list{
	display: block;
}
.nice-select__list span{
	display: block;
	padding: 10px 23px 10px 23px;
	cursor: pointer;
}
.nice-select__list span:hover{
	background: var(--color-grey-200);
}
.nice-select__list::-webkit-scrollbar{
	width: 5px;
}
.nice-select__list::-webkit-scrollbar-thumb{
	background-color: #d0d0d0;
}
.form-input input[name="your-experience"]{
	display: none;
}
.form-input.not-valid .nice-select__current{
	border-color: var(--color-error);
}


.wpcf7-not-valid-tip,.wpcf7-response-output{
	display: none !important;
}
.wpcf7-form.invalid .wpcf7-not-valid{
	border-color: var(--color-error);
}
.thankyou-main{
	padding: 179px 0 208px;
}
.thankyou-main__container{
	text-align: center;
}
.thankyou-main__image{
	width: 260px;
	max-width: 100%;
	margin: 0 auto 47px;
}
.thankyou-main__image .anim-1,.thankyou-main__image .anim-2,.thankyou-main__image .anim-3{
	transition: all 0.5s;
}
.thankyou-main__image[data-step="2"] .anim-1{
	transform: translateX(calc(100% - 120px));
}
.thankyou-main__image[data-step="2"] .anim-3{
	transform: translateX(calc(-100% + 120px));
}
.thankyou-main__image[data-step="3"] .anim-1{
	transform: translateX(calc(50% - 60px));
}
.thankyou-main__image[data-step="3"] .anim-2{
	transform: translateX(calc(50% - 60px));
}
.thankyou-main__image[data-step="3"] .anim-3{
	transform: translateX(calc(-100% + 120px));
}
.thankyou-main__image[data-step="4"] .anim-1{
	transform: translateX(calc(50% - 60px));
}
.thankyou-main__image[data-step="4"] .anim-2{
	transform: translateX(calc(-50% + 60px));
}
.thankyou-main__title{
	width: 554px;
	max-width: 100%;
	font-weight: 500;
	font-size: 62px;
	line-height: 62px;
	letter-spacing: -0.03em;
	margin: 0 auto 16px;
}
.thankyou-main__text{
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 23px;
}
.thankyou-main__link{
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
}
.thankyou-main__link a{
	color: var(--color-blue);
	text-decoration: none;
}
/* Page
-----------------------------------------------------------------------------*/
.page-welcome{
	padding: 142px 0 60px;
}
.page-welcome__container{
	display: flex;
	align-items: flex-end;
}
.page-welcome__left{
	width: 50%;
	padding-right: 30px;
}
.page-welcome__title{
	font-weight: 500;
	font-size: 62px;
	line-height: 62px;
	letter-spacing: -0.03em;
	margin-bottom: 18px;
}
.page-welcome__right{
	width: 50%;
	text-align: right;
}
.page-welcome__image{
	display: inline-block;
}
.page-main{
	padding: 120px 0 55px;
}
.page-main__content{
	width: 630px;
	max-width: 100%;
	margin: 0 auto;
}
.post-body{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-grey-700);
}
.post-body p{
	margin-bottom: 30px;
}
.post-body h2{
	font-weight: 500;
	font-size: 34px;
	line-height: 37px;
	color: var(--color-grey-900);
	margin-bottom: 19px;
}
.post-body hr{
	height: 1px;
	background: var(--color-grey-300);
	border: none;
	margin: 60px 0 65px;
}
.post-body a{
	color: var(--color-blue);
	text-decoration: none;
}
.post-body a:hover{
	color: var(--color-grey-900);
}

/* Common
-----------------------------------------------------------------------------*/
.slider-control{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.slider-control__nums{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: var(--color-grey-900)
}
.slider-control__nums i{
	margin: 0 4px;
}
.slider-control__arrows{
	display: inline-flex;
	border: 1.01765px solid var(--color-grey-600);
	border-radius: 50px;
	flex-shrink: 0;
	overflow: hidden;
}
.slider-control__prev,
.slider-control__next{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 38px;
	cursor: pointer;
	position: relative;
	transition: background 0.2s;
}
.slider-control__prev{
	margin-right: -1px;
}
.slider-control__next::before,
.slider-control__next::after{
	content: '';
	display: block;
	width: 1px;
	height: 9px;
	background: var(--color-grey-600);
	position: absolute;
	left: 0;
}
.slider-control__next::before{
	top: 0;
}
.slider-control__next::after{
	bottom: 0;
}
.slider-control__prev svg,
.slider-control__next svg{
	fill: var(--color-grey-900);
	transition: fill 0.2s;
}
.slider-control__next svg{
	transform: scaleX(-1) translateX(-1px);
}
.slider-control__prev:not(.disabled):hover,
.slider-control__next:not(.disabled):hover{
	background: var(--color-grey-600);
	position: relative;
}
.slider-control__prev:not(.disabled):hover svg,
.slider-control__next:not(.disabled):hover svg{
	fill: var(--color-white);
}
.slider-control__prev.disabled,
.slider-control__next.disabled{
	cursor: default;
}
.slider-control__prev.disabled svg,
.slider-control__next.disabled svg{
	opacity: 0.3;
}
@keyframes marqueeToLeft{
	from{transform: translateX(0%);}
	to{transform: translateX(-360%);}
}
@keyframes marqueeToRight{
	from{transform: translateX(-360%);}
	to{transform: translateX(0%);}
}


/* Footer
-----------------------------------------------------------------------------*/
.site-footer{
	flex: 0 0 auto;
	background: var(--color-grey-900);
	position: relative;
	color: #F5F5F5;
}
.site-footer__container{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 63px 0 58px;
}
.site-footer__left{
	flex-shrink: 0;
}
.footer-logo{
	line-height: 0;
	width: 147px;
}
.footer-logo svg{
	fill: var(--color-white);
}
.site-footer__right{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.footer-menu{
	margin-left: 120px;
}
.footer-menu__title{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #F5F5F5;
	margin-bottom: 12px;
}
.footer-menu ul{
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
}
.footer-menu ul li{
	margin-bottom: 12px;
}
.footer-menu ul a{
	color: var(--color-grey-300);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-menu ul a:hover{
	color: var(--color-blue);
}
.footer-social{
	display: flex;
	margin-left: 158px;
}
.footer-social a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	line-height: 0;
	position: relative;
	margin-left: 8px;
}
.footer-social a:before{
	content: '';
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: transform 0.2s;
}
.footer-social a:nth-child(1):before{background: linear-gradient(90deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0) 100%);}
.footer-social a:nth-child(2):before{background: linear-gradient(270deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0) 100%);}
.footer-social a:nth-child(3):before{background: linear-gradient(180deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0) 100%);}
.footer-social a:hover:before{
	transform: rotate(-90deg);
}
.footer-social a:nth-child(1):hover:before{
	transform: rotate(90deg);
}
.footer-social a svg{
	position: relative;
	fill: #F5F5F5;
}
.site-footer__bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--color-grey-600);
	padding: 16px 0 30px;
}
.site-footer__text{
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	color: var(--color-grey-300);
}
.site-footer__text a{
	color: var(--color-grey-300);
	text-decoration: none;
	transition: color 0.2s;
}
.site-footer__text a:hover{
	color: var(--color-blue);
}
.site-footer__text ul{
	display: flex;
	flex-wrap: wrap;
}
.site-footer__text ul li:not(:last-child):after{
	content: '|';
	display: inline-block;
	margin: 0 10px;
}

/* Mobile
-----------------------------------------------------------------------------*/
.mobile-panel{
	visibility: hidden;
	transform: translateX(-400px);
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #F5F4F1;
	transition: all 0.2s ease-out 0s;
	overflow-y: auto;
	z-index: 101;
}
.mobile-panel.show{
	visibility: visible;
	transform: translateX(0px);
	opacity: 1;
}
.mobile-head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #E9E5E3;
	padding: 12px 20px 13px;
}
.mobile-close{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.mobile-body{
	overflow-y: auto;
	max-height: calc(100vh - 66px - 93px);
	padding: 45px 20px;
}
.mobile-menu{
	padding-bottom: 11px;
}
.mobile-menu > ul > li{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 31px;
}
.mobile-menu > ul > li > a{
	display: inline-block;
	text-decoration: none;
	position: relative;
}
.mobile-menu > ul > li > a:hover:before,
.mobile-menu > ul > li.active > a:before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-grey-900);
	position: absolute;
	left: calc(50% - 4px);
	bottom: -5px;
	clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
	pointer-events: none;
}
.mobile-lang{
	border-top: 1px solid var(--color-grey-300);
	padding: 31px 0 0;
}
.mobile-lang__title{
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 13px;
}
.mobile-lang__list{
	display: flex;
	flex-wrap: wrap;
}
.mobile-lang__list li{
	margin: 0 12px 12px 0;
}
.mobile-lang__list a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 83px;
	height: 36px;
	border: 1px solid var(--color-grey-500);
	border-radius: 20px;
	font-weight: 500;
	font-size: 14px;
	line-height:  20px;
	text-transform: uppercase;
	color: var(--color-grey-500);
	text-decoration: none;
}
.mobile-lang__list li.current-lang a{
	border-color: var(--color-grey-900);
	font-weight: 700;
	color: var(--color-grey-900);
	pointer-events: none;
}
.mobile-btn{
	border-top: 1px solid var(--color-grey-300);
	padding: 24px 20px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}
.mobile-btn a{
	display: block;
	padding: 10px 10px;
	border: 1px solid var(--color-grey-900);
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-grey-900);
	text-align: center;
	text-decoration: none;
}

/* Animate
-----------------------------------------------------------------------------*/
.animated{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.hinge{
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}
@-webkit-keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.fadeIn{
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown{
	0%{
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInDown{
	0%{
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
.fadeInDown{
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft{
	0%{
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes fadeInLeft{
	0%{
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.fadeInLeft{
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight{
	0%{
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes fadeInRight{
	0%{
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
  
	100%{
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.fadeInRight{
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp{
	0%{
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInUp{
	0%{
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
.fadeInUp{
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.wow{
	visibility: hidden;
}
/* Redactor Styles
-----------------------------------------------------------------------------*/
.alignnone{
	margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter{
	margin: auto;
	text-align: center;
}
.alignright{
	float:right;
	margin: 5px 0 20px 20px;
}
.alignleft{
	float:left;
	margin: 5px 20px 20px 0;
}
.aligncenter{
	display: block;
	margin: 5px auto 5px auto;
}
a img.alignright{
	float:right;
	margin: 5px 0 20px 20px;
}
a img.alignnone{
	margin: 5px 20px 20px 0;
}
a img.alignleft{
	float:left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto
}
.wp-caption{
	max-width: 100%;
	padding: 0 0 10px;
	text-align: center;
	margin-top:20px !important;
	margin-bottom:20px !important;
}
.wp-caption.alignnone{
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft{
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright{
	margin: 5px 0 20px 20px;
}
.wp-caption img{
	border:3px solid #dbdddd;
	height: auto;
	margin:0 0 5px 0;
	max-width: 98.5%;
	padding:0;
	width: auto;
}
.wp-caption p.wp-caption-text{
	font-size:12pt;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}

/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1200px){
	.inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.section-title{
		font-size: 46px;
		line-height: 52px;
	}
	.site-header{
		border-bottom: 1px solid var(--color-grey-200);
	}
	.page-template-default .site-header,
	.page-template-tpl_people .site-header{
		border-color: var(--color-grey-300);
	}
	.site-header__container{
		padding: 12px 0 11px;
	}
	.site-header__center,.header-lang,.header-btn{
		display: none;
	}
	.touch-menu{
		display: block;
		cursor: pointer;
	}
	.section-welcome{
		padding: 120px 0 38px;
	}
	.section-welcome__title{
		font-size: 42px;
		line-height: 48px;
	}
	.section-welcome__image{
		margin: 0 0 0 -30px;
	}
	.section-partners{
		padding: 40px 0 30px;
	}
	.section-partners__list{
		padding: 10px 0 10px;
	}
	.section-partners__list:before{
		left: -20px;
		right: -20px;
	}
	.section-partners__list ul{
		animation: marqueeToLeft 200s linear 0s infinite;
	}
	.section-partners__list li{
		flex-shrink: 0;
		margin: 0 16px;
	}
	.section-partners__list li.clone{
		display: block;
	}
	.section-why{
		padding: 20px 0 50px;
	}
	.section-why__item{
		min-height: 200px;
		padding: 20px;
	}
	.section-why__name{
		font-size: 20px;
		line-height: 26px;
	}
	.section-why__text{
		margin-left: 0 !important;
	}
	.section-quote__text{
		font-size: 26px;
		line-height: 29px;
		padding: 6px 40px 0 40px;
	}
	.section-quote__container{
		padding: 60px 0;
	}
	.section-comunity{
		padding: 60px 0 0;
	}
	.section-get{
		padding: 79px 0;
	}
	.section-numbers{
		padding: 60px 0 0;
	}
	.section-numbers__num{
		font-size: 40px;
		line-height: 46px;
	}
	.section-industrial{
		padding: 60px 0 50px;
	}
	.section-types{
		padding: 60px 0;
	}
	.section-gallery{
		padding: 60px 0;
	}
	.section-member{
		padding: 60px 0;
	}
	.section-member__text{
		padding: 0;
	}
	.section-steps{
		padding: 60px 0;
	}
	.section-steps__left{
		padding-right: 75px;
	}
	.section-steps__blue{
		flex-direction: column;
		text-align: center;
	}
	.section-steps__blue .section-steps__title{
		margin: 0 0 16px;
	}
	.section-review{
		padding: 60px 0;
	}
	.section-review__left{
		width: 50%;
		padding-right: 30px;
	}
	.section-review__right{
		width: 50%;
	}
	.section-review__image{
		width: 100px;
	}
	.section-faq{
		padding: 60px 0;
	}
	.people-welcome__left{
		width: 45%;
	}
	.people-welcome__right{
		width: 55%;
		padding: 0 0 0 30px;
	}
	.people-welcome__title{
		font-size: 42px;
		line-height: 48px;	
	}
	.people-main{
		padding: 40px 0 60px;
	}
	.people-main__container{
		flex-direction: column;
	}
	.people-main__left{
		width: 100%;
		min-height: 84px;
		padding: 0;
	}
	.people-main__list{
		background: var(--color-beige-light);
		padding: 20px 0 10px 20px;
		margin: 0 -20px;
		position: relative;
	}
	.people-main__list.fixed{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		margin: 0;
		z-index: 5;
	}
	.people-main__list ul{
		display: flex;
		font-weight: 500;
		font-size: 14px;
		overflow-x: auto;
	}
	.people-main__list li{
		flex-shrink: 0;
		margin: 0 12px 10px 0;
	}
	.people-main__list a{
		padding: 9px 15px 9px 15px;
		border: 1px solid var(--color-grey-500) !important;
		border-radius: 8px;
	}
	.people-main__list a.active{
		padding: 9px 16px 9px 26px;
		font-weight: 600;
	}
	.people-main__list a.active span{
		transform: none;
	}
	.people-main__list a i{
		top: 9px;
		left: 15px;
	}
	.people-main__right{
		width: 100%;
		padding: 45px 0 0 0;
	}
	.people-main__title{
		font-size: 44px;
		line-height: 48px;
	}
	.contact-main{
		padding: 120px 0 60px;
	}
	.contact-main__left{
		padding-right: 40px;
	}
	.thankyou-main{
		padding: 120px 0 60px;
	}
	.page-welcome__title{
		font-size: 46px;
		line-height: 52px;
	}
	.page-main{
		padding: 80px 0 50px;
	}
	.footer-menu{
		margin-left: 40px;
	}
	.footer-social{
		margin-left: 40px;
	}
}
@media only screen and (max-width: 992px){
	.section-comunity__map{
		margin: 0 -100px;
	}
	.section-gallery__slider{
		margin: 0 0 30px;
		mask: unset;
	}
	.section-gallery__slide{
		opacity: 1;
		transform: none;
	}
	.section-gallery__slide a span{
		opacity: 1;
		transform: none;
	}
}
@media only screen and (max-width: 767px){
	.button{
		min-width: 150px;
		padding: 13px 48px;
		font-size: 16px;
	}
	.section-title{
		font-size: 32px;
		line-height: 35px;
		margin-bottom: 33px;
	}
	.section-welcome{
		padding: 96px 0 20px;
	}
	.section-welcome__container{
		flex-direction: column;
	}
	.section-welcome__left{
		width: 100%;
		padding: 0 0 13px;
	}
	.section-welcome__flag{
		margin-bottom: 78px;
	}
	.section-welcome__flag ul li{
		width: 35px;
		height: 35px;
		margin: 0 0 0 -1px;
	}
	.section-welcome__title{
		font-size: 36px;
		line-height: 36px;
		margin-bottom: 16px;
	}
	.section-welcome__text{
		font-size: 16px;
		line-height: 24px;
		margin: 0 0 24px;
	}
	.section-welcome__right{
		width: 100%;
	}
	.section-welcome__image{
		margin: 0;
	}
	.section-partners{
		padding: 19px 0 38px;
	}
	.section-partners__title{
		margin-bottom: 7px;
	}
	.section-why{
		padding: 26px 0 63px;
	}
	.section-why__container{
		display: none;
	}
	.section-why__slider{
		display: block;
		margin: 0 -20px 25px -5px;
	}
	.section-why__slide{
		padding: 0 5px;
	}
	.section-why__item{
		width: calc(100vw - 40px);
		min-height: 0;
		padding: 23px;
		border-radius: 20px;
	}
	.section-why__head{
		margin-bottom: 33px;
	}
	.section-why__name{
		font-size: 26px;
		line-height: 29px;
	}
	.section-why__icon{
		width: 54px;
	}
	.section-why__text{
		margin: 0;
		font-size: 14px;
		line-height: 22px;
	}
	.section-why .slider-control{
		display: flex;
	}
	.section-quote__container{
		flex-direction: column;
		padding: 32px 0 64px;
	}
	.section-quote__icon{
		width: 45px;
	}
	.section-quote__text{
		padding: 22px 20px 29px 0;
	}
	.section-quote__image{
		width: 56px;
		height: 56px;
	}
	.section-quote__info{
		padding-left: 12px;
	}
	.section-quote__name{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 0;
	}
	.section-quote__status{
		font-size: 12px;
		line-height: 17px;
	}
	.section-comunity{
		padding: 64px 0 0;
	}
	.section-comunity__container{
		width: 375px;
		margin: -32px auto 0;
		mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
	}
	.section-comunity__map_desktop{
		display: none;
	}
	.section-comunity__map_mobile{
		display: block;
		margin: 0;
	}
	.section-comunity__map_mobile img{
		width: 100%;
	}
	.section-comunity__list li:nth-child(1){
		top: 21.2%;
		left: 3.7%;
	}
	.section-comunity__list li:nth-child(2){
		top: 28.5%;
		left: 54.8%;
	}
	.section-comunity__list li:nth-child(3){
		top: 33.9%;
		left: 77.9%;
	}
	.section-comunity__list li:nth-child(4){
		top: 56.4%;
		left: 63.9%;
	}
	.section-comunity__list li:nth-child(5){
		top: 63.5%;
		left: 8.7%;
	}
	.section-comunity__list li:nth-child(6){
		top: 43.9%;
		left: 39%;
	}
	.section-comunity__list li:nth-child(7){
		top: 76.5%;
		left: 80.9%;
	}
	.section-comunity__item{
		height: 30px;
		padding: 0 8px;
	}
	.section-comunity__item span{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
	}
	.section-comunity__images{
		display: none;
	}
	.section-numbers{
		padding: 64px 0 0;
	}
	.section-numbers__container{
		padding: 0 0 54px;
		margin: 0 -5px;
	}
	.section-numbers__container:after{
		left: 5px;
		right: 5px;
	}
	.section-numbers__col{
		width: 50%;
		padding: 0 5px 10px;
	}
	.section-numbers__item{
		padding: 11px;
		border-radius: 20px;
	}
	.section-numbers__num{
		font-size: 32px;
		line-height: 35px;
		padding: 4px 0 12px;
		margin-bottom: 10px;
	}
	.section-numbers__text{
		font-size: 16px;
		line-height: 24px;
	}
	.section-industrial{
		padding: 64px 0 60px;
	}
	.section-industrial__list{
		margin: -8px -4px 0 0;
	}
	.section-industrial__list li{
		height: 39px;
		padding: 8px 17px 8px 13px;
		font-size: 14px;
		line-height: 22px;
		margin: 0 4px 4px 0;
	}
	.section-industrial__list li:before{
		width: 6px;
		height: 6px;
		margin-right: 4px;
	}
	.section-types{
		padding: 64px 0;
	}
	.section-types__container{
		display: none;
	}
	.section-types__slider{
		display: block;
		margin: -8px -20px 25px -5px;
	}
	.section-types__slide{
		padding: 0 5px;
	}
	.section-types__item{
		width: calc(100vw - 40px);
		padding: 15px 15px 40px;
		border-radius: 20px;
	}
	.section-types__head{
		margin-bottom: 31px;
	}
	.section-types__left{
		width: 45%;
		padding: 0 5px 0 0;
	}
	.section-types__tag{
		padding: 2px 7px 3px;
		font-size: 12px;
		line-height: 18px;
	}
	.section-types__tag i{
		width: 4px;
		height: 4px;
		margin: 1px 5px 0 0;
	}
	.section-types__image{
		width: 55%;
		padding: 0 0 0 4px;
	}
	.section-types__image span img{
		min-height: 140px;
		object-fit: cover;
		border-radius: 10px;
	}
	.section-types__icon{
		display: none;
	}
	.section-types__title{
		font-size: 26px;
		line-height: 29px;
		margin-bottom: 12px;
	}
	.section-types__text{
		font-size: 14px;
		line-height: 22px;
	}
	.section-types .slider-control{
		display: flex;
	}
	.section-gallery{
		padding: 65px 0;
	}
	.section-gallery__slider{
		padding: 0;
		margin: -10px 0 19px;
	}
	.section-gallery__slide a img{
		min-height: 215px;
		object-fit: cover;
		border-radius: 10px;
	}
	.section-gallery__slide a span{
		padding: 7px 0 7px 10px;
		border: none;
		position: relative;
		left: auto;
		bottom: auto;
		font-size: 12px;
		line-height: 17px;
	}
	.section-gallery__slide a span:before{
		width: 4px;
		height: 4px;
		left: 0;
	}
	.section-get{
		padding: 79px 0 73px;
	}
	.section-get_1 .section-get__decor-1{
		bottom: -15px;
		left: -44px;
		width: 134px;
	}
	.section-get_1 .section-get__decor-2{
		top: -25px;
		right: 0;
		width: 140px;
	}
	.section-get_2 .section-get__decor-1{
		bottom: 0px;
		left: -40px;
		width: 140px;
	}
	.section-get_2 .section-get__decor-2{
		top: -21px;
		right: -31px;
		width: 112px;
	}
	.section-get__title{
		font-size: 32px;
		line-height: 35px;
	}
	.section-get__text{
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 16px;
	}
	.section-member{
		padding: 64px 0;
	}
	.section-member__container{
		display: none;
	}
	.section-member__slider{
		display: block;
		margin: 0 -20px 25px -5px;
	}
	.section-member__slide{
		padding: 0 5px;
	}
	.section-member__item{
		width: calc(100vw - 40px);
		border-radius: 20px;
		padding: 23px;
	}
	.section-member__num{
		padding: 1px 17px 1px 17px;
		font-size: 12px;
		line-height: 17px;
	}
	.section-member__num:before{
		width: 3px;
		height: 3px;
		top: 8px;
		left: 11px;
	}
	.section-member__title{
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 7px;
	}
	.section-member__text{
		padding: 0;
		font-size: 14px;
		line-height: 22px;
	}
	.section-member .slider-control{
		display: flex;
	}
	.section-steps{
		padding: 64px 0;
	}
	.section-steps__container{
		flex-direction: column;
	}
	.section-steps__left{
		width: 100%;
		padding: 0;
	}
	.section-steps__right{
		width: 100%;
		padding: 0;
	}
	.section-steps__items{
		margin-bottom: -7px;
	}
	.section-steps__item{
		padding: 40px 0 43px;
	}
	.section-steps__num{
		font-size: 12px;
		line-height: 17px;
		margin-bottom: 16px;
	}
	.section-steps__title{
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 6px;
	}
	.section-steps__text{
		font-size: 14px;
		line-height: 22px;
	}
	.section-review{
		padding: 64px 0;
	}
	.section-review__container{
		padding: 20px 24px 23px;
		flex-direction: column;
	}
	.section-review__left{
		width: 100%;
		padding: 0 0 24px;
		border: none;
		border-bottom: 1px solid var(--color-grey-200);
	}
	.section-review__quotes{
		margin: 3px 0 23px -1px;
		width: 45px;
	}
	.section-review__text{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.section-review__right{
		width: 100%;
		padding: 23px 0 0;
	}
	.section-review__info{
		margin: 0;
	}
	.section-review__name{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.section-review__status{
		font-size: 12px;
		line-height: 17px;
		margin-bottom: 10px;
	}
	.section-review__icon{
		width: 40px;
		height: 33px;
		padding: 10px;
		border-radius: 5px;
	}
	.section-review__image{
		width: 70px;
		height: 75px;
	}
	.section-review__image img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.section-faq{
		padding: 64px 0 42px;
	}
	.section-faq__item{
		padding: 26px 0;
	}
	.section-faq__item:last-child{
		border: none;
	}
	.section-faq__question{
		font-size: 18px;
		line-height: 27px;
	}
	.section-faq__question i{
		top: 12px;
	}
	.section-faq__answer{
		padding: 12px 0 0 0;
		font-size: 14px;
		line-height: 22px;
	}
	.people-welcome{
		padding: 129px 0 40px;
	}
	.people-welcome__container{
		flex-direction: column-reverse;
	}
	.people-welcome__left{
		width: 100%;
		padding: 0;
	}
	.people-welcome__right{
		width: 100%;
		padding: 0 0 40px;
	}
	.people-welcome__title{
		font-weight: 500;
		font-size: 36px;
		line-height: 36px;
		margin-bottom: 16px;
	}
	.people-welcome__text{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.people-main{
		padding: 20px 0 64px;
	}
	.people-main__title{
		font-size: 32px;
		line-height: 35px;
		margin-bottom: 32px;
	}
	.people-main__section{
		padding: 64px 0;
	}
	.people-main__cols{
		margin: 0 -5px;
	}
	.people-main__col{
		width: 50%;
		padding: 0 5px 33px;
	}
	.people-main__image{
		margin-bottom: 7px;
	}
	.people-main__content{
		padding: 8px 6px 7px;
	}
	.people-main__name{
		font-size: 14px;
		line-height: 19px;
	}
	.people-main__status{
		font-size: 12px;
		line-height: 17px;
	}
	.people-main__more{
		text-align: center;
		margin-top: -1px;
	}
	.people-info__panel{
		padding: 58px 20px 20px;
	}
	.people-info__close{
		top: 21px;
		right: 21px;
	}
	.people-info__wrapper{
		padding: 0 12px 0 8px;
		margin: 0 -12px 0 -8px;
	}
	.people-info__tags{
		flex-direction: column;
		align-items: flex-start;
		margin-left: -8px;
	}
	.people-info__tags li{
		padding: 2px 7px 3px 16px;
		font-size: 12px;
		line-height: 18px;
	}
	.people-info__tags li:before{
		width: 4px;
		height: 4px;
		top: 10px;
		left: 7px;
	}
	.people-info__image{
		width: 160px;
		height: 180px;
	}
	.people-info__name{
		font-size: 26px;
		line-height: 29px;
		margin-bottom: 11px;
	}
	.people-info__text{
		font-size: 14px;
		line-height: 22px;
	}
	.contact-main{
		padding: 113px 0 64px;
	}
	.contact-main__container{
		flex-direction: column;
	}
	.contact-main__left{
		width: 100%;
		padding: 0 0 29px;
	}
	.contact-main .section-title{
		margin-bottom: 27px;
	}
	.contact-main__members li{
		width: 52px;
		height: 52px;
	}
	.contact-main__members li.num{
		font-size: 12px;
		line-height: 18px;
	}
	.contact-main__right{
		width: 100%;
		padding: 0;
	}
	.form-radio{
		margin-bottom: 34px;
	}
	.form-radio__list li{
		margin-bottom: 13px;
	}
	.form-radio__list li label > span:before{
		top: 7px;
	}
	.form-radio__list li label > input:checked + span:after{
		top: 10px;
	}
	.thankyou-main{
		padding: 109px 0 260px;
	}
	.thankyou-main__image{
		width: 180px;
		margin: 0 auto 31px;
	}
	.thankyou-main__title{
		font-size: 36px;
		line-height: 36px;
	}
	.thankyou-main__text{
		font-size: 18px;
		line-height: 25px;
		margin-bottom: 25px;
	}
	.page-welcome{
		padding: 85px 0 60px;
	}
	.page-welcome__container{
		flex-direction: column-reverse;
	}
	.page-welcome__left{
		width: 100%;
		padding: 39px 0 0;
	}
	.page-welcome__title{
		font-size: 36px;
		line-height: 36px;
		margin: 0;
	}
	.page-welcome__right{
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.page-welcome{
		padding: 85px 0 40px;
	}
	.page-main{
		padding: 63px 0 30px;
	}
	.post-body hr{
		margin: 32px 0 34px;
	}
	.post-body h2{
		font-size: 26px;
		line-height: 29px;
		margin-bottom: 21px;
	}
	.slider-control__nums{
		font-size: 16px;
		line-height: 25px;
	}
	.slider-control__nums i{
		margin: 0 3px;
	}
	.site-footer__container{
		flex-direction: column;
		padding: 40px 0 31px;
	}
	.footer-logo{
		width: 115px;
		margin-bottom: 31px;
	}
	.site-footer__right{
		flex-wrap: wrap;
		margin: 0 -5px;
	}
	.footer-menu{
		width: 50%;
		padding: 0 5px 21px;
		margin: 0;
	}
	.footer-social{
		width: 100%;
		padding: 0 5px;
		margin: 0;
	}
	.footer-social a{
		margin: 0 8px 0 0;
	}
	.site-footer__bottom{
		padding: 19px 0 40px;
	}
}
