@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

:root {
	--main: #333;
	--light-color: #357Dac;
	--font: #ffffff;
	--wheat: #f5deb3;
	--box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
	--font-family: 'Roboto', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	border: none;
	outline: none;
	text-transform: capitalize;
	font-family: var(--font-family);
	/* transition: all .2s linsear; */
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

#popup {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 20px;
	z-index: 999999;
}

#popup .btn:hover {
	background-color: #1e4763;
}

#hide {
	display: none;
}

#overlayShow {
	position: fixed;
	top: 0;
	left: 0;
	width: 220vh;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	/* apply a blur filter to the background */
	z-index: 100001;
	/* set the z-index to be lower than the pop-up/modal */
}

#overlayHide {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




.page-loader {
	width: 100%;
	height: 100vh;
	position: absolute;
	background: #272727;
	z-index: 1000000;
}
.page-loader .txt {
	color: #666;
	text-align: center;
	top: 40%;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.3rem;
	font-weight: bold;
	line-height: 1.5;
}
.spinner {
	position: relative;
	top: 35%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
   }
	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
   }
}
@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
   }
	100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
   }
}

/*navbar style start*/


/*navbar style end here*/

/*slider style start*/


/*slider style end*/

/*welcome style start*/

/*welcome style end*/

/*our-menu style start*/


/*our-menu style ends*/

/*our chef style start*/



/*custom scroll bar*/

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #333;
}

::-webkit-scrollbar-thumb {
	background: #357Dac !important;
}

/*jump to top*/
.topbtn {
	position: fixed;
	right: 2%;
	bottom: 10%;
	width: 30px;
	height: 30px;
	background: var(--light-color);
	color: #fff;
	cursor: pointer;
}


@media (max-width: 768px) {

	#popup {
		display: block;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background-color: #fff;
		border: 1px solid #ccc;
		padding: 20px;
		z-index: 999999;
		width: 228px;
	}

	#popup button:hover {
		background-color: #1e4763;
	}

	#hide {
		display: none;
	}

	#overlayShow {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vh;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(2px);
		/* apply a blur filter to the background */
		z-index: 100001;
		/* set the z-index to be lower than the pop-up/modal */
	}

	#overlayHide {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}


}

/*media query*/