@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


*

{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Bai Jamjuree", sans-serif;
}

/*Drop-Down Section*/

.nav-link {
	display: flex;
	gap: 5rem;
	margin-top: -0.02rem;
}

.nav-link, .drop-down li {
	list-style: none;
	height: 100%;
	padding: -2rem 2rem;
	font-weight: 600;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: currentColor;	
}

.drop-down li a {
	margin: 1rem;
	
}

.drop-down {
	position: absolute;
	padding: 0.3rem 0;
	margin: 0.3rem -0.1rem;	
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 1rem;	
	font-size: 12px;
	display: none;
	
}

.nav-link:hover {
	background-color: #730001;
	border-radius: 0.5rem;
	
}

.services:hover .drop-down {
	display: block;	
	position: relative;
	transition: 0.6s ease-in-out all;
}

.services a {
	display: flex;
}

.drop-down li:hover {	
	color: #FFFFFF;
	border-radius: 0.5rem;
}
/*Drop-Down Section*/

/*Nav Section*/
.container{
	max-width: 1400px;
	margin: 0;
	
}
header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: top;
	transition: 0.6s;
	padding: 5px 60px 5px;
	z-index: 10000;
}
header.sticky {
	padding: 5px 60px 5px;
	background: #5A0000;	
}
header .Logo{
	margin-top: -0.2;
	position: relative;
	font-weight: 600;
	color : #FFFFFF;
	text-decoration: none;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.6s;	
}
header ul{
	position: relative;
	display: flex;
	margin-top: 15px;

}
header ul li{
	position: relative;
	list-style: none;

}
header ul li a {	
	font-size: 18px;
	position: relative;
	margin: 0 12px;
	text-decoration: none;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	font-weight: 500px;
	transition: 0.6s;
}

.banner{
	background: #5A0000;
	position: relative;
	width: 100%;
	height: 75px;
	background-size:cover;
	transition: 0.6s;
}
header.sticky ul li a
{
	color: #FFFFFF;
}
header.sticky .Logo
{
	color: #FFFFFF;
}
header ul a:hover {
	color: #FFE500;
	transition: 0.3s;
}
header.sticky ul li a:hover {
	color: #FFE500;	
}
/*Nav Section*/

/*Footer Section*/
footer{	
	background: #5A0000;
	height: auto;
}
.container-footer{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	color: #FFFFFF;	
}
.foot-img {
	display: flex;
	justify-content: center;
	padding: 0.5rem;
	margin-top: 2.5rem;

}

.footer-list h3 {
	padding: 0.5rem;
	margin-top: 1rem;
	text-align: left;
	font-size: 1.8rem;
	font-weight: 800;
}
.footer-list ul {
/*	margin-top: 0.5rem;*/
	text-align: left;
	list-style: none;
	text-decoration: none;
	margin-bottom: 1rem;
}
.footer-list li a {	
	display: inline-block;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	text-decoration: none;
	color: #FFFFFF;
	padding: 1px;
	
}
/*Footer Section*/

/*Copyright Section*/
.copyright {
	background: #FFFFFF;
	text-align: center;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;	
}

.copyright .copyright-detail {
	color: #666666;
	font-size: 1rem;
}

/*Copyright Section*/

/*Style Section*/
@media screen and (max-width: 1000px){
	header .Logo {
		font-size: 1.2rem;
	}
	header ul li a {
		font-size: 16px;
		font-weight: 500;
	}
	.container-footer{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	
	.footer-list h3 {
		align-content: center;
		text-align: center;		
	}
	
	.footer-list ul {
		align-content: left;
		text-align: left;
		margin-left: 6rem;
	}
	
	.footer-list li a {
		align-content: left;
		text-align: left;
		margin-left: 6rem;
	}
	
	.foot-img {
		align-content: center;
		text-align: center;
		align-items: center;		
	}
}
@media screen and (max-width: 800px){
	header .Logo {
		font-size: 1rem;
	}
	header ul li a {
		font-size: 12px;
	}
}
/*Style Section*/

