.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: #303131;
	overflow: hidden;
}

.mainpage_title {
	position: absolute;
	z-index: 2;
	color: #fff;
	left: 50%;
	top: 50%;
	width: 95%;
	transform: translate(-50%, -50%);
	font-size: 4em;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
}

.mainpage_link {
	position: absolute;
	z-index: 2;
	color: #fff;
	left: 50%;
	bottom: 15%;
	width: 95%;
	transform: translate(-50%, -50%);
	font-size: 1.5em;
	font-weight: 200;
	text-align: center;
	line-height: 1.25em;
}

.mainpage_link a {
	border: 1px solid rgba(255, 255, 255, .3);
	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, 0.1);
}

@media (max-width : 1200px) {
	.mainpage_title {
		font-size: 3em;
	}
}

@media (max-width : 980px) {
	.mainpage_title {
		font-size: 2em;
	}
}


.mainpage_sildes {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
}

.mainpage_silde {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}








.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: block;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	color: #fff;
	background: #a68f7b;
	text-align: center;
	user-select: none;
	cursor: pointer;
	position: absolute;
	z-index: 10;
	transition: background .3s ease;
	top: 40%;
}

.arrow_left:hover, .arrow_right:hover {
	background: #937861;
}

.arrow_left {
	left: 0;
	transform: translate(calc(-50% + 1rem), -50%);
}

.arrow_right {
	right: 0;
	transform: translate(calc(50% - 1rem), -50%);
}

.arrow_left:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	border: 1px solid #fff;
	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 #fff;
	border-width: 0 1px 1px 0;
	left: 42%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}


.mainpage_slides {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	z-index: 1;
	overflow: hidden;
}

.mainpage_slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s ease, transform 5s linear;
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.mainpage_slide.active {
	transform: scale(1.15);
	opacity: 1;
	transition: opacity 1s ease, transform 7s linear;
	z-index: 1;
}