

/*-----------Heding style----------*/
h1{
	font-size: 56px;
	font-weight: 700;
}
h2{
	font-size: 46px;
}
h3{
	font-size: 36px;
	font-weight: 700;
	color: #00abf0;
}
h4{
	font-size: 26px;
	font-weight: 700;
	color: #00abf0;
}

/*-----------Paragraph style----------*/

*{
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', sans-serif ;
}

.nav-bg-color{
	background-color: #081b29;
}
.logo{
	color: #ededed;
	font-weight: 700;
	position: relative;
}
.logo::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: .4;
}
.nav-animation{
	position: relative;
}
.nav-animation::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 3s;
}
.nav-link{
	color: #ededed;
}
.active{
	color: #00abf0;
}
.nav-link:hover{
	color: #00abf0;
}
.heror-left{
	height: 95vh;
	display: flex;
	align-items: center;
	color: #ededed;
}
.heror-left h1{
	position: relative;
}
.heror-left h1::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 1s;
}
.heror-left h3{
	position: relative;
}
.heror-left h3::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 1.3s;
}
.heror-left p{
	position: relative;
}
.heror-left p::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 1.6s;
}
.button-box{
	position: relative;
}
.button-box::before{
	content: '';
	position: absolute;
	top: -5PX;
	left: -5PX;
	width: 100%;
	height: 130%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 1.9s;
	z-index: 2;
}


.button-box .btn-color1{
	background-color: #00abf0;
	color: white;
	font-size: 19px;
	padding: 5px 40px;
	border-radius: 10px;
	margin-right: 20px;
}
.button-box .btn-color2{
	background-color: transparent;
	border: 2px solid #00abf0;
	color: #00abf0;
	font-size: 19px;
	padding: 5px 40px;
	border-radius: 10px;
}


.button-box a{
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.button-box a::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0;
	height: 100%;
	background-color:;
	z-index: -1;
	transition: 0.5s;
}
.button-box a:hover::before{
	width: 100%;
}
.button-box a:nth-child(2)::before{
	background-color: #00abf0;
}
.button-box a:nth-child(2):hover{
	color: #081b29;
}
.button-box a:nth-child(1)::before{
	background-color: #081b29;
}
.button-box a:nth-child(1):hover{
	color: #00abf0;
}
.right-img{
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
}
.right-img img{
	width: 85%;
}
.right-img::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 3s;
	z-index: 2;
}
.right-img::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 35%;
	background-color: rgba(8, 27, 41, .7);
	transition: 1s;
}
.right-img:hover::before{
	width: 100%;
}

.button-box2 .about-btn{
	background-color: #00abf0;
	color: white;
	font-size: 19px;
	padding: 5px 40px;
	border-radius: 10px;
	margin-top: 20px;
}
.button-box2 a{
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.button-box2 a::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0;
	height: 100%;
	z-index: -1;
	transition: 0.5s;
}
.button-box2 a:hover::before{
	width: 100%;
}
.button-box2 a:nth-child(1)::before{
	background-color: white;
}
.button-box2 a:nth-child(1):hover{
	color: #00abf0;
}
.bck-nav{
	background-color: #081b29;
}



/*ANIMATION RELOAD AND SCROLL*/
.animate{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: yellow;
	z-index: 98;
}
.about-articale h2 .animate,
.about-articale h4 .animate{
	animation: snowRightn 1s ease forwards;
	animation-delay: calc(.3s * var(--i));
}


/*-----------KEYFRAMES ANIMATION NAME------------*/
@keyframes snowRightn{
	100%{
		width: 0;
	}
}

/*-----------KEYFRAMES ANIMATION NAME------------*/
@keyframes logo-left{
	100%{
		width: 0;
	}
}



/*-----------MEDIA SCREEN----------*/


@media screen and (max-width: 356px){
	.button-box .btn-color1{
		padding: 5px 30px;
	}
	.button-box .btn-color2{
		padding: 5px 30px;
	}
	.right-img{
		padding-top: 0px;
	}
	.heror-containt{
		padding-top: 30px;
	}
	.right-img img{
	width: 100%;
	}
}
@media screen and (max-width: 767px){

	.right-img img{
	width: 100%;
	}
}

@media screen and (max-width: 1500px){
	.nav-animation::before{
		animation-delay: .5s;
	}
}