div.resume {
	background: #fff;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px 20px;
}

.resume .column {
	display: table-cell;
	 width: 50%;
/*	padding: 20px;*/
}

.resume section {
	margin-bottom: 30px;
	padding: 0 20px;
}

.resume section h1 {
	text-transform: uppercase;
	font-family: 'LatoBlack',arial,sans-serif;
	font-size: 18px;
	position: relative;
	/*left: -20px;*/
	letter-spacing: .1em;
	margin: 0 0 5px;
}

.resume section h2,
.resume section dt {
	font-weight: normal;
	font-family: 'LatoBold',arial,sans-serif;
	font-size: 16px;
	margin: 0;
	line-height: 1.5;
}

.resume section p {
	/*margin: 0;*/

}

.resume section p:last-child {
	/*margin-top: 10px;*/
}

.resume section .job {
	margin-bottom: 20px;
}

.resume section ul {
	margin: 10px 0;
	padding: 0 0 0 15px;
	list-style-type: none;
}

.resume section li {
	margin-bottom: 5px;
	padding-left: 1em;
	text-indent: -1em;
}

.resume .group {
	display: table;
	width: 100%;
}

.resume .year,
.resume .items {
	display: table-cell;
	vertical-align: top;
}

.resume .year {
	line-height: 1;
	text-align: right;
	padding-right: 10px;
	box-sizing: border-box;
	white-space: nowrap;
}

.resume .items {
	margin-top: 3px;
	width: 84%;
	padding: 0;
}

.resume .items li {
	line-height: 1.3em;
}

.job li a:after {
	font-family: 'icomoon',arial;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
	content: "w";
	font-size: 13px;
	display: inline-block;
	margin: 0 0 0 3px;
	vertical-align: top;
	text-indent: 0;
}

/* mq */
@media (min-width: 1000px) {
	div.resume {
	    -webkit-columns: auto 2;
		-moz-columns: auto 2; 
		columns: auto 2;
	}
}
@media (max-width: 1000px) {
	
	.resume section {
		padding: 0;
	}
	
	.resume .year {
		text-align: left;
	}
	
	.resume .year, .resume .items {
		display: block;
	}
}