h1,h2,h3,h4,h5,h6,p,a{
	font-family: 'Montserrat', sans-serif;
}

:root {
	--primary-color: #CA7D28;
	--secondary-color : #e3c952;
}

.ml-auto {
	margin-left: auto !important;
}

/*================================*/


#header{
	padding: 10px 0px;
}

#header .navbar {
	border: 0;
	margin-bottom: 0;
}

#header .navbar .logo{
	max-width: 200px;
	display: inline-block;
}


#header .navbar .nav {
	display: none;
	margin-top: 20px;
}

#header .navbar .logo .logo-img {
	width: 100%;
}



/*=======================================*/


#card-wrapper {
	padding: 100px 0px;
}

#card-wrapper .mb-2{
	margin-bottom: 16px;
}

#card-wrapper .position-relative {
	position: relative;
}

#card-wrapper .position-relative  img {
	width: 100%;
}

#card-wrapper h3{
	background-color: rgba(0, 0, 0, 0.2);
	width: 100%;
	color: #ccc;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 5px 0px;
}

#card-wrapper h3 span{
	font-size: 30px;
	font-weight: 600;
}

/*======================================*/

/*About*/

#about {
	max-width: 1920px;
	padding: 40px 0px;
	position: relative;
	background-color:  var(--secondary-color);
	margin: 100px 0px;
	margin: 0 auto;
}

#about .about-left {
	max-width: 600px;
	position: absolute;
	left: 3%;
	top: -80px;
	/* transform: translateY(50%); */
	/* transform: scale(1.1); */
}

#about .about-left img {
	width: 100%;
	height: 100%;
}

#about .about{
	color: var(--primary-color);
	margin-bottom: 20px;
}

#about .about span{
	font-weight: bold;
}



/*=======================================*/
/*Our Products*/

#our_project {
	padding: 100px 0px;
}

#our_project .title h2 {
	font-weight: 500;
	margin-bottom: 50px;
}

#our_project .title h2 span{
	color: var(--primary-color);
	font-weight: 600;
}

#our_project .line_products{
	margin: 20px auto;
	width: 70%;
	border: 1px solid #ccc;
}

#our_project .item {
	height: auto !important;
	background-color: var(--primary-color);
	padding-bottom: 10px;
}

#our_project .item img {
	width: 100%;
}

#our_project .item h4 {
	color: #333;
}

#our_project .item:hover {
	background-color: var(--secondary-color);
	transition: background-color .5s ease-in;
}

/*=======================================*/

/*Footer*/

footer{
	background-color: #333;
	color: #ccc;
	padding-top: 30px;
	padding-bottom: 10px;
}

footer .title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

footer p {
	margin-bottom: 0;
}

.u-icon {
	padding-left: 30px;
	position: relative;
}

.u-icon::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 30px;
	height: 30px;
	color: #ccc;
	font-size: 14px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	/* background-color: red; */
}

.location::before {
	content: "\f3c5";
}

.hour::before {
	content: "\f017";
}

.email::before {
	content: "\f0e0";
}

.phone::before {
	content: "\f095";
}

footer .left p{
	margin-bottom: 10px;
}

footer .contact li {
	margin-bottom: 10px;
}


footer .contact{
	display: flex;
	justify-content: end;
}

footer .bottom {
	padding-top: 10px;
	border-top: 1px solid #ccc;
}

/*=======================================*/

/*Media Query*/
/* 

@media screen and (max-width: 1700px) {
	#about .about-left {
	min-width:570px;
	position: absolute;
	left: 10px;
	top: -80px;
}

} */



@media (max-width: 767px){

	#header .navbar-toggle{
		margin-top: 30px;
	}

	#card-wrapper .position-relative {
		width: 80%;
		margin: 0 auto;
	}

	#card-wrapper {
		padding: 40px 0px;
	}


	footer .left p,
	footer .middle .list-unstyled  li{
		margin-bottom: 10px;
	}

	footer .contact{
		display: flex;
		justify-content: start;
	}

	
	footer .bottom p {
		font-size: 12px;
	}

}


@media (max-width: 1200px){

	#about .about-left {
		display: none;
	}

	#card-wrapper h3 span{
		font-size: 20px;
		font-weight: 600;
	}

}

@media (max-width: 1400px) and (min-width:1200px) {
	#about .about-left {
		max-width: 560px;
		position: absolute;
		left: 10px;
		top: -60px;
	}

}


@media (min-width: 1600px) {
	#about .about-left {
		max-width: 600px;
		position: absolute;
		left: 10%;
		top: -80px;
		/* transform: translateY(50%); */
		/* transform: scale(1.1); */
	}
}

