

@charset "UTF-8";

@font-face {
	font-family: 'MuseoThin';
	font-weight: 300;
	src: url("../_fonts/MuseoSansCyrl_300.otf") format("opentype");
}

@font-face {
	font-family: 'MuseoRegular';
	font-weight: 500;
	src: url("../_fonts/MuseoSansCyrl_500.otf") format("opentype");
}

@font-face {
	font-family: 'MuseoBold';
	font-weight: 700;
	src: url("../_fonts/MuseoSansCyrl_700.otf") format("opentype");
}

/*------------- vars --------------*/

:root {
	--marginSiteSide: 50px;

	--widthWorkBlock: 50vw;
	--longSideRatio: 2.5;
	
	--heightMenu: 92px;

	/*    colors    */
	--menuLinkHoverColor: #ff0000;
	--mainBackgroundColor: #ffffff;
	--mainTextColor: #000000;
	--menuSelectColor: #767676;


	--marginWorkTop: 20px;
	--marginWorkSide: 0px;

	--ratioWorkBlock: 0.667;

	--fontSizeRegular: 1.2em;
	
	--fontSizeBottomBlock: 1.0em;	
	--fontSizeCopyright: 0.8em;

}

@media screen and (max-width: 842px) {
	:root {
		--marginSiteSide: 20px;
	}
}

@media screen and (max-width: 480px) {
	:root {
		--marginSiteSide: 5px;
	}
}




html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, 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, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}


html { line-height: 1; }

body {
	color: var(--mainTextColor);
	background-color: var(--mainBackgroundColor);
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: 'MuseoThin';
	overflow-x: hidden;
}

h1, h3 { font-family: 'MuseoBold'; }


a:hover, a:active, a:focus { outline: 0; }





/* ----- wrapper ----- */

.wrapper {
	padding: 0 calc(var(--marginSiteSide) + var(--marginWorkSide));
}


/* ----- menuFlex ----- */

#menuNewport {
	width: 100%;
	height: var(--heightMenu);
	background-color: var(--mainBackgroundColor);
	position: fixed;
	top: 0px;
	z-index: 1002;
}

#menuNewport.transparent {
	background-color:rgba(0, 0, 0, 0);
}

#menuNewport a {
	color: var(--mainTextColor);
	text-decoration: none;
	margin-right: 22px;
}


#menuNewport A.selected {color: var(--menuSelectColor);}

#menuNewport A:hover {color: var(--menuLinkHoverColor)}

#menuFlex {
	height: 100%;
	margin: 0 calc(var(--marginSiteSide) + var(--marginWorkSide));	
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#menuFlex > div {
	xborder: 1px solid teal;
	white-space: nowrap;
	font-family: 'MuseoThin';
	font-size: 1.2em;
}

#menuButton {
	flex-basis: auto;
	display: none;
}

div#menuLogo {
	flex-basis: 50%;
	font-size: 1.22em;
}

#menuItems {
	flex-basis: 45%;
	text-align: right;
}

#langchange {
	flex-basis: 5%;
	text-align: right;
}

#langchange span.selected {display: none;}
#langchange > span:not(.onlyDesktop) {cursor: pointer;}
#langchange > span:hover:not(.onlyDesktop) {color: var(--menuLinkHoverColor);}


.openMenuButton {
	width: 24px;
	height: 24px;
	background: url('../_pic/menu_close.png') no-repeat center center;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition-duration: 0.5s;
}

.openMenuButton.opened {
	background: url('../_pic/menu_open.png') no-repeat center center;
	transform: rotate(-180deg);
}

@media screen and (max-width: 842px) {

	#menuNewport a { margin-right: 0; }

	#menuButton { display: block; }

	#menuItems, #langchange, .onlyDesktop { display: none; }

	#menuLogo {
		xtext-align: center;
		flex-basis: 60%;
	}

	#menuButton { flex-basis: 2%; }

}

#menuHolder {
	height: var(--heightMenu);
}


/* ----- menu popup ----- */

#menuPopup {
	width: 100%;
	height: 1px;
	overflow: hidden;
	background-color: var(--mainBackgroundColor);
	position: fixed;
	top: 0px;
	xopacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 1000;
}

#menuPopup.opened  {
	height: 130vh;
	xopacity: 1.0;
}

@media screen and (min-width: 843px) {
	#menuPopup { display: none; }
}

#menuLinks  { padding-top: 94px; }

#menuLinks a {
	color: var(--mainTextColor);
	text-decoration: none;
	font-size: 3.4em;
	font-size: calc(30px + 2vw);
	line-height: 140%;
	line-height: calc(1.2em + 3vh);
	font-family: 'MuseoBold';	
}

#menuLinks A.selected {color: var(--menuSelectColor);}

#menuLinks a.popUpLang {
	font-family: 'MuseoThin';
	font-size: calc(25px + 2vw);
}





/*------------- banner + slider --------------*/


#banner {
	top: 0px;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	z-index: 0;
}

#bannerHolder {
	margin-top: 100vh;
	height: 1px;
}

@media screen and (max-width: 480px) {
	#banner {
		height: 100vh;
	}

	#bannerHolder {
		margin-top: 100vh;
	}
}



#banner a {
	text-decoration: none;
	color: var(--mainTextColor);
}



.slide {
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition-duration: 2s;
	opacity: 1;
}

.slide[selected] {
	opacity: 1;
}

.slide[selected] ~ .slide {
	opacity: 0;
}


div.slideText {
	padding-top: calc(var(--heightMenu) + 41px);
	padding-left: calc(var(--marginSiteSide) + var(--marginWorkSide));
	padding-right: calc(var(--marginSiteSide) + var(--marginWorkSide) + 240px);
	height: 100%;
	display: flex;
}




.slideText h1 {
	font-size: 3.4em;
	line-height: 120%;
}

.slideText p {
	font-size: calc(9px + 1vw);
	line-height: calc(1.1em + 0.5vw);
	margin-top: 0.8vw;
	/*border: 1px solid pink;*/
	margin-bottom: 12vw;
}

@media screen and (max-width: 842px) {
	.slideText h1 {
		/*font-size: calc(14px + 2.5vw);*/
		font-size: calc(34px + 2.5vw);
		/*padding-top: 10vh;*/
	}
	.slideText p {
		font-size: calc(9px + 1.5vw);
		/*margin-top: 3vw;*/
		margin-bottom: 10vh;
	}
}

@media screen and (max-width: 480px) {
	.slideText h1 {
		font-size: calc(34px + 2.5vw);
		/*padding-top: 14vh;*/
	}
	.slideText p {
		font-size: calc(9px + 2vw);
		margin-top: 3vw;
		margin-bottom: 34vw;
	}
}

.slide > div.light {
	color: #ffffff;
}








#sea {
	width: 100vw;
	padding: var(--marginWorkSide) 0;
	background-color: var(--mainBackgroundColor);
	overflow: hidden;
	position: relative;
	z-index: 12;
}



#laguna {
	margin: 0 var(--marginSiteSide);
}

#laguna > div {
	float: left;
	width: calc((50vw - var(--marginSiteSide)) / 2 - 2 * var(--marginWorkSide));
	height: calc(25vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop));
	/*height: 500px;*/
	margin: var(--marginWorkTop) var(--marginWorkSide);
}

#laguna > div.bigFisch {
	width: calc(50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
	height: calc(50vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop) - 0.1px);
}

@media screen and (max-width: 842px) {
	#laguna > div {
		width: calc(50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
		height: calc(50vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop) - 0.1px);
	}
}

@media screen and (max-width: 480px) {
	#laguna > div, #laguna > div.bigFisch {
		width: calc(100vw - 2 * var(--marginSiteSide) - 2 * var(--marginWorkSide));
		/*width: 100vw;*/
		height: calc(100vw * var(--ratioWorkBlock));
	}
}

#laguna > div.rebel {
	float: right;
}

#laguna a > div {
	height: 100%;
	background-size: cover;
	background-position: center;
	/*transition-duration: 300ms;*/
	/*filter: saturate(0);*/
}

#laguna a:hover > div {
	/*transform: translate(10px, 0px);*/
	/*opacity: 0.9;*/
	/*filter: blur(2px);*/
	/*filter: hue-rotate(-90deg);*/
	/*filter: invert(1);*/
	/*filter: saturate(1);*/
}

#laguna a {
	text-decoration: none;
	color: var(--mainTextColor);
}

#laguna a:hover {
	color: var(--menuLinkHoverColor);
}

#laguna a > p {
	margin-top: 5px;
	/*font-size: calc(4px + 1vw);*/
	font-size: var(--fontSizeRegular);
}

@media screen and (max-width: 842px) {
	#laguna a > p {
		font-size: calc(11px + 1vw);
	}
}

@media screen and (max-width: 480px) {
	#laguna a > p {
		font-size: calc(14px + 1vw);
	}
}




#ocean {
	width: 100vw;
	padding: var(--marginWorkSide) 0;
	background-color: var(--mainBackgroundColor);
	overflow: hidden;
	position: relative;
	z-index: 12;
}






#sea2 {
	width: 100vw;
	padding: var(--marginWorkSide) 0;
	background-color: var(--mainBackgroundColor);
	overflow: hidden;
	position: relative;
	z-index: 12;
}



#laguna2 {
	margin: 0 var(--marginSiteSide);
}

#laguna2 > div {
	float: left;
	width: calc((50vw - var(--marginSiteSide)) / 2 - 2 * var(--marginWorkSide));
	height: calc(25vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop));
	/*height: 500px;*/
	margin: var(--marginWorkTop) var(--marginWorkSide);
}

#laguna2 > div.bigFisch {
	width: calc(50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
	height: calc(50vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop) - 0.1px);
}

@media screen and (max-width: 842px) {
	#laguna2 > div {
		width: calc(50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
		height: calc(50vw * var(--ratioWorkBlock) - 2 * var(--marginWorkTop) - 0.1px);
	}
}

@media screen and (max-width: 480px) {
	#laguna2 > div, #laguna2 > div.bigFisch {
		width: calc(100vw - 2 * var(--marginSiteSide) - 2 * var(--marginWorkSide));
		/*width: 100vw;*/
		height: calc(100vw * var(--ratioWorkBlock));
	}
}

#laguna2 > div.rebel {
	float: right;
}

#laguna2 a > div {
	height: 100%;
	background-size: cover;
	background-position: center;
	/*transition-duration: 300ms;*/
	/*filter: saturate(0);*/
}

#laguna2 a:hover > div {
	/*transform: translate(10px, 0px);*/
	/*opacity: 0.9;*/
	/*filter: blur(2px);*/
	/*filter: hue-rotate(-90deg);*/
	/*filter: invert(1);*/
	/*filter: saturate(1);*/
}

#laguna2 a {
	text-decoration: none;
	color: var(--mainTextColor);
}

#laguna2 a:hover {
	color: var(--menuLinkHoverColor);
}

#laguna2 a > p {
	margin-top: 5px;
	/*font-size: calc(4px + 1vw);*/
	font-size: var(--fontSizeRegular);
}

@media screen and (max-width: 842px) {
	#laguna2 a > p {
		font-size: calc(11px + 1vw);
	}
}

@media screen and (max-width: 480px) {
	#laguna2 a > p {
		font-size: calc(14px + 1vw);
	}
}











#works {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

#works A {
	color: var(--mainTextColor);
	text-decoration: none;
}

#works A:hover .work {
	/*transform: translate(0px, -10px);*/
	/*transform: translate(10px, 0px);*/
	/*transform: rotate(8deg);*/
	/*background-size: 105%;*/
}

#works A:hover {
	color: #ff0000;
}

.worksCell {
	margin-bottom: var(--marginWorkSide);
	/*overflow: hidden;*/
}

.worksCell p {
	padding: 10px 0;
	font-size: calc(8px + 1vw);
}

.work {
	/*width: calc(50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
	height: calc((50vw - var(--marginSiteSide) - 2 * var(--marginWorkSide)) * 2 / 3);*/
	width: calc(49vw - var(--marginSiteSide) - 2 * var(--marginWorkSide));
	height: calc((49vw - var(--marginSiteSide) - 2 * var(--marginWorkSide)) * 2 / 3);
	background-position: center;
	background-size: cover;
	/*transition-duration: 300ms;*/
}

@media screen and (max-width: 842px) {
	.work {
		width: calc(100vw - 2 * (var(--marginSiteSide) + var(--marginWorkSide)));
		height: calc((100vw - 2 * var(--marginSiteSide)) * 2 / 3);
	}
	.worksCell p {
		font-size: calc(8px + 2vw);
	}
}
















#needBrand {
	height: 160px;
	background-color: #e5e5e5;
	border-top: 70px solid white;
	background-image: url('../_pic/fleche-blanche2.png');
	background-repeat: no-repeat;
	background-position: 97% center;
}

#needBrand p {
	color: white;
	font-size: 34px;
	padding: 0 calc(var(--marginSiteSide) + var(--marginWorkSide));
	line-height: 155px;
}




















/*#orderForm {
	background-color: #f1f1f1;
}

#orderForm > div {
	padding: 50px 0px 120px;
}

*/


#formMessage {
	/* margin-top: 42px; */
	margin-top: 34px;
}

#formMessage h4 {
	font-size: 1.6em;
	font-family: 'MuseoBold';
}


#messWait, #messGood, #messError {display: none;}


#formMessage, #formFields {
	margin-left: 30px;
	margin-right: 44px;
}


/*.field {
	margin-top: 38px;
}*/



.field input {
	/*margin-top: 8px;*/
	margin-top: 38px;
	padding: 0px 10px;
	font-size: 16px;
	width: 80%;
	height: 32px;
	border: 1px solid #000000;
	background-color: var(--mainBackgroundColor);
/* 	color: #E4FF17; */
}

.field input.bad {
	border: 1px solid red;
}

.field input::placeholder {
  color: #707070;
}

@media screen and (max-width: 480px) {
	.field input {
		width: 100%;
		margin-top: 28px;
	}
}


.sendButton {
	width: 24%;
	height: 36px;
	line-height: 38px;
	padding: 0 30px;
	margin-top: 48px;
	background-color: #000000;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	color: #ffffff;
	text-transform: uppercase;
}

.sendButton:hover {
	background-color: #ff0000;
	color: #ffffff;
}









/* ----- bottom block ----- */

#bottomBlock {
	background-color: var(--mainBackgroundColor);
	overflow: hidden;
	position: relative;
}

#bottomBlock > div > div {
	float: left;
	width: 50%;
	height: 350px;/*for old*/
	height: 22vw;
}

@media screen and (max-width: 768px) {
	#bottomBlock > div > div {
		width: 100%;
		height: 44vw;
	}
}

#bottomBlock p {
	font-size: var(--fontSizeBottomBlock);
	line-height: 180%;
	margin-top: 14%;
}

#copyright p {
	margin-left: var(--marginWorkSide);
}

@media screen and (max-width: 768px) {
	#bottomBlock p {
		margin-top: 10%;
		font-size: 4vw;
	}
}
@media screen and (max-width: 480px) {
	#bottomBlock p {
		margin-top: 7%;
		font-size: 5vw;
	}

	#copyright p {
		margin-left: 0;
	}
}


#bottomBlock a {
	text-decoration: none;
	color: var(--mainTextColor);
}

#bottomBlock a:hover {
	color: var(--menuLinkHoverColor);
}


.socialnetworks a {
	margin-right: 65px;
}


#copyright {
	background-image: url('../_pic/S_Mark.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}


#bottomBlock p.copys {
	font-size: var(--fontSizeCopyright);
	margin-top: 17%;
}

@media screen and (max-width: 480px) {
	#bottomBlock p.copys {
		font-size: 3vw;
	}
}










