html, body {
	margin: 0;
	padding: 0;
	font-family: "Ubuntu"; 
    font-style: normal;
	font-size: 16px;
	position: relative;
    overflow-x: hidden;
    max-width: 100%;
    min-width: 320px;
    height: 100%;
}
img {
    max-width: 100%;
}
a:hover, a:active, a:focus {
    text-decoration: none;
}
a.button {
    display: block;
    max-width: 100%;
    cursor: pointer;
    text-decoration: none;
    border-radius: 40px;
    color: #fff;
    line-height: 2.6;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;  
}
input, 
.button, 
.button:hover, 
.button:active {
	outline: none;
}
.wrap {
    max-width: 100%;
    padding: 8% 1.5%;
    margin: auto;
    z-index: 5;
    position: relative;
}

/*********************** Header-section ***********************/

.header {
	padding: 30px 20px;
	background: #fff;
	width: 100%;
}
.header__fixed {
    position: fixed;
    padding: 5px 20px;
    top: 0;
   	-webkit-box-shadow: 0 0 10px rgb(255, 255, 255);
   	        box-shadow: 0 0 10px rgb(255, 255, 255);
    z-index: 1000;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.header__wrap {
	width: 1150px;
	max-width: 100%;
	height: auto;
	margin: auto;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.logo {
	max-width: 360px;
	height: auto;
}
.navigation__wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu {	
	margin: 0;
    padding: 0;
    padding-right: 80px;
    width: 100%;
    list-style: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu__links-item {
	display: inline-block;
	list-style-type: none;
	font-family: 'Roboto Medium';
	font-size: 1.125em;
	padding-right: 20px;
	position: relative;
	cursor: pointer;
}
.menu__links-item a {
	color: rgb(30, 33, 50);
  	line-height: 1.2;
	text-decoration: none;
}
.menu__links-item a:hover,
.menu__links-item a:active {
	color: #e31e24;
}
a.button__enter {
    background: -webkit-gradient(linear,left bottom, right top,color-stop(46%, #9d281f),color-stop(#a23123),color-stop(80%, #af503e));
    background: -webkit-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: -o-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: linear-gradient(to top right,#9d281f 46%,#a23123,#af503e 80%);
    padding: 5px 15px;
    max-width: 100%;
    cursor: pointer;
    text-decoration: none;
    border-radius: 40px;
    color: #fff;
    text-align: center;
    transition: background 0.3s linear;
}
a.button__enter:hover {
    color: #fff;
    background: -webkit-gradient(linear,left top, right bottom,color-stop(46%, #291c47),color-stop(#2c306d),color-stop(80%, #1e3c6e));
    background: -webkit-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
    background: -o-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
    background: linear-gradient(to bottom right,#291c47 46%,#2c306d,#1e3c6e 80%);
}

/*********Header================ Adaptive menu ***********/

.menu__icon {
	display: none;
	width: 45px;
    height: 35px;
    position: relative;
    left: 0;
    bottom: -13px;
    cursor: pointer;
    margin-right: 0;
}
.menu__icon span {
	display: block;
	position: absolute;
	height: 9px;
	width: 100%;
	background: rgb(30, 33, 50);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.menu__icon span:nth-child(1) {
	top: 0px;
}
.menu__icon span:nth-child(2), 
.menu__icon span:nth-child(3) {
	top: 13px;
}
.menu__icon span:nth-child(4) {
	top: 26px;
}
.navigation.menu_state_open .menu__icon span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}
.navigation.menu_state_open .menu__icon span:nth-child(2) {
	-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
			transform: rotate(45deg);
}
.navigation.menu_state_open  .menu__icon span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
}
.navigation.menu_state_open  .menu__icon span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}
.navigation.menu_state_open .menu__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	-webkit-box-orient: vertical; 
	-webkit-box-direction: normal; 
	    -ms-flex-direction: column; 
	        flex-direction: column;
	line-height: 30px; 
	position: absolute;   
    top: 143px;
    width: 100%;
    z-index: 900;
    background-color: #fff;
    left: 0;
    padding: 20px;
}
.navigation.menu_state_open .menu__links-item {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
ul.submenu {
    display: none;
   	z-index: 1000;
    width: 270px;
    background-image: url(../img/header/submenu.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    padding: 20px 10px;
    position: absolute;
    top: 100%;
    left: -20px;
    -webkit-transition: all 0.2s ease-out 0.15s;
    -o-transition: all 0.2s ease-out 0.15s;
    transition: all 0.2s ease-out 0.15s;
    border-top: #fff solid 46px;
}
ul.submenu:before {
	content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -44px;
    left: 30px;
    z-index: 250;
    border: 22px solid transparent;
    border-bottom: 22px solid #6c1923;
}
.submenu__links-item {
    display: block;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
}
.submenu__links {
    display: block;
    font-size: 1em;
    font-family: "Roboto Regular";
    padding: 10px;
    padding-bottom: 5px;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.submenu__links-item:hover {
    border-bottom: 1px solid #fff;
}
.menu__links-item-hover:hover ul.submenu  {
	display: block;
}
.header__fixed ul.submenu {
	border-top: #fff solid 21px;
}

/*************Header====================Top__search*************/

.top__search {
    position: relative;
    float: right
}
.search__form {
    z-index: 500;
    position: relative;
    height: 50px;
    float: right
}
.search__form button {
    border: 2px solid #fff;
    position: relative;
    z-index: 100;
    display: block;
    text-indent: -9999px;
    background: #fff url('../img/header/ico-search.png') 100% 50% no-repeat;
    width: 38px;
    height: 50px;
    padding-right: 0;
    cursor: pointer
}
.search__form span {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 100%;
    width: 0;
    background: #fff
}
.search__form span input {
    background: none;
    border: none;
    padding: 16px 14px;
    border: 1px solid #393939;
    font-size: 14px;
    width: 100%
}

/**********Header=====================Switch__lang**********/

#lang__menu {
	width: 120px;
    height: auto;
    font-family: 'Roboto Medium';
    font-size: 1.125em;
    color: rgb(30, 33, 50);
  	line-height: 1.2;
    position: absolute;
    top: 4px;
    right: 35px;
  	border: 1px solid rgba(255,255,255,0);
  	transition: all .3s ease;
  	-webkit-transition: all .3s ease;
  	-moz-transition: all .3s ease;
  	-o-transition: all .3s ease;
}
#lang__menu:after {
	content: '';
	background-image: url(../img/header/down-arrow.png);
	width: 15px;
    height: 12px;
    position: absolute;
    top: 13px;
    right: 26px;
}
#lang__menu div {
  	height: 25px;
  	text-align: center;
  	padding: 10px;
  	border-bottom: 1px solid rgba(255,255,255,0);
  	transition: all .2s ease;
  	-webkit-transition: all .2s ease;
  	-moz-transition: all .2s ease;
  	-o-transition: all .2s ease;
}
#lang__menu ul {
  	list-style: none;
  	margin: 0px;
  	padding: 0px;
  	padding-top: 10px;
  	display: none; 
  	text-align: center;
}
#lang__menu ul li {
    background-color: #fff;
  	padding: 5px 0px;
  	transition: all .3s ease;
  	-webkit-transition: all .3s ease;
  	-moz-transition: all .3s ease;
  	-o-transition: all .3s ease;
  	cursor: pointer;
}
#lang__menu ul li a:hover {  
  	color: #932210;
}

/*************************** Forum-section ***************************/

.forum {
	background-image: url(../img/forum/forum-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: auto;
}
.forum__wrap {
	width: 840px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
h1.title {
  	font-size: 2.8125em;
  	font-weight: 500;
  	color: rgb(242, 242, 242);
  	text-transform: uppercase;
  	line-height: 1.2;
  	text-align: center;
  	padding: 0 10px 50px;
  	margin-top: 0;
}
.forum__address {
  	font-size: 1.875em;
  	font-weight: 300;
  	color: rgb(242, 242, 242);
  	line-height: 1.2;
  	text-align: center;
    padding-top: 50px;
}
a.button__red {
  	font-size: 1.125em;
  	font-weight: 300;
  	font-family: 'Roboto Medium';
  	color: rgb(242, 242, 242);
  	text-transform: uppercase;
  	line-height: 3.4;
  	background: -webkit-gradient(linear,left bottom, right top,color-stop(46%, #9d281f),color-stop(#a23123),color-stop(80%, #af503e));
  	background: -webkit-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
  	background: -o-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
  	background: linear-gradient(to top right,#9d281f 46%,#a23123,#af503e 80%);
}
a.button__forum {
    width: 190px;
    height: 60px;
    background: -webkit-gradient(linear,left bottom, right top,color-stop(46%, #9d281f),color-stop(#a23123),color-stop(80%, #af503e));
    background: -webkit-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: -o-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: linear-gradient(to top right,#9d281f 46%,#a23123,#af503e 80%);
    margin-top: 50px;
}
a.button__red:hover {
	background: -webkit-gradient(linear,left top, right bottom,color-stop(46%, #291c47),color-stop(#2c306d),color-stop(80%, #1e3c6e));
	background: -webkit-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: -o-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: linear-gradient(to bottom right,#291c47 46%,#2c306d,#1e3c6e 80%);
}
.forum__item {
    position: relative;
    z-index: 1;
}
.forum__subtitle {
    font-size: 2.1875em;
  	font-family: "Ubuntu";
  	color: rgb(242, 242, 242); 
  	line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}

/********************* Topics-section *********************/

.topics {
    width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
h2.h2__subtitle {
    font-size: 2.375em;
    font-weight: 500;
    color: rgb(30, 33, 50);
    line-height: 1.2;
    text-align: center;
    padding: 0 20px;
}
.topics__wrap {
    width: 1225px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.topics__main {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-align-items: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding-top: 5%;
}
.topics__img {
    width: 45%;
}
.topics__descr {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45%;
}
.topics__items {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.topics__item {
    cursor: pointer;
    position: relative;
    z-index: 120;
    margin: 0 5px;
}
.topics__bg {
    background-image: url(../img/topics/bg-blue.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 150px;
    height: 150px;
    -webkit-transition: background .25s ease-in-out;
    -o-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}
.topics__form {
    position: absolute;
    z-index: 2;
   	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.topics__logo {
    position: absolute;
    z-index: 3;
    max-width: 95px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.topics__item:hover .topics__bg,
.topics__item.active .topics__bg {
    background-image: url(../img/topics/bg-red.png);
}
.topics__subtitle {
  	font-size: 1.875em;
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
    margin-top: 45px;
    margin-bottom: 0;
    padding: 0 10px;
}
.topics__text {
  	font-size: 1em;
 	font-weight: 300;
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin: 25px auto;
    padding: 0 10px;
}
a.button__blue {
	background: -webkit-gradient(linear,left top, right bottom,color-stop(46%, #291c47),color-stop(#2c306d),color-stop(80%, #1e3c6e));
	background: -webkit-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: -o-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: linear-gradient(to bottom right,#291c47 46%,#2c306d,#1e3c6e 80%);
}
a.button__blue:hover {
    background: -webkit-gradient(linear,left bottom, right top,color-stop(46%, #9d281f),color-stop(#a23123),color-stop(80%, #af503e));
    background: -webkit-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: -o-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: linear-gradient(to top right,#9d281f 46%,#a23123,#af503e 80%);
}
a.button__topics {
    z-index: 120;
    font-size: 0.7869em;
    font-weight: 300;
    line-height: 3.4;
    font-weight: 500;
    text-transform: uppercase;
    width: 130px;
    height: 45px;  
}

/****======Topics============ Network-canvas ==================****/

.particle-network-animation {
    position: absolute;
    overflow: hidden;
    width: 100%; 
    max-width: 1920px; 
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
}

/************************ Participants-section ************************/

.participants {
    max-width: 1920px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.partner, .exponent {  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50%;
    height: auto;
    margin-right: -1px;
    margin-bottom: -1px;
}
.partner {
    background-image: url(../img/participants/partner-bg.jpg);
    border-right: 5px solid #fff;
}
.exponent {
    background-image: url(../img/participants/exponent-bg.jpg);
} 
.participants__wrap {  
    padding: 11% 1.5%;
    text-align: center;
}
.participants__items-col {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.h3__subtitle {
 	font-size: 1.875em;
 	font-weight: 500;
 	color: rgb(255, 255, 255);
 	line-height: 1.2;
 	text-align: center;
}
.participants__items {
    padding: 7% 11%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.participants__item {
  	/*border-radius: 10px;*/
    background-color: rgb(255, 255, 255);
    position: relative;
    max-width: 230px;
    width: 47%;
    height: 80px;
    margin: 2%;
    z-index: 1;
}
.participants__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}
.participants__link {
  	font-size: 1.25em;
  	font-family: "Roboto Medium";
  	color: rgb(255, 255, 255);
  	line-height: 1.2;
  	padding-bottom: 5px;
  	border-bottom: 1px solid rgb(255, 255, 255);
}
.participants__link:hover {
    border-bottom: 1px solid transparent;
}
.exponent__wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/********************* Support-section *********************/

.support {
    background-image: url(../img/support/support-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: auto;
}   
.support__subtitle {
    padding: 0 10px;
}

/****================== News ticker ==================****/

.scroller__wrapper { 
	overflow: hidden; 
	position: relative; 
	//border-radius: 10px;
  	background-color: rgb(255, 255, 255);
  	max-width: 1170px;
  	width: 100%;
  	height: auto;
  	max-height: 92px;
    margin: 6% auto 0;
    padding: 1.5% 0;
}
ul.scroller { 
	position: relative; 
	white-space: nowrap; 
	font-size: 0; 
}
ul.scroller li { 
	display: inline-block; 
	white-space: normal; 
	vertical-align: middle; 
	padding: 10px; 
}
ul.scroller li img {
	max-width: 180px;
    width: 100%;
    height: auto;
    margin-right: 20px; 
}

/******************* Greeting-section *******************/

.greeting {
	position: relative;
	width: 100%;
    max-width: 1920px;
    height: auto;
    margin: auto;
}
.greeting .h2__subtitle {
	margin-top: 0;
}
.greeting__item {
	max-width: 1210px;
	width: 100%;
	margin: auto;
	padding: 4% 1.5% 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.greeting__text {
  	font-size: 1.25em;
  	font-family: "Roboto Medium";
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
}
.greeting__signature {
	-ms-align-self: flex-end;
	-ms-flex-item-align: end;
	    align-self: flex-end;
}
.greeting__img {
	padding-bottom: 3.5%;
}
.clip__svg {
	width: 0;
	height: 0;
}
.greeting__photo {
	max-width: 400px;
	max-height: 400px;
	width: 100%;
	height: auto;
	-webkit-clip-path: url("#greeting__photo");
	clip-path: url("#greeting__photo");
}

/***************** Speakers-section *****************/

.speakers {
	background-image: url(../img/speakers/speakers-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: auto;
}
.speakers__wrap {
	width: 1210px;
}
h2.speakers__subtitle {
	font-size: 2.375em;
  	color: rgb(255, 255, 255);
 	text-align: center;
}
.speakers__flexslider {
	background: transparent; 
    border: none;
    margin-top: 6%;
}
.speakers__flexslider .speakers__img {
	max-width: 270px;
	max-height: 270px;
	width: 100%;
	height: auto;
	margin: auto;
}
.speakers__flexslider .speakers__photo {
  	-webkit-clip-path: url(#speakers__photo);
  	clip-path: url(#speakers__photo);
  	max-width: 270px !important;
	height: 270px !important;
  	-webkit-transition: -webkit-filter .5s ease-in-out;
  	transition: -webkit-filter .5s ease-in-out;
  	-o-transition: filter .5s ease-in-out;
  	transition: filter .5s ease-in-out;
  	transition: filter .5s ease-in-out, -webkit-filter .5s ease-in-out; 
  	-webkit-filter: grayscale(99%);  
  	filter: grayscale(99%);
  	cursor: pointer;
}
.speakers__flexslider .speakers__photo:hover {
  	-webkit-filter: grayscale(0%);  
  	filter: grayscale(0%);  
}
.speakers__name {
  	font-size: 1.125em;
  	color: rgb(255, 255, 255);
  	line-height: 1.2;
  	text-align: center;
}
.speakers__slide {
	position: relative;
}
.speakers__occupation {
	font-size: 1.125em;
  	color: rgb(255, 255, 255);
  	line-height: 1.2;
  	text-align: center;
  	font-weight: 300;
	margin-top: 15px;
	max-width: 0%;
  	white-space: nowrap;
  	overflow: hidden;
  	-webkit-transition: max-width 1s linear;
  	-o-transition: max-width 1s linear;
  	transition: max-width 1s linear;
}
.speakers__occupation.speakers__hover {
	max-width: 100%;
}
.speakers__flexslider .flex-control-paging li a.flex-active {
	background: #7692c7;
}
.speakers__flexslider .flex-control-paging li a {
	background: #fff;
}
.speakers__flexslider .flex-direction-nav a {
	top: 0;
	width: 85px;
    height: 100%;
}
.speakers__flexslider .flex-direction-nav .flex-next,
.speakers__flexslider .flex-direction-nav .flex-prev {
    opacity: 1;  
}
.speakers__flexslider .flex-direction-nav .flex-prev {
    left: -53px;
}
.speakers__flexslider .flex-direction-nav .flex-next {
    right: -55px;
}
.speakers__flexslider:hover .flex-direction-nav .flex-prev {
    left: -53px; 
}
.speakers__flexslider:hover .flex-direction-nav .flex-next {  
    right: -55px;
}
.speakers__flexslider .flex-direction-nav a.flex-next:before {
    content: "";
    border: 3px solid #fff;
    width: 1em;
    transform: rotate(45deg);
    height: 1em;
    position: absolute;
    top: 36%;
    right: 30px;
    border-width: 3px 3px 0 0;
    -webkit-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out;
}
.speakers__flexslider .flex-direction-nav a.flex-prev:before {
    content: "";
    border: 3px solid #fff;
    width: 1em;
    transform: rotate(-45deg);
    height: 1em;
    position: absolute;
    top: 36%;
    left: 30px;
    border-width: 3px 0 0 3px;
    -webkit-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out;
}
.speakers__flexslider .flex-direction-nav a.flex-prev:hover:before,
.speakers__flexslider .flex-direction-nav a.flex-next:hover:before {
	color: #94baf5;
}

/******************** Programm-section *******************/

.programm {
	width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
.programm__wrap {
	width: 1210px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
h2.programm__subtitle {
	font-size: 2.375em;
  	padding-top: 0;
 	text-align: center;
}
.programm__items {
	margin: 5% 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.programm__item {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	padding: 1.5%;
	width: 25%;
}
.programm__data {
  	font-size: 1.875em; 
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	padding-left: 10px;
}
.programm__line {
	background-image: url(../img/programm/line.png);
	width: 126px;
	height: 21px;
	margin-top: 5px;
	margin-bottom: 30px;
	-webkit-transition: background-image .5s ease-in-out;
	-o-transition: background-image .5s ease-in-out;
	transition: background-image .5s ease-in-out;
}
.programm__item:hover .programm__line {
	background-image: url(../img/programm/line-hover.png);
}
.programm__item:hover .programm__data {
	color: #e31e24;
}
.programm__title {
  	font-size: 1.1875em;
  	font-weight: 700;
  	color: rgb(30, 33, 50);
  	text-transform: uppercase;
  	line-height: 1.2;
  	margin-bottom: 15px;
}
.programm__desc {
  	font-size: 1em;
  	font-family: "Roboto Regular";
  	color: rgb(30, 33, 50);
  	line-height: 1.3;
}
a.button__programm {
	font-size: 1.25em;
    width: 190px;
    height: 60px;
    line-height: 1.1;
    font-weight: 300;
    padding-top: 6px;
}

/****************** News-section ******************/

.news {
	width: 100%;
    max-width: 1920px;
    height: auto;
    background: -webkit-gradient(linear,left bottom, right top,from(#ada3cc) ,color-stop(#d1c7f0) , color-stop(#f6f4ff) , to(#f9f9ff));
    background: -webkit-linear-gradient(bottom left,#ada3cc ,#d1c7f0 , #f6f4ff , #f9f9ff);
    background: -o-linear-gradient(bottom left,#ada3cc ,#d1c7f0 , #f6f4ff , #f9f9ff);
    background: linear-gradient(to top right,#ada3cc ,#d1c7f0 , #f6f4ff , #f9f9ff);
    position: relative;
    margin: auto;
}
.news__wrap {
	width: 1210px;
}
h2.news__subtitle {
	font-size: 2.375em;
  	padding-top: 0;
 	text-align: center;
}
.news__items {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.news__item {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	width: 30%;
    margin: 5% 1.5% 0;
}
.news__photo-wrap {
	position: relative;
  	-webkit-clip-path: url(#news__photo);
  	clip-path: url(#news__photo);
  	max-width: 330px;
	max-height: 330px;
	width: 100%;
	height: auto;
	margin: auto;
}
.news__photo-form {
	position: absolute;
    top: 17px;
    right: 40px;
}
.news__date {
  	font-size: 0.9375em;
  	font-family: "Roboto Medium";
  	color: rgb(30, 33, 50);
  	position: absolute;
    top: 77px;
    right: 66px;
}
.news__title {
  	font-size: 1.25em;
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin: 3% 1.5% 6% 0;
}
.news__text {
  	font-size: 1em;
  	font-family: "Roboto Regular";
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
}
a.button__news {
  	font-size: 1.125em;
  	width: 150px;
  	height: 47px;
 	line-height: 2.6;
 	margin: 12% auto 0;
}

/*********================= Pagination *********/

.pagination {
	padding: 6% 1.5% 0; 
	clear: both;
	position: relative;
    z-index: 1;
}
.pagination ul {
	text-align: center;
	padding: 0;
}
.pagination ul li {
	display: inline-block; 
	margin: 0 1px; 
	vertical-align: middle; 
	line-height: 12px; 
	padding: 2px;
	cursor: pointer;
}
.pagination ul li a, 
.pagination ul li span {
	color: #1e2132;
	font-weight: 700;
	text-decoration: none;
} 
.pagination ul li a:hover, 
.pagination ul li span:hover,
.pagination ul li a.prev:hover, 
.pagination ul li a.next:hover,
.pagination ul li span.prev:hover, 
.pagination ul li span.next:hover {
	color: #e31e24; 
}
.pagination ul li a.prev, 
.pagination ul li a.next,
.pagination ul li span.prev, 
.pagination ul li span.next {
	font-size: 20px;
	font-weight: 300;
	color: #1e2132;
}
.pagination ul li.active a, 
.pagination ul li.active span {
	color: #e31e24; 
	font-size: 18px; 
}

/****************** Contacts-section ******************/

.contacts {
	width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
.contacts__wrap {
	width: 1210px;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: -webkit-box;
 	display: -ms-flexbox;
 	display: flex;
 	-moz-flex-direction: column;
 	-ms-flex-direction: column;
 	-o-flex-direction: column;
 	-webkit-box-orient: vertical;
 	-webkit-box-direction: normal;
 	        flex-direction: column;
 	-webkit-box-pack: start;
 	    -ms-flex-pack: start;
 	        justify-content: flex-start;
}
h2.contacts__subtitle {
	text-align: left;
	padding-left: 0;
	padding-top: 0;
}
.contacts__icons {
	padding: 4% 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.contacts__icon {
	background-image: url(../img/contacts/icon.png);
	width: 40px;
	height: 39px;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
.contacts__icon:hover {
	background-image: url(../img/contacts/icon-hover.png);
}
.contacts__img {
	position: absolute;
	width: 19px;
	height: 19px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.contacts__desc {
  	font-size: 1.375em;
  	font-weight: 600;
  	font-family: "Roboto Regular";
  	color: rgb(30, 33, 50);
  	line-height: 1.409;
  	margin-bottom: 5px;
  	padding-right: 10px;
}
.contacts__link {
	font-family: "Roboto Medium";
	font-weight: 300;
	color: #1e2132;
}
.contacts__link-hover:hover {
	color: #e31e24;
}
a.button__contacts {
	width: 150px;
	height: 50px;
	line-height: 2.75;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 4%;
}

/******************** Footer ********************/

.footer {
	background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-width: 1920px;
    height: 80;
    margin: auto;
}
.footer__wrap {
	width: 840px;
    max-width: 100%;
    padding: 1.5%;
    margin: auto;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
}
.footer__copy {
	font-size: 1em;
	font-family: "Roboto Regular";
	text-align: center;
	margin-bottom: 15px;
}
.footer__text {
	font-size: 0.75em;
	font-family: "Roboto Light";
	text-align: center;
}
.footer__link {
	color: #fff;
}
.footer__link:hover {
	text-decoration: underline;
}

/*=======================================*/
            /*=  Forum-about-page  ==*/    
/*========================================*/

/************ Forum-about-section ************/

.about {
	background-image: url(../img/forum-pages/about-page/about-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: auto;
}
.about__wrap {
	width: 1200px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  	-webkit-box-pack: start;
  	    -ms-flex-pack: start;
  	        justify-content: flex-start;
  	padding-top: 5%;
  	padding-bottom: 5%;
}
h1.about__title,
.about__title {
  	font-size: 2.5em;
  	font-weight: 500;
  	color: rgb(242, 242, 242);
  	line-height: 1.2;
  	text-align: left;
}
.about__date {
  	font-size: 1.875;
  	font-weight: 300;
  	color: rgb(242, 242, 242);
  	line-height: 1.2;
  	text-align: left;
  	margin: 4% 0;
}
.about__text {
  	font-size: 1.25em;
  	font-family: "Roboto Regular";
  	font-weight: 100;
  	color: rgb(242, 242, 242);
  	line-height: 1.2;
  	text-align: left;
  	max-width: 600px;
}

/******************* Description-section *******************/

.description {
	width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
.description__wrap {
	width: 1200px;
  	padding-top: 2%;
  	padding-bottom: 2%;
}
.forum__title,
.description__wrap h2 {
  	font-size: 1.75em;
  	font-weight: 500;
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	text-align: left;
  	margin: 40px 0;
}
.forum__title {
	text-align: center;
}
.description__text,
.description__wrap p {
  	font-size: 1.125em;
  	font-family: "Roboto Regular";
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin-bottom: 25px;
}
.description__wrap p a { color: #2f3192; text-decoration: underline; }
.description__links-wrap,
.description__wrap ul {
	margin-bottom: 25px;
	padding-left: 20px;
	    font-family: "Roboto Regular";
    color: rgb(30, 33, 50);
    line-height: 1.2;
}
.description__links-wrap li,
.description__wrap ul li  {
	padding-left: 15px;
	margin-bottom: 25px;
}
.description__link {
  	font-size: 1.125em;
  	font-family: "Roboto Regular";
  	color: rgb(30, 33, 50);
  	text-decoration: underline;
  	-webkit-text-decoration-color: #8e9098;
  	        text-decoration-color: #8e9098;
  	line-height: 1.2;
}
.description__link:hover {
	color: #e31e24;
	-webkit-text-decoration-color: #e31e24;
	        text-decoration-color: #e31e24;
	text-decoration: underline;
}
.about__line-wrap {
	width: 1200px;
	max-width: 100%;
	margin: auto;
	text-align: left;
	padding-left: 1.5%;
	padding-right: 1.5%;
}
.about__line {
  	width: 570px;
  	max-width: 100%;
  	height: 2px;
  	margin: 0;
}

/*===============================================*/
            /*=  Forum-subject-page  ==*/    
/*================================================*/


/************ Subject-section ************/

.subject__top {
	background-image: url(../img/forum-pages/subject-page/subject-bg.jpg);
}
.subject {
	width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
.subject__wrap {
	width: 1200px;
  	padding-top: 2%;
  	padding-bottom: 2%;
  	display: -moz-flex;
  	display: -ms-flex;
  	display: -o-flex;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-align-items: center;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
  	border-bottom: 2px solid rgb(166, 201, 252);
}
.subject__wrap.last {
	border: none;
}
.subject__descr {
	width: 65%;
}
.subject__img-wrap {
	width: 35%;
	padding-right: 30px;
}
.subject__text {
  	font-size: 1em;
  	font-family: "Roboto Medium";
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin-bottom: 25px;
}
.subject__links-wrap {
	padding-left: 25px;
}
.subject__links-wrap li {
	margin-bottom: 5px;
}
.subject__link {
  	font-size: 1em;
  	font-family: "Roboto Regular";
  	color: #1e2132;
  	line-height: 1.2;
}
.subject__link:hover {
	color: rgb(227, 30, 36);
	text-decoration: underline;
	-webkit-text-decoration-color: rgb(227, 30, 36);
	        text-decoration-color: rgb(227, 30, 36);
}

/*===============================================*/
            /*=  Forum-staff-page  ==*/    
/*================================================*/

/************ Staff-section ************/

.staff__top {
	background-image: url(../img/forum-pages/staff-page/staff-bg.jpg);
}
.staff__wrap {
	width: 1200px;
    padding-top: 2%;
    padding-bottom: 2%;
}
.staff__link {
  	font-size: 1.125em;
  	color: rgb(30, 33, 50);
  	text-decoration: underline;
  	-webkit-text-decoration-color: #c7c7cc;
  	        text-decoration-color: #c7c7cc;
  	line-height: 1.2;
}
.staff__link:hover {
	color: rgb(227, 30, 36);
	-webkit-text-decoration-color: rgb(227, 30, 36);
	        text-decoration-color: rgb(227, 30, 36);
	text-decoration: underline;
}
.staff .forum__title {
	margin-top: 60px;
}
.staff__items {
	text-align: center;
	margin: auto;
}
.staff__item {
	width: 28%;
	margin: 0 1.5% 6%;
	text-align: center;
	display: inline-block;
}
.staff__photo {
    position: relative;
    -webkit-clip-path: url(#staff__photo);
    clip-path: url(#staff__photo);
    max-width: 330px;
    max-height: 330px;
    width: 100%;
    height: auto;
    margin: auto;
}
.staff__text {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.staff__name {
  	font-size: 1.125em;
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin-bottom: 20px;
}
.staff__subtitle {
  	font-size: 1em;
  	font-family: "Roboto Medium";
  	color: rgb(30, 33, 50);
  	line-height: 1.2;
  	margin: 10px 0;
}

/*==================================================*/
            /*=  Forum-partners-page  ==*/    
/*===================================================*/

/************ Partners-section ************/

a.button__partners {
	width: 210px;
	height: 65px;
	line-height: 3.6;
	margin-top: 50px;
}
.partners__top {
	background-image: url(../img/forum-pages/partners-page/partners-bg.jpg);
}
.partners__wrap {
	width: 1200px;
    padding-top: 3%;
    padding-bottom: 2%;
}
ul.partners__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-box-pack: justify;
            justify-content: space-between;
    list-style: none;
    padding: 30px 0;
}
.partners__tabs li {
	width: 370px;
	max-width: 100%;
  	height: 65px;
	font-size: 1.375em;
  	font-family: "Roboto Light";
  	color: rgb(242, 242, 242);
  	line-height: 1.25;
  	text-align: center;
	background: -webkit-gradient(linear,left top, right bottom,color-stop(46%, #291c47),color-stop(#2c306d),color-stop(80%, #1e3c6e));
	background: -webkit-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: -o-linear-gradient(top left,#291c47 46%,#2c306d,#1e3c6e 80%);
	background: linear-gradient(to bottom right,#291c47 46%,#2c306d,#1e3c6e 80%);
    padding: 3px 15px 5px 15px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.partners__tabs li.active,
.partners__tabs li:hover {
    background: -webkit-gradient(linear,left bottom, right top,color-stop(46%, #9d281f),color-stop(#a23123),color-stop(80%, #af503e));
    background: -webkit-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: -o-linear-gradient(bottom left,#9d281f 46%,#a23123,#af503e 80%);
    background: linear-gradient(to top right,#9d281f 46%,#a23123,#af503e 80%);
}
.partners__item {
    display: none;
}
.partners__container .partners__item ul li { padding-left: 0; }
.partners__container .partners__item ul li:before { content: '- '; }
.partners__container .partners__item ul li.partners__list:before { content: ''; display: none; }
#general__partners {
    display: block;
}
.partners__img {
  	background-color: rgb(255, 255, 255);
  	-webkit-box-shadow: none;
  	        box-shadow: none;
  	width: 370px;
  	max-width: 100%;
  	height: 131px;
  	position: relative;
  	z-index: 1;
  	margin: 40px 0;
}
.partners__list img {
    max-width: 320px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.partners__img:hover {
	-webkit-box-shadow: -1.879px 0.684px 16.83px 0.17px rgba(166, 201, 252);
	        box-shadow: -1.879px 0.684px 16.83px 0.17px rgba(166, 201, 252);
}
.partners__item ul {
    list-style: none;
}
.partners__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
     justify-content: space-between;
}

/*=================================================*/
            /*=  Forum-news-page  ==*/    
/*==================================================*/

/************ News-section ************/

.news__top {
	background-image: url(../img/forum-pages/news-page/news-page-bg.jpg);
}
.news-page {
	background: #fff;
}
.news-page .news__wrap {
	padding: 0% 1.5% 8%;
}

/*========================================================*/
            /*=  Forum-news-info-page  ==*/    
/*=========================================================*/

.news-info__img {
	margin-top: 20px;
	margin-bottom: 45px;
}
.share {
	margin-top: 5%;
	margin-bottom: 2%;
}
.share__title {
  	font-size: 1.125em;
  	font-family: "Roboto Medium";
  	font-weight: 500;
  	color: rgb(30, 33, 50);
  	text-transform: uppercase;
  	line-height: 1.2;
}
/*.back-arrow {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}*/
.back-arrow__link {
	display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -ms-align-items: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
	padding-right: 15px;
}
.back-arrow__text {
  	font-size: 0.875em;
	font-weight: bold;
  	font-family: "Roboto Medium";
  	color: rgb(30, 33, 50);
  	text-transform: uppercase;
  	line-height: 1.2;
	margin-bottom: 0 !important;
	margin-left: 10px;
}

/*======================================================*/
            /*=  Visitors-about-page  ==*/    
/*=======================================================*/

.visitors__about {
    background-image: url(../img/visitors-pages/about-page/about-bg.jpg);
}

/*======================================================*/
            /*=  Visitors-programm-page  ==*/    
/*=======================================================*/

.visitors__programm {
    background-image: url(../img/visitors-pages/programm-page/programm-bg.jpg);
}
.timetable {
    width: 100%;
    max-width: 1920px;
    height: auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}
.timetable__wrap {
    width: 1200px;
    padding-top: 4%;
    padding-bottom: 2%;
}
.timetable__days,
.timetable__groups {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 2px solid rgb(166, 201, 252);
}
.timetable__link {
    font-size: 1.25em;
    font-family: "Roboto Regular";
    color: #1e2132;
    line-height: 1.2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    width: 22%;
    padding-bottom: 2%;
    margin-bottom: -2px;
    margin-right: 3%;
    position: relative;
}
.timetable__link:last-child {
    margin-right: 0;
    width: 25%;
}
.timetable__day {
    text-transform: uppercase;
}
.timetable__title {
    text-transform: none;
    font-family: "Roboto Medium";
    margin-top: 10px;
}
.timetable__link-active,
.timetable__link:hover {
    color: #e31e24;
}
.timetable__link:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: rgb(69, 144, 252);
    transition: width 0.3s ease-in-out;
    left: 0;
    bottom: 0;
}
.timetable__link-active:after {
    background: rgb(69, 144, 252);
    width: 100%;
    height: 4px;
    bottom: -2px;
}
.timetable__link:hover:after {
    width: 100%;
}
.timetable__group {
    padding-top: 3%;
    font-family: "Roboto Medium";
}
.timetable__main {
    position: relative;
    margin-top: 50px;
}
.timetable__cell,
.timetable__container,
.timetable__container-main {
    position: absolute;
}
.timetable__cell {
    padding-left: 2px;
}
.timetable__box {
    font-size: 1.25em;
    font-family: "Roboto Medium";
    color: rgb(30, 33, 50);
    line-height: 1.55;
    position: relative;
    display: block;
    border-radius: 10px;
    background-color: rgb(166, 201, 252);
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 19px;
}
.timetable__top {
    position: relative;
    height: 100%;
    background-color: #fff;
    padding: 10px;
}
.timetable__section {
    border-radius: 10px;
    background-color: rgb(211, 225, 245);
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
.timetable__section_info { font-size: 0.8em; color: #666; }
.timetable__section-title { margin-bottom: 10px;
    font-size: 1.18em;
    font-family: "Roboto Medium";
    color: rgb(30, 33, 50);
    line-height: 1.2;
    word-wrap: break-word;
}
.timetable__section-time {
    font-size: 1em;
    font-family: "Roboto Medium";
    color: rgb(69, 144, 252);
}

/*======================================================*/
            /*=  Visitors-ticket-page  ==*/    
/*=======================================================*/

.visitors__ticket {
    background-image: url(../img/visitors-pages/ticket-page/ticket-bg.jpg);
}
#iframe__ticket {
    width: 100%;
    height: 1050px;
    max-width: 100%;
}

/*======================================================*/
            /*=  Visitors-ticket-page  ==*/    
/*=======================================================*/

.visitors__catalog {
    background-image: url(../img/visitors-pages/catalog-page/catalog-bg.jpg);
}
.filters__top,
.filters__icon {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.filters__top {
    width: 1200px;
    padding-top: 4%;
    padding-bottom: 2%;
    max-width: 100%;
    justify-content: space-between;
}
.filters__search {
    width: 75%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.filters__icon {
    width: 17%;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}
.filters__search label,
.filters__name,
.inner__title {
    font-size: 1.125em;
    font-family: "Roboto Medium";
    color: rgb(30, 33, 50);
    line-height: 1.2;
    padding-right: 8px;
}
#keyword {
    border: 2px rgb(166, 201, 252) solid;
    border-radius: 20px;
    padding: 10px 20px;
    width: 710px;
    max-width: 100%;
    height: 46px;
}
input#keyword::placeholder {
    font-size: 1.125em;
    font-family: "Roboto Regular";
    color: rgb(166, 201, 252);
    line-height: 1.2;
}
.filters__input {
    position: relative;
    max-width: 100%;
}
.filters__submit {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(191deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
    background-image: -o-linear-gradient(191deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
    background-image: linear-gradient(281deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%) ;
    width: 80px;
    height: 45px;
}  
.filters__submit:before {
    content: '';
    position: absolute;
    background-image: url(../img/visitors-pages/catalog-page/search_icon.png);
    width: 26px;
    height: 26px;
    top: 9px;
    right: 26px;
} 
.filters__trigger {
    border: none;
    border-radius: 20px;
  background-image: -webkit-linear-gradient(11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background-image: -o-linear-gradient(11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background-image: linear-gradient(101deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
    width: 80px;
    height: 45px;
    position: relative;
}
.filters__trigger:before {
    content: '';
    position: absolute;
    background-image: url(../img/visitors-pages/catalog-page/filter-results-button.png);
    width: 31px;
    height: 21px;
    top: 12px;
    right: 24px;
}
.filters__trigger-active:before {
    background-image: url(../img/visitors-pages/catalog-page/close_icon.png);
    width: 26px;
    height: 26px;
    top: 9px;
    right: 26px;
}
.inner {
    display: none;
    width: 1920px;
    max-width: 100%;
    background-color: #e8eff9;
    position: relative;
}
.inner-active {
    display: block;
    margin-bottom: 5%;
}
.inner__wrap {
    margin: auto;
    width: 1200px;
    padding: 6% 1.5%;
}
.inner__form,
.inner__filter {
    width: 880px;
    max-width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.inner__form {
    -ms-align-items: center;
    align-items: center;
}
.inner__select {
    width: 712px;
    max-width: 100%;
    min-width: 180px;
    height: 50px;
}
/*Select*/
.pseudo-select .select {
    cursor: pointer;
    background-image: url(../img/visitors-pages/catalog-page/arrow.png);
    background-repeat: no-repeat, repeat;
    background-position: right 5px top 50%, 0 0;
    background-size: 30px auto, 100%;
}
.pseudo-select input {
    display: none;
}
.pseudo-select {
    border-radius: 20px;
    border: none;
    background-color: rgb(166, 201, 252);
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    outline: none;
    font-size: 1em;
    font-family: "Roboto Regular";
    color: rgb(255, 255, 255);
    line-height: 1.8;
    position: relative;
    cursor: pointer;
}
.pseudo-select .options {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgb(166, 201, 252);
    width: 712px;
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 35px;
    left: 0;
    padding-top: 15px;
}
.pseudo-select .options div {
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease-out; 
}
.pseudo-select .options div:hover { 
  background-image: -moz-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background-image: -webkit-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background-image: -ms-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
}
.inner__filter {
    padding: 6% 0 0;
}
.inner__char {
    border-radius: 10px;
    background-color: rgb(166, 201, 252);
    width: 50px;
    height: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease-out;
    font-size: 1.125em;
    font-family: "Roboto Medium";
    color: rgb(30, 33, 50);
}
.inner__char:hover,
.inner__char:active {
    color: #fff;
  background: -moz-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background: -webkit-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
  background: -ms-linear-gradient( 11deg, rgb(68,49,104) 1%, rgb(63,56,114) 55%, rgb(57,63,123) 100%);
}
.alphabet {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}
.catalog__items-wrap {
    width: 1200px;
    padding-top: 0;
    padding-bottom: 6%;
    max-width: 100%;
}
.catalog__letter {
    font-size: 1.5em;
    font-family: "Roboto Regular";
    color: rgb(30, 33, 50);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 5%;
}
.catalog__list {
    list-style-type: none;
}
.catalog__list li {
    margin-top: 10px;
}
.catalog__list li a {
    font-size: 1.125em;
    font-family: "Roboto Regular";
    color: rgb(30, 33, 50);
}
.catalog__list li a:hover {
    text-decoration: underline;
}

/*==================================================*/
            /*==  Media-photo-i-video-page  ==*/    
/*===================================================*/

.media__top {
    background-image: url(../img/media-pages/media-bg.jpg);
}
.media ul.partners__tabs {
    justify-content: flex-start;
}
.media .partners__tabs li {
    margin-right: 30px;
}
.media .partners__tabs li a {
    color: #fff;
    font-family: "Roboto Light";
}

/*==================================================*/
            /*==  Media-photo-page  ==*/    
/*===================================================*/

.media__photo-top .about__date {
    font-size: 1.875em;
}
.media__photo-wrap {
    width: 1200px;
    padding-top: 6%;
    padding-bottom: 6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.media__photo-item {
    display: block;
    max-width: 100%;
    height: 325px;
    overflow: hidden;
    margin-right: 1.5%;
    margin-bottom: 3%;
    width: 31.8%;
    cursor: pointer;
    position: relative;
}
.media__photo-item:nth-child(3n) {
    margin-right: 0;
}
.media__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media__photo-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-image: url(../img/media-pages/photo-page/overlay.png);
}
.media__photo-item:hover .overlay {
    opacity: 1;
}
.zoom__icon {
    position: absolute;
    width: 52px;
    height: 53px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}
.fancybox-skin {
    background: transparent;
}
.fancybox-overlay {
    background: rgba(251, 251, 251, 0.75);
}
.fancybox-opened .fancybox-skin {
    box-shadow: none;
}
.fancybox-outer {
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5);
}
.fancybox-close {
    background-image: url(../img/media-pages/photo-page/close.png);
    width: 21px;
    height: 21px;
    right: 20px;
    top: -10px;
}
.fancybox-next span {
    background-image: url(../img/media-pages/photo-page/arrow-right.png);
    background-position: 0;
}
.fancybox-prev span {
    background-image: url(../img/media-pages/photo-page/arrow-left.png);
    background-position: 0;
}
.fancybox-next span:hover {
    background-image: url(../img/media-pages/photo-page/arrow-right-hover.png);
}
.fancybox-prev span:hover {
    background-image: url(../img/media-pages/photo-page/arrow-left-hover.png);
}
.fancybox-next {
    right: -65px;
}
.fancybox-prev {
    left: -70px;
}
.fancybox-nav span {
    top: 45%;
    width: 37px;
    height: 63px;
}