@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,600&family=Ubuntu:wght@400;500;700&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
}
.header {
	background: radial-gradient(#fff,cadetblue);
}
	.header .row {
		margin-top: 10px;
	}
.logo {
	font-family: 'ubuntu',sans-serif;
	font-weight: 500;
	font-size: 40px;
	color: black;
}
.logo span{
		color:crimson;
	}
.navbar {
	display: flex;
	align-items: center;
	padding: 20px;
	}
nav {
	flex: 1;
	text-align: right;
}
nav ul {
		list-style-type: none;
	}
nav ul li {
			display: inline-block;
			margin-right: 20px;
		}
nav ul li a:hover{
			color:crimson;
		}
a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	font-size:20px;
}
.container {
	max-width: 1300px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}
.row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}
.col-2 {
	flex-basis: 50%;
	min-width: 300px;
}
.col-2 img {
	max-width: 100%;
	padding: 20px 25px;		
	border-bottom-left-radius: 30%;
	max-height: 535px;
}
.col-2 h1 {
		font-size: 35px;
		line-height: 45px;
		margin: 25px 0;
		font-family: 'ubuntu',sans-serif;
		padding-top: 30px;
	}
.col-2 h1 span{
	color:crimson;
	font-size:40px;			
	}

.btn {
	display: inline-block;
	background: #e56228;
	color: #fff;
	padding: 8px 30px;
	margin: 30px 0;
	border-radius: 30px;
	transition: background .5s;
}
.btn:hover {
		background: #7a5353;
	}
.col-3 {
	flex-basis: 30%;
	min-width: 250px;
	margin-bottom: 30px;
}
.small-container {
	max-width: 1080px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}
/*--------------------About-----------------*/
.About {
	background: radial-gradient(#fff,#b8e4e4);
	margin-top: 50px;
	padding-bottom: 80px;
}
.col-2 .about-img1 {
	width: auto;
	height: auto;
	border-radius: 20%;
	padding-left: 70px;
	padding-bottom: 0px;
}
.col-2 .about-img2 {
	padding-right: 70px;
	padding-top: 0px;
	width: 100%;
	text-align: center;
}
small {
	color: #7a5353;
}
/*projects    ..............*/
.projects {
	background: radial-gradient(#fff,#b8e4e4);
	margin-top: 50px;
	padding-bottom: 80px;
}
.col-4 {
	flex-basis: 25%;
	padding: 10px;
	min-width: 200px;
	margin-bottom: 50px;
	transition: transform 0.5s;
}
.col-4 img {
		width: 100%;		
	}
.title {
	text-align: center;
	margin: 0auto 80px;
	position: relative;
	line-height: 60px;
	color: #555;
	font-size:35px;
	font-family:'ubuntu',sans-serif;
}
.title::after {
		content: '';
		background: #ff6a00;
		width: 80px;
		height: 5px;
		border-radius: 5px;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
h4 {
	color: #ffffff;
	font-weight: 300;	
}
.col-4 :hover {
	transform: translateY(5px);
}
.ongoing :hover {
	background-color: cadetblue;	
	zoom: 1.2;
}	
/*contact------------*/
.contact {
	padding-top: 25px;
	padding-bottom:50px;
}
.contact .col-3 {
		text-align: center;
		padding: 40px 20px;
		box-shadow: 0 0 20px 0px;
		cursor: pointer;
		transition: transform 0.5s;
	}
.contact .col-3:hover {
		transform: translateX(-10px);
		opacity: 0.6;
	}
.contact .col-3 h3 {
	font-weight: 600;
	font-size: 16px;	
}
.fa fa-envelope{
	color:black;
	background-color:black;
}
/*------------------footer----------------*/
.footer {
	background: #000000;
	color: #8a8a8a;
	font-size: 14px;
	padding: 60px 0 20px;
}
.footer-col-2 {
	flex: 1;
	text-align: center;
}
