/*-----------Heding style----------*/
h1{
	font-size: 56px;
	font-weight: 700;
	color: #00abf0;
}
h2{
	font-size: 46px;
}
h3{
	font-size: 36px;
	font-weight: 700;
	color: #00abf0;
}
h4{
	font-size: 26px;
	font-weight: 300;
	color: white;
}
h5{
	font-size: 26px;
	font-weight: 700;
}
h6{
	font-size: 16px;
	font-weight: 700;
	color: #00abf0;
}

/*-----------Paragraph style----------*/
p{
/*	color: white;*/
	font-family: Raleway;
	font-size: 18px;
}
*{
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', sans-serif ;
}

.nav-bg-color{
	background-color: #081b29;
}
.logo{
	color: #ededed;
	font-weight: 700;
	position: relative;
}

.nav-link{
	color: #ededed;
}
.active{
	color: #00abf0;
}
.nav-link:hover{
	color: #00abf0;
}

.service-text{
	text-align: center;
	padding: 30px 0px;
}
.service-card{
	color: white;
	background-color: rgba(44, 62, 80, 0.5);
/*	text-align: center;*/
	padding: 30px 30px;
	border-radius: 10px;
	transition: .5s;
	position: relative;
}
.card-heading{
	
	padding: 20px 0px 5px 0px;
}
.service-all-div{
	display: flex;
	justify-content: center;
	column-gap: 20px;
	row-gap: 20px;
}
.service-card1::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 1.5s;
}
.service-card2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 2s;
}
.service-card3::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 2.5s;
}
.service-card4::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 3s;
}
.service-card5::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 3.25s;
}
.service-card6::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 1s ease forwards;
	animation-delay: 3.5s;
}
.service-card:hover{
	background-color: #00abf0;
}
.service-icon{
	display: flex;
	justify-content: center;
	font-size: 35px; 
}

.main{
	padding: 80px 30px;
}

h1{

	position: relative;
}
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;
}
h4{

	position: relative;
}
h4::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 2s ease forwards;
	animation-delay: .75s;
}
.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 RESPONSIVE------------*/


@media screen and (max-width: 1200px){
	
	.service-card{
		padding: 30px 20px;
	}
}
@media screen and (max-width: 600px){
	h1{
		font-size: 36px;
	}
	.service-all-div{
		padding: 20px 20px;
	}
	.main{
	padding: 30px 30px;
}
}

