@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/roboto-300.ttf) format('truetype');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local('Roboto'), local('Roboto-Regular'), url(../fonts/roboto-400.ttf) format('truetype');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	src: local('Roboto Black'), local('Roboto-Black'), url(../fonts/roboto-900.ttf) format('truetype');
}

body,html {
	margin:0;
	padding: 0;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	background: #FAFAFA
}

section {
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	padding: 0 10px;
}

.content-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex:1; /* so that sibling "arrow-down" is always at bottom */ 
	flex-direction:column;  
	width: 100%;
	max-width: 1024px;
}

.project-box {
	border: 1px solid #000;
	width: 100%;
	max-width: 550px;
	border-radius: 3px;
}

.project-box a {
	text-decoration: none;
}

.project-box__header {
	padding: 10px 20px 10px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 2px;
	background: #000;
	color: #fff;
}

.project-box__header h4 {
	margin: 0;
	padding: 0;
}

.circle-nav {
	display: flex;
	align-items: center;
}

.circle-nav > div {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 5px 0;
	margin-right: 15px;
	cursor: pointer;
	background: #fff;
	transition: all 0.3s ease;
	transform-origin: center;
}

.circle-nav__two:hover,
.section-two .circle-nav__two {
	background: #c7de0f;
}

.circle-nav__three:hover,
.section-three .circle-nav__three {
	background: #ff6600;
}

.circle-nav__four:hover,
.section-four .circle-nav__four {
	background: #e6b005;
}

.circle-nav__five:hover,
.section-five .circle-nav__five {
	background: #ff1717;
}

.circle-nav__six:hover,
.section-six .circle-nav__six {
	background: #e806e5;
}

.section-two .circle-nav__two,
.section-three .circle-nav__three,
.section-four .circle-nav__four,
.section-five .circle-nav__five,
.section-six .circle-nav__six {
	width: 30px;
	height: 30px;
	display: block;
}

.project-box__row {
	padding: 17px 20px 17px 40px;
	display: flex;
	align-items: center;  
	transition: background 0.3s ease;
}

.project-box__row:hover {
	background: #f0f0f0;
	cursor: pointer;
}

.project-box__row img {
	max-width: 55px;
}

.project-box__row-text {
	margin-left: 40px;
	padding:  10px;
	color: #000;	
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-box__row-text h3 {
	font-size: 18px;
	line-height: 20px;
	margin: 2px 0;
}

.project-box__row-text p {
	margin: 2px 0;
	font-size: 16px;
	line-height: 19px;
}

.arrow-right {
	width: 20px;
	margin-left: auto;
	transform: rotate(-90deg);
}

.down-arrow {
	width: 30px;
	padding: 15px;
	cursor: pointer;
}

@media (max-width: 1024px)
{
	.project-box__header {
		padding: 10px 10px 10px 20px;
	}

	.project-box__row {
		padding: 10px;
	}

	.project-box__row img {
		max-width: 40px;
	}

	.project-box__row-text {
		margin-left: 0px;
	}

	.project-box__row-text h3 {
		font-size: 17px;
		line-height: 17px;
	}

	.project-box__row-text p {
		font-size: 15px;
		line-height: 15px;
	}

	.circle-nav > div {
		display: none; /* hide inactive circles on mobile */
	}
}
