.navbar .logo-home{
	display: none;
}
.projects .header{
	display: flex;
	height: 60px;
	flex-direction: row;
	padding-top: 20px!important;
	padding-bottom: 20px!important;
}
.projects .header .link{
	/* font-family: 'Gotham-Bold'; */
}
.projects .header div:last-child{
	flex: 1;
	text-align: right;
}
.projects .header div:last-child .link{
	margin-right: 0;
	margin-left: 4px;
}
.projects .map{
	height: calc(100vh - 110px);
	height: calc((var(--vh, 1vh) * 100) - 110px);
	margin: 0;
}
.projects .map .card{ 
	transition: all 0.4s ease-out;
	position: absolute;
	width: 320px;
	right: -320px;
	opacity: 0;
	top: 0;
	background-color: var(--white);
	padding: 20px;
	padding-top: 0;
	box-shadow: none;
	text-align: center;
	z-index: 20;
}
.projects .map .card .image{
	margin: 0 -20px;
	margin-bottom: 20px;
}
.projects .map .card .close{
	position: absolute;
	width: 20px;
	height: 20px;
	left: 10px;
	top: 10px;
	background: url(../images/ico-close-white.svg) center no-repeat;
	background-size: 14px;
}
.projects .map .card h2 {
    margin-bottom: 4px;
}
.projects .map .link{
	margin: 0;
	margin-top: 20px;
	color: var(--lblue);
}

.project .header{
	margin-top: 20px;
}
.project .header .columns{
	display: flex;
	flex-direction: column-reverse;
}
.projects .header div:nth-child(1) {
	display: none;
}
.project .header h1{
	margin-top: 16px;
	margin-bottom: 2px;
}
.project .line{
	margin: 30px 0;
}
.project .text{
	margin-bottom: 24px;
}
.project .link.down{
	margin-bottom: 8px;
}
.project .link.down:last-child{
	margin-bottom: 0;
}
.project .dest{
	margin-bottom: 8px;
}
.project .dest:last-child{
	margin-bottom: 0;
}
.project .dest b{
	display: block;
}
.project .thumbnails{
	margin: 40px 0;
}
.project .thumbnails{
	margin: 40px 0;
}
.project .thumbnails .columns{
	margin: 0;
	display: flex;
}
.project .thumbnails .column{
	padding: 0;
	overflow: hidden;
}
.project .thumbnails .column:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	border: 1px solid var(--white);
	transition: all 250ms linear;
}
.project .thumbnails .column:hover:after{
	background-color: rgba(0,174,239,0.6);
}
.project .thumbnails img{
	transition: all 250ms ease-out;
}
.project .thumbnails .column:hover img{
	transform: scale(1.1);
}
.foot{
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.foot a{
	display: inline-flex;
	flex-direction: column;
	transition: all 250ms ease-out;
}
.foot a:last-child{
	text-align: right;
}
.foot a .image{
	width: 120px;
	margin-bottom: 12px;
	overflow: hidden;
}
.foot a .image img{
	transition: all 250ms ease-out;
}
.foot a:hover .image img{
	transform: scale(1.1);
}
.foot a .image:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 1px;
	top: 0;
	background: url(../images/project-prev.svg) right center no-repeat;
	background-size: contain;
	z-index: 10;
	transition: all 250ms ease-out;
}
.foot a:last-child .image:before{
	left: -1px;
	background: url(../images/project-next.svg) left center no-repeat;
	background-size: contain;
}
.foot a .image:after{
	content: "";
	position: absolute;
	width: 20px;
	height: 100%;
	right: -20px;
	top: 0;
	background: var(--white);
	z-index: 10;
	transition: all 250ms ease-out;
}
.foot a:last-child .image:after{
	right: auto;
	left: -20px;
}
.foot a .txt{
	position: relative;
	left: 0;
	transition: all 250ms ease-out;
	z-index: 10;
}
.foot a:last-child .txt{
	position: relative;
	left: auto;
	right: 0;
	transition: all 250ms ease-out;
}
.foot a:first-child:hover .image:before{
	left: -10px;
}
.foot a:last-child:hover .image:before{
	left: 10px;
}
.foot a:first-child:hover .image:after{
	right: -10px;
}
.foot a:last-child:hover .image:after{
	left: -10px;
}
.foot a:first-child:hover .txt{
	left: -20px;
}
.foot a:last-child:hover .txt{
	right: -20px;
}
.foot h3{
	text-transform: uppercase;
}




/* TABLETS */
@media screen and (min-width: 767px){	

	.projects .header {
		height: 80px;
		flex-direction: row;
		align-items: center;
		padding-top: 0!important;
		padding-bottom: 0!important;
	}
	.projects .header div:nth-child(1) {
		display: block;
	}
	.projects .header h2 {
		font-size: 18px;
	}
	.projects .header div:nth-child(2) {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.projects .map {
		height: calc(100vh - 144px);
		height: calc((var(--vh, 1vh) * 100) - 144px);
		padding-top: 0;
	}
	.projects .map .card {
		width: 350px;
		padding: 30px;
		padding-top: 0;
	}
	.projects .map .card .image {
		margin: 0px -30px;
		margin-bottom: 30px;
	}
	.project .carousel-top{
		margin-bottom: 50px;
	}
	.project .header .columns {
		flex-direction: inherit;
	}
	.project .header h1 {
		margin-top: 0;
		margin-bottom: 8px;
		font-size: 30px;
	}
	.project .data{
		padding-left: 30px;
	}
	.project .text {
		margin-bottom: 30px;
	}
	.project .thumbnails {
		margin: 60px 0;
	}
	.project .map {
		height: 400px;
		margin: 0;
		padding-top: 0;
	}
	.foot {
		margin: 40px 0;
	}
	.foot a {
		flex-direction: row;
		align-items: center;
	}
	.foot a .image {
		height: 90px;
		margin-right: 10px;
		margin-bottom: 0;
		padding-top: 0;
	}
	.foot a:last-child {
		flex-direction: row-reverse;
	}
	.foot a:last-child .image {
		margin-left: 10px;
		margin-right: 0;
	}
	.foot h3{
		font-size: 16px;
	}	

}



/* DESKTOP */
@media screen and (min-width: 1024px){

	.projects .header {
		height: 100px;
	}
	.projects .header h2 {
		font-size: 24px;
	}
	.projects .map {
		height: calc(100vh - 170px);
		height: calc((var(--vh, 1vh) * 100) - 170px);
		padding-top: 0;
	}
	.projects .map .card h2 {
		font-size: 20px;
		margin-bottom: 6px;
	}
	.project .carousel-top .image{
		padding-top: 40%;
	}
	.carousel .slick-dots {
		bottom: 40px;
	}
	.project .carousel-top {
		margin-bottom: 80px;
	}
	.project .data {
		padding-left: 40px;
	}
	.project .line {
		width: 40px;
		margin: 40px 0;
	}
	.project .data .line {
		width: 20px;
	}
	.project .text {
		margin-bottom: 40px;
	}
	.project .thumbnails {
		margin: 80px auto;
	}
	.project .thumbnails .image{
		padding-top: 75%;
	}
	.project .map {
		height: 600px;
	}
	.foot {
		margin: 60px auto;
	}
	.foot a .image {
		width: 150px;
		height: 112px;
		margin-right: 20px;
		margin-bottom: 0;
		padding-top: 0;
	}
	.foot a:last-child .image {
		margin-left: 20px;
		margin-right: 0;
	}
	.foot h3 {
		font-size: 20px;
	}

}