@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	font-family: 'poppins';
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
html{
		scroll-behavior: smooth;
}
.banner{
	width: 100%;
	height: 100vh;
	background: #3475ca;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner .content{
	position: relative;
	max-width: 750px;
	text-align: center;
}
.banner .content h2{
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.banner .content p{
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #fff;
}
.banner img.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}
.menu{
	position: absolute;
	/*background: black;*/
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu h2{
	font-weight: 700;
	font-size: 40px;
	color: #fff;
	letter-spacing: 3px;
}
.book{
	width: 45px;
}
#menu_toggle {
	display: none;
	opacity: 0;
}
.menu_btn{
	position: fixed;
	right: 100px; 
	width: 28px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 10;
}
.menu_btn > span,
.menu_btn > span:before,
.menu_btn > span:after{
	display: block;
	position: absolute;
	width: 28px;
	height: 3px;
	background-color: #fff;
	transition-duration: 0.25s;
}
.menu_btn > span:before{
	content: "";
	top: -8px;
}
.menu_btn > span:after{
	content: "";
	top: 8px;
}
.menu_box{ 
	position: fixed; 
	visibility: hidden; 
	background: #6ba6ff;
	text-align: center;
	top: -100%;
	right: 0;  
	width: 100%; 
	padding: 60px 0;   
	transition: 0.6s;
	z-index: 9;
}
.menu_item {  
	color: #fff; 
	font-size: 25px; 
	font-weight: 400; 
	cursor: pointer;
}
#menu_toggle:checked ~ .menu_btn > span { 
	transform: rotate(45deg); 
} 

#menu_toggle:checked ~ .menu_btn > span::before {
	top: 0;
	transform: rotate(0); 
} 

#menu_toggle:checked ~ .menu_btn > span::after { 
	top: 0;
	transform: rotate(90deg); 
} 
#menu_toggle:checked ~ .menu_box { 
	visibility: visible;
	top: 0; 
}
.about{
	position: relative;
	width: 100%;
	display: flex;
}
.about .contentBx{
	background: #3f8ffc;
	width: 100%;
	padding: 100px;
	text-align: center;
}
.about .contentBx p{
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 500;
}
.about .heading{
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.heading{
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
p{
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 300;
}
.about .imgBx{
	width: 100%;
	margin-top: 40px;
	background: #3f8ffc;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about .imgBx img{
	width: 450px;
}
.about .imgBx .balloon{
	width: 10%;
}
.about .imgBx .balloon1{
	width: 10%;
	filter: hue-rotate(180deg);
	transform: rotate(-10deg);
}
.services{
	background: #12222d;
	padding: 100px;
	text-align: center;
}
.services .container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
	margin-bottom: 20px;
}
.services .container img{
	width: 50%;
	margin: 10px;
  border: 3px solid #fff;
}
.technology{
	background: #3f8ffc;
	text-align: center;
	padding: 100px;
}
.technology .imgBx {
	margin-top: 40px;
	max-width: 	100%;
}
.technology .imgBx img{
	max-width: 100%;
	border: 3px solid #fff;
}
.client{
	background: #162c3b;
	padding: 100px;
	text-align: center;
}
.client .imgBx{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}
.client .imgBx img{
	max-width: 200px;
	margin: 20px;
	background-color: transparent;
  cursor: pointer;
  padding: 15px;
  background-position: 100%;
  background-size: 400%;
  transition: 1s;
}
.client .imgBx .google{
  border: 4px solid #ea4335;
  background-image: -webkit-linear-gradient(45deg, #090078 50%, #090078 50%);
  background-image: linear-gradient(45deg, #ea4335 50%, transparent 50%);
}
.client .imgBx .amazon{
  border: 4px solid #ff9c27;
  background-image: -webkit-linear-gradient(45deg, #090078 50%, #090078 50%);
  background-image: linear-gradient(45deg, #ff9c27 50%, transparent 50%);
}
.client .imgBx .twitter{
  border: 4px solid #40b9ff;
  background-image: -webkit-linear-gradient(45deg, #090078 50%, #090078 50%);
  background-image: linear-gradient(45deg, #40b9ff 50%, transparent 50%);
}
.client .imgBx .facebook{
  border: 4px solid #3559c4;
  background-image: -webkit-linear-gradient(45deg, #090078 50%, #090078 50%);
  background-image: linear-gradient(45deg, #3559c4 50%, transparent 50%);
}
.client .imgBx img:hover{
  outline: 0;
  background-position: 0;
}
.coments{
	position: relative;
	padding: 100px;
	background: #12222d;
	text-align: center;
}
.coments .container{
	display: flex;
	justify-content: center;
	margin-top: 40px;
	flex-wrap: wrap;
}
.coments .container .contentBx{
	background: #fff;
	padding: 30px 25px;
	width: 550px;
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
.coments .container .contentBx p{
	color: black;
}
.coments .container .contentBx h3{
	width: 100%;
	text-align: end;
}
.coments .container .contentBx img{
	width: 120px;
	height: 120px;
	border-radius: 500px;
}
.footer{
	background: #162c3b;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer ul li{
	display: inline-block;
	margin: 10px 0;
}
.footer img{
	filter: invert(1);
	max-width: 20px;
}
@media (max-width: 991px){
.about .imgBx img{
	width: 300px;
}
.about .imgBx .balloon{
	width: 20%;
	transform: rotate(10deg);
}
.about .imgBx .balloon1{
	width: 20%;
	transform: rotate(-10deg);
}
	.menu_btn{
	right: 50px; 
}
	.banner{
		padding: 50px;
	}
	.banner .menu{
	padding: 20px 50px;
	}
	.banner .content h2{
		font-size: 36px;
	}
	.banner .content p{
		font-size: 16px;
	}
	.about .heading{
		font-size: 36px;
	}
	.about .contentBx p{
		font-size: 16px;
	}
	#menu_toggle:checked ~ .menu_btn { 
	position: fixed;
	right: 50px; 
	}
	.about{
		flex-direction: column;
	}
	.about .contentBx,
	.about .imgBx{
		width: 100%;
		padding: 50px;
		min-height: 400px;
		text-align: center;
	}
	.about .imgBx .balloon{
		display: none;
	}
	.about .imgBx .balloon1{
		display: none;
	}
	.services{
		padding: 50px;
	}
	.services .container{
		justify-content: center;
		margin-top: 20px;
	}
	.services .container img{
		width: 100%;
		margin: 10px;
  	border: 3px solid #fff;
	}
	.services .container .serviceBx{
		margin: 20px;
		width: 300px;
		height: 300px;
	}
	.technology{
		padding: 50px;
	}
	.technology .imgBx{
		margin-top: 40px;
	}
	.client{
		padding: 50px;
	}
	.client .imgBx{
		justify-content: center;
	}
	.coments{
		padding: 50px;
	}
	.coments .container .contentBx{
		padding: 20px;
		margin: 0;
		margin-bottom: 40px;
	}
	.coments .contentBx:last-child{
		margin-bottom: 0px;
	}
	.contact{
		padding: 50px;
	}
	.footer{
		padding: 20px 50px;
		flex-direction: column-reverse;
		text-align: center;
	}
	.footer ul{
		margin-bottom: 20px;
	}
}