/**, *:before, *:after {
box-sizing:border-box;
border: 0.05px solid orange;
} * */




html, body {
	margin:0;
	/*background-color: #11374f;*/
	color: #2e4b66;
	font-family: 'Chivo', sans-serif;
    font-style: normal;
	box-sizing:border-box;
}

header {
	color:#e79686;
	background-color: #3E3F4E;	
}

header h1,
header p {
	margin:0;
}

/*header logo*/
header img {
	height: 4em;
	align-items: center;
	justify-content: center;
	display: flex;
	margin: 0 auto;
}



.category {
	width: 100%;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0;
	padding: 1.5em;
	padding-bottom: 2em;
	margin-top: 2em;
	background-color: #fff;
	margin: 0 auto;
	z-index: 99;
}

.ca-btn {
	border: 1px solid #002aff;
	border-radius: 100px;
	margin:  0 auto;
	margin-bottom: .5em;
	max-width: 200px;
	padding: .5em 1em;
	background-color: #fff;
	display: inline-block;
}

.ca-btn:hover {
	border: 1px solid #ff5656;
}

.company {
	width: 100%;
	text-align: center;
	font-size: 2em;
	color: #333;
/*	background-color: #333;*/
	position: relative;
	padding: 1em;
	padding-top: 6em;
}

.logo {
	height: 3.5em;
	position: relative;
}

.container {
	max-width:1100px;
	margin-right: auto;
	margin-left: auto;
}

.container_work {
	width:100%;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
}

.flex-parent {
	display:flex;
	flex-wrap:wrap;
}

.flex-child {
	flex:1 1 auto;
}

.flex-none {
	flex:none;
}

a {
    color: #2e4b66;
    text-decoration: none;
   /* font-weight: 600;*/
}

a:hover {
    color: #E5D8C6;
    text-decoration: none;
}





.info2 {
	padding-top: .5em;
	font-weight: 400;
	font-family: 'Chivo', sans-serif;
}

.view-window {
	height:100vh;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	position:relative;
	webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.view-window>img {
	max-height:calc(100% - 20px);
	max-width:calc(100% - 20px);
} 

/*Pure CSS Responsive Menu 
https://codepen.io/mike-schultz/pen/RRWKow*/
.nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	color: #E5D8C6;
	height: 15vh;
	padding: 0;
}

.nav:hover{

	color: #fff;
	text-decoration: none;
}


.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 1em;
}

.menu > li {
	margin: 0 1.5rem;
}

.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#menu-toggle {
	display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: #FFFFFF;
	position: absolute;
	height: 4px;
	width: 2em;
	transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
	border-radius: 2px;
}

.menu-button::before {
	content: '';
	margin-top: -10px;
}

.menu-button::after {
	content: '';
	margin-top: 10px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
	background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-45deg);
}

@media (max-width: 700px) {
	.menu-button-container {
    	display: flex;
	}

	.nav {
		align-items: unset;
		color: #3E3F4E;
	}

	.logo {
		top:25%;
	}

	.menu {
	    position: absolute;
	    top: 0;
	    margin-top: 8.5em;
	    left: 0;
	    flex-direction: column;
	    width: 100%;
	    justify-content: center;
	    align-items: center;
	    overflow: hidden;
	    z-index: 1;
	}

	#menu-toggle ~ .menu li {
	    height: 0;
	    margin: 0;
	    padding: 0;
	    border: 0;
	    transition: height 0s cubic-bezier(0.2, 1, 0.3, 1);
	}

	#menu-toggle:checked ~ .menu li {
	    height: 2.5em;
	    padding: 0.5em;
	    border-bottom: 1px solid #444;
	    transition: height 0s cubic-bezier(0.2, 1, 0.3, 1);
	    background-color: #fff;

	}

	.menu > li {
	    display: flex;
	    justify-content: center;
	    margin: 0;
	    padding: 0;
	    width: 100%;
	    color: black;
	    background-color: none;
	}

	.menu > li:not(:last-child) {
		border-bottom: 1px solid #444;
	}


}
/*Pure CSS Responsive Menu*/


/*works*/
.card {
	/*height: 600px;*/
	border: none;
	background-color: inherit;
	position: relative;
	overflow: hidden;
}

.media-figure {
    margin: 0;
    border: 1px solid #fff;
}

.media-figure figcaption {
	padding:0;
	line-height: 1.2em;
}

.media-image {
	max-width:100%;
	vertical-align: middle;
	display: block;
}

.info {
	position: absolute;
	bottom: 0;
	padding-left: 1.5em;
	padding-bottom: .5em;
	opacity: 0;
	transition: all 100ms 0ms ease-in-out;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	font-weight: 600;
}

.title {
	font-family: 'Chivo', sans-serif;
	font-size: 1.5em;
	margin-bottom: .5em;
	color: #11374f;
}

.type {
	font-family: 'Chivo', sans-serif;
	font-size: 1em;
	color: #11374f;
	font-style: none;
	font-style: italic;
}

.overlay {
	background: linear-gradient(0deg, #fff, rgba(255,255,255,0));
	transition: all 100ms 0ms ease-in-out;
	transform: translateY(100px);
	-webkit-transform: translateY(100px);
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.card:hover .overlay {
	transform: translate(0);
	-webkit-transform: translate(0);
	transition: all 300ms 0ms ease-in-out;
	opacity: 1;
}

.card:hover .info {
 	transform: translate(0);
	-webkit-transform: translate(0);
	transition: all 600ms 0ms ease-in-out;
	opacity: 1;
}
/*works*/

#top {
	display: none;
	position: fixed;
	bottom: 2em;
	right: 1em;
	z-index: 99;
	font-size: 1.5em;
	border: none;
	outline: none;
	background-color: rgba(255, 255, 255, 0.5);
	color: #11374f;
	cursor: pointer;
	padding: .5em;
	border-radius: 5px;
}

#top:hover {
	background-color: rgba(238, 238, 238, 0.5);
}

footer {
	text-align: center;
	font-size: 1em;
	width: 100%;
/*	height: 50px;*/
	margin-top: 100px;
/*	margin-bottom: 3em;*/
	padding: 3em;
	top:100px;
	border-top: 1px solid #f2f2f2;
	position: relative;
	background-color: #3E3F4E;
	color:white;
}

footer img {
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: 1.2em;
	width: 1.5em;
}


.project-view-window>img {
	max-height:calc(100% - 50px);
	max-width:calc(100% - 50px);
} 

.project-view-window1>img {
	max-height:calc(100% - 50px);
	max-width:calc(100% - 50px);
} 

.project-view-window {
	height:55vh;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	position:relative;
		webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;

}

.project-view-window1 {
	height:50vh;
	background-size:cover;
	background-position:center;
	/*background-attachment:fixed;*/
	position:relative;
		webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;

}

.project-title {
	font-size: 3.5em;
	text-align: center;
	position: relative;
	top:40%;
	font-weight: 900;
	color: #636363;
/*	background-color: rgba(255,255,255,0.1);
	padding: 0.5em, 1em;*/
	font-family: 'Chivo', sans-serif;
}

.project-type {
	font-size: 1.3em;
	/*color: #fff;*/
	text-align: center;
	font-weight: 600;
	position: relative;
	top:40%;
}

.project-container {
	max-width:1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1em;
	padding-left: 1em;
}

.category {
	max-width:1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1em;
	padding-left: 1em;
}

.project-subtitle {
	font-size: 0.8em;
/*	text-align: center;*/
	margin-top: 6em;
	font-weight: 600;
    letter-spacing: 0.25em;
}

.project-subtitle-2 {
	font-size: 1em;
	font-weight: 600;
	margin-top: 2em;
}

.project-subtitle-3 {
	font-size: 1em;
	font-weight: 600;
	margin-top: 2em;
}





.description {
	line-height: 2em;
/*	text-align: center;
	justify-content: center;*/
	color: #636363;
	padding-right: 3em;
	font-size: 1.3em;
}

.project-img-screen {
	width: 100%;
}

.bar {
	margin-top: 1rem;
    margin-bottom: 1rem;
    width: 20px;
    height: 0.2rem;
    background-color: #636363;
}

.color-area {
	width: 100%;
	/*padding-top: 3em;*/
	padding-bottom: 2em;
	margin-top: 3em;
	margin-bottom: 3em;
}

.scale {
	position: relative;
	top:0px;
	background-color: #fff;
}

.icon-description {
	line-height: 1em;
	text-align: center;
	justify-content: center;
	color: #636363;
	font-size: .8em;
}

.project-hmw {
	font-size: 3em;
	text-align: center;
	font-weight: 900;
	color: #636363;
	margin-bottom: 2em;
	margin-top: 2em;
}

.persona {
	width: 100%;
	padding: 2em;
}

.poc-person {
	width: 100%;
}

#personas {
	margin-bottom: 6em;
}

#wireframe, #testing {
	margin-bottom: 3em;
}

.story {
	font-size: .9em;
	padding-right: 1.5em;
	color: #636363;
}

video {
  width: 100%;
  height: auto;
  /*pointer-events: none;*/
}

.arrow1{


}

.arrow2{

	position: right;
	margin-right: 12em;
	margin-bottom: -8em;

}

.arrow-text{
	font-size: 1.2em;
	font-weight: 500;
	margin-top: 1em;
	color: #593A40;
}



.index_gap {
		margin-bottom: 100px;
	}


.link-btn {
	position: relative;
	top: 2em;
	text-align: center;
	padding: .5em 1em;
	background-color: #fff;
	border-radius: 100px;
	border: 2px solid #593A40;
	margin:  0 auto;
	max-width: 200px;
	color: #593A40;
}

.link-btn:hover {
	background-color: #593A40;
	color: #fff;
}

.btn {
	position: relative;
	top: 2em;
	left: 50%;
	transform: translate(-50%,0);
}

.me {

/*	text-align: center;*/
	max-width: 700px;
	margin: 0 auto;
	padding-right: 0;
}

.me2 {

/*	text-align: center;*/
	max-width: 700px;
	margin: 0 auto;
	font-weight: 600;
	font-size: 2.5em;
	padding-bottom: 1em;
}

.paddingL2px {
	padding-left: 2em;
}

.top100 {
	position: relative;
	top:100px;
}

.photo {
	width: 100%; 
	/*/border-radius: .5em;*/
	overflow: hidden;
	padding-right: 3em;
	display:block;

}

.contact2 {
	display: block;
	width: 100%; 
	margin-top: 2em;
}

.link {
	color: #E5D8C6;
}

.link:hover  {
    color: #593A40;
}



/*Responsive Image Comparison Slider
https://codepen.io/bamf/pen/jEpxOX*/


.ba-slider {
    position: relative;
    overflow: hidden;
}
 
.ba-slider img {
    width: 100%;
    display:block;
}
 
.resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}


.handle { /* Thin line seperator */
  position:absolute; 
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  margin-left:-2px;
 
  background: rgba(0,0,0,.5);
  cursor: ew-resize;
}
 
.handle:after {  /* Big orange knob  */
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
 
    content:'\21CC';
    color:white;
    font-weight:bold;
    font-size:36px;
    text-align:center;
    line-height:64px;
 
    background: #11374f;
    border-radius: 50%;
    transition:all 0.3s ease;
    box-shadow:
      0 2px 6px rgba(0,0,0,.3), 
      inset 0 2px 0 rgba(255,255,255,.5),
      inset 0 60px 50px -30px #11374f; 
}

.draggable:after {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    line-height:48px;
    font-size:30px;
}
/*Responsive Image Comparison Slider
https://codepen.io/bamf/pen/jEpxOX*/


/*-------------------------------------------*/
.ui-widget.ui-widget-content {
    border: 2px solid #f2f2f2;
    box-shadow: 0 4px 8px 0 rgba(99,99,99, 0.1), 0 6px 20px 0 rgba(99,99,99, 0.1);
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #636363;
    padding: 1em;
	line-height: 2em;	
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #2e4b66;
    background: #2e4b66;
    font-weight: normal;
    color: #ffffff;
}

.ui-widget-header {
    border: 1px solid #fff;
    background: #fff;
    color: #636363;
    font-weight: bold;
    border-bottom: 3px solid #f2f2f2;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
    font-size: .8em;
}


/*-------------------------------------------*/
@media (max-width:767px) {

	.container {
		padding-left: 1em;
		padding-right: 1em;
	}

	.project-container {
		max-width:700px;
		/*margin-right: 1em;
		margin-left: 1em;*/
		}

	.category {
		max-width:700px;
		/*margin-right: 1em;
		margin-left: 1em;*/
	}		

}

@media (min-width: 576px) {

	.hide-detail {
		display: none;
	}



	.none {
		display: none;
	}

	.hello {
		font-size: 3em;
		color: #11374f;
		padding-top: 2.5em;
		text-align: center;
	}

	.intro-s {
		font-size: 2em;
		text-align: center;
		padding-right: 3em;
		padding-left: 3em;
		margin-bottom: 8em;
		color: #11374f;
	}

	.mg50 {
		margin-top: 1em;
	}

	.view-window-50 {
		height:50vh;
		background-color: #fff;
		width: 100%;
		position:relative;
	}

	.info2 {
		display: none;
	}

	.poc-person-mobile {
		display: none;
	}

	.mobile-show {
		display: none;
		padding-top: 1em;
	}
	.project-view-window1 {
		
		background-attachment:fixed;
	}

}

.previous_project{
	display: inline-block; 
	float: left;
	text-align: left;
}

.next_project{
	display: inline-block; 
	float: right;
	text-align: right;
}

.mobile-show {
	padding-top: 1em;
	}



/*mobile*/
@media (max-width: 575px) {

	.filters {
		font-size: 1.2em;
	}
	.previous_project{
		display: block; 
		font-size: 1.2em;
		width: 100%;
		text-align: center;
		margin-top: 50px;
	}

	.next_project{
		display: block; 
		font-size: 1.2em;
		width: 100%;
		text-align: center;
	}

	.company {
		padding-top: 3em;
	}
	.mg100 {
		margin-top: 2em;
	}
	.hello {
		font-size: 2.5em;
		color: #11374f;
		padding-top: 3.5em;
		text-align: center;
	}
	.intro {
		font-size: 2em;
		text-align: center;
		padding-right: 0;
		padding-left: 0;
		color: #11374f;
	}

	/*figcaption {
		display: none;
	}*/
	.container {
		padding-left: .5em;
		padding-right: .5em;
	}

	.project-container {
		padding-left: 1em;
		padding-right: 1em;
	}

	.category {
		padding-left: .5em;
		padding-right: .5em;
	}

	header {
		padding-top:  1em;
		padding-bottom:  1em;
	}

	.icon-description {
		line-height: 1em;
		font-size: 1em;
	}

	.project-hmw {
		font-size: 2.5em;
		margin-bottom: 1.5em;
	}

	.description {
		padding-right: 0em;
	}

	.persona {
		padding: 0;
	}

	.poc-person {
		display: none;
	}
	
	.poc-person-mobile {
		display: initial;
		width: 45%;
		margin-top: 1em;
		margin-bottom: 1em;
	}

	.img-mobile-none {
		display: none;
	}

	.photo {
		width: 50%;
		margin: 0 auto;
		padding-bottom: 3em;
	}

	.me {
		text-align: center;
	}

	.me2 {
		text-align: center;
		max-width: 700px;
		margin: 0 auto;
		font-weight: 500;
		font-size: 1.5em;
		padding-bottom: 2em;
	}

	.me3 {
		font-size: 1.25em;

	}

	.ui-tabs .ui-tabs-panel {
	    display: block;
	    border-width: 0;
	    padding: 1em 0em;
	    background: none;
	}

	.ba-slider {
		display: none;
	}

	.project-subtitle-2 {
		font-size: 1em;
		font-weight: 600;
		margin-top: 1em;
	}

	.color-area {
	    background-color: #FFF;
	    width: 100%;
	    /* padding-top: 3em; */
	    padding-bottom: 0em;
	    margin-top: 2em;
	    margin-bottom: 0em;
	}	

	.project-view-window1>h1 {
		font-size:2em; 
	}

	.project-view-window1>p {
		padding-right: 1.2em;
		padding-left: 1.2em; 
	}

	.project-view-window1 {
		height:40vh;
	}

	.menu {
	margin-top: .5em;
    position: relative;
	}
	
	.nav:hover {
		color: #2e4b66;
	}

	.index_gap {
		margin-bottom: 50px;
	}

}	
/*mobile*/

html {
  overflow-y: scroll;
}

#info {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;				
	background:#fcf8e3;
	border:1px solid  #fbeed5;
	width:95%;
	max-width:900px;
	margin:0 auto 40px auto;
	font-family: 'Chivo', sans-serif;
	font-size:12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

	#info .info-wrapper {
		padding:10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;

	}
	
	#info a {
		color:#c09853;
		text-decoration:none;
	}
	
	#info p {
		margin:5px 0 0 0;
	}


.container { 
	position: relative; 
	width: 1300px; 
	margin: 0 auto; 
	-webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;	
}

.filters label {
	border-radius: 3px;

}

.filters {
	font-size: 1em;

}
 
#filters {
	margin:1%;
	padding:0;
	list-style:none;
	
}

	#filters li {
		float:left;
	}
	
	#filters li span {
		display: block;
		padding:5px 20px;		
		text-decoration:none;
		color:#666;
		cursor: pointer;
	}
	
	#filters li span.active {
		background: #e95a44;
		color:#fff;
	}
 

 
#portfoliolist .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	width:23%;
	margin:1%;
	display:none;
	float:left;
	overflow:hidden;
}

	.portfolio-wrapper {
		overflow:hidden;
		position: relative !important;
		background: #666;
		cursor:pointer;
	}

	.portfolio img {
		max-width:100%;
		position: relative;
		top:0;
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);		
	}
	
	.portfolio .label {
		position: absolute;
		width: 100%;
		height:40px;
		bottom:-40px;
    -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
	}

		.portfolio .label-bg {
			background: #e95a44;
			width: 100%;
			height:100%;
			position: absolute;
			top:0;
			left:0;
		}
	
		.portfolio .label-text {
			color:#fff;
			position: relative;
			z-index:500;
			padding:5px 8px;
		}
			
			.portfolio .text-category {
				display:block;
				font-size:9px;
			}
	
	.portfolio:hover .label {
    bottom:0;
  }
	.portfolio:hover img {
    top:-30px;
  }  

	



/* #Tablet (Portrait) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.container {
		width: 768px; 
	}


}


/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
	.container { 
		width: 95%; 
	}
	
	#portfoliolist .portfolio {
		width:48%;
		margin:1%;
	}		

	#ads {
		display:none;
	}


	
}


/* #Mobile (Landscape) - Note: Design for a width of 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.container {
		width: 80%;
	}
	
	#ads {
		display:none;
	}
	
}

/* #Clearing */

/* Self Clearing Goodness */
.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }
.row:after,
.clearfix:after {
  clear: both; }
.row,
.clearfix {
  zoom: 1; }

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}


