/* reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
a {text-decoration: none; color: inherit;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse; border-spacing: 0;}
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

/***********************/

html {
	position: relative;
	height: 100%;
	width: 100%;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	
}

body {
	position: relative;
	height: 100%;
	width: 100%;
	background: white;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	color: black;
}

/***********************/

.logo {
	position: fixed;
	top: 20px;
	left: 200px;
	font-size: 76px;
	font-weight: 700;
	z-index: 1000;
	transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}

.tagline {
	position: fixed;
	top: 100px;
	left: 205px;
	z-index: 1000;
	text-transform: uppercase;
	letter-spacing: 3px;
	transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}

/************************/

.just-fine {
	position: fixed;
	width: 70px;
	height: auto;
	left: 50%;
	margin-left: -35px;
	top: 50px;
	z-index: 100000;
}

/************************/

.diamonds-menu {
	opacity: 0;
	position: fixed;
	right: 0;
	height: 203px;
	top: 50%;
	width: 5%;
	margin-top: -101.5px;
	z-index: 1000000;
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
}

.small-diamond {
	margin: 5px auto 0;
	display: block;
	width: 13px;
	height: 13px;
	background: transparent;
	border: 2px solid;
	border-color: black;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: background 0.1s ease-out;
	-webkit-transition: background 0.1s ease-out;
	cursor: pointer;
}

.small-diamond:hover {
	background: black;
}

/************************/

.menu-icon-container {
	position: fixed;
	top: 50%;
	margin-top: -10.5px;
	left: 0;
	width: 5%;
	height: 21px;
	z-index: 1000;
	cursor: pointer;
	overflow: hidden;
}

.menu-icon-line {
	position: absolute;
	width: 30px;
	height: 3px;
	background: rgba(255,255,255,1);
	left: 50%;
	margin-left: -15px;
	transition: all 0.25s linear;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

#menu-icon-line-top {
	top: 0px;
}

#menu-icon-line-middle-1 {
	top: 8px;
	/* transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(135deg);
	-ms-transform:rotate(135deg); */
}

#menu-icon-line-middle-2 {
	top: 8px;
	/* transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-webkit-transform:rotate(315deg);
	-o-transform:rotate(135deg);
	-ms-transform:rotate(135deg); */
	
}

#menu-icon-line-bottom {
	top: 16px;
	background: rgba(255,255,255,1);
	
}

.menu-icon-line-top-hover {
	transform: translate(0px, -8px);
	-moz-transform: translate(0px, -8px);
	-webkit-transform: translate(0px, -8px);
	-o-transform: translate(0px, -8px);
	-ms-transform: translate(0px, -8px);
	background: rgba(255,255,255,0);
}

.menu-icon-line-middle-1-hover {
	transform: translate(0px, -8px);
	-moz-transform: translate(0px, -8px);
	-webkit-transform: translate(0px, -8px);
	-o-transform: translate(0px, -8px);
	-ms-transform: translate(0px, -8px);
	background: rgba(255,255,255,1);
}

.menu-icon-line-middle-2-hover {
	transform: translate(0px, 8px);
	-moz-transform: translate(0px, 8px);
	-webkit-transform: translate(0px, 8px);
	-o-transform: translate(0px, 8px);
	-ms-transform: translate(0px, 8px);
	background: rgba(255,255,255,1);
}

.menu-icon-line-bottom-hover {
	transform: translate(0px, -8px);
	-moz-transform: translate(0px, -8px);
	-webkit-transform: translate(0px, -8px);
	-o-transform: translate(0px, -8px);
	-ms-transform: translate(0px, -8px);
	background: rgba(255,255,255,1);
} 


/************************/

.right-side-menu {
	position: fixed;
	width: 380px;
	height: 100%;
	top: 0;
	right: -350px;
	background: white;
	z-index: 1000;
	transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}

.right-side-panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30px;
	border-left: 1px solid rgba(255,255,255,0.3);
	background: black;
}

.panel-object {
	position: relative;
	height: 50px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
}

/*************************/



/********************/

.squares-icon-container {
	position: absolute;
	width: 17px;
	height: 17px;
	left: 50%;
	margin-left: -8.5px;
	top: 50%;
	margin-top: -8.5px;
}

.small-square {
	position: absolute;
	width: 7px;
	height: 7px;
	border: 1px solid white;
	transition: all 0.25s linear;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

#small-square-top-left {
	top: 0;
	left: 0;
}

#small-square-top-middle {
	top: 0;
	left: 10px;
}

#small-square-top-right {
	top: 0;
	right: 0;
}

#small-square-bottom-left {
	top: 10px;
	left: 0;
}

#small-square-bottom-middle {
	top: 10px;
	left: 10px;
}

#small-square-bottom-right {
	top: 10px;
	right: 0;
}

/********************/

section {
	position: relative;
	width: 100%;
	height: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
}

.clear-both {
	clear: both;
}

/********************/

.section-start {
	position: fixed;
	height: 100%;
	background: url(../images/opening-4-bw.jpg);
}

.section-start-content {
	position: absolute;
	width: 240px;
	height: 240px;
	left: 50%;
	margin-left: -120px;
	top: 50%;
	margin-top: -60px;
}

.logo-main {
	position: absolute;
	width: 200px;
	height: auto;
	left: 50%;
	margin-left: -100px;
	top: 0;
}

.middle-line-main {
	position: absolute;
	width: 1px;
	height: 70px;
	left: 50%;
	margin-left: -0.5px;
	bottom: 50px;
	background: white;
	cursor: pointer;
}

.diamond-main {
	position: absolute;
	width: 30px;
	height: auto;
	bottom: 0;
	left: 50%;
	margin-left: -15px;
	cursor: pointer;
}

/********************/

.about-div {
	position: relative;
	height: auto;
	width: 100%;
	background: white;
	text-align: center;
	padding: 150px 100px;
}

.about-div > h1 {
}

.about-div > h3 {
	margin-top: 10px;
	font-size: 30px;
}

.about-div > p {
	display: block;
	margin: 10px auto 0 auto;
	max-width: 1000px;
	line-height: 1.5em;
}

.middle-line-about-div {
	margin: 30px auto 0 auto;
	width: 50px;
	height: 1px;
	background: black;
}

.middle-line-2 {
	margin: 30px auto 0 auto;
	width: 1px;
	height: 50px;
	background: black;
	cursor: pointer;
}

.middle-diamond {
	margin: 15px auto 0;
	width: 20px;
	height: 20px;
	border: 2px solid black;
	background: transparent;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}

/********************/

.event-headline {
	text-align: center;
	margin-bottom: 50px;
}

.event-headline.white {
	color: white;
}

.event-headline > h3 {
}

/********************/

.diagonal-div {
	position: relative;
	height: 50px;
	width: 100%;
	background: white;
	z-index: 10;
}

.diagonal-div:after {
	content: " ";
	position: absolute;
	left: 0;
	bottom: -100px;
	height: 200px;
	width: 100%;
	background: white;
	-webkit-transform: skew(0deg, -4deg);
	-moz-transform: skew(0deg, -4deg);
	-o-transform: skew(0deg, -4deg);
	-ms-transform: skew(0deg, -4deg);
}

/********************/

.diagonal-div-black {
	position: relative;
	height: 50px;
	width: 100%;
	background: black;
	z-index: 10;
}

.diagonal-div-black:after {
	content: " ";
	position: absolute;
	left: 0;
	bottom: -100px;
	height: 200px;
	width: 100%;
	background: black;
	-webkit-transform: skew(0deg, -4deg);
	-moz-transform: skew(0deg, -4deg);
	-o-transform: skew(0deg, -4deg);
	-ms-transform: skew(0deg, -4deg);
}

/********************/

.diagonal-div-opposite {
	position: relative;
	height: 100px;
	width: 100%;
	background: white;
	z-index: 10;
}

.diagonal-div-opposite:before {
	content: " ";
	position: absolute;
	left: 0;
	top: -100px;
	height: 200px;
	width: 100%;
	background: #fff;
	transform: skew(0deg, 4deg);
	-webkit-transform: skew(0deg, 4deg);
	-moz-transform: skew(0deg, 4deg);
	-o-transform: skew(0deg, 4deg);
	-ms-transform: skew(0deg, 4deg);
}

.diagonal-div-opposite-black {
	position: relative;
	height: 100px;
	width: 100%;
	background: black;
	z-index: 10;
}

.diagonal-div-opposite-black:before {
	content: " ";
	position: absolute;
	left: 0;
	top: -100px;
	height: 200px;
	width: 100%;
	background: black;
	transform: skew(0deg, 4deg);
	-webkit-transform: skew(0deg, 4deg);
	-moz-transform: skew(0deg, 4deg);
	-o-transform: skew(0deg, 4deg);
	-ms-transform: skew(0deg, 4deg);
}

/********************/

.section-middle-1 {
	background: url(../images/w-1.jpg);
	/* background-attachment: fixed; */
	background-position: center center;
	height: 600px;
}

.section-middle-2 {
	background: url(../images/mid-2.jpg);
	/* background-attachment: fixed; */
	background-position: center center;
	height: 600px;
}



.section-middle-3 {
	background: url(../images/sharona_0991.jpg);
	/* background-attachment: fixed; */
	background-position: center center;
	height: 600px;
}


/*********************/

.view-more {
	margin-top: 100px;
	text-align: center;
	cursor: pointer;
	transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}

.view-more.white {
	color: white;
}

/*********************/

.container-1-headline {
	position: absolute;
	color: white;
	font-size: 100px;
	text-align: center;
	width: 100%;
	top: 100px;
	left: 0;
	z-index: 1000;
}

/*********************/

#container-2 {
	padding-top: 10px;
	padding-bottom: 200px;
}

/*********************/

#container-3 {
	background-image: url(../images/black-bg.jpg);
	background-color: black;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-top: 200px;
}

/*********************/

#container-4 {
	padding-top: 300px;
}

#container-5 {
	padding-top: 10px;
}


/*********************/


.container {
	position: relative;
	right: 0;
	background: white;
	padding: 0 8% 100px;
	transition: right 0.1s ease-out;
	-webkit-transition: right 0.1s ease-out;
}

.main-img-container {
	position: relative;
	margin: auto;
	cursor: pointer;
	margin-bottom: 20px;
	overflow: hidden;
}

.single-image-container-half-left {
	position: relative;
	float: left;
	width: 50%;
	padding-right: 10px;
	overflow: hidden;
}

.single-image-container-half-right {
	position: relative;
	float: right;
	width: 50%;
	padding-left: 10px;
	overflow: hidden;
}

.single-image-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.main-img {
	display: block;
	height: auto;
	width: 100%;
	transition: all 1.2s ease-out;
	-webkit-transition: all 1.2s ease-out;
}


.main-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
	transition: all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}


/* .main-img-container:hover .main-img-overlay {
	background: rgba(0,0,0,0.5);
} */

.w-30 {
	width: 30%;
}

.w-40 {
	width: 40%;
}

.w-50 {
	width: 50%;
}

.w-60 {
	width: 60%;
}

.w-70 {
	width: 70%;
}

.w-80 {
	width: 80%;
}

.w-90 {
	width: 90%;
}

.w-100 {
	width: 100%;
}

.w-100-special {
	margin: 0 -70px;
}

/*******************************/

.contact-container {
	position: relative;
	padding: 200px 8% 100px 0;
	background: black;
	direction: rtl;
}

.contact-details {
	padding-right: 10px;
	text-align: right;
	color: white;
	font-size: 14px;
	line-height: 1.8em;
	text-transform: uppercase;
	direction: ltr;
}

.contact-details-top-line {
	height: 1px;
	width: 50px;
	background: white;
}

.contact-button {
	position: relative;
	display: block;
	margin-top: 20px;
	width: 140px;
	height: 50px;
	border: 2px solid white;
	border-radius: 25px;
	text-align: center;
	line-height: 46px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	transition: all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
}

.contact-button:hover {
	background: white;
	color: black;
}

/**************************/

#container-7 {
	background: black;
	padding-top: 300px;
}

#container-8 {
	padding-top: 300px;
}

#container-9 {
	padding-top: 10px;
}

#container-10 {
	background-image: url(../images/black-bg.jpg);
	background-color: black;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-top: 200px;
}

#container-11 {
	padding-top: 300px;
}

/**************************/

.closing-container {
	position: relative;
	height: 200px;
	background: url(../images/closing-4.jpg);
	/* background-attachment: fixed; */
	background-position: center center !important;
	-webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.closing-container > .overlay {
	background: rgba(0,0,0,0.7);
}

.rights {
	position: absolute;
	top: 0;
	right: 8%;
	height: 200px;
	line-height: 200px;
	vertical-align: middle;
	color: white;
	font-size: 12px;
}


/**************************/

.big-menu {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: black;
	top: 0;
	left: 0;
	z-index: 10000000000000;
	overflow: scroll;
}

.big-menu-content {
	position: absolute;
	width: 600px;
	height: 500px;
	left: 50%;
	margin-left: -300px;
	top: 50%;
	margin-top: -250px;
}

.logo-big-menu {
	position: absolute;
	top: 0;
	width: 200px;
	height: auto;
	left: 50%;
	margin-left: -100px;
	opacity: 1;
	cursor: pointer;
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}

.big-menu-list {
	position: absolute;
	width: 100%;
	height: 300px;
	left: 0;
	top: 110px;
}

.big-menu-item {
	display: block;
	height: 28px;
	width: 100%;
	line-height: 28px;
	vertical-align: middle;
	text-align: center;
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}

.big-menu-item:hover {
	color: rgba(255,255,255,1);
}

.big-menu-contact {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	color: rgba(255,255,255,1);
	cursor: pointer;
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}

.big-menu-x {
	position: absolute;
	top: 50%;
	margin-top: -10.5px;
	left: 0;
	width: 5%;
	height: 21px;
	z-index: 1000;
	cursor: pointer;
	overflow: hidden;
}

#menu-icon-line-middle-1-x {
	top: 8px;
	transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
}

#menu-icon-line-middle-2-x {
	top: 8px;
	transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-webkit-transform:rotate(135deg);
	-o-transform:rotate(135deg);
	-ms-transform:rotate(135deg);
	
}

/* .big-menu-sixth {
	position: relative;
	width: 100%;
	height: 200px;
	 -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center;
}

#sixth-1 {
	background: url(../images/roland-1.jpg);
}

#sixth-2 {
	background: url(../images/boutique-1.jpg);
}

#sixth-3 {
	background: url(../images/vlad-1.jpg);
}

#sixth-4 {
	background: url(../images/timna-1.jpg);
}

#sixth-5 {
	background: url(../images/stas-1.jpg);
}

#sixth-6 {
	background: url(../images/chanel-1.jpg);
}

.sixth-overlay {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
}

.big-menu-sixth:hover .sixth-overlay {
	background: rgba(0,0,0,0);
} */

.scale {
	transform: scale(1.5);
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
}

.scale-2 {
	transform: scale(1.5);
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	transition: scale 0.5s ease-out;
	-webkit-transition: scale 0.5s ease-out;
}


/*******************************/

.event-container {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: black;
	z-index: 99999999999999999;
}

.event-container-portrait {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: black;
	z-index: 1000;
}

.event-container-portrait-content {
	position: absolute;
	width: 300px;
	height: 90px;
	left: 50%;
	margin-left: -150px;
	top: 50%;
	margin-top: -45px;
}

.rotate-icon {
	position: absolute;
	width: 40px;
	height: auto;
	left: 50%;
	margin-left: -20px;
	top: 0;
}

.rotate-text {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	text-align: center;
	color: white;
	font-size: 12px;
}

.event-container-inner {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	background: transparent;
	overflow: hidden;
}

#event-inner-0 {
	left: -100%;
}

#event-inner-1 {
	left: 0;
}

#event-inner-2 {
	left: 100%;
}

.event-container-inner-img {
	position: absolute;
	top: 30px;
	left: 8%;
	right: 8%;
	bottom: 30px;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

#event-inner-img-0 {
}

#event-inner-img-1 {
}

#event-inner-img-2 {
}

.event-container-arrow-left-container {
	position: absolute;
	left: 0;
	right: 95%;
	height: 20px;
	top: 40%;
	margin-top: -10px;
	cursor: pointer;
	z-index: 5000000;
}

.event-container-arrow-left-inner-container {
	position: absolute;
	height: 10px;
	width: 26px;
	left: 50%;
	margin-left: -13px;
	top: 50%;
	margin-top: -5px;
}

.left-arrow-line {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -1px;
	height: 2px;
	width: 20px;
	background: white;
}

.left-arrow-triangle {
	position: absolute;
	width: 0;
	height: 0;
	top: -1px;
	left: 0;
	border-right: 6px solid white;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.event-container-arrow-right-container {
	position: absolute;
	right: 0;
	left: 95%;
	height: 20px;
	top: 40%;
	margin-top: -10px;
	cursor: pointer;
	z-index: 5000000;
}

.event-container-arrow-right-inner-container {
	position: absolute;
	height: 10px;
	width: 26px;
	left: 50%;
	margin-left: -13px;
	top: 50%;
	margin-top: -5px;
}

.right-arrow-line {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	height: 2px;
	width: 20px;
	background: white;
}

.right-arrow-triangle {
	position: absolute;
	width: 0;
	height: 0;
	top: -1px;
	right: 0;
	border-left: 6px solid white;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.event-container-infos-container {
	position: absolute;
	right: 0;
	left: 95%;
	height: 20px;
	top: 50%;
	margin-top: -10px;
	cursor: pointer;
	z-index: 5000000;
	text-align: center;
	color: white;
	line-height: 20px;
	font-size: 12px;
	vertical-align: middle;
	font-style: italic;
}

.event-desc-container {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 500;
	background: rgba(0,0,0,0.8);
}

.event-desc-inner-container {
	position: absolute;
	width: 100%;
	left: 0;
	height: 140px;
	bottom: 50px;
	color: white;
	text-align: center;
}

.event-desc-inner-container > h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 30px;
}

/*******************/

.headline-image {
	display: block;
	float: right;
	width: 700px;
	height: auto;
	margin-bottom: 20px;
}

.headline-image-2 {
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
	height: 100%;
	opacity: 0.7;
}

