.section-title {
	font-family: 'Museo';
	font-weight: 700;
	font-size: 26px;
	text-transform: uppercase;
	color: #333333;
}

.section-text {
	font-family: 'Museo';
	font-weight: 300;
}

.section-link {
	font-family: 'Museo';
	font-weight: 300;
	font-size: 18px;
	line-height: 47px;
	color: #fff;
	text-align: center;
	display: block;
}

/*Slider*/

.slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	overflow: hidden;
}

.slider-item {
	width: 100%;
	height: 579px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    display: inline-block;
}

/*Arrows*/

.arrow {
	width: 31px;
	height: 50px;
	border: none;
    background: none;
	position: absolute;
	top: 365px;
	z-index: 10;
}

.arrow-img {
    display: block;
    cursor: pointer;
	cursor: hand;
}

.arrow-left {
    left: 18px;
}

.arrow-right {
    right: 18px;
}

.arrow-right .arrow-img{
	-webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

/*Banner*/

.banner {
	float: right;
	margin-top: 227px;
}

.banner-text {
	font-family: 'Museo';
	font-weight: 700;
	font-size: 32px;
	line-height: 58px;
	color: #005b9c;
	padding: 0 30px;
	background: #fff;
	margin-bottom: 10px;
}

.banner-subtext {
	font-family: 'Museo';
	font-weight: 500;
	font-size: 22px;
	line-height: 58px;
	color: #fff;
	padding: 0 30px;
	background: #005b9c;
}

/*Search form*/

.search-form {
	width: 100%;
	padding: 22px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
	background: #0893ce;
	margin-top: 297px;
}

/*Showcase*/

.showcase {
	width: 100%;
	padding: 25px 25px 27px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
	background: #b295c6;
	margin-top: 50px;
}

.showcase-form {
	width: 100%;
	padding: 20px 0;
}

.showcase .section-title, .showcase .section-text {
	color: #fff;
}

.showcase-form-link {
	border: 1px solid #f9feff;
	margin: 0 auto;
	width: 226px;
}

.showcase-form-link:hover {
	background: #f9feff;
	color: #b295c6;
}

/*Calendar*/

.calendar {
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.calendar-block {
	padding-top: 20px;
}

/*Feedback*/

.feedback {
	width: 300px;
	float: left;
}

.feedback-block {
	width: 100%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
	margin-top: 26px;
}

.feedback-agreement {
	font-family: 'FiraSans';
	font-size: 11px;
	color: #000;
	margin-top: 17px;
}

.feedback-agreement a {
	text-decoration: underline;
}

.feedback-agreement a:hover {
	text-decoration: none;
}

/*About*/

.about {
	float: left;
	width: calc(100% - 700px);
	margin: 0 50px;
}

.about-text {
	line-height: 30px;
	color: #000;
	margin-top: 20px;
}

.about-text a {
	color: #0893ce;
	text-decoration: underline;
}

.about-text a:hover {
	text-decoration: none;
}

/*News*/

.news {
	width: 300px;
	float: right;
}

.news-block {
	width: 100%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
	margin-top: 26px;
}

.news-link {
	background: #0893ce;
	width: 178px;
	margin-top: 26px;
}

.news-link:hover {
	color: rgba(255, 255, 255, .5);
}

/*Map*/

.map {
	width: 100%;
	height: 300px;
	overflow: hidden;
	margin-top: 50px;
	margin-bottom: 50px;
}

/*Partners*/

.patrners-list {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.patrners-list-item {
	display: inline-block;
}

.patrners-list-item-logo {
    padding: 0 5px;
    -webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
}

@media screen and (min-width: 1001px) and (max-width: 1230px) {
	
	/*Calendar, Feedback, About, News, Partners*/
	
	.calendar, .feedback, .about, .news, .partners {
		padding-left: 20px;
		padding-right: 20px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.about {
		margin-left: 0;
		margin-right: 0;
		width: calc(100% - 600px);
	}
	
	.patrners-list-item {
		max-width: 180px;
		padding: 10px 0;
		margin: 0 auto;
	}

}

@media screen and (max-width: 1000px) {
	
	/*Slider*/
	
	.slider img {
		max-width: none;
	}
	
	/*Arrows*/
	
	.arrow {
		top: 407px;
	}
	
	/*Banner*/
	
	.banner {
		margin-right: 15px;
		margin-top: 230px;
	}
	
	.banner-text {
		font-size: 24px;
		line-height: 29px;
		padding: 10px 20px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.banner-subtext {
		font-size: 16px;
		line-height: normal;
		padding: 10px 20px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	/*Search form*/
	
	.search-form {
		background: #fff;
		margin-top: 200px;
		padding: 22px 15px 0;
	}
	
	/*Showcase*/
	
	.showcase {
		margin-top: 28px;
		padding: 25px 15px 40px;
	}
	
	.showcase-form {
		padding: 22px 0 30px;
	}
	
	/*Calendar*/
	
	.calendar {
		margin-top: 39px;
		margin-bottom: 39px;
		padding: 0 15px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.calendar-block {
		padding-top: 13px;
	}
	
	/*Feedback, About*/

	.feedback, .about, .news {
		width: 100%;
		float: none;
		margin-bottom: 49px;
		padding: 0 15px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.feedback {
		max-width: 300px;
	}
	
	.about {
		margin-left: 0;
		margin-right: 0;
	}
	
	/*Map*/
	
	.map {
		margin: 0;
	}
	
	/*Partners*/
	
	.partners {
		padding: 28px 15px 31px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.patrners-list {
		text-align: center;
	}
	
	.patrners-list-item {
		max-width: 155px;
		padding: 10px 0;
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	.banner {
		width: 290px;
		margin-top: 230px;
	}
	.banner-text {
		font-size: 14px;
		line-height: 21px;
		padding: 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.banner-subtext {
		font-size: 12px;
		line-height: normal;
		padding: 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
}