body {
	font: 'Poppins', sans-serif;
	overflow-x: hidden
}


* {
	margin: 0;
	box-sizing: border-box;
}

/*LOADER*/


.preload {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1000;
	transition: opacity 0.5 ease
}

.loader {
	display: flex;
	flex-direction: column;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #333
}

.preload img {
	width: 200px;
	margin: 0 auto;
}

@media (max-width:768px) {
	.preload img {
		width: 80%
	}
}

.preload-finish {

	opacity: 0;
	pointer-events: none
}

/*================================================*/

section {
	padding: 5em 0
}

@media(max-width:768px) {
	.section {
		padding: 3em 0
	}
}

.button {
	padding: 20px;
	transition: transform .2s ease-in-out;
	background-color: #00005c;
	border: none;
	border-radius: 40px;
	color: #ffb800;
	font-weight: bold;
	cursor: pointer
}

button a {

	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold;
	color: inherit
}

.button-alt {
	background: none;
	border: 1px solid #E3AB32;
	border-radius: 30px;
	padding: 16px;

	transition: transform .2s ease-in-out
}

button:hover {
	background-color: #E3AB32;
	color: #00005c
}

.button-alt:hover {

	background-color: #E3AB32;
	text-transform: uppercase
}

button a:hover {
	color: #fff;
	text-decoration: none
}

@media(max-width:767.99px) {
	button {

		padding: 10px;
		color: #fff;
	
		text-transform: capitalize;
		font-size: 14px
	}
}


/*typography*/

h1,
.h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: bold
}

h2,
.h2 {
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	color: #00005c
}

h3,
h4 {
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase
}

p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px
}

@media (min-width:1600px) {
	/*
	p {
		font-size: 18px
	}
*/
}

a {
	font-family: 'Poppins', sans-serif;
	color: blue;
	transition: .5s
}

a:hover {
	color: #E3AB32;
	text-decoration: none
}

@media(max-width:768px) {

	h1,
	.h1 {
		font-size: 1.5rem;

	}


}


li {
	font-family: 'Poppins', sans-serif;
}

/*navigation*/
.header {
	width: 100%;
	min-height: 120px;
	position: sticky;
	left: 0;
	top: 0;
	z-index: 99;
	background-color: #fcfcfc;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;

}


.header a {
	text-decoration: none;
}

.header-main {
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;

}

.header .logo {
	padding: 0;

}

.header .logo a {

	width: 100%;
	position: relative;


}

.header .logo a .logo-img {

	min-width: 55%;
	transition: all 0.5s ease;

}

@media(max-width:767.99px) {

	.header .logo a .logo-img {

		min-width: 80%;

	}

}

@media only screen and (max-width:1024px) and (min-width:768px) {

	.header .logo a .logo-img {
		min-width: 40%;
	}
}

.header .nav-menu {
	padding: 0 15px;
	min-height: 200x
}

.header .banner {
	padding: 0 15px;
}

.header .banner .banner-inner {
	width: 100%;
	margin-bottom: 0px;
	border-top: 1px solid orange;
	border-bottom: 1px solid orange;
	padding: 16px 16px;
	transition: all 0.3s ease;

}

.header .banner .banner-inner a {

	background-color: #00005c;
	border-radius: 20px;
	color: #ffb800;
	font-weight: bold;
}

.header .menu > .menu-item {
	display: inline-block;
	margin-left: 18px;
	position: relative;
}

.header .menu > .menu-item > a {
	display: block;
	padding: 26px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase
}

.header .menu > .menu-item > a .plus {
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left: 5px;
	pointer-events: none;
}

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
	content: '';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
	background-color: #E3AB32;
}

.header .menu > .menu-item > a .plus:after {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
	color: #E3AB32;
}

.header .menu > .menu-item > .sub-menu {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 260px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #E3AB32;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

@media(min-width: 992px) {
	.header .menu > .menu-item-has-children:hover > .sub-menu {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		z-index: 3
	}

	.header .menu > .menu-item-has-children:hover > a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}


}

@media(max-width:1024px) {
	.header .banner {
		display: none;
	}

}



.header .menu > .menu-item > .sub-menu > .menu-item {
	display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu {



	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .open-nav-menu span {
	display: block;
	height: 3px;
	width: 24px;
	background-color: #FFA400;
	position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFA400;
	box-sizing: border-box;
}

.header .open-nav-menu span:before {
	top: -7px;
}

.header .open-nav-menu span:after {
	top: 7px;
}

.header .close-nav-menu {
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin: 0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}

.header .close-nav-menu img {
	width: 16px;
}

.header .menu-overlay {
	position: fixed;
	z-index: 998;
	background-color: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

ul.menu {
	margin-bottom: 0px;
	border-top: 1px solid orange;
	border-bottom: 1px solid orange;
	padding-left: 0;
}



.selected a {
	color: #E3AB32 !important;

}

.shrink {
    width: 100%;
    min-height: 90px;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: #fff;
	box-shadow: 0px 7px 11px rgba(0, 0, 0, 0.137);
    display: flex;
    align-items: center;
}

.shrink .logo a .logo-img {
    min-width: 36%;
}
.shrink .menu > .menu-item > a{

	padding: 15px 0;
}


.shrink .banner .banner-inner {
	width: 100%;
	margin-bottom: 0px;
	border-top: 1px solid orange;
	border-bottom: 1px solid orange;
	padding: 8px 16px;

}

/*home section*/
.home-section {
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px) {
	.header .menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}

	.header .nav-menu {
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top: 0;
		overflow-y: auto;
		background-color: #00005c;
		z-index: 999;
		padding: 15px 0;
		transition: all 0.5s ease;
	}

	.header .nav-menu.open {
		visibility: visible;
		right: 0px;
	}

	.header .menu > .menu-item {
		display: block;
		margin: 0;
	}

	.header .menu > .menu-item-has-children > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header .menu > .menu-item > a {
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}

	.header .menu > .menu-item:first-child > a {
		border-top: 1px solid #333333;
	}

	.header .menu > .menu-item > a .plus:before,
	.header .menu > .menu-item > a .plus:after {
		background-color: #ffffff;
	}

	.header .menu > .menu-item-has-children.active > a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.header .menu > .menu-item > .sub-menu {
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border: none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: auto;
		max-height: 0;
		overflow: hidden;
	}

	.header .menu > .menu-item > .sub-menu > .menu-item > a {
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}

	.header .close-nav-menu,
	.header .open-nav-menu {
		display: flex;
	}

	ul.menu {
		border: none
	}
}


/*============== 1. headers =================*/

/*  homepage header*/


.hero {


	color: #333;
	height: 50vh;
	background: #34f3;
	display: flex;
	justify-content: center;
	align-items: center
}

@media (max-width:1599px) and (min-width:1025px) {
	.hero {
		color: #333;
		
		background: #34f3;
		position: relative
	}
}

@media (max-width:1024px) {
	.hero {
		height: 90vh;
		background: #34f3;
		position: relative
	}
}

@media (min-width:1600px) {

	.hero {
		height: 60vh;
	}

}

@media (max-width:1024px) and (min-width:768px) {
	.hero {
		color: #333;
		height: 55vh;
		background: #34f3;
		position: relative
	}
}

.hero-lead h1 {
	font-size: 32px;
	text-transform: uppercase;
	color: #00005c
}

.hero-lead p {
	font-size: 18px;

}

.hero-lead {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.overlay {
	background: #020749;
	padding: 30px 0
}

@media (max-width:1024px) and (min-width:768px) {
	.hero h1 {
		font-size: 54px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero img {
		width: 70%;
		margin: 0 auto;
		margin-bottom: 0px;
	}
}


@media(max-width:700px) {



	.hero h1 {
		font-size: 30px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero img {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 0px;
	}

}

@media (max-width:1024px) and (min-width:768px) {

	.hero h1 {
		font-size: 34px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero img {
		width: 50%;
		margin: 0 auto;
		margin-bottom: 0px;
	}
}



/*2 pages-header*/

.page-header {
	min-height: 50vh;
	padding: 0;
	overflow: hidden;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center
}


@media(max-width:768px) {

	.page-header {

		min-height: 40vh;

	}

	.page-header img {

		width: 60%;
		margin: 0 auto
	}


	.page-header h1 {
		font-size: 30px;
		text-align: center;
	}
}

/*----(c) footer---*/


.btt {
	position: fixed;
	z-index: 99;
	right: 60px;
	bottom: 60px;
	opacity: .5;
	cursor: pointer;
	height: 48px;
	width: 48px;
	display: none;
	transition: .5s;
	border: .5px solid #999;
	background: rgba(3, 3, 3, .5)
}

.btt img {
	width: 100%;

}

footer {
	background: #020749;
	padding-top: 6em;
	color: #333 !important;
	position: relative;
	bottom: 0px;
	}

footer .logo img {
	width: 70%;

}

footer h4 {
	color: #B98F3A;
	font-family: Poppins
}

footer a {
	color: #6B809B;
	font-family: Poppins
}

.credits {
	margin-top: 0px;
	background: #020749;
}

.credits {

	bottom: 0px;
	width: 100%;
	color: #fff
}

.credits p {
	font-size: 12px;
}

.social img {
	margin: 20px
}

footer ul li {
	line-height: 32px;
	list-style: none;

}

footer ul li a {

	opacity: .7
}

footer ul li a:hover {
	opacity: 1;
	color: #fff;
	text-decoration: none
}

footer ul li span {
	color: #fff;
	text-transform: uppercase
}

@media(max-width:768px) {
	footer {

		padding-top: 3em;
		padding-bottom: 0;
	}



	footer .logo img {}

	footer h4 {
		margin: 20px 0;
		text-align: center
	}

	footer ul {
		padding: 0;
	}
	footer ul li {
		line-height: 32px;
		list-style: none;
		text-align: center
	}

	footer .social {
		margin: 0 auto;
		display: flex;
		justify-content: space-around
	}
}


/*==============end headers & footers========*/


/*==============  (3) page-contents  ========*/



/*(a) content wrapper  */
#content {
	position: relative;

}

@media(max-width:1024px) {
	#content {
		padding-top: 0;
		padding-bottom: 0;
		overflow-x: hidden;
	}

}

#content h3 {

	font-weight: 600
}



/*=====about page=====*/
.attributes {

	margin: 10px;
	padding: 16px;
	border: 2px solid #6b809b;
	border-radius: 30px;
	transition: .5s ease;
	min-height: 200px;
}

.attributes:hover {


	margin-top: 5px;
	border: 4px solid #ffcf57;
	border-radius: 30px;
	box-shadow: 0 30px 90px rgb(0 0 0 / 50%);
}


.attributes img {
	width: 100px;
	margin: 0 auto
}

.attributes a {
	color: #fff
}

.attributes h4{
	font-size: 18px;
	margin-top: 10px;
}
/*=====CONTACT=========*/

.contact ul li {
	margin: 20px 0;
	list-style: none
}

.form {
	display: flex;
	flex-direction: column;
}

.form input {
	margin: 10px 4px;
	width: 100%;
	height: 36px;
	padding: 8px;
	border: none;
	border: 1px solid #565656;
	border-radius: 10px;
}
.form select {
	margin: 10px 4px;
	width: 100%;
	height: 36px;
	padding: 8px;
	border: none;
	border: 1px solid #565656;
	border-radius: 10px;
}

.form textarea {
	min-height: 100px;
	width: 101%;
	margin: 10px 4px;
	padding: 8px;
	border-radius: 10px;
}

.form button {
	margin: 10;
	width: 100%;
	border: none;
}

th{

	background-color: #00005c;
	color: #E3AB32;
	padding: 10px;
	font-family: Poppins;
	min-width: 190px;
	text-align: center;
}

td{
	padding: 10px;
	font-family: Poppins;
	text-align: center;
}

.fet
{
list-style: none;
padding: 0;
}

.fet li .card{

	min-height: 400px;
}

/* Mobile buttons inside menu */
.header .nav-menu .menu-buttons {
  display: none; /* hide by default on desktop */
  text-align: center;
  margin: 20px 0;
}

.header .nav-menu .menu-buttons a {
  display: block;
  margin: 10px auto;
  background-color: #ffb800;
  color: #00005c;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.header .nav-menu .menu-buttons a:hover {
  background-color: #00005c;
  color: #ffb800;
}

/* Show buttons on mobile only */
@media(max-width:1024px) {
  .header .nav-menu .menu-buttons {
    display: block;
  }
}


