@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}
body, html {
    height: 100%;
    width: 100%;
    position: relative;
       
}

.max-width{
	/*max-width: 1300px;*/
	padding: 0 30px ;
	margin: auto;
}
/*navbar styling*/
.navbar{
	position: fixed;
	width: 100%;
	padding: 8px 0;
	font-family: 'Poppins',sans-serif;
	font-weight: 600;
	transition: all 0.3s ease;
	/*background: #079DFF;*/
	z-index: 9999;

}

.navbar .max-width{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar .logo img{
	height: 100px;
	width: 160px;


}

/*.navbar .menu li{
	list-style: none;
	display: inline-block;
	position: relative;
	padding: 8px 25px;

}
.navbar .menu li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #000709 ;
	display: block;
	margin: auto; 
	transition: 0.5s;

}
.navbar .menu li:hover::after{
	width: 100%;
}

.navbar .menu li a{
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	
}*/

/* Links inside the navbar */
.navbar .menu a {
  float: left;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;

}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  color: white;
  padding: 14px 25px;
  font-weight: 600;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #000709;
  border-radius: 10px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  float: left;
  position: absolute;
  background-color: black;
  min-width: 160px;
  font-size: 18px;
  border-radius: 10px;

  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
 
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  
  color: lightblue;

}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;

  
}


/*home section*/		
.home{
	display: flex;
	background-image: linear-gradient(rgba(10,158,255, 0.7),rgba(0,7,10, 0.2)),url("images/bg.jpg");
	/*background: url("images/bg.jpg") center no-repeat;*/
	background-size: cover;
	height: 100vh;
	overflow: hidden;
	font-family: 'Ubuntu',sans-serif;

}
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 60px;
	font-family: 'Poppins',sans-serif;
	/*font-style: italic;*/
}
.text-box h1 span{

	color:#000709 ;
}
.text-box h3{
	
	margin: 10px 0 40px;
	font-size: 30px;
	/*font-style: italic;*/
	color: lightblue;
	/*color:#000709 ;*/
}
.text-box h5{
	font-size: 16px;
	font-family: 'Poppins',sans-serif;
	margin-bottom: 40px;
	/*font-style: italic;*/
}

.disc h4{
	color: #fff;
	font-size: 16px;
	margin-top: 500px;
	font-style: italic;
}

.game{
	background: #fff;
	font-family: 'Poppins',sans-serif;
	height: 650px;

}
.game .title{
	position:relative;
	text-align: center;
	color: #111;
	font-size: 40px;
	font-weight: 500;
	margin-top: 80px;
	margin-bottom: 80px;
	
	font-family: 'Ubuntu',sans-serif;
}

.game .row{
	height: 300px;
}

.work-col{
	float: left;
	width: 25%;
	padding: 10px;
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}
.work-col img{
	width: 100%;
	height: 250px;
	border: 2px solid black;

}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	padding: 3px;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;

}
.layer:hover{
	background: rgba(8,123,198,0.9);

}
.layer h3{
	width: 100%;
	font-weight: 500;
	font-size: 25px;
	padding-left: 10px;
	padding-right: 10px;
	/*bottom: 0;*/

	left: 50%;
	text-align: center;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	
}
.layer:hover h3{
	bottom: 42%;
	opacity: 1;
}

.work-col a{
	text-decoration: none;
	color: #000;
}



.stats{
	background: #000709 ;
	font-family: 'Poppins',sans-serif;
	height: 600px;

}
.stats .title{
	position:relative;
	text-align: center;
	color: #fff;
	font-size: 40px;
	padding-top: 70px;
	font-weight: 500;
	margin-top: 80px;
	margin-bottom: 80px;
}



.stats-col{
	float: left;
	width: 25%;
	padding: 10px;
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}
.stats-col img{
	width: 100%;
	height: 250px;
	border: 2px solid black;

}
.stats-col a{
	text-decoration: none;
}
.layer1{
	background: transparent;
	height: 100%;
	width: 100%;
	padding: 3px;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;

}
.layer1:hover{
	background: rgba(8,123,198,0.9);

}
.layer1 h3{
	width: 100%;
	font-weight: 500;
	font-size: 25px;
	padding-left: 10px;
	padding-right: 10px;
	/*bottom: 0;*/

	left: 50%;
	text-align: center;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
}
.layer1:hover h3{
	bottom: 42%;
	opacity: 1;
}


/*team*/

.team{
	background: #fff;
	font-family: 'Poppins',sans-serif;
	height: 500px;

}
.team .title{
	position:relative;
	text-align: center;
	color: black;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 40px;
	padding-bottom: 20px;
	margin-top: 70px;
	font-family: 'Ubuntu',sans-serif;
}

.team .carousel .card{
	background: #000709;
	color: #fff;
	border-radius: 6px;
	padding: 25px 35px;
	text-align: center;
	margin: 20px;
	transition: all 0.3s ease;
}
.team .carousel .card:hover{
	background: #087bc6;
	color: black;
}
.team .carousel .card .box{
	display: flex;
	flex-direction: column;
	align-items: center;

	justify-content: center;
	transition: all 0.3s ease;
}
.team .carousel .card:hover .box{
	transform: scale(1.05);
}
.team .carousel .card .text{
	font-size: 25px;
	font-weight: 500;
	margin: 10px 0 7px 0;
}
.team .carousel .card img{
	height: 150px;
	width: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #fff;
	transition: all 0.3s ease;
}
.team .carousel .card:hover img{
	border-color: #fff;

}
.owl-dots{
	text-align: center;
	margin-top: 20px;
}
.owl-dot{
	height: 13px;
	width: 13px;
	margin: 0 5px;
	outline: none!important;
	border-radius: 50%;
	border: 3px solid #087bc6!important;
}
.owl-dot.active{
	width: 35px;
	border-radius: 14px;
	border: 8px solid #087bc6!important;
}


footer{
	background: #087bc6;
	color: #fff;
	height: 35px;
	font-size: 20px;
	text-align: center;
}


	