.about{
	height: 90vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(about1.webp);
}
.about .about_row{
	display: flex;
	justify-content: space-between;
}
.about .about_row .about_effect{
	width: 48%;
	text-align: center;
}
.about .about_row .about_effect h1{
	color: white;
	font-size: 100px;
	margin-top: 35vh;
}
.about .about_row .about_effect .contactbtn{
	background-color: navy;
	font-size: 20px;
	margin-top: 20px;
	width: 150px;
	border-radius: 30px;
	outline: none;
	border-style: none;
	transition: 0.6s;
	
}
.about .about_row .about_effect .contactbtn:hover{
	background-color: blue;
	
}
.about .about_row .about_effect .contactbtn a{
	text-decoration: none;
	color: white;
}
.about .about_row .about_text{
	width: 48%;
}
.about .about_row .about_text .p1{
	color: white;
	text-align: justify;
	margin-top: 50px;
	margin-left: 30px;
	padding-right: 20px;
	font-size: 20px;
}
.about .about_row .about_text .p2{
	color: white;
	text-align: justify;
	margin-top: 50px;
	margin-left: 30px;
	padding-right: 20px;
	font-size: 20px;
}
/* for width<767px*/
@media(max-width:767px){
	.about .about_row .about_effect h1{
		font-size: 50px;
	}
	.about .about_row .about_text .p1{
		font-size: 15px;
		padding-left: 20px;
		background-color: rgb(117, 117, 117);
	}
	.about .about_row .about_text .p2{
		font-size: 15px;
		padding-left: 20px;
		background-color: rgb(117, 117, 117);
	}
}
/* for width<500px*/
@media(max-width:500px){
	.about{
		height: 120vh;
	}
	.about .about_row{
		display: block;
		justify-content: space-between;
	}
	.about .about_row .about_effect{
		width: 100%;
	}
	.about .about_row .about_effect h1{
		color: white;
		font-size: 50px;
		margin-top: 0px;
	}
	.about .about_row .about_text{
		width: 90%;
		margin-left: 0%;
	}
}