/*
gold: #c8b887;
darknight: rgb(38, 37, 42);
*/

html { 
height: 100%;
}

body{
	padding: 0;
	margin: 0;
	height: 100%;
	background-color: #f3f3f3;
	background-image: url('/img/bg.jpg');
	font-family: 'Merriweather', 'Times New Roman';
	color: rgb(38, 37, 42);
	width: 100%;
	right: 0;
	position: absolute;
	transition: right 0.1s ease-in;
	-webkit-transition: right 0.1s ease-in;
}

body:after{
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
}

body.secondary{
	overflow-y: hidden;
	right: 200px;
	animation: body-right 0.6s ease-out; 
	-webkit-animation: body-right 0.6s ease-out; 
}

body.secondary:after{
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.6s ease-in;
	-webkit-transition: opacity 0.6s ease-in;
}

@keyframes body-right { 
	0%{
		right: 0;
	}
	20%{
		right: 10px;
	}
    100% { 
    	right: 200px;
    }
}

@-webkit-keyframes body-right { 
	0%{
		right: 0;
	}
	20%{
		right: 10px;
	}
    100% { 
    	right: 200px;
    }
}

a{
	text-decoration: inherit;
	color: inherit;
}

input,
textarea{
	border: 1px solid rgba(38, 37, 42, 0.4);
}

input:focus,
textarea:focus{
	border-color: #c8b887;
}

input[type=submit]{
	cursor: pointer;	
}

em,i{
	font-style : italic;
}

strong,b{
	font-weight: bold;
}

/* -------- COMMON -------- */

input{
	padding: 6px;
}

input.error{
	color: rgb(200, 0, 0);
}

textarea{
	width: 450px;
	max-width: 100%;
	height: 150px;
}

a.primary, 
button,
input[type=submit]{
	font-family: 'Josefin Sans', Arial;
	color: #c8b887;
	padding: 10px 10px;
	border: 1px solid #c8b887;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.8em;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

a .fa + span{
	padding-left: 10px;
}

a.tertiary{
	font-family: 'Josefin Sans', Arial;
	color: rgba( 255, 255, 255, 0.5);
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.7em;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

a.tertiary:hover{
	color: rgba( 255, 255, 255, 1);
}

a.primary:hover,
button:hover,
input[type=submit]:hover{
	background-color: #c8b887;
	color: #fff;
	border-color: #c8b887;
}

a.close{
	font-family: 'Josefin Sans', Arial;
	font-weight: bold;
	font-size: 0.6em;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px;
	color: rgba(38, 37, 42, 0.5);
} 

a.close:hover{
	color: rgb(38, 37, 42);
}

a.close:after{
	content: "x";
	margin-left: 4px;
	border: 1px solid;
	display: inline-block;
	padding: 3px 5px 5px 5px;
}

a.close:hover:after{
	color: rgb(255, 255, 255);
	background-color: rgb(38, 37, 42);
}

p{
	font-size: 0.8em;
	line-height: 1.5em;
}

h1,h2,h3{
	font-family: 'Josefin Sans', Arial;
	text-transform: uppercase;
}


span.category{
	font-family: 'Josefin Sans', Arial;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
}

span.category:before,
span.category:after{
	content: "";
	background-color: rgb(38, 37, 42);
	height: 1px;
	position: absolute;
	top: 50%;
	width: 50%;
}

span.category:before{
	right: 100%;
	margin-right: 10px;
}

span.category:after{
	left: 100%;
	margin-left: 8px;
}

.newsletter-success{
	display: none;
	position: fixed;
	margin: auto;
	width: 50%;
	max-width: 450px;
	min-width: 300px;
	text-align: center;
	top:5%;
	left:0;
	right:0;
	background-color: rgba(38, 37, 42, 0.8);
	padding: 16px;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.newsletter-success span{
	color: #fff;
}

h1 i,
header a i{
	transform: skew(-8deg);
	-ms-transform: skew(-8deg);
	-webkit-transform: skew(-8deg);
	display: inline-block;
	height: 1.06em; /*safari vertical-align*/
	font-style: inherit;
}

#back-to-top{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 80px;
	height: 80px;
	background-color: #26252A;
	font-size: 4.5em;
	text-align: center;
	color: #fff;
	display: none;
	cursor: pointer;
}

#back-to-top.show{
	animation: back-to-top-show 3s linear; 
	-webkit-animation: back-to-top-show 3s linear; 
	display: inline-block;
	opacity: 0.3;
	background-color: #000;
}

#back-to-top.show:hover{
	opacity: 1;
	background-color: #c8b887;
}


@keyframes back-to-top-show { 
	0%{
		opacity: 0;
		background-color: #26252A;
	}
	15%{
		opacity: 1;
	}
    90% { 
    	opacity: 1;
    	background-color: #26252A;
    }
    100% { 
    	opacity: 0.3;
    	background-color: #000;
    }
}

@-webkit-keyframes back-to-top-show { 
	0%{
		opacity: 0;
		background-color: #26252A;
	}
	15%{
		opacity: 1;
	}
    90% { 
    	opacity: 1;
    	background-color: #26252A;
    }
    100% { 
    	opacity: 0.3;
    	background-color: #000;
    }
}



/* --------- Logo ----------*/


.page-home .logo{
	position: absolute;
	top: 26px;
	left: 5%;
	z-index: 1;
	background-color: rgb(38, 37, 42);
	padding: 18px;
	font-family: 'Josefin Sans', Arial;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.page-home .logo a{
	font-size: 2.2em;
	color: #ffffff;
	display: block;
}

.page-home .logo span{
	font-size: 0.6em;
	color: #a29884;
	width: 100%;
	display: inline-block;
	letter-spacing: 10px;
}

/* ---------------------------- */

.page-intern .logo{
	font-family: 'Josefin Sans', Arial;
	text-transform: uppercase;
	font-weight: 700;
	background-color: #ffffff;
	text-align: center;
	margin-bottom: 60px;
	padding: 26px;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
}

.page-intern .logo a{
	font-size: 4em;
	display: block;
}

.page-intern .logo span{
	font-size: 0.6em;
	color: #a29884;
	width: 100%;
	text-align: center;
	letter-spacing: 10px;
	position: relative;
}

.page-intern .logo span:before,
.page-intern .logo span:after{
	content: "";
	background-color: #c8b887;
	height: 1px;
	position: absolute;
	top: 60%;
	width: 50%;
}

.page-intern .logo span:before{
	right: 100%;
	margin-right: 10px;
}

.page-intern .logo span:after{
	left: 100%;
}



/* ---------- Highlight ----------- */

#highlight{
	position: relative;
	/*bottom: 60px;*/
	right: 0;
	left: 0;
	height: 490px;
	margin-bottom: 60px;
	background-color: rgb(38, 37, 42);
}

#highlight .articles{
	position: absolute;
	width: 100%;
	height: 100%;
}

#highlight .articles:after{
	content: "";
	position: absolute;
	display: block;
	height: 30%;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 1%,rgba(0, 0, 0, 0) 80%);
	background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 1%,rgba(0, 0, 0, 0) 80%);
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 1%,rgba(0, 0, 0, 0) 80%);
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 1%,rgba(0, 0, 0, 0) 80%);
	pointer-events: none;
}

#highlight .articles li{
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgb(38, 37, 42);
	overflow: hidden;
}

#highlight .articles li.current{
	display: block;
}

#highlight .articles figure:after {
	content: "";
	display: block;
	position: absolute;
	height: 50px;
	width: 100%;
	margin-top: -50px;
	background: linear-gradient(to top, rgba(38, 37, 42, 1) 10%,rgba(38, 37, 42, 0) 70%);
	background: -ms-linear-gradient(bottom, rgba(38, 37, 42, 1) 10%,rgba(38, 37, 42, 0) 70%);
	background: -o-linear-gradient(bottom, rgba(38, 37, 42, 1) 10%,rgba(38, 37, 42, 0) 70%);
	background: -webkit-linear-gradient(bottom, rgba(38, 37, 42, 1) 10%,rgba(38, 37, 42, 0) 70%);
}

#highlight .articles figure img{
	/*background-repeat:  no-repeat;
	background-size: cover;
	background-position:center 0;
	height: 100%;*/
	width: 100%;
	opacity: 0.45;
	/*position: absolute;*/
}

#highlight .articles .content{
	position: absolute;
	margin: auto;
	width: 80%;
	/*height: 280px;*/
	text-align: center;
	/*top: 50%;*/
	top: 136px;
	/*margin-bottom: 60px;*/
	/*top:0;
	bottom:0;*/
	left:0;
	right:0;
	color: #ffffff;
	/*transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);*/
}

#highlight .articles .content .category{
	color: #c8b887;
}

#highlight .articles .content .category:before,
#highlight .articles .content .category:after{
	background-color: #c8b887;
}

#highlight .articles .content h1{
	font-size: 3.3em;
	font-weight: 700;
	margin-bottom: 26px;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

#highlight .articles .content p{
	margin: auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: .8em;
	margin-bottom: 16px;
}

#highlight .articles .content a:hover{
	background-color: #ffedad;
	border-color: #ffedad;
	color: rgb(38, 37, 42);
}

#highlight .pagination{
	position: absolute;
	bottom: 5%;
	width: 100%;
	text-align: center;
}

#highlight .pagination li{
	display: inline-block;
}

#highlight .pagination a{
	border: 1px solid #c8b887;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	display: inline-block;
	height: 0.5em;
	width: 0.5em;
	margin: 4px;
	vertical-align: middle;
	
	/*hide text*/
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

#highlight .pagination a:hover{
	background-color: #c8b887;
}

#highlight .pagination li.current a{
	height: 1em;
	width: 1em;
	border: none;
	background: linear-gradient(45deg, #ffedad 50%,#c8b887 50%);
	background: -ms-linear-gradient(45deg, #ffedad 50%,#c8b887 50%);
	background: -o-linear-gradient(45deg, #ffedad 50%,#c8b887 50%);
	background: -webkit-linear-gradient(45deg, #ffedad 50%,#c8b887 50%);
}

#loader{
	height: 5px;
	width: 100%;
	background-color: rgba(38, 37, 42, 0.5);
	position: absolute;
	bottom: 0;
}

#loader div{
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 5px;
	background-color: #c8b887;
}


/* -------- Animation ---------- */

#highlight .articles li.current{
	animation: headline-show 4s; 
	-webkit-animation: headline-show 4s; 
}

#highlight .articles li.current .image{
	animation: headline-image-zoom 50s linear; 
	-webkit-animation: headline-image-zoom 50s linear; 
}

@keyframes headline-show{ 
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes headline-show { 
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes headline-image-zoom { 
    0% { 
    	transform: scale(1); 
    	-ms-transform: scale(1); 
		-webkit-transform: scale(1); 
    }
    100% { 
    	transform: scale(1.2); 
    	-ms-transform: scale(1.2); 
		-webkit-transform: scale(1.2); 
    }
}

@-webkit-keyframes headline-image-zoom { 
    0% { 
    	transform: scale(1); 
    	-ms-transform: scale(1); 
		-webkit-transform: scale(1); 
    }
    100% { 
    	transform: scale(1.2); 
    	-ms-transform: scale(1.2); 
		-webkit-transform: scale(1.2); 
    }
}

/* ------------- Navigation ---------------- */

nav{
	position: absolute;
	/*bottom: 0;*/
	top: 490px;
	right: 0;
	left: 0;
	height: 60px;
	padding: 0 10px;
	background-color: #ffffff;
	text-align: right;
}

nav ul{
	display: inline-block;
}

nav .submenu{
	position: absolute;
	display: block;	
	opacity: 0;
	left: 0;
	right: 0;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	height: 0%;
	overflow: hidden;
	margin: 0 -10px;
	transition: height,opacity, 0.1s ease-out;
	-webkit-transition: height,opacity, 0.1s ease-out;
	z-index: 1;
}

nav.upward .submenu{
	bottom: 100%;
	box-shadow: none;
}

nav li{
	position: relative;
	display: inline-block;
	line-height: 60px;
	margin: 0 6px;
	text-transform: uppercase;
	font-family: 'Josefin Sans', Arial;
	font-weight: 700;
	font-size: 0.8em;
	color: rgba(38, 37, 42, 0.6);
}

nav li a,
nav .language li.current span{
	padding: 4px;
}

nav li:hover .submenu{
	opacity: 1;
	height: 100%;
	transition: height,opacity, 0.15s ease-in;
	-webkit-transition: height,opacity, 0.15s ease-in;
}

nav li.current > a{
	border-bottom: 1px solid #c8b887;
	/*cursor: default;*/
}

nav li a:hover,
nav li.current{
	color: rgb(38, 37, 42);
}

nav .language{
	font-size: 0.8em;
	margin-left: 10px;
}

nav .language li+li:before {
	content: "";
	height: 25%;
	width: 1px;
	background-color: rgba(38, 37, 42, 0.2);
	position: absolute;
	display: inline-block;
	right: 100%;
	margin-right: 6px;
	top: 40%;
	transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	-webkit-transform: skew(-10deg);
}

nav .social{
	float: left;
}

nav .social li i{
	position: relative;
	font-size: 1.6em;
	top: 2px;
}

nav .social a:hover .fa-facebook-square{
	color: #3B5998;
}

nav .social a:hover .fa-instagram{
	color: #3f729b;
}

nav .social a:hover .fa-twitter{
	color: #55ACEE;
}

nav.fixed .social a span{
	display: none;
}

nav.fixed:before{
	content: "";
	position: absolute;
	display: block;
	height: 30px;
	left: 0;
	right: 0;
	bottom: -30px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%,rgba(255, 255, 255, 0) 80%);
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%,rgba(255, 255, 255, 0) 80%);
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%,rgba(255, 255, 255, 0) 80%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%,rgba(255, 255, 255, 0) 80%);
}

nav.right{
	display: block !important;
	top: 0;
	bottom: 0;
	right: 0px;
	left: inherit;
	width: 200px;
	position: fixed;
	padding-top: 70px;
	z-index: 2;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	animation: nav-right-show 0.6s ease-out; 
	-webkit-animation: nav-right-show 0.6s ease-out; 
}

#show-nav{
	display: none;
	position: fixed;
	top: 11px;
	right: 15px;
	padding: 8px 10px;
	font-size: 1.6em;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	text-shadow: 0px 1px 11px black;
	z-index: 2;
	background-color: rgb(38, 37, 42);
}

#show-nav.opened{
	padding: 8px 11px;
}

#show-nav.opened:before{
	content: "\f00d";
}


@keyframes nav-right-show { 
	0%{
		right: -200px;
	}
    100% { 
    	right: 0;
    }
}

@-webkit-keyframes nav-right-show { 
	0%{
		right: -200px;
	}
    100% { 
    	right: 0;
    }
}

/* ---------- Footer ------------ */
.footer{
	background-color: rgb(38, 37, 42);
	color: rgba(255, 255, 255, 0.5);
	padding: 26px 5% 18px 5%;
	position: relative;
}

.footer:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	display: block;
}

.footer a:hover{
	color: #ffffff;
}

.footer a:active {
	color: #ffedad;
}

.footer .menu{
	position: relative;
	margin-bottom: 26px;
}

.footer .menu h1{
	font-size: 1.8em;
	font-weight: bold;
	display: inline-block;
	color: #ffffff;
	margin-bottom: 10px;
}

.footer .menu ul{
	display: inline-block;
	position: absolute;
	right: 0;
	top: 10px;
	font-family: 'Josefin Sans', Arial;
	font-size: 0.8em;
	font-weight: bold;
	text-transform: uppercase;
}

.footer .menu ul li{
	display: inline-block;
	margin: 0 10px;
}

.footer h2{
	font-size: 1em;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 10px;
}

.footer .footer-box{
	width: 24.5%;
	display: inline-block;
	float: left;
}

.footer .footer-box li{
	margin-bottom: 6px;
	/*list-style-type: square;
	list-style-position: inside;*/
}

.footer .footer-box ul,
.footer .footer-box p{
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5em;
	/*column-count*/
}

.footer .good-deals{
	min-height: 100px;
}

.footer .newsletter{
	margin-bottom: 26px;
}

.footer .newsletter input[type=email]{
	border: none;
	margin-right: 6px;
}

.footer .newsletter input[type=submit]{
	font-size: 0.6em;
	font-weight: bold;
	padding: 7px 10px;
	margin: 0;
	vertical-align: top;
}

.footer .copyright{
	position: relative;
	font-family: 'Josefin Sans', Arial;
	font-size: 0.6em;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.6em;
	display: inline-block;
	width: 100%;
	margin-top: 48px;
	z-index: 1;
}

.footer .copyright ul{
	display: inline-block;
	position: absolute;
	right: 0;
}

.footer .copyright ul li{
	display: inline-block;
	margin: 0 5px;
	position: relative;
}

.footer .copyright ul li+li:before {
	content: "";
	height: 50%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	position: absolute;
	display: inline-block;
	right: 100%;
	margin-right: 6px;
	top: 30%;
	transform: skew(-10deg);
	-ms-transform: skew(-10deg);
	-webkit-transform: skew(-10deg);
}

.footer .social p{
	margin-bottom: 10px;
}

.footer .social li{
	display: inline-block;
}

.footer .social .fa{
	font-size: 1.9em;
}

.footer .social li + li .fa{
	margin-left: 10px;
}


/**************** Wrapper *****************/

#intern-wrapper{
	margin: 36px 5%;
}

#left-column-wrapper{
	width: 62%;
	margin-right: 2%;
	display: inline-block;
}


#right-column-wrapper{
	width: 35%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	/*margin-right: 5%;
	margin: 36px 0;*/
}

.page-intern nav{
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	top: 136px;
}

.page-intern .pagination li{
	display: inline-block;
	margin: 6px;
}

nav.fixed{
	position: fixed;
	top: 0;
	bottom: inherit;
	border-bottom: none;
	z-index: 1;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
	display: none;
}

/**************** Section common *****************/

section.primary{
	position: relative;
	text-align: center;
}

section.primary .section-header{
	margin-bottom: 36px;
}

section.primary h1.section-header,
section.primary .section-header h1{
	font-size: 3.3em;
	display: inline-block;
}


/***************** Section type:gallery *************/

section.gallery .gallery-items{
	text-align: center;
}

section.gallery .gallery-items li{
	display: inline-block;
	width: 336px;
	height: 300px;
	position: relative;
	background-color: rgb(38, 37, 42);
	overflow: hidden;
	margin: 5px;
}


section.gallery .gallery-items li img{
	/*position: absolute;*/
	width: 100%;
	top:0;
}

section.gallery .gallery-items li figcaption{
	position: absolute;
	margin: auto;
	width: 100%;
	height: 65px;
	text-align: center;
	top:0;
	bottom:0;
	left:0;
	right:0;
	opacity: 0;
}

section.gallery .gallery-items li span{
	display: block;
	font-family: 'Josefin Sans', Arial;
	font-size: 1em;
	text-transform: uppercase;
	color: #ffffff;
}

section.gallery .gallery-items li a{
	font-family: 'Josefin Sans', Arial;
	font-weight: 700;
	font-size: 0.8em;
	text-transform: uppercase;
	padding: 10px 10px;
	margin: 10px;
	display: inline-block;
	color: #c8b887;
	border: 1px solid #c8b887;
}

section.gallery .gallery-items li a:hover{
	background-color: #ffedad;
	color: rgb(38, 37, 42);
	border-color: #ffedad;
}

section.gallery .gallery-items li:hover img{
	opacity: 0.2;
}

section.gallery .gallery-items li:hover figcaption{
	opacity: 1;
}

section.gallery .gallery-items li h2{
	position: absolute;
	bottom: 0;
	padding: 10px;
	width: 100%;
	font-size: 1em;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
	background-color: rgba(38, 37, 42, 1);
}


/* ----------- Secion type:photo ***********/

.page-photo nav{
	top: 0!important;
	box-shadow: 0 2px rgba(0, 0, 0, 0.05);
}

section.photo{
	background-color: rgb(38, 37, 42);
	/*height: 100%;*/	
	top: 60px;
	bottom: 0;
	width: 100%;
	position: absolute;
}

section.photo article{
	height: 100%;
}

section.photo article figure{
	max-width: 40%;
	/*height: 100%;*/
	float: left;
	position: fixed;
	overflow: hidden;
	top: 60px;
  	bottom: 0;
}

@-moz-document url-prefix() { 
  section.photo article figure {
     height: 100%;
  }
}

section.photo article figure:after {
	content: "";
	top: 0;
	right: -1px;
	bottom: 0;
	position: absolute;
	border-style: solid;
	border-width: 0 0 1300px 100px;
	border-color: transparent transparent #26252A transparent;
	-moz-transform: scale(.9999); /*FF aliasing*/
}

section.photo article figure img{
	height: 100%;
	position: relative;
	left: 50%;
	/*top: 49.99%;*/
	transform: translateY(0%) translateX(-50%);
	-webkit-transform: translateY(0%) translateX(-50%);
	-ms-transform: translateY(0%) translateX(-50%);
}

section.photo article .navigation{
	position: absolute;
	margin: auto;
	height: 70px;
	top: 0;
	font-size: 4em;
	bottom: 0;
	color: rgba(255, 255, 255, 1);
	padding: 16px;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	z-index: 1;
	opacity: 0.8;
}

#previous-look{
	left: 6%;
}

#next-look{
	left: inherit;
	right: 6%;
}

section.photo article .navigation:hover{
	color: #fff;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
	opacity: 1;
}

section.photo article .navigation.disabled{
	visibility: hidden;
}

section.photo article .content{
	height: 100%;
	color: #ffffff;
	box-sizing: border-box;
	padding: 5%;
	position: absolute;
	left:40%;
	overflow-y: auto;
	overflow-x: hidden;
	right: 0;
	background-color: rgb(38, 37, 42);
}

section.photo article header{
	margin: 26px 0;
}

section.photo article .content h1{
	font-weight: 700;
	font-size: 3.8em;
	position: relative;
	display: inline-block;
	margin-right: 26px;
}

section.photo article .content h1 i:first-child{
	position: absolute;
	font-size: 2em;
	bottom: 0;
	opacity: 0.05;
	width: 100%;
	font-weight: bold;
	white-space: nowrap;
}


section.photo article .content h1 span{
	font-weight: normal;
	font-size: 0.6em;
}


section.photo article .content h2{
	font-weight: 700;
	font-size: 1em;
	margin-bottom: 10px;
}

section.photo article .content p{
	font-size: .9em;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.5);
}

section.photo article .content footer{
	margin-top: 16px;
	padding: 10px 0;
}

#show-comments .fa{
	transition: transform 0.2s linear;
	-webkit-transition: transform 0.2s linear;
}

#show-comments.opened .fa
{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);

	transform-origin: 25% 45%;
	-ms-transform-origin: 25% 45%;
    -webkit-transform-origin: 25% 45%;

	transition: transform 0.2s linear;
	-webkit-transition: transform 0.2s linear;
}

section.photo .logo{
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 1;
	font-family: 'Josefin Sans', Arial;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

section.photo .logo a{
	font-size: 2.2em;
	color: #ffffff;
	display: block;
}

section.photo .logo span{
	font-size: 0.6em;
	color: #a29884;
	width: 100%;
	display: inline-block;
	letter-spacing: 10px;
}

section.photo header .action{
	position: relative;
	top: -2px;
	font-size: 1.5em;
	padding: 6px;
	text-align: center;
}

section.photo header .action span{
	font-family: 'Josefin Sans', Arial;
	font-size: 0.44em;
	text-transform: uppercase;
	display: block;
	font-weight: bold;
	padding: 2px;
}

section.photo header .action:hover span{
	color: #c8b887;
}


/* ------------------ Map ---------------- */
#map-look{
	position: relative;
	height: 100%;
	width: 100%;
	/*display: initial;*/
}


/*
#map-look p:after{
	content: "";
	position: absolute;
	display: block;
	height: 50px;
	left: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(243, 243, 243, 1) 30%,rgba(243, 243, 243, 0) 100%);
}
*/

#map-canvas{
	height: 100%;	
}

#map-canvas .map-marker{
	width: 200px;
	height: 200px;
	position: absolute;
	text-align: center;
	line-height: 200px;
	color: #fff;
	font-family: 'Merriweather', 'Times New Roman';
	font-size: 8em;
	font-weight: bold;
}

#map-canvas .map-marker span{
	font-size: 0.4em;
	position: relative;
	top: -24px;
	left: 2px;
}

#map-canvas .map-marker:before{
	content: "";
	width: 200px;
	height: 200px;
	position: absolute;
	background: linear-gradient(45deg, #2f5175 50%,#163658 50%);
	background: -ms-linear-gradient(45deg, #2f5175 50%,#163658 50%);
	background: -o-linear-gradient(45deg, #2f5175 50%,#163658 50%);
	background: -webkit-linear-gradient(45deg, #2f5175 50%,#163658 50%);
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	z-index: -1;
	left: 0;
}

#map-canvas .map-marker:after{
	content: "";
	width: 200px;
	height: 200px;
	position: absolute;
	background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: -ms-linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: -o-linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	background: -webkit-linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
	transform: rotate(30deg) skew(-40deg) scale(0.6) translate(190px,104px);
	-webkit-transform: rotate(30deg) skew(-40deg) scale(0.6) translate(190px,104px);
	-ms-transform: rotate(30deg) skew(-40deg) scale(0.6) translate(190px,104px);
	z-index: -2;
	left: 0;
}

#map-canvas .map-marker.empty{
	pointer-events: none;
	cursor: default;
}

#map-canvas .map-marker.empty:before, #map-canvas .map-marker.empty:after{
	opacity: 0.4;
}

#map-look .window{
	position: absolute;
	margin: auto;
	width: 50%;
	max-width: 450px;
	min-width: 300px;
	text-align: center;
	top:50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	left:0;
	right:0;
	background-color: rgba(255,255,255,0.9);
	padding: 26px 40px;
	box-sizing: border-box;
	/*border-bottom: 2px solid rgba(0, 0, 0, 0.1);*/
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#map-look .window h1{
	font-size: 3.3em;
	margin-bottom: 26px;
	text-align: center;
	position: relative;
}

#map-look .window p{
	text-align: center;
	position: relative;
	margin-bottom: 16px;
}

#map-look .window ul{
	margin-bottom: 16px;
}

#map-look .window li{
	display: inline-block;
}

#map-look .window .polaroid{
	position: relative;
	display: inline-block;
	width: 90px;
	height: 110px;
	padding: 6px 6px 26px 6px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	box-sizing: border-box;
	background-color: #fff;
	transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
}

#map-look .window ul li + li .polaroid{
	transform: rotate(5deg);
	-webkit-transform: rotate(5deg);
	-ms-transform: rotate(5deg);
}


#map-look .window ul li + li + li .polaroid{
	transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
}

#map-look .window .polaroid:hover,
#map-look .window ul li + li + li .polaroid:hover{
	transform: rotate(2deg) scale(1.2);
	-webkit-transform: rotate(2deg) scale(1.2);
	-ms-transform: rotate(2deg) scale(1.2);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
	z-index: 1;
}

#map-look .window ul li + li .polaroid:hover{
	transform: rotate(-2deg) scale(1.2);
	-webkit-transform: rotate(-2deg) scale(1.2);
	-ms-transform: rotate(-2deg) scale(1.2);
}


#map-look .window .polaroid img{
	position: relative;
	width: 100%;
}

#map-look .window .polaroid span{
	position: absolute;
	bottom: -1px;
	width: 100%;
	left: 0;
	background-color: #fff;
	height: 26px;
	padding: 8px 2px;
	box-sizing: border-box;
	text-align: center;
	font-size: 0.6em;
	font-weight: bold;
}

#view-map{
	margin: 6px 0;
}


/* ---------------- News ----------------- */
#news{
	text-align: center;
	padding: 1%;
	margin-top: 26px;
}


#news .articles li{
	/*border: 1px solid rgb(239, 237, 230);*/
	display: inline-block;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	width: 336px;
}

#news .articles .advertissement{
	background-color: rgb(38, 37, 42);
}

#news .articles .advertissement .publisher{
	font-family: 'Josefin Sans', Arial;
	font-size: 0.6em;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
	padding: 5px;
}

#news .articles .advertissement .publisher span{
	float: left;
	color: rgb(150, 146, 132);
}

#news .articles .advertissement .publisher a{
	color: #c8b887;
}

#news .articles .advertissement .publisher a:hover{
	color: #ffedad;
}


.article{
	padding: 32px;
	background-color: #ffffff;
	box-sizing: border-box;
	text-align: center;
}

.article.summary{
	/*width: 336px;*/
}

.article header:before {
	content: "";
	height: 0.4em;
	display: block;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNjIuNjY3cHgiIGhlaWdodD0iMjdweCIgdmlld0JveD0iMCAwIDYyLjY2NyAyNyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjIuNjY3IDI3IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBkPSJNMzQgMTkuNzVjMCAxLjMzNC0xLjA4MiAyLjQxNy0yLjQxNyAyLjQxN2wwIDBjLTEuMzM0IDAtMi40MTctMS4wODItMi40MTctMi40MTd2LTE2YzAtMS4zMzQgMS4wODItMi40MTcgMi40MTctMi40MTdsMCAwIEMzMi45MTcgMS4zIDM0IDIuNCAzNCAzLjc1VjE5Ljc1eiIvPjxwYXRoIGQ9Ik0xNy42MTYgMjEuNTMyYzAuOTQzIDAuOSAwLjkgMi41IDAgMy40MTdsMCAwYy0wLjk0NCAwLjk0NC0yLjQ3NCAwLjk0NC0zLjQxNyAwTDIuODg0IDEzLjYgYy0wLjk0My0wLjk0NC0wLjk0My0yLjQ3NCAwLTMuNDE3bDAgMGMwLjk0NC0wLjk0NCAyLjQ3NC0wLjk0NCAzLjQgMEwxNy42MTYgMjEuNTMyeiIvPjxwYXRoIGQ9Ik00OS4xMzUgMjQuOTVjLTAuOTQ0IDAuOTQzLTIuNDc0IDAuOTQzLTMuNDE3IDBsMCAwYy0wLjk0NC0wLjk0NC0wLjk0NC0yLjQ3NCAwLTMuNDE3bDExLjMxMy0xMS4zMTQgYzAuOTQ0LTAuOTQzIDIuNDc0LTAuOTQzIDMuNCAwbDAgMGMwLjk0NCAwLjkgMC45IDIuNSAwIDMuNDE3TDQ5LjEzNSAyNC45NXoiLz48L3N2Zz4=) no-repeat center center;
	background-size: contain;
}

.article header .category{
	font-size: 0.6em;
	font-weight: bold;
}


.article header h1{
	font-weight: 700;
	font-size: 1.6em;
	margin-bottom: 16px;
}


.article header time{
	font-family: 'Josefin Sans', Arial;
	font-size: 0.6em;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 16px;
	opacity: 0.8;
}

.article p{
	text-align: justify;
}

.article.summary p{
	margin-bottom: 16px;
}

/* article image */
.article.image.summary{
	padding: 0;
	max-height: 400px;
}

.article.image header{
	padding: 32px;
}

.article img{
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;
}

.article figure + header:before{
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNjIuNjY3cHgiIGhlaWdodD0iMjdweCIgdmlld0JveD0iMCAwIDYyLjY2NyAyNyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjIuNjY3IDI3IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMzQgMTkuNzVjMCAxLjMzNC0xLjA4MiAyLjQxNy0yLjQxNyAyLjQxN2wwIDBjLTEuMzM0IDAtMi40MTctMS4wODItMi40MTctMi40MTd2LTE2YzAtMS4zMzQgMS4wODItMi40MTcgMi40MTctMi40MTdsMCAwIEMzMi45MTcgMS4zIDM0IDIuNCAzNCAzLjc1VjE5Ljc1eiIvPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNy42MTYgMjEuNTMyYzAuOTQzIDAuOSAwLjkgMi41IDAgMy40MTdsMCAwYy0wLjk0NCAwLjk0NC0yLjQ3NCAwLjk0NC0zLjQxNyAwTDIuODg0IDEzLjYgYy0wLjk0My0wLjk0NC0wLjk0My0yLjQ3NCAwLTMuNDE3bDAgMGMwLjk0NC0wLjk0NCAyLjQ3NC0wLjk0NCAzLjQgMEwxNy42MTYgMjEuNTMyeiIvPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik00OS4xMzUgMjQuOTVjLTAuOTQ0IDAuOTQzLTIuNDc0IDAuOTQzLTMuNDE3IDBsMCAwYy0wLjk0NC0wLjk0NC0wLjk0NC0yLjQ3NCAwLTMuNDE3bDExLjMxMy0xMS4zMTQgYzAuOTQ0LTAuOTQzIDIuNDc0LTAuOTQzIDMuNCAwbDAgMGMwLjk0NCAwLjkgMC45IDIuNSAwIDMuNDE3TDQ5LjEzNSAyNC45NXoiLz48L3N2Zz4=) no-repeat center center;
	background-size: contain;
}

.article figure + header .category{
	color: #fff;
}

.article figure + header .category:before,
.article figure + header .category:after{
	background-color: #fff;
}

.article figure + header{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.40) 50%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.40) 50%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.40) 50%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.40) 50%);
	color: #ffffff;
}

.article.complete{
	margin-bottom: 16px;
}

.article footer h1{
	text-align: left;
	font-size: 1.1em;
	font-weight: bold;
	margin: 26px 0 6px 0;
}

/*
.page-intern #main article figure{
	background-color: rgba(0, 0, 0, 0.05);
}

.page-intern #main article figure img{
	max-width: 100%;
}
*/


/**************** Looks *****************/


#show-locations{
	cursor: pointer;
}

#show-map{
	position: absolute;
	left: 0;
	top: 18px;
}

#looks .navigation{
	font-family: 'Josefin Sans', Arial;
	font-size: 2.6em;
	position: relative;
	top: -8px;
	padding: 10px;
	color: rgba(0, 0, 0, 0.2);
}

#looks .navigation:hover{
	color: rgb(0, 0, 0);
}

#looks .navigation.disable{
	visibility: hidden;
}

#looks .locations{
	position: relative;
	background-color: #ffffff;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	z-index: 1;
	padding: 10px 10%;
	margin-bottom: 26px;
	display: none;
}

#looks .locations ul{
	column-count: 4;
	-webkit-column-count: 4;
	-moz-column-count: 4;
	
	text-align: left;
	font-family: 'Merriweather', 'Times New Roman';
	font-size: 0.8em;
	color: rgba(0, 0, 0, 0.5);
	
	line-height: 26px;
}

#looks .locations ul li a:hover{
	color: rgb(38, 37, 42);
}

#looks .locations ul li a:active{
	color: #c8b887;
}

#looks .locations ul li.current a{
	text-decoration: line-through;
	color: rgba(0, 0, 0, 0.6);
	cursor: default;
	pointer-events: none;
}


/**************** Look ********************/

#look article{
	background-color: #26252A;
}

#like-look{
	color: #c8b887;
}

#like-look span{
	color: rgba(255, 255, 255, 0.5);
}

#like-look span:before {
	content: attr(data-vote);
	position: relative;
	margin-right: 4px;
	font-size: 120%;
	color: #c8b887;
}

#like-look:before{
	content: "\f004";

}

#like-look:hover:before{
	content: "\f004";
}

#like-look:hover{
	/*transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);*/
	color: rgb(255, 100, 100);
}

/*
#like-look.active:hover{
	transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
}
*/

#like-look.active:before{
	color: rgb(255, 100, 100);
}

#like-look.active:hover:before{
	content: "\f08a";
}

#like-look.active span:before{
	color: rgb(255, 100, 100);
}



/**************** Monthly Look *************/


#monthly-look{
	background-color: #F3F3F3;
}

#monthly-look article{
	background-color: #F3F3F3;
}

#monthly-look article figure:after {
	border-color: transparent transparent #F3F3F3 transparent;
}

#monthly-look .logo a,
#monthly-look article .content{
	color: rgb(38, 37, 42);
}

#monthly-look article .content{
	background-color: #F3F3F3;
}

#monthly-look article .content p{
	color: rgba(38, 37, 42, 0.5);
}

#monthly-look a.tertiary{
	color: rgba( 0, 0, 0, 0.5);
}

#monthly-look a.tertiary:hover{
	color: rgba( 0, 0, 0, 1);
}

#show-backstage:before{
	color: #e52d27;
	background: -webkit-linear-gradient(#e52d27, #b31217);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

#backstage-video{
	display: none;
}

#backstage-video iframe{
	position: fixed;
	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
  	z-index: 1;
  	box-shadow: 0px 0px 100px #000;
  	background-color: #000;
}

#backstage-video:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1;
}

/**************** Contact *****************/

#contact .content{
	padding: 32px;
	background-color: #fff;
}

#contact .content p{
	margin-bottom: 32px;
}

#contact .content p, #contact .content form{
	text-align: justify;
}

#contact .content form label{
	display: block;
	margin-bottom: 6px;
}

#contact .content form .form-group{
	margin-bottom: 10px;
}

/*************** Pages *****************/
#page .content{
	padding: 32px;
	background-color: #fff;
}

#page .content a{
	color: rgba(0, 0, 0, 0.5);
}

#page .content a:hover{
	color: rgba(0, 0, 0, 1);
}

/*************** Sidebar ****************/

aside{
	background-color: #fff;
}

aside section{
	margin: 32px;
}

aside section + section:before{
	content: "";
	width: 30%;
	margin: auto;
	display: block;
	background-color: rgba(200, 184, 135, 1);
	margin-bottom: 16px;
	height: 1px;
}

aside section h1{
	font-weight: bold;
	font-size: 1.6em;
	margin-bottom: 16px;
}

aside section li{
	font-size: 0.8em;
	margin-bottom: 6px;
	line-height: 16px;
}

#side-newsletter p{
	margin-bottom: 6px;
}

#side-newsletter input[type=email]{
	margin-right: 6px;
}

#side-newsletter input[type=submit]{
	padding: 7px 10px;	
	font-size: 0.6em;
	vertical-align: top;
}

#side-gooddeals a{
	color: rgba(38, 37, 42, 0.5);
}

#side-gooddeals a:hover{
	color: rgba(38, 37, 42, 1);
}


/* --------- Responsive ---------- */

@media (max-width: 1100px) {
	#highlight{
		height: 530px;
	}

	nav{
		top: 530px;
	}

	nav .social a span{
		display: none;
	}
}

@media (max-width: 900px) {
	#highlight{
		height: 550px;
	}

	nav{
		top: 550px;
	}

	#highlight .articles .content{
		width: 90%;
	}
}

/*Mobile*/
@media (max-width: 870px) {
	#highlight{
		min-height: 300px;
		height: 100%;
		max-height: 400px;
		margin-bottom: 0;
	}

	.page-home .logo{
		left: 0;
		right: 0;
		top: 0;
		background-color: rgba(38, 37, 42, 0.6);
	}
	#highlight .articles .content{
		top: 50%;
		font-size: 70%;
		transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	#highlight .articles .content h1{
		margin-bottom: 14px;
	}
	#highlight .articles .content p{
		display: none;
	}

	.footer .footer-box{
		width: 100%;
		margin-bottom: 20px;
	}

	.footer .menu ul{
		display: none;
	}

	#news .articles li{
		width: 49%;
	}

	#map-look{
		border-top: 3px solid rgb(200, 184, 135);
	}

	#map-look .window{
		display: none;
	}

	#intern-wrapper {
  		margin: 20px 5%;
	}

	section.primary .section-header{
		font-size: 60%;
		margin-bottom: 16px;
	}

	section.primary h1.section-header{
		font-size: 2.2em;
	}

	section.gallery .gallery-items li{
		  width: 49%;
	}

	/*Menu mobile.*/
	#show-nav{
		display: block;
	}

	nav{
		display: none;
		box-shadow: 0px 0 200px rgba(0, 0, 0, 0.2) !important;
	}

	nav ul{
		display: block;
	}

	nav li{
		line-height: 50px;
	}

	nav ul.menu li{
		display: block;
	}

	nav ul.social{
		float: none;
	}

	nav .submenu {
		position: inherit;
		opacity: 1;
		text-align: inherit; 
		box-shadow: none;
	}

	#back-to-top{
		font-size: 2.3em;
		height: 42px;
		width: 42px;
	}

	#left-column-wrapper,
	#right-column-wrapper {
  		width: 100%;
  	}

  	.page-intern .logo{
  		  font-size: 60%;
  		  padding: 20px;
  		  margin-bottom: 0;
  	}

  	.page-intern nav{
		top: 0;
	}

	#show-map{
		margin-bottom: 10px;
		top: inherit;
		position: inherit;
	}
	
	/*Looks*/
	#looks .locations ul{
		column-count: 3;
		-webkit-column-count: 3;
		-moz-column-count: 3;
	}

	/*Look*/
	section.photo{
		top: 0;
	}

	section.photo article figure {
		max-width: inherit;
		height: 50%;
		min-height: 260px;
		width: 100%;
		position: relative;
		float: inherit;
		top: 0;
		cursor: pointer;
	}
	section.photo article figure.full{
		height: auto;
	}

	section.photo article figure.full{
		height: auto;
	}

	section.photo article figure img {
		height: auto;
		width: 100%;
		margin-bottom: -5px;
	}

	section.photo article figure:after{
		border-width: 0px 0 50px 870px;
  		right: auto;
  		top: auto;
		bottom: -1px;
	}

	section.photo article .content {
		left: inherit !important;
		position: inherit;
		overflow-y: inherit;
		height: auto;
	}

	section.photo .logo{
		position: relative;
		right: inherit;
		width: 100%;
		text-align: center;
		top: 0;
		padding: 20px;
		box-sizing: border-box;
	}

	#monthly-look .logo{
		background-color: #F3F3F3;
	}

	section.photo article header {
		font-size: 70%;
	}

	#backstage-video iframe{
		height: 100%;
		width: 100%;
		top: 0;
		left: auto;
		transform: none;
 		-webkit-transform: none;
	}

}

@media (max-width: 550px) {


	.page-home .logo{
		font-size: 80%;
	}

	.page-intern .logo{
  		  font-size: 40%;
  	}

	#highlight .articles .content{
		font-size: 60%;
	}

	#news .articles li{
		width: 99%;
	}

	section.gallery .gallery-items li{
		  width: 99%;
	}

	section.photo .logo{
		font-size: 70%;
	}

	#map-look{
		height: auto;
	}

	#map-canvas{
		height: 270px;
	}
	
	/*Looks*/
	#looks .locations ul{
		column-count: 2;
		-webkit-column-count: 2;
		-moz-column-count: 2;
	}
}


@media (max-width: 380px) {
	/*Looks*/
	#looks .locations ul{
		column-count: 1;
		-webkit-column-count: 1;
		-moz-column-count: 1;
	}
}
