/*! NORMALIZE */*{margin:0;padding:0;box-sizing:border-box;color:inherit;font-size:inherit;font-family:inherit;font-weight:inherit;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:transparent;}button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:600}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:normal;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img,video,figure{border-style:none;height:auto;max-width:100%;}iframe{border-style:none;max-width:100%}svg:not(:root){overflow:hidden}button,select{text-transform:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}button::-moz-focus-inner{border: 0;}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none;display:none}summary{display:list-item}[hidden],template{display:none}body,html{font-size:16px;line-height:1.5}a,button,img,input,textarea{border:0;outline:0;text-decoration:none;-webkit-appearance:none;background:0 0;box-shadow:none;-moz-appearance:textfield;}table{border-collapse:collapse;border-spacing:0;width:100%}h1,h2,h3,h4,h5,h6{line-height:normal}

@font-face {
	font-family: 'OpenSans';
	font-display: swap;
	src: url('fonts/OpenSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'OpenSans';
	font-display: swap;
	src: url('fonts/OpenSans-Semibold.ttf') format('truetype');
	font-weight: 700;
}
@font-face {
	font-family: 'OpenSans';
	font-display: swap;
	src: url('fonts/OpenSans-Bold.ttf') format('truetype');
	font-weight: 900;
}
html, body {
	min-height: 100vh;
}
body {
	font-family: "OpenSans", sans-serif;
	background: #fff;
	color: #000;
	overflow-x: hidden;
}
a {
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.8rem;
}
h3 {
	font-size: 1.6rem;
}
h4 {
	font-size: 1.4rem;
}
h5 {
	font-size: 1.2rem;
}
h6 {
	font-size: 1rem;
}
p, figure, ul, ol {
	margin-bottom: 1em;
}
ul, ol {
	padding-left: 1rem;
}
.row_table {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.row_table.table-auto {
	table-layout: auto;
}
.row_table > * {
	display: table-cell;
	vertical-align: middle;
}
.row_inline {
	font-size: 0 !important;
}
.row_inline > * {
	display: inline-block;
	vertical-align: middle;
	font-size: 1rem;
}
.row-top > * {
	vertical-align: top;
}
.row-bottom > * {
	vertical-align: bottom;
}
.row-margin {
	margin: 0 -10px;
	min-width: 100%;
}
.row-margin > * {
	padding: 0 10px;
	margin-bottom: 20px;
}
.row_flex {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flex-items > * {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flex-items > * > * {
	width: 100%;
}
.flex-column {
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.flex-reverse {
	-ms-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-top {
	-ms-align-items: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.flex-center {
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.flex-bottom {
	-ms-align-items: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.flex-space {
	-ms-justify-content: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.col-auto {
	width: 1%;
}
.col-1 {
	width: 100%;
}
.col-2 {
	width: 50%;
}
.col-3 {
	width: 33.333333%;
}
.col-4 {
	width: 25%;
}
.col-5 {
	width: 20%;
}
.col-6 {
	width: 16.666666%;
}
.hidden {
	display: none !important;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.container {
	width: 100%;
	max-width: 1270px;
	padding: 0 15px;
	margin: 0 auto;
}
.btn {
	background: #db6767;
	border-radius: 30px;
	text-align: center;
	padding: 10px 50px;
	color: #fff;
	display: inline-block;
	text-transform: uppercase;
	line-height: 20px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}
section {
	padding-top: 50px;
}
.section_title {
	font-size: 32px;
	color: #737d80;
	font-weight: 900;
	padding-left: 60px;
	position: relative;
}
.section_title:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1.5px;
	width: 50px;
	background: #ff5a69;
	height: 3px;
}
.section_desc {
	color: #737d80;
	font-size: 14px;
	line-height: normal;
	padding-left: 60px;
}
.title_block {
	margin-bottom: 30px;
}
.center {
	text-align: center;
}
.buy_btn {
	display: block;
	margin: 0 auto;
	width: 220px;
}
.owl-carousel .owl-dots {
	text-align: center;
}
.owl-carousel .owl-dots > button.owl-dot {
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: #ccc;
	border-radius: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.owl-carousel .owl-dots > button.owl-dot.active, .owl-carousel .owl-dots > button.owl-dot:hover {
	background: #db6767;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	font-size: 40px !important;
	line-height: 50px !important;
	left: 0;
	margin-top: -25px;
	display: block;
}
.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0;
}

/* HEADER */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	color: #fff;
}
#header .menu {
	text-align: right;
	font-size: 14px;
	font-weight: 900;
	padding: 0;
	margin-top: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(237, 237, 237, 0.5);
}
#header .menu li {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
#header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	-webkit-animation: fadeInDown .5s ease-in-out;
	animation: fadeInDown .5s ease-in-out;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
	background: #fff;
	color: #737d80;
	padding: 20px 0;
}
#header.fixed .menu {
	margin: 0;
	padding: 0;
	border: 0;
}
#menu_toggle {
	width: 35px;
	display: none;
	margin-left: auto;
	margin-right: 0;
	cursor: pointer;
}
#menu_toggle span {
	display: block;
	width: 35px;
	height: 4px;
	top: 0;
	background: #fff;
	margin: 5px auto;
	border-radius: 3px;
	position: relative;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#menu_toggle.active span:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 9px;
}
#menu_toggle.active span:nth-child(2) {
	opacity: 0;
}
#menu_toggle.active span:nth-child(3) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -9px;
}
#header.fixed #menu_toggle span {
	background: #737d80;
}

/* MAIN */
#main {
	height: 64vw;
	background: url('../img/main_bg.jpg') no-repeat center / cover;
	position: relative;
}
#main .buy_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -110px;
}

/* ABOUT */
#about {
	color: #737d80;
	font-size: 14px;
}
#about .about_text h3 {
	margin-bottom: 1rem;
}
#about .about_picture {
	width: 420px;
	padding-left: 50px;
}
#about .about_picture img {
	display: block;
	width: 100%;
}
#numbers .num {
	font-size: 60px;
}
#numbers .num_text {
	font-size: 14px;
	font-weight: 700;
}
#numbers {
	padding: 0;
	color: #737d80;
}
#numbers .number {
	width: 100px;
	margin-right: 80px;
	line-height: normal;
}

/* VIDEO */
#video iframe {
	display: block;
	width: 100%;
	height: 500px;
}

/* ARTISTS */
#artists .item img {
	height: 440px;
	width: 100%;
	display: block;
	object-fit: cover;
}
#artists .item_info {
	padding: 30px 15px;
	color: #737d80;
	background-color: #f5f7f7;
	line-height: normal;
}
#artists .item_title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
#artists .item_desc {
	font-size: 13px;
}
#artists .artists {
	margin-bottom: 50px;
}

/* SCENE AND GALLERY */
#scene .main_photo {
	display: block;
	margin: 0 auto 20px;
}
#scene .gallery {
	margin-bottom: 50px;
}
.gallery a {
	display: block;
}
.gallery img {
	display: block;
	width: 100%;
	height: 290px;
	object-fit: cover;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.gallery .col-4 img {
	height: 220px;
}
.gallery a:hover img {
	box-shadow: 0 2px 20px 2px rgba(0,0,0,.45);
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

/* REVIEWS */
#reviews {
	padding: 80px 0;
	background: url('../img/reviews_bg.jpg') no-repeat center / cover;
	background-attachment: fixed;
	color: #fff;
	margin-top: 80px;
	position: relative;
}
#reviews:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background: #000;
	opacity: 0.3;
	pointer-events: none;
}
#reviews .container {
	position: relative;
}
#reviews h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 50px;
	font-weight: 900;
}
#reviews .item {
	text-align: center;
}
#reviews .item_text {
	font-size: 18px;
	margin-bottom: 25px;
}
#reviews .item_title {
	font-weight: 700;
}
#reviews .reviews {
	position: relative;
	padding: 0 50px;
}

/* CONTACTS */
#contacts {
	background: #f5f7f7;
}
#contacts .text {
	margin-bottom: 1em;
}

/* FOOTER */
#footer {
	background: #222;
	padding: 50px 0 15px;
	color: #acbbbf;
	font-size: 14px;
	line-height: normal;
}
#footer h4 {
	font-size: 27px;
	margin-bottom: 30px;
}
#footer h5 {
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 30px;
}
#footer .contact {
	margin-bottom: 5px;
}
#footer .contact span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-left: 9px;
	margin-left: 8px;
}
#footer .contact span:before {
	content: '';
	position: absolute;
	display: block;
	width: 1px;
	height: 14px;
	left: 0;
	top: 50%;
	margin-top: -7px;
	background: #acbbbf;
}
#footer .contact i {
	font-size: 15px;
	width: 15px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}
#footer .copyright {
	color: #fff;
}
#footer .copyright img {
	width: 14px;
}
#footer a:hover {
	color: #fff;
}
#footer .social {
	margin-bottom: 40px;
}
#footer .social a {
	font-size: 24px;
}

#to_top {
	position: fixed;
	z-index: 100;
	width: 50px;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	display: block;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#to_top img {
	display: block;
	width: 100%;
}
#to_top.visible {
	visibility: visible;
	opacity: 0.8;
}
#to_top:hover {
	opacity: 1;
}

/* MEDIA */
@media (max-width: 920px) {
	#header .menu {
		margin-top: 20px;
	}
	#about .about_content {
		display: block;
	}
	#about .about_content > div {
		display: block;
	}
	#about .about_picture {
		padding-left: 0;
		width: 100%;
	}
	#numbers .numbers {
		text-align: center;
	}
	#numbers .number {
		margin: 0 25px;
	}
	.gallery img {
		height: 200px;
	}
	.gallery .col-4 img {
		height: 200px;
	}
}

@media (max-width: 680px) {
	#header {
		padding: 10px 0 !important;
	}
	#header .navmenu {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #ebebeb;
		z-index: 100;
		padding-top: 80px;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	body.mobile-menu-visible {
		overflow: hidden;
	}
	body.mobile-menu-visible #header .navmenu {
		visibility: visible;
		opacity: 1;
	}
	body.mobile-menu-visible #menu_toggle span {
		background: #000 !important;
	}
	#header .menu li {
		display: block;
		margin-left: 0;
		margin-bottom: 15px;
	}
	#header .menu {
		text-align: center;
		font-weight: normal;
		font-size: 30px;
		color: #000;
		margin: 0;
		padding: 0;
		border: 0;
	}
	#header .menu a {
		display: block;
	}
	#menu_toggle {
		display: block;
		position: relative;
		z-index: 100;
	}
	.gallery .col-4 {
		width: 33.333333%;
	}
}

@media (max-width: 580px) {
	#artists .item img {
		height: 350px;
	}
	.gallery .col-3, .gallery .col-4 {
		width: 50%;
	}
	#video iframe {
		height: 250px;
	}
}

@media (max-width: 420px) {
	.gallery img {
		height: 100px;
	}
	.gallery .col-4 img {
		height: 100px;
	}
	.section_title {
		font-size: 25px;
	}
	#reviews .item_text {
		font-size: 16px;
	}
	#contacts .col-2 {
		width: 100%;
	}
	#contacts .text {
		height: auto !important;
	}
}

@media (max-width: 380px) {
	#artists .item img {
		height: 250px;
	}
}