@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

#menuClose {
	display: none;
}

#menuOpen {
	display: none;
}

section {
	padding: 100px;
}

.banner {
	position: relative;
	min-height: 100vh;
	/*background: url();*/
	background-color: black;
	background-size: cover;
	background-position: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner h2 {
	font-size: 3em;
	color: #fff;
	font-weight: 500;
	line-height: 1.5em;
}

.banner h2 span {
	font-size: 1.5em;
	font-weight: 700;
}

.banner h3 {
	font-size: 1.5em;
	color: #fff;
	font-weight: 500;
}

.btn {
	position: relative;
	background: #2196f3;
	display: inline-block;
	color: #fff;
	margin-top: 20px;
	padding:10px 30px;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	font-weight: 500;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s;
}

header.sticky {
	background: #fff;
	padding: 20px 100px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header .logo {
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 2px;
}

header.sticky .logo {
	color: #111;
}

header ul {
	position: relative;
	display: flex;
}

header ul li {
	position: relative;
	list-style: none;
}

header ul li a {
	position: relative;
	display: inline-block;
	margin: 0 15px;
	color: #fff;
	text-decoration: none;
}

header.sticky ul li a {
	color: #111;
}

.heading {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
	color: #111;
}

.heading h2 {
	font-weight: 600;
	font-size: 30px;
}

.content {
	display: flex;
	justify-content: space-between;
}

.contentBox {
	padding-right: 30px;
}

.contentBox h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.w50 {
	min-width: 50%;
}
img {
	max-width: 100%;
}

.skills {
	background: #111;
}

.heading.white {
	color: #fff;
}

.skills .content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}

.skills .content .skillsBox {
	padding: 40px 20px;
	background: #222;
	color: #fff;
	max-width: 340px;
	margin: 20px;
	text-align: center;
	transition: 0.5s;
}

.skills .content .skillsBox:hover {
	background: #2196f3;
}

.skills .content .skillsBox i {
	max-width: 80px;
	filter: invert(0);
}

.skills .content .skillsBox h2 {
	font-size: 2em;
	font-weight: 600;
}

.projects .content .projectBox h2 {
	font-size: 2em;
	font-weight: 600;
}

.projects .content {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.projects .content .projectBox {
	width: 50%;
	padding: 20px;
}

.projects .content .projectBox img {
	max-width: 100%;
}

.contact {
	background: #111;
}

.formBox {
	min-width: 60%;
}

.formBox form {
	display: flex;
	flex-direction: column;
}

.formBox form h3,
.contactInfo h3 {
	color: #fff;
	font-size: 1.5em;
	font-weight: 500;
	margin-bottom: 10px;
}

.formBox form input,
.formBox form textarea {
	margin-bottom: 20px;
	padding: 15px;
	font-size: 16px;
	border: none;
	outline: none;
	background: #222;
	color: #fff;
	resize: none;
}

.formBox form textarea {
	min-height: 200px;
}

.formBox form input::placeholder,
.formBox form textarea::placeholder {
	color: #999;
}

.formBox form input[type="submit"] {
	max-width: 100px;
	background: #2196f3;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.contactInfo {
	min-width: 40%;
}

.contactInfoBox {
	position: relative;
}

.contactInfoBox .box {
	position: relative;
	padding: 20px 0;
	display: flex;
}

.contactInfoBox .box .icon {
	min-width: 40px;
	padding-top: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	font-size: 24px;
}

.contactInfoBox .box .text {
	display: flex;
	margin-left: 20px;
	font-size: 16px;
	color: #fff;
	flex-direction: column;
	font-weight: 300;
}

.contactInfoBox .box .text  h3 {
	font-weight: 500;
	color: #2196f3;
	margin-bottom: 0;
}

.copyright{
	background: #000;
	color: #fff;
	text-align: center;
	padding: 10px;
}

.fa-twitter-square, .fa-linkedin, .fa-github-square  {
	color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
	header,
	header.sticky {
		padding: 35px 50px;
		z-index: 1000;
	}

	.menu {
		position: fixed;
		top: 75px;
		left: -100%;
		display: block;
		padding: 100px 50px;
		text-align: center;
		width: 100%;
		height: 100vh;
		background: #fff;
		transition: 0.5s;
		z-index: 999;
		border-top: 1px solid rgba(0,0,0,0.2);
	}

	.menu.active {
		left: 0;
		filter: invert(0);
	}

	header ul li a {
		color: #111;
		font-size: 24px;
		margin: 10px;
	}

	.toggle {
		width: 40px;
		height: 40px;
		filter: invert(1);
		cursor: pointer;
	}

	.toggle.active {
		cursor: pointer;
	}

	#menuClose {
		display: none;
	}

	#menuOpen {
		display: block;
	}

	.toggle.active #menuClose {
		display: block;
	}

	.toggle.active #menuOpen {
		display: none;
	}

	header.sticky .toggle {
		filter: invert(0);
	}

	section {
		padding: 100px 50px;
	}

	.banner {
		padding: 150px 50px 100px;
	}

	.banner h2 {
		font-size: 1.5em;
	}

	.banner h3 {
		font-size: 1em;
	}

	.btn {
		margin-top: 10px;
		padding: 10px 20px;
		font-size: 16px;
	}

	.heading h2 {
		font-size: 24px;
	}

	.contentBox h3 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.content {
		flex-direction: column;
	}

	.w50 {
		margin-bottom: 20px;
	}

	.skills .content .skillsBox {
		margin: 10px;
	}

	.projects .content .projectBox {
		width: 100%;
		padding: 10px;
	}

	.contactInfo {
		margin: 20px 0;
	}

}

@media (max-width: 600px) {
	header,
	header.sticky {
		padding: 35px 20px;
		z-index: 1000;
	}

	#menuClose {
		display: none;
	}
	
	#menuOpen {
		display: block;
	}

	.banner {
		padding: 150px 20px 100px;
  }

  .section {
		padding: 100px 20px;
	}
}