/* menu */
nav {
	font-family: "Red Hat Display", sans-serif;
	height: 80px;
	width: 100%;
}

img.logo {
	height: 40px;
	width: auto;
	margin-top: 20px;
	margin-left: 100px;
}

.nav ul {
	float: right;
	margin-right: 75px;
}

.nav ul li {
	display: inline-block;
	line-height: 80px;
	margin: 0px 25px;
}

.nav ul li a {
	color: #3EC7CC;
	font-size: 15px;
}

.nav ul a.active, .nav ul a:hover {
	color: #924FC4;
	transition: .5s;
}

#contactBtn a {
	color: white;
	background-color: #3EC7CC;
	border-radius: 7px;
	padding: 2px 15px;
}

#contactBtn a:hover, #contactBtn a.active2 {
	background-color: #924FC4;
}

label {
	display: none;
	float: right;
	height: 4.7px;
	width: 30px;
	cursor: pointer;
	margin-right: 30px;
	margin-top: 27.5px;
	background-color: #3EC7CC;
	border-radius: 5px;
}

label::before {
	content: '';
	width: 30px;
	height: 5px;
	display: block;
	margin-top: 10px;
	background-color: #3EC7CC;
	left: 0;
	cursor: pointer;
	transform-origin: left top;
	transform: rotatex(0deg);
	border-radius: 5px;
}

label::after {
	content: '';
	width: 30px;
	height: 4.7px;
	display: block;
	margin-top: 5px;
	left: 0;
	cursor: pointer;
	background-color: #3EC7CC;
	transform-origin: left bottom;
	transform: rotatex(0deg);
	border-radius: 5px;
}

#check:checked ~ label::before {
	transform: rotateZ(45deg);
}
#check:checked ~ label::after {
	transform: rotateZ(-45deg);
	margin-top: 15px;
}
#check:checked ~ label {
	background-color: transparent;
	margin-top: 17px;
	margin-right: 25px;
}

#check {
	display: none;
}

/* footer */
footer {
	margin-top: 100px;
}

.balk {
	width: 100%;
	height: 50px;
	background-color: #C6A4E1;
}

.logoFooter {
	height: 70px;
	width: auto;
	margin: 50px 0 0 100px;
}

.infoFooter {
	display: flex;
	flex-direction: row;
	margin: 50px 100px 0 100px;
	font-family: "Red Hat Display", sans-serif;
	font-size: 15px;
	line-height: 30px;
	justify-content: space-between;
}

.infoFooter, .infoFooter a {
	color: #924FC4;
}

.contactFooter h3 {
	font-family: "IntroBold", "Red Hat Display", sans-serif;
	font-size: 25px;
}

.socials li a {
	display: flex;
	flex-direction: row;
}

#linkedin, #facebook {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	margin-top: 2px;
}

.footerBottom {
	width: 100%;
	font-family: "Red Hat Display", sans-serif;
	font-size: 13px;
	color: #3EC7CC;
	background-color: #C8EFF0;
	text-align: center;
	padding: 20px 0;
	margin-top: 75px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.footerBottom a {
	color: #3EC7CC;
}

.socials li a:hover, .mailbel:hover, .footerBottom a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 1000px) {
/* menu */
	img.logo {
		height: 35px;
		width: auto;
		margin-top: 22.5px;
		margin-left: 50px;
	}

	.nav ul {
		margin-right: 35px;
	}

	.nav ul li {
		margin: 0 15px;
	}

	.nav ul li a {
		font-size: 12px;
	}

/* footer */
	footer {
		margin-top: 50px;
	}

	.balk {
		height: 40px;
	}

	.logoFooter {
		height: 50px;
		margin: 40px 0 0 50px;
	}

	.infoFooter {
		margin: 40px 50px 0 50px;
		font-size: 12px;
		line-height: 25px;
	}

	.contactFooter h3 {
		font-size: 20px;
	}

	#linkedin, #facebook {
		width: 20px;
		height: 20px;
	}

	.footerBottom {
		font-size: 11px;
		padding: 15px 0;
		margin-top: 50px;
	}

}

@media screen and (max-width: 750px) {
/* menu */
	img.logo {
		margin-left: 30px;
		height: 30px;
		width: auto;
		margin-top: 25px;
	}

	.nav ul {
		position: fixed;
		width: 100%;
		height: 100vh;
		background-color: white;
		top: 80px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}

	.nav ul li {
		display: block;
		margin: 30px 0;
		line-height: 30px;
	}

	.nav ul li a {
		font-size: 17px;
	}

	label {
		display: block;
	}

	#check:checked ~ ul {
		left: 0;
	}

/* footer */
	.balk {
		height: 30px;
	}

	.logoFooter {
		height: 50px;
		margin: 30px 0 0 30px;
	}

	.infoFooter {
		flex-direction: column;
		margin: 30px 30px 0 30px;
		font-size: 15px;
		line-height: 35px;
	}

	.infoFooter ul {
		margin: 15px 0;
	}

	.contactFooter h3 {
		font-size: 25px;
	}

	#linkedin, #facebook {
		width: 35px;
		height: 35px;
	}

	.socials {
		display: flex;
		flex-direction: row;
	}

	.socials p {
		display: none;
	}

	.footerBottom {
		font-size: 11px;
		padding: 15px 0;
		margin-top: 50px;
		flex-direction: column;
	}

}
