* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
}

img {
	max-width: 100%;
}

header {
	margin: 60px auto 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section {
	margin-top: 100px;
}

h2 {
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 36px;
	text-align: center;
}

.container {
	width: 1140px;
	margin: 0 auto;
}

.logo {
	display: block;
	margin-bottom: 20px;
}

.intro {
	padding-left: 10px;
}

.element {
	display: inline;
	font-size: 24px;
	font-family: Courier, serif;
}

.typed-cursor {
	font-size: 28px;
	position: relative;
}

.contact-mail {
	color: black;
	text-decoration: none;
	font-size: 18px;
	display: flex;
	background: black;
	width: 220px;
	align-items: center;
	justify-content: center;
	color: #FFF;
	height: 36px;
	border: solid 3px black;
	transition: background .3s;
}

.contact-mail svg {
	margin-right: 8px;
	transition: stroke .3s;
}

.contact-mail:hover {
	color: black;
	background: transparent;
}

.contact-mail:hover svg {
	stroke: black;
}

#what-we-do {
	background: #ffc048;
	padding: 60px 0;
}

.what-we-do {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.about-us {
	width: 25%;
	color: #403012;
	font-size: 24px;
}

.items {
	width: 70%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.what-we-do .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc((100% / 3) - 20px);
	text-align: center;
}

.what-we-do img {
	height: 60px;
	stroke: white;
	margin-bottom: 30px;
}

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

.project {
	width: calc((100% / 3) - 30px);
	position: relative;
	color: #424242;
	margin: 0 15px 30px;
	box-shadow: 0 0 5px 3px #ddd;
	top: 0;
	transition: top .3s;
}

.project-info {
	opacity: 0;
	transition: all .3s;
	position: absolute;
	background: #2e86de;
	color: white;
	left: 20px;
	right: 20px;
	top: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 24px;
}

.project-info span {
	font-size: 14px;
	margin-top: 10px;
	text-align: center;
}

.project:hover {
	top: -10px;
}

.project:hover .project-info {
	opacity: 1;
}

.ekozer {
	background: #ff9f69;
}

.dadanizm {
	background: black;
}

.belight {
	background: #00b5e2;
}

.starbeats {
	background: #B3285C;
}

.kisakes {
	background: black;
}

.moda {
	background: black;
}

.naturdent {
	background: #02ccd0;
}

.ozelsigorta {
	background: #ec2028;
}

@media (max-width: 1200px) {
	.container {
		width: 960px;
	}
}

@media (max-width: 992px) {
	.container {
		width: 720px;
	}

	.about-us {
		font-size: 18px;
	}
	.what-we-do img {
		height: 48px;
	}
	.project {
		width: calc(50% - 30px);
	}
}

@media (max-width: 768px) {
	.container {
		width: 540px;
	}
	.project {
		width: calc(100% - 30px);
	}
	header {
		flex-direction: column;
	}
	.header-left {
		margin-bottom: 30px;
	}
	section {
		margin-top: 40px;
	}
}

@media (max-width: 576px) {
	.container {
		width: 90vw;
	}
	.what-we-do {
		flex-direction: column;
	}
	.about-us {
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
	.what-we-do .items {
		width: 100%;
		font-size: 13px;
	}
	.what-we-do img {
		margin-bottom: 10px;
		height: 36px;
	}
}

