body{
	padding: 0;
	margin: 0;
}
header{
	display: flex;
	padding: 0 40px;
	justify-content: space-between;
}
.logo{
	cursor: pointer;
}
#about{
	position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
h3 {
  font-size: 40px;
  line-height: 50px;
  color: var(--dark);
}
h6 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dark);
}
a{
	color: #333;
	opacity: 0.7;
	text-decoration: none;
}
ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

ul >li{
	list-style: none;
	padding: 0 20px;
	color: #333;
	opacity: 0.7;
	cursor: pointer;
	font-size: 16px;
}
ul >li:hover{
	color: #000;
	opacity: 1;
	font-weight: 600;
}
ul >li>a:hover{
	color: #000;
	opacity: 1;
	font-weight: 600;
}
.content >img{
	width: 100%;
}
.active{
	color: #000;
	opacity: 1;
	font-weight: 600;
}
.imgs{
	display: flex;	
	justify-content: space-evenly;
	margin-top: 30px;
}
.imgs >img{
		width: 15% !important;
		margin-bottom: 30px;
		cursor: pointer;
		transition: 0.2s;
		border-radius: 5px;
	}
.imgs >img:hover{
	transform: scale(1.1);
}
.footer{
	padding: 30px 0;
	background: #1c1c1d;
}
.footer >div{
	width: 60%;
	margin: auto;
	color: #666;
}
.footer >div >p{
	line-height: 3;
	font-size: 14px;
}