/*Font Family Import START*/

@font-face {
    font-family: 'BebasNeue';
    src: url('asset/fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*Font Family Import END*/

/* Color */

:root {
    --white: #fff;
	--secondary-white: #dfdfdf;
    --black: #121212;
	--gray: #36454f;
    --yellow: #ffdb56;
	--primary-black: #1d1f1f;
	--orange: #E88B00;
}

/* Scrollbar */

::-webkit-scrollbar{
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb{
    background: var(--gray);
    border-radius: 10px;
}

.viewall {
	justify-content: center;
	align-items: center;
	text-align: center;
}

/*All Section in Website START*/

* {
	font-family: 'BebasNeue';
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	padding:0;
	cursor: url(asset/cursor/kunai.cur), auto;
}

body {
	overflow-x: hidden;  
}

section {
	padding: 100px;
}

/*All Section in Website END*/

/*Header Section START*/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 40px;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition-duration: 370ms;
	/* background-image: url(asset/home/navbar/hamburger-menu-bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat; */
}

header .logo img {
	transition-duration: 370ms;
	width: 140px;
	height: 95px;
}

header .logo img:hover {
	transform: scaleX(1.1) scaleY(1.1);
}

header .navigation {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0;
	margin: 0;
}


header .navigation .theme-toggle {
	display: flex;
	cursor: pointer;
	margin: 20px;
	width: 100%;
	padding: 10px;
	background-color: var(--white);
	border: 1px solid var(--black);
}


header .navigation .theme-toggle #theme-icon {
	cursor: pointer;
}


header .navigation .menuToggle {
	transition: 400ms ease-in;
}


header .navigation .menuToggle:hover {
	transform: scale(1.25)
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 10%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 998;
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-menu ul li {
	margin: 0 75px;
	cursor: pointer;
	background-image: url(asset/home/navbar/hamburger-menu-bg.png);
	padding: 10px 20px;
    background-size: cover;
}

.nav-menu ul li a {
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--orange);
}

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


/*Header Section END*/


/* @media (max-width: 1080px) {

	header,
	header.sticky {
		padding: 10px 20px;
	}
	header .navigation {
		display: none;
	}
	header .navigation li {
		margin-left: 0;
	}
	header .navigation li a {
		text-decoration: none;
		font-weight: 300;
		font-size: 1.6em;
		color:#eee;
	}
	header .navigation.active {
		height: calc(100% - 78px);
		width: 100%;
		position: fixed;
		top: 78px;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background: var(--black);
	}
	section {
		padding: 25px;
	}
	header.sticky .navigation li a {
		border:none;
		transition-duration: 275ms;
	}
	
	header.sticky .navigation li a:hover {
		border:none;
	}
	footer .footer_main {
		justify-content: center;
		align-items: center;
		flex-direction: row;
		display: flex;
	}

	footer .footer_main .tag {
		justify-content: center;
		margin: 0 17.5px;
		align-items: center;
		display: flex;
		flex-direction: column;
	}

	footer .end {
		margin-top: 75px;
		padding-bottom: 25px;
	}

}

@media (max-width: 768px) {
	
} */

/*Responsive Design*/