/*===== default css  =====*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*===== default css  =====*/
html{
  scroll-behavior: smooth;
}
*{
	padding: 0;
	margin: 0;
  font-family: 'Poppins', sans-serif;
}

.containt{
  width: 90%;
  margin: auto;
}

.wraper{
  display: grid;
  grid-template-columns: 1.5fr 9.5fr 1fr;
  align-items: center;
}

nav{
  padding: 1% 0;
  width: 100%;
  position: fixed;
  background-color: white;
  z-index: 999;
}

.middle{
	padding-top: 5%;
}


/*=====banner section css =====*/
.banner{
	background:linear-gradient(45deg, #ff0000, #000);
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}

.heading{
	font-size: 60px;
	font-weight: 800;
	color: white;
}

.baton{
	background-color: white;
	border: 1px solid white;
	border-radius:7px;
	color: red;
	font-size: 20px;
	font-weight: 600;
	padding: 1% 2%;
}
/*=====about section css =====*/
.about{
	padding: 5% 0;
}

.wraper1{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.left{
	padding: 7% 3%;
}

.left h3{
	font-size: 28px;
	font-weight: 300;
	color: #666;
	letter-spacing: 2px;
	line-height: 40px;
}

.left a{
	color: black;
	font-size: 25px;
	text-decoration: none;
}

.left a font{
	font-size: 22px;
	font-weight: 600;
	color: #666;
	align-items: center;
	padding-left: 2%;
}
/*=====map section css =====*/
.map{
	background-color: #f1f1f1;
}
.title{
	font-size: 40px;
	padding: 5% 0;
	font-weight: 800;
	text-align: center;
	letter-spacing: 2px;
}
/*=====footer ection css =====*/
.footer{
	padding: 2% 0;
}
.wraper2{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.icon a{
	color: black;
	font-size: 20px;
	text-decoration: none;
}

.icon a font{
	font-size: 18px;
	font-weight: 600;
	color: #666;
	align-items: center;
	padding-left: 2%;
}
/*=====section css =====*/
/*=====section css =====*/




/*===== Mobile, tab and medium & small device =====*/
@media screen and (max-width: 768px)
{
	/*===== start Mobile css =====*/
   .heading, .title{
   	font-size: 40px;
   } 

   .wraper1,.wraper2{
   	grid-template-columns: 1fr;
   }

   .left h3{
   	font-size: 18px;
   }

   .left a, .left a font, .icon a, .icon a font{
   	font-size: 18px;
   }

}
