@font-face {
    font-family: celine;
    src: url("../fonts/CelineWeb-Medium_06hf.eot");
    src: url("../fonts/CelineWeb-Medium_06hf.eot?#iefix") format('embedded-opentype'), url("../fonts/CelineWeb-Medium_06hf.woff") format('woff'), url("../fonts/CelineWeb-Medium_06hf.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: celine;
    src: url("../fonts/CelineWeb-Bold_07hf.eot");
    src: url("../fonts/CelineWeb-Bold_07hf.eot?#iefix") format('embedded-opentype'), url("../fonts/CelineWeb-Bold_07hf.woff") format('woff'), url("../fonts/CelineWeb-Bold_07hf.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
	font-family: didot;
	src: url("../fonts/didot.ttf");
}

@font-face {
	font-family: roman;
	src: url("../fonts/lmroman10-regular.otf") format("opentype");
}

@font-face {
	font-family: roman;
	src: url("../fonts/lmroman10-bolditalic.otf") format("opentype");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: roman;
	src: url("../fonts/lmroman10-bold.otf") format("opentype");
	font-weight: bold;
}

@font-face {
	font-family: roman;
	src: url("../fonts/lmroman10-italic.otf") format("opentype");
	font-style: italic;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    position: relative;
    outline: none;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

#header {
	position: fixed;
	width: 100%;
	z-index: 100;
	user-select: none;
}

#header-title {
	font-family: didot;
	color: #111;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	transition: all 2s;
}

#header-title:hover {
	color: #ddd;
	text-shadow: 0px 1px 0 #aaa;
	mix-blend-mode: overlay;
}

#header-menu {
	width: 100%;
	text-align: center;
}

.header-menu-item {
	display: inline-block;
	vertical-align: middle;
	font-family: celine;
	color: #111;
	cursor: pointer;
	transition: 1s all;
}

.header-menu-item:hover {
	color: #aaa;
}

video#bgvid { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
	opacity: 0.1;
	
}

#content-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all 1s;
}

#side {
	position: fixed;
	width: 100%;
	transform: rotate(90deg);
	z-index: 1000;
}

#side-menu {
	width: 100%;
	text-align: left;
}

.side-title {
	position: fixed;
	vertical-align: middle;
	font-family: didot;
	color: #111;
	transform: none;
	transition: 1s all;
	cursor: pointer;
	user-select: none;
}

.side-title:hover {
	color: #ddd;
	text-shadow: 0px 1px 0 #aaa;
	mix-blend-mode: overlay;
}

.side-menu-item {
	display: inline-block;
	vertical-align: middle;
	font-family: celine;
	color: #111;
	cursor: pointer;
	transition: 1s color;
	transform: rotate(180deg);
}

.side-menu-item:hover {
	color: #aaa;
}

/****************************************************************/ 
/*                         LANDING PAGE                         */
/****************************************************************/

#landing-wrapper {
	width: 100%;
	height: 100%;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
}


#landing {
	display: inline-block;
}

#landing-inner {
	background-color: #eee;
	cursor: pointer;
	height: 100%;
	transition: all 1s;
}

#landing-inner:hover {
	background-color: #ddd;
}

.landing-text {
	font-family: didot;
	position: absolute;
	font-size: 35pt;
	z-index: 1500;
	color: white;
	opacity: 0.1;
	transition: all 1s;
}

#landing-text-spring {
	top: 50px;
	right: 51%;
	width: 25%;
	text-align: right;
}

#landing-text-summer {
	top: 110px;
	left: 51%;
}

#landing-text-17 {
	top: 190px;
	left: 43%;
}

.collection {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	margin: 0 1%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.95;
	transition: 1s all;
	cursor: pointer;
	color: white;
	font-family: celine;
	text-align: center;
}

.collection:hover {
	opacity: 0.7;
	color: #ddd;
}

.landing-column {
    float: left;
	height: 100%;
}

.landing-column img {
	height: 100%;
	width: auto;
}

/****************************************************************/ 
/*                       COLLECTIONS PAGE                       */
/****************************************************************/

#collections-wrapper {
	width: 100%;
}

#collections {
	text-align: center;
}

.collection-small {
	display: inline-block;
	vertical-align: middle;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.95;
	transition: 1s all;
	cursor: pointer;
	color: white;
	font-family: celine;
	text-align: center;
	text-shadow: 0px -1px #ddd;
	text-transform: uppercase;
}

.collection-small:hover {
	background-position: bottom right;
	opacity: 0.7;
	color: #ddd;
}

/****************************************************************/ 
/*                         CONTACT PAGE                         */
/****************************************************************/

#contact a {
	text-decoration: none;
	color: black;
	transition: all 1s;
}

#contact a:hover {
	color: #aaa;
}

#contact-press a {
	color: #145214;
}

#contact-wrapper {
	width: 100%;
	height: 100%;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
}

#contact {
	height: 80%;
	background-color: white;
	opacity: 0.8;
	position: relative;
	
}

#contact-left {
	position: absolute;
}

#contact-right {
	position: absolute;
}

#contact-press {
	position: absolute;
	color: #145214;
	font-family: celine;
}

.contact-card {
	font-family: celine;
}

.contact-card-country {
	color: #145214;
	font-family: celine;
}

.contact-card-title {
	font-weight: bold;
}

/****************************************************************/ 
/*                          ABOUT PAGE                          */
/****************************************************************/

#about-wrapper {
	width: 100%;
	height: 100%;
		display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
}

#about {	
	opacity: 0.8;
	text-align: center;
}

.about-part {
	width: 49%;
	height: 100%;
	position: relative;
	margin: 2% 0;
	background-color: white;
	display: inline-block;
}

#about-left {
	width: 30%;
	height: 100%;
	background-image: url('../img/about.jpg');
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
}

 #about-right {
	 width: 70%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 right: 0;
	 display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
 }

.about-title {
	font-family: celine;
	text-align: left;
	position: absolute;
}

.about-subtitle {
	font-family: celine;
	width: 30%;
	position: absolute;
	text-align: left;
}

.about-content {	
	text-align: justify;
	font-family: celine;
	position: absolute;
}

#about-designer-left {
	width: 60%;
	height: 100%;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
		 display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
}

 #about-designer-right {
	 width: 40%;
	 height: 100%;
	 background-image: url('../img/designer.jpg');
	 background-position: right center;
	 position: absolute;
	 top: 0;
	 right: 0;

 }

.about-designer-title {
	font-family: celine;
	text-align: right;
	position: absolute;
}

.about-designer-content {	
	text-align: justify;
	font-family: celine;
	position: absolute;
}

/****************************************************************/ 
/*                          PRESS PAGE                          */
/****************************************************************/

#press-wrapper {
	width: 100%;
}

#press {
	width: 100%;	
	text-align: center;
}

#press a {
	text-decoration: none;
	color: black;
	transition: all 1s;
}

#press p {
	text-align: center;
	font-family: celine;
	font-size: 9pt;
	padding: 40px;
	margin-bottom: 30px;
	color: #777;
	text-transform: uppercase;
}

#press a:hover {
	color: #aaa;
}

.press-item {
	opacity: 1;
	margin: 2% 0.5%;
	max-width: 48%;
	display: inline-block;
	vertical-align: middle;
	transition: 1s all;
	padding: 0;
	background-color: #444;
}

.press-item img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.press-item:hover {
	opacity: 0.8;
	background-color: #222;
}

/****************************************************************/ 
/*                       COLLECTION PAGE                       */
/****************************************************************/

#left-arrow {
	height: 100%;
	position: fixed;
	left: 5px;
	top: 0;
	width: 50px;
	background-image: url('../img/arrow-left.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	z-index: 1000;
	transition: all 1s;
}

#left-arrow:hover {
	opacity: 0.6;
}

#right-arrow {
	height: 100%;
	position: fixed;
	right: 5px;
	top: 0;
	width: 50px;
	background-image: url('../img/arrow-right.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	z-index: 1000;
	transition: all 1s;
}

#right-arrow:hover {
	opacity: 0.6;
}

#collection-wrapper {
	width: 100%;
	height: 100%;
}

#collection {
	height: 100%;
	text-align: center;
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
}

.collection-item {
	opacity: 1;
	margin: 0 5px;
	height: 95%;
	display: inline-block;
	vertical-align: middle;
	transition: 1s all;
	padding: 0;	
}

#collection p {
	height: 100%;
}

.collection-item img {
	margin: 0;
	padding: 0;
	height: 100%;
	width: auto;
}

.collection-item:hover {
	opacity: 0.8;
}