/*-----------Heding style----------*/
h1{
	font-size: 56px;
	font-weight: 700;
	color: white;
}
h2{
	font-size: 46px;
	color: white;
}
h3{
	font-size: 36px;
	font-weight: 700;
	color: #00abf0;
}
h4{
	font-size: 26px;
	font-weight: 700;
}
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;
}


.main{
	padding: 110px 30px 80px 30px;
}
.flex-div-all{
	display: flex;
	justify-content: center;
	column-gap: 20px;
	row-gap: 20px;
}

h1{

	position: relative;
	padding: 30px 0px;
}
h1::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #081b29;
	animation: logo-left 5s ease forwards;
	animation-delay: ;
}
.card{
	height: 400px;
	width: 350px;
	border-radius: 15px;
	overflow: hidden;
	border: 2px solid #00abf0;
	padding: 0px;
	position: relative;
}
.img-card{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card-body-writing{
	position: absolute;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0px;
	background: rgba(0, 171, 240, .5);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.card:hover .card-body-writing{
	top: 0%;
}
.card-title{
	display: flex;
	align-items: center;
	justify-content: center;
}
.work-icon{
	font-size: 36px;
	color: white;
}
.work-icon:hover{
	color: #00abf0;
}
.bck-nav{
	background-color: #081b29;
}







/*ANIMATION RELOAD AND SCROLL*/


/*-----------KEYFRAMES ANIMATION NAME------------*/
@keyframes snowRightn{
	100%{
		width: 0;
	}
}

/*-----------KEYFRAMES ANIMATION NAME------------*/
@keyframes logo-left{
	100%{
		width: 0;
	}
}




@media screen and (max-width: 600px){
	.card{
		height: 300px;
		width: 300px;
	}
	h1{
		font-size: 36px;
	}
	.main{
	padding: 30px 30px 30px 30px;
	}
}

