/**************************************/
/************* BODY *******************/
/**************************************/
body { 
	/*cursor: url('../img/cursor.cur'), auto;*/
}
a {
	cursor: pointer;
}
/**************************************/
/************* TYPOGRAPHY *************/
/**************************************/
blockquote {
	border: none;
	font-style: italic;
	font-size: 2em;
	text-align: right;
	border: 7px solid #69D2E7;
	padding: 30px;
}
blockquote:before {
	color: #ccc;
	content: open-quote;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
}
/**************************************/
/************* INTRO ******************/
/**************************************/
.intro {
	height: 100vh;
	width: 100vw;
	position: relative;
	text-align: center;
	background-color: #35342f; 
	color: #f1f2f0;
}
.center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
.intro h1 {
	font-size: 50px;
}
/**************************************/
/************* MARGINS ****************/
/**************************************/
footer {
	margin-top: 60px;
	padding: 100px 0;
}
/**************************************/
/************* SECTIONS ***************/
/**************************************/
section {
	margin: 60px 0px;
	padding: 40px 0px;
}
.section-heading {
	border-bottom: 1px solid #f2f2f2;
	text-align: right;
}
/**************************************/
/************* COLORS *****************/
/**************************************/
.red {
	background-color: #a60024;
	color: #ffffff;	
}
.black {
	background-color: #141414;
	color: #ffffff;
}
.grey {
	background-color: #35342f; 
	color: #f1f2f0;
}
.white {
	background-color: #ffffff;
	color: inherit; 
}
.blue {
	background-color: #69D2E7;
}
.text-blue {
	color: #69D2E7;
}
.text-accent {
	color: #69D2E7;
}
.text-red {
	color: #a60024;
}
.text-white { 
	color: #ffffff;
}
/**************************************/
/************* CLIENTS ****************/
/**************************************/
.img-small {
	max-width: 100px;
	max-height: 100px;
	padding: 10px 20px;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);   
}
.img-small:hover {
    cursor: pointer;
    filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	transition: all 0.2s;
}
.img-md {
	max-width: 100px;
	max-height: 100px;
	padding: 20px;
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%); 
	transition: all 1s ease-in-out;
}
.img-md:hover {
    cursor: pointer;
    filter: grayscale(0%);
	-webkit-filter: grayscale(100%);
	transition: all 0.2s;
}
.portfolio {
	margin-bottom: 20px;
}
/**************************************/
/************* NEWS *******************/
/**************************************/
.news-item {
	padding: 20px;
	background-color: #ffffff;
	color: #141414;
}
.news-item p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
.modal-content {
	padding: 30px;
}
/**************************************/
/************* NAVIGATION *************/
/**************************************/
.primary-nav {
	position: fixed;
	top: 30px; right: 30px;
	z-index: 9999;
}
.primary-nav .nav-icon { 
	width: 30px;
	height: 30px;
	float: right!important;
	cursor: pointer;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.primary-nav .nav-icon div {
	display: block;
	margin-bottom: 5px;
	height: 5px;
	width: 30px;
	background: #000003;
	opacity: 1;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transition: .25s ease-in-out;
	-webkit-transition: .25s ease-in-out;
	transform-origin: left center;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;	
}
.primary-nav .nav-icon.open div:nth-child(1) {
	-webkit-transform: rotate(43deg);
	-ms-transform: rotate(43deg);
	transform: rotate(43deg);
}
.primary-nav .nav-icon.open div:nth-child(2) {
	width: 0%;
	opacity: 0;
}
.primary-nav .nav-icon.open div:nth-child(3) {
	-webkit-transform: rotate(-43deg);
	-ms-transform: rotate(-43deg);
	transform: rotate(-43deg);
}
.primary-nav .links {
	width: 150px;
	margin-top: 50px;
	text-align: right;
	padding: 20px;
	font-size: 1.5em;
	font-weight: 800;
	word-spacing: 5px;
	cursor: pointer;
	display: none;
	transition: .25s ease-in-out;
	-webkit-transition: .25s ease-in-out;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.primary-nav .logo {
	max-width: 60px;
	max-height: 60px;
}
/**************************************/
/************* PROJECTS ***************/
/**************************************/
.project {
	padding: 70px 0px 70px 0px;
	margin: 70px 0px 70px 0px;
	font-size: 20px;
}
.project:nth-of-type(even) {
	position: relative;
	background: #69D2E7;
	z-index: 1;
}
.project:nth-of-type(even):before,
.project:nth-of-type(even):after {
	background: inherit;
	content: '';
	display: block;
	height: 50%;
	right: 0; left: 0;
	position: absolute;
	z-index: -1;
	-webkit-backface-visibility: hidden; // for Chrome Windows
}
.project:nth-of-type(even):before {
	top: 0;
	transform: skewY(1.5deg);
	transform-origin: 100% 0;
}
.project:nth-of-type(even):after {
	bottom: 0;
	transform: skewY(-1.5deg);
	transform-origin: 100%;
}
.project:nth-of-type(even) h3 {
	color: #ffffff;
}
.project:nth-of-type(even) hr {
	border-top: 1px solid #e1e0dd;
}