/* variables */
:root {
	--darkBlue: #272D3B;
	--primeryGreen: #0DAD51;
	--black: #000;
	--white: #fff;
	--lightBlue: #F4F7FE;
	--borderGray: #C9C9C9;
}
/* fonts */
@font-face {
  font-family: 'PPFragment-SerifRegular';
  src:  url('../fonts/PPFragment-SerifRegular.otf');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'PPFragment-SerifLight';
  src:  url('../fonts/PPFragment-SerifLight.otf');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}



/* base style */
html {
  scroll-behavior: smooth;
}
body{
	font-family: "PPFragment-SerifRegular";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  position: relative;
	background-color: #fff;
	color: #000;
}



#header {
  padding: 30px 0;
  background-color: transparent;
}
#header .logo {
	height: 70px;
	position: relative;
  z-index: 1;
}
#header .nav-link {
  padding: 0;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	color: #B68D49;
	position: relative;
  z-index: 1;
  line-height: 16px;
  text-transform: uppercase;
}
#header .nav-link .burgerIcon {
	height: 16px;
	margin-bottom: 4px;
}
#header .nav-link .searchIcon {
	height: 25px;
	margin-bottom: 4px;
}
#header .nav-link.lang {
	border: 1px solid #B68D49;
	padding: 5px 5px 3px;
  border-radius: 4px;
}


#header .nav-item {
	display: flex;
  align-items: center;
  justify-content: end;
}
#header .nav-item:not(:last-child) {
	margin-bottom: 20px;
}
#header .navbar-toggler {
	padding: 0;
  border: none;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
}
#header .navbar-toggler img {
	height: 20px;
}
#header .navbar-toggler:focus {
	box-shadow: none;
}
#header .navbar-nav {
	margin-top: 20px;
}
#banner {
	position: relative;
}
#banner .bannerImg {
	width: 100%;
	border-radius: 12px;
}
#banner .bannerHead1 {
	color: #EED484;
	font-size: 40px;
	font-weight: 400;
	line-height: 40px;
	position: absolute;
	bottom: 0;
	left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
#banner .bannerHead2 {
	color: #B68D49;
	font-size: 40px;
	font-weight: 400;
	line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 10px;
}





#aboutus,
#services {
	padding: 50px 0;
}
#contactUs {
	padding: 0 0 60px 0;
}

#aboutus {
  
}
#aboutus .aboutHead {
	text-align: center;
	font-size: 20px;
	line-height: 24px;
	margin-top: 80px;
}
#planeSection {
	position: relative;
  background-image: url("../images/plane.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 50px 0;
}
#planeSection h2 {
	font-size: 55px;
  font-weight: 400;
  line-height: 55px;
  text-transform: uppercase;
  margin-bottom: 0;
}
#planeSection .worldHead {
  background: linear-gradient(178.42deg, #EED484 -2.43%, #B68D49 48.68%, #EED484 99.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#planeSection .classHead {
  text-align: center;
  background: linear-gradient(178.42deg, #EED484 -2.43%, #B68D49 48.68%, #EED484 99.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#planeSection .aviationHead {
  text-align: center;
  background: linear-gradient(178.42deg, #EED484 -2.43%, #B68D49 48.68%, #EED484 99.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#planeSection .andHead {
  text-align: left;
  margin-left: 15px;
  background: linear-gradient(178.42deg, #EED484 -2.43%, #B68D49 48.68%, #EED484 99.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#planeSection .serviceHead {
  text-align: right;
  background: linear-gradient(178.42deg, #EED484 -2.43%, #B68D49 48.68%, #EED484 99.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services {
	
}
#services .serviceGrid1,
#services .serviceGrid2 {
	display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
 	grid-template-columns: repeat(1, minmax(0, 3fr));
  grid-gap: 0px;
  background-color: #B68D49;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
#services .serviceGrid1 .imgItem {
	grid-column-start: 1;
  grid-column-end: 3;
}
#services .serviceGrid1 .contentItem,
#services .serviceGrid2 .contentItem {
	padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#services .serviceGrid2 .imgItem {
	grid-column-start: 1;
  grid-column-end: 4;
}
#services .imgItem .serviceImg {
	width: 100%
}
#services .serviceHead {
	font-size: 30px;
	color: #fff;
	margin-bottom: 20px;
	line-height: 33px;
	text-align: center;
	text-transform: uppercase;
}
#services .serviceDescrptn {
	font-size: 20px;
	color: #EED484;
	margin-bottom: 0;
	line-height: 19px;
	text-align: center;
}


#contactUs .subHead1 {
	font-size: 20px;
  line-height: 26px;
  color: #1A1C1F;
}
#contactUs .mainHead {
	color: #B68D49;
	font-size: 20px;
	line-height: 22px;
	text-transform: uppercase;
}

#footer {
	padding: 0px 0 30px;
}
.lineArt {
	height: 1px;
	width: 100%;
	background-color: #B68D49;
	position: relative;
  margin-bottom: 60px;
}
.lineArt img {
	height: 40px;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
#footer .copyRight {
	color: #B68D49;
	font-size: 14px;
	line-height: 16px;
}
#footer .addressPara {
	color: #1A1C1F;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 4px;
}
#footer .footerSocial {
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	position: relative;
  z-index: 1;
}
#footer .footerSocial li:not(:last-child) {
	margin-right: 20px;
}
#footer .footerSocial li:last-child {
	display: none;
}
#footer .footerSocial li:nth-child(2) {
	margin-right: 0;
}
#footer .footerSocial a {
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #B68D49;
	border-radius: 4px;
}
#footer .footerSocial .socialIcon {
	height: 20px;
}

#footer .footerSocial .footerLogo {
  margin-left: 30px;
}
#footer  .footerLogo img {
  height: 35px;
}



@media (min-width: 576px) {
	#planeSection .andHead {
		margin-left: 60px;
	}
	#contactUs .subHead1 {
		font-size: 30px;
	  line-height: 36px;
	}
}
@media (min-width: 768px) {
	#banner .bannerHead1 {
		font-size: 55px;
		line-height: 55px;
	}
	#banner .bannerHead2 {
		font-size: 55px;
		line-height: 55px;
	  margin-top: 10px;
	}
	#aboutus,
	#services {
		padding: 80px 0;
	}
	#planeSection h2 {
	  font-size: 80px;
	  line-height: 80px;
	}
	#planeSection .andHead {
		margin-left: 50px;
	}
	#contactUs {
		padding: 0 0 80px 0;
	}
	#footer .footerSocial li:last-child {
		display: block;
	}
	#footer .footerSocial li:nth-child(2) {
		margin-right: 20px;
	}
	
	
}
@media (min-width: 992px) {
  #services .serviceGrid1,
	#services .serviceGrid2 {
	  -ms-grid-columns: 1fr 1fr 1fr;
	 	grid-template-columns: repeat(3, minmax(0, 3fr));
	}
	#services .serviceGrid2 .imgItem {
		grid-column-start: 2;
	  grid-column-end: 4;
	}
	#services .serviceHead {
		margin-bottom: 0;
	}
	#banner .bannerHead1 {
		font-size: 90px;
		line-height: 85px;
	}
	#banner .bannerHead2 {
		font-size: 90px;
		line-height: 85px;
	  margin-top: 15px;
	}
	#planeSection h2 {
	  font-size: 106px;
	  line-height: 102px;
	}
	#planeSection .andHead {
		margin-left: 30px;
	}
	#header .navbar-nav {
		justify-content: space-between;
    width: 100%;
	}
	#header .nav-item:not(:last-child) {
	  margin-bottom: 0px;
	  margin-right: 30px;
	}
	#header .navbar-nav {
	  margin-top: 0px;
	}
}
@media (min-width: 1200px) {
	#planeSection .andHead {
		margin-left: 10px;
	}
}
@media (min-width: 1400px) {
	#planeSection .andHead {
		margin-left: 0px;
	}
}
@media (min-width: 1920px) {
	
}

