.mainpage .top_menu_container .logo svg {
	fill: white;
}

.mainpage.scrolled .top_menu_container .logo svg, .mainpage.scrolled .icon svg, .mainpage.mobile_menu_is_on .logo svg {
	fill: black;
}

.mainpage_video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000005;
}

.mainpage_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	opacity: 0.7;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.mainpage_video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: .6;
}

.mainpage_title {
	position: absolute;
	z-index: 2;
	color: #fff;
	left: 50%;
	top: 50%;
	/*width: 95%;*/
	transform: translate(-50%, -50%);
	font-size: 4em;
	font-weight: 300;
	text-align: center;
	line-height: 1.5em;
}

.title-big {
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(100vw/6);
	text-align: left;
	line-height: 0.9em;
	margin-bottom: .1em;
	margin-left: -0.05em;
}

.title-small {
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(100vw/30);
	text-align: left;
	line-height: 1.4em;
	/*padding-left: .3em;*/
}

.mainpage_title .subheader {
	font-size: 0.75em;
}

.mainpage_link {
	position: absolute;
	z-index: 2;
	color: #fff;
	left: 50%;
	bottom: 5%;
	width: 95%;
	transform: translate(-50%, -50%);
	font-size: 1.5em;
	font-weight: 500;
	text-align: center;
	line-height: 1.25em;
}

.mainpage_link a {
	border: 1px solid rgba(255, 255, 255, 1);
	background: rgba(255, 255, 255, 0);
	padding: .75rem 1.5rem;
	text-decoration: none;
	color: #fff;
	transition: all .3s ease;
}

.mainpage_link a:hover {
	border: 1px solid rgba(255, 255, 255, .75);
	background: rgba(255, 255, 255, 1);
	color: #000;
}

@media (orientation: portrait) {
	.mainpage_video video.horisontal {
		display: none;
	}
	.mainpage_bg.horisontal {
		display: none;
	}
}
@media (orientation: landscape) {
	.mainpage_video video.vertical {
		display: none;
	}
	.mainpage_bg.vertical {
		display: none;
	}
}

@media (max-width : 1200px) {
	.mainpage_title {
		font-size: 3em;
	}
}

@media (max-width : 980px) {
	.mainpage_title {
		font-size: 2em;
	}
}

.slider {
	transition: height .3 ease;
}

.slide {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.slide.active {
	position: relative;
	z-index: 2;
}

.slide img {
	width: 100%;
	height: auto;
}

.bullets_container {
	position: absolute;
	left: 50%;
	bottom: 5%;
	transform: translateX(-50%);
	z-index: 3;
	white-space: nowrap;
}

.bullets_container .bullet {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	transition: all .3s ease;
	height: 20px;
	width: 20px;
	margin: 5px;
	cursor: pointer;
}

.bullets_container .bullet.active {
	cursor: default;
}

.bullets_container .bullet:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.75);
	transition: all .3s ease;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	
}

.bullets_container .bullet:hover:after {
	height: 6px;
	background: rgba(255, 255, 255, 1);
}
.bullets_container .bullet.active:after {
	height: 10px;
}






.catalog_slider {
	position: relative;
	/*
	overflow-x: hidden;
	padding-right: 1px;
	padding-bottom: 1px;
	*/
	user-select: none;
}

.catalog_slider_container {
	position: relative;
	transition: all .3s ease;
	left: 0;
}

.catalog_slider_item {
	transition: all .3s ease;
}

.arrow_left, .arrow_right {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 2em;
	color: #0047c6;
	background: #eee;
	text-align: center;
	user-select: none;
	cursor: pointer;
	position: relative;
	transition: background .3s ease;
}

.arrow_left:hover, .arrow_right:hover {
	background: #ddd;
}

.arrow_left:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	border: 1px solid #000000;
	border-width: 0 1px 1px 0;
	left: 58%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(135deg);
}

.arrow_right:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	border: 1px solid #000000;
	border-width: 0 1px 1px 0;
	left: 42%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}