@import url("root.css");
@import url("slick.min.css");
@import url("magnific-popup.min.css");

@font-face {
	font-family: 'Montserrat Regular';
	src: url('../fonts/Montserrat-Regular.eot');
	src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
	url('../fonts/Montserrat-Regular.woff') format('woff'),
	url('../fonts/Montserrat-Regular.woff2') format('woff2'),
	url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
}
@font-face {
	font-family: 'Montserrat Medium';
	src: url('../fonts/Montserrat-Medium.eot');
	src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
	url('../fonts/Montserrat-Medium.woff') format('woff'),
	url('../fonts/Montserrat-Medium.woff2') format('woff2'),
	url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: normal;
}
@font-face {
	font-family: 'Montserrat SemiBold';
	src: url('../fonts/Montserrat-Semibold.eot');
	src: url('../fonts/Montserrat-Semibold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/Montserrat-Semibold.woff') format('woff'),
	url('../fonts/Montserrat-Semibold.woff2') format('woff2'),
	url('../fonts/Montserrat-Semibold.ttf') format('truetype');
	font-weight: normal;
}
@font-face {
	font-family: 'Montserrat Bold';
	src: url('../fonts/Montserrat-Bold.eot');
	src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/Montserrat-Bold.woff') format('woff'),
	url('../fonts/Montserrat-Bold.woff2') format('woff2'),
	url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: normal;
}

* {
	box-sizing: border-box;
	user-select: none;
}
*::-webkit-scrollbar {
	width: 5px;
}
*::-webkit-scrollbar-thumb {
	background: var(--white);
	opacity: 0.5;
}
body, html {
	margin: 0;
	padding: 0;
	background: var(--black);
	color: var(--white);
	font-family: 'Montserrat Regular', sans-serif;
}
@media screen and (min-width: 1150px) {
	body, html, a, button,label, input, textarea {
		cursor: none;
	}
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
	line-height: 20px;
}
body {
    overflow-x: hidden;
	font-size: 1rem;
	line-height: 100%;
}
header, main, section, footer {
	position: relative;
}
a {
	display: inline-block;
	text-decoration: none;
}
label {
	display: inline-block;
}
button, a {
	color: inherit;
	transition: var(--transition);
}
*:focus {
	outline: 0!important;
}
img {
	max-width: 100%;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5 {
	margin: 0;
	font-weight: normal;
	line-height: 1;
}
h1, h2, h3 {
	text-transform: uppercase;
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.125rem;
}
h4 {
	font-size: 1rem;
}
h5 {
	font-size: 0.875rem;
}

p {
	margin: 0 0 1rem;
}

.medium {
	font-family: 'Montserrat Medium';
}
.semibold {
	font-family: 'Montserrat SemiBold';
}
.bold {
	font-family: 'Montserrat Bold';
}

#cursor {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
    will-change: transform;
	z-index: 9999;
}
#cursor:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid var(--white);
	border-radius: 100%;
	opacity: 0.75;
	transition: all 0.3s ease-in-out;
}
#cursor.black:before {
	border-color: var(--black);
}
#cursor.active:before {
	width: 30px;
	height: 30px;
	opacity: 1;
}

.flex {
	display: flex;
}
.column {
	flex-direction: column;
}
.wrap {
	flex-wrap: wrap;
}
.jc-start {
	justify-content: flex-start;
}
.jc-sa {
	justify-content: space-around;
}
.jc-c {
	justify-content: center;
}
.jc-sb {
	justify-content: space-between;
}
.jc-end {
	justify-content: flex-end;
}
.ai-start {
	align-items: flex-start;
}
.ai-sa {
	align-items: space-around;
}
.ai-c {
	align-items: center;
}
.ai-sb {
	align-items: space-between;
}
.ai-end {
	align-items: flex-end;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 1vw;
}

header {
	position: fixed;
	top: 0;
	z-index: 99;
	width: 100%;
    background: rgba(0, 0, 0, 0);
	transition: var(--transition);
}
header .header {
	height: 100px;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(250, 251, 252, 0.5);
	font-family: 'Montserrat Medium';
	font-size: 0.875rem;
	transition: var(--transition);
}
header .col {
	width: calc(100% / 3);
	text-align: center;
}
header .col:first-child {
	text-align: left;
}
header .col:last-child {
	text-align: right;
}
header .menu {
	padding-left: 25px;
	background: url(../images/menu.svg) left center no-repeat;
	background-size: auto 100%;
    text-transform: uppercase;
}
header a {
	position: relative;
}
header img {
	width: auto;
	max-width: 10vw;
	transition: var(--transition);
}

.logo {
	max-height: calc(100px - 1rem);
	opacity: 1;
}
.icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.75);
	max-height: calc(50px - 1rem);
	opacity: 0;
}

.wa, .tm, .gis {
	padding-right: 25px;
	color: var(--white);
}
.wa {
	background: url(../images/whatsapp.svg) right center no-repeat;
	background-size: auto 100%;
}
.tm {
	background: url(../images/telegram.svg) right center no-repeat;
	background-size: auto 100%;
}
.gis {
	padding-right: 25px;
	background: url(../images/gis.svg) right center no-repeat;
	background-size: auto 100%;
}

header.active {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
}
header.active .header {
    height: 50px;
	border-color: rgba(250, 251, 252, 0);
}

main {
	z-index: 9;
	margin-bottom: 310px;
	background: var(--black);
	transition: var(--transition);
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 310px;
	padding-bottom: 1.5rem;
	background: #151515;
}
footer .row {
	padding-top: 1.5rem;
	border-bottom: 1px solid #3b3b3b;
}
footer .row:last-child {
	border-bottom: 0;
}
footer img {
	width: 7.5vw;
	margin-bottom: 1.5rem;
}
footer ul {
	display: inline-block;
	width: 100%;
}
footer li {
	float: left;
	margin-right: 5vw;
	margin-bottom: 1.5rem;
}
footer a {
	text-transform: uppercase;
	font-size: 0.875rem;
}
footer .col:first-child {
	width: 75%;
}

#main .container {
	padding: 0;
}
.video, .background {
	position: absolute;
	top: 0;
	width: 100%;
	height: 748px;
}
.video video, .background img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	opacity: 0.5;
}
#main .caption {
	position: relative;
	width: 100%;
 	max-width: 1280px;
	height: 748px;
 	margin: auto;
}
#main h1 {
	margin-bottom: 1.5rem;
	text-align: center;
}

.btn {
	width: 270px;
	height: 45px;
	max-width: 100%;
	padding: 0 1vw;
	background: var(--white);
	border: 0;
	border-radius: 45px;
	font-family: 'Montserrat Regular';
	font-size: 1rem;
	color: var(--black);
	line-height: 45px;
	text-align: center;
}

#catalog, #news {
	padding: 5rem 0 10rem;
}

.title {
	width: 100%;
	max-width: 768px;
	margin: 0 auto 2.5rem;
}
.title + .title {
	margin-top: 5rem;
}
.title h2, .title h3, .title h4 {
	margin-bottom: 1rem;
	text-align: center;
}

.signs img {
 	margin: auto;
}

#main .signs {
 	width: 100%;
	margin-bottom: 1.5rem;
}
#main .signs img {
 	width: auto;
 	height: auto;
 	opacity: 1;
}

.serts {
 	display: flex;
 	justify-content: center;
 	margin-bottom: 1.5rem;
}
.serts a {
 	width: 180px;
    height: 180px;
 	padding: 0 1vw;
}
.serts img {
 	display: block;
 	width: 100%;
    height: 100%;
	object-fit: contain;
    object-position: center;
}

#catalog .items, #news .items {
	margin-top: 1.5rem;
	margin-left: -1vw;
	margin-right: -1vw;
}
#catalog .item, #news .item {
	width: calc(100% / 3);
	margin-bottom: 4rem;
	padding: 0 1vw;
}
#catalog .item a, #news .item a  {
	display: block;
	padding-bottom: 2.5rem;
	border-left: 1px solid #7C7C7C;
}
#catalog .item img, #news .item img {
	display: block;
	width: 100%;
	height: calc(100vw / 4 - 1.5vw);
	object-fit: contain;
	object-position: center;
	margin-bottom: 1.125rem;
 	background: #201b21;
}
#catalog h3, #news h3, #catalog h5, #news h5 {
	padding: 0 1vw; 
}
#catalog h3, #news h3 {
	margin-bottom: 1.125rem;
}

.hidden {
	overflow: hidden;
}

#menu, #categories {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	max-width: 500px;
	height: 100%;
	transition: var(--transition);
    backdrop-filter: blur(20px) saturate(1.8);
}
#categories {
 	background: var(--white);
}
#menu.active, #categories.active {
	left: 0;
}
#menu .container, #categories .container {
	height: 100%;
}
#menu .close, #categories .back {
	width: 20px;
	height: 100px;
}
#menu .close {
	background: url(../images/close.svg) center no-repeat;
}
#categories .back {
	background: url(../images/back.svg) center no-repeat;
    filter: brightness(0.5);
}
#menu ul, #categories ul {
	width: 100%;
    height: calc(100% - 100px);
	overflow: hidden auto;
	padding: 1.5rem 5vw;
}
#categories ul::-webkit-scrollbar-thumb {
	background: var(--black);
	opacity: 0.5;
}
#menu li, #categories li {
	margin-bottom: 1.5rem;
}
#menu li {
	text-align: right;
}
#menu a {
	text-transform: uppercase;
	opacity: 0.5;
}
#categories a {
    color: var(--black);
}
#categories img {
	display: block;
	object-fit: scale-down;
	object-position: center;
}

#overlay {
	position: fixed;
	top: 0;
	z-index: 99;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.popup {
	position: fixed;
	top: 100%;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: var(--purple);
	transition: var(--transition);
}
.popup.active {
	top: 0;
}
.popup .close {
	width: 100%;
	height: 50px;
	background: var(--extra-purple) url(../images/close.svg) center no-repeat;
}
.popup .container {
	height: calc(100vh - 50px);
	overflow: hidden auto;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.popup h2 {
	margin-bottom: 1.5rem;
	text-align: center;
}

.popup .content {
    margin: 0 auto;
}

.accordion-item {
	padding-top: 1.5rem;
	margin-bottom: 1.5rem;
	border-top: 1px solid #7C7C7C;
}
.accordion-title {
	width: 100%;
	background: url(../images/plus.svg) right center no-repeat;
}
.accordion-title.active {
	background: url(../images/minus.svg) right center no-repeat;
}
.accordion-content {
	display: none;
	padding-top: 1.5rem;
}

#feedback .content {
    max-width: 450px;
}

.popup h5 {
	margin-bottom: 2.5rem;
	text-align: center;
}
.popup form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.popup input {
	width: 100%;
	height: 50px;
	margin-bottom: 2.5rem;
    padding: 0 1vw;
	background: var(--extra-purple);
    border: none;
    border-bottom: 2px solid #676776;
    color: var(--white);
    font-size: 1rem;
}

.breadcrumbs {
	margin-bottom: 2rem;
}
.breadcrumbs ul {
	display: flex;
	justify-content: center;
	width: 100%;
}
.breadcrumbs li {
	padding-right: 25px;
	background: url(../images/breadcrumbs.svg) right center no-repeat;
}
.breadcrumbs li + li {
	margin-left: 1vw;
}
.breadcrumbs li:last-child {
	padding-right: 0;
	background: none;
}

.categories {
	margin-bottom: 5rem;
}
.categories img {
    width: 75%;
    margin: auto;
    filter: grayscale(1) invert(1);
}

.pagination {
    width: 100%;
    margin-top: 2.5rem;
}
.page_next-prev {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_prev {
    margin-right: 2.5vw;
}
.page_prev span, 
.page_prev a {
	transform: rotate(90deg);
    background: url(../images/arrow.svg) center no-repeat;
}
.page_next {
    margin-left: 2.5vw;
}
.page_next span, 
.page_next a {
	transform: rotate(-90deg);
    background: url(../images/arrow.svg) center no-repeat;
}
.page_prev span, 
.page_next span {
    opacity: 0.5;
}
.pages {
    display: flex;
}
.pagination span, 
.pagination a {
    display: block;
    min-width: 21px;
    height: 28px;
	padding: 0 1vw;
}
.pages span, 
.pages a {
    font-family: 'Montserrat Medium';
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 28px;
    text-align: center;
}
.pages span {
    background: var(--white);
    color: var(--black);
}

.attributes, .order, .price {
 	display: inline-block;
 	width: 100%;
	margin-bottom: 2.5rem;
}
.attributes ul, .order ul {
	display: block;
	width: 400px;
	max-width: 100%;
	margin: auto;
}
.attributes li, .order li {
	width: 100%;
	margin-bottom: 1.5rem;
}
.attributes li span {
	display: inline-block;
	float: right;
    max-width: 75%;
    text-align: right;
}

.order li, .price h3 {
	text-align: center;
}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
}
.gallery li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	padding: 1vw;
}
.gallery img {
	max-width: 100%;
	object-fit: contain;
	object-position: center;
}

.news header {
	background: var(--black);
}
.news .header {
	border: 0;
}
.news section:not(#main) {
	padding-top: calc(5rem + 100px);
	background: var(--extra-white);
	color: var(--extra-black);
}
.news #main ~ section, #post {
	padding-top: 5rem;
	padding-bottom: 2.5rem;
}
.news .breadcrumbs li {
	filter: brightness(20%);
}
.news .page_prev span, .news .page_prev a, .news .page_next span, .news .page_next a {
	filter: brightness(20%);
}
.news .pages span {
    background: var(--extra-black);
    color: var(--extra-white);
}

.news #main h1 {
	color: var(--extra-white);
}

.article {
	max-width: 768px;
	margin: auto;
}
.article img {
 	display: block;
 	object-fit: cover;
 	object-position: center;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 9;
	width: 25px;
	height: 25px;
	padding: 0;
	background: url(../images/arrow.svg) center no-repeat;
	border: 0;
	font-size: 0;
}
.slick-prev {
	left: -0.5vw;
	transform: translateY(-50%) rotate(90deg);
}
.slick-next {
	right: -0.5vw;
	transform: translateY(-50%) rotate(-90deg);
}

.alert {
    position: fixed;
    bottom: 2.5rem;
    right: 1vw;
    z-index: 9;
 	display: none;
    padding: 1rem 1vw;
    background: #61CC61;
}
.alert .close {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
}

@media screen and (max-width: 1150px) {
	#cursor {
		display: none;
	}
}
@media screen and (max-width: 900px) {
	#main .video, #main .background, #main .caption {
		height: 75vh;
	}
}
@media screen and (max-width: 600px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	.container {
		padding: 0 5vw;
	}
	header img {
		max-width: 30vw;
	}
	header .menu, header .wa {
		font-size: 0;
		min-height: 25px;
		line-height: 25px;
	}
	main {
		margin-bottom: 0;
	}
	#main .video, #main .background, #main .caption {
		height: 100vh;
	}
 	#main video {
     	object-fit: cover;
    }
	#catalog, #news {
		padding: 5rem 0;
	}
	#catalog .item, #news .item {
		width: calc(100% / 2);
		margin-bottom: 2rem;
		padding: 0 2.5vw;
	}
	#catalog .item a, #news .item a {
		padding-bottom: 1.5rem;
	}
 	#catalog .item img, #news .item img {
     	height: auto;
    }
	#catalog h3, #news h3, #catalog h5, #news h5 {
		padding: 0 2.5vw;
	}
	footer {
		position: relative;
		height: auto;
	}
	footer img {
		width: 20vw;
	}
	footer .col:first-child {
		width: 100%;
	}
	footer .col:last-child a {
		margin-bottom: 1.5rem;
	}
    .breadcrumbs .back ~ li {
     	display: none;
    }
 	.breadcrumbs li + li {
     	margin-left: 2.5vw;
    }
    .breadcrumbs .back, .breadcrumbs li:last-child {
        display: block;
    }
    .breadcrumbs .back {
     	width: 25px;
     	font-size: 0;
     	background: url(../images/back.svg) center no-repeat;
    }
    .gallery li {
     	width: 100%;
    }
}