@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
	font-family: "Urbanist", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F2F1EF;
    color: #323232;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 30px;
	text-transform: uppercase;
	color: #000;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 17px;
	text-transform: uppercase;
}

h4 {
	font-size: 20px;
}

a { text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100001;
	background-color: #fff;
	padding: 30px;
	overflow-y: auto;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu ul li {
	display: block;
}

.mobile-menu ul li.menu-link a {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
    font-weight: 600;
    color: #343434
}

#nav-icon2 {
	display: none;
	position: fixed;
	right: 15px;
	top: 20px;
	width: 25px;
	height: 25px;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 100005;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;
	background-color: #000;
	opacity: 1;
	transition: .25s ease-in-out;
}

#nav-icon2.open span {
	background-color: #001233;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 3px 3px 0;
}

#nav-icon2 span:nth-child(odd) {
	left: 0px;
	border-radius: 3px 0 0 3px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 6px);
	top: 8px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 6px);
	top: 8px;
}

/* TOP BAR */

.top-bar {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	background-color: rgba(16, 16, 16, .05);
}

.top-bar .wrapper ul.slides li {
	padding: 10px 10px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	
}

/* HEADER */

header {
	background-color: rgba(251, 250, 247, 1);
}

header .wrapper {
	display: flex;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

header .wrapper .logo {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	display: flex;
    align-items: center;
	width: 40%;
}

header .wrapper nav.main-menu {
	justify-content: center;
	width: 100%;
}

header .wrapper ol {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;
}

header .wrapper ol li,
header .wrapper ul li {
	text-transform: uppercase;
}

header .wrapper ul {
	display: flex;
	align-items: center;
    justify-content: flex-end;
	margin-left: auto;
    width: 40%;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0;
}

header .wrapper ul li a {
	display: flex;
	align-items: center;
	gap: 7px;
	transition: .2s;
}

header .wrapper ul li a.icon {
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	background-color: rgba(16, 16, 16, .05);
}

header .wrapper ul li a.icon:hover {
	background-color: #f4f4f4;
}

header .wrapper ul li a i.nikofonts {
	width: 16px;
	height: 16px;
}

header .wrapper ol li a {
	display: flex;
	align-items: center;
	gap: 5px;
}

header .wrapper ol li a i.nikofonts {
	width: 14px;
	height: 14px;
}

header a {
	color: #323232;
	font-size: 14px;
	font-weight: 600;
}

/* HERO */

.hero {
	height: 90vh;
	background-image: url(../img/hero.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* SECTION TITLE */

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.section-title.to-left {
	align-items: flex-start;
	text-align: left;
}

.section-title span {
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	font-weight: 300;
}

.section-title h2 {
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
	color: #323232;
}

/* PRODUCTS */

.products {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 38px;
}

.products.cols-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.products .item {
	background-color: #fff;
	padding: 10px;
	border-radius: 15px;
}

.products .item .preview {
	height: 400px;
	background-color: #f5f5f5;
	margin-bottom: 15px;
}

.products .item .preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.products .item h3 {
}

.products .item h3 a {
	color: #323232;
	font-weight: 500;
}

.products .item .price {
	margin-top: 8px;
}

.products .item .price p {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
}

.single-product .price p {
	font-size: 16px;
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
}

.single-product h5 {
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 1px;
}

.section-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}

.features .item {
	background-color: #f6f6f6;
	padding: 50px;
}

.features .item i {
	width: 50px;
	height: 50px;
	background-color: #000;
}

.features .item h3 {
	text-transform: uppercase;
	font-weight: 400;
	margin-top: 20px;
}

.choices {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.choices a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	color: #000;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	padding: 4px 10px;
	height: 40px;
}

.choices[data-name="size"] a {
	width: 40px;
	height: 40px;
}

/* HOME BANNERS */

.home-banners {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.home-banners .item {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 400px;
	position: relative;
	text-align: center;
	border: 1px solid #ddd;
	padding: 50px;
}

.home-banners .item > a {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

/* GALLERY */

.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.gallery .item {
	height: 500px;
	background-color: #f4f4f4;
}

.gallery .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* BREADCRUMBS */

.blog-posts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}

.blog-posts .item {
	
}

.blog-posts .item h3 a {
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
}

.blog-posts .item .post-image {
	height: 440px;
}

.blog-posts .item .post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* BREADCRUMBS */

.breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 13px;
	gap: 5px;
	margin-bottom: 10px;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	position: relative;
}

.breadcrumbs li:before {
	position: relative;
	content: '\00BB';
	margin: 0 5px;
}

.breadcrumbs li:first-child:before {
	content: '';
	margin: 0;
}

/* NIKOFONTS */

.nikofonts {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.nikofonts[data-icon="user"] {
    mask: url(./nikofonts/user.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/user.svg) center/contain no-repeat;
}

.nikofonts[data-icon="heart"] {
    mask: url(./nikofonts/heart.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/heart.svg) center/contain no-repeat;
}

.nikofonts[data-icon="search"] {
    mask: url(./nikofonts/search.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/search.svg) center/contain no-repeat;
}

.nikofonts[data-icon="reputation"] {
    mask: url(./nikofonts/reputation.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/reputation.svg) center/contain no-repeat;
}

.nikofonts[data-icon="planet-earth"] {
    mask: url(./nikofonts/planet-earth.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/planet-earth.svg) center/contain no-repeat;
}

.nikofonts[data-icon="box"] {
    mask: url(./nikofonts/box.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/box.svg) center/contain no-repeat;
}

.nikofonts[data-icon="down-arrow"] {
    mask: url(./nikofonts/down-arrow.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/down-arrow.svg) center/contain no-repeat;
}

.nikofonts[data-icon="shopping-bag"] {
    mask: url(./nikofonts/shopping-bag.svg) center/contain no-repeat;
    -webkit-mask: url(./nikofonts/shopping-bag.svg) center/contain no-repeat;
}

/* BUTTONS */

.btn-1 {
	text-transform: uppercase;
	font-size: 14px;
	background-color: #000;
	color: #fff;
	border-radius: 35px;
	padding: 10px 30px;
	letter-spacing: 1px;
	font-weight: 600;
}

.btn-2 {
	text-transform: uppercase;
	font-size: 14px;
	background-color: transparent;
	color: #000;
	padding: 0;
	letter-spacing: 1px;
	font-weight: 600;
}

/* FOOTER */

footer {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #f6f6f6;
}

footer h5 {
	font-size: 14px;
	font-weight: 300;
}

footer .middle {
	
}

footer ul li a {
	text-transform: uppercase;
	font-size: 16px;
	color: #000;
}

footer .copyrights {
	text-align: center;
	margin-top: 50px;
}

/* WINDOW */

.window {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.65);
	z-index: 10002;
	display: none;
}

.window.show {
	display: block;
	animation-name: fadeIn;
	animation-duration: .3s;
}

.window .window-body {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	background: #fff;
	border-radius: 15px;
	padding: 30px 40px;
	display: none;
	max-height: 90%;
	max-width: 1680px;
	overflow-y: auto;
}

.window.window-50 .window-body {
	width: 50%;
}

.window.window-full .window-body {
	width: 98%;
	min-height: 98%;
	max-height: 98%;
	overflow: auto;
	height: 98%;
	padding: 20px 30px;
}

.window.show .window-body {
	display: block;
	animation-name: show-window-body;
	animation-duration: .3s;
	transform: translate(-50%, -50%);
}

.window .buttons {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

@keyframes show-window-body {
	0% {
		top: 200%;
	}
	100% {
		top: 50%;
	}
}

.window .window-body .window-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: 600;
	cursor: pointer;
	width: 26px;
	height: 26px;
	border-radius: 5px;
	background-color: #f6f6f6;
    color: rgb(23, 116, 226);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .2s;
}

.window .window-body .window-close:hover {
	background-color: #f1f1f1;
}

.window .window-body .window-close i {
	font-size: 28px;
	transition: .1s;
}

.window .window-body .window-close:hover i {
	color: #000;
}

.window .window-body h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 30px;
	font-weight: 700;
	color: #000;
}

.p20 { padding: 20px !important; }
.p30 { padding: 30px !important; }
.p50 { padding: 50px !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	#nav-icon2 {
		display: block;
	}
	
	.window .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.window.window-50 .window-body {
		width: 90%;
		padding: 20px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.pm-20 { padding: 20px !important; }
	.m-p15 { padding: 15px !important; }

}

@media (min-width: 1200px) {
	
	.container {
		max-width: 1440px;
	}
	
}