*{
	margin: 0;
	padding: 0;
	font-family: 'Dosis', sans-serif;
}
body{
	background-image: url("../img/bg.png");
	background: #000;

	/*background: #000;*/
}
.hero{
	width: 80%;
	margin-left: 70px;
}
.navbar{
	margin: 10px auto;
	display: flex;
	align-items: center;
}
ul{
	flex: 1;
	text-align: right;
}
ul li{
	display: inline-block;
	list-style: none;
	margin: 0 25px;
}
ul li a{ 
	text-decoration: none;
	color: #fff;
	padding: 0 10px;
	position: relative;
	font-size: 18px;
}
ul li a::after{
	content: '';
	width: 0;
	height: 10px;
	background: #1F51FF;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
	transition: 0.5s;
} 
ul li a:hover::after{
	width: 100%;
} 
.navbar-icons img{
	height: 25px;
	margin-left: 40px;
	cursor: pointer;
}
.navbar-icons{
	margin-left: 40px;
}
.banner{
	display: flex;
	margin-left: 80px;
}
.left-column, .right-column{
	flex-basis: 50%;
}
.right-column img{
	width: 100%;
	margin-left: 80px;

	animation-delay: 1.5s;
}
.search-box{
	width: 45%;
	display: flex;
	padding-bottom: 3px;
	border-bottom: 1px solid #ddd;
	margin: 10px 0 30px;
}
.search-box img{
	height: 25px;
	width: 25px;
	cursor: pointer;
}
.search-box input{
	width: 100%;
	margin-left: 15px;
	font-size: 17px;
	border:  0;
	outline: none;
	color: #fff;
	background: #000;
}
.left-column h1{
	font-size: 100px;
	color: #fff;
	margin-top: 50px;

}
.left-column h3{
	font-size: 35px;
	color: #fff;
	
}
span{
	color: #FFDF2B;
}
.left-column p{
	font-size: 14px;
	color: #fff;
	margin: 50px 0;
	text-align: right;
	animation-delay: 0.5s;
}
.btn button{
	padding: 7px 30px;
	margin-right: 15px;
	outline: none;
	border: 1px solid #FFDF2B;
	border-radius: 20px;
	cursor: pointer;
	color: #FFDF2B;
	background: transparent;
	font-size: 20px;


}
.btn .primary-btn{
	background: linear-gradient(#FFDF2B, #C8AC0E);
	box-shadow: 0 2px 15px rgba(225, 223, 43, 0.26);
	color: #000;
	font-size: 20px;
	animation-delay: 1s;
}
.btn .primary-btn:hover{
	background: linear-gradient(#BFA71C, #A69119);
	box-shadow: 0 2px 15px rgba(225, 223, 43, 0.26);
	color: #fff;
	font-size: 20px;
	border: 1px solid #BFA71C;
}



.btn .animate{
	animation-delay: 1s;
}
.btn{
	margin-bottom: 50px;

}
.btn .btn-vid:hover{
	background: linear-gradient(#FFDF2B, #C8AC0E);
	box-shadow: 0 2px 15px rgba(225, 223, 43, 0.26);
	color: #fff;
	font-size: 20px;
	border: 1px solid #FFDF2B;

}
.social-icons{
	width: 300px;
	text-align: center;
	opacity: 100%;
	position: relative;
	margin-left: 160px;
	cursor: pointer;
}
.social-icons img{
	height: 30px;
	margin: 0 8px;
	margin-top: 60px;
}
.social-icons::after{
	content: '';
	width: 160px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: -160px;
	top: 75px;
}
.animate{
	opacity: 0;
	transform: translateY(30px);
	animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

