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; }
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:#817B74; }
::-webkit-scrollbar-thumb { background:#252525; }
::-webkit-scrollbar-corner { background:#252525; }

body { margin:0; color:#111; font-size:14px; font-family:PolySans, Arial; line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; background-color:var(--color-light); }

*::-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-grey); text-decoration:none; }

:root {
	--color-dark:#000;
	--color-grey:#91807B;
	--color-grey-2:#C3B8B7;
	--color-light:#F8F7F6;
	
	--input-background-color: #FFF;
	--input-border-color: #DEDEDA;
	--input-border-color-inline: #DEDEDA;
	--input-border-color-checked: #38AF48;
	--input-background-color-checked: #38AF48;
	--input-border-color-inline-checked: #38AF48;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-focus: #38AF48;
}

/* 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-top:-4px; margin-right:8px; 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:solid 1px; border-color:var(--input-border-color); }
input[type='checkbox']::after { border:solid; border-color:#FFF; 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 {  }
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(--color-light); }

/* 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:PolySans, Arial; border-radius:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:PolySans, Arial; font-size:17px; font-weight:600; letter-spacing:1px; text-align:left; }

.input { width:100%; height:50px; padding:0 16px; border:0; transition:all 0.3s; border-bottom:2px solid var(--color-grey-2); background-color:transparent; color:#000; }
.input:focus { border-color:var(--color-grey); box-shadow:4px 4px 0 rgba(0,0,0,0.07); }

.select { background:var(--color-light) url(../images/arrow-select.png) no-repeat right center; background-size:auto 5px; box-shadow: none; -webkit-appearance:none; -moz-appearance:none; appearance:none; }

textarea.input { padding-top:12px !important; padding-bottom:12px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 50px 0 25px; cursor:pointer; position:relative; color:#FFF; background-color:var(--color-grey); transition:all 0.25s; overflow:hidden; }
.button:hover { background-color:var(--color-dark); }
	.button::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:13px; background:url(../images/arrow-white-right.png) no-repeat right center / 13px 20px; transition:all 0.25s; }
	.button:hover::after { right:15px; }
	
a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.sade { float:left; width:100%; position:relative; background-color:var(--color-light); }
	.outer { float:left; width:100%; padding:0 55px; position:relative; }
		.wrap , .wrap-slim { width:100%; max-width:1740px; padding:0 30px; min-height:10px; margin:0 auto; position:relative; }
		.wrap-slim { width:1440px; }

.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%; }
.mt40 { margin-top:40px; }
.mt30 { margin-top:30px; }
.mt20 { margin-top:20px; }
.mt10 { margin-top:10px; }
.mb40 { margin-bottom:40px; }
.mb30 { margin-bottom:30px; }
.mb20 { margin-bottom:20px; }
.mb10 { margin-bottom:10px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; padding:30px; z-index:8000; transition:all 0.5s; }
.nav-up , .nav-down { padding:15px; background-color:rgba(255,255,255,0.7); box-shadow:0 0 40px rgba(0,0,0,0.1); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
	.header-flex { display:flex; align-items:center; position:relative; }
	
	#logo { position:absolute; top:35px; left:calc(50% - 100px); width:200px; text-align:center; transition:all 0.4s; }
	.nav-up #logo , .nav-down #logo { top:20px; }
		#logo a { display:inline-block; position:relative; }
			#logo img { float:left; height:40px; position:relative; z-index:100; transition:all 0.4s; }
			.nav-up #logo img , .nav-down #logo img { padding:5px 0; }
			#logo img:hover { opacity:0.8; }
	
	.header-contact { float:right; position:relative; z-index:300; }
		.header-contact a { float:left; padding:0 30px; background-color:#000; font-size:16px; color:#FFF; line-height:50px; transition:all 0.5s; }
		.header-contact a:hover { background-color:var(--color-grey); }
	
	.header-lang { float:right; margin-right:60px; position:relative; z-index:300; text-align:center; }
		.header-lang li { margin-right:20px; }
		.header-lang li:last-child { margin-right:0; }
			.header-lang li a { float:left; width:40px; color:var(--color-grey); font-size:16px; line-height:50px; box-shadow:inset 0 -2px 0 rgba(0,0,0,0.1); transition:all 0.5s; }
			.header-lang li a:hover , .header-lang li a.active { color:#000; box-shadow:inset 0 -2px 0 #000; }
	
	.nav-icon , .mobile-nav , .sidebar-icon { display:none; }
	
	#nav { float:left; margin-left:15px; position:relative; }		
		#nav > ul > li { margin-right:30px; position:relative; }
		#nav > ul > li:last-child { margin-right:0; }
			#nav > ul > li > a { float:left; padding:0 12px; position:relative; font-weight:600; font-size:16px; line-height:50px; transition:all 0.3s; }
			#nav > ul > li:hover > a , #nav > ul > li > a.active { color:var(--color-grey); }
				#nav > ul > li > a::before { content:""; position:absolute; top:-16px; left:calc(50% - 8px); width:16px; height:16px; background-color:var(--color-orange); border-radius:50%; transition:all 0.3s; }
				#nav > ul > li:hover > a::before , #nav > ul > li > a.active::before { top:-8px; background-color:var(--color-orange); }
				#nav > ul > li > a img { float:left; height:80px; }
				#nav > ul > li > a small { display:none; }
			
			.nav-menu { display:none; position:absolute; top:60px; left:calc(50% - 130px); width:260px; padding:20px; background-color:#FFF; text-align:left; box-shadow:0 10px 30px rgba(0,0,0,0.1); }
				
				.nav-menu > a { float:left; width:100%; padding:10px 15px 10px 20px; position:relative; display:flex; align-items:center; font-weight:500; transition:all 0.3s; border-radius:20px; }
				.nav-menu > a:hover { background-color:var(--color-light); }

/*	Finish TOP	*/

.controls { height:100%; }
	.slick-prev , .slick-next { 
		position:absolute;
		top:calc(50% - 20px);
		width:40px; 
		height:40px; 
		text-indent:-9999px; 
		cursor:pointer;
		z-index:1000;
		transition:all 0.3s;
		background:#FFF url(../images/arrow-left.png) no-repeat center / 16px;
		border-radius:50%; 
		box-shadow:0 0 27px rgba(51,75,147,0.2);
		}
		
	.slick-prev { left:20px; }
	.slick-next { right:20px; background-image:url(../images/arrow-right.png); }
	
	.slick-prev:hover , .slick-next:hover { background-color:var(--color-dark) !important; }
	.slick-prev:hover { background-image:url(../images/arrow-white-left.png); }
	.slick-next:hover { background-image:url(../images/arrow-white-right.png); }
	
	ul.slick-dots { position:absolute; left:0; right:0; bottom:0; z-index:1000; padding:20px 0; }
		ul.slick-dots li { float:none; width:30px; height:10px; margin:0 5px; display:inline-block; transition:all 0.3s; }
			ul.slick-dots li button { float:left; width:100%; height:100%; border-top:4px solid rgba(0,0,0,0); border-bottom:4px solid rgba(0,0,0,0); transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.2; }
			ul.slick-dots li button:hover { opacity:1 !important; }
				ul.slick-dots li button::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:var(--color-dark); transition:all 0.3s; border-radius:3px; }
				ul.slick-dots li button:hover::after { background-color:#000 !important; }
			ul.slick-dots li.slick-active button { opacity:1 !important; }
				ul.slick-dots li.slick-active button::after { background-color:#000 !important; }

.slider-hero-wrap { float:left; width:100%; position:relative; z-index:800; }
	
	.slider-hero-mask { position:absolute; top:0; bottom:45%; left:0; right:0; z-index:200; }
		.mask-box { position:absolute; top:0; bottom:0; left:0; width:calc(33.33334% - 20px); background-color:var(--color-light); }
		.mask-box:last-child { left:33.33334%; bottom:35%; }
			.slider-hero-mask::after , .mask-box::before , .mask-box::after { content:""; position:absolute; top:0; left:20px; bottom:0; width:1px; background-image:linear-gradient(180deg,#000,rgba(0,0,0,0.0)); opacity:0.08; }
			.slider-hero-mask::after { left:calc(66.66666% + 20px); bottom:60%; }
			.mask-box:first-child::before { display:none; }
			.mask-box::after { left:auto; right:0; }
	
	.slider-hero { float:left; width:100%; position:relative; z-index:100; overflow:hidden; text-align:center; }
		.slider-hero .slick-list { overflow:hidden; }
		.slider-hero-item { float:left; width:100%; height:100vh; min-height:600px; padding-top:160px; position:relative; overflow:hidden; }
			
			.slider-hero-item::before , .slider-hero-item::after { content:""; position:absolute; top:0; bottom:0; left:calc(33.33334% - 20px); width:40px; background-color:var(--color-light); z-index:1; }
			.slider-hero-item::after { left:calc(66.66666% - 20px); }
			
			.item-zoom { position:absolute; top:160px; bottom:0; left:0; right:0; background-size:cover; background-position:center; background-repeat:no-repeat; transition:all 3s; transform-origin:center; transform:scale(1.5); z-index:-1; }
			.slick-current .item-zoom { transform:scale(1); }
			
			.slider-hero-video { position:absolute; top:160px; bottom:0; left:0; right:0; width:100%; height:100%; object-fit:cover; }
			
			.slider-hero-title { position:absolute; top:180px; left:20%; width:64%; z-index:1100; text-align:left; opacity:0; transition:all 2s; }
			.slick-current .slider-hero-title { left:0; opacity:1; }
			
			.slider-hero-item picture , .slider-hero-item picture img { float:left; width:100%; display:none; }
	
	
	.slider-hero ul.slick-dots { background:none; }
		.slider-hero ul.slick-dots li { width:40px; }

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; text-align:center; }
.mask-top { top:0; bottom:auto; }
.mask-bottom { height:40px; bottom:-25px; }
	.mask > img , .mask-top > img { float:left; width:100%; }
	.mask-center > img { float:none; display:inline-block; width:auto; height:40px; }
	.mask-bottom > img { margin-bottom:-40px; }

/*	Start FOOTER	*/

.footer { float:left; width:100%; padding-top:120px; position:relative; background:url(../images/bg-footer.jpg) no-repeat 0 0 / 100% auto; }

	.footer-left { float:left; width:33.33334%; position:relative; }
	.footer-right { float:right; width:66.66666%; position:relative; }
		
		.footer-logo { float:left; width:100%; margin-bottom:40px; position:relative; }
			.footer-logo img { float:left; height:40px; }
		
		.footer-social { float:left; width:100%; position:relative; }
			.footer-social li { padding-right:20px; }
			.footer-social li:last-child { padding-right:0; }
				.footer-social li a { float:left; transition:all 0.4s; }
				.footer-social li a:hover { background-color:#FFF; }
					.footer-social li a img { float:left; height:50px; }
		
		.footer-links { float:left; width:50%; padding-top:4px; position:relative; }
			.footer-links ul { width:100%; }
				.footer-links li { width:100%; margin-bottom:5px; }
					.footer-links li a { float:left; width:100%; max-width:240px; padding:10px 0; font-size:29px; font-weight:300; line-height:30px; }
					
		.footer-connect { float:left; width:50%; padding-top:25px; position:relative; }
			.footer-connect section { float:left; width:100%; margin-bottom:20px; }
				.footer-connect section small { display:block; margin-bottom:9px; font-weight:600; color:var(--color-grey); letter-spacing:2px; }
				.footer-connect section a { font-size:29px; font-weight:300; line-height:30px; }
			.footer-connect > a { float:left; width:100%; padding:0 24px; margin-top:25px; position:relative; font-size:16px; font-weight:600; letter-spacing:1px; line-height:48px; border:1px solid #000; transition:all 0.4s; }
			.footer-connect > a:hover { border-color:var(--color-grey); background-color:var(--color-grey); color:#FFF; }
				.footer-connect > a::after { content:""; position:absolute; top:0; bottom:0; right:19px; width:10px; background:url(../images/arrow-right.png) no-repeat center / 10px 16px; transition:all 0.4s; }
				.footer-connect > a:hover::after { right:15px; background-image:url(../images/arrow-white-right.png); }
		
	.copyright { float:left; width:100%; padding:80px 0; margin-top:80px; position:relative; z-index:10; display:flex; align-items:center; border-top:2px solid rgba(195,185,183,0.5); }
		
		.copyright .left { float:left; width:calc(100% - 160px); color:rgba(0,0,0,0.5); }
		
		.copyright .right { float:right; margin-left:auto; }
			.copyright .right a { float:left; }
				.copyright .right a img { float:right; height:24px; margin:-2px 0 -2px 7px; }
	
/*	Start CONTENT	*/

.page-title { float:left; width:100%; position:relative; font-size:51px; letter-spacing:-1px; line-height:60px; z-index:830; }
.page-title.xl { font-size:74px; line-height:80px; }
.page-title.space-bottom { margin-bottom:30px; }

.small-title { float:left; width:100%; padding-left:30px; position:relative; font-weight:600; color:var(--color-grey); letter-spacing:2px; z-index:30; }
.small-title.space-bottom { margin-bottom:15px; }
	.small-title::before { content:""; position:absolute; top:calc(50% - 7px); left:0; width:14px; height:14px; background-color:var(--color-grey); border-radius:50%; }

.wa { width:auto; }

.fw-700 { font-weight:700; }
.fw-600 { font-weight:600; }
.fw-300 { font-weight:300; }

.text-grey { color:var(--color-grey) !important; }
.text-white { color:#FFF !important; }
.text-italic { font-style:italic !important; }

.page-summary { float:left; width:100%; position:relative; font-size:31px; font-weight:300; color:var(--color-grey); line-height:40px; z-index:30; }
.page-summary.slim { padding-left:10%; padding-right:10%; }

.narrow { padding-right:10%; }

.page-text { float:left; width:100%; position:relative; font-size:20px; font-weight:300; line-height:30px; z-index:30; }
.page-text.space-in { margin-top:-2px; }
.page-text.space-top { margin-top:27px; }
.page-text.space-bottom { margin-bottom:32px; }
.page-text.text-italic { letter-spacing:0.5px; }
	
	.page-text h2 , .page-text h3 , .page-text h4 , .page-text h5 { display:block; margin-bottom:20px; font-size:32px; font-weight:700; line-height:40px; }
	.page-text h3 { font-size:28px; line-height:35px; }
	.page-text h4 { font-size:24px; line-height:30px; }
	.page-text h5 { font-size:20px; line-height:25px; }
	.page-text p { margin-bottom:20px; }
	.page-text p:last-child { margin-bottom:0; }
	
	.page-text a { font-weight:500; text-decoration:underline; }
	.page-text a:hover { text-decoration:none; }
	
	.page-text img { max-width:100%; }

	.page-text ul , .page-text ol { float:none; padding-bottom:20px; display:table; }
	.page-text ol { padding-left:30px; padding-bottom:20px; display:inline-block; }
		
		.page-text ul li { width:100%; margin-bottom:10px; position:relative; display:flex; align-items:center; }
			.page-text ul li::before { content:""; float:left; width:8px; height:8px; margin-right:12px; background-color:#5272FF; border-radius:50%; }
		
		.page-text ol li { width:100%; margin-bottom:15px; display:list-item; list-style:decimal; }
		.page-text ul li:last-child , .article-content ol li:last-child { margin-bottom:0; }
			.page-text ol li::marker { font-weight:700; }

.quote { float:left; width:100%; padding-left:170px; position:relative; font-size:33px; font-weight:300; letter-spacing:0.5px; line-height:50px; }
	.quote::before { content:""; position:absolute; top:0; left:0; width:80px; height:80px; background:url(../images/icon-quote.png) no-repeat 0 0 / 100% auto; }

.sade-world { float:left; width:100%; position:relative; }
	.sade-world > ul { width:100%; display:flex; flex-flow:row wrap; }
		.sade-world > ul > li { width:calc(50% - 100px); margin:50px 0; }
		.sade-world > ul > li:nth-child(even) { margin-left:auto; }
		.sade-world > ul > li:nth-child(1) { padding:10px 4% 0 10%; }
		.sade-world > ul > li:nth-child(2) { padding:0 4% 0 5%; }
		.sade-world > ul > li:nth-child(4) { padding:50px 13% 0 0; }

.sade-world-item { float:left; width:100%; position:relative; }
	.sade-world-item picture { float:left; width:100%; position:relative; }
		.sade-world-item picture::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:var(--color-grey); transform:rotate(3deg); transition:all 0.5s; opacity:0.2; }
		.sade-world-item:hover picture::before { transform:rotate(-3deg); opacity:0.6; }
		.sade-world-item picture img { float:left; width:100%; position:relative; }
	.sade-world-item strong { float:left; width:100%; padding-left:40px; margin:22px 0 7px 0; position:relative; font-size:20px; font-weight:400; }
		.sade-world-item strong::before { content:""; position:absolute; top:10px; left:0; width:20px; height:2px; background-color:#000; }
	.sade-world-item small { float:left; width:100%; padding-left:40px; position:relative; font-size:16px; font-style:italic; font-weight:300; color:var(--color-grey); letter-spacing:0.5px; }


@keyframes gradientAnimation {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.gradient-animation {
	background-image: linear-gradient(100deg,#FF7448,#FF4848 42%,#6248FF 85%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientAnimation 5s ease-in-out infinite;
	background-size: 200% 200%;
}


.page-photo { float:right; width:50%; max-width:500px; 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%; }

.sade-stats { float:left; width:100%; padding-top:50px; position:relative; border-top:2px solid #000; }
	.sade-stats ul { width:100%; margin-bottom:-50px; display:flex; flex-flow:row wrap; }
		.sade-stats li { flex:1; flex-basis:50%; margin:50px 0; position:relative; }
			.sade-stats li strong { float:left; width:100%; font-size:118px; font-weight:500; color:var(--color-grey); line-height:120px; }
			.sade-stats li small { float:left; width:100%; padding:18px 0 17px 0; position:relative; font-size:33px; font-weight:500; color:#000; line-height:40px; }

.project-item { float:left; width:100%; display:flex; flex-flow:row wrap; transition:all 0.5s; }
	.project-item-photo , .project-item-content { float:left; width:50%; position:relative; }
	.project-item-content { float:right; width:calc(50% - 100px); padding:40px 0; margin-left:auto; display:flex; flex-direction:column; row-gap:20px; }
		.project-item-top { display:flex; flex-direction:column; position:relative; flex:1 1; }
		.project-item-bottom { margin-top:auto; }
		
			.project-title { float:left; width:100%; font-size:51px; font-weight:600; line-height:60px; }
			.project-summary { float:left; width:100%; padding-top:27px; font-size:20px; font-weight:300; font-style:italic; color:var(--color-grey-2); line-height:30px; }
			.project-item-cta { float:left; padding:10px 25px 10px 0; font-size:18px; background:url(../images/arrow-right.png) no-repeat right center / 10px 16px; transition:all 0.75s; }
			.project-item:hover .project-item-cta { padding-right:35px; letter-spacing:1px; }
		
	.project-item-photo picture { float:left; width:100%; position:relative; }
		
		/* .project-item-photo picture::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:var(--color-grey); transform:rotate(3deg); transition:all 1s; opacity:0.2; }
		.project-item:hover .project-item-photo picture::before { transform:rotate(-3deg); opacity:0.6; } */
		
		.project-item-photo picture::before , .project-item-photo picture::after { content:""; position:absolute; top:0; left:0; width:50%; height:48px; background-color:var(--color-light); transition:all 1s; z-index:100; }
		.project-item-photo picture::after { top:auto; bottom:0; left:auto; right:0; }
		.project-item:hover .project-item-photo picture::before , .project-item:hover .project-item-photo picture::after { width:0; opacity:0; }
		
		.project-item-photo picture small { float:left; width:100%; position:relative; z-index:10; overflow:hidden; }
			.project-item-photo picture small img { float:left; width:100%; transform-origin:center; transition:all 4s; }
			.project-item:hover .project-item-photo picture small img { transform:scale(1.2,1.2); }
			.project-item-photo picture small::after { content:""; position:absolute; top:0; bottom:0; left:calc(50% - 4px); width:8px; background-color:var(--color-light); transition:all 0.75s; }
			.project-item:hover .project-item-photo picture small::after { top:50%; bottom:50%; opacity:0; }

.projects { float:left; width:100%; position:relative; }
	.projects > ul { width:100%; }
		.projects > ul > li { width:100%; margin-bottom:150px; }
		
		.projects > ul > li:nth-child(even) .project-item-content { float:left; margin-left:0; }
		.projects > ul > li:nth-child(even) .project-item-photo { float:right; margin-left:auto; }


.project-hero-wrap { float:left; width:100%; height:calc(100vh - 160px); min-height:480px; margin-top:160px; position:relative; }
	
	.project-hero-wrap .project-title { position:absolute; top:80px; right:0; width:calc(35% - 40px); text-align:right; z-index:100; }
		.project-hero-wrap .project-title::after { content:""; position:absolute; bottom:-20px; right:0; width:140px; height:2px; background-color:var(--color-grey-2); }
	
	.project-hero { float:left; width:100%; height:100%; position:relative; display:flex; flex-direction:row; }
	
	.project-hero-1 , .project-hero-2 { float:left; width:65%; height:100%; position:relative; overflow:hidden; }
	.project-hero-2 { float:right; width:calc(35% - 40px); height:60%; margin-top:auto; margin-left:auto; }
		.project-hero-1 > img , .project-hero-2 > img { width:100%; height:100%; object-fit:cover; opacity:0; }

.project-catalog { position:absolute; left:30px; right:30px; bottom:0; z-index:200; }
	.project-catalog a { float:left; width:100%; padding:20px 30px; position:relative; background-color:var(--color-dark); color:#FFF; font-weight:600; font-size:20px; letter-spacing:0.5px; transition:all 0.5s; }
	.project-catalog a:hover { background-color:var(--color-grey); }
		.project-catalog a::after { content:""; position:absolute; right:10px; top:10px; width:40px; height:40px; background:url(../images/arrow-white-right.png) no-repeat center / auto 20px; transition:all 0.3s; border-radius:50%; }
		.project-catalog a:hover::after { transform:rotate(90deg); background-color:var(--color-dark); border-radius:0; }

.project-info { float:left; width:100%; margin-top:80px; margin-bottom:-40px; position:relative; display:flex; flex-flow:row wrap; }
	.project-info section { float:left; width:calc(50% - 10px); margin-bottom:40px; }
	.project-info section:nth-child(even) { float:right; margin-left:auto; }
		.project-info section small { float:left; width:100%; margin-top:15px; font-size:20px; font-weight:300; line-height:25px; }

.project-video { float:left; width:100%; position:relative; overflow:hidden; }
	.project-video img { float:left; width:100%; max-height:880px; }
	.video { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }

.project-block { float:left; width:100%; position:relative; } 
.project-left { float:left; width:25%; padding-right:30px; }
.project-right { float:right; width:75%; } 

.project-specs { float:left; width:100%; position:relative; }
	.project-specs ul { width:100%; display:flex; flex-flow:row wrap; }
		.project-specs li { margin:0 20px 20px 0; }
			.project-specs li small { float:left; padding:8px 20px 10px 20px; border:1px solid var(--color-grey-2); font-size:18px; border-radius:20px; transition:all 0.4s; }
			.project-specs li small:hover { border-color:var(--color-dark); }

.project-gallery { float:left; width:100%; position:relative; } 
	.project-gallery ul { width:calc(100% + 30px); margin-left:-15px; display:flex; flex-flow:row wrap; } 
		.project-gallery li { width:33.33334%; padding:0 15px; margin-bottom:30px; } 
		.project-gallery li:nth-child(-n + 2) { width:50%; } 
			.project-gallery li a { float:left; width:100%; overflow:hidden; transition:all 1s; } 
			.project-gallery li a:hover { border-radius:64px; } 
				.project-gallery li a picture { float:left; width:100%; } 
					.project-gallery li a picture img { float:left; width:100%; transform-origin:center; transition:all 2.5s; } 
					.project-gallery li a:hover picture img { transform:scale(1.3,1.3); } 

.tab { float:left; width:100%; margin-bottom:20px; position:relative; text-align:center; }
	.tab ul { float:none; height:50px; display:inline-block; overflow:hidden; }
		.tab li { margin-right:20px; }
		.tab li:last-child { margin-right:0; }
			.tab li a { float:left; padding:13px 24px 15px 24px; border:1px solid var(--color-grey-2); font-size:18px; border-radius:25px; transition:all 0.4s; }
			.tab li a:hover { border-color:var(--color-dark); }
			.tab li a.active { border-color:var(--color-dark); background-color:var(--color-dark); color:#FFF; }

.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; }

.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-lines { position:relative; }
.block-lines::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-lines.png) no-repeat 0 0 / 100% auto; opacity:0.3; }
.block-white { position:relative; background-color:#FFF; }

.block-narrow , .block-wide { float:left; width:320px; padding-right:20px; position:relative; }
.block-wide { float:right; width:calc(100% - 380px); padding-right:0; }
.block-center { float:left; width:calc(50% - 240px); padding-right:60px; }
.block-right { float:right; width:50%; }
	.block-narrow .small-title { margin-top:17px; }
	.block-right .page-text { margin-top:13px; }

.block-sade { float:left; width:100%; position:relative; }
	.block-sade-left , .block-sade-right { float:left; width:calc(50% - 100px); position:relative; }
	.block-sade-right { float:right; }
		.block-sade-picture , .block-sade-picture img { float:left; width:100%; position:relative; }

.link-all { float:left; width:100%; position:relative; text-align:center; z-index:100; }
	.link-all a { display:inline-block; height:50px; padding:0 20px; position:relative; font-weight:600; color:var(--color-grey); letter-spacing:1px; line-height:48px; transition:all 0.5s; }
	.link-all a:hover { color:var(--color-dark); }
		.link-all a::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background-color:var(--color-light); transition:all 0.3s; }
		.link-all a:hover::after { background-color:var(--color-dark); }

.link-cta a { font-size:17px; letter-spacing:0; background-color:var(--color-grey); color:#FFF !important; }
.link-cta a:hover { background-color:var(--color-dark); }
	.link-cta a::after { background-color:var(--color-dark); }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.sub-page { padding-top:200px; }

.sub-hero .slider-hero-item { height:70vh; min-height:400px; }
.sub-hero .mask-box { left:auto; right:0; }
.sub-hero .mask-box:last-child { left:auto; right:33.33334%; }
.sub-hero .slider-hero-mask::after , .sub-hero .mask-box::before , .sub-hero .mask-box::after { display:none; }
.sub-hero ul.slick-dots { display:none; }

.breadcrumb { float:left; width:100%; padding:15px 0; position:relative; color:#FFF; line-height:40px; z-index:50; overflow:hidden; box-shadow:inset 0 1px 0 rgba(255,255,255,0.1); }
	.breadcrumb section { display:inline-block; }
		.breadcrumb a { float:left; color:rgba(255,255,255,0.75); }
		.breadcrumb a:hover { color:#FFF; text-decoration:underline; }
		.breadcrumb i { float:left; margin:0 20px; opacity:0.4; }
		.breadcrumb strong { float:left; font-weight:500; color:#FFF; }

.block-flexed { float:left; width:100%; position:relative; display:flex; }
.align-center { align-items:center; }
	.flex-left { float:left; width:50%; padding-right:5%; position:relative; }
	.flex-right { float:right; width:50%; position:relative; }
	
.promo-wrap , .promo { float:left; width:100%; position:relative; }
	.promo > ul { width:100%; }
		.promo > ul > li { display:flex; align-items:center; margin-bottom:120px; position:relative; }
		.promo > ul > li:last-child { margin-bottom:0; }
			
			.promo > ul > li picture { float:right; width:50%; margin-left:auto; position:relative; text-align:right; }
				.promo > ul > li picture img { float:left; width:100%; position:relative; z-index:10; }
			
			.promo-content { float:left; width:calc(50% - 120px); 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; }

.block-two { width:calc(50% - 60px); }

.gallery { float:left; width:100%; margin-top:40px; position:relative; overflow:hidden; }
	.gallery ul { width:100%; margin-bottom:20px; }
		.gallery li { width:33.33334%; padding:0 5px; margin-bottom:10px; position:relative; }
			.gallery li a { float:left; width:100%; position:relative; overflow:hidden; color:#FFF; }
				.gallery li a::after { content:""; position:absolute; top:15px; right:15px; width:30px; height:30px; background:#CFBCAF url(../images/icon-expand.png) no-repeat center / 12px; border-radius:50%; transition:all 0.4s; }
				.gallery li a:hover::after { background-color:#FFF; box-shadow:0 0 10px rgba(0,0,0,0.07); }
				.gallery li a section { float:left; width:100%; position:relative; overflow:hidden; }
					.gallery li a picture { float:left; width:100%; background-size:cover; background-position:center top; transform-origin:center; transition:all 1.25s; }
					.gallery li a:hover picture { transform:scale(1.3,1.3); }
						.gallery li a picture img { float:left; width:100%; }

/*	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:19px; font-weight:600; letter-spacing:1px; border-top:1px solid rgba(0,0,0,0.06); z-index:10; transition:all 0.3s; }
	.accordion-section-title:hover , .accordion-section-title.active { background-color:var(--color-light) !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:30px 0 40px 30px; position:relative; display:none; }
		.accordion-section-text { float:left; width:100%; font-size:17px; line-height:30px; }
		
.contact-hero { float:left; width:100%; height:calc(100vh - 160px); min-height:480px; margin-top:160px; position:relative; mix-blend-mode:multiply; }
	.contact-hero-in { float:left; width:100%; height:100%; display:flex; flex-flow:row wrap; }
		.contact-message { float:left; width:50%; padding-right:10%; display:flex; flex-direction:column; }
			.contact-message .page-summary { padding-left:60px; }
		.contact-photo { float:left; width:25%; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; }
			.contact-photo::before , .contact-photo::after { content:""; position:absolute; top:0; bottom:10%; left:calc(33.33334%); width:24px; margin-left:-12px; background-image:linear-gradient(180deg,#FFF 50%,rgba(248,247,246,0.0)); z-index:10; }
			.contact-photo::after { top:10%; bottom:35%; left:calc(66.66666%); }
			.contact-photo-mask { position:absolute; top:0; bottom:75%; left:0; right:0; z-index:10; }
				.contact-photo-mask::before , .contact-photo-mask::after { content:""; position:absolute; top:0; bottom:0; right:0; width:33.33334%; background-color:#FFF; }
				.contact-photo-mask::after { bottom:50%; width:66.66666%; }
			.contact-photo img { float:left; width:100%; }
		.contact-info { float:left; width:25%; padding-left:100px; display:flex; flex-direction:column; }
			.contact-hero-bottom { float:left; width:100%; padding-bottom:80px; margin-top:auto; }
			
			.contact-info-item { float:left; width:100%; margin-bottom:76px; }
			.contact-info-item:last-child { margin-bottom:0; }
			
			.contact-info section { float:left; width:100%; padding-bottom:14px; font-size:19px; font-weight:300; /* font-style:italic; */ color:var(--color-grey); letter-spacing:0.5px; }
			.contact-info ul { width:100%; }
				.contact-info li { width:100%; }
					.contact-info li a { float:left; width:100%; font-size:21px; line-height:30px; }

.contact-map { float:left; width:100%; height:640px; position:relative; overflow:hidden; }
.project-map { padding:10px; background-color:#FFF; }

.contact-form { float:left; width:100%; position:relative; }
	.form-item { float:left; width:50%; padding:0 15px; margin-bottom:30px; position:relative; }
	.form-item-name { float:left; width:100%; margin-top:4px; margin-bottom:16px; font-weight:500; font-size:16px; color:var(--color-dark); }
	.form-item:last-child { margin-bottom:0; }
		.form-item label { float:left; margin-right:24px; font-weight:500; }
		.form-item label:last-child { margin-right:0; }
		.form-item section { float:left; width:100%; font-size:16px; font-weight:600; margin-bottom:-10px; }
		
		.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; }

.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }
	.upload section { float:left; width:100%; height:50px; padding:0 16px; line-height:50px; border-bottom:2px solid var(--color-grey-2); transition:all 0.3s; }
	.upload:hover section { border-color:var(--color-grey); box-shadow:4px 4px 0 rgba(0,0,0,0.07); }
		.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:48px; background:url(../images/icon-attach.png) no-repeat center / 20px; }
	.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; }


.form-narrow { width:100%; max-width:640px; margin:0 auto; }


/*	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:0 !important; max-width:640px !important; border-radius:12px; box-shadow:0 0 60px rgba(235,102,41,0.6); }
	
	.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:50px; height:2px; margin-top:-1px; background-color:#CEC9C8; }
	.fancy-title strong { float:left; padding:0 15px; position:relative; font-weight:500; 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; }

/*	Start PAGINATION	*/
	
.pages { float:left; width:100%; margin-top:20px; position:relative; line-height:44px; text-align:center; }
	
	.pages ul { width:100%; }
		.pages li { float:none; display:inline-block; padding:0 5px; }
			.pages li a { float:left; width:44px; height:44px; font-weight:600; transition:all 0.4s; }
			.pages li a:hover { background-color:var(--color-light); }
			.pages li a.current { color:#FFF; background-color:var(--color-grey); }
				
.cookies-wrap { position:fixed; right:20px; bottom:20px; width:360px; z-index:7950; }
	.cookies { float:left; width:100%; padding:25px; position:relative; background-color:rgba(255,255,255,0.7); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); box-shadow:0 10px 30px rgba(0,0,0,0.1); }
		.cookies section { float:left; width:100%; position:relative; }
		.cookies-close { position:absolute; top:-12px; right:20px; width:24px; height:24px; }
			.cookies-close span { float:left; width:100%; height:100%; position:relative; text-indent:-9999px; background:var(--color-dark) url(../images/icon-close.png) no-repeat center / 12px; cursor:pointer; }
			.cookies-close span:hover { background-size:16px; background-color:var(--color-grey); }



@media only screen and (max-width:1740px) {

.wrap { float:left; padding:0 55px; }

.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; }

.sub-page { padding-top:150px; }
.sub-hero { margin-top:-70px; }

.project-hero-wrap .project-title { top:30px; }

}



@media only screen and (max-width:1440px) {

.outer , .wrap , .wrap-slim { width:100%; padding:0 30px; }

.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; }

.slider-hero-item { padding-top:110px; }
.item-zoom , .slider-hero-video { top:110px; }

.block-sade-left , .block-sade-right , .sade-world > ul > li { width:calc(50% - 40px); }

.sade-world > ul > li:nth-child(1) { padding:10px 30px 0 5%; }
.sade-world > ul > li:nth-child(2) { padding:0 0 0 20px; }
.sade-world > ul > li:nth-child(4) { padding:30px 6% 0 0; }

.quote { padding-left:120px; font-size:27px; line-height:40px; }
.quote::before { width:60px; height:60px; }

.copyright { padding:50px 0; margin-top:50px; }
.sub-page { padding-top:150px; }
.sub-hero { margin-top:-40px; }

.projects > ul > li { width:100%; margin-bottom:100px; }
.project-item-content { width:calc(50% - 60px); padding:20px 0; }

.contact-message { padding-right:50px; }
.contact-info { padding-left:50px; }
.contact-info-item { margin-bottom:41px; }
.contact-hero-bottom { padding-bottom:50px; }
.contact-message .page-summary { padding-left:0; }

.narrow { padding-right:0; }

.project-hero-wrap { height:calc(100vh - 110px); min-height:400px; margin-top:110px; }
.project-hero-wrap .project-title , .project-hero-2 { width:calc(35% - 30px); }
.project-gallery ul { width:calc(100% + 16px); margin-left:-8px; } 
.project-gallery li { padding:0 8px; margin-bottom:16px; } 
.project-map { padding:5px; }

}



@media only screen and (max-width:1380px) {

#logo img { padding:5px 0; }
#nav > ul { margin-left:-20px; }
#nav > ul > li { margin-right:20px; }
#nav > ul > li > a { padding:0 8px; }

.slider-hero-mask { bottom:45%; }
.slider-hero-title { top:130px; }

.page-title { font-size:40px; line-height:50px; }
.page-title.xl { font-size:51px; line-height:60px; }

.sade-stats { padding-top:20px; }
.sade-stats ul { margin-bottom:-30px; }
.sade-stats li { margin:30px 0; }
.sade-stats li strong { font-size:99px; line-height:100px; }

.mask-box { width:calc(33.33334% - 12px); }
.slider-hero-item::before , .slider-hero-item::after { left:calc(33.33334% - 12px); width:24px; }
.slider-hero-item::after { left:calc(66.66666% - 12px); }
.mask-box::before { left:12px; }
.slider-hero-mask::after { left:calc(66.66666% + 12px); }

.project-item-photo picture::before , .project-item-photo picture::after { height:24px; }
.project-title { font-size:40px; line-height:50px; }
.project-summary { padding-top:16px; font-size:18px; line-height:25px; }

.contact-message { width:45%; }
.contact-info { width:30%; }
.contact-map { height:480px; }

.project-catalog { left:20px; right:20px; }
.project-catalog a { font-size:17px; }

}



@media only screen and (max-width:1023px) {

.sade { padding-top:70px; } 
.outer { padding:0; }

.header { height:70px; padding:0 10px !important; }
.nav-up , .nav-down { background-color:var(--color-light) !important; }

#logo { top:15px !important; left:20px; width:auto; }
#logo a { float:left; }
#logo a img { float:left; }

.header-lang { margin-right:15px; margin-top:15px; }
.header-lang li { margin-right:10px; }
.header-lang li:last-child { margin-right:0; }
.header-lang li a { font-size:13px; line-height:40px; }

.nav-icon { float:right; width:70px; height:70px; position:relative; cursor:pointer; display:block; text-indent:-9999px; z-index:200; }
	.nav-icon span { position:absolute; top:50%; left:50%; width:32px; height:2px; margin:-1px 0 0 -16px; transition:all 0.5s; }
		.nav-icon span::before { content:""; position:absolute; top:-6px; left:0; right:0; height:2px; background-color:var(--color-dark); transition:all 0.5s; }
		.nav-icon span::after { content:""; position:absolute; bottom:-6px; left:0; right:6px; height:2px; background-color:var(--color-dark); 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);
			background-color:var(--color-grey);
			top:0;
		}
		.nav-icon-close span::after { 
			-webkit-transform:rotate(135deg);
			-moz-transform:rotate(135deg);
			-o-transform:rotate(135deg);
			-ms-transform:rotate(135deg);
			transform:rotate(135deg);
			background-color:var(--color-grey);
			bottom:0;
			right:0;
		}
		
	.nav-icon-close::before { 
		content:"";
		border-bottom:4px solid transparent;
		border-left:10px solid transparent;
		border-right:10px solid transparent;
		height:0;
		position: absolute;
		width:0;
		left:50%;
		bottom:0;
		margin-left:-10px;
		border-bottom-color:#FFF;
	}

#nav-wrap { position:fixed; top:70px; bottom:0; left:0; right:0; width:100%; height:100vh; padding:30px 30px 180px 30px; background-color:#FFF; overflow-y:auto; z-index:200; display:none; }
#nav-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-lines.png) no-repeat 0 0 / cover; transition:all 0.5s; opacity:0.5; }
#nav { width:100%; margin-left:0; }
	#nav > ul { float:left; width:100%; margin:0; }
		#nav > ul > li { width:100%; margin-right:0; text-align:left; }
			#nav > ul > li.nav-multi::before { content:""; position:absolute; top:0; right:0; width:40px; height:60px; background:url(../images/arrow-white-down.png) no-repeat center 52%; background-size:14px auto; opacity:0.7; }
			#nav > ul > li > a { width:100%; padding:0 25px; font-size:20px; line-height:60px; }
				
			.nav-menu { float:left; width:100%; position:relative; top:auto; left:auto !important; margin-bottom:20px; }
				.nav-menu::before { 
					content:"";
					border-bottom:4px solid transparent;
					border-left:10px solid transparent;
					border-right:10px solid transparent;
					height:0;
					position: absolute;
					width:0;
					left:50px;
					top:-4px;
					margin-left:-10px;
					border-bottom-color:#FFF;
				}
				
				.nav-menu > a { padding:15px; font-size:17px; font-weight:500; transition:all 0.5s; }
				
			.nav-menu-pro li { flex-basis:100%; box-shadow:0 1px 0 rgba(0,0,0,0.07); }
				.nav-menu-pro li a { height:auto; display:flex; align-items:center; box-shadow:none !important; }
					.nav-menu-pro li a picture { width:40px; height:40px; margin:0 30px 0 10px; }
					.nav-menu-pro li a strong { flex:1; text-align:left; font-weight:600; font-size:17px; }
			
.header-contact { width:100%; margin-top:20px; }
.header-contact a { width:100%; padding:0 25px; font-size:20px; line-height:60px; }	

.nav-opened { overflow:hidden !important; }

.slider-hero::after { content:""; content:""; position:absolute; top:0; left:0; right:0; height:1px; background-color:rgba(0,0,0,0.05); }
.slider-hero-item , .sub-hero .slider-hero-item { height:auto; min-height:initial; padding-top:0; }
.item-zoom , .slider-hero-video { top:0; }
.slider-hero-title { top:30px; padding-left:30px; }
.slider-hero-title .page-title.xl { margin-top:-5px; font-size:39px; line-height:40px; }
.slider-hero-title .small-title { font-size:11px; letter-spacing:1px; }
.slider-hero-item picture , .slider-hero-item picture img { display:block; }
.slider-hero-mask { bottom:55%; }

ul.slick-dots { padding:6px 0; }
.slider-hero ul.slick-dots li { width:30px; }

.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; }

.block-flexed { display:block; }
.flex-left { width:100%; padding-right:0; padding-bottom:20px; }
.flex-left:last-child { padding-bottom:0; }
.flex-right { width:100%; }

.quote { padding-left:90px; font-size:21px; line-height:30px; }
.block-sade-left , .block-sade-right { width:100%; }
.block-sade-left { margin-bottom:50px; }
.sade-stats li { margin:10px 0; }
.sade-stats li strong { font-size:74px; line-height:70px; }
.sade-stats li small { padding:8px 0 7px 0; font-size:23px; line-height:30px; }

.sade-world > ul > li { width:calc(50% - 20px); margin:30px 0; }
.sade-world > ul > li:nth-child(1) { padding:10px 0 0 0; }
.sade-world > ul > li:nth-child(2) , .sade-world > ul > li:nth-child(4) { padding:0; }
.sade-world > ul > li:nth-child(4) { margin-top:10px; }

.footer-left , .footer-right { width:100%; }
.footer-logo { width:auto; }
.footer-social { float:right; width:auto; }

.sub-hero::after { display:none; }
.sub-page { padding-top:50px; }
.sub-hero { margin-top:50px; }

.page-summary.slim { padding-left:0; padding-right:0; }

.project-item { flex-direction:column; }
.project-item-photo , .project-item-content { width:100%; }
.projects > ul > li:nth-child(even) .project-item-content { order:2; }
.projects > ul > li:nth-child(even) .project-item-photo { order:1; }

.contact-hero { height:auto; min-height:initial; padding:0 30px; margin-top:0; }
.contact-hero-in { display:block; }
.contact-message , .contact-photo , .contact-info { width:100%; padding:40px 0 0 0; }
.contact-photo { width:100%; padding-top:0; }

.project-hero-wrap { height:auto; min-height:initial; margin-top:0; }

.project-hero-wrap .project-title { position:relative; top:auto; right:auto; width:100%; padding:30px 0 50px 0; text-align:center; }
.project-hero-wrap .project-title::after { bottom:27px; right:calc(50% - 40px); width:80px; }
.project-hero-2 { width:calc(35% - 20px); height:80%; }

.project-left { width:100%; padding-right:0; margin-bottom:30px; }
.project-left:last-child { margin-bottom:0; }
.project-right { width:100%; } 

.project-catalog a { padding:20px 0 20px 20px; font-size:14px; }

}





@media only screen and (max-width:767px) {

.wrap , .wrap-slim { padding:0 25px; }
.cookies-wrap { right:5px; bottom:5px; left:5px; width:auto; }
.slider-hero-title { top:25px; padding-left:25px; }

.page-summary { font-size:23px; line-height:30px; }
.project-title { font-size:30px; line-height:40px; }
.project-summary { padding-top:10px; }

.project-info { margin-top:50px; display:block; }
.project-info section { width:100%; margin-bottom:30px; }

.project-specs li { margin:0 10px 10px 0; }
.project-specs li small { float:left; padding:8px 14px 10px 14px; font-size:14px; }

.project-gallery ul { width:calc(100% + 8px); margin-left:-4px; } 
.project-gallery li { width:50% !important; padding:0 4px; margin-bottom:8px; } 
.project-gallery li:first-child { width:100% !important; } 

.project-text { font-size:27px; line-height:40px; }

.project-video { width:calc(100% + 50px); margin-left:-25px; }

}



@media only screen and (max-width:640px) {

.quote { padding-left:64px; }
.quote::before { width:40px; height:40px; }
.sade-world > ul > li { width:100%; padding:0 !important; margin:30px 0 !important; }
.footer-logo { display:none; }
.footer-social { float:left; }
.footer-links , .footer-connect { width:100%; }
.footer-links { margin:30px 0 20px 0; }
.footer-links li a { padding:5px 0; font-size:23px; }
.footer-connect section a { font-size:23px; }
.contact-map { height:360px; }
.project-item-photo picture small::after { left:calc(50% - 3px); width:6px; }

.project-hero { padding:0 25px; display:block; }
.project-hero-1 , .project-hero-2 { width:100%; height:auto; overflow:visible; }
.project-hero-2 { margin-top:10px; margin-bottom:20px; }
.project-hero-1 img , .project-hero-2 img { float:left; height:auto; }

.project-catalog { bottom:-30px; }
.project-catalog a { padding:20px 0 20px 20px; font-size:17px; }

.tab { margin-top:10px; margin-bottom:10px; }
.tab ul { height:40px; }
.tab li { margin-right:12px; }
.tab li a { padding:8px 20px 10px 20px; font-size:16px; }

}



@media only screen and (max-width:540px) {

.slider-hero-item { padding-top:100px; }
.item-zoom , .slider-hero-video , .slider-hero-mask { top:70px; }
.sub-hero .slider-hero-mask , .sub-hero .item-zoom , .sub-hero .slider-hero-video { top:0; }
.slider-hero-mask { bottom:60%; }
.slider-hero-mask::before { content:""; position:absolute; top:-70px; left:0; right:0; height:70px; background:var(--color-light); }
.slider-hero-title .page-title.xl { margin-top:-5px; font-size:23px; line-height:25px; }

.mask-box { width:calc(33.33334% - 6px); }
.mask-box:last-child { bottom:50%; }
.slider-hero-item::before , .slider-hero-item::after { left:calc(33.33334% - 6px); width:12px; }
.slider-hero-item::after { left:calc(66.66666% - 6px); }
.slider-hero::after , .mask-box::before , .slider-hero-mask::after , .mask-box::after { display:none; }

.quote { padding-left:0; padding-top:30px; font-size:19px; line-height:25px; }
.quote::before { top:-20px; }

.contact-photo::before , .contact-photo::after { width:12px; margin-left:-6px; }

.sub-page-title { font-size:29px; line-height:40px; }

.form-item { width:100%; margin-bottom:20px; }
.form-item .button { width:100%; }

}



@media only screen and (max-width:440px) {

#logo img { padding:7px 0 !important; }
.copyright { display:block; padding:25px 0; }
.copyright .left , .copyright .right { width:100%; padding:3px 0; }
.project-item-photo picture::before , .project-item-photo picture::after { height:12px; }

}



@media only screen and (max-width:374px) {



}



/* uncover */

.grid__wrap { position:absolute !important; top:0; bottom:0; left:0; right:0; }
	.grid__item { float:left; width:100%; height:100%; position:relative; }
		.scroll-img { float:left; width:100%; height:100%; background-size:cover; background-repeat:no-repeat; background-position:center; }

.uncover { overflow:hidden; background-image:none !important; position:relative; }
.uncover__img { width:100%; height:100%; background-size:cover; background-position:50% 50%;}
.uncover__slices { width:100%; height:100%; position:absolute; top:0; left:0; display:flex; }
.uncover__slices--vertical { flex-direction:row; }
.uncover__slices--horizontal { flex-direction:column; }
.uncover__slices--horizontal-double { display:grid; grid-template-columns:50% 50%; }
.uncover__slices--vertical-double { display:grid; grid-template-rows:50% 50%; }
.uncover__slice { color:#fff; background-color:currentColor; flex:1; }
.uncover__slices--vertical .uncover__slice { box-shadow:1px 0 0 currentColor; }
.uncover__slices--horizontal .uncover__slice { box-shadow:0 1px 0 currentColor; }


.reveal { position:relative; transform:translateY(175px); opacity:0; transition:1.5s all ease; }
.reveal.active { transform:translateY(0); opacity:1; }
.reveal-left { transform:translateX(-175px); }
.reveal-left.active { transform:translateX(0); }
.reveal-right { transform:translateX(175px); }
.reveal-right.active { transform:translateX(0); }


@media only screen and (max-width:1023px) {

.reveal { transform:initial; opacity:1 !important;}

}


@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-Slim.eot');
    src: url('../font/PolySans-Slim.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-Slim.woff2') format('woff2'),
        url('../font/PolySans-Slim.woff') format('woff'),
        url('../font/PolySans-Slim.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-Bulky.eot');
    src: url('../font/PolySans-Bulky.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-Bulky.woff2') format('woff2'),
        url('../font/PolySans-Bulky.woff') format('woff'),
        url('../font/PolySans-Bulky.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-BulkyItalic.eot');
    src: url('../font/PolySans-BulkyItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-BulkyItalic.woff2') format('woff2'),
        url('../font/PolySans-BulkyItalic.woff') format('woff'),
        url('../font/PolySans-BulkyItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-Neutral.eot');
    src: url('../font/PolySans-Neutral.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-Neutral.woff2') format('woff2'),
        url('../font/PolySans-Neutral.woff') format('woff'),
        url('../font/PolySans-Neutral.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-SlimItalic.eot');
    src: url('../font/PolySans-SlimItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-SlimItalic.woff2') format('woff2'),
        url('../font/PolySans-SlimItalic.woff') format('woff'),
        url('../font/PolySans-SlimItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-MedianItalic.eot');
    src: url('../font/PolySans-MedianItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-MedianItalic.woff2') format('woff2'),
        url('../font/PolySans-MedianItalic.woff') format('woff'),
        url('../font/PolySans-MedianItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-NeutralItalic.eot');
    src: url('../font/PolySans-NeutralItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-NeutralItalic.woff2') format('woff2'),
        url('../font/PolySans-NeutralItalic.woff') format('woff'),
        url('../font/PolySans-NeutralItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('../font/PolySans-Median.eot');
    src: url('../font/PolySans-Median.eot?#iefix') format('embedded-opentype'),
        url('../font/PolySans-Median.woff2') format('woff2'),
        url('../font/PolySans-Median.woff') format('woff'),
        url('../font/PolySans-Median.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background:#232128;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity:0.9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden; /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background:#EB6629;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}
/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(
    to top,
    rgba(0, 0, 0, .85) 0%,
    rgba(0, 0, 0, .3) 50%,
    rgba(0, 0, 0, .15) 65%,
    rgba(0, 0, 0, .075) 75.5%,
    rgba(0, 0, 0, .037) 82.85%,
    rgba(0, 0, 0, .019) 88%,
    rgba(0, 0, 0, 0) 100%
    );
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}

/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #EB6629;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}


.fancybox-button--thumbs { display:none !important; }
.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%; }

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%; }

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%; }

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
  display: none; }

.noty_has_timeout .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10); }

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
      transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden; }

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
      -ms-transform: translate(50%);
          transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
          animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
  cursor: pointer; }

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out; }

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0; }

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
          animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
          animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0; } }

@keyframes noty_anim_height {
  100% {
    height: 0; } }

.noty_theme__relax.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__relax.noty_bar .noty_body {
    padding: 10px; }
  .noty_theme__relax.noty_bar .noty_buttons {
    border-top: 1px solid #e7e7e7;
    padding: 5px 10px; }

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444; }

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200; }
  .noty_theme__relax.noty_type__warning .noty_buttons {
    border-color: #dfaa30; }

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 1px solid #e25353;
  color: #FFF; }
  .noty_theme__relax.noty_type__error .noty_buttons {
    border-color: darkred; }

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF; }
  .noty_theme__relax.noty_type__info .noty_buttons,
  .noty_theme__relax.noty_type__information .noty_buttons {
    border-color: #0B90C4; }

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 1px solid #7cdd77;
  color: darkgreen; }
  .noty_theme__relax.noty_type__success .noty_buttons {
    border-color: #50C24E; }

.noty_theme__metroui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
  .noty_theme__metroui.noty_bar .noty_progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20); }
  .noty_theme__metroui.noty_bar .noty_body {
    padding: 1.25em;
    font-size: 14px; }
  .noty_theme__metroui.noty_bar .noty_buttons {
    padding: 0 10px .5em 10px; }

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
  background-color: #fff;
  color: #1d1d1d; }

.noty_theme__metroui.noty_type__warning {
  background-color: #FA6800;
  color: #fff; }

.noty_theme__metroui.noty_type__error {
  background-color: #CE352C;
  color: #FFF; }

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
  background-color: #1BA1E2;
  color: #FFF; }

.noty_theme__metroui.noty_type__success {
  background-color: #60A917;
  color: #fff; }

.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__mint.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px; }
  .noty_theme__mint.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #D1D1D1;
  color: #2F2F2F; }

.noty_theme__mint.noty_type__warning {
  background-color: #FFAE42;
  border-bottom: 1px solid #E89F3C;
  color: #fff; }

.noty_theme__mint.noty_type__error {
  background-color: #DE636F;
  border-bottom: 1px solid #CA5A65;
  color: #fff; }

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7F7EFF;
  border-bottom: 1px solid #7473E8;
  color: #fff; }

.noty_theme__mint.noty_type__success {
  background-color: #AFC765;
  border-bottom: 1px solid #A0B55C;
  color: #fff; }

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__sunset.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__sunset.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__sunset.noty_type__alert .noty_progressbar,
  .noty_theme__sunset.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__sunset.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__sunset.noty_type__info .noty_progressbar,
  .noty_theme__sunset.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

.noty_theme__bootstrap-v3.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_body {
    padding: 15px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    background: transparent; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5; }

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v3.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v3.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v3.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: .25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_body {
    padding: .75rem 1.25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .5;
    background: transparent; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .75; }

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__semanticui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: .28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
  .noty_theme__semanticui.noty_bar .noty_body {
    padding: 1em 1.5em;
    line-height: 1.4285em; }
  .noty_theme__semanticui.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
  background-color: #f8f8f9;
  color: rgba(0, 0, 0, 0.87); }

.noty_theme__semanticui.noty_type__warning {
  background-color: #fffaf3;
  color: #573a08;
  box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__error {
  background-color: #fff6f6;
  color: #9f3a38;
  box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
  background-color: #f8ffff;
  color: #276f86;
  box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__success {
  background-color: #fcfff5;
  color: #2c662d;
  box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }

.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
  .noty_theme__nest.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__nest.noty_bar .noty_buttons {
    padding: 10px; }

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px; }

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__nest.noty_type__alert .noty_progressbar,
  .noty_theme__nest.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__nest.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__nest.noty_type__info .noty_progressbar,
  .noty_theme__nest.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

/*# sourceMappingURL=noty.css.map*/