* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Funnel Sans", sans-serif;
	font-weight: 200;
}
sup {
	color: #30d6b2;
}

.main-header {
	display: flex;
	justify-content: space-evenly;
	font-size: 14px;
}

.logo {
	display: flex;
	align-self: center;
}


.sign {
	background: url(../icon.jpg) no-repeat left top white;
	background-size: 35px;
	padding: 1.5em;
}

.logo-name {
	font-weight: 500;
	font-size: 18px;
}

header nav li {
	display: inline-block;
	padding: 1em;
	font-weight: 400;
}

header nav li:first-of-type {
	color: #30d6b2;
}

.btn-template-1 button {
	border: 1px solid lightgrey;
	border-radius: 3px;
	color: black;
	background-color: #ffffff;
	text-decoration: none;
	text-align: center;
	padding: 15px 32px;
	margin: 15px 2px 4px 2px;
}

.hero-image {
	background-image: url(../desk.jpg);
	background-color: #cccccc;
	height: 950px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero-content {
	text-align: center;
	position: absolute;
	right: 32%;
	bottom: 35%;
}

h1 {
	font-size: 80px;
	font-weight: 400;
	margin-bottom: 0;
}

h2 {
	font-size: 44px;
	font-weight: 100;
	margin-top: 2px;
}

.hero-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 1.5em;
	width: 80%;
}

.btn-features button {
	border: none;
	border-radius: 3px;
	color: white;
	background-color: #30d6b2;
	text-decoration: none;
	text-align: center;
	padding: 15px 32px;
	margin: 4px 2px;
}

.btn-template-2 button {
	border: none;
	border-radius: 3px;
	color: white;
	background-color: black;
	text-decoration: none;
	text-align: center;
	padding: 15px 32px;
	margin: 4px 2px;
}

.info-block {
	display: flex;
	justify-content: space-evenly;
	background-color: #f8f8f8;
	height: 400px;
	padding: 100px 100px 80px 100px;
}

h3 {
	font-weight: 300;
}

.about {
	width: 18%;
	line-height: 1.6em;
}

.about p {
	color: grey;
}

.navigation ul{
	padding: 0;
}
.navigation ul li {
	color: #30d6b2;
	list-style: none;
	padding-bottom: 18px;
}

.comments {
	width: 20%;
}

.comments p {
	margin-top: 4px;
	line-height: 1.6em;
}

.comments cite {
	color: grey;
	font-size: 14px;
}

.contacts {
	width: 20%;
}

.contacts p, address {
	color: grey;
}

.contacts a {
	color: #30d6b2;
}

.contacts address {
	font-style: normal;
}

footer {
	display: flex;
	justify-content: space-around;
	color: grey;
}

footer li {
	list-style: none;
	display: inline-block;
	color: #30d6b2;
	padding: 0 8px;
}



