body{
	margin: 0;
}
.banner{
	height: auto;
	display: flex;
	padding: 0px 6px;
	background: white;
	border: 1px solid #8b8b8b;
	/*border-radius: 15px;*/
	box-shadow: 3px 8px 10px #c4c4c4;
	position: relative;
 }
 .banner-txt{
  display: flex;
	flex-direction: column;
	align-items: start;
	width: 100%;
	justify-content: center;
	gap: 5px;
	font-family: Arial;
 }
 .banner-txt h2,.banner-txt p{
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	font-size: 13px;
 }
 .banner-txt h2{
	font-size: 17px;
 }
 .browser{
	position: absolute;
	left: 50px;
 }
 .browser img{
  width: 40px;
 }
 .banvideo{
 border-radius: 10px;
 height: 75px;
 }
 .banvideowrapper{
 display: flex;
 align-items: center;    
	height: 85px;
	width: 85px;
 }
 .ban-btn{
	background: linear-gradient(45deg, #E91E63, #9C27B0);
	color: white;
	padding: 5px 20px;
	border-radius: 50px;
	font-size: 16px;
    min-width: 100px;
 }
 .ban-btn-kin{
	background: linear-gradient(170deg, #6e6e6e, black 40%);
	text-transform: uppercase;
	border: 2px solid white;
	animation: pulse 2s linear infinite; 
 }
 .pulse{
	  animation: pulse 2s linear infinite; 
}
 .movbannerimg1, .movbannerimg2{
	  animation: moveUpDown 4s infinite;
	  width: 100%;
	  position: absolute;
	  left: 0;
	  z-index: 0;
	  filter: brightness(0.85);
}
.movbannerimg1{
	  animation: moveUpDownRadically 7s infinite;
}
 @keyframes moveUpDown {
	0% {
		 top: 0;
	}
	50% {
		 top: -200%;
	}
	100% {
		 top: 0;
	}
}
 @keyframes moveUpDownRadically {
	0% {
		 top: 0;
	}
	50% {
		 top: -500%;
	}
	100% {
		 top: 0;
	}
}
.t-text{ 
 animation: animateTtext 0.5s linear infinite; 
} 
.t-box{
	animation: animateTbox 0.5s linear infinite; 

}
@keyframes animateTtext { 
 0%,100%    { 
	text-shadow: -1.5px -1.5px 0 #0ff,1.5px 1.5px 0 #f00; 
 } 
 25%    { 
	text-shadow: 1.5px 1.5px 0 #0ff,-1.5px -1.5px 0 #f00; 
 } 
 50%    { 
	text-shadow: 1.5px 1.5px 0 #0ff,-1.5px 1.5px 0 #f00; 
 } 
 75%    { 
	text-shadow: -1.5px 1.5px 0 #0ff,1.5px -1.5px 0 #f00; 
 } 
}
@keyframes animateTbox { 
 0%,100%    { 
	box-shadow: -1.5px -1.5px 0 #0ff,1.5px 1.5px 0 #f00; 
 } 
 25%    { 
	box-shadow: 1.5px 1.5px 0 #0ff,-1.5px -1.5px 0 #f00; 
 } 
 50%    { 
	box-shadow: 1.5px 1.5px 0 #0ff,-1.5px -1.5px 0 #f00; 
 } 
 75%    { 
	box-shadow: -1.5px 1.5px 0 #0ff,1.5px -1.5px 0 #f00; 
 } 
}
 .kin-img{
	width:50px;
	height:50px
 }
 @keyframes pulse{0%,100%{transform:scale(0.8)}50%{transform:scale(1)}