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

body {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
	color: #636363;
	font-size: 16px;
}

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

h1 {
	font-size: 35px;
	font-weight: 500;
}

h2 {
	font-size: 29px;
    font-weight: 500;
}

h3 {
	font-size: 23px;
    color: #000;
    font-weight: 500;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

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;
}

/* HEADER */

header {
	position: relative;
	z-index: 10001;
	border-bottom: 2px solid #f1f1f1;
}

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

header .wrapper .logo {
	width: 150px;
}

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

header .wrapper ul {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

header .wrapper ul li {
	position: relative;
}

header .wrapper ul li a {
	display: block;
	text-decoration: none;
    color: #343434;
}

.hero {
	position: relative;
	height: 86vh;
	min-height: 650px;
	background-image: url(../img/homepage.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.hero .wrapper {
	max-width: 690px;
}

.hero h1 {
	color: #fff;
	font-size: 80px;
	text-transform: uppercase;
	font-weight: 700;
}

.hero h1 span {
	display: block;
	font-size: 51px;
	line-height: 60px;
	font-weight: 600;
}

.section-title.centered {
	text-align: center;
}

.brands {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.brands .item {
	text-align: center;
	border: 1px solid #f1f1f1;
	border-radius: 10px;
	padding: 50px;
	box-shadow: 0px 16px 32px #0000000F;
}

.brands .item img {
	width: 260px;
}

.brands .item h3 {
	margin-top: 30px;
	margin-bottom: 15px;
}

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

.blog-posts .item {
	border-radius: 20px;
	background-color: #0e34770d;
	padding: 30px 20px;
}

.blog-posts .item h3 {
	color: #1F2F57;
}

.join-us {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.join-us .item {
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	background-color: #0e34770d;
}

.join-us .item h3 {
	font-size: 33px;
}

.join-us .item p {
	font-size: 18px;
}

.join-us .item .item-image {
	position: relative;
	margin-top: 30px;
	bottom: -30px;
}

.join-us .item .item-image img {
	width: 100%;
}

/* NIKOFONTS */

.nikofonts {
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
}

.nikofonts[data-icon="shopping-cart"] {
	background-image: url(./nikofonts/shopping-cart.svg);
}

.btn {
	position: relative;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	border-radius: 10px;
	padding: 10px 15px;
}

.btn-1 {
	border: 1px solid #1F2F57;
	color: #1F2F57;
}

.btn-2 {
	text-transform: uppercase;
	border: 0;
	background-color: none;
	padding: 0;
	padding-left: 50px;
	color: #D32F2F;
}

.btn-2:before {
	position: absolute;
	content: '';
	width: 40px;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background-color: #D32F2F;
	display: block;
}

/* FOOTER */

footer {
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #f1f1f1;
	color: #636363;
	font-size: 16px;
	background-color: #0e34770d;
}

footer h5 {
	color: #1F2F57;
	font-weight: 500;
}

footer .copyrights {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 50px;
	border-top: 4px solid #1F2F57;
	color: #989898;
}

footer .copyrights ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

footer .copyrights ul li a {
	color: #1F2F57;
}

footer .certs img {
	max-width: 230px;
}

.p10 { padding: 10px !important; }
.p15 { padding: 15px !important; }
.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; }
.pb250 { padding-bottom: 250px !important; }
.ml10 { margin-left: 10px !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; }

@media (min-width: 0px) and (max-width: 991px) {
	
	#nav-icon2 {
		display: block;
	}
	
	header .wrapper {
		gap: 10px;
	}
	
	header .wrapper .logo {
		width: 130px;
	}
	
	header .wrapper ul {
		gap: 10px;
	}
	
	header .wrapper nav ul li {
		display: none;
	}
	
	.hero .wrapper {
		text-align: center;
	}
	
	.hero h1 {
		font-size: 55px;
	}

	.hero h1 span {
		font-size: 30px;
		line-height: 40px;
	}
	
	.brands {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.brands .item {
		padding: 20px;
	}
	
	.brands .item img {
		width: 200px;
	}
	
	.join-us {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.join-us .item {
		padding: 30px 15px;
	}
	
	.join-us .item h3 {
		font-size: 23px;
	}
	
	.btn {
		padding: 8px 10px;
	}
	
	footer .copyrights {
		flex-direction: column;
		justify-content: center;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 2px solid #1F2F57;
	}
	
	footer .copyrights ul {
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
	}
	
	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 23px;
		font-weight: 500;
	}

	h3 {
		font-size: 19px;
		color: #000;
		font-weight: 500;
	}

	h4 {
		font-size: 17px;
	}
	
	h5 {
		font-size: 16px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.pm-20 { padding: 20px !important; }
	.m-p15 { padding: 15px !important; }

}