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	*/

html::-webkit-scrollbar { width:10px; }
html::-webkit-scrollbar-track { background:#444; }
html::-webkit-scrollbar-thumb { background-color: #FFF; border:3px solid #444; }
html { scrollbar-color:#FFF #444; scrollbar-width:thin; }

body { margin:0; color:#FFF; font-size:14px; font-family:Aeonik, Arial; line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; background-color:var(--color-dark); }

*::-moz-selection { background:rgba(0, 0, 0, 0.1); }
*::selection { background:rgba(0, 0, 0, 0.1); }

a { color:var(--color-white); text-decoration:none;  }
a:hover { color:var(--color-orange); text-decoration:none; }

:root {
	--color-orange:#EB6629;
	--color-white:#FFF;
	--color-dark:#232128;
	--color-light:#595661;
	
	--gurme-light:#FFD76C;
	--gurme-dark:#744422;
	--bg-gurme:radial-gradient(ellipse at top,var(--gurme-light),var(--gurme-dark));
	
	--ino-light:#14B67D;
	--ino-dark:#076443;
	--bg-ino:radial-gradient(ellipse at top,var(--ino-light),var(--ino-dark));
	
	--tatli-light:#F07BA7;
	--tatli-dark:#AB1952;
	--bg-tatli:radial-gradient(ellipse at top,var(--tatli-light),var(--tatli-dark));
	
	--makarna-light:#BEB3A6;
	--makarna-dark:#6D655E;
	--bg-makarna:radial-gradient(ellipse at top,var(--makarna-light),var(--makarna-dark));
	
	--input-background-color: #232128;
	--input-border-color: #bfbfbf;
	--input-border-color-inline: #232128;
	--input-border-color-checked: #EB6629;
	--input-background-color-checked: #EB6629;
	--input-border-color-inline-checked: #EB6629;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #EB6629;
	--input-background-color-hover: #232128;
	--input-border-color-inline-hover: #bfbfbf;
	--input-border-color-focus: #EB6629;
}

/* 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:13px; padding:0; }
input[type='checkbox']::before, input[type='radio']::before { display:block; position:absolute; content:""; width:calc(100% - 2px); height:calc(100% - 2px); background-color:var(--input-background-color); transition:background-color 500ms, border-color 500ms; }
input[type='checkbox']::after, input[type='radio']::after { display:block; position:absolute; content:""; -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); transition:background-color 500ms, border-color 250ms; }

/* Customization checbox */
input[type='checkbox']::before { border-radius:6px; border:solid 1px; border-color:var(--input-border-color); }
input[type='checkbox']::after { border:solid; border-color:#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 { border-color:var(--input-border-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color:var(--input-background-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--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:Aeonik, Arial; border-radius:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:Aeonik, Arial; font-size:15px; font-weight:500; letter-spacing:1px; }

.input { width:100%; height:50px; padding:0 16px; border:1px solid var(--color-light); transition:all 0.3s; background-color:rgba(0,0,0,0.0); border-radius:8px; color:#FFF; }
.input:focus { border-color:#FFF; box-shadow:4px 4px 0 rgba(255,255,255,0.08); }

.select { background:#FFF 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-orange); transition:all 0.25s; border-radius:8px; overflow:hidden; }
.button:hover { background-color:var(--color-light); }
	.button::before { content:""; position:absolute; top:0; bottom:0; right:-40%; left:50%; background-image:linear-gradient(0deg,rgba(255,255,255,0.0),#FFF); transform:skew(-40deg); opacity:0.1; transition:all 0.25s; }
	.button:hover::before { left:30%; opacity:0.15; }
	.button::after { content:""; position:absolute; top:0; bottom:0; right:15px; width:20px; background:url(../images/arrow-white-right.png) no-repeat right center / 20px; transition:all 0.25s; }
	.button:hover::after { right:12px; }
	
a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.porsion { float:left; width:100%; position:relative; }
	.wrap , .wrap-slim { margin:0 auto; width:100%; max-width:1760px; min-height:10px; padding:0 40px; position:relative; }
	.wrap-slim { max-width:1280px; }

.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; height:80px; padding:0 50px; z-index:8000; background-color:#FFF; transition:all 0.75s; }
	.header::before { content:""; position:absolute; bottom:-5px; left:0; right:0; height:5px; background:url(../images/wave-header.png) repeat-x center / 45px 5px; transition:all 0.5s; z-index:1; }

/* .nav-up { top:-80px; } */
	
	#logo { position:absolute; top:20px; left:calc(50% - 100px); width:200px; text-align:center; z-index:4100; transition:all 0.5s; }
		#logo a { float:left; width:200px; height:40px; position:relative; transition:all 0.5s; }
			#logo a::before { content:""; position:absolute; top:-204px; left:calc(50% - 160px); width:320px; height:320px; background-color:#FFF; border-radius:50%; transition:all 0.3s; }
			.scroll #logo a::before { top:-238px; }
			#logo img { display:inline-block; height:100%; position:relative; z-index:100; transition:all 0.3s; }
			#logo img:hover { opacity:0.8; }
	
	.search-icon { float:right; width:60px; height:60px; margin-top:10px; position:relative; cursor:pointer; transition:all 0.2s; text-indent:-9999px; z-index:100; }
		.search-icon::after { content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:url(../images/icon-search.png) no-repeat center / 24px; transition:all 0.3s; }
		.search-icon-close::after { background-image:url(../images/icon-close-2.png); background-size:20px; }
	
	.header-search { position:absolute; right:20px; top:70px; width:70%; max-width:400px; z-index:8100; box-shadow:0 0 20px rgba(0, 0, 0, 0.1); display:none; border-radius:10px; overflow:hidden; }
		.header-search input { float:left; width:100%; height:60px; padding:0 80px 0 20px; font-size:16px; line-height:60px; background-color:#FFF; }
		.header-search button { position:absolute; top:0; right:0; bottom:0; width:60px; background:var(--color-dark) url(../images/icon-search-2.png) no-repeat center / 24px; text-indent:-9999px; }
		.header-search button:hover { background-size:22px; }
	
	.header-lang-wrap { float:right; height:80px; position:relative; z-index:100; font-weight:500; line-height:80px; }
		.header-lang-icon { float:right; width:60px; height:100%; padding:0 20px; position:relative; cursor:pointer; z-index:250; color:var(--color-dark); }
			.header-lang-icon::before { content:""; position:absolute; top:0; right:0; bottom:0; width:20px; background:url(../images/arrow-down.png) no-repeat right center / 10px auto; }
		
		.header-lang { position:absolute; top:60px; right:-5px; width:60px; background-color:var(--color-light); display:none; z-index:300; box-shadow:0 10px 50px rgba(0, 0, 0, 0.15); border-radius:6px; text-align:center; }
			
			.header-lang::before { 
				content:"";
				border-bottom:3px solid transparent;
				border-left:8px solid transparent;
				border-right:8px solid transparent;
				height:0;
				position:absolute;
				width:0;
				left:50%;
				top:-3px;
				margin-left:-8px;
				border-bottom-color:var(--color-light);
			}
			
			.header-lang ul { width:100%; }
				.header-lang li { width:100%; }
					.header-lang li a { float:left; width:100%; color:#FFF; line-height:40px; box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.08); }
					.header-lang li:last-child a { box-shadow:none; }
					.header-lang li a:hover { opacity:0.7; }
	
	.nav-icon , .mobile-nav { display:none; }
	
	#nav { float:left; width:calc(100% - 150px); }
		#nav > ul > li { margin-right:40px; position:relative; }
		#nav > ul > li.nav-pro { position:static; }
		#nav > ul > li:last-child { margin-right:0; }
			#nav > ul > li > a { float:left; padding:0 10px; position:relative; font-size:16px; font-weight:500; color:var(--color-dark); line-height:80px; transition:all 0.3s; }
			#nav > ul > li:hover > a , #nav > ul > li > a.active { color:var(--color-orange); }
				#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; padding:30px 0; }
				#nav > ul > li > a small { display:none; }
			
			.nav-menu { display:none; position:absolute; top:80px; left:-15px; width:260px; padding:20px; background-color:var(--color-light); text-align:left; }
			#nav > ul li.nav-pro .nav-menu { left:0; right:0; width:auto; padding:0; border-radius:0; }
				
				/* .nav-menu::before { 
					content:"";
					border-top:4px solid transparent;
					border-left:8px solid transparent;
					border-right:8px solid transparent;
					height:0;
					position:absolute;
					width:0;
					left:35px;
					top:0;
					border-top-color:#FFF;
				} */
				
				#nav li.nav-pro .nav-menu::before { display:none; }
				
				.nav-menu > a { float:left; width:100%; padding:10px 15px; position:relative; display:flex; align-items:center; font-size:16px; font-weight:500; transition:all 0.3s; border-radius:8px; }
				.nav-menu > a:hover { background-color:#F5F1EF; }

.nav-menu-pro { float:left; width:100%; position:relative; }
	.nav-menu-pro::before { content:""; position:absolute; top:0; bottom:0; left:calc(30% - 1px); width:1px; background-color:rgba(255,255,255,0.07); }
	.nav-menu-pro::after , .nav-menu::after { content:""; position:absolute; bottom:-4px; left:0; right:0; height:4px; background:url(../images/wave-dark.png) repeat-x center / 45px 4px; }
	
	.nav-menu-pro-cats { float:left; width:30%; padding:55px 0; position:relative; }
		.nav-menu-pro-cats ul { width:100%; border-top:1px solid rgba(255,255,255,0.07); }
			.nav-menu-pro-cats li { width:100%; border-bottom:1px solid rgba(255,255,255,0.07); }
			.nav-menu-pro-cats li.active-pro { background-color:var(--color-light); }
				.nav-menu-pro-cats li a { float:left; width:100%; padding:20px 20px 20px 100px; display:flex; align-items:center; color:rgba(255,255,255,0.5); transition:all 0.4s; }
				.nav-menu-pro-cats li a:hover , .nav-menu-pro-cats li.active-pro a { color:#FFF; }
					.nav-menu-pro-cats li a picture { float:left; width:50px; height:50px; padding:5px; margin-right:30px; background-color:rgba(255,255,255,0.4); border-radius:50%; overflow:hidden; transition:all 0.4s; }
					.nav-menu-pro-cats li a:hover picture , .nav-menu-pro-cats li.active-pro a picture { background-color:#FFF; }
						.nav-menu-pro-cats li a picture img { width:100%; height:100%; object-fit:cover; }
					.nav-menu-pro-cats li a strong { flex:1; font-family:Faro; font-weight:900; font-size:31px; line-height:40px; }
	
	.nav-menu-pro-right { float:left; width:70%; padding:55px; margin-top:1px; position:relative; }
		.nav-menu-pro-in { float:left; width:100%; max-height:calc(100vh - 220px); position:relative; overflow:hidden; overflow-y:auto; }
		.nav-menu-pro-in::-webkit-scrollbar { width:8px; border-radius:4px; }
		.nav-menu-pro-in::-webkit-scrollbar-track { background:#232128; border-radius:4px; }
		.nav-menu-pro-in::-webkit-scrollbar-thumb { border:2px solid #FFF; background-color:#FFF; border-radius:4px; }
		.nav-menu-pro-in { scrollbar-color:#FFF #232128; scrollbar-width:thin; border-radius:4px; }
		
		.nav-menu-pro-title { float:left; width:100%; padding:25px 0; position:relative; font-family:Faro; font-weight:900; font-size:31px; line-height:40px; }
		
		.nav-menu-pro-list { float:left; width:100%; position:relative; text-align:center; }
			.nav-menu-pro-list ul { width:calc(100% + 20px); margin-left:-10px; display:flex; flex-flow:row wrap; }
				.nav-menu-pro-list li { width:25%; padding:0 10px; margin-bottom:40px; }
					.nav-menu-pro-list li a { float:left; width:100%; }
						.nav-menu-pro-list li a picture { float:left; width:100%; position:relative; }
							.nav-menu-pro-list li a picture::before { content:""; position:absolute; top:0; left:calc(50% - 90px); width:180px; height:180px; background-image:linear-gradient(180deg,#FFF,rgba(255,255,255,0.0)); border-radius:50%; transition:all 0.5s; opacity:0.15; }
							.nav-menu-pro-list li a:hover picture::before { opacity:0.75; transform:rotate(180deg); }
							.nav-menu-pro-list li a picture img { width:100%; max-width:180px; max-height:180px; position:relative; }
						.nav-menu-pro-list li a strong { float:left; width:100%; padding-top:10px; font-size:17px; font-weight:500; }
		
		.nav-menu-pro-right .link-all { padding-top:20px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.07); }

.progress-page { position:fixed; left:0; right:0; top:0; z-index:9999; }
	.progress-container { width:100%; height:3px; }
		.progress-bar { height:3px; background-color:var(--color-orange); width:0%; transition:all 0.4s; }

/*	Finish TOP	*/

.hero-screen { float:left; width:100%; position:relative; z-index:2000; }
	.hero-screen > img { float:left; width:100%; max-height:800px; }
	.hero-video-wrap { position:absolute; top:0; bottom:0; left:0; right:0; z-index:2; }
		.hero-video { position:absolute; top:0; bottom:0; left:0; right:0; width:100%; height:100%; z-index:10; object-fit:cover; }
		
	.hero-background { display:none; }
	.hero-message { position:absolute; bottom:0; left:0; right:0; z-index:20; padding:70px 20px 74px 20px; color:#FFF; text-align:center; font-size:17px; line-height:24px; background-image:linear-gradient(180deg,rgba(87, 16, 25, 0),#571019); }
		.hero-message strong { float:left; width:100%; position:relative; font-weight:600; font-size:60px; line-height:60px; }
		.hero-message span { float:left; width:100%; padding-top:38px; position:relative; }
			.hero-message span::before { content:""; position:absolute; top:20px; left:50%; width:40px; height:2px; margin-left:-20px; background-color:#C09C61; }

/*	Finish HERO VIDEO	*/

.controls { height:100%; }
	.slick-prev , .slick-next { 
		position:absolute;
		top:calc(50% - 25px);
		width:50px; 
		height:50px; 
		text-indent:-9999px; 
		cursor:pointer;
		z-index:1000;
		transition:all 0.3s;
		background:#FFF url(../images/arrow-left.png) no-repeat center / 20px;
		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:30px 0; display:flex; }
		ul.slick-dots li { flex:1; height:12px; padding:0 5px; 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.4; }
			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:#FFF; transition:all 0.3s; border-radius:3px; }
				ul.slick-dots li button:hover::after { background-color:#FFF !important; }
			ul.slick-dots li.slick-active button { opacity:1 !important; }
				ul.slick-dots li.slick-active button::after { background-color:#FFF !important; }

.slider-hero-wrap { float:left; width:100%; padding-top:80px; position:relative; z-index:800; background-color:var(--color-light); }
	
	.slider-hero { float:left; width:100%; position:relative; overflow:hidden; }
		.slider-hero .slick-list { overflow:hidden; }
		.slider-hero-item { float:left; width:100%; height:calc(100vh - 80px); min-height:480px; position:relative; overflow:hidden; }
			.slider-hero-item::before { content:""; position:absolute; top:0; left:0; width:480px; height:480px; background:rgba(255,255,255,0.5) url(../images/logo-icon.png) no-repeat center / 50%; border-radius:50%; mix-blend-mode:overlay; z-index:1; opacity:0.4; transform:scale(1.6); }
			
			.item-zoom { position:absolute; top:0; 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:0; bottom:0; left:0; right:0; width:100%; height:100%; object-fit:cover; }
			
			.slider-hero-title { position:absolute; top:0; bottom:0; left:0; right:0; display:flex; align-items:center; z-index:100; color:#FFF; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.3)); }
				
				.slider-hero-title .wrap { z-index:1000; }
				
				.slider-hero-title-in { float:left; width:60%; max-width:680px; padding:40px 0 80px 0; position:relative; font-family:Faro; font-weight:900; z-index:7700; }
			
				.slider-hero-title strong { float:left; width:100%; position:relative; font-size:70px; line-height:100%; letter-spacing:-1px; }
				.slider-hero-title section { float:left; width:100%; margin:7px 0 33px 0; position:relative; font-size:24px; letter-spacing:-1px; line-height:30px; }
			
			.slider-hero-item picture , .slider-hero-item picture img , .hero-screen picture , .hero-screen picture img { float:left; width:100%; display:none; }
	
	
	.slider-hero ul.slick-dots { background:none; padding-left:115px; padding-bottom:0; bottom:70px; text-align:left; display:block; }
		.slider-hero ul.slick-dots li { width:60px; }

.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-wrap { float:left; width:100%; height:100%; padding-top:80px; position:relative; background-color:#35333A; color:#CECCD6; }
	.footer-wrap::before { content:""; position:absolute; top:0; bottom:50%; left:0; right:0; background-color:#B13901; }
	.footer-wrap::after { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:url(../images/wave-dark-2.png) repeat-x 0 0 / auto 100%; }
	
	.footer-wrap a:hover { color:#CECCD6; }
	
	.footer-top { float:left; width:100%; padding-top:40px; padding-bottom:60px; position:relative; background-image:linear-gradient(180deg,#B13901,var(--color-orange)); z-index:10; }
		
		.footer-join { float:left; width:50%; padding-right:40px; position:relative; z-index:10; }
			.footer-join .page-text { margin-top:3px; margin-bottom:17px; }
			.footer-join section { float:left; width:100%; max-width:600px; position:relative; }
				.footer-join section .input { height:60px; padding:0 60px 0 30px; border:0; line-height:60px; background-color:rgba(255,255,255,0.1); border-radius:30px; }
				.footer-join section .input::placeholder { color:#FFF; opacity:1; }
				.footer-join section .input::-ms-input-placeholder { color:#FFF; }
				.footer-join section .button { position:absolute; top:10px; right:10px; width:40px; height:40px; padding:0; text-indent:-9999px; background-color:transparent; border-radius:50%; }
				.footer-join section .button::before { display:none; }
				.footer-join section .button::after { right:10px; }
		
		.footer-pro , .footer-links { float:left; width:calc(25% - 20px); position:relative; }
		.footer-links { float:right; margin-top:15px; }
			.footer-pro ul , .footer-links ul { width:100%; display:flex; flex-flow:row wrap; }
				.footer-pro li , .footer-links li { width:100%; margin-bottom:20px; }
				.footer-links li { margin-bottom:5px; }
					.footer-pro li a , .footer-links li a { float:left; width:100%; display:flex; align-items:center; }
					.footer-links li a { font-size:19px; line-height:30px; }
						.footer-pro li a picture { float:left; width:50px; height:50px; padding:5px; margin-right:30px; background-color:#FFF; border-radius:50%; overflow:hidden; }
							.footer-pro li a picture img { width:100%; height:100%; object-fit:cover; }
						.footer-pro li a strong { flex:1; font-family:Faro; font-weight:900; font-size:31px; line-height:40px; }
	
		.footer-porsion { position:absolute; bottom:-100px; left:0; right:40%; text-align:center; }
			.footer-porsion img { height:200px; }
	
	.footer-bottom { float:left; width:100%; padding-top:60px; padding-bottom:40px; position:relative; background-color:#35333A; }
	
		.footer-logo { float:left; width:50%; position:relative; }
			.footer-logo img { float:left; height:40px; }
		
		.footer-connect { float:right; width:50%; padding-left:80px; position:relative; font-size:15px; line-height:30px; }
			.footer-connect section { float:left; width:calc(50% - 20px); }
			.footer-connect section:nth-child(even) { float:right; }
				.footer-connect section h4 { display:block; margin-bottom:10px; font-weight:700; letter-spacing:1px; color:#FFF; }
	
	.copyright { float:left; width:100%; margin-top:50px; position:relative; z-index:10; display:flex; align-items:center; }
		
		.copyright .left { float:left; width:50%; }
			.copyright .left a { float:left; margin-right:30px; }
			.copyright .left small { float:left; }
		
		.footer-social { float:left; padding-left:80px; position:relative; }
			.footer-social li { padding-right:15px; }
			.footer-social li:last-child { padding-right:0; }
				.footer-social li a { float:left; border-radius:50%; transition:all 0.25s; }
				.footer-social li a:hover { background-color:var(--color-light); }
					.footer-social li a img { float:left; height:40px; }
		
		.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%; margin:-1px 0 1px 0; position:relative; font-family:Faro; font-weight:900; font-size:60px; line-height:100%; z-index:30; }
.page-title.space-bottom { margin-bottom:31px; }

.medium-title { float:left; width:100%; position:relative; font-family:Faro; font-weight:900; font-size:40px; line-height:50px; z-index:30; }
.medium-title.space-bottom { margin-bottom:12px; }

.small-title { float:left; width:100%; position:relative; font-weight:700; font-size:29px; line-height:40px; z-index:30; }
.small-title.space-bottom { margin-bottom:9px; }

.wa { width:auto; }

.text-orange { color:var(--color-orange) !important; }
.text-white { color:#FFF !important; }

.hero-text { float:left; width:100%; position:relative; font-size:39px; font-weight:300; line-height:50px; z-index:40; }

.page-summary { float:left; width:100%; position:relative; font-size:23px; line-height:40px; z-index:40; }
.page-summary.narrow { padding-left:45px; }
	.page-summary.narrow::before { content:""; position:absolute; top:0; bottom:0; left:0; width:3px; background-color:rgba(255,255,255,0.2); border-radius:0 3px 3px 0; }
	.page-summary a , .page-text a { text-decoration:underline; }

.page-text { float:left; width:100%; position:relative; font-size:19px; font-weight:300; line-height:40px; z-index:30; }
.page-text.space-in { margin-top:-7px; }
.page-text.space-top { margin-top:13px; }
.page-text.space-bottom { margin-bottom:37px; }
	
	.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 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:600; }


@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%; }

.porsion-stats { float:left; width:100%; position:relative; }
	.porsion-about-wrap .porsion-stats ul { margin-bottom:-20px; }
	.porsion-stats ul { width:100%; margin-bottom:-40px; display:flex; flex-flow:row wrap; }
		.porsion-stats li { width:50%; margin-bottom:40px; position:relative; }
			.porsion-stats li strong { display:block; margin:-4px 0 1px 0; font-size:100px; /* font-family:Oddval; */ font-weight:400; letter-spacing:-2px; line-height:100%; }
			.porsion-stats li span { display:block; font-size:19px; line-height:30px; opacity:0.75; }

.porsion-about-wrap { float:left; width:100%; height:100%; padding-top:80px; position:relative; }
.porsion-about-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-food.png) no-repeat center bottom / 100% auto; opacity:0.2; }
.porsion-about-wrap .wrap { height:100%; }

.porsion-about { float:left; width:100%; height:100%; padding:80px 0; display:flex; flex-direction:column; position:relative; flex:1 1; }
	.porsion-about-top { float:left; width:100%; position:relative; }
		.porsion-about-top .medium-title { margin-top:6px; }
	.porsion-about-bottom { float:left; width:100%; margin-top:auto; position:relative; display:flex; align-items:center; }
		.porsion-about-left { float:left; width:35%; }
			.porsion-about-left picture { float:left; width:100%; }
				.porsion-about-left picture img { max-width:100%; max-height:340px; }
		.porsion-about-right { flex:1; }

.slider-markets-wrap { float:left; width:100%; position:relative; }
.slider-markets { float:left; width:100%; padding-right:40px; position:relative; }
	.slider-markets .slick-list { overflow:hidden; }
	.slider-market-item { float:left; width:100%; padding-right:30px; position:relative; }
		.slider-market-item a { float:left; width:100%; position:relative; }
			.slider-market-item a picture { float:left; width:100%; max-height:100px; border:1px solid rgba(207,205,2014,0.15); border-radius:12px; transition:all 0.4s; text-align:center; }
			.slider-market-item a:hover picture { border-color:rgba(255,255,255,0.75); background-color:rgba(207,205,2014,0.1); }
				.slider-market-item a picture img { max-width:200px; height:100%; max-height:100px; margin:-1px; object-fit:cover; filter:grayscale(100%); -webkit-filter:grayscale(100%); transition:all 0.4s; }
				.slider-market-item a:hover picture img { filter:none; -webkit-filter:none; }
	
	.slider-markets .slick-prev { left:auto; right:0; top:0; width:40px; height:40px; }
	.slider-markets .slick-next { top:auto; bottom:0; right:0; width:40px; height:40px; }
	.slider-markets .slick-prev:hover , .slider-markets .slick-next:hover { background-color:var(--color-orange) !important; }

.block-gurme { background-image:var(--bg-gurme); }
.block-ino { background-image:var(--bg-ino); }
.block-tatli { background-image:var(--bg-tatli); }
.block-makarna { background-image:var(--bg-makarna); }

.section-catalog { float:left; width:100%; position:relative; display:flex; align-items:center; }
	.section-catalog-left { float:left; width:34%; padding-right:80px; position:relative; color:#FFF; }
	.download-catalog .section-catalog-left { color:#0E0E0E; }
	.section-catalog-right { float:right; width:66%; max-width:1155px; margin-left:auto; margin-top:40px; }
		.section-catalog-right img { width:100%; }

.hero-cat-wrap , .hero-vh100 { float:right; width:100%; height:100vh; padding-top:80px; position:relative; overflow:hidden; }
	.hero-cat-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-lights.png) no-repeat center / auto 85%; mix-blend-mode:overlay; opacity:0.5; }
	.hero-cat-wrap::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/pattern.png) no-repeat center / cover; mix-blend-mode:overlay; opacity:0.2; }
	.hero-cat { float:left; width:100%; height:calc(100vh - 120px); position:relative; }
		
		.hero-cat .wrap { height:100%; }
		
		.hero-cat-content { position:absolute; top:60px; left:0; right:0; z-index:30; }
			.hero-cat-content .wrap { display:flex; align-items:center; }
			.hero-cat-content .page-title { width:auto; }
		
		.hero-cat-gallery { position:absolute; top:120px; left:0; bottom:0; right:0; z-index:20; }
			
		.hero-cat-cta { float:right; margin-left:auto; z-index:200; }

.scene { position:absolute; top:80px; bottom:0; left:0; right:0; display:flex; align-items:center; text-align:center; }
.scene img { max-width:100%; }
.section-porsion { overflow:hidden; }

.slider-cat-wrap { float:left; width:100%; height:100%; padding:0 30px; position:relative; text-align:center; }
	.slider-cat { float:left; width:100%; height:100%; position:relative; }
		.slider-cat .slick-list , .slider-cat .slick-track { height:100%; overflow:hidden; }
		.slider-cat-item { float:left; width:100%; height:100%; padding:0 20px; position:relative; }
			
			.slider-cat-item a { float:left; width:100%; height:100%; position:relative; }
			.slider-cat-item a:hover { color:var(--color-white); }
			
			.slider-cat-item picture { float:left; width:100%; height:calc(100% - 60px); max-height:680px; position:relative; transition:all 1s; overflow:hidden; }
				.slider-cat-item picture img { width:100%; max-width:100%; height:100%; transform:scale(0.8); object-fit:cover; transition:all 2s; }
				.slider-cat-item.slick-current picture img { transform:scale(1); }
				
				.slider-cat-item picture::after { content:"İNCELE"; position:absolute; top:calc(50% - 70px); left:calc(50% - 70px); width:140px; height:140px; font-weight:700; font-size:17px; letter-spacing:1px; line-height:140px; background-color:rgba(255,255,255,0.5); border-radius:50%; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); transition:all 0.4s; opacity:0; transform:scale(0.25); color:var(--color-dark); }
				.slider-cat-item.slick-current:hover picture::after { opacity:1; transform:scale(1); }
			
			.slider-cat-item section { float:left; width:100%; transition:all 0.5s; opacity:0; }
			.slider-cat-item.slick-current section { opacity:1; }
				.slider-cat-item section strong { display:block; font-size:23px; font-weight:500; line-height:25px; }
	
	.slider-cat .slick-prev , .slider-cat .slick-next { background-color:#F9F9F9; border-radius:50%; }
	.slider-cat .slick-prev:hover , .slider-cat .slick-next:hover { background-color:#EEE; }

.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-dark { position:relative; background-color:#0E0E0E; color:#FFF; }
.block-wood { background:url(../images/bg-wood.jpg) no-repeat center / cover; background-attachment:fixed; }
.block-gradient { float:left; width:100%; position:relative; background-image:linear-gradient(180deg,#F7F7F7,#FFF); }
.block-grey { float:left; width:100%; position:relative; background-color:#F7F7F7; }
.block-shadow { position:relative; }
.block-shadow::before { content:""; position:absolute; top:-100px; left:0; right:0; height:360px; background-color:#CFBCAF; opacity:0.1; border-radius:0 0 0 60px; transform:skewY(-5deg); }

.block-narrow , .block-wide { float:left; width:20%; position:relative; }
.block-wide { float:right; width:calc(80% - 80px); }

.link-all { float:left; width:100%; position:relative; text-align:center; }
	.link-all a { display:inline-block; height:40px; position:relative; font-size:14px; color:#FFF; font-weight:500; letter-spacing:1px; line-height:40px; transition:all 0.3s; }
	.link-all a:hover { color:var(--color-orange); }
		.link-all a::after { content:""; float:right; width:30px; height:30px; margin-top:5px; margin-bottom:5px; margin-left:10px; background:var(--color-white) url(../images/arrow-right.png) no-repeat center / 14px; transition:all 0.3s; border-radius:50%; }
		.link-all a:hover::after { background-color:var(--color-orange); background-image:url(../images/arrow-white-right.png); }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.hero-news { float:left; width:100%; margin-top:20px; position:relative; }

.news-list { float:left; width:calc(100% + 60px); margin-left:-30px; margin-bottom:20px; position:relative; }
	.news-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.news-list li { width:25%; padding:0 30px; margin-bottom:60px; position:relative; }

			.news-item { float:left; width:100%; height:100%; position:relative; transition:all 0.4s; display:flex; flex-direction:column; flex:1 1; }
				
				.news-item time { float:left; width:100%; padding-left:40px; position:relative; font-size:14px; color:#CFCDD6; letter-spacing:1px; line-height:80px; box-shadow:inset 0 1px 0 rgba(207,205,214,0.1); transition:all 0.4s; }
				.news-item:hover time { box-shadow:inset 0 2px 0 rgba(207,205,214,1); }
					.news-item time::before { content:""; position:absolute; top:0; bottom:0; left:0; width:20px; background:url(../images/icon-logo-2.png) no-repeat center / 100% auto; opacity:0.3; transition:all 0.4s; }
					.news-item:hover time::before { opacity:1; }
				
				.news-item picture { float:left; width:100%; position:relative; border-radius:12px; }
					.news-item picture::before , .news-item picture::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:1px solid rgba(255,255,255,0.3); border-radius:12px; transition:all 0.4s; }
					.news-item picture::before { transform:rotate(3deg); border-color:rgba(207,205,214,0.15); }
					.news-item:hover picture::before { transform:rotate(-3deg); border-color:rgba(207,205,214,0.75); }
					.news-item:hover picture::after { border-color:#FFF; }
					.news-item picture i { float:left; width:100%; position:relative; border-radius:12px; overflow:hidden; }
					.news-item picture img { float:left; width:100%; transform-origin:center; transition:all 1s; }
					.news-item:hover picture img { transform:scale(1.2, 1.2); }
				
				.news-item small { float:left; width:100%; margin:25px 0 -15px 0; position:relative; }
					.news-item small i { float:left; padding:2px 10px; font-size:13px; font-weight:500; background-color:var(--color-light); border-radius:6px; }
				.news-item strong { float:left; width:100%; margin:31px 0 24px 0; position:relative; font-size:23px; font-weight:400; line-height:30px; overflow:hidden; z-index:10; }
				
				.news-item span { float:left; width:100%; margin-top:auto; font-size:14px; font-weight:500; letter-spacing:2px; background:url(../images/arrow-white-right.png) no-repeat right center / 20px auto; transition:all 0.5s; opacity:0.5; }
				.news-item:hover span { opacity:1; }

.tags { float:left; width:100%; margin-bottom:20px; position:relative; }
	.tags label { float:left; margin:0 15px 15px 0; position:relative; }
	.tags label:last-child { margin-right:0; }
		.tags label small { float:left; padding:9px 14px; position:relative; border:1px solid rgba(207,205,214,0.3); border-radius:8px; cursor:pointer; font-weight:500; transition:all 0.3s; }
		.tags label:hover small { border-color:#FFF; }
		.tags label input { position:absolute; top:0; bottom:0; left:0; right:0; opacity:0; }
		.tags label input[type="radio"]:checked + small{ color:#FFF; border-color:#FFF; background-color:rgba(0,0,0,0.75); }


.news-wrap { float:left; width:100%; margin-bottom:40px; position:relative; }
	
	.news-content { float:right; width:calc(100% - 320px); position:relative; }
		.news-photo { float:left; width:100%; max-height:540px; margin-bottom:40px; overflow:hidden; border-radius:24px; }
			.news-photo img { width:100%; height:100%; object-fit:cover; }

	.news-sidebar { float:left; width:280px; position:relative; }

.news-info { float:left; width:100%; padding:15px 0; margin-top:15px; margin-bottom:30px; position:relative; border-top:1px solid rgba(207,205,214,0.1); border-bottom:1px solid rgba(207,205,214,0.1); }
	.news-info section { float:left; width:100%; margin-bottom:16px; }
	.news-info section:last-child { margin-bottom:0; }
		.news-info section i { display:block; font-size:11px; font-weight:500; color:#999; letter-spacing:1px; }
		.news-info section strong { display:block; margin-top:-1px; font-weight:500; }

.page-share { float:left; width:100%; position:relative; }
	.page-share ul { width:100%; }
		.page-share li { margin-right:10px; margin-bottom:10px; }
		.page-share li:last-child { margin-right:0; }
			.page-share li a { float:left; background-color:var(--color-light); transition:all 0.25s; border-radius:8px; }
			.page-share li a.share-whatsapp { background-color:#27C34B; }
			.page-share li a:hover { background-color:var(--color-orange); }
				.page-share li a img { float:left; height:40px; }


.video-list { float:left; width:100%; position:relative; overflow:hidden; }
	.video-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.video-list li { width:50%; padding:0 20px; margin-bottom:80px; }
			.video-list li a { float:left; width:100%; position:relative; }
				.video-list li a picture { float:left; width:100%; position:relative; border-radius:16px; overflow:hidden; }
					.video-list li a picture img { float:left; width:100%; transform-origin:center; transition:all 1.5s; }
					.video-list li a:hover picture img { transform:scale(1.2, 1.2); }
					
					.video-list li a picture::after { content:""; position:absolute; width:44px; height:44px; left:calc(50% - 24px); top:calc(50% - 24px); background:rgba(0,0,0,0.4) url(../images/icon-play.png) no-repeat 55% center / auto 20px; border:2px solid #FFF; border-radius:50%; z-index:100; transition:all 0.3s; }
					.video-list li a:hover picture::after { background-color:var(--color-orange); }
				
				.video-list li a section { float:left; width:100%; position:relative; }
					.video-list li a section strong { float:left; width:100%; padding:22px 0 15px 0; font-size:20px; font-weight:500; line-height:25px; }
					.video-list li a section i { float:left; padding-left:25px; color:#999; font-size:12px; font-weight:500; letter-spacing:1px; background:url(../images/icon-clock.png) no-repeat 0 center / 16px; }


.advantages-wrap { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }
	.advantages-wrap > picture { float:left; width:calc(50% - 6px); padding:34px; position:relative; border:1px solid rgba(207,205,214,0.15); border-radius:24px; text-align:center; transition:all 0.4s; }
		.advantages-wrap > picture img { width:100%; height:100%; border-radius:16px; object-fit:cover; }

.porsion-advantages { float:left; width:calc(50% - 6px); margin-left:auto; position:relative; }
	.porsion-advantages > ul { width:100%; height:calc(100% + 12px); margin:-6px 0; }
		.porsion-advantages > ul > li { width:calc(50% - 6px); height:50%; padding:6px 0; }
		.porsion-advantages > ul > li:nth-child(even) { float:right; }
	
	.advantage-item { float:left; width:100%; height:100%; padding:34px; border:1px solid rgba(207,205,214,0.15); border-radius:24px; display:flex; flex-direction:column; flex:1 1; transition:all 0.4s; }
	.advantage-item:hover , .advantages-wrap > picture:hover { border-color:rgba(207,205,214,0.75); }
		.advantage-item section { float:left; width:100%; display:flex; align-items:center; }
			.advantage-item section picture { float:left; margin-right:20px; }
				.advantage-item section picture img { float:left; width:40px; }
			.advantage-item section strong { flex:1; color:var(--color-orange); font-size:23px; }
		.advantage-item small { float:left; width:100%; margin-top:auto; font-size:16px; line-height:25px; color:#CFCDD6; }

.advantages-full { width:100%; }
	.advantages-full > ul { width:calc(100% + 12px); height:auto !important; margin:0 0 0 -6px; display:flex; flex-flow:row wrap; }
		.advantages-full > ul > li { float:left !important; width:25%; height:auto !important; padding:0 6px; margin-bottom:12px; }
		.advantages-full > ul > li .advantage-item section { margin-bottom:15px; }

.sub-page { float:left; width:100%; padding-top:80px; position:relative; }

.sub-hero { float:left; width:100%; padding:170px 0 120px 0; position:relative; z-index:100; background-repeat:no-repeat; background-size:cover; background-position:center; background-attachment:fixed; background-image:linear-gradient(135deg,var(--color-orange),#B13901); }
	.sub-hero::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,rgba(235,102,41,0.0),var(--color-orange)); opacity:0.75; }

.breadcrumb { float:left; width:100%; margin-top:10px; position:relative; line-height:40px; text-align:center; z-index:50; overflow:hidden; }
	.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; }
	
.block-wrap { float:left; width:100%; position:relative; }
.block-faq .block-wrap { margin-bottom:140px; }
.block-faq .block-wrap:last-child { margin-bottom:0; }
	.block-narrow { float:left; width:20%; position:relative; }
	.block-wide { float:right; width:80%; padding-left:40px; position:relative; }

.promo-wrap , .promo { float:left; width:100%; position:relative; }
	.promo > ul { width:100%; }
		.promo > ul > li { display:flex; align-items:center; padding:60px 0; margin-bottom:80px; position:relative; }
		.promo > ul > li:last-child { margin-bottom:0; }
			
			.promo > ul > li::before { content:""; position:absolute; top:0; bottom:0; left:0; width:calc(75% + 20px); background-image:linear-gradient(-90deg,#FFF,rgba(255,255,255,0.0)); z-index:-1; border-radius:20px; opacity:0.07; }
			.promo > ul > li:nth-child(even)::before { left:auto; right:0; background-image:linear-gradient(90deg,#FFF,rgba(255,255,255,0.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; border-radius:20px; }
			
			.promo-content { float:left; width:calc(50% - 80px); position:relative; }
				.promo-content .page-title { margin-bottom:13px; }

			.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; }

.simple-list { float:left; width:100%; margin-top:10px; }
	.simple-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.simple-list li { width:calc(50% - 30px); padding-left:40px; margin-bottom:30px; position:relative; background:url(../images/icon-ok.png) no-repeat 0 4px / 20px auto; }
		.simple-list li:nth-child(even) { float:right; margin-left:auto; }
		
.block-two { width:calc(50% - 60px); }

.box { float:left; width:100%; height:100%; border:1px solid rgba(207,205,214,0.2); border-radius:24px; overflow:hidden; }
	.box-content , .box-cta { float:left; width:100%; padding:24px 29px; }
	.box-cta { border-top:1px solid rgba(207,205,214,0.2); background-color:rgba(0,0,0,0.33); }
		.box-cta .link-all a { float:left; width:100%; text-align:left; }

.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; border-radius:12px; }
				.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 CATEGORY + PRODUCT	*/


.category-page { float:left; width:100%; padding-top:80px; position:relative; }
	.category-page::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/pattern-2.png) no-repeat 0 0 / 100% auto; mix-blend-mode:overlay; opacity:0.3; }
	.category-page::after { content:""; position:absolute; bottom:-4px; left:0; right:0; height:4px; background-repeat:repeat-x; z-index:100; }
	.category-ino::after { background-image:url(../images/wave-ino.png); }
	.category-gurme::after { background-image:url(../images/wave-gurme.png); }
	.category-tatli::after { background-image:url(../images/wave-tatli.png); }
	.category-makarna::after { background-image:url(../images/wave-makarna.png); }
	.category-related::after { display:none; }

.category-hero { float:left; width:100%; margin:80px 0; position:relative; display:flex; align-items:center; }
	.category-hero-content { float:left; width:calc(50% - 80px); position:relative; }
	.category-hero-picture { float:right; width:50%; margin-left:auto; position:relative; }
		.category-hero-picture img { width:100%; }

.product-list { float:left; width:100%; position:relative; text-align:center; }
	.product-list > ul { width:calc(100% + 60px); margin-left:-30px; display:flex; flex-flow:row wrap; }
		.product-list > ul > li { width:33.33334%; padding:0 30px; margin-bottom:100px; }
			
.product-item { float:left; width:100%; height:100%; position:relative; text-align:center; }
	.product-item::before { content:""; position:absolute; top:0; bottom:10%; left:0; right:0; background-image:linear-gradient(180deg,#FFF,rgba(255,255,255,0.0)); border-radius:32px; transition:all 1s; opacity:0.1; }
	.product-item:hover::before { opacity:0; }
	
	.product-item picture { display:inline-block; position:relative; }
		.product-item picture::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,#FFF,rgba(255,255,255,0.0)); border-radius:50%; transition:all 0.75s; opacity:0; transform:rotate(180deg); transform-origin:center; }
		.product-item:hover picture::before { opacity:0.5; transform:rotate(0) scale(1,1); }
		.product-item picture img { width:100%; max-width:400px; position:relative; }
	.product-item-cat { float:left; width:calc(100% - 60px); margin:20px 30px 10px 30px; overflow:hidden; }
		.product-item-cat small { display:inline-block; min-width:100px; padding:5px 30px; position:relative; font-size:13px; font-weight:800; letter-spacing:1px; background-color:#FFF; border-radius:15px; }
		
		.category-ino .product-item-cat small { color:var(--ino-light); }
		.category-gurme .product-item-cat small { color:var(--ino-gurme); }
		.category-tatli .product-item-cat small { color:var(--ino-tatli); }
		.category-makarna .product-item-cat small { color:var(--ino-makarna); }
			
			.product-item-cat small::before , .product-item-cat small::after { content:""; position:absolute; top:calc(50% - 1px); left:-630px; width:600px; height:2px; background-color:rgba(255,255,255,0.15); }
			.product-item-cat small::after { left:auto; right:-630px; }
	.product-item strong { float:left; width:100%; padding-top:10px; font-size:25px; font-weight:500; color:#FFF; line-height:30px; }


.product-hero { float:left; width:100%; padding:60px 0 40px 0; position:relative; overflow:hidden; }
	.product-hero::before { content:""; position:absolute; top:0; bottom:38%; left:0; right:0; background-image:radial-gradient(ellipse at bottom,#FFF,rgba(255,255,255,0.0) 70%); mix-blend-mode:overlay; opacity:0.4; }
	.product-hero::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-lights.png) no-repeat center / auto 100%; mix-blend-mode:overlay; }
	
	.product-hero .scene { top:0; opacity:0.5; }
	
	.product-hero-in { float:left; width:100%; position:relative; z-index:100; }
	
	.product-hero-picture { float:left; width:100%; position:relative; text-align:center; }
		.product-hero-picture img { max-width:100%; height:65vh; max-height:600px; min-height:320px; }
	.product-hero-highlights { position:absolute; top:60px; left:0; right:0; bottom:0; }
		.product-hero-highlights ul { width:100%; }
			.product-hero-highlights ul li { width:34%; margin:10px 0; }
			.product-hero-highlights ul li:nth-child(even) { float:right; text-align:right; }
				
				.product-hero-highlights ul li picture { float:left; width:60px; height:60px; border:1px solid #FFF; border-radius:50%; }
					.product-hero-highlights ul li picture img { width:100%; height:100%; padding:13px; object-fit:cover; }
				.product-hero-highlights ul li section { float:right; width:calc(100% - 75px); height:60px; display:table; }
					.product-hero-highlights ul li section small { display:table-cell; vertical-align:middle; }
					
				.product-hero-highlights ul li:nth-child(even) picture { float:right; }
				.product-hero-highlights ul li:nth-child(even) section { float:left; }

.product-video { float:left; width:100%; position:relative; border-radius:16px; overflow:hidden; }
	.product-video img { float:left; width:100%; }
	.product-video iframe { position:absolute; top:0; left:0; }

.product-about { float:left; width:100%; position:relative; display:flex; justify-content:space-between; flex-wrap:wrap; }
	.product-about-item { float:left; width:calc(50% - 60px); margin-bottom:60px; }
	.product-about-item .page-text { font-weight:400; font-size:17px; line-height:30px; }

.products-related { float:left; width:100%; position:relative; }
	.products-related-mask { content:""; position:absolute; top:40%; bottom:0; left:0; right:0; background-color:var(--color-dark); }


/*	Start CONTACT	*/
	
.accordion { float:left; width:100%; }
	.accordion-section { float:left; width:100%; border-bottom:1px solid rgba(12,56,84,0.07); }
	
	.accordion-section-title { float:left; width:100%; padding:24px 44px 24px 24px; margin-bottom:15px; position:relative; font-size:19px; font-weight:500; color:var(--tiko-primary-color); border:1px solid rgba(255,255,255,0.07); border-radius:12px; z-index:10; transition:all 0.4s; }
	.accordion-section-title:hover { border-color:var(--color-light); color:#FFF; }
	.accordion-section-title.active { color:var(--color-orange) !important; border-color:var(--color-orange) !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-left:25px; margin-bottom:40px; position:relative; display:none; }
		.accordion-section-text { float:left; width:100%; font-size:18px; line-height:30px; }
		
.contact-item { float:left; width:100%; position:relative; }

.contact-info { float:left; width:100%; margin-top:20px; position:relative; }
	.contact-info section { float:left; width:100%; padding-left:50px; margin-bottom:30px; position:relative; font-size:19px; line-height:24px; }
		.contact-info section img { position:absolute; top:0; left:0; height:24px; padding:2px 0; }
		.contact-info section small { display:block; margin-top:-3px; font-size:13px; font-weight:700; color:#ABA9B1; letter-spacing:1px; }
		.contact-info section article { display:block; }

.contact-map { float:left; width:100%; height:560px; position:relative; border-radius:12px; overflow:hidden; }

.contact-wrap { float:left; width:100%; position:relative; }

.contact-form { float:left; width:100%; max-width:840px; margin-top:30px; position:relative; }
	.contact-form .page-title { display:none; }
	.form-item { float:left; width:50%; padding:0 15px; margin-bottom:30px; position:relative; }
	.form-item-text { margin-top:-10px; color:#666; }
	.form-item:last-child { margin-bottom:0; }
		.form-item label { float:left; width:100%; }
		.form-item section { float:left; width:100%; font-size:16px; font-weight:600; margin-bottom:-10px; }
		
		.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; border:1px solid #999; line-height:48px; background-color:#FFF; border-radius:6px; box-shadow:5px 5px 0 rgb(0 0 0 / 3%); }
	.upload:hover section { border-color:#00C18C; color:#00C18C; }
		.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:48px; background:url(../images/icon-clip.png) no-repeat center / 16px; opacity:0.5; }
		.upload:hover section::after { opacity:1; }
	.upload input { display:block !important; width:100% !important; height:100% !important; opacity:0 !important; overflow:hidden !important; position:absolute; left:0; top:0; z-index:3; cursor:pointer; }


/*	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:500; transition:all 0.4s; border-radius:50%; }
			.pages li a:hover { background-color:var(--color-light); }
			.pages li a.current { color:#FFF; background-color:var(--color-orange); }
				
.cookies-wrap { position:fixed; right:20px; bottom:20px; left:20px; z-index:7950; text-align:center; display:none; }
	.cookies { float:left; width:100%; padding:25px 30px 20px 30px; position:relative; background-color:rgba(0, 0, 0, 0.8); font-size:12px; color:rgba(255, 255, 255, 0.8); border-radius:5px; }
		.cookies::before { content:""; position:absolute; right:15px; top:15px; left:15px; bottom:0; background:url(../images/icon-cookies.png) no-repeat 0 top / 60px auto; opacity:0.3; }
		.cookies section { float:left; width:100%; position:relative; }
		.cookies-close { position:absolute; top:-16px; right:20px; width:32px; height:32px; }
			.cookies-close span { float:left; width:100%; height:100%; position:relative; border-radius:50%; text-indent:-9999px; background:#C09C61 url(../images/icon-close.png) no-repeat center / 20px; cursor:pointer; border:2px solid #FFF; }
			.cookies-close span:hover { background-size:18px; background-color:#000; }



.svg-turkiye-haritasi { float:left; width:100%; text-align:center; }
.svg-turkiye-haritasi svg { width:100%; height:auto; }
.il-isimleri { position:absolute; z-index:2; }
.il-isimleri div { display:inline-block; background:var(--color-orange); color:#FFF; padding:5px 15px; border-radius:15px; }
#svg-turkiye-haritasi path { cursor:pointer; fill:#ABA9B1; }
#svg-turkiye-haritasi path:hover { fill:var(--color-orange); }
#guney-kibris { pointer-events:none; }

.location-wrap { float:left; width:100%; margin-top:10px; position:relative; }

.location-list { float:left; width:100%; margin-top:10px; position:relative; text-align:center; }
	.location-list ul { width:calc(100% + 20px); margin-left:-10px; }
		.location-list li { width:25%; padding:0 10px; margin-bottom:20px; }
			.location-list li picture { float:left; width:100%; max-height:100px; border:1px solid rgba(207,205,2014,0.15); border-radius:12px; transition:all 0.4s; text-align:center; }
			.location-list li:hover picture { border-color:rgba(255,255,255,0.75); background-color:rgba(207,205,2014,0.1); }
				.location-list li picture img { max-width:200px; height:100%; max-height:100px; margin:-1px; object-fit:cover; }

.location-porsion { float:left; width:100%; position:relative; background-color:#FFF; color:var(--secondary-color); }
	.location-porsion-logo { float:left; width:100%; height:70px; padding:20px; position:relative; text-align:center; background-color:var(--color-orange); }
		.location-porsion-logo img { height:100%; object-fit:cover; }
		.location-porsion-logo::after , .location-porsion-title::after { content:""; position:absolute; bottom:-4px; left:0; right:0; height:4px; background:url(../images/wave-orange.png) repeat-x center / 45px 4px; transition:all 0.5s; z-index:1; }
	.location-porsion-title { float:left; width:100%; padding:20px 10px; position:relative; text-align:center; background-color:var(--color-dark); color:var(--color-orange); font-size:31px; font-family:Faro; font-weight:900; line-height:30px; }
		.location-porsion-title::after { background-image:url(../images/wave-dark-2.png); }
	.location-porsion-markets { float:left; width:100%; padding:30px 25px 20px 25px; color:var(--color-dark); }
		.location-porsion-markets ul { width:100%; }
			.location-porsion-markets li { width:33.33334%; padding:0 5px; margin-bottom:10px; }
				.location-porsion-markets li strong { font-weight:500; font-size:16px; }

.search-list { float:left; width:100%; position:relative; }
	.search-list ul { width:100%; }
		.search-list li { width:100%; padding-bottom:30px; margin-bottom:30px; border-bottom:1px solid rgba(255,255,255,0.1); }
			
			.search-list li a { float:left; width:100%; position:relative; display:flex; align-items:center; }
			
				.search-list-picture { float:left; width:200px; border-radius:12px; overflow:hidden; }
					.search-list-picture img { float:left; width:100%; transform-origin:center; transition:all 3s; }
					.search-list li a:hover .news-list-picture img { transform:scale(1.2,1.2); }
				.search-list-content { float:left; flex:1; padding-left:30px; }
					
					.search-list-title { float:left; width:100%; font-size:23px; font-weight:500; line-height:30px; }
					.search-list-info { float:left; width:100%; margin-top:18px; letter-spacing:1px; }
						.search-list-info i { float:left; padding-right:15px; margin-right:15px; border-right:1px solid rgba(255,255,255,0.1); color:var(--color-grey); font-weight:500; color:var(--color-orange); }
						.search-list-info span { float:left; color:#999; }







@media only screen and (max-width:1560px) {

.header { padding:0 30px; }
#nav > ul > li { margin-right:20px; }

.slider-hero-item::before { left:-60px; top:-60px; transform:scale(1.2); }
.slider-hero ul.slick-dots { bottom:55px; padding-left:35px; }
.slider-market-item { padding-right:20px; }
.slider-market-item a picture , .slider-market-item a picture img { max-height:84px; }

.porsion-about { padding:30px 0; }
.hero-cat-content { top:40px; }
.news-list { width:calc(100% + 30px); margin-left:-15px; }
.news-list li { padding:0 15px; }

.porsion-advantages > ul { max-height:520px; }
.advantages-wrap > picture , .advantage-item { padding:24px; }
.advantage-item small { max-height:75px; overflow:hidden; }
.advantages-full .advantage-item small { max-height:initial; }

.footer-porsion { bottom:-80px; }
.footer-porsion img { height:160px; }

.footer-pro li { margin-bottom:10px; }
.footer-links li { margin-bottom:0; }
.copyright { margin-top:25px; }

}



@media only screen and (max-width:1440px) {

#logo a::before { top:-230px; }

#nav { width:calc(100% - 130px); }
#nav > ul > li { margin-right:10px; }

.nav-menu-pro-cats { padding:40px 0; }
.nav-menu-pro-cats li a { padding:10px 20px; }
.nav-menu-pro-cats li a picture { margin-right:20px; }
.nav-menu-pro-cats li a strong { font-size:25px; line-height:30px; }

.nav-menu-pro-right { padding:40px; }
.nav-menu-pro-title { padding:20px 0; font-size:25px; line-height: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-title strong { font-size:60px; }
.porsion-about-left picture img { max-height:250px; }
.slider-cat-wrap { padding:0 10px; }

.page-title { font-size:50px; }
.page-title.space-bottom { margin-bottom:23px; }

.news-item small { margin:20px 0 -10px 0; }
.news-item strong { margin:20px 0 15px 0; font-size:19px; }

.footer-top { padding-top:30px; padding-bottom:40px; }
.footer-bottom { padding-top:40px; padding-bottom:30px; }

.footer-pro li a picture { margin-right:20px; }
.footer-pro li a strong { font-size:23px; line-height:30px; }

.footer-connect , .footer-social { padding-left:70px; }

.category-hero-content , .product-about-item { width:calc(50% - 20px); }
.product-list > ul { width:calc(100% + 30px); margin-left:-15px; }
.product-list > ul > li { padding:0 15px; }

.sub-hero { padding:120px 0 70px 0; }

}



@media only screen and (max-width:1280px) {

.wrap , .wrap-slim { padding:0 30px; }
.header { padding:0 20px; }

#logo a::before { display:none; }

.slider-hero ul.slick-dots { bottom:40px; padding-left:25px; }
.slider-cat-item { padding:0 10px; }

.slick-prev , .slick-next { top:calc(50% - 20px); width:40px; height:40px; }

.fp-section { float:left; width:100%; height:auto !important; }
.porsion-about-wrap { padding-top:0; }
.porsion-about-bottom { margin-top:40px; margin-bottom:10px; }

.hero-cat-wrap , .hero-vh100 , .hero-cat { height:auto; }
.hero-cat-wrap { padding:40px 0; }
.hero-vh100 { padding-top:0; }
.hero-cat-content , .hero-cat-gallery { float:left; width:100%; margin-bottom:30px; position:relative; top:auto; left:auto; right:auto; }
.advantages-wrap { margin:50px 0; }

.footer-porsion img { height:140px; }
.footer-wrap { padding-top:20px; }
.copyright { margin-top:50px; }

.category-hero { margin:40px 0; }
.category-hero-content .page-summary.narrow { padding-left:30px; font-size:19px; line-height:30px; }
.product-item-cat { width:calc(100% - 40px); margin:15px 20px 5px 20px; }
.product-list > ul > li { margin-bottom:60px; }
.product-item strong { font-size:21px; }
.medium-title { font-size:27px; line-height:30px; }
.medium-title.space-bottom { margin-bottom:14px; }

.promo > ul > li { padding:40px 0; margin-bottom:60px; }
.promo > ul > li::before { border-radius:12px; }
.promo-content { width:calc(50% - 40px); }

.block-two { width:calc(50% - 30px); }

.news-photo { margin-bottom:30px; border-radius:12px; }
.news-content { width:calc(100% - 280px); }
.news-sidebar { width:240px; }

}



@media only screen and (max-width:1120px) {

#nav > ul > li > a { padding:0 5px; font-size:14px; }
.nav-menu-pro::before { left:calc(23% - 1px); }
.nav-menu-pro-cats { width:23%; }
.nav-menu-pro-cats li a strong { font-size:21px; line-height:24px; }
.nav-menu-pro-right { width:77%; padding:40px 20px; }

}



@media only screen and (max-width:1023px) {

body { float:left; width:100%; }
.porsion { padding-top:70px; } 

.header { height:70px; }

#logo { top:15px; left:20px; width:auto; }
#logo a { width:auto; }

.header-lang-wrap { height:70px; line-height:70px; }

.search-icon { margin-top:5px; }
.header-lang { top:60px; }

.header-search { left:10px; right:10px; top:65px; width:auto; max-width:initial; }
.header-search input { height:48px; padding:0 80px 0 20px; font-size:15px; line-height:48px; }
.header-search button { width:48px; }

.progress-page { transition:all 0.4s; }
.nav-opened .progress-page { height:2px; opacity:0; }
.progress-bar { height:2px; }

.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-orange);
			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-orange);
			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:#3F3D46;
	}

#nav { position:fixed; top:70px; bottom:0; left:0; right:0; width:100%; height:100vh; padding:30px 30px 180px 30px; margin:0; background-color:#3F3D46; overflow-y:auto; z-index:200; display:none; transition:none; }
	#nav > ul { float:left; width:100%; }
	#nav > ul:first-child { border-top:1px solid rgba(255,255,255,0.1); }
		#nav > ul > li { width:100%; margin-right:0; border-bottom:1px solid rgba(255,255,255,0.1); text-align:left; }
			#nav > ul > li.nav-pro { position:relative; }
			#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 20px; color:#FFF !important; font-size:19px; line-height:60px; }
				#nav > ul > li > a img { display:none; }
				#nav > ul > li > a small { display:block; }
			
			#nav li > a::before , #nav li > a::after { display:none; }
			
			.nav-menu { float:left; width:100% !important; margin-bottom:20px; position:relative; top:auto; left:auto !important; }
			.nav-menu > a { font-size:17px; font-weight:600; }
			.nav-menu-pro::before { display:none; }
			.nav-menu-pro-cats { width:100%; padding:0; }
			.nav-menu-pro-cats li:last-child { border-bottom:0; }
			.nav-menu-pro-cats li a { padding:15px 20px; }
			.nav-menu-pro-right { display:none; }

.nav-opened { overflow:hidden !important; }

.fp-section { float:left; width:100%; height:auto !important; }

.top-150 { padding-top:75px; }
.top-100 { padding-top:50px; }
.top-50 { padding-top:25px; }
.bottom-150 { padding-bottom:75px; }
.bottom-100 { padding-bottom:50px; }
.bottom-50 { padding-bottom:25px; }

.slider-hero-wrap , .category-page , .sub-page { padding-top:0; }
.slider-hero-item { height:auto; min-height:initial; }
.slider-hero-item::before { left:-80px; top:-80px; transform:scale(1); }
.slider-hero-item picture , .slider-hero-item picture img { display:block; }
.slider-hero-item picture img { padding:7% 0; }
.slider-hero-title-in { width:75%; }
.slider-hero-title strong { font-size:50px; line-height:120%; }

.slider-markets { overflow:hidden; overflow-x:auto; display:block; white-space:nowrap; }
.slider-market-item { float:none; display:inline-block; width:150px; padding-right:0; margin-right:15px; }
.slider-market-item:last-child { margin-right:0; }
.slider-market-item a picture , .slider-market-item a picture img { max-height:64px; }

.porsion-about-bottom { display:block; }
.porsion-about-left { width:100%; text-align:center; }
.porsion-about-right { float:left; width:100%; margin-top:30px; text-align:center; }

.news-list li { width:50%; }
.news-item time { line-height:60px; }

.advantages-wrap > picture , .porsion-advantages { width:100%; }
.porsion-advantages { margin-top:12px; }
.porsion-advantages > ul { max-height:initial; display:flex; flex-flow:row wrap; }
.porsion-advantages > ul > li { height:auto; }
.porsion-advantages > ul > li:nth-child(even) { margin-left:auto; }
.advantage-item section { margin-bottom:15px; }
.advantage-item small { max-height:initial; }

.footer-join { width:100%; padding-right:0; margin-bottom:40px; }
.footer-join section { max-width:initial; }

.footer-pro , .footer-links { width:calc(50% - 20px); }
.footer-porsion , .footer-logo { display:none; }

.footer-connect { width:100%;padding-left:0; }
.footer-social { padding-left:20px; }
.copyright .left a { float:left; margin-right:15px; }

.footer-join section .input { height:50px; padding:0 60px 0 25px; line-height:50px; }
.footer-join section .button { top:5px; right:5px; }

.mask-center > img { height:20px; }
.mask-bottom > img { margin-bottom:-20px; }

.page-title { font-size:40px; }
.page-title.space-bottom { margin-bottom:19px; }

.product-list > ul > li { width:50%; }

.product-hero { padding:30px 0; }
.product-hero::before { bottom:53%; }
.product-hero::after { background-position:center top; background-size:90% auto; }
.product-hero-highlights { float:left; width:100%; margin-bottom:40px; position:relative; top:auto; left:auto; right:auto; bottom:auto; }
.product-hero-highlights ul li { width:calc(50% - 20px); margin:5px 0; }

.block-faq .block-wrap { margin-bottom:60px; }
.block-narrow { width:100%; }
.block-wide { width:100%; padding-left:0; margin-top:19px; }

.sub-hero { background-attachment:initial; }

.breadcrumb { font-size:12px; line-height:30px;}
.breadcrumb i { margin:0 10px; }

.block-flexed { display:block; }
.flex-left { width:100%; padding-right:0; margin-bottom:20px; }
.flex-left:last-child { margin-bottom:0; }
.flex-right { width:100%; }

.promo > ul > li { padding:0; flex-flow:column; }
.promo > ul > li:last-child { margin-bottom:0; }
.promo > ul > li:nth-child(odd) picture { order:1; }
.promo > ul > li:nth-child(odd) .promo-content { order:2; }
.promo > ul > li::before { display:none; }
.promo-content , .promo > ul > li picture { width:100%; margin-bottom:15px; }
.promo-content { margin-top:20px; }

.advantages-full > ul > li { width:50%; }

.block-two { width:100%; margin-bottom:50px; }

.contact-map { height:480px; margin-top:20px; }

.location-list li { width:33.33334%; }

.news-content { width:100%; }
.news-sidebar { width:100%; margin:-20px 0 20px 0; }
.news-photo img { float:left; }

.selectright { display:none !important; }

}





@media only screen and (max-width:767px) {

.cookies-wrap { right:5px; bottom:5px; left:5px; }

.search-icon { width:50px; }

.slider-hero-title strong { font-size:40px; }
.slider-hero-item picture img { padding:10% 0; }
.slider-cat-wrap { padding:0; }
.slider-cat-item a { padding:0 20px; }
.slider-cat-item picture img { max-width:440px; }

.slider-hero-title-in { padding:20px 0 40px 0; }

.hide-mobile { display:none; }
.page-text { font-size:17px; line-height:30px; }

.category-hero { margin-top:20px; flex-direction:column; text-align:center; }
.category-hero-content { width:100%; order:2; margin-top:20px; }
.category-hero-content .page-summary.narrow { padding-left:0; }
.category-hero-content .page-summary.narrow::before { display:none; }
.category-hero-picture { width:100%; order:1; }
.product-item::before { border-radius:16px; }
.product-item picture { padding:10px; }
.product-item-cat { width:calc(100% - 20px); margin:15px 10px 5px 10px; }

.accordion-section-title { padding:19px 34px 19px 19px; margin-bottom:10px; font-size:17px; }
.accordion-section-title::after { right:14px; }
.accordion-section-content { padding-left:20px; margin-bottom:30px; }

.slider-hero-item::before { width:400px; height:400px; }

.box-content , .box-cta { padding:19px 24px; }

.location-list li picture , .location-list li picture img { max-height:80px; }

.video-list li { width:100%; margin-bottom:60px; }

}



@media only screen and (max-width:640px) {

.slider-hero ul.slick-dots { display:flex; }
.slider-hero ul.slick-dots { bottom:20px; padding-left:10px; padding-right:10px; }

.hero-cat-content { margin-bottom:0; }
.hero-cat-content .page-title , .product-about-item { width:100%; }
.product-about-item { margin-bottom:40px; }
.hero-cat-cta { width:100%; margin-top:5px; }
.hero-cat-cta .link-all { width:auto; }
.hero-cat-content .wrap { display:block; }

.location-list li , .gallery li { width:50%; }

.news-title { font-size:31px; line-height:40px; }

.search-list li a { display:block; }
.search-list-picture { width:100%; }
.search-list-content { width:100%; padding-left:0; padding-top:20px; }

}



@media only screen and (max-width:540px) {

.slider-hero-title strong { font-size:27px; }

.copyright { display:block; }
.news-list li , .footer-connect section , .copyright .left , .footer-social , .copyright .right , .porsion-advantages > ul > li , .footer-pro , .footer-links , .product-list > ul > li { width:100%; }
.footer-links li { width:50%; margin-bottom:10px; }
.footer-connect section:last-child { margin-top:30px; }
.footer-social { padding:15px 0; }

.product-hero-picture img { float:left; width:100%; max-width:initial; height:auto; max-height:initial; min-height:initial; }

.gallery li , .location-porsion-markets li { width:50%; }

.product-hero::before { bottom:66%; }
.product-hero-highlights ul li , .form-item .button { width:100%; }
.product-hero-highlights ul li:nth-child(even) { text-align:left; }
.product-hero-highlights ul li:nth-child(even) picture { float:left; }
.product-hero-highlights ul li:nth-child(even) section { float:right; }

.sub-hero { padding:80px 0; }
.breadcrumb { display:none; }

.tags label { margin:0 10px 10px 0; }

.form-item { width:100%; margin-bottom:20px; }
.form-item .button { text-align:left; }
.contact-map { height:400px; }

}



@media only screen and (max-width:440px) {

#logo img { padding:4px 0; }
.slider-hero-item::before { width:320px; height:320px; }
.slider-hero-item picture img { padding:15% 0; }
.slider-market-item { width:140px; margin-right:10px; }
.porsion-about-left picture img { max-height:200px; }
.location-list li picture , .location-list li picture img { max-height:64px; }
.location-porsion-markets { padding:25px 20px 15px 20px; }
.location-porsion-logo { height:60px; padding:15px; }
.location-porsion-title { padding:15px 10px; font-size:25px; }
.location-porsion-logo::after , .location-porsion-title::after { bottom:-3px; height:3px; background-size:auto 3px; }

}



@media only screen and (max-width:375px) {



}



/* .reveal { position:relative; transform:translateY(170px); opacity:0; transition:1.3s all ease; }
.reveal.active { transform:translateY(0); opacity:1; }
.reveal-left { transform:translateX(-240px); }
.reveal-left.active { transform:translateX(0); }
.reveal-right { transform:translateX(240px); }
.reveal-right.active { transform:translateX(0); }


@media only screen and (max-width:1560px) {

.reveal { transform:translateY(100px); }
.reveal.active { transform:translateY(0); opacity:1; }
.reveal-left { transform:translateX(-200px); }
.reveal-left.active { transform:translateX(0); }
.reveal-right { transform:translateX(200px); }
.reveal-right.active { transform:translateX(0); }

}


@media only screen and (max-width:1023px) {

.reveal { transform:initial; opacity:1 !important;}

} */


.bg-text-wrap { position:absolute; top:0; bottom:0; left:0; right:0; overflow:hidden; font-family:Faro; font-size:160px; font-weight:900; color:#FFF; line-height:100%; transform:skewY(-4deg); display:flex; align-items:center; color:transparent;   -webkit-text-fill-color:transparent; -webkit-text-stroke-width:2px; -webkit-text-stroke-color:var(--color-white); opacity:0.2; }
.bg-text-bottom { top:60%; opacity:0.1; }
.bg-text-container { transform:translateX(-50%); left:50%; position:absolute; width:100%; }
.animate-text span { text-transform:uppercase; display:inline-block; min-width:auto; }


@keyframes text-scrolling {
  0% { transform: translate3d(-100%, 0, 0); }
  100% { transform: translate3d(0%, 0, 0); }
}

.animate-text {
  animation: text-scrolling 20s linear infinite;
  will-change: transform;
  display: block;
  position: relative;
  white-space: nowrap;
  
  &.left {
    animation-direction: reverse;
  }
  
}



@media only screen and (max-width:1280px) {

.bg-text-wrap { font-size:120px; }

}



@media only screen and (max-width:540px) {

.bg-text-wrap { font-size:80px; }

}






