* {
	margin: 0;
	padding: 0;
}

:root {
	--back-color: #343c55;
	--font-color: white;
	--font-size : 20px;
	--theme:black;
	--theme1:white;
	--mobile-nav-link:white;
	--mobile-nav-back:rgba(0, 0, 0, 0.653);
	--nav-list-back:white;
	--nav-link-color:black;
}
body{
	overflow-x: hidden;
	box-sizing: border-box;
}
html{
	overflow-x: hidden;
}
.n-d-flex{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    align-items: center;
	
}

.p-relative {
	position: relative;
}

.p-abs {
	position: absolute;
}

/* header */
/*  top head */

.top_head {
	justify-content: space-around;
	height: 40px;
	font-size: var(--font-size);
	background: var(--back-color);
	color: var(--font-color);
	
}

/* navbar */

.nav {
	height: 55px;
	width: 100vw;
	font-size: var(--font-size);
	padding-left: 20px !important;
	padding-right: 20px;
	box-sizing: border-box;
	z-index: 3;
	background-color: rgb(255 255 255 / 74%);
	
}
.nav-fixed {
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0.991);
	border-bottom: 1px solid #e3e3e3;

}


.site_name {
	flex-basis: 30%;
	height: 100%;
	/* padding: 10px;
	padding-left: 20px; */
}

.site_name>img {
	height: 100%;
}

.nav>nav {
	flex-basis: 70%;
	float: right;
}

.d-md {
	display: none;
}



.nav-lg-list {
	justify-content: center;
	list-style-type: none;
	margin: 0; 

}
.ng-link>a{
    border-bottom: 0.5px solid #cecece;
}

.ng-link>a:hover {
	color:white;
	background-color: #F4B03E;
	cursor: pointer;
}
.float-right{
	float: right;
}

.nav-lg-list > li > a {
	color: black;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	padding: 12px; 
}

.nav-md {
	padding-right: 20px;
}

.nav-md-list {
	flex-direction: column;
}

.menu-icon>svg{
	width: 45px;
	height: 45px;
	fill: var(--theme1);
}

.nav-md-close {
	font-size: var(--font-size);
	text-align: end;
	margin: 0;
    padding: 10px 10px 0 0;
}

/* about section */
#brief {
	background-color: #fef7ec;
}

.first-title{
	color:black;
	font-size: 34px;
	font-weight: 700;
}
.second-title{
	color:#F4B03E;
}
.sub-title {
	font-size: 18x;
	font-weight: 600;
}
.list_title {
	font-size: 24px;
	font-weight: 700;
}
.section-content{
	font-size: 17px;
	line-height: 1.67em;
}

.liner-box::before {
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 5px;
    background: #F4B03E;
    margin-right: 20px;
}


/* misson section */
  



/* gallery section */
.gallery-item img{
    width: 85%;
    margin-bottom: 20px;
    border-radius: 19px;
    box-shadow: -8px 8px 10px #767676;
    aspect-ratio: 1;
}
.gallery_container {
	overflow-x: hidden;
}
#gallery,#location{
	background-color: #fef7ec;
}
.qoute-icon{
	background-image: url('./icon/qoute_icon.svg');
	width:50px;
}
.gallery-qoute{
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}
.gallery-qoute img{
	width:36px;
}

/*  about section */

.about 
	{
		padding: 40px 40px 40px 40px;
		border-style: solid;
		border-width: 2px 2px 2px 2px;
		border-color: #F4B03E;
		border-radius: 30px 30px 30px 30px;
		margin: 10px;
	
	  }

/* footer section */
.footer {
	background-color: var(--back-color);
	
}
.footer_icon {
	width: 16px;
	height: 23px;
}


/*  mobile */

@media screen and (max-width: 800px) {

	.d-lg {
		display: none;
	}
	.d-md {
		display: inline;
	}
	.nav-lg-list {
		/* display: none; */
		flex-direction: column;
		justify-content: flex-start;
		box-sizing: border-box;
		height:100vh;
		position: absolute;
		padding: 0;
		right: 0;
		top: 0;
		bottom: 0;
		font-size: var(--font-size);
		width: 0px;
		transition: width 0.8s;
		background-color: var(--nav-list-back);
	}
	.nav-lg-list > li {
		width: 100%;
		box-sizing: border-box;
	}
	.nav-lg-list > li >a {
		color: var(--nav-link-color);
		width: 100%;
		display: inline-block;
		padding: 15px 35px;

	}
	.nav {
		padding: 35px 14px !important;
		 align-content: center;
		 background-color: var(--mobile-nav-back);
		 color: var(--mobile-nav-link);
	}
	.site_name {
		flex-basis: 85%;
		height: 55px;
	}
	.nav>nav {
		flex-basis: 15%;
		/* position: relative; */
	}
	
}

.nav-md-list {
	display: flex;
	/* top: 50px;
	right: 25px; */
	width: 300px;
	z-index: 2;
}


