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, font, 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 { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
:focus {	outline: 0;}
ins {	text-decoration: none;}
del {	text-decoration: line-through;}
table { border-collapse: collapse; border-spacing: 0; }
ul, li { float:left; display:inline; }
h1, h2, h3, h4, h5 { font-weight:normal; }
i, em { font-style:normal; }
button, select { border:none; margin:0; padding:0; background:transparent; }
figure { margin:0; padding:0; }
* { box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }

/*	Finish RESET	*/

::-webkit-scrollbar { height:10px; width:10px; background:#888888; }
::-webkit-scrollbar-thumb { background:#222222; }
::-webkit-scrollbar-corner { background:#222222; }

body { margin:0; color:#333; font-size:13px; font-family:'Mont', Arial; line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; }

*::-moz-selection { background:rgba(0, 0, 0, 0.1); }
*::selection { background:rgba(0, 0, 0, 0.1); }

a { color:#000; text-decoration:none;  }
a:hover { color:var(--color-red); text-decoration:none; }

:root {
	--color-dark:#303641;
	--color-red:#D1112B;
	--color-light:#F4F2EF;

	--input-background-color: #FFF;
	--input-border-color: #bfbfbf;
	--input-border-color-inline: #FFF;
	--input-border-color-checked: #00A678;
	--input-background-color-checked: #00C18C;
	--input-border-color-inline-checked: #00C18C;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #00C18C;
	--input-background-color-hover: #FFF;
	--input-border-color-inline-hover: #bfbfbf;
	--input-border-color-focus: #00A678;
}

/* Reset Css */
input, select, textarea, input[type='checkbox'], input[type='radio'] { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; }
input:focus, select:focus, textarea:focus, input[type='checkbox']:focus, input[type='radio']:focus { outline:0; }
input[type='submit'], button { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; outline:0; }

/* Customization checkbox & radio */
input[type='checkbox'], input[type='radio'] { width:24px; height:24px; line-height:24px; min-width:1px !important; margin-right:13px; padding:0; }
input[type='checkbox']::before, input[type='radio']::before { display:block; position:absolute; content:""; width:calc(100% - 2px); height:calc(100% - 2px); background-color:var(--input-background-color); transition:background-color 500ms, border-color 500ms; }
input[type='checkbox']::after, input[type='radio']::after { display:block; position:absolute; content:""; -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); transition:background-color 500ms, border-color 250ms; }

/* Customization checbox */
input[type='checkbox']::before { border-radius:6px; border:solid 1px; border-color:var(--input-border-color); }
input[type='checkbox']::after { border:solid; border-color:var(--input-border-color-inline); border-width:0 3px 3px 0; width:6px; height:12px; left:8px; bottom:6px; }
input[type='checkbox']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='checkbox']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='checkbox']:checked:not(:disabled)::before { border-color:var(--input-border-color-checked); background-color:var(--input-background-color-checked); }
input[type='checkbox']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='checkbox']:disabled::before { border-color:var(--input-border-color-disabled); background-color:var(--input-background-color-disabled); }
input[type='checkbox']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='checkbox']:checked:not(:disabled):focus::before, input[type='checkbox']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color:var(--input-background-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

/* Customization radio */
input[type='radio']::before { border-radius: 50%; border: solid 1px; }
input[type='radio']::after { border: solid; border-color: var(--input-border-color-inline-checked); border-width: 5px; border-radius: 50%; width: 0px; height:0px; left:4px; bottom:4px; }
input[type='radio']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='radio']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='radio']:checked:not(:disabled)::before { border-color: var(--input-border-color-checked); background-color: var(--input-background-color); }
input[type='radio']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='radio']:disabled::before {}
input[type='radio']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='radio']:checked:not(:disabled):focus::before, input[type='radio']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='radio']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color: var(--input-background-color); }
input[type='radio']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

input, textarea, select { float:left; font-size:16px; font-family:'Mont', Arial; border-radius:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:'Mont', Arial; font-size:17px; font-weight:600; }

.input { width:100%; height:50px; padding:0 16px; border:1px solid #999; transition:ease 0.3s; background-color:#FFF; border-radius:8px; box-shadow:5px 5px 0 rgba(0,0,0,0.04); }
.select { background:#FFF url(../images/arrow-select.png) no-repeat right center / auto 5px; box-shadow:none; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.input:focus , .select:focus , .get-started-form .input:focus { border-color:#00C18C; box-shadow:5px 5px 0 rgba(0,0,0,0.08); }

textarea.input { padding-top:13px !important; padding-bottom:13px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 45px 0 30px; cursor:pointer; position:relative; color:#FFF; background-color:#303641; transition:all 0.25s; border-radius:8px; overflow:hidden; }
.button:hover { background-color:#D1112B; }
	.button::after { content:""; position:absolute; top:0; bottom:0; right:15px; width:24px; background:url(../images/arrow-white-right.png) no-repeat right center / auto 20px; transition:all 0.25s; }
	.button:hover::after { right:12px; }

a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.vize { float:left; width:100%; padding-top:80px; position:relative; }
	.outer { float:left; width:100%; padding:0 70px; position:relative; }
		.wrap , .wrap-slim { margin:0 auto; width:1440px; min-height:10px; position:relative; }
		.wrap-right { float:right; }
		.wrap-slim { width:100%; max-width:1060px; }

.tac { text-align:center; }

.fl { float:left !important; }
.fr { float:right !important; }
.fn { float:none !important; }

.w100 { float:left; width:100% !important; }
.w50 { float:left; width:50%; }
.w25 { float:left; width:25%; }
.mt30 { margin-top:30px; }
.mt20 { margin-top:20px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; height:80px; z-index:8000; transition:all 0.7s; background-color:#FFF; }
.nav-up , .nav-down { box-shadow:0 0 15px rgba(0,0,0,0.07); }

	#logo { position:absolute; top:15px; left:calc(50% - 60px); width:120px; z-index:300; transition:all 0.5s; text-align:center; }
		#logo a { display:inline-block; }
			#logo img { float:left; height:50px; transition:all 0.5s; }
			#logo img:hover { opacity:0.6; }
			/* #logo a::after { content:""; float:right; width:91px; height:32px; margin-left:15px; background:url(../images/slogan.png) no-repeat 0 0 / 100% 100%; } */

	.nav-icon { float:left; width:120px; height:60px; padding-left:44px; margin-top:10px; position:relative; cursor:pointer; color:#000; font-size:14px; font-weight:600; letter-spacing:2px; line-height:60px; z-index:300; transition:all 0.4s; }
	.nav-icon-close { color:#D1112B; }
	.scroll .nav-icon { border-radius:0; }
		.nav-icon span { position:absolute; top:50%; left:0; width:20px; height:2px; margin-top:-1px; background-color:transparent; transition:all 0.5s; z-index:10; }
			.nav-icon span::before { content:""; position:absolute; top:-6px; left:0; right:-10px; height:2px; background-color:#000; transition:all 0.5s; }
			.nav-icon span::after { content:""; position:absolute; bottom:-6px; left:0; right:-10px; height:2px; background-color:#000; transition:all 0.5s; }

		.nav-icon-close span { background-color:transparent; }
			.nav-icon-close span::before {
				-webkit-transform:rotate(-135deg);
				-moz-transform:rotate(-135deg);
				-o-transform:rotate(-135deg);
				-ms-transform:rotate(-135deg);
				transform:rotate(-135deg);
				top:0;
				background-color:#D1112B;
			}
			.nav-icon-close span::after {
				-webkit-transform:rotate(135deg);
				-moz-transform:rotate(135deg);
				-o-transform:rotate(135deg);
				-ms-transform:rotate(135deg);
				transform:rotate(135deg);
				bottom:0;
				background-color:#D1112B;
			}

	.header-lang-wrap { float:left; width:60px; margin-top:20px; position:relative; z-index:100; color:#666; font-size:14px; font-weight:600; letter-spacing:1px; transition:all 0.3s; }
		.header-lang-wrap::before { content:""; position:absolute; top:5px; bottom:5px; left:0; width:1px; background-color:#E8E8E8; }
		.header-lang-icon { float:right; width:60px; height:40px; padding-left:24px; position:relative; background:url(../images/arrow-down.png) no-repeat right center / 10px 5px; cursor:pointer; z-index:250; line-height:40px; }

		.header-lang { position:absolute; top:45px; right:-5px; width:60px; background-color:#D1112B; display:none; z-index:300; text-align:center; border-radius:4px; }

			.header-lang::before {
				content:"";
				border-bottom:4px solid transparent;
				border-left:8px solid transparent;
				border-right:8px solid transparent;
				height:0;
				position: absolute;
				width:0;
				left:50%;
				top:-4px;
				margin-left:-8px;
				border-bottom-color:#D1112B;
			}

			.header-lang ul { width:100%; }
				.header-lang li { width:100%; }
					.header-lang li a { float:left; width:100%; color:#FFF; font-weight:500; line-height:48px; box-shadow:inset 0 -1px 0 rgba(255,255,255,0.2); }
					.header-lang li:last-child a { box-shadow:none; }
					.header-lang li a:hover { opacity:0.7; }

	.search-icon { float:right; width:40px; height:40px; margin:20px; position:relative; cursor:pointer; transition:all 0.2s; z-index:100; text-indent:-9999px; }
		.search-icon::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/icon-search.png) no-repeat center / 20px; opacity:0.6; transition:all 0.2s; }
		.search-icon-close::before { background-image:url(../images/icon-close-2.png); background-size:14px !important; opacity:1; }
		.search-icon:hover::before { background-size:18px; }

	.header-search { position:absolute; right:0; top:70px; width:400px; z-index:1100; display:none; }
		.header-search .input { height:44px; line-height:44px; border-radius:8px; background-color:#FFF; border:1px solid #303641; }
		.header-search button { position:absolute; top:0; right:0; bottom:0; width:48px; background:url(../images/icon-search.png) no-repeat center / 16px; text-indent:-9999px; }
		.header-search button:hover { background-size:18px; }

	.online-store { float:right; margin-top:20px; position:relative; z-index:100; }
		.online-store a { float:left; height:40px; padding:0 19px 0 14px; position:relative; border:1px solid #D1112B; font-weight:700; font-size:11px; color:#D1112B; letter-spacing:1px; line-height:40px; border-radius:20px; transition:all 0.4s; }
		.online-store a:hover { color:#FFF; background-color:#D1112B; }
			.online-store a::before { content:""; float:left; width:16px; height:38px; margin-right:10px; background:url(../images/icon-mouse.png) no-repeat center / 16px; transition:all 0.4s; }
			.online-store a:hover::before { background-image:url(../images/icon-mouse-2.png); }

.nav-buttons { display:none; }

/*	Start NAVIGATION	*/

#nav-wrap { position:fixed; top:80px; bottom:0; left:0; right:0; width:auto; height:calc(100vh - 80px); padding:0; box-shadow:inset 0 1px 0 rgba(0,0,0,0.05); background-color:#FFF; z-index:7200; display:none; }

#nav-wrap .wrap { height:100%; }

#nav { float:left; width:71%; height:100%; position:relative; letter-spacing:1px; overflow:hidden; overflow-y:auto; }

	#nav::-webkit-scrollbar { width:10px; }
	#nav::-webkit-scrollbar-track { background:#959BA6; }
	#nav::-webkit-scrollbar-thumb { background-color: #000; }
	#nav { scrollbar-color:#000 #959BA6; scrollbar-width:thin; }

	#nav ul { width:100%; height:100%; display:flex; flex-flow:row wrap; }
		#nav li { width:25%; height:50%; padding:20px 40px; position:relative; box-shadow:inset 1px 0 0 #F3F3F4; }
		#nav li:hover { z-index:10; }
			#nav li > a { float:left; width:100%; padding:10px 0; position:relative; font-size:14px; font-weight:600; color:#979AA0; transition:all 0.3s; z-index:10; }
			#nav li > a:hover { color:#303540; }
			#nav li > a.active { color:#D1112B; box-shadow:inset 0 -2px 0 #D1112B; }
				#nav li > a picture { float:left; width:100%; padding-bottom:20px; }
					#nav li > a picture img { max-width:100%; max-height:80px; }
				#nav li > a strong { float:left; width:100%; font-weight:600; }

			.nav-sub-menu { float:left; width:100%; margin:5px 0 15px 0; position:relative; z-index:20; }
				.nav-sub-menu a { float:left; width:100%; padding:5px 0; position:relative; font-size:13px; font-weight:700; transition:all 0.3s; }
					.nav-sub-menu a::before { content:""; position:absolute; top:6px; bottom:8px; left:0; width:1px; background-color:#D1112B; transform: skewX(-15deg); opacity:0; transition:all 0.15s; }
					.nav-sub-menu a:hover::before { left:-10px; width:2px; opacity:1; }

#nav-vize { float:right; width:29%; height:100%; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; }
	#nav-vize::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,rgba(48,54,65,0.8),#303641); }
	#nav-vize ul { width:100%; padding:30px 60px 30px 100px; position:relative; z-index:100; }
		#nav-vize li { width:100%; }
			#nav-vize li a { float:left; width:100%; position:relative; color:#FFF; font-size:24px; line-height:60px; transition:all 0.4s; }
			#nav-vize li a:hover { color:#ACAFB3; }
				#nav-vize li a::before { content:""; position:absolute; top:14px; bottom:17px; left:0; width:1px; background-color:#FFF; transform: skewX(-15deg); opacity:0; transition:all 0.2s; }
				#nav-vize li a:hover::before { left:-20px; width:3px; opacity:1; }

.nav-opened { overflow:hidden; }

.connect-whatsapp { position:fixed; bottom:20px; right:20px; z-index:7990; }
	.connect-whatsapp a { float:right; width:48px; height:48px; border:2px solid #FFF; background-color:#27C34B; border-radius:50%; position:relative; text-indent:-9999px; box-shadow:0 0 15px rgba(0,0,0,0.2); }
	.connect-whatsapp a:hover { background:linear-gradient(45deg,#00C451,#047737 100%); }
		.connect-whatsapp a::before { content:""; position:absolute; top:0; left:0; bottom:0; right:0; background:url(../images/icon-whatsapp.png) no-repeat center / 50px; }

/*	Finish TOP	*/

.controls { height:100%; }
	.slick-prev , .slick-next {
		position:absolute;
		top:50%;
		width:48px;
		height:48px;
		margin-top:-24px;
		text-indent:-9999px;
		cursor:pointer;
		z-index:1000;
		transition:all 0.2s ease;
		background:#FFF url(../images/arrow-left.png) no-repeat center / auto 24px;
		border-radius:50%;
		box-shadow:0 0 20px rgba(16,41,75,0.1);
		}

	.slick-prev { left:15px; }
	.slick-next { right:15px; background-image:url(../images/arrow-right.png); }

	.slick-prev:hover { background-position:40% center; }
	.slick-next:hover { background-position:60% center; }

	ul.slick-dots { position:absolute; text-align:center; right:0; left:0; bottom:0; padding:50px 0 20px 0; z-index:1000; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.2)); }
		ul.slick-dots li { float:none; height:3px; margin:0 5px; display:inline-block; transition:all 0.3s; }
			ul.slick-dots li button { float:left; width:20px; height:3px; cursor:pointer; background-color:#FFF; transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.5; }
			ul.slick-dots li button:hover { opacity:0.6; }
			ul.slick-dots li.slick-active button { opacity:1; }

.slider-hero-wrap { float:left; width:100%; height:calc(100vh - 80px); position:relative; z-index:700; }

	.slider-hero { float:left; width:100%; position:relative; text-align:center; background-color:var(--color-light); border-radius:16px; }
		.slider-hero .slick-list { overflow:hidden; }
		.slider-hero-item { float:left; width:100%; height:calc(100vh - 150px); min-height:540px; position:relative; overflow:hidden; border-radius:16px; }
			/* .slider-hero-item::after { content:""; position:absolute; top:10%; bottom:10%; left:10%; right:10%; z-index:20; background-image:radial-gradient(#000,rgba(0,0,0,0.0) 65%); opacity:0.65; } */

			.item-zoom { position:absolute; top:0; bottom:0; left:0; right:0; background-size:cover; background-position:center; background-repeat:no-repeat; transition:all 2.5s; transform-origin:center; transform:scale(1.4); }
			.slick-current .item-zoom { transform:scale(1); }

			.slider-hero-video { position:absolute; top:0; bottom:0; left:0; right:0; width:100%; height:100%; object-fit:cover; }

			.slider-hero-title { position:absolute; top:0; bottom:0; left:0; right:0; }

			.slider-hero-title-in { display:inline-block; width:60%; position:relative; z-index:7700; font-family:'Retro Signature'; transform:skewY(-5deg); }

			.slider-hero-title strong { float:left; width:100%; position:relative; font-size:120px; font-weight:400; line-height:75%; color:#FFF; }
			.slider-hero-title article { float:left; width:100%; padding-top:46px; position:relative; font-size:18px; line-height:30px; }
				.slider-hero-title article::before { content:""; position:absolute; top:20px; left:-40px; width:80px; height:2px; background-color:#D1112B; }

			.slider-hero-go { float:left; width:100%; margin-top:20px; }
				.slider-hero-go a { display:inline-block; padding:0 10px; color:#FFF; letter-spacing:1px; line-height:50px; box-shadow:inset 0 -2px 0 rgba(255,255,255,0.2); transition:all 0.4s; }
				.slider-hero-go a:hover { padding:0 20px; letter-spacing:2px; box-shadow:inset 0 -2px 0 #FFF; }

			.slider-hero-item picture , .slider-hero-item picture img { float:left; width:100%; display:none; }

		.slider-hero .slick-prev { left:-24px; }
		.slider-hero .slick-next { right:-24px; }

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

.slider-gallery-wrap { float:left; width:100%; position:relative; overflow:hidden; }
	.slider-gallery { float:left; width:100%; position:relative; overflow:hidden; }
		.slider-gallery .slick-list { float:left; width:100%; position:relative; }
			.slider-gallery .slick-list::before { content:""; position:absolute; top:0; bottom:0; left:10px; width:calc(20% - 20px); background-image:linear-gradient(90deg,#FFF,rgba(255,255,255,0.0)); z-index:10; }
			.slider-gallery .slick-list::after { content:""; position:absolute; top:0; bottom:0; right:10px; width:calc(20% - 20px); background-image:linear-gradient(-90deg,#FFF,rgba(255,255,255,0.0)); z-index:10; }
		.slider-gallery-item { float:left; width:100%; padding:0 10px; position:relative; }
			.slider-gallery-item section { float:left; width:100%; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; }
			.slider-gallery-item.slick-center section { filter:none; -webkit-filter:none; }
				.slider-gallery-item section::before { content:""; position:absolute; top:0; left:0; right:0; bottom:0; background-image:linear-gradient(45deg,#000,rgba(0, 0, 0, 0.0)); z-index:2; opacity:0.25; }
				.slider-gallery-item section article { position:absolute; left:30px; bottom:0; padding:25px 0; color:#FFF; z-index:5; box-shadow:inset 0 -2px 0 #FFF; font-weight:600; letter-spacing:1px; transition:all 0.3s; opacity:0.5; }
					.slider-gallery-item section article strong { display:block; padding-bottom:7px; font-weight:500; font-size:20px; font-family:Ivy Mode; line-height:40px; transition:all 0.75s; }

			.slider-gallery-item img { float:left; width:100%; }

.slider-wide { float:left; width:100%; position:relative; overflow:hidden; }
	.slider-wide div { float:left; width:100%; position:relative; }
		.slider-wide div a , .slider-full div img { float:left; width:100%; }
		.slider-wide div a { background-size:cover; background-position:center; background-repeat:no-repeat; }

/*	Finish SLIDER	*/

.hero-nav-wrap { position:absolute; left:0; right:0; bottom:0; z-index:1100; }
	.hero-nav-in { float:left; width:100%; position:relative; z-index:1100; transition:all 0.7s; }
		.hero-nav-in::before { content:""; position:absolute; top:0; bottom:0; left:50%; right:50%; background-color:#FFF; box-shadow:0 0 20px rgba(0,0,0,0.08); transition:all 0.6s; opacity:0; }
		.hero-nav-in.is-sticky::before { left:-70px; right:-70px; opacity:1; }

	.hero-nav-title { float:left; width:100%; margin-bottom:30px; position:relative; text-align:center; overflow:hidden; }
		.hero-nav-title span { width:240px; display:inline-block; position:relative; color:#FFF; font-size:12px; font-weight:500; letter-spacing:2px; }
			.hero-nav-title span::before , .hero-nav-title span::after { content:""; position:absolute; top:50%; right:240px; width:2000px; height:1px; background-color:#FFF; opacity:0.1; }
			.hero-nav-title span::after { right:auto; left:240px; }

	.hero-nav { float:left; width:100%; position:relative; text-align:center; z-index:800; }
		.hero-nav ul { width:calc(100% + 12px); margin-left:-6px; }
			.hero-nav li { width:16.66667%; padding:0 6px; position:relative; }
			.hero-nav li:hover { z-index:10; }
				.hero-nav li > a { float:left; width:100%; height:150px; position:relative; font-size:14px; font-weight:500; letter-spacing:1px; transition:all 0.3s; z-index:10; }
				.hero-nav-in.is-sticky .hero-nav li > a { height:70px; padding-bottom:4px; }
					.hero-nav li > a picture { float:left; width:100%; height:100px; padding:15px 0; background-color:#FFF; border-radius:8px; box-shadow:0 0 20px rgba(0,0,0,0.13); transition:all 0.5s; }
					.hero-nav-in.is-sticky .hero-nav li > a picture { margin-top:-60px; opacity:0; }
						.hero-nav li > a picture img { height:100%; object-fit:cover; }
					.hero-nav li > a strong { float:left; width:100%; /*height:60px; */display:flex; align-items:center; text-align:center; }
						.hero-nav li > a strong small { width:100%; }

				.hero-nav li:nth-child(1) > a { box-shadow:inset 0 -4px 0 #D1112B; }
				.hero-nav li:nth-child(2) > a { box-shadow:inset 0 -4px 0 #0076AA; }
				.hero-nav li:nth-child(3) > a { box-shadow:inset 0 -4px 0 #FDB802; }
				.hero-nav li:nth-child(4) > a { box-shadow:inset 0 -4px 0 #CB5699; }
				.hero-nav li:nth-child(5) > a { box-shadow:inset 0 -4px 0 #46BABD; }
				.hero-nav li:nth-child(6) > a { box-shadow:inset 0 -4px 0 #A07963; }

				.hero-nav li:hover > a { box-shadow:inset 0 -4px 0 #303641 !important; }

				.hero-nav-menu { display:none; position:absolute; bottom:60px; left:6px; right:6px; padding:15px; background-color:#D1112B; box-shadow:0 10px 40px rgba(0,0,0,0.1); z-index:20; border-radius:8px; }
				.hero-nav-in.is-sticky .hero-nav-menu { bottom:auto; top:60px; }
					.hero-nav-menu a { float:left; width:100%; padding:10px 15px; position:relative; font-weight:600; font-size:13px; color:#FFF; letter-spacing:1px; transition:all 0.3s; border-radius:6px; }
					.hero-nav-menu a:hover { color:#FFF; background-color:rgba(0,0,0,0.1); }

				.hero-nav li:nth-child(1):hover .hero-nav-menu { background-color:#D1112B; }
				.hero-nav li:nth-child(2):hover .hero-nav-menu { background-color:#0076AA; }
				.hero-nav li:nth-child(3):hover .hero-nav-menu { background-color:#FDB802; }
				.hero-nav li:nth-child(4):hover .hero-nav-menu { background-color:#CB5699; }
				.hero-nav li:nth-child(5):hover .hero-nav-menu { background-color:#46BABD; }
				.hero-nav li:nth-child(6):hover .hero-nav-menu { background-color:#A07963; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; }
.mask-top { top:0; bottom:auto; }
	.mask > img , .mask-top > img { float:left; width:100%; }

/*	Start FOOTER	*/

.ig-block-top { float:left; width:100%; position:relative; background-color:var(--color-light); }
	.ig-block-top .wrap { background:url(../images/rainbow.png) no-repeat 0 0 / 100% 2px; }
.ig-block { float:left; width:100%; position:relative; background-color:var(--color-light); overflow:hidden; }
	.ig-block::before { content:""; position:absolute; top:50%; bottom:0; left:0; right:0; background-color:#303641; }
	.ig-block ul { width:100%; margin-bottom:-20px; display:flex; flex-flow:row wrap; }
		.ig-block li { width:16.66667%; padding:0 10px; margin-bottom:20px; }
			.ig-block li a { float:left; width:100%; border-radius:6px; overflow:hidden; }
				.ig-block li a img { float:left; width:100%; transform-origin:center; transition:all 1.25s; }
				.ig-block li a:hover img { transform:scale(1.15, 1.15); }

.footer-out { float:left; width:100%; position:relative; background-color:#303641; color:#FFF; overflow:hidden; }

	.join-us-wrap { float:left; width:100%; padding:80px 0; position:relative; color:#FFF; }
		.join-us-wrap .page-title { margin-top:6px; margin-bottom:34px; }
		.join-us { float:left; width:100%; margin-top:30px; position:relative; }
			.join-us article { float:left; width:50%; height:50px; padding-left:60px; font-size:20px; background:url(../images/icon-join.png) no-repeat 0 center / auto 40px; display:flex; align-items:center; }
			.join-us section { float:left; width:50%; position:relative; }
			.join-us .input { width:calc(100% - 130px); padding:0 25px; border-radius:25px; box-shadow:none; border:0; }
			.join-us .input:focus { box-shadow:0 0 27px rgba(0,0,0,0.08); background-color:#FFF; }
			.join-us .button { float:right; width:120px; padding:0 0 0 25px; border-radius:25px; background-color:#000; text-align:left; font-size:14px; }

	.footer { float:left; width:100%; position:relative; box-shadow:inset 0 1px 0 rgba(255,255,255,0.05) , inset 0 -1px 0 rgba(255,255,255,0.05); }
		.footer a , .copyright a { color:#FFF; }
		.footer a:hover , .copyright a:hover { text-decoration:underline; }

		.footer-left { float:left; width:25%; padding:60px 0; position:relative; }
		.footer-right { float:left; width:75%; padding:60px 0 80px 120px; position:relative; box-shadow:inset 1px 0 0 rgba(255,255,255,0.06); }

		.footer-logo { float:left; width:100%; }
			.footer-logo picture { float:left; width:100%; }
				.footer-logo picture img { float:left; height:50px; }
			.footer-logo strong { float:left; width:100%; margin:16px 0 24px 0; font-weight:400; }

		.footer-social { float:left; width:100%; }
			.footer-social li { padding-right:20px; }
			.footer-social li:last-child { padding-right:0; }
				.footer-social li a { float:left; border:1px solid rgba(255,255,255,0.06); border-radius:50%; transition:all 0.25s; }
				.footer-social li a:hover { border-color:#FFF; }
					.footer-social li a img { float:left; height:50px; margin:-1px; }

		.footer-title { float:left; width:100%; padding:26px 0 15px 0; position:relative; font-size:14px; font-weight:600; color:#ACAFB3; letter-spacing:1px; }

		.footer-block { float:left; width:33.33334%; padding:0 15px; }

		.footer-phone { float:left; width:100%; margin:18px 0 17px 0; font-size:24px; font-weight:600; line-height:30px; text-align:right; }

		.footer-links { float:left; width:100%; text-align:center; }
			.footer-links ul { width:100%; }
				.footer-links li { width:100%; margin-bottom:25px; }
				.footer-links li:last-child { margin-bottom:0; }
					.footer-links li a { float:left; width:100%; height:45px; padding-left:14px; position:relative; font-size:14px; font-weight:600; line-height:43px; border:1px solid #FFF; transition:all 0.4s; border-radius:25px; }
					.footer-links li a:hover { background-color:#000; text-decoration:none; }
						.footer-links li a img { position:absolute; top:calc(50% - 8px); left:14px; height:16px; transition:all 0.4s; }
						.footer-links li a:hover img { left:17px; transition:all 0.2s; }

		.footer-block-content { float:left; width:100%; }
			.footer-block-content > ul { width:100%; }
				.footer-block-content > ul li { width:100%; }
					.footer-block-content > ul li a { float:left; width:100%; padding:5px 0; }

		.copyright { float:left; width:100%; padding:60px 0; position:relative; z-index:10; font-size:13px; font-weight:300; color:rgba(255,255,255,0.7); }
			.copyright .left { float:left; width:calc(100% - 180px); }
				.copyright .left section { float:left; width:100%; margin-bottom:10px; }
				.copyright .left section:last-child { margin-bottom:0; }
					.copyright .left section a { float:left; font-weight:400; }
					.copyright .left section i { float:left; margin:0 20px; opacity:0.3; }
			.copyright .right { float:right; }
				.copyright .right a { display:inline-block; }
					.copyright .right a img { float:right; height:24px; margin-top:-2px; margin-bottom:-2px; margin-left:7px; }


/*	Start CONTENT	*/

.welcome-wrap { float:left; width:100%; margin-top:70px; position:relative; background-color:var(--color-light); border-radius:16px; }
	.welcome { float:left; width:calc(50% - 80px); position:relative; }
	.welcome-right { position:absolute; top:0; bottom:0; right:0; width:50%; }

		.welcome-photo { position:absolute; top:70px; bottom:-70px; left:0; width:calc(50% - 20px); background-size:cover; background-position:center; background-repeat:no-repeat; border-radius:16px; overflow:hidden; }
			.welcome-photo::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:var(--color-red); mix-blend-mode:multiply; opacity:0.5; }

		.welcome-stats { position:absolute; top:70px; bottom:70px; right:-70px; width:calc(50% + 50px); padding:80px; padding-right:0 !important; background-color:var(--color-dark); color:#FFF; border-radius:16px 0 0 16px; display:flex; align-items:center; }
			.welcome-stats::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-furniture.png) no-repeat 0 center / cover; mix-blend-mode:overlay; opacity:0.33; }
			.welcome-stats ul { width:100%; position:relative; }
				.welcome-stats li { width:100%; }
					.welcome-stats li::after { content:""; float:right; width:100%; height:2px; margin:50px 0; background-color:#FFF; mix-blend-mode:overlay; }
					.welcome-stats li:last-child::after { display:none; }
					.welcome-stats li section { float:left; width:100%; }
						.welcome-stats li section strong { float:left; width:100%; font-size:78px; font-weight:600; line-height:100%; }
						.welcome-stats li section span { float:left; width:100%; font-size:20px; line-height:100%; }

	.welcome-video { position:absolute; top:0; bottom:0; right:0; width:100%; border-radius:16px; overflow:hidden; }
		.welcome-video a { float:left; width:100%; height:100%; position:relative; }
			.welcome-video a::before , .welcome-video a::after { content:""; position:absolute; top:50%; left:50%; width:360px; height:360px; margin:-180px 0 0 -180px; border:1px solid #FFF; border-radius:50%; z-index:9; opacity:0.3; transition:all 1s; }
			.welcome-video a::after { transform:scale(1.7, 1.7); }
			.welcome-video a:hover::before { transform:scale(0.8, 0.8); opacity:0.6; }
			.welcome-video a:hover::after { transform:scale(1.3, 1.3); opacity:0.6; }
			.welcome-video a picture { float:left; width:100%; height:100%; position:relative; overflow:hidden; text-align:center; }
			.welcome-video a picture::after { content:""; position:absolute; top:50%; left:50%; width:80px; height:80px; margin:-40px 0 0 -40px; background:#000 url(../images/icon-play.png) no-repeat 55% center / auto 30px; z-index:100; border-radius:50%; transition:all 0.5s; }
			.welcome-video-video a:hover picture::after { background-color:#000; }
				.welcome-video a picture figure { float:left; width:100%; height:100%; padding:0; margin:0; background-size:cover; background-position:center; background-repeat:no-repeat; transform-origin:center; transition:all 1.5s; }
				.welcome-video a:hover picture figure { transform:scale(1.2, 1.2); }
				.welcome-video a picture figure::after { content:""; position:absolute; left:0; right:0; top:0; bottom:100%; background-color:var(--color-red); transition:all 0.7s; opacity:0; }
				.welcome-video a:hover picture figure::after { bottom:0; opacity:0.5; }
				.welcome-video a picture figure img { float:left; width:100%; max-height:400px; }

.vize-video { float:left; width:100%; margin-top:0 !important; position:relative; top:auto; bottom:auto; right:auto; }
	.vize-video a picture figure img { max-height:480px; }

.vize-stats { float:left; width:100%; position:relative; z-index:100; }
	.vize-stats ul { width:100%; display:flex; flex-flow:row wrap; }
		.vize-stats li { margin-right:60px; position:relative; }
		.vize-stats li:last-child { margin-right:0; }
			.vize-stats li section { float:left; width:100%; position:relative; display:flex; align-items:center; }
				.vize-stats li strong { float:left; margin-right:20px; font-size:81px; font-weight:200; color:var(--color-dark); letter-spacing:-2px; line-height:100px; }
				.vize-stats li span { float:left; max-width:100px; font-size:16px; color:#999; letter-spacing:0.5px; }

.vize-stats-wrap { float:left; width:100%; position:relative; text-align:center; border-top:1px solid #EEE; }
	.vize-stats-wrap .vize-stats { float:none; width:auto; display:inline-block; }

.vize-catalog-wrap { float:left; width:100%; margin-top:20px; position:relative; }
	.vize-catalog { float:left; width:calc(57% - 30px); padding-top:70px; position:relative; }
		.vize-catalog a { float:left; width:100%; height:240px; position:relative; background-color:#6C737D; background-size:auto 100%; background-position:right center; background-repeat:no-repeat; display:flex; align-items:center; color:#FFF; font-size:15px; }
			.vize-catalog a::after { content:""; position:absolute; bottom:0; left:-12px; width:24px; height:24px; background-color:#FFF; transform:skewX(45deg); }
			.vize-catalog a section { float:left; width:100%; padding-left:100px; position:relative;  }
				.vize-catalog a section::before { content:""; position:absolute; top:-8px; bottom:-8px; left:0; width:3px; background-color:#000; transition:all 0.4s; }
				.vize-catalog a:hover section::before { width:5px; background-color:#FFF; }
				.vize-catalog a section strong { display:block; font-weight:500; letter-spacing:2px; }
				.vize-catalog a section span { display:block; margin-top:4px; font-size:64px; font-weight:600; line-height:60px; }
	.vize-catalog-photo { position:absolute; top:0; bottom:0; right:0; width:43%; }
		.vize-catalog-photo picture { float:left; width:calc(100% - 100px); height:100%; position:relative; background:url(../images/bg-cat.png) no-repeat center / cover; }
			.vize-catalog-photo picture::after { content:""; position:absolute; bottom:0; right:-12px; width:24px; height:24px; background-color:#FFF; transform:skewX(-45deg); }
			.vize-catalog-photo picture img { float:left; width:100%; }

.vize-showcase { float:left; width:100%; margin-bottom:20px; position:relative; background-color:#F5F5F5; letter-spacing:0.5px; }
	.showcase-item { float:left; width:25%; position:relative; }
	.showcase-item:first-child { width:50%; }

	.showcase-item-red { background-color:#D1112B; color:#FFF !important; }

		.showcase-item img { float:left; width:100%; }

	.showcase-content { position:absolute; top:0; bottom:0; left:0; right:0; overflow:hidden; }

		.showcase-content picture { position:absolute; top:0; bottom:0; left:0; right:0; background-size:cover; background-position:center; background-repeat:no-repeat; transform-origin:center; transition:all 1.5s; }
		.showcase-item:hover .showcase-content picture { transform:scale(1.2, 1.2); }

		.showcase-cat { position:absolute; bottom:0; left:0; right:0; padding:100px 40px 29px 40px; color:#FFF; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.75)); z-index:10; }
			.showcase-cat strong { float:left; width:100%; font-size:21px; font-weight:600; line-height:30px; }
			.showcase-cat small { float:left; padding-right:25px; margin-top:8px; font-size:15px; font-weight:600; background:url(../images/arrow-white-right.png) no-repeat right 40% / auto 14px; transition:all 0.3s; opacity:0.5; }
			.showcase-item:hover .showcase-cat small { padding-right:35px; opacity:1; }

		.showcase-text { position:absolute; top:0; bottom:0; left:0; right:0; display:flex; align-items:center; z-index:100; }

			.showcase-text::after { content:""; position:absolute; bottom:0; right:0; width:50px; height:50px; background:url(../images/arrow-right.png) no-repeat center / auto 14px; }
			.showcase-item-red .showcase-text::after { background-image:url(../images/arrow-white-right.png); }

			.showcase-text section { width:100%; padding:20px 40px; }
				.showcase-title { float:left; width:100%; font-size:21px; font-weight:600; line-height:30px; }
				.showcase-summary { float:left; width:100%; margin-top:5px; font-size:16px; line-height:25px; }

.page-title { float:left; width:100%; margin:56px 0 24px 0; position:relative; font-size:46px; font-weight:600; color:#000; letter-spacing:-1px; line-height:50px; z-index:30; }
.page-title.xl { font-size:56px; font-weight:700; line-height:60px; }
.page-title-single { margin-top:6px; margin-bottom:4px; }
.page-title-white { color:#FFF; }
.page-title-center { text-align:center; }

	.page-title small { float:left; width:100%; padding:30px 0 10px 0; position:relative; font-size:14px; font-weight:600; color:var(--color-red); line-height:20px !important; letter-spacing:2px; text-transform:uppercase; }
	.page-title-single small { padding-top:0; }
	.page-title section , .page-title strong { float:left; width:100%; margin:5px 0; position:relative; }
	.page-title strong { font-weight:600; }
	.page-title section { color:var(--color-dark); }
	.page-title article { float:left; width:100%; margin:5px 0; position:relative; font-size:30px; line-height:40px; }

.fw-300 { font-weight:300; }

.page-summary { float:left; width:100%; position:relative; font-size:23px; font-weight:300; color:#757575; line-height:40px; z-index:30; }

.page-hero-text { float:left; width:100%; position:relative; font-size:33px; font-weight:300; line-height:50px; z-index:30; }

.page-about { float:left; width:100%; margin:-21px 0 31px 0; position:relative; font-size:20px; color:#555; line-height:30px; z-index:20; }
.page-about.text-white { font-weight:300; }
.product-about { line-height:40px; }
.page-about-single { margin-top:9px !important; }
.page-summary-left { padding-left:0 !important; padding-right:0 !important; text-align:left; }
.page-text { font-size:17px; line-height:40px; }
	.page-about strong , .page-about b { font-weight:600; color:#000; }
	.page-about a { font-weight:600; text-decoration:underline; }
	.page-about a:hover { text-decoration:none; }

.text-white { color:#FFF !important; }
.two-column { column-count:2; column-gap:80px; }

.page-photo { float:right; width:50%; max-width:430px; padding:0 0 20px 30px; }
.page-photo-wide { float:left; width:100%; padding-bottom:50px; }
	.page-photo img , .page-photo-wide img { float:left; width:100%; }

.slider-products-out { float:left; width:100%; position:relative; overflow:hidden; }
	.slider-products-wrap { float:left; width:100%; max-width:1080px; position:relative; }

	.slider-products { float:left; width:100%; position:relative; z-index:50; }
		.slider-products::before { content:""; position:absolute; top:0; bottom:0; left:-1040px; width:1000px; background-color:var(--color-light); z-index:10; border-radius:14px; }

		.slider-product-item { float:left; width:100%; padding-right:40px; }
			.slider-product-item a { float:left; width:100%; position:relative; color:#FFF; border-radius:16px; overflow:hidden; }
			.slider-product-item picture { float:left; width:100%; position:relative; overflow:hidden; }
				.slider-product-item picture img { float:left; width:100%; transform-origin:center; transition:all 3s; }
				.slider-product-item:hover picture img { transform:scale(1.15, 1.15); }
			.slider-product-item section { position:absolute; left:0; right:0; bottom:0; padding:60px 60px 34px 60px; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.7)); z-index:10; }
				.slider-product-item section::after { content:""; position:absolute; left:60px; bottom:0; width:160px; height:4px; background-color:#FFF; border-radius:4px 4px 0 0; }
			.slider-product-item strong { float:left; width:100%; padding-bottom:20px; font-weight:600; font-size:31px; line-height:30px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
			.slider-product-item span { float:left; padding-right:22px; font-size:14px; font-weight:600; letter-spacing:1px; background:url(../images/arrow-white-right.png) no-repeat right center / 12px 18px; transition:all 0.6s; }
			.slider-product-item:hover span { letter-spacing:4px; }

	.slider-products .slick-prev , .slider-products .slick-next { width:64px; height:64px; margin-top:-32px; background-color:var(--color-red); border:8px solid #FFF; box-shadow:none; }
	.slider-products .slick-prev { left:-52px; background-image:url(../images/arrow-white-left.png); }
	.slider-products .slick-next { right:-12px; background-image:url(../images/arrow-white-right.png); }

.block-flexed { float:left; width:100%; position:relative; display:flex; align-items:center; }
	.flex-left , .flex-right { float:left; width:calc(50% - 80px); }
	.flex-right { float:right; width:50%; margin-left:auto; }

	.block-flexed .page-title , .block-flexed .page-about { margin:0 !important; }

.block-cta-wrap { float:left; width:100%; position:relative; display:flex; }
	.block-cta-left , .block-cta-right { float:left; width:calc(50% - 20px); position:relative; }
	.block-cta-right { float:right; margin-left:auto; }

.block-cta { float:left; width:100%; position:relative; }
	.block-cta ul { width:calc(100% + 40px); margin-left:-20px; display:flex; flex-flow:row wrap; }
		.block-cta li { flex:1; flex-basis:50%; padding:0 20px; }

.block-cta-item { float:left; width:100%; height:100%; position:relative; }
	.block-cta-item::after { content:""; position:absolute; bottom:0; left:0; right:0; height:4px; background-color:var(--color-red); border-radius:4px 4px 0 0; }

	.block-cta-item section { float:left; width:100%; position:relative; border-radius:16px; overflow:hidden; }
		.block-cta-item section::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,rgba(48,54,65,0.0),var(--color-dark)); }
		.block-cta-item section picture { float:left; width:100%; background-size:cover; background-position:center; background-repeat:no-repeat; transform-origin:center; transition:all 2.4s; }
		.block-cta-item:hover section picture { transform:scale(1.15, 1.15); }
			.block-cta-item section picture img { float:left; width:100%; }
		.block-cta-item section strong { position:absolute; bottom:0; left:0; right:50%; padding:31px 40px; font-size:20px; color:#FFF; line-height:30px; z-index:10; }
	.block-cta-item article { float:left; width:100%; padding:32px 0 33px 0; position:relative; font-size:17px; color:#666; line-height:25px; z-index:100; }
		.block-cta-item article i { position:absolute; top:-40px; right:40px; width:64px; height:64px; border:2px solid #FFF; background:var(--color-red) url(../images/arrow-white-right.png) no-repeat center / 16px 24px; border-radius:50%; transition:all 0.4s; }
		.block-cta-item:hover article i { right:30px; border-radius:20%; }

	.block-cta-item.red section::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,rgba(209,17,43,0.0),var(--color-red)); }
	.block-cta-item.red article i , .block-cta-item.red::after { background-color:var(--color-dark); }

.certificates { float:left; width:100%; text-align:center; overflow:hidden; }
	.certificates ul { width:100%; display:flex; flex-flow:row wrap; }
		.certificates li { width:25%; padding:0 15px; margin-bottom:30px; }
			.certificates li a { float:left; width:100%; height:100%; padding-bottom:5px; position:relative; }

				.certificates li a picture { float:left; width:100%; padding:30px; padding-bottom:0 !important; background-image:linear-gradient(180deg,#EEF9FA,#FFF); }
				.certificates li a:hover picture { background-image:linear-gradient(180deg,#EEE,#FFF); }
					.certificates li a img { display:inline-block; max-width:100%; max-height:240px; }
				.certificates li a strong { float:left; width:100%; padding:15px 0 20px 0; font-weight:500; position:relative; }

.inner-80 { margin:0 -80px; }
.inner-40 { margin:0 -40px; }
.inner-30 { margin:0 -30px; }
.inner-20 { margin:0 -20px; }
.inner-15 { margin:0 -15px; }
.inner-10 { margin:0 -10px; }
.inner-6 { margin:0 -6px; }
.inner-5 { margin:0 -5px; }
.inner-1 { margin:0 -1px; }

.top-150 { padding-top:150px; }
.top-100 { padding-top:100px; }
.top-50 { padding-top:50px; }
.bottom-150 { padding-bottom:150px; }
.bottom-100 { padding-bottom:100px; }
.bottom-50 { padding-bottom:50px; }

.left-80 { padding-left:80px; }
.right-80 { padding-right:80px; }

.block-gradient { float:left; width:100%; position:relative; background-image:linear-gradient(180deg,#F5FAFC,#FFF); }
.block-space { float:left; width:100%; height:80px; }
.block-top-border { box-shadow:inset 0 1px 0 rgba(0,0,0,0.06); }

.link-all { float:left; width:100%; position:relative; text-align:center; }
	.link-all a { float:left; padding:0 14px 0 24px; position:relative; color:#D1112B; letter-spacing:1px; font-size:14px; font-weight:600; line-height:48px; border:1px solid var(--color-red); transition:all 0.3s; border-radius:25px; }
	.link-all-centered a { float:none; display:inline-block; }
	.link-all a:hover { background-color:#FFF; box-shadow:inset 0 -3px 0 var(--color-red); }
		.link-all a::after { content:""; float:right; width:15px; height:48px; margin-left:10px; background:url(../images/arrow-right.png) no-repeat center / 13px 20px; }

	.link-all-dark a { background-color:#D1112B; color:#FFF !important; }
	.link-all-dark a:hover { background-color:#303641; border-color:rgba(0,0,0,0.3); }

	.link-all-whatsapp a { background-color:#4dc247; }

		.link-all a section { display:inline-block; height:48px; }
		.link-all a img { float:left; height:48px; }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.sub-hero-wrap { float:left; width:100%; position:relative; z-index:1100; }
	.sub-hero { float:left; width:100%; position:relative; background-color:#303641; background-size:cover; background-position:center; background-repeat:no-repeat; z-index:100; }
		.sub-hero img { float:left; width:100%; max-height:480px; }

.breadcrumb { float:left; width:100%; position:relative; font-size:11px; letter-spacing:0.5px; line-height:40px; }
	.breadcrumb::after { content:""; position:absolute; top:0; left:0; right:0; height:15px; background-image:linear-gradient(180deg,#000,rgba(0,0,0,0.0)); opacity:0.03; }
	.breadcrumb section { float:left; width:100%; padding:10px 0; position:relative; box-shadow:inset 0 -1px 0 rgba(0,0,0,0.04); }
	.breadcrumb-product section { box-shadow:none; }
		.breadcrumb a { color:#777; }
		.breadcrumb a:hover { color:#353535; text-decoration:underline; }
		.breadcrumb i { margin:0 15px; opacity:0.2; }
		.breadcrumb strong { font-weight:600; color:#303641; }

.sub-hero-photo { float:left; width:100%; position:relative; }
	.sub-hero-photo::before { content:""; position:absolute; top:0; bottom:50%; left:0; right:0; background-color:#303641; }
	.sub-hero-photo picture { float:left; width:100%; position:relative; background-size:cover; background-repeat:no-repeat; background-position:center; z-index:10; border-radius:12px 0 0 48px; }
		.sub-hero-photo picture img { float:left; width:100%; max-height:320px; }

.promo-wrap { float:left; width:100%; }
.promo { float:left; width:100%; position:relative; }
	.promo > ul { width:100%; }
		.promo > ul > li { display:flex; align-items:center; margin-bottom:100px; }
		.promo > ul > li:last-child { margin-bottom:0; }

			.promo > ul > li picture { float:right; width:calc(50% - 60px); margin-left:auto; position:relative; text-align:right; }
				.promo > ul > li picture figure { float:left; width:100%; padding:0; margin:0; position:relative; overflow:hidden; }
				.promo > ul > li picture figure::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/logo-top.png) no-repeat center / auto 10%; z-index:15; }
				.promo > ul > li picture img { width:100%; position:relative; z-index:10; border-radius:16px; }

			.promo-content { float:left; width:calc(50% - 60px); position:relative; }

			.promo > ul > li:nth-child(even) picture { margin-left:0; text-align:left; }
			.promo > ul > li:nth-child(even) .promo-content { margin-left:auto; text-align:left; }

			.promo .page-title { margin-top:11px; }

.join-news-wrap { float:left; width:100%; position:relative; }
	.join-news-wrap::before { content:""; position:absolute; top:0; bottom:0; left:calc(50% - 141px); width:2px; background-color:rgba(0,0,0,0.05); }
	.home-news { float:right; width:calc(50% + 40px); position:relative; }

	.home-news .link-all-boxed { padding-top:30px; box-shadow:inset 0 1px 0 rgba(0,0,0,0.06); }

.home-stores { float:left; width:100%; position:relative; text-align:center; }
	.home-stores { float:left; width:100%; position:relative; }
	.home-stores ul { width:100%; display:flex; flex-flow:row wrap; }
		.home-stores li { flex:1; flex-basis:20%; padding:0 10px; margin-bottom:20px; }
			.home-stores li a { float:left; width:100%; height:100px; padding:9px; border:1px solid #F2EFEC; display:flex; align-items:center; border-radius:8px; transition:all 0.4s; }
			.home-stores li a:hover { border-color:var(--color-dark); }
				.home-stores li a section { width:100%; }
					.home-stores li a section strong { width:100%; font-size:17px; font-weight:500; }

.news-list { float:left; width:100%; position:relative; }
	.news-list ul { width:100%; }
		.news-list li { width:100%; padding-bottom:25px; margin-bottom:25px; border-bottom:1px solid #EEE; }
		.home-news .news-list li { padding-bottom:0; margin-bottom:30px; border-bottom:0; }

			.news-list li a { float:left; width:100%; position:relative; display:flex; align-items:center; }

				.news-list-picture { float:left; width:240px; overflow:hidden; border-radius:6px; }
					.news-list-picture img { float:left; width:100%; transform-origin:center; transition:all 1.25s; }
					.news-list li a:hover .news-list-picture img { transform:scale(1.15, 1.15); }
				.news-list-content { float:left; width:calc(100% - 240px); padding-left:40px; }

					.news-list-title { float:left; width:100%; font-size:22px; font-weight:600; line-height:30px; }
					.news-list-info { float:left; width:100%; margin-top:18px; letter-spacing:1px; }
						.news-list-info i { float:left; padding-right:15px; margin-right:15px; border-right:1px solid #EEE; color:#D1112B; font-weight:500; }
						.news-list-info span { float:left; color:#999; }

.news-wrap { float:left; width:100%; position:relative; }

	.news-content { float:right; width:calc(100% - 280px); position:relative; }
		.news-photo { float:left; width:100%; height:480px; margin-bottom:15px; border-radius:6px; overflow:hidden; }
			.news-photo img { width:100%; height:100%; object-fit:cover; object-position:center; }

	.news-sidebar { float:left; width:240px; padding-top:20px; position:relative; }

.news-info { float:left; width:100%; padding:15px 0; margin-bottom:20px; position:relative; border-top:1px solid rgba(0,0,0,0.06); border-bottom:1px solid rgba(0,0,0,0.06); letter-spacing:1px; }
	.news-info section { float:left; width:100%; margin-bottom:16px; }
	.news-info section:last-child { margin-bottom:0; }
		.news-info section i { display:block; font-size:11px; font-weight:600; color:#999; letter-spacing:1px; }
		.news-info section strong { display:block; margin-top:5px; font-weight:500; }

.page-share { float:left; width:100%; position:relative; }
	.page-share ul { width:100%; }
		.page-share li { margin-right:10px; margin-bottom:10px; }
		.page-share li:last-child { margin-right:0; }
			.page-share li a { float:left; border:1px solid rgba(0,0,0,0.1); transition:all 0.25s; border-radius:50%; }
			.page-share li a:hover { border-color:#D1112B; }
			.page-share li a.share-facebook { background-color:#38529A; }
			.page-share li a.share-twitter { background-color:#1D9BF0; }
			.page-share li a.share-youtube { background-color:#F00; }
			.page-share li a.share-whatsapp { background-color:#27C34B; }
				.page-share li a img { float:left; height:40px; margin:-1px; }

.sidebar-icon { display:none; }

.sidebar { float:left; width:300px; margin-top:60px; position:relative; }

	.left-menu { float:left; width:100%; position:relative; letter-spacing:1px; }
		.left-menu > ul { width:100%; border-top:1px solid rgba(0, 0, 0, 0.05); }
			.left-menu > ul > li { width:100%; border-bottom:1px solid rgba(0, 0, 0, 0.05); }
				.left-menu > ul > li a { float:left; width:100%; padding:17px 25px 13px 20px; position:relative; font-size:18px; font-weight:600; line-height:25px; transition:all 0.3s; }
					.left-menu > ul > li a::before { content:""; position:absolute; top:15px; bottom:15px; left:8px; width:2px; transition:all 0.2s; transform:skewX(-15deg); }
					.left-menu > ul > li a:hover::before { background-color:#D1112B; left:3px; }
				.left-menu > ul > li a.menu-active { color:#D1112B; }
					.left-menu > ul > li a.menu-active::before { background-color:#D1112B; left:3px; }

				.left-menu li a.left-menu-multiple::after { content:""; position:absolute; right:5px; top:50%; width:16px; height:16px; margin-top:-8px; background:url(../images/icon-plus.png) no-repeat center / 100%; opacity:0.5; }
				.left-menu li a:hover.left-menu-multiple::after { opacity:1; }
				.left-menu li a:hover.left-menu-multiple { background-color:transparent; }

		.left-menu li ul.left-menu-sub { width:100%; border-top:1px solid rgba(0,0,0,0.05); display:none; padding:14px 0 15px 20px; position:relative; }
			.left-menu li ul.left-menu-sub li { width:100%; border-bottom:0; }
			.left-menu li ul.left-menu-sub::before , .left-menu li ul.left-menu-sub::after { content:""; border-top:5px solid transparent; border-left:8px solid transparent; border-right:8px solid transparent; height:0; top:-1px; left:30px; position:absolute; width:0; border-top-color:#E4E4E4; }
			.left-menu li ul.left-menu-sub::after { top:-2px; border-top-color:#FFF; }

			.left-menu li ul.left-menu-sub li a { padding:5px 20px; margin-bottom:1px; font-weight:500; font-size:15px; }
			.left-menu li ul.left-menu-sub li a::before { top:8px; bottom:8px; }

.right-block { float:right; width:calc(100% - 360px); position:relative; }

.product-list { float:left; width:100%; }
	.product-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.product-list li { width:33.33334%; padding:0 20px; margin-bottom:60px; }

.tower-list li { width:25%; }
.tower-list .product-item picture { height:50vh; min-height:400px; }

.product-item { float:left; width:100%; position:relative; }
	.product-item picture { float:left; width:100%; height:30vh; min-height:300px; position:relative; border-radius:8px; overflow:hidden; }
		.product-item picture::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:1px solid rgba(0,0,0,0.08); border-radius:8px; }
		.product-item picture img { width:100%; transform-origin:center; transition:all 2.5s; height:100%; object-position:center; object-fit:cover; }
		.product-item:hover picture img { transform:scale(1.15, 1.15); }
	.product-item strong { float:left; width:100%; padding:24px 0 7px 0; font-weight:600; font-size:20px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
	.product-item span { float:left; width:100%; font-size:13px; font-weight:600; color:#999; letter-spacing:2px; background:url(../images/arrow-right.png) no-repeat right center / 12px 18px; transition:all 0.4s; }
	.product-item:hover span { letter-spacing:5px; }

.wedding-showcase-wrap { float:left; width:100%; position:relative; overflow:hidden; }
	.wedding-showcase-item { float:left; width:50%; padding:0 20px; margin-bottom:50px; }

.wedding-showcase { float:left; width:100%; padding-bottom:28px; position:relative; }

	.wedding-showcase::before { content:""; position:absolute; top:37.5%; left:50%; width:80px; height:80px; margin-left:-40px; background:#FFF url(../images/logo.png) no-repeat center / 48px auto; z-index:100; border-radius:50%; }

	.wedding-showcase ul { width:100%; overflow:hidden; border-radius:8px; }
		.wedding-showcase li { width:calc(50% - 2px); height:160px; overflow:hidden; }
		.wedding-showcase li:last-child { float:right; }
		.wedding-showcase li:first-child { width:100%; height:240px; margin-bottom:4px; }
			.wedding-showcase li picture { float:left; width:100%; height:100%; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; transform-origin:center bottom; transition:all 1s; }
			.wedding-showcase:hover li picture { transform:scale(1.15, 1.15); }

.wedding-showcase-title { float:left; width:100%; padding:23px 0 8px 0; position:relative; font-size:24px; font-weight:500; line-height:30px; }

.wedding-package-item { float:left; width:100%; margin-bottom:70px; position:relative; }

		.wedding-package-title-wrap { float:left; width:100%; padding:30px; margin-top:20px; position:relative; text-align:center; background-color:#F3F5F6; border-top:2px solid #B0BAC4; border-radius:4px; }
			.wedding-package-title-wrap::before {
				content:"";
				border-bottom:7px solid transparent;
				border-left:18px solid transparent;
				border-right:18px solid transparent;
				height:0;
				position:absolute;
				width:0;
				left:50%;
				top:-7px;
				margin-left:-18px;
				border-bottom-color:#B0BAC4;
			}
			.wedding-package-title { float:left; width:100%; padding:21px 0 14px 0; position:relative; font-size:40px; font-weight:400; line-height:40px; }
				.wedding-package-title::before { content:""; position:absolute; top:-5px; left:50%; width:30px; height:2px; margin-left:-15px; background-color:#CEC9C8; }

			.wedding-package-title-wrap .product-list-price i { width:auto; margin-right:5px; }

		.wedding-package-content { float:right; width:100%; position:relative; }
			.wedding-package-content ul { width:100%; position:relative; display:flex; flex-flow:row wrap; }
				.wedding-package-content li { flex:1; flex-basis:25%; padding:0 20px; margin-bottom:40px; }
					.wedding-package-content li > section { float:left; width:100%; height:100%; padding-bottom:55px; position:relative; overflow:hidden; }
						.wedding-package-content li > section picture { float:left; width:100%; border-radius:6px; overflow:hidden; }
							.wedding-package-content li > section picture img { float:left; width:100%; transform-origin:center; transition:all 1s; }
							.wedding-package-content li > section:hover picture img { transform:scale(1.1, 1.1); }

		.wedding-package-content .wedding-showcase-title { padding:18px 0 3px 0; font-size:20px; }

		.wedding-package-include { float:left; width:100%; margin:5px 0 15px 0; position:relative; letter-spacing:0.5px; }
			.wedding-package-include i { float:left; width:100%; margin-bottom:5px; font-weight:500; color:#666; }

.wedding-package-content .link-all a { width:100%; }

.wedding-package-list { float:left; width:100%; position:relative; }
	.wedding-package-list ul { width:100%; border-top:1px solid #F0F0F0; }
		.wedding-package-list li { width:100%; padding:5px 0; border-bottom:1px solid #F0F0F0; }
			.wedding-package-list li section { float:left; width:100%; }
				.wedding-package-list li section picture { float:left; width:80px; height:40px; text-align:center; }
					.wedding-package-list li section picture img { max-width:100%; max-height:100%; }
				.wedding-package-list li section span { float:left; width:calc(100% - 140px); padding:15px 0 15px 15px; }
				.wedding-package-list li section i { float:right; width:60px; }
					.wedding-package-list li section i .input { height:30px; padding-left:14px; margin-top:10px; font-size:12px; font-weight:600; line-height:28px; border-radius:4px; }
					.wedding-package-list li section i em { float:right; width:60px; height:30px; margin-top:10px; font-size:12px; font-weight:600; line-height:27px; border-radius:15px; border:1px solid #666; text-align:center; box-shadow:5px 5px 0 rgba(0,0,0,0.03); }

.product-list-price { float:left; width:100%; font-size:16px; font-weight:600; color:#D1112B; letter-spacing:1px; }
	.product-list-price section { float:left; width:100%; margin-top:4px; text-align:right; }
	.product-list-price em { font-weight:400; color:#999; text-decoration:line-through; }
	.product-list-price i { float:left; width:120px; font-weight:400; color:#999; text-align:left; }

.slider-hero-product-wrap { float:left; width:100%; position:relative; z-index:700; }
	.slider-hero-product { float:left; width:100%; position:relative; z-index:700; overflow:hidden; background-image:linear-gradient(180deg,#FFF,var(--color-light)); }
		.slider-hero-product-item { float:left; width:auto !important; position:relative; }
			.slider-hero-product-item a , .slider-hero-product-item section { float:left; width:100%; padding:0 2px; position:relative; background-repeat:no-repeat; background-size:cover; background-position:center; }
				.slider-hero-product-item a img , .slider-hero-product-item section img { float:left; height:calc(100vh - 320px); min-height:400px; }

	.slider-hero-product ul.slick-dots { float:left; width:100%; position:relative; right:auto; left:auto; bottom:auto; padding:0 0 10px 0; margin-top:15px; background:none; }
		.slider-hero-product ul.slick-dots li { height:40px; margin:0 5px; }
			.slider-hero-product ul.slick-dots li button { width:64px; height:40px; opacity:1; }
			.slider-hero-product ul.slick-dots li.slick-active button { box-shadow:0 -3px 0 #D1112B; }

.inner-5 { margin:0 -5px; }

.product-text { float:left; width:100%; font-size:15px; font-weight:500; line-height:30px; }
	.product-text strong , .product-text b , .product-text a { font-weight:600; }
.product-video { float:left; width:100%; position:relative; }
	.product-video img { float:left; width:100%; }
	.product-video iframe { position:absolute; top:0; left:0; }

.product-sizes { float:left; width:100%; position:relative; overflow:hidden; overflow-x:auto; }
	.product-sizes table { width:100%; min-width:540px; font-size:13px; }
		.product-sizes tr:first-child { background-color:#F5F5F5; }
		.product-sizes tr { border-bottom:1px solid #EEE; }
		.product-sizes tr:first-child { border-bottom:1px solid #CCC; }
			.product-sizes tr td { padding:5px; }
			.product-sizes tr td:first-child { padding-left:15px; }

.related-products { float:left; width:100%; position:relative; }
	.related-products ul { width:100%; display:flex; flex-flow:row wrap; }
		.related-products li { width:50%; margin-bottom:20px; display:flex; align-items:center; }

			.related-products li > picture { float:left; width:140px; padding:3px; overflow:hidden; position:relative; box-shadow:0 0 20px rgba(0,0,0,0.1); transition:all 0.5s; border-radius:6px; overflow:hidden; }

				.related-products li > picture::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:#FFF; transition:all 0.4s; }
					.related-products li:hover > picture::before { background-color:#D1112B; }

					.related-products li > picture figure { float:left; width:100%; position:relative; text-align:center; border:20px solid #FFF; background-color:#FFF; overflow:hidden; border-radius:3px; }
						.related-products li picture figure img { display:inline-block; max-width:100%; max-height:200px; transform-origin:center; transition:all 1s; }
						.related-products li:hover > picture figure img { transform:scale(1.2, 1.2); }

			.related-products li > section { float:right; width:calc(100% - 170px); margin-left:auto; position:relative; letter-spacing:1px; }

			.related-info { float:left; width:100%; padding-right:70px; margin-bottom:10px; position:relative; }
				.related-info strong { display:block; font-weight:500; }
				.related-info em { display:block; font-weight:500; font-size:11px; }
				.related-info select { position:absolute; top:5px; right:0; width:60px; height:30px; padding:0 0 0 12px; font-size:12px; font-weight:600; border-radius:4px; background-color:#F8F8F8; }

			.related-price { float:left; width:100%; font-weight:500; color:#999; }
				.related-price article { float:left; width:calc(100% - 120px); }
					.related-price article span { display:block; margin-bottom:2px; }
					.related-price article span:last-child , .related-price section span:last-child { margin-bottom:0; }
				.related-price section { float:right; width:115px; text-align:right; }
					.related-price section span { display:block; margin-bottom:2px; }
					.related-price section span:first-child { color:#D1112B; font-weight:600; }
						.related-price section span small { display:block; font-size:12px; }

.total-price { float:left; width:100%; position:relative; margin:30px 0 20px 0; background-color:#F4F4F4; transition:all 0.75s; display:flex; align-items:center; border-radius:8px; overflow:hidden; }

	.total-price-left { float:left; width:calc(100% - 300px); position:relative; }
	.total-price-right { float:left; width:300px; position:relative; }

	.total-price section { float:left; width:100%; padding:25px 30px; font-weight:500; letter-spacing:1px; }
		.total-price section article { float:left; width:100%; padding-left:20px; margin-bottom:17px; position:relative; font-size:18px; font-weight:600; color:#000; line-height:30px; }
			.total-price section article::before { content:""; position:absolute; top:0; bottom:2px; left:3px; width:2px; background-color:#D1112B; transform: skewX(-15deg); }
		.total-price section span { float:left; width:100%; }

	.total-price ul { width:100%; }
		.total-price li { width:100%; padding:15px 20px 20px 25px; font-size:16px; position:relative; color:#FFF; background-color:#303641; letter-spacing:1px; }
		.total-price li:last-child { background-color:#D1112B; }
			.total-price li:last-child::before { content:""; position:absolute; left:25px; top:0; width:30px; height:2px; background-color:#FFF; }
			.total-price li strong { display:block; margin:2px 0 -7px 0; font-size:24px; font-weight:600; letter-spacing:0; line-height:30px; }

.product-detail-links { float:left; width:100%; margin-top:15px; position:relative; }
	.product-detail-links ul { width:100%; }
		.product-detail-links li { width:50%; padding:0 10px; margin-bottom:20px; }

.catalog { float:left; width:100%; position:relative; }
	.catalog ul { width:100%; }
		.catalog li { width:100%; margin-bottom:30px; }
			.catalog li a { float:left; width:100%; position:relative; background-color:#F6F9F9; display:flex; align-items:center; }
				.catalog li a picture { float:left; width:200px; overflow:hidden; }
					.catalog li a picture img { float:left; width:100%; transform-origin:center; transition:all 1s; }
					.catalog li a:hover picture img { transform:scale(1.2, 1.2); }
				.catalog li a section { float:left; width:calc(100% - 200px); padding:40px; }
					.catalog li a section strong { float:left; width:100%; font-size:24px; font-weight:600; line-height:30px; }
					.catalog li a section span { float:left; width:100%; padding:15px 0; letter-spacing:1px; color:#888; }
					.catalog li a section i { float:left; padding-left:30px; background:url(../images/icon-down.svg) no-repeat 0 center / 20px; font-weight:500; letter-spacing:2px; transition:all 0.4s; }
					.catalog li a:hover section i { background-position:0 5px; }

.promotions { float:left; width:100%; line-height:25px; }
	.promotions ul { width:100%; display:flex; flex-flow:row wrap; }
		.promotions li { width:33.33334%; padding:0 20px; margin-bottom:60px; }
			.promotions li a , .promotions li article { float:left; width:100%; position:relative; }
				.promotions li picture { float:left; width:100%; overflow:hidden; border-radius:7px; }
					.promotions li picture img { float:left; width:100%; transform-origin:bottom; transition:all 1s; }
					.promotions li a:hover picture img , .promotions li article:hover picture img { transform:scale(1.07, 1.07); }
				.promotions li strong { float:left; width:100%; padding:14px 0 6px 0; position:relative; font-weight:500; font-size:20px; line-height:30px; }
					.promotions li strong::before {
						content:"";
						border-bottom:7px solid transparent;
						border-left:15px solid transparent;
						border-right:15px solid transparent;
						height: 0;
						top:-7px;
						left:30px;
						position: absolute;
						width:0;
						border-bottom-color:#FFF;
					}

				.promotions li section { float:left; width:100%; font-size:16px; line-height:30px; }

.countdown { float:left; width:100%; margin-top:5px; margin-bottom:15px; text-align:center; }
	.countdown-item { float:left; width:33.33334%; padding:0 5px; }
		.countdown-item small { float:left; width:100%; padding:8px 5px 5px 5px; background-color:#EEE; border-radius:5px; font-size:19px; font-weight:600; }
			.countdown-item i { display:block; margin-top:-3px; font-size:12px; font-weight:500; color:#999; letter-spacing:1px; }

.promotions li article.promo-over { opacity:0.4; filter:grayscale(100%); -webkit-filter:grayscale(100%); }

.vize-stores { float:left; width:100%; display:flex; justify-content:space-between; /* align-items:center; */ flex-wrap:wrap; }
	.store-item { flex-basis:calc(50% - 30px); margin-bottom:55px; }
		.store-item picture { float:left; width:100%; overflow:hidden; border-radius:6px; }
			.store-item picture img { float:left; width:100%; }
		.store-item strong { float:left; width:100%; margin:18px 0 8px 0; font-size:24px; font-weight:600; color:#303641; letter-spacing:1px; line-height:30px; }
		.store-item ul { width:100%; }
			.store-item li { width:100%; margin:5px 0; font-size:15px; }
				.store-item li i { float:left; width:120px; font-weight:600; color:var(--color-dark); opacity:0.7; }
				.store-item li span { float:left; width:calc(100% - 120px); }
				.store-item li em { float:left; width:100%; margin-top:9px; font-size:14px; font-weight:600; line-height:39px; }
					.store-item li em a { float:left; height:40px; padding:0 39px 0 20px; position:relative; border:1px solid #D1112B; background:url(../images/arrow-right.png) no-repeat right 14px center / auto 16px; color:#D1112B; border-radius:20px; transition:all 0.2s; }
					.store-item li em a:hover { background-color:#D1112B; color:#FFF; background-image:url(../images/arrow-white-right.png); }

.stores-map { float:left; width:100%; height:600px; padding:4px; position:relative; border:1px solid #999; border-radius:4px; z-index:10; }

/*	Start LIGHTBOX	*/

.fancybox-slide--iframe .fancybox-content { width:800px; min-height:300px; max-width:80%; max-height:80%; margin:0; }

.my-fancy { display:none; padding:30px !important; border-radius:8px; }

	.my-fancy-wrap { width:100%; max-width:800px; max-height:600px; overflow:hidden; overflow-y:auto; }
		.my-fancy-wrap::-webkit-scrollbar { width:5px; }
		.my-fancy-wrap::-webkit-scrollbar-track { background:#EEEEEE; }
		.my-fancy-wrap::-webkit-scrollbar-thumb { background-color:#555; }
		.my-fancy-wrap { scrollbar-color:#FFF #EEEEEE; scrollbar-width:thin; }

.fancy-title { float:left; width:100%; padding:0 20px; margin-bottom:15px; position:relative; font-size:16px; color:#000; }
	.fancy-title::before { content:""; position:absolute; top:50%; left:0; width:30px; height:2px; margin-top:-2px; background-color:#D1112B; }
	.fancy-title strong { float:left; padding:0 15px; position:relative; font-weight:600; font-size:13px; letter-spacing:1px; background-color:#FFF; }

.fancy-form { float:left; width:100%; }
	.fancy-form .item { float:left; width:50%; padding:0 10px; margin-bottom:20px; }
	.fancy-form .item:last-child { margin-bottom:0; }
	.fancy-form .item-2 { width:calc(50% - 10px); }
		.fancy-form .item-2 label { float:left; width:100%; padding:9px; border:1px solid #999; border-radius:4px; font-weight:600; }
		.fancy-form .item a { font-weight:600; text-decoration:underline; }

.parallax-wrap { float:left; width:100%; padding:9% 0; position:relative; color:#FFF; }
	.parallax-photo { position:absolute; left:0; right:0; bottom:0; top:0; background:transparent; background-size:100% auto; }
		.parallax-photo::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(125deg,rgba(0,0,0,0.9) 40%,rgba(209,17,43,0.9) 80%); opacity:0.9; }
	.parallax-text-wrap { width:100%; max-width:1200px; margin:0 auto; position:relative; z-index:10; color:#FFF; text-align:center; }
		.parallax-text { float:left; width:100%; padding:30px 0; font-family:'Retro Signature'; font-size:100px; line-height:60%; transform: skewY(-3deg); }

.simple-list { float:left; width:100%; font-size:17px; font-weight:500; line-height:25px; }
	.simple-list ul { width:100%; display:flex; flex-wrap:wrap; justify-content:space-between; }
		.simple-list li { flex-basis:calc(50% - 30px); padding:0 0 30px 40px; position:relative; background:url(../images/icon-ok.png) no-repeat 0 4px / 14px auto; }
		.simple-list-wide li { flex-basis:100%; }

.block-two { width:calc(50% - 20px); }

.gallery { float:left; width:100%; position:relative; overflow:hidden; }
	.gallery ul { width:100%; }
		.gallery li { width:33.33334%; padding:0 5px 10px 5px; position:relative; }
			.gallery li a { float:left; width:100%; position:relative; overflow:hidden; color:#FFF; border-radius:8px; }
				.gallery li a::before {
					content:"";
					position:absolute;
					top:calc(50% - 20px);
					left:calc(50% - 20px);
					width:38px;
					height:38px;
					border:1px solid #FFF;
					background:url(../images/icon-zoom.png) no-repeat center / 20px;
					transition:all 0.3s;
					border-radius:50%;
					z-index:10;
					opacity:0.5;
					}
				.gallery li a:hover::before { opacity:1; }
				.gallery li a section { float:left; width:100%; position:relative; overflow:hidden; }
					.gallery li a span { float:left; width:100%; background-size:cover; background-position:center; transform-origin:center bottom; transition:all 1s; }
					.gallery li a:hover span { transform:scale(1.09, 1.09); }
						.gallery li a span img { float:left; width:100%; }

.video-list { float:left; width:100%; position:relative; overflow:hidden; }
	.video-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.video-list li { width:33.33334%; padding:0 20px; margin-bottom:45px; }
			.video-list li a { float:left; width:100%; position:relative; }
				.video-list li a picture { float:left; width:100%; position:relative; overflow:hidden; }
					.video-list li a picture img { float:left; width:100%; transform-origin:center; transition:all 1s; }
					.video-list li a:hover picture img { transform:scale(1.2, 1.2); }

					.video-list li a picture::after { content:""; position:absolute; width:44px; height:44px; left:calc(50% - 24px); top:calc(50% - 24px); background:rgba(0,0,0,0.4) url(../images/icon-play.png) no-repeat center / auto 20px; border:2px solid #FFF; border-radius:50%; z-index:100; transition:all 0.3s; }
					.video-list li a:hover picture::after { background-color:#303641; }

				.video-list li a section { float:left; width:100%; position:relative; }
					.video-list li a section strong { float:left; width:100%; padding:19px 0 6px 0; font-size:17px; font-weight:500; line-height:25px; }
					.video-list li a section i { float:left; height:20px; padding-left:25px; color:#999; font-size:13px; letter-spacing:1px; line-height:24px; background:url(../images/icon-clock.png) no-repeat 0 center / 16px; }

.tab { float:left; width:100%; padding-bottom:30px; position:relative; }
	.tab li { padding-right:15px; }
		.tab li a { float:left; height:50px; padding:0 25px; position:relative; font-weight:500; font-size:16px; line-height:54px; background-color:#EEF9FA; border-radius:4px; transition:all 0.3s; }
		.tab li a.tab-active { color:#FFF; background-color:#D1112B; }
			.tab li a.tab-active::before {
				content:"";
				border-top:3px solid transparent;
				border-left:8px solid transparent;
				border-right:8px solid transparent;
				height:0;
				position: absolute;
				width:0;
				left:50%;
				bottom:-3px;
				margin-left:-8px;
				border-top-color:#D1112B;
			}

.item { float:left; width:25%; padding:0 5px 10px 5px; }
.photo-item { float:left; width:100%; transition:all 0.25s; }
	.photo-item a { float:left; width:100%; position:relative; }
		.photo-item a section { float:left; width:100%; position:relative; overflow:hidden; border-radius:4px; }

			.photo-item a section img { float:left; width:100%; box-shadow:0 5px 20px rgba(0, 0, 0, 0.07); transform-origin:center; transition:all 1s; }
			.photo-item a:hover section img { transform:scale(1.2, 1.2); }

		.photo-item a section::before { content:""; position:absolute; top:50%; left:50%; width:600px; height:600px; margin:-300px 0 0 -300px; background-color:#FFF; opacity:0; transition:all 1s; border-radius:50%; transform:scale(0,0); z-index:10; }
		.photo-item:hover a section::before { background-color:#D1112B; opacity:0.8; transform:scale(1,1); }

		.photo-item a::after { content:""; position:absolute; top:0; right:0; width:32px; height:32px; background:rgba(255,255,255,0.7) url(../images/icon-expand.png) no-repeat center / 12px; border-radius:50%; transition:all 0.4s; opacity:0; z-index:20; }
		.photo-item a:hover::after { opacity:1; top:15px; right:15px; }

		.photo-item a span { float:left; width:100%; padding-top:10px; color:#999; }

/*	Start CONTACT	*/

.accordion { float:left; width:100%;  border-bottom:1px solid rgba(0,0,0,0.06); }

	.accordion-section-title { float:left; width:100%; padding:30px; padding-right:40px !important; position:relative; font-size:17px; font-weight:600; letter-spacing:0.5px; border-top:1px solid rgba(0,0,0,0.06); z-index:10; }
	.accordion-section-title:hover { color:#D1112B; }
	.accordion-section-title.active { color:#D1112B !important; }
		.accordion-section-title::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 100% auto; transition:all 0.3s; }
		.accordion-section-title.active::after { transform:rotate(180deg); }
		.accordion-section-title section { float:left; }

	.accordion-section-content { float:left; width:100%; padding:0 0 40px 30px; position:relative; display:none; }
		.accordion-section-text { float:left; width:100%; font-size:17px; line-height:30px; }

.hero-contact { padding:4% 0; }

.contact-info { float:left; width:100%; position:relative; }
	.contact-info section { float:left; width:33.33334%; padding:0 15px 0 55px; margin-bottom:31px; position:relative; line-height:25px; transition:all 0.4s; }
		.contact-info section img { position:absolute; top:0; left:15px; width:24px; }
		.contact-info section span { display:block; margin-bottom:7px; font-weight:600; font-size:14px; color:var(--color-dark); letter-spacing:1px; }
		.contact-info section article { display:block; margin-bottom:10px; font-size:17px; line-height:30px; }
		.contact-info section article:last-child { margin-bottom:0; }
		.contact-info section a { color:#151515; }
		.contact-info section a:hover { text-decoration:underline; }

.contact-form-wrap { float:left; width:100%; position:relative; background-color:var(--color-light); }
	.contact-form-wrap > picture { position:absolute; top:0; bottom:0; left:0; width:50%; background-size:cover; background-position:center; background-repeat:no-repeat; overflow:hidden; }
		.contact-form-wrap > picture::after { content:""; position:absolute; bottom:0; right:-12px; width:24px; height:24px; background-color:var(--color-light); transform:skewX(-45deg); }

	.contact-form { float:right; width:50%; padding:20px 120px 100px 120px; position:relative; }

		.contact-form .title-medium { margin-top:14px; }

		.form-item { float:left; width:50%; padding:0 15px 30px 15px; position:relative; }
		.form-item-text { margin-top:-10px; color:#666; }
		.form-item:last-child { padding-bottom:0; }
			.form-item label { float:left; width:100%; }
			.form-item section { float:left; width:100%; font-size:16px; font-weight:600; margin-bottom:-10px; }
			.form-item i { float:left; width:100%; font-weight:500; margin:-10px 0 5px 0; }

			.security-code img { float:left; width:120px; height:50px; margin-right:10px; padding:3px; border:1px solid #999; background-color:#FFF; border-radius:6px; box-shadow:5px 5px 0 rgba(0,0,0,0.03); }
			.security-code a.refresh { float:left; width:50px; height:50px; text-indent:-9999px; background:#FFF url(../images/refresh.png) no-repeat center center / 24px; border:1px solid #999; border-radius:6px; box-shadow:5px 5px 0 rgba(0,0,0,0.03); }
			.security-code a:hover.refresh { background-color:#EEE; }

.contact-branches { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }
	.branch-item { float:left; width:33.33334%; padding:0 15px; margin-bottom:20px; }
		.branch-item section { float:left; width:100%; height:100%; padding:25px 30px; background-color:var(--color-light); font-size:17px; line-height:25px; border-radius:8px; }
			.branch-item section h4 { float:left; width:100%; font-size:20px; font-weight:600; }
			.branch-item section article { float:left; width:100%; margin-top:10px; }
				.branch-item section article strong { font-weight:600; }

.contact-map { float:left; width:100%; height:600px; position:relative; z-index:10; }

.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }
	.upload section { float:left; width:100%; height:50px; padding:0 16px; border:1px solid #999; line-height:48px; background-color:#FFF; border-radius:6px; box-shadow:5px 5px 0 rgb(0 0 0 / 3%); }
	.upload:hover section { border-color:#00C18C; color:#00C18C; }
		.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:48px; background:url(../images/icon-clip.png) no-repeat center / 16px; opacity:0.5; }
		.upload:hover section::after { opacity:1; }
	.upload input { display:block !important; width:100% !important; height:100% !important; opacity:0 !important; overflow:hidden !important; position:absolute; left:0; top:0; z-index:3; cursor:pointer; }

.request-form { display:none; float:left; width:100%; max-width:800px; }
	.request-form .contact-form { width:100%; margin-top:-10px; }

/*	Start PAGINATION	*/

.pages { float:left; width:100%; position:relative; font-weight:600; line-height:54px; text-align:center; }
	.pages ul { width:100%; }
		.pages li { float:none; display:inline-block; padding:0 5px; }
			.pages li a { float:left; width:50px; height:50px; font-weight:500; color:#D1112B; transition:all 0.3s; border-radius:6px; }
			.pages li a:hover , .pages li a.current { background-color:#F5F5F5; }
			.pages li a.current { background-color:#D1112B; color:#FFF; }

.cookies-wrap { position:fixed; right:20px; bottom:20px; width:400px; z-index:7950; }
	.cookies { float:left; width:100%; padding:25px 30px 20px 30px; position:relative; background-color:rgba(48,54,65,0.7); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); color:#FFF; border-radius:8px; box-shadow:0 0 20px rgba(255,255,255,0.2); }
		.cookies::before { content:""; position:absolute; right:15px; top:15px; left:15px; bottom:0; background:url(../images/icon-cookies.png) no-repeat 0 top / 60px auto; opacity:0.3; }
		.cookies section { float:left; width:100%; position:relative; }
		.cookies-close { position:absolute; top:-14px; right:20px; width:28px; height:28px; }
			.cookies-close span { float:left; width:100%; height:100%; position:relative; border-radius:8px; text-indent:-9999px; background:#D1112B url(../images/icon-close.png) no-repeat center / 12px; cursor:pointer; border:1px solid #FFF; }
			.cookies-close span:hover { background-size:14px; background-color:#042956; }

.slider-gallery-multiple { float:left; width:100%; position:relative; }
	.slider-gallery-multiple .slick-list { overflow:hidden; border-radius:16px; }
	.slider-gallery-multiple::after { content:""; position:absolute; top:0; bottom:0; left:calc(50% - 1px); width:2px; background-color:#FFF; }
	.slider-gallery-multiple div { float:left; width:100%; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; }
		.slider-gallery-multiple div img { float:left; width:100%; }

	.slider-gallery-multiple ul.slick-dots { border-radius:16px; }
	.slider-gallery-multiple .slick-prev { left:-25px; }
	.slider-gallery-multiple .slick-next { right:-25px; }





.block-dark { float:left; width:100%; padding:20px 0 100px 0; position:relative; background-image:linear-gradient(180deg,#303641,#6C737D); }

.bed-wrap { float:left; width:100%; }
	.bed-layers , .bed-info { float:left; width:calc(50% - 80px); position:relative; }
	.bed-info { float:right; }

	.bed-layers ul { width:100%; margin-bottom:60px; }
		.bed-layers li { width:100%; margin-bottom:-60px; position:relative; }
		.bed-layers li.layer1 { z-index:10; }
		.bed-layers li.layer2 { z-index:9; }
		.bed-layers li.layer3 { z-index:8; }
		.bed-layers li.layer4 { z-index:7; }
		.bed-layers li.layer5 { z-index:6; }
		.bed-layers li.layer6 { z-index:5; }
		.bed-layers li.layer7 { z-index:4; }
		.bed-layers li.layer8 { z-index:3; }
		.bed-layers li.layer9 { z-index:2; }
		.bed-layers li.layer10 { z-index:1; }
			.bed-layers li img { float:left; width:100%; }
			.layer-btn { position:absolute; width:40px; height:40px; z-index:100; text-align:center; }
				.layer-btn small { float:left; width:40px; height:40px; position:relative; border:2px solid rgba(255,255,255,0.7); background-color:#D1112B; border-radius:50%; font-size:16px; font-weight:600; color:#FFF; line-height:36px; z-index:100; transition:all 0.3s; }
				.layer-btn small:hover { background-color:#303641; border-color:#FFF; }
				.layer-btn::before { content:""; position:absolute; top:-7px; bottom:-7px; left:-7px; right:-7px; background-color:rgba(255,255,255,0.33); border-radius:50%; transition:all 0.3s; }
				.layer-btn:hover::before { background-color:rgba(255,255,255,0.6); }

	.bed-info-title { float:left; width:100%; padding-left:70px; margin-bottom:31px; position:relative; font-size:32px; font-weight:600; color:#FFF; line-height:40px; }
		.bed-info-title small { position:absolute; top:0; left:0; }
			.bed-info-title small::after { content:"/"; float:right; padding-left:20px; font-weight:400; color:#D1112B; }
	.bed-info-text { font-size:18px; color:#FFF; }
		.bed-info-picture { float:left; width:100%; }
			.bed-info-picture img { float:left; width:auto; max-width:100%; border-radius:12px; }




@media only screen and (max-width:1600px) {

.outer { padding:0 40px; }
.wrap { width:1320px; }
.parallax-wrap { padding:7% 0; }
.vize-catalog { padding-top:40px; }
.footer-right { padding-left:60px; }
.home-news { width:calc(50% + 80px); }

.bed-layers , .bed-info { width:calc(50% - 40px); }
.bed-layers li { margin-bottom:-45px; }

.welcome-stats { right:-40px; width:calc(50% + 20px); }

}



@media only screen and (max-width:1440px) {

.wrap { width:1200px; }

.top-150 { padding-top:100px; }
.top-100 { padding-top:75px; }
.top-50 { padding-top:35px; }
.bottom-150 { padding-bottom:100px; }
.bottom-100 { padding-bottom:75px; }
.bottom-50 { padding-bottom:35px; }

#nav-vize ul { padding:20px 40px 20px 60px; }
.slider-hero-title strong { font-size:100px; }
.slider-product-item { padding-right:30px; }
.slider-products::before { left:-1030px; }

.vize-catalog a { height:180px; }
.vize-catalog a section { padding-left:40px; }
.vize-catalog-photo picture { width:calc(100% - 30px); }

.wedding-package-content li { flex-basis:33.33334%; }

.showcase-cat { padding:80px 25px 19px 25px; }
.showcase-text section { padding:15px 25px; }

.slider-products-wrap { max-width:880px; }

.block-cta-item section strong { right:20%; padding:21px 30px; }

.slider-products .slick-prev { left:-47px; }
.slider-products .slick-next { right:-17px; }

}


@media only screen and (max-width:1280px) {

.outer { padding:0 30px; }
.wrap { width:960px; }
.wrap-slim { max-width:960px; }

#nav li { width:33.33334%; padding:15px 30px; }
#nav-vize li a { font-size:22px; line-height:50px; }

.footer-left { padding:40px 0; }
.footer-right { padding:20px 0 40px 40px; }
.footer-phone { margin:19px 0 16px 0; font-size:20px; }
.copyright { padding:40px 0; }

.vize-stats li { margin-right:30px; }
.vize-stats li span { max-width:80px; font-size:14px; line-height:16px; }

.parallax-wrap { padding:12% 0; }
.parallax-text-wrap { float:left; padding:0 30px; }
.parallax-text { float:left; font-size:80px; }

.home-news { width:100%; }

.breadcrumb section { padding:5px 0; }

.contact-form { float:right; width:50%; padding:0 60px 60px 60px; }

.sidebar { width:240px; margin-top:60px; }
.left-menu > ul > li a { font-size:16px; }
.right-block { width:calc(100% - 280px); position:relative; }

.flex-left { width:calc(50% - 30px); }
.store-item { flex-basis:calc(50% - 15px); }

.wedding-showcase li { height:120px; }
.wedding-showcase li:first-child { height:180px; }
.wedding-showcase::before { top:34.5%; width:60px; height:60px; margin-left:-30px; background-size:32px auto; }

.promotions li { width:50%; }

.showcase-summary { margin-top:8px; font-size:14px; line-height:20px; }

.product-list li { width:50%; }
.tower-list li { width:33.33334%; }

.bed-layers li { margin-bottom:-35px; }
.layer-btn small { width:32px; height:32px; margin:4px; font-size:14px; line-height:28px; }
.layer-btn::before { top:-2px; bottom:-2px; left:-2px; right:-2px; }

.hero-nav li > a strong { font-size:12px; }

.welcome-wrap { margin-top:50px; }
.welcome { padding-top:30px; padding-bottom:60px; }
.welcome-stats { top:40px; bottom:40px; right:-30px; width:calc(50% + 20px); padding:60px; }
.welcome-photo { top:40px; bottom:-40px; }

.block-cta-item section strong { font-size:17px; line-height:25px; }
.block-cta-item article { padding:25px 0; font-size:15px; }
.block-cta-item article i { top:-24px; right:20px; width:48px; height:48px; background-size:13px 20px; }

.block-cta-left , .block-cta-right { width:calc(50% - 15px); }
.block-cta ul { width:calc(100% + 20px); margin-left:-10px; }
.block-cta li { padding:0 10px; }

.welcome-video , .block-cta-item section , .slider-gallery-multiple .slick-list , .slider-gallery-multiple ul.slick-dots { border-radius:8px; }

}



@media only screen and (max-width:1023px) {

.vize { padding-top:70px; }
.outer { padding:0; }
.wrap , .wrap-slim { float:left; width:100% !important; padding:0 30px; }
.wrap-right { padding-right:0 !important; }

.header { height:70px; box-shadow:0 0 15px rgba(0,0,0,0.08) !important; }
.nav-opened .header { box-shadow:none !important; }
.header .wrap { padding:0 20px; }

#logo img { height:40px; }

.nav-icon { width:110px; height:70px; margin-top:0; font-size:12px; line-height:70px; }

.online-store , .header-lang-wrap { margin-top:15px; }
.header-lang-wrap { font-weight:500; }
.search-icon { margin:15px; }
.header-search { right:10px; top:65px; left:10px; width:auto; }

#nav-wrap { top:70px; height:calc(100vh - 70px); overflow:hidden; overflow-y:auto; }
#nav-wrap .wrap { padding:0 !important; }
#nav li > a picture img { max-height:60px; }
.nav-sub-menu { margin:0; }

#nav { width:100%; height:auto; overflow:auto; overflow-y:auto; }
#nav-vize { width:100%; height:auto; padding-bottom:100px; margin-top:20px; }
#nav-vize ul { padding:30px; }
#nav-vize li { width:50%; }

.top-150 { padding-top:75px; }
.top-100 { padding-top:50px; }
.top-50 { padding-top:25px; }
.bottom-150 { padding-bottom:75px; }
.bottom-100 { padding-bottom:50px; }
.bottom-50 { padding-bottom:25px; }

.slider-hero-wrap { height:auto; }
.slider-hero , .slider-hero-item , .welcome-wrap { border-radius:0; }
.slider-hero-item { height:auto; min-height:initial; }
.slider-hero-item picture , .slider-hero-item picture img { display:block; }
.slider-hero-title-in { width:100%; }
.slider-hero-title strong { font-size:80px; }
.hero-nav-wrap , .vize-catalog-photo { display:none; }

.welcome-wrap { margin-top:0; }
.welcome { width:100%; padding:30px 0; }
.welcome-video { float:left; width:100%; margin-top:40px; position:relative; top:auto; bottom:auto; right:auto; }
.vize-catalog { width:100%; padding-top:10px; }
.vize-catalog a::after { left:-8px; width:16px; height:16px; }

.welcome-right , .welcome-stats { float:left; width:100%; position:relative; top:auto; bottom:auto; right:auto; }
.welcome-stats { width:calc(100% - 60px); padding:30px !important; margin-left:30px; margin-bottom:-30px; border-radius:8px; }
.welcome-stats li::after { margin:20px 0; }
.welcome-photo , .slider-products::before { display:none; }

.ig-block::before { top:25%; }
.ig-block li { width:33.33334%; }
.news-list-content { padding-left:30px; }

.page-title , .page-title.xl { margin:36px 0 14px 0; font-size:35px; line-height:40px; }
.page-title-single { margin-top:6px; margin-bottom:4px; }
.page-title small { padding:20px 0 5px 0; }
.page-title section , .page-title strong { margin:8px 0 7px 0; }

.parallax-text-wrap .page-title small { margin-bottom:20px; }

.join-us-wrap { padding:40px 0; }

.page-about { float:left; width:100%; margin:-10px 0 25px 0; font-size:18px; }
.product-about { line-height:30px; }

.footer-left , .footer-right { width:100%; }
.footer-right { padding:0 0 40px 0; box-shadow:none; }

.vize-stats-wrap .vize-stats { float:left; width:100%; }
.vize-stats li { width:50%; margin-right:0; }
.vize-stats li span { max-width:initial; }

.tab { height:75px; overflow:hidden; overflow-x:auto; white-space:nowrap; }
.tab ul { display:block; }
.tab li { float:none; display:inline-block; padding:0; }

.contact-info section , .branch-item { width:100%; }
.contact-form-wrap > picture { float:left; width:100%; height:40vh; position:relative; top:auto; bottom:auto; left:auto; }
.contact-form { width:100%; padding:0 30px 30px 30px; }

.sidebar-icon {
	float:left;
	width:100%;
	height:50px;
	margin-top:20px;
	font-weight:600;
	font-size:18px;
	line-height:50px;
	letter-spacing:2px;
	cursor:pointer;
	position:relative;
	background:#FFF url(../images/icon-menu.png) no-repeat 16px center / auto 16px;
	z-index:90;
	display:block;
	text-align:center;
	border:1px solid #999;
	border-radius:4px;
	transition:all 0.4s;
	}

	.sidebar-icon::after { content:""; position:absolute; top:0; bottom:0; right:14px; width:16px; background:url(../images/arrow-down.png) no-repeat 0 center / 16px auto; transition:all 0.3s; }

.sidebar-icon-close { background-color:#D1112B; background-image:url(../images/icon-close.png) !important; color:#FFF !important; border-color:rgba(0,0,0,0.1) !important; border-radius:25px; }
	.sidebar-icon-close::after { background-image:url(../images/arrow-white-down.png); transform:rotate(180deg); }

.sidebar { width:100%; margin:20px 0; display:none; }
.right-block { width:100%; }
.product-list .inner-20 { margin:0 -15px; }
.product-list li { padding:0 15px; }

.accordion-section-title { padding:20px 0; padding-right:20px !important; font-size:15px; }
.accordion-section-title::after { right:5px; }
.accordion-section-content { padding:0 0 30px 0; }

.home-stores li { flex-basis:33.33334%; }

.wedding-package-content li { flex-basis:50%; }

.stores-map { height:480px; }

.showcase-item { width:50%; }
.showcase-item:first-child { width:100%; }

.slider-gallery-multiple::after { display:none; }

.product-item picture { height:220px; min-height:initial; }
.tower-list .product-item picture { height:300px; min-height:initial; }

.bed-layers , .bed-info { width:100%; }
.bed-info { margin-top:30px; }
.bed-layers li { margin-bottom:-8%; }

.page-hero-text { font-size:27px; line-height:40px; }

.slider-products-wrap { max-width:90%; }
.slider-products .slick-prev , .slider-products .slick-next { width:48px; height:48px; margin-top:-24px; border-width:3px; }
.slider-products .slick-prev { left:-24px; }
.slider-products .slick-next { right:6px; }
.slider-product-item a { border-radius:8px; }
.slider-product-item section { padding:40px 30px 24px 30px; }
.slider-product-item section::after { left:30px; }
.slider-product-item strong { padding-bottom:10px; font-size:24px; line-height:25px; }
.slider-product-item span { font-size:11px; }

.block-cta-wrap { padding:0 30px; display:block; }
.block-cta-left , .block-cta-right { width:100%; }
.block-cta-left { margin-bottom:30px; }

.welcome .link-all { margin:15px 0; }

}





@media only screen and (max-width:767px) {

.wrap , .wrap-slim , .block-cta-wrap { padding:0 25px; }
.cookies-wrap { right:0; left:0; width:auto; }
.cookies { padding:15px 20px; font-size:12px; border-radius:0; }
.cookies-close { right:10px; }
.my-fancy { padding:20px !important; }
ul.slick-dots { padding:40px 0 10px 0; }

.nav-icon { width:70px; padding-left:0; margin-left:-15px; text-indent:-9999px; }
.nav-icon span { left:calc(50% - 15px); }
.online-store , .header-lang-wrap::before , #nav li > a picture , .nav-sub-menu a::before , #nav-vize li a::before { display:none; }

.header-lang-wrap { float:right; margin-left:-5px; }
.search-icon { margin:15px 0 15px 5px; }

.nav-buttons { display:block; padding:25px 25px 0 25px; }
.nav-buttons li a { border-color:#D1112B; color:#D1112B; font-weight:600; letter-spacing:1px; }
.nav-buttons li { margin-bottom:15px; }

#nav ul { padding:25px; }
#nav li { width:100%; padding:0; border-bottom:1px solid rgba(0,0,0,0.05); box-shadow:none; }
#nav li:last-child { border-bottom:0; }
	#nav li.nav-multi::before { content:""; position:absolute; left:auto; top:0; right:0; width:20px; height:60px; background:url(../images/arrow-down.png) no-repeat 0 center; background-size:14px auto; opacity:0.7; }
	#nav li > a { width:100%; padding:0 20px; font-size:19px; color:#000; line-height:60px; }
	#nav li > a:hover , #nav li > a.active { box-shadow:none; }
	#nav li > a.active { color:#D1112B; }

	.nav-sub-menu { display:none; padding:10px 25px; margin-bottom:20px; background-image:linear-gradient(180deg,#F3F3F4,#FFF); }
		.nav-sub-menu::before {
			content:"";
			border-bottom:4px solid transparent;
			border-left:8px solid transparent;
			border-right:8px solid transparent;
			height:0;
			position:absolute;
			width:0;
			left:35px;
			top:-4px;
			border-bottom-color:#F3F3F4;
		}
		.nav-sub-menu a { padding:10px 0; font-size:14px; }

#nav-vize { margin-top:0; }
#nav-vize ul { padding:25px; }
#nav-vize li { width:100%; border-bottom:1px solid rgba(255,255,255,0.07); }
#nav-vize li:first-child { border-top:1px solid rgba(255,255,255,0.07); }
#nav-vize li a { padding:5px 20px; font-size:19px; font-weight:500; }

.page-hero-text { font-size:30px; line-height:40px; }

.footer-block { width:50%; }
.footer-block:last-child { width:100%; margin-top:20px; }
.footer-phone { text-align:center; }

.breadcrumb { display:none; }

.news-content , .news-sidebar { width:100%; }
.news-sidebar { padding-top:0; margin:-10px 0 20px 0; }
.news-photo { height:auto; }
.news-photo img { float:left; }

.block-flexed { display:block; }
.flex-left , .flex-right { width:100%; }
.flex-right { margin-top:10px; }

.slider-hero-product { padding-bottom:2px; }
.slider-hero-product-item a , .slider-hero-product-item section { padding:0 1px; }
.slider-hero-product-item a img , .slider-hero-product-item section img { height:60vh; min-height:320px; }

.store-item strong { margin:15px 0 6px 0; font-size:18px; }

.total-price { margin:10px 0; display:block; }
.total-price-left , .total-price-right { width:100%; }
.total-price section { padding:20px; font-size:14px; }
.total-price section article { margin-bottom:7px; }
.total-price li { width:100%; padding-left:20px; }

.related-products li { width:100%; }

.slider-gallery-multiple .slick-prev { left:-20px; }
.slider-gallery-multiple .slick-next { right:-20px; }

.slider-hero-product ul.slick-dots li { height:24px; margin:0 2px; }
.slider-hero-product ul.slick-dots li button { width:40px; height:24px; }

.welcome-stats li section strong { font-size:61px; }
.welcome-stats { width:calc(100% - 50px); padding:25px !important; margin-left:25px; }

.slider-products-wrap { width:calc(100% - 40px); max-width:initial; }

.join-us article { width:100%; margin-bottom:15px; font-size:17px; }
.join-us section { width:100%; }
.join-us .input { width:calc(100% - 110px); }
.join-us .button { width:100px; padding-left:20px; }

.home-stores li a { height:80px; }
.home-stores li a section strong { font-size:14px; font-weight:600; }

.store-item { flex-basis:100%; }

}



@media only screen and (max-width:640px) {

.header-search { right:120px; width:calc(100% - 133px); }

.slider-hero-title strong , .parallax-text { font-size:70px; }
.vize-stats li strong { margin-right:15px; font-size:60px; line-height:80px; }

.copyright .left , .copyright .right { width:100%; }
.copyright .right { margin-top:20px; }
.copyright .left section i { float:left; margin:0 20px; }

.welcome-wrap { margin-top:-20px; }

.welcome-video a picture::after { width:60px; height:60px; margin:-30px 0 0 -30px; background-size:auto 24px; }
.welcome-video a::before , .welcome-video a::after { width:240px; height:240px; margin:-120px 0 0 -120px; }

.catalog li { margin-bottom:20px; }
.catalog li a picture { width:120px; }
.catalog li a section { width:calc(100% - 120px); padding:20px; }
.catalog li a section strong { font-size:18px; font-weight:600; line-height:24px; }
.catalog li a section span { padding:5px 0; }

.wedding-package-content li { flex-basis:100%; }

.product-detail-links li , .wedding-showcase-item , .promotions li { width:100%; }

.product-sizes table { font-size:12px; }

.product-item picture { height:180px; }
.tower-list li { width:50%; }

}



@media only screen and (max-width:540px) {

.vize-catalog a section span { font-size:40px; }

.home-news .news-list li , .news-list li { margin-bottom:50px; }
.news-list li a { display:block; }
.news-list-picture , .form-item , .form-item .button , .product-list li { width:100%; }
.form-item { padding-bottom:20px; }
.news-list-content { width:100%; padding-left:0; padding-top:20px; }

.slider-hero-product-item a img , .slider-hero-product-item section img { height:40vh; min-height:280px; }

.related-products li { margin-bottom:30px; display:block; }
.related-products li > picture { width:100%; }
.related-products li > picture figure { border-width:2px; }
.related-products li picture figure img { max-height:120px; }
.related-products li > section { width:100%; margin-top:15px; }

.stores-map { height:360px; }

.showcase-item { width:100%; }

.tower-list .slider-product-item picture { height:450px !important; }

.home-stores .inner-10 { margin:0 -5px; }
.home-stores li { flex-basis:50%; padding:0 5px; margin-bottom:10px; }

.block-cta li { flex-basis:100%; margin-bottom:30px; }

}



@media only screen and (max-width:440px) {

#logo { margin-left:-5px; }

.slider-hero-item::after { top:0; bottom:0; left:-15%; right:-15%; opacity:0.85; }
.slider-hero-title strong { font-size:56px; }
.parallax-text { font-size:64px; }

.ig-block .inner-10 { margin:0 -5px; }
.ig-block ul { margin-bottom:-10px; }
.ig-block li { padding:0 5px; margin-bottom:10px; }

.vize-stats li { width:100%; }

.store-item strong { margin-bottom:1px; }
.store-item li i { width:100%; font-size:13px; }
.store-item li span , .store-item li em a { width:100%; }
.store-item li em a { padding:0; text-align:center; }

.product-item picture { height:220px; }

}



@media only screen and (max-width:374px) {



}
