@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;
	display: flex;
	padding: 100px;
	align-items: center;
	justify-content: space-between;
	background: #236eff;
	position: relative;
	overflow: hidden;
	z-index: 7;
}
.content{
	z-index: 12;
	max-width: 600px;
}
.content h2{
	font-size: 4em;
	line-height: 1.5em;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
}
.content h2 span{
	font-size: 2em;
}
.content p{
	color: #fff;
}
div.circle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #145ae0;
	clip-path: circle(70% at right -20%);
	z-index: -1;
}
.menu{
	position: fixed;
	background: #005794;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}
.menu img{
	width: 70px;
	z-index: 565;
	transition: 0.5s;
}
.menu img:hover{
	transform: rotate(45deg);
}
.menu_box { 
	display: flex;
	justify-content: space-between;
	text-decoration: none; 
	width: 60%;
}
.menu_item{
	color: #fff; 
	font-size: 25px; 
}
.btn{
  background-color: red;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(45deg, #fff 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: 1s;
}
.btn:hover{
  outline: 0;
  color: red;
  background-position: 0;
}
.imgBx img{
	z-index: 200;
}
.thumb{
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	display: flex;
}
.thumb li{
	list-style: none;
	display: inline-block;
	cursor: pointer;
	transition: 0.5s;
	margin: 0 20px;
}
.thumb li img{
	max-width: 60px;
	transition: 0.3s;
}
.thumb li img:hover{
	transform: translateY(-20%);
}
.sci{
	position: fixed;
	bottom: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.sci li{
	list-style: none;
}
.sci li a{
	margin-left: 15px;
	width: 50px;
	height: 50px;
	background: #4a88ff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: 0.2s ease-in-out;
}
.sci li a img{
	width: 20px;
	height: 20px;
}
.sci li a:hover{
	background: red;
	transform: translateY(-20%);
}
section{
	display: flex;
	align-items: center;
	justify-content: center;
}
.products{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.products h2{
	font-size: 40px;
	margin-bottom: 30px;
}
.title{
	font-size: 50px;
	color: #fff;
	margin: 20px 0;
}
.video{
	background: #145ae0;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
}
video{
	width: 100%;
}
.products .product{
	padding: 40px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.products .product img{
	margin-left: 20px;
}
.products .p2 img{
	margin-right: 20px;
}
.p1{
	background: #236eff;
	color: #fff;
}
.p2{
	background: #ec2226;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.p3{
	background: #000;
	color: #fff;
}
.text{
	display: flex;
	width: 70%;
	flex-direction: column;
}
img.wave{
	width: 100%;
}
svg{
	width: 100%;
}
.footer{
	background-color: #222222;
	padding: 200px;
}
.container{
	width: 100%;
}
.row{
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-col{
	padding: 0 15px;
	margin-bottom: 30px;
}
.footer-col h4{
	font-size: 18px;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 30px;
	font-weight: 500;
	position: relative;
	box-sizing: border-box;
	transition: 0.3s;
}
.footer-col h4:hover{
	color: #4a88ff;
}
.footer-col h4:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 2px;
	background-color: #4a88ff;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	text-transform: capitalize;
	color: #bbb;
	transition: 0.3s;
}
.footer-col ul li a:hover{
	color: #fff;
}
	#menu_toggle {
	display: none;
	opacity: 0;
}
@media (max-width: 991px){
	#menu_toggle {
	display: none;
	opacity: 0;
}
.menu_btn{
	background: black;
	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: -7px;
}
.menu_btn > span:after{
	content: "";
	top: 7px;
}
.menu_box{ 
	position: fixed; 
	visibility: hidden; 
	background: #005794;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	top: -100%;
	right: 0;  
	width: 100%; 
	height: 100vh; 
	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; 
}
.menu{
	padding: 15px 30px;
}
.menu img{
	width: 55px;
	z-index: 565;
	transition: 0.5s;
}
.banner{
	padding: 700px 50px;
	flex-direction: column;
	justify-content: center;
}
.content{
	z-index: 12;
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
}
.thumb{
	bottom: 40px;
}
.sci{
	left: 20px;
}
.content h2{
		font-size: 3em;
	}
.content p{
		font-size: 1.5em;
	}
.products .product{
	padding: 0x 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text{
	display: flex;
	width: 100%;
	flex-direction: column;
}
.products .product{
	padding: 20px 30px;
}
.products .p3{
	padding-bottom: 60px;
}
.products .product img{
	margin-top: 20px;
}
.footer{
	background-color: #222222;
	padding: 100px;
}
}
@media (max-width: 707px){
	.content p{
		font-size: 15px;
	}
	.content h2{
		font-size: 2em;
	}
.products h2{
	font-size: 35px;
	margin-bottom: 15px;
}
.products .product{
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.products .product img{
	margin-top: 20px;
}
.footer{
	background-color: #222222;
	padding: 60px;
}
.sci{
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.sci li{
	list-style: none;
}
.sci li a{
	margin-left: 15px;
	width: 40px;
	height: 40px;
	background: #4a88ff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: 0.2s ease-in-out;
}
.sci li a img{
	width: 20px;
	height: 20px;
}
.sci li a:hover{
	background: red;
	transform: translateY(-20%);
}
}
.wrapper{
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
}
.wrapper .container2{
	position: relative;
	width: 50%;
	height: 100%;
	opacity: 0.9;
}
.wrapper .container2:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(225deg, #ec2226, #236eff);
	opacity: 0.5;
	z-index: 1;
}
.wrapper .container2 img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wrapper .container3{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wrapper .container3 .formBx{
	width: 50%;
}
.wrapper .container3 .formBx h2{
	color: #3b3b4f;
	font-size: 1.5em;
	font-weight: 600;
	border-bottom: 4px solid #236eff;
	display: inline-block;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.wrapper .container3 .formBx .inputBx{
	margin-bottom: 20px;
}
.btn2{
  background-color: #236eff;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  width: 100%;
  margin-top: 20px;
  padding: 7px 0;
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(45deg, #0757f2 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: 1.5s;
}
.btn2:hover{
  outline: 0;
  background-position: 0;
}
.wrapper .container3 .formBx .inputBx span{
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	color: #3b3b4f;
	font-weight: 300;
	letter-spacing: 1px;
}
.wrapper .container3 .formBx .inputBx input{
	outline: none;
	border-radius: 50px;
	padding: 10px 20px;
	width: 100%;
	font-weight: 400;
	letter-spacing: 1px;
	border: 1px solid #607d8b;
	background: transparent;
	color: #607d8b;
}
.wrapper .container3 .formBx .remember{
	margin-bottom: -10px;
	font-size: 15px;
	color: #607d8b;
	font-weight: 400;
}
@media (max-width: 768px){
	.wrapper .container2{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.wrapper .container3{
		z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.wrapper .container3 .formBx{
		background: rgba(255, 255, 255, 0.9);
		margin: 50px;
		padding: 40px;
		width: 100%;
	}
}