:root{
	--white: 		#ffffff;
	--gray-bg: 		#F9FAFB;
	--bluegray-700: #465161;
	--bluegray-900: #282E38;
	--Primary-800: 	#BE1E2D;
	--bluegray-100: #DADEE3;
	--bluegray-200: #BCC3CD;
	--titlefont: 48px;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Metropolis';
	src:url('../fonts/Metropolis-Regular.otf');
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'Metropolis';
	src:url('../fonts/Metropolis-Bold.otf');
    font-weight:bold;
    font-style:normal;
}
@font-face {
	font-family:'Metropolis';
	src:url('../fonts/Metropolis-Medium.otf');
    font-weight:500;
    font-style:normal;
}
@font-face {
	font-family:'Metropolis';
	src:url('../fonts/Metropolis-SemiBold.otf');
    font-weight:600;
    font-style:normal;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: 'Metropolis', sans-serif;
	font-size: 18px;
	line-height: 1.55;
	color:var(--bluegray-700);
	background-color: #fff;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:inherit;
	text-decoration:none;
}
a:hover {
	color:inherit;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.d-flex{
	display: flex;
}
.a-center{
	align-items: center;
}
.j-between{
	justify-content: space-between;
}
.j-center{
	justify-content: center;
}
/* wrapper */
.wrapper {
	position:relative;
}
.container{
	width: 1120px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 16px;
}
/* header */
.header {
	z-index: 10;
	top: 0;
	position: sticky;
	font-size: 16px;
	font-weight: 500;
	padding: 24px 0;
	border-bottom: 1px solid var(--bluegray-100);
	background: rgba(255, 255, 255, 0.70);
	box-shadow: 0px 4px 8px -2px rgba(161, 161, 161, 0.10), 0px 2px 4px -2px rgba(161, 161, 161, 0.06);
	backdrop-filter: blur(10px);
}
/* logo */
.logo {

}
.logo-img {

}
.topmenu{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.topmenu li+li{
	margin-left: 32px;
}
.topmenu li a{
	color: var(--bluegray-700);
	transition: all .3s ease;
}
.topmenu li a:focus,
.topmenu li a:hover{
	color: var(--Primary-800)
}
.dropdown-wrap{
	position: relative;
}
.dropdown-wrap .dropdown{
	display: none;
	position: absolute;
	top: 100%;
	right: -10px;
	width: calc(100% + 20px);
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-radius: 6px;
	padding: 5px 10px 3px;
	background-color: var(--gray-bg);
	border: 1px solid var(--bluegray-100);
}
.lang{
	text-transform: uppercase;
}
.lang ul li a{
	display: block;
}
.lang ul li a:hover{
	color: var(--Primary-800);
}
.dropdown-toggle{
	display: inline-flex;
	align-items: center;
}
.dropdown-toggle svg{
	margin-left: 4px;
}
.dropdown-toggle.open svg{
	transform: rotateX(180deg);
}
.btn{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	height: 60px;
	padding: 0 16px;
	margin: 2px;
	transition: all .3s ease;
	border: none;
	cursor: pointer;
	background-color: #fff;
}
.btn-red{
	background-color: var(--Primary-800);
	color:var(--white);
}
.btn-red:hover{
	color: var(--white);
	opacity: 0.8;
}
.btn-border{
	border: 1px solid var(--bluegray-200);
	background: var(--white);
	color: var(--bluegray-900);
}
.btn-border:hover{
	background-color: var(--Primary-800);
	color:var(--white);
	border-color: var(--Primary-800);
}
.red-color{
	color: var(--Primary-800)
}
.text-center{
	text-align: center;
}
.footer{
	background-color: var(--white);
	padding: 64px 0;
	border-top: 1px solid var(--bluegray-100);
}
.footer .logo{
	margin-bottom: 32px;
	font-size: 0;
}
.footer .copyright{
	padding-top: 32px;
	margin-top: 32px;
	border-top: 1px solid var(--Primary-800);
	font-size: 16px;
	line-height: 24px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
.section{
	padding: 64px 0;
	overflow: hidden;
}
.gray-bg{
	background-color: var(--gray-bg);
}
.red-bg{
	background-color: var(--Primary-800);
	color: var(--white);
}
.section-title{
	font-size: var(--titlefont);
	color: var(--bluegray-900);
	margin: 0;
}
.slick-list{
	overflow: visible;
}
#home{
	margin-top: -81px;
	padding-top: 145px;
	padding-bottom: 64px;
	position: relative;
}
#home .box{
	text-align: center;
	padding: 32px;
	width: 664px;
	max-width: 70%;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.40);
	box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
	backdrop-filter: blur(10px);
}
.home-slider{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.home-slider .item .inner,
.home-slider .item,
.home-slider .slick-list,
.home-slider .slick-track{
	height: 100%;
}
.home-slider .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.home-slider .item img.mob{
	display: none;
}
.home-slider .slick-dots{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	font-size: 0;
	position: absolute;
	bottom: 70px;
	left: calc(50% + 300px);
}
.home-slider .slick-dots li+li{
	margin-left: 16px;
}
.home-slider .slick-dots button{
	display: flex;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: var(--white);
	border: none;
	padding: 0;
}
.home-slider .slick-dots .slick-active button{
	background-color: var(--Primary-800);
}
#home .title{
	color: var(--bluegray-900);
	font-size: 46px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: -0.96px;
	margin: 0 0 32px;
}
#home .subtitle{
	margin: 0 0 32px;
	color: var(--bluegray-900);
	font-size: 32px;
	font-weight: 400;
}
#home .subtitle span{
	font-weight: 600;
}
#home >.container>.d-flex{
	position: relative;
}
#home >.container>.d-flex> .col{
	width: calc(50% - 16px);
	position: relative;
}
#home >.container>.d-flex>.col:last-child{
	position: absolute;
	left: calc(50% + 32px);
	top: 0;
	width: 588px;
}
#home .col .block-grid{
	display: grid;
	grid-gap: 16px;
	grid-template-columns: 303px 259px;
}
#home .col .block-grid .item{
	position: relative;
	display: flex;
	align-items: flex-end;
}
#home .col .block-grid .item span{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	border-radius: 60px;
	width: 108px;
	height: 108px;
	border: 2px solid var(--white);
	background: linear-gradient(90deg,white,lightgray,lightgray);
	box-shadow: 0px 30.076px 50.582px -6.835px rgba(0, 0, 0, 0.44);
	top: -33px;
	right: 40px;
}
#home .col .block-grid .item.large{
	grid-column: span 2;
	z-index: 1;
	padding: 30px;
	text-align: left;
}
#home .col .block-grid .item.large img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	border-radius: 20px;
}
#home .col .block-grid .item.large .col:last-child{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 157px;
	height: 100%;
	min-width: 157px;
	margin-left: 32px;
	border: 2px solid var(--Primary-800);
	position: relative;
	padding-bottom: 23px;
}
#home .col .block-grid .item.large .col:last-child .iso{
	text-transform: uppercase;
	margin-top: 10px;
	font-size: 28px;
	font-weight: 500;
}
#home .col .block-grid .item.large .col:last-child .badge{
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	background-color: var(--Primary-800);
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
	line-height: 25px;
	font-size: 12px;
}
#home .col .block-grid .item.large .col .label{
	color: var(--white);
	font-size: 14px;
}
#home .col .block-grid .item.large .col .label:before{
	content: '';
	display: inline-block;
	width: 54px;
	height: 1px;
	background-color: var(--white);
	margin-right: 13px;
	vertical-align: middle;
}
#home .col .block-grid .item.large .col p{
	color: var(--white);
	font-size: 24px;
	line-height: 130%; /* 31.2px */
	letter-spacing: -0.48px;
	margin: 32px 0 0;
}
#events{
	border-top: 1px solid #edf1f8;
}
#events .event-info-head{
	width: 100%;
}
#events .event-info-head h2{
	font-size: 35px;
}
#events .event-info-date{
	width: 50%;
	padding: 0 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#events .event-info-item{
	width: 33.3333%;
}
#events .event-info-item b{
	display: block;
	color: var(--Primary-800);
	font-weight: 700;
	font-size: 22px;
}
#events .event-info{
	padding: 24px;
	width: calc(50% - 16px);
	margin-bottom: 32px;
	border-radius: 20px;
	box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}
#events .event-info i{
	font-size: 12px;
	line-height: 14px;
}

#events .event-data{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 0 0 30px 0;
}
#events .timeline-row{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	position: relative;
	padding: 0 0 30px 0;
}
#events .timeline-row::before{
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 10px;
	top: 0;
	background-color: #edf1f8;
}
#events .timeline-row:last-child:before{
	display: none;
}
#events .timeline-time{
	width: 200px;
	white-space: nowrap;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
#events .timeline-time span{
	display: block;
	border: 1px solid #dcdfe5;
	background-color: #fff;
	border-radius: 100px;
	padding: 5px;
	margin: 0 10px 0 0;
	position: relative;
	z-index: 1;
}
#events .timeline-time span::before{
	content: '';
	display: block;
	background-color: var(--Primary-800);
	width: 10px;
	height: 10px;
	border-radius: 100px;

}
#events .timeline-topic{
	width: 320px;
	padding: 0 15px 0 0;
}
#events .timeline-topic i{
	display: block;
	font-size: 14px;
	padding: 10px 0 0 0;
}
#events .timeline-speaker{
	flex: 1;
}
#events .timeline-speaker:after{
	content: '';
	display: block;
	height: 0;
	clear: both;
}
#events .timeline-speaker-ava{
	width: 200px;
	float: right;
	margin: 0 0 20px 20px;
}
#events .timeline-speaker-ava img{
	display: block;
	width: 100%;
	border-radius: 50px;
}


#experts{
	position: relative;
}
#experts .d-flex{
	flex-wrap: wrap;
}
#experts:before{
	content: '';
	display: block;
	position: absolute;
	top: 32px;
	left: 32px;
	width: 110px;
	height: 100px;
	background-image: url(../img/polygons.svg);
	background-repeat: no-repeat;
}
#experts .section-title{
	margin-bottom: 64px;
}
#experts .item{
	padding: 24px;
	text-align: center;
	width: calc(50% - 16px);
	margin-bottom: 32px;
	border-radius: 20px;
	box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}
#experts .item .name{
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	margin: 20px 0 4px;
	color: var(--bluegray-900);
}
#experts .item .experiens{
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}
#experts .item p{
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 28px;
}

#about .col{
	width: calc(50% - 16px);
}
#about .col:last-child{
	text-align: right;
}
#about .col p{
	font-size: 18px;
	margin: 20px 0;
}
#about .metric .item{
	font-size: 18px;
	line-height: 28px;
	color: var(--bluegray-900);
	width: 33.3333%;
	padding: 0 20px 0 0;
}
#about .metric .item span{
	display: block;
	font-size: 60px;
	font-weight: 600;
	line-height: 72px; /* 120% */
	letter-spacing: -1.2px;
}
#approach{
	position: relative;
	background-image: url(../img/approach_bg.png);
	background-repeat: no-repeat;
	background-position: 89% 273%;
}
#approach .approach-cols{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#approach .approach-video{
	max-width: 370px;
	padding: 50px 20px 0 0;
}
#approach .approach-video video{
	display: block;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0px 12px 16px -4px rgb(16 24 40 / 8%), 0px 4px 6px -2px rgb(16 24 40 / 3%);
}
#approach:before,
#approach:after{
	content: '';
	display: block;
	position: absolute;
	width: 110px;
	height: 100px;
	background-image: url(../img/polygons.svg);
	background-repeat: no-repeat;
}
#approach:before{
	top: 196px;
	right: 64px;
}
#approach:after{
	left: 32px;
	bottom: -6px;
}
#approach ol{
	margin: 32px auto 0;
	border-left: 4px solid var(--gray-bg);
	padding: 0 0 0 48px;
	width: 648px;
	max-width: 100%;
}
#approach ol li{
	padding: 16px 0 16px 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}
#whywe{
	padding: 96px 0;
}
#whywe .section-title{
	color: var(--white)
}
#whywe .col:first-child{
	width: 360px;
}
#whywe .col:last-child{
	width: calc(100% - 424px);
}
.f-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 64px;
	grid-row-gap: 32px;
}
.f-list .item .title{
	position: relative;
	margin: 8px 0 16px;
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	white-space: nowrap;
}
.f-list .item .title:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -8px;
	height: 1px;
	width: 54px;
	background-color: var(--white);
}
.f-list .item p{
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}
#faq .col{
	width: calc(50% - 16px);
}
#faq .col:first-child p{
	margin: 48px 0;
	font-size: 16px;
}
.faq-list .item{
	padding: 32px;
	margin-bottom: 16px;
	border-radius: 16px;
	transition: background-color .3s ease;
	cursor: pointer;
}
.faq-list .item:last-child{
	margin-bottom: 0;
}
.faq-list .item:hover,
.faq-list .item.active{
	background-color: var(--gray-bg);
}
.faq-list .item .text{
	display: none;
}
.faq-list .item .text p{
	padding-top: 16px;
	margin: 0;
}
.faq-list .item.active .text{
	display: block;
}
.faq-list .item .toggle{
	position: relative;
	padding-right: 48px;
	background-image: url(../img/plus-circle.svg);
	background-repeat: no-repeat;
	background-position: 100% 0;
	cursor: pointer;
	color: var(--bluegray-900)
}
.faq-list .item.active .toggle{
	background-image: url(../img/minus-circle.svg);
}
.faq-list .item ol{
	padding-left: 15px;
}
.faq-list .item ol li{
	margin: 0 0 5px 0;
}
.faq-list .item .text ol p{
	font-size: 14px;
	padding-top: 5px;
}

#reviews{
	position: relative;
}
#reviews:before{
	content: '';
	display: block;
	position: absolute;
	width: 110px;
	height: 100px;
	background-image: url(../img/polygons.svg);
	background-repeat: no-repeat;
	top: 32px;
	left: 32px;
}
.sw-nav{
	display: flex;
	justify-content: flex-end;
	font-size: 0;
	margin: 16px 0;
}
.sw-nav>div{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	border: 1px solid var(--bluegray-200);
	width: 40px;
	height: 40px;
	margin-left: 32px;
	cursor: pointer;
	transition: all .3s ease;
}
.sw-nav>div:hover{
	border-color: var(--bluegray-900);
}
.reviews{
	width: 752px;
	max-width: 100%;
	margin-left: -16px;
	margin-right: -16px;
}
.reviews .item{
	padding: 0 16px;
}
.reviews .item .inner{
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--gray-bg);
	box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}
.reviews .item .photo{
	font-size: 0;
	width: 240px;
	min-height: 320px;
}
.reviews .item .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.reviews .item .col{
	width: calc(100% - 240px);
	padding: 24px;
	display: flex;
	flex-flow: column;
}
.reviews .item .col p{
	margin: 0 0 24px;
	font-size: 18px;
}
.reviews .item .col .name{
	font-weight: 600;
	color: var(--bluegray-900);
	margin-top: auto;
}
.reviews .item .col .pos{
	font-size: 16px;
}

#contacts{
	background-image: url(../img/contacts-bg.png);
	background-repeat: no-repeat;
	background-position: 100% 95%;
}
#contacts .col{
	width: calc(50% - 48px);
	margin-top: 64px;
}
#contacts .col-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.48px;
	text-align: center;
	color: var(--bluegray-900);
	margin: 0 0 20px;
}
#contacts .col:last-child .col-title{
	margin-bottom: 50px;
}
#contacts .citem{
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	margin-right: auto;
	margin-left: auto;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 24px;

}
#contacts .citem a{
	display: inline-flex;
	align-items: center;
	color:var(--bluegray-900);
}
#contacts .citem svg{
	margin-right: 8px;
}
.form-row{
	display: flex;
	flex-flow: column;
	margin: 0 0 16px;
}
.form-row.form-row-error{}
.form-row.form-row-error input{
	border-color: var(--Primary-800);
}
.form-row-message{
	color: var(--Primary-800);
	font-size: 12px;
	font-weight: 300;
}
.form-row input{
	border-radius: 6px;
	border: 1px solid var(--bluegray-200);
	background: var(--white);
	padding: 10px 14px;
}
.form-row textarea{
	border-radius: 6px;
	border: 1px solid var(--bluegray-200);
	background: var(--white);
	padding: 10px 14px;
	height: 94px;
	resize: none;
}
.form-row label{
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px
	color:var(--bluegray-900);
}
.form-row input:focus,
.form-row textarea:focus{
	outline: 0;
	border-color: var(--bluegray-900);
}
#contacts .btn{
	width: 100%;
}
.acceptance input{
	visibility: hidden;
	position: absolute;
}
.acceptance.form-row label{
	line-height: 24px;
}
.acceptance span{
	display: block;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	user-select: none;
}
.acceptance span:before{
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-color: var(--white);
	border-radius: 6px;
	border: 1px solid var(--bluegray-100);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
}
.acceptance span:after{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-color: var(--Primary-800);
	border-radius: 3px;
	position: absolute;
	left: 6px;
	top: 50%;
	margin-top: -6px;
	opacity: 0;
}
.acceptance input:checked+span:after{
	opacity: 1;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.mob-menu{
	display: none;
	position: fixed;
	z-index: 11;
	top: 0;
	left: 0;
	height: 100%;
	overflow-y: auto;
	background-color: var(--white);
	width: 400px;
	max-width: 80%;
	border-right: 1px solid var(--bluegray-100);
    box-shadow: 0px 4px 8px -2px rgba(161, 161, 161, 0.10), 0px 2px 4px -2px rgba(161, 161, 161, 0.06);
    transition: transform .5s ease;
    will-change: transform;
    transform: translateX(-110%);
}
.mob-menu.active{
	transform: translateX(0);
}
.mob-menu .inner{
	padding: 32px;
}
.mob-menu .topmenu{
	flex-flow: column;
}
.mob-menu .topmenu li+li{
	margin: 24px 0 0;
}
.menu-toggle {
  display: none;
  width: 30px;
  height: 15px;
  position: relative;
  margin: 0 0 0 24px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--bluegray-900);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2) {
  top: 6px;
}

.menu-toggle span:nth-child(3) {
  top: 12px;
}

.menu-toggle.open span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

.menu-toggle.open span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


@media only screen and (max-width:1199px) {
	.header .topmenu{
		display: none;
	}
	.mob-menu,
	.menu-toggle{
		display: block;
	}
	.lang{
		margin-left: auto;
	}
	.container{
		width: 920px;
	}
	#home >.container>.d-flex{
		flex-direction: column;
	}
	#home >.container>.d-flex> .col{
		width: 100%;
		text-align: center;
	}
	#home >.container>.d-flex>.col:last-child{
		position: static;
		margin-top: 50px;
	}
	.footer,
	.section,
	#whywe{
		padding: 32px 0;
	}
	#home .title{
		width: 100%;
	}
	#whywe>.container>.d-flex{
		flex-direction: column;
	}
	#whywe .col:last-child,
	#whywe .col:first-child{
		width: 100%;
	}
	#whywe .section-title{
		text-align: center;
		margin-bottom: 32px;
	}
	#faq .col:first-child{
		width: calc(25% - 16px);
	}
	#faq .col:last-child{
		width: calc(75% - 16px);
	}
	#about .metric .item{
		font-size: 14px;
	}
	#about .metric .item span{
		font-size: 48px;
		line-height: 1;
	}
	#home >.container>.d-flex> .col br{
		display: none;
	}
	#approach .approach-cols{
		flex-wrap: wrap;
	}
	#approach .approach-video{
		padding: 30px 0;
		margin: 0 auto;
	}
	#approach ol{
		width: 100%;
	}
	#events .timeline-row{
		flex-wrap: wrap;
	}
	#events .timeline-speaker{
		width: 100%;
		flex: auto;
		padding: 50px 0 0 50px;
	}
}
@media screen and (max-width: 991px) {
	#contacts>.container>.d-flex{
		flex-direction: column;
	}
	#contacts .col{
		width: 100%;
	}
	.form-row{
		margin-left: auto;
		margin-right: auto;
		width: 400px;
		max-width: 100%;
	}
	#home{
		margin-top: 0;
		padding: 0;
	}
	.home-slider{
		position: relative;
		top: 0;
		left: 0;
		height: auto;
		z-index: 1;
	}
	.home-slider .slick-dots{
		left: 50%;
		transform: translateX(-50%);
		bottom: 32px;
	}
	#home .box{
		padding: 64px 16px 32px;
		width: calc(100% + 32px);
		max-width: calc(100% + 32px);
		margin: 0 -16px;
		box-shadow: none;
		background-image: url(../img/home_mob.svg);
		background-repeat: no-repeat;
		background-position: center;
	}
	#events .event-data{
		flex-direction: column;
		flex-wrap: wrap;
	}
	#events .event-info-date{
		width: 100%;
		padding: 30px;
	}
	#events .event-info{
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	body{
		font-size: 14px;
	}
	.footer .topmenu{
		flex-direction: column;
	}
	.footer .topmenu li+li{
		margin: 16px 0 0;
	}
	.section-title{
		font-size: 28px;
		line-height: 1.4;
	}
	#home .title{
		font-size: 32px;
		line-height: 1.4;
	}
	#home .subtitle{
		font-size: 18px;
	}
	#home >.container>.d-flex>.col:last-child{
		width: 100%;
	}
	#home .col .block-grid{
		display: block;
	}
	#home .col .block-grid .item{
		display: none;
	}
	#home .col .block-grid .item.large{
		display: flex;
		flex-direction: column;
	}
	#home .col .block-grid .item.large .col:last-child{
		width: 100%;
		margin: 24px 0 0;
		padding: 24px 0 46px;
	}
	#home .col .block-grid .item.large .col p{
		font-size: 20px;
		margin-top: 16px;
	}
	#events .timeline-row{
		padding: 0 0 10px 0;
	}
	#events .event-info-date{
		padding: 0 10px;
	}
	#events .event-info-head h2{
		font-size: 20px;
	}
	#events .event-info{
		padding: 10px;
	}
	#events .timeline-topic{
		width: 100%;
		padding: 20px 0 0 30px;
	}
	#events .timeline-speaker{
		padding: 20px 0 0 30px;
	}
	.timeline{
		margin: 0 0 50px 0;
	}
	#events .event-info-item{
		width: 100%;
	}
	#events .timeline-speaker-ava{
		max-width: 150px;
	}
	#approach:after,
	#approach:before,
	#experts:before{
		display: none;
	}
	#experts .d-flex{
		flex-direction: column;
	}
	#experts .item{
		width: 100%;
	}
	#experts .item+.item{
		margin-top: 16px;
	}
	#experts .item .name{
		font-size: 20px;
	}
	#experts .item p{
		font-size: 14px;
	}
	#experts .section-title{
		margin-bottom: 32px;
	}
	#about > .container > .d-flex{
		flex-direction: column;
	}
	#about .col{
		width: 100%;
	}
	#about .metric{
		flex-wrap: wrap;
	}
	#about .metric .item{
		width: 100%;
	}
	.metric{
		margin-bottom: 16px;
	}
	#approach ol li{
		font-size: 16px;
	}
	#approach ol{
		padding-left: 32px;
	}
	.f-list{
		display: block;
	}
	.f-list .item+.item{
		margin-top: 16px;
	}
	.f-list .item .title{
		font-size: 20px;
	}
	.reviews .item .col p,
	.f-list .item p{
		font-size: 14px;
	}
	#faq .col:first-child,
	#faq .col:last-child{
		width: 100%;
	}
	#faq .col:last-child{
		margin-top: 24px;
	}
	#faq .col:first-child{
		text-align: center;
	}
	#faq .d-flex{
		flex-direction: column;
	}
	#faq .col:first-child p{
		margin: 16px 0;
	}
	.faq-list .item{
		padding: 16px;
	}
	.reviews .item .inner{
		flex-direction: column;
	}
	.reviews .item .col,
	.reviews .item .photo{
		width: 100%;
	}
	.reviews .item .photo{
		min-height: 240px;
		height: 240px;
		object-position: top center;
	}
	.reviews .item .col{
		padding: 16px;
	}
	.footer{
		text-align: center;
	}
	#contacts .col{
		margin-top: 32px;
	}
	#contacts .col-title br{
		display: none;
	}
	#contacts .citem a,
	#contacts .col-title{
		font-size: 20px;
	}
	#contacts .col:last-child .col-title{
		margin-bottom: 24px;
	}
	.header {
		padding: 16px 0;
	}
	.home-slider .item img.desc{
		display: none;
	}
	.home-slider .item img.mob{
		display: block;
	}
	#contacts{
		background-size: 60%;
		background-position: bottom right;
	}
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}