
.archive {
	padding: 40px 0;
}
.archive > section{
	padding: 35px 0;
}
.archive > h1 {
	font-weight: 500;
	font-size: 2.4em;
	color: #232323;
	text-transform: uppercase;
}

.archive__history {
	border-right: 1px solid #e2e2e2;
}
.archive__history > ul:first-child{
	margin-top: -20px;
}
.archive__history > ul {
	padding-left: 30px;
	width: 130px;
	-webkit-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
	max-height: 40px;
	overflow: hidden;
}
.archive__history > ul.active{
	max-height: 600px;
}
.archive__history > ul > li {
	margin: 20px 0;
}
.archive__history > ul > li:last-child{
	margin-bottom: 10px;
}
.archive__history > ul > li > h2 {
	color: #3093d8;
	font-size: 2em;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.archive__history > ul > li > h2 .icon-plus{
	display: inline;
}
.archive__history > ul > li > h2 .icon-minus{
	display: none;
}
.archive__history > ul.active > li > h2, .archive__history > ul > li > h2:hover{
	color: #232323;
}
.archive__history > ul.active > li > h2 .icon-plus{
	display: none;
}
.archive__history > ul.active > li > h2 .icon-minus{
	display: inline;
}
.archive__history > ul > li > a{
	margin-left: 15px;
	font-size: 1.8em;
	text-decoration: none;
	color: #383838;
	position: relative;
}
.archive__history > ul > li > a::after{
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	left: 0;
	bottom: -1px;
	background-color: #383838;
	display: block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.archive__history > ul > li > a:hover::after{
	width: 100%;
}
.archive__history > ul > li > a.active {
	font-weight: 600;
}

.archive__content {
	width: 880px;
}

.archive__content > ul {
}

.archive__item {
	margin-bottom: 20px;
}

.archive__item > article {
}

.archive__item > article > h3 {
	font-size: 1.8em;
	font-weight: 400;
	color: #232323;
	margin-bottom: 5px;
}

.archive__item > article > h6 {
	font-size: 1.5em;
	font-weight: 400;
	color: #b4b3b3;
	margin-bottom: 20px;
}
.archive__item > article > a{
	font-weight: 300;
	font-size: 1.4em;
	color: #005793;
	text-decoration: none;
	position: relative;
}
.archive__item > article > a::after{
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	left: 0;
	bottom: -1px;
	background-color: #005793;
	display: block;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.archive__item > article > a:hover::after{
	width: 100%;
}
.archive__img {
	margin-right: 20px;
	border: 2px solid #303030;
	overflow: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.archive__img:hover{
	border-color: #005793;
}
.archive__img > img {
	max-width: 100%;	
	display: block;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.archive__img:hover > img{
	-webkit-transform: scale(1.2);
	   -moz-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	     -o-transform: scale(1.2);
	        transform: scale(1.2);
}