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	*/

body { margin:0; color:var(--color-black); font-size:15px; font-family:var(--font-primary); line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; }

*::-moz-selection { background-color:var(--color-orange); color:#FFF; }
*::selection { background-color:var(--color-orange); color:#FFF; }

a { color:var(--color-purple); text-decoration:none;  }
a:hover { color:var(--color-black); text-decoration:none; }

:root {
	--color-black:#000;
	--color-purple:#5101BA;
	--color-purple-dark:#32006F;
	--color-purple-light:#D8B7FF;
	--color-green:#5FBA48;
	--color-orange:#F83030;
	--color-grey:#777;
	--color-light:#FAF7FD;
	--font-primary:'Aventa','Arial';
	--input-background-color: #FFF;
	--input-border-color: #bfbfbf;
	--input-border-color-inline: #FFF;
	--input-border-color-checked: #00A678;
	--input-background-color-checked: #00D7E8;
	--input-border-color-inline-checked: #00D7E8;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #00D7E8;
	--input-background-color-hover: #FFF;
	--input-border-color-inline-hover: #bfbfbf;
	--input-border-color-focus: #00A678;
}

/* Reset Css */
input, select, textarea, input[type='checkbox'], input[type='radio'] { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; }
input:focus, select:focus, textarea:focus, input[type='checkbox']:focus, input[type='radio']:focus { outline:0; }
input[type='submit'], button { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; outline:0; }

/* Customization checkbox & radio */
input[type='checkbox'], input[type='radio'] { width:18px; height:18px; line-height:18px; min-width:1px !important; margin:1px 10px -1px 0; 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:4px; border:solid 1px; border-color:var(--input-border-color); }
input[type='checkbox']::after { border:solid; border-color:var(--input-border-color-inline); border-width:0 2px 2px 0; width:5px; height:10px; left:7px; bottom:5px; }
input[type='checkbox']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='checkbox']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='checkbox']:checked:not(:disabled)::before { border-color:var(--input-border-color-checked); background-color:var(--input-background-color-checked); }
input[type='checkbox']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='checkbox']:disabled::before { border-color:var(--input-border-color-disabled); background-color:var(--input-background-color-disabled); }
input[type='checkbox']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='checkbox']:checked:not(:disabled):focus::before, input[type='checkbox']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color:var(--input-background-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

/* Customization radio */
input[type='radio']::before { border-radius: 50%; border: solid 1px; }
input[type='radio']::after { border: solid; border-color: var(--input-border-color-inline-checked); border-width: 5px; border-radius: 50%; width: 0px; height:0px; left:4px; bottom:4px; }
input[type='radio']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='radio']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='radio']:checked:not(:disabled)::before { border-color: var(--input-border-color-checked); background-color: var(--input-background-color); }
input[type='radio']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='radio']:disabled::before {}
input[type='radio']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='radio']:checked:not(:disabled):focus::before, input[type='radio']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='radio']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color: var(--input-background-color); }
input[type='radio']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

input, textarea, select { float:left; font-size:16px; font-family:var(--font-primary); font-weight:400; border-radius:0; border:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:var(--font-primary); font-size:16px; font-weight:600; letter-spacing:0.5px; }

.input { width:100%; height:50px; padding:0 20px; border-bottom:1px solid rgba(81,1,186,0.2); background-color:transparent; border-radius:8px; transition:all 0.5s; }
.select { background:rgba(255,255,255,0.5) url(../images/arrow-select.png) no-repeat right center / auto 5px; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.input:focus , .select:focus { border-color:var(--color-purple); background-color:#FFF; }

textarea.input { padding-top:13px !important; padding-bottom:13px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 25px; cursor:pointer; position:relative; color:#FFF; background-color:var(--color-purple); text-align:left; display:flex; align-items:center; line-height:50px; transition:all 0.25s; overflow:hidden; border-radius:25px; }
.button:hover { background-color:var(--color-purple-dark); }
	.button i { float:right; font-size:24px; margin-left:auto; margin-right:-10px; }
	
a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.newyazilim { float:left; width:100%; position:relative; background-color:#FFF; }
	.wrap , .wrap-slim { float:left; width:100%; padding-left:120px; padding-right:120px; position:relative; }
	.wrap-slim { width:100%; max-width:960px; }

.tal { text-align:left; }
.tac { text-align:center; }
.tar { text-align:right; }

.fl { float:left !important; }
.fr { float:right !important; }
.fn { float:none !important; }

.w100 { float:left; width:100% !important; }
.mt50 { margin-top:50px; }
.mt30 { margin-top:30px; }
.mt25 { margin-top:25px; }
.mt20 { margin-top:20px; }
.mt10 { margin-top:10px; }
.mb50 { margin-bottom:50px; }
.mb30 { margin-bottom:30px; }
.mb25 { margin-bottom:25px; }
.mb20 { margin-bottom:20px; }
.mb10 { margin-bottom:10px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; padding:30px 40px; z-index:9900; display:flex; align-items:center; transition:all 0.5s; }
.nav-up , .nav-down { padding-top:5px !important; padding-bottom:5px !important; background-color:var(--color-purple-dark); }
	
	#logo { position:absolute; top:0; left:calc(50% - 140px); width:280px; z-index:200; display:flex; justify-content:center; box-shadow:inset 0 -1px 0 rgba(196,196,255,0.1); transition:all 0.75s; }
	.nav-opened #logo { left:40px; width:auto; box-shadow:none; }
		#logo a { float:left; padding:31px 0; transition:all 0.5s; }
		.nav-up #logo a , .nav-down #logo a , .nav-opened #logo a { padding-top:13px; padding-bottom:13px; }
			#logo a img { float:left; height:48px; margin-left:10px; transition:all 0.7s; }
			#logo a::before { content:""; float:left; width:48px; height:48px; background:url(../images/logo-icon-white.png) no-repeat 0 0 / 100% 100%; transition:all 1s; }
			#logo a:hover::before { transform:rotate(406deg); }

	.header-links { float:left; position:relative; z-index:100; transition:all 0.5s; }
		.header-links > ul { position:relative; }
			.header-links > ul > li { margin-right:60px; }
			.header-links > ul > li:last-child { margin-right:0; }
				.header-links > ul > li > a { float:left; padding:11px 0; font-size:17px; color:#FFF; display:flex; align-items:center; transition:all 0.5s; }
				.header-links > ul > li > a:hover { color:var(--color-purple-light); }
					.header-links > ul > li > a i { float:left; font-size:22px; margin-right:8px; }
	
	.header-right { float:right; margin-left:auto; position:relative; display:flex; align-items:center; }
	
	.nav-icon { float:left; width:64px; height:64px; position:relative; top:0; cursor:pointer; display:block; text-indent:-9999px; z-index:8000; }
		.nav-icon span { position:absolute; top:50%; left:50%; width:36px; height:2px; margin:-1px 0 0 -18px; transition:all 0.5s; }
			.nav-icon span::before { content:""; position:absolute; top:-5px; left:0; right:0; height:1px; background-color:#FFF; transition:all 0.5s; }
			.nav-icon span::after { content:""; position:absolute; bottom:-5px; left:0; right:0; height:1px; background-color:#FFF; transition:all 0.5s; }
		
		.nav-icon-close span { background-color:transparent; }
			.nav-icon-close span::before { 
				-webkit-transform:rotate(-135deg);
				-moz-transform:rotate(-135deg);
				-o-transform:rotate(-135deg);
				-ms-transform:rotate(-135deg);
				transform:rotate(-135deg);
				top:0;
				right:0;
				background-color:#FFF !important;
			}
			.nav-icon-close span::after { 
				-webkit-transform:rotate(135deg);
				-moz-transform:rotate(135deg);
				-o-transform:rotate(135deg);
				-ms-transform:rotate(135deg);
				transform:rotate(135deg);
				bottom:0;
				right:0;
				background-color:#FFF !important;
			}
	
	.header-cta { float:left; position:relative; margin-right:24px; }
		.header-cta a { float:left; padding:10px 24px 10px 10px; position:relative; display:flex; align-items:center; border:1px solid #FFF; border-radius:22px; color:#FFF; transition:all 0.5s; }
		.header-cta a:hover { border-color:var(--color-orange); background-color:var(--color-orange); color:#FFF; }
			.header-cta a i { float:left; margin-right:10px; font-size:22px; }
	
.nav-opened { overflow:hidden; }
.nav-opened .header { padding-top:5px; padding-bottom:5px; background-color:transparent; }
.nav-opened .header-links { opacity:0; pointer-events:none; }

#nav-wrap { position:fixed; top:0; bottom:0; left:0; right:0; width:auto; height:100vh; display:none; background-color:var(--color-purple-dark); overflow-y:auto; z-index:7000; }
	#nav-wrap .in { float:left; width:100%; height:100%; position:relative; display:flex; color:#FFF; }
	
	.nav-project { float:left; width:50%; padding:80px 100px; position:relative; background:linear-gradient(180deg,var(--color-purple-dark),rgba(0,0,0,0.1)); display:flex; flex-direction:column; align-items:end; }
		.nav-project .page-title { margin-top:auto; margin-bottom:29px; }
		.nav-project .hello-contact::before { margin-left:0; }
		.nav-project .link-cta { margin-top:30px; margin-bottom:20px; }
	
	.nav-cta { float:left; width:50%; padding:80px 100px; position:relative; display:flex; align-items:end; }
		.nav-cta > ul { width:100%; }
			.nav-cta > ul > li { width:100%; }
				.nav-cta > ul > li a { float:left; width:100%; padding:10px 0; display:flex; align-items:center; color:var(--color-purple-light); transition:all 0.5s; }
				.nav-cta > ul > li a:hover { color:#FFF; }
					.nav-cta > ul > li a small { float:left; width:auto; }
					.nav-cta > ul > li a::after { content:""; float:right; flex:1px; margin-left:80px; height:1px; background-color:var(--color-purple-light); opacity:0.12; transition:all 0.5s; }
					.nav-cta > ul > li a:hover::after { margin-left:50%; opacity:1; }

/*	Finish HEADER	*/

.controls { height:100%; }
	.slick-prev , .slick-next { 
		position:absolute;
		top:50%;
		width:50px; 
		height:50px; 
		margin-top:-25px;
		text-indent:-9999px; 
		cursor:pointer;
		z-index:1000;
		transition:all 0.2s ease;
		background:#FFF url(../images/arrow-left.png) no-repeat center / 20px 14px;
		border-radius:50%; 
		}
		
	.slick-prev { left:0; }
	.slick-next { right:0; background-image:url(../images/arrow-right.png); }
	
	.slick-prev:hover , .slick-next:hover { background-color:#148399 !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; text-align:center; left:0; right:0; bottom:0; padding-top:28px; padding-bottom:28px; z-index:1000; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.2)); }
		ul.slick-dots li { float:none; display:inline-block; width:64px; height:4px; margin:0 5px; transition:all 0.3s; }
			ul.slick-dots li button { float:left; width:100%; height:100%; cursor:pointer; transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.4; }
			ul.slick-dots li button:hover { opacity:0.6; }
				ul.slick-dots li button::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:#FFF; border-radius:5px; }
			ul.slick-dots li.slick-active button { opacity:1; }

.hello-screen-wrap { float:left; width:100%; padding-top:220px; padding-bottom:170px; position:relative; background:linear-gradient(145deg,var(--color-purple-dark),#1B003C); color:#FFF; overflow:hidden; }
.hello-sub-wrap { height:140px; padding-top:0 !important; padding-bottom:0 !important; border-radius:0 0 32px 32px; }
	
	.hello-video { position:absolute; top:0; bottom:0; left:0; right:0; width:100%; height:100%; z-index:10; object-fit:cover; mix-blend-mode:lighten; opacity:0.3; }
	.hello-sub-wrap .hello-video { mix-blend-mode:overlay; opacity:0.3; }
	
	.hello-screen-wrap .wrap { z-index:1000; }
	
	.hello-screen { float:left; width:100%; padding-bottom:70px; position:relative; display:flex; align-items:end; }
		.hello-screen-left { float:left; width:calc(50% - 60px); }
		.hello-screen-right { float:right; width:50%; margin-left:auto; text-align:right; }
			
			.hello-screen-title { float:left; width:100%; position:relative; font-size:70px; font-weight:800; letter-spacing:-1px; line-height:80px; }
			.hello-sub-wrap .hello-screen-title { padding:100px 0; font-size:48px; line-height:50px; }
			
		.hello-screen-right { margin-left:auto; }
			.hello-screen-summary { float:left; width:100%; margin-bottom:40px; position:relative; font-size:18px; line-height:30px; }
				.hello-screen-summary strong { font-weight:600; position:relative; }
					.hello-screen-summary strong::after { content:""; position:absolute; left:-5px; right:-5px; bottom:0; height:2px; background:url(../images/brush-2.png) no-repeat 0 0 / 100% 100%; }
	
		.hello-connect { float:left; width:100%; position:relative; display:flex; align-items:center; }
			
			.hello-experince { float:left; position:relative; font-size:20px; color:var(--color-purple-light); line-height:24px; }
				.hello-experince strong { position:relative; font-size:40px; font-weight:700; color:#FFF; }
					.hello-experince strong::after { content:""; position:absolute; top:-16px; right:-36px; width:32px; height:32px; background:url(../images/logo-icon-white.png) no-repeat 0 0 / 100% 100%; animation:spin 5s linear infinite; }
					
					@keyframes spin {
						from { transform: rotate(0deg); }
						to { transform: rotate(360deg); }
					}
			
			.hello-contact { float:right; margin-left:auto; flex:1; position:relative; display:flex; align-items:center; }
				.hello-contact::before { content:""; float:left; flex:1; height:2px; margin-left:80px; margin-right:80px; background-color:var(--color-purple-light); opacity:0.12; }
				.hello-contact section { display:flex; flex-direction:column; }
					.hello-contact section a { display:flex; padding:8px 0; color:var(--color-purple-light); align-items:center; }
					.hello-contact section a:hover { color:#FFF; }
						.hello-contact section a small , .hello-contact section a strong { float:left; margin-left:auto; font-size:20px; }
						.hello-contact section a i { float:right; margin-left:10px; font-size:24px; }

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hello-discover { position:absolute; bottom:20px; left:calc(50% - 60px); width:120px; height:120px; background:url(../images/icon-discover.png) no-repeat center / 100%; z-index:1000; cursor:pointer; }
.page-discover { float:left; width:100%; position:relative; text-align:center; }
	.page-discover section { display:inline-block; position:relative; }
		.page-discover section::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/arrow-right.png) no-repeat center / 24px 16px; transition:all 0.5s; }
		.page-discover section:hover::before { transform:scale(1.5,1.5); }
		.page-discover section a { float:left; width:120px; height:120px; position:relative; background:url(../images/icon-discover-2.png) no-repeat center / 100%; text-indent:-9999px; }

.rotating { animation:rotating 10s linear infinite; transition:all 0.75s; }
.rotating:hover { animation-play-state:paused; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; }
.hello-screen-wrap .mask { bottom:-1px; }
.mask-top { top:0; bottom:auto; }
	.mask > img , .mask-top > img { float:left; width:100%; }

/*	Start FOOTER	*/

.footer-wrap { float:left; width:100%; position:relative; display:flex; background-color:#FFF; z-index:10; overflow:hidden; background-color:var(--color-light); }
	.footer-wrap::before { content:""; position:absolute; top:20%; left:50%; right:40px; bottom:0; background:url(../images/footer-icon.png) no-repeat 0 0 / 100% auto; z-index:10; pointer-events:none; mix-blend-mode:screen; opacity:0.55; }
	
	.section-video { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }
	.footer-wrap .section-video , .nav-project .section-video , .block-dark .section-video , .block-video .section-video { mix-blend-mode:multiply; opacity:0.1; filter:grayscale(50%); }
	.nav-project .section-video { opacity:0.4; }
	.block-dark .section-video { opacity:0.5; }
	
	.footer { float:left; width:100%; padding:85px 0 60px 0; position:relative; display:flex; flex-direction:column; row-gap:90px; z-index:100; color:var(--color-purple); }
		.footer-top { float:left; width:100%; height:100%; position:relative; display:flex; align-items:center; }
		.footer-bottom { float:left; width:100%; margin-top:auto; position:relative; display:flex; align-items:end; }
		
		.footer .hero-title span { display:block; }
	
	.footer-cta { float:left; width:100%; margin-top:35px; display:flex; justify-content:center; }
		.footer-cta a { float:left; width:100%; max-width:480px; padding:25px; position:relative; font-size:30px; color:#FFF; line-height:100%; border-radius:40px; transition:all 1.5s; overflow:hidden; background:linear-gradient(90deg,var(--color-orange),var(--color-purple)); display:flex; align-items:center; justify-content:center; }
		.footer-cta a:hover { color:#FFF; }
			.footer-cta a::before { content:""; position:absolute; top:0; bottom:0; left:0; width:0; background-color:var(--color-orange); transition:all 0.5s; }
			.footer-cta a:hover::before { width:105%; border-radius:40px; }
			.footer-cta a small { position:relative; z-index:10; font-weight:600; display:flex; align-items:center; }
				.footer-cta a small i { float:right; margin-left:16px; font-size:32px; }
	
	.footer-menu , .footer-connect , .footer-contact { float:left; width:25%; }
		.footer-menu ul , .footer-menu li { width:100%; }
			.footer-menu li a { display:inline-block; font-size:30px; font-weight:600; line-height:48px; transition:all 0.5s; }
	
	.footer-connect small { float:left; width:100%; padding:22px 0 6px 0; font-size:12px; font-weight:600; letter-spacing:1px; opacity:0.5; }
	
	.footer-contact { float:right; margin-left:auto; text-align:right; }
		.footer-address { float:left; width:100%; margin:18px 0 12px 0; font-size:18px; line-height:24px; }
		.footer-contact .link-cta { margin-top:12px; }
			.footer-contact .link-cta a { background-color:rgba(255,255,255,0.5); letter-spacing:1px; }
	
		.footer-title { float:left; width:100%; font-size:30px; font-weight:500; line-height:48px; }
			.footer-title small { font-weight:700; }
	
	.copyright { float:left; width:100%; display:flex; align-items:center; color:var(--color-grey); }
		
		.copyright-section { float:left; font-size:14px; }
			.copyright-section a { display:inline-block; margin-right:60px; color:var(--color-grey); }
			.copyright-section a:hover { color:var(--color-black); }
		
		.footer-social { float:right; margin-left:auto; position:relative; text-align:center; }
			.footer-social li { margin-right:10px; }
			.footer-social li:last-child { margin-right:0; }
				.footer-social li a { float:left; transition:all 0.5s; }
				.footer-social li a:hover { background-color:#FFF; border-radius:50%; }
					.footer-social li a i { float:left; width:40px; height:40px; font-size:24px; color:var(--color-orange); line-height:40px; }
	
/*	Start CONTENT	*/

.page-spacer { float:left; width:100%; margin-top:70px; margin-bottom:70px; position:relative; display:flex; align-items:center; }
.page-spacer.slim { margin-top:30px; margin-bottom:30px; }
	.page-spacer strong { float:left; font-size:13px; color:rgba(81,1,186,0.33); display:flex; align-items:center; letter-spacing:2px; }
	.page-spacer.light strong { color:rgba(255,255,255,0.4); }
		.page-spacer strong::before , .page-spacer section::after { content:""; float:left; width:60px; height:1px; margin-right:20px; background-color:var(--color-purple); opacity:0.07; }
		.page-spacer section::after { float:right; margin-right:0; margin-left:20px; }
	.page-spacer section { float:right; margin-left:auto; flex:1; display:flex; align-items:center; }
		.page-spacer section::before { content:""; float:left; flex:1; height:1px; margin-left:20px; margin-right:20px; background-color:var(--color-purple); opacity:0.07; }
		.page-spacer.light strong::before , .page-spacer.light section::after , .page-spacer.light section::before { background-color:var(--color-purple-light); opacity:0.15; }
		.page-spacer section i { float:right; font-size:20px; color:var(--color-orange); }

.page-title { float:left; width:100%; position:relative; font-size:57px; font-weight:300; letter-spacing:-1px; line-height:70px; }
.page-title.medium { font-size:40px; line-height:50px; letter-spacing:0; }
	.page-title strong { font-weight:700; }

.small-title { float:left; width:100%; position:relative; font-weight:700; font-size:17px; color:var(--color-purple); letter-spacing:0.5px; line-height:25px; text-align:center; z-index:30; }
	.small-title::before { content:""; position:absolute; top:calc(50% - 1px); left:0; right:0; height:1px; background-color:rgba(81,1,186,0.07); }
	.small-title strong { display:inline-block; padding:0 40px; position:relative; font-weight:400; background-color:#FFF; z-index:10; }

.page-summary { float:left; width:100%; position:relative; font-size:20px; line-height:150%; z-index:20; }

.page-text { float:left; width:100%; position:relative; font-size:17px; line-height:26px; z-index:20; }
.page-text.narrow { padding-right:25%; }
	.page-text a , .page-text b , .page-text strong { font-weight:500; color:#000; }
	.page-text a:hover { color:#148399; text-decoration:none; }
	.page-text p { margin-bottom:30px; }
	.page-text p:last-child { margin-bottom:0; }
	.color-white a , .color-white b , .color-white strong { color:#FFF; }

.static-text { font-size:16px; line-height:26px; }

.hero-text { float:left; width:100%; position:relative; font-size:40px; font-weight:300; letter-spacing:-0.5px; line-height:150%; z-index:20; }
.hero-text.narrow { padding-right:20%; }
.hero-text strong { font-weight:700; }

.video-block { float:left; width:100%; max-height:720px; position:relative; aspect-ratio:16/9; border-radius:48px; overflow:hidden; }
.video-block .hello-video { mix-blend-mode:normal; opacity:1; }

.fs-24 { font-size:24px; line-height:150%; }

.fw-100 { font-weight:100 !important; }
.fw-200 { font-weight:200 !important; }
.fw-300 { font-weight:300 !important; }
.fw-400 { font-weight:400 !important; }
.fw-500 { font-weight:500 !important; }
.fw-600 { font-weight:600 !important; }
.fw-700 { font-weight:700 !important; }

.text-black { color:var(--color-black) !important; }
.text-green { color:var(--color-green) !important; }
.text-purple { color:var(--color-purple) !important; }
.text-purple-light { color:var(--color-purple-light) !important; }
.text-grey { color:var(--color-grey) !important; }
.text-white { color:#FFF !important; }

.gradient-text { background:linear-gradient(150deg,var(--color-purple-light),#FFF); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

@keyframes gradientAnimation {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.gradient-animation {
	background-image: linear-gradient(100deg,#000,#F60 42%,#000 85%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientAnimation 5s ease-in-out infinite;
	background-size: 200% 200%;
}

.section-33 { width:33.33334%; }
.section-67 { width:66.66666%; }
.section-50 { width:50%; }

.block-light { position:relative; background-color:var(--color-light); }
.block-circle { position:relative; overflow:hidden; }
.block-circle::before { content:""; position:absolute; top:30px; bottom:0; left:-40px; right:55%; background:url(../images/logo-icon.png) no-repeat 0 0 / 100% auto; opacity:0.044; pointer-events:none; }
.block-dark { position:relative; background-color:var(--color-purple-dark); color:#FFF; }
	
.inner-80 { margin:0 -80px; }
.inner-40 { margin:0 -40px; }
.inner-30 { margin:0 -30px; }
.inner-20 { margin:0 -20px; }
.inner-15 { margin:0 -15px; }
.inner-10 { margin:0 -10px; }
.inner-8 { margin:0 -8px; }
.inner-5 { margin:0 -5px; }
.inner-2 { margin:0 -2px; }

.top-150 { padding-top:150px; }
.top-100 { padding-top:100px; }
.top-50 { padding-top:50px; }
.bottom-150 { padding-bottom:150px; }
.bottom-100 { padding-bottom:100px; }
.bottom-50 { padding-bottom:50px; }

.left-80 { padding-left:80px; }
.right-80 { padding-right:80px; }

.block-gradient { float:left; width:100%; position:relative; background-image:linear-gradient(180deg,#F8F9F9,#FFF); }
.block-grey { float:left; width:100%; position:relative; background-color:#FBFBF3; }
.block-border-bottom { background:url(../images/dot-line.png) repeat-x 0 bottom; }

.link-cta { float:left; width:100%; position:relative; text-align:center; }
.link-cta.center { display:flex; justify-content:center; }
	.link-cta a { float:left; margin-right:20px; position:relative; display:flex; align-items:center; min-width:200px; padding:5px 5px 5px 24px; font-weight:500; background-color:var(--color-light); border-radius:25px; transition:all 0.5s; }
	.link-cta.large a { padding:10px 10px 10px 24px; background-color:var(--color-purple-light); border-radius:50px; }
	.link-cta.link-33 a { width:calc(33.33334% - 30px); }
	.link-cta a:last-child { margin-right:0; }
	.link-cta a:hover { background:var(--color-purple) !important; color:#FFF; }
		.link-cta a small { float:left; flex:1; margin-right:20px; text-align:left; line-height:16px; }
		.link-cta.large a small { font-size:18px; }
		.link-cta a i { float:right; width:40px; margin-left:auto; font-size:24px; color:rgba(81,1,186,0.3); line-height:40px; border-radius:50%; text-align:center; transition:all 0.3s; background-color:rgba(81,1,186,0.05); }
		.link-cta.large a i { background-color:rgba(255,255,255,0.75); }
		.link-cta a:hover i { color:var(--color-purple); background-color:#FFF; transform: rotate(45deg); }

.new-projects { float:left; width:100%; position:relative; overflow:hidden; }
	.new-projects > ul { width:calc(100% + 60px); margin-left:-30px; display:flex; flex-flow:row wrap; }
		.new-projects > ul > li { width:33.33334%; padding:0 30px; margin-bottom:80px; }
	
	.new-projects .link-cta { margin-top:-100px; }

.project-item { float:left; width:100%; position:relative; transition:all 0.5s; }
	
	.project-item picture { float:left; width:100%; position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:32px; }
	.project-item.hero-1 picture { aspect-ratio:56/70; }
	.project-item.hero-3 picture { aspect-ratio:56/40; }
		.project-item picture img { width:100%; height:100%; object-fit:cover; transform-origin:center; transition:all 1.5s; }
		.project-item:hover picture img { transform:scale(1.25,1.25); }
	
	.project-item-title { float:left; width:100%; margin:32px 0 22px 0; font-size:30px; font-weight:600; line-height:120%; }
	
	.project-item-cta { float:left; width:100%; position:relative; display:flex; align-items:center; font-size:13px; font-weight:700; color:rgba(81,1,186,0.33); letter-spacing:2px; }
		.project-item-cta::before , .project-item-cta::after { content:""; float:left; flex:1; height:1px; background-color:var(--color-purple); opacity:0.07; transition:all 0.5s; }
		.project-item-cta::after { float:right; flex:none; width:40px; }
		.project-item:hover .project-item-cta::after { width:20px; opacity:1; }
		.project-item-cta small { float:right; margin-left:20px; margin-right:15px; display:flex; align-items:center; }
			.project-item-cta small i { float:right; margin-left:10px; font-size:20px; color:var(--color-orange); }

.project-gallery { float:left; width:100%; position:relative; z-index:100; }
	.project-gallery > ul { width:100%; display:flex; justify-content:flex-start; gap:60px; flex-flow:row wrap; }
		.project-gallery > ul > li { flex:1; flex-basis:calc(33.33334% - 60px); position:relative; }
		.project-gallery.two > ul > li { flex-basis:calc(50% - 60px); }
			
			.project-gallery > ul > li::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:1px solid var(--color-purple-dark); border-radius:32px; pointer-events:none; opacity:0.07; }
			
			.project-gallery > ul > li a , .project-gallery > ul > li img { float:left; width:100%; border-radius:32px; overflow:hidden; box-shadow:0 5px 20px rgba(81,1,186,0.06); }
			.project-gallery.two > ul > li a , .project-gallery.two > ul > li img , .project-gallery.two > ul > li::after { border-radius:16px; }
			.project-gallery > ul > li a img { box-shadow:none; }

.visit-live { position:fixed; right:16px; bottom:16px; padding:9px 9px 9px 19px; background-color:var(--color-orange); border-radius:25px; min-width:200px; font-weight:600; letter-spacing:0.5px; color:#FFF !important; display:flex; align-items:center; transition:all 0.5s; z-index:8880; border:1px solid #FFF; }
.visit-live:hover { background-color:var(--color-purple); }
.visit-live small { float:left; margin-right:15px; }
.visit-live i { float:right; font-size:24px; margin-left:auto; }

.animate-text-wrap { float:left; width:100%; padding:150px 0; position:relative; }
.animate-text-in { position:absolute; top:0; bottom:0; left:0; right:0; overflow:hidden; display:flex; align-items:center; font-size:120px; line-height:140px; }
.animate-text-container { transform:translateX(-50%); left:50%; position:absolute; width:100%; }
.animate-text span { display:inline-block; min-width:auto; margin:0 40px; }
.animate-text img { display:inline-block; width:140px; height:140px; padding:30px; margin:0 40px; background-color:var(--color-light); border-radius:50%; }


@keyframes text-scrolling {
  0% { transform: translate3d(-100%, 0, 0); }
  100% { transform: translate3d(0%, 0, 0); }
}

.animate-text {
  animation: text-scrolling 24s linear infinite;
  will-change: transform;
  display: flex;
  align-items:center;
  position: relative;
  white-space: nowrap;
  
}

.animate-text.left { animation-direction:reverse; }

@keyframes gradientAnimation {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}


.hero-services { float:left; width:100%; position:relative; }
.hero-services-left { float:left; width:calc(50% - 80px); height:calc(100vh - 100px); position:relative; display:flex; flex-direction:column; }
.services-left-top { float:left; width:100%; margin-bottom:30px; }
.services-left-bottom { float:left; width:100%; margin-top:auto; margin-bottom:100px; display:flex; align-items:center; }
	.services-left-bottom picture { float:left; width:40%; aspect-ratio:1/1; border-radius:32px; overflow:hidden; }
		.services-left-bottom picture img { width:100%; height:100%; object-fit:cover; }
	.services-left-bottom section { float:right; width:50%; margin-left:auto; }

.hero-services-right { float:right; width:50%; position:relative; }

.new-services { float:left; width:100%; position:relative; overflow:hidden; }
.hero-services-right .new-services { margin-bottom:60px; }
	.new-services > ul { width:calc(100% + 40px); margin-left:-20px; display:flex; flex-flow:row wrap; }
		.new-services > ul > li { width:50%; padding:0 20px; margin-bottom:40px; }

.service-item { float:left; width:100%; height:100%; padding:49px; border:1px solid rgba(216,183,255,0.5); border-radius:32px; display:flex; flex-direction:column; transition:all 0.5s; -webkit-backdrop-filter:blur(13px); backdrop-filter:blur(13px); }
.service-item.light { color:#FFF; }
.service-item:hover { border-color:var(--color-purple); }
.service-item.light:hover { border-color:var(--color-purple-light); }
	.service-item-no { float:left; width:100%; margin-top:-5px; margin-bottom:55px; display:flex; align-items:center; }
		.service-item-no small { float:left; color:var(--color-purple); opacity:0.5; }
		.service-item.light .service-item-no small { color:var(--color-purple-light); opacity:0.75; }
		.service-item-no span { float:right; margin-left:auto; flex:1; color:var(--color-orange); display:flex; align-items:center; }
			.service-item-no span::before { content:""; float:left; margin-left:15px; margin-right:15px; height:1px; flex:1; background-color:var(--color-purple); opacity:0.07; }
			.service-item.light .service-item-no span::before { background-color:var(--color-purple-light); opacity:0.2; }
	.service-item-icon { float:left; width:100%; margin-bottom:38px; opacity:0.5; transition:all 0.5s; }
	.service-item:hover .service-item-icon { opacity:1; }
		.service-item-icon img { float:left; width:75%; max-width:200px; }
	.service-item-title { float:left; width:100%; margin-top:auto; margin-bottom:-7px; font-size:24px; font-weight:600; line-height:120%; }


.brands { float:left; width:100%; position:relative; text-align:center; }
	.brands ul { width:calc(100% + 32px); margin-left:-16px; display:flex; flex-flow:row wrap; justify-content:flex-start; }
		.brands li { flex:1; flex-basis:20%; padding:10px 24px; margin-bottom:20px; }
		.brands-all li { flex-basis:33.33334%; max-width:33.33334%; }
			.brands li picture { float:left; width:100%; max-height:100px; transition:all 0.5s; }
			.brands li:hover picture { background-color:var(--color-light); border-radius:24px; }
				.brands li picture img { max-width:100%; height:100%; object-fit:cover; mix-blend-mode:multiply; }

.blog { float:left; width:100%; position:relative; }
	.blog > ul { width:calc(100% + 60px); margin-left:-30px; display:flex; flex-flow:row wrap; }
		.blog > ul > li { width:33.33334%; padding:0 30px; margin-bottom:100px; }

.blog-item { float:left; width:100%; height:100%; position:relative; display:flex; flex-direction:column; transition:all 0.5s; }
	.blog-item picture { float:left; width:100%; position:relative; aspect-ratio:40/26; border-radius:32px; overflow:hidden; }
		.blog-item picture img { width:100%; height:100%; object-fit:cover; transform-origin:center; transition:all 1.5s; }
		.blog-item:hover picture img { transform:scale(1.25,1.25); }
	.blog-item-title { float:left; width:100%; padding-right:25%; margin:30px 0 30px 0; position:relative; font-size:30px; font-weight:600; line-height:120%; }
		.blog-item-title i { position:absolute; bottom:0; right:0; font-size:28px; line-height:100%; transition:all 0.3s; opacity:0.4; }
		.blog-item:hover .blog-item-title i { transform:rotate(45deg); opacity:1; }
	.blog-item-content { float:left; width:100%; margin-top:auto; line-height:24px; display:flex; align-items:end; }
		.blog-item-content time , .blog-item-content article { float:left; width:50%; }
		.blog-item-content time { color:#CCC; letter-spacing:1px; }
		.blog-item-content article { text-align:right; color:var(--color-grey); }

.hero-blog { position:fixed; top:0; left:0; right:0; height:100vh; padding-top:80px; transition:all 0.5s; }
.scroll .hero-blog { padding-top:0; }
	.hero-blog picture { float:left; width:100%; height:100%; overflow:hidden; }
		.hero-blog picture img { width:100%; height:100%; object-fit:cover; object-position:center; }
	.hero-blog::after { content:""; position:absolute; left:0; right:0; top:25%; bottom:0; z-index:5; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),var(--color-black)); opacity:0.5; }
	.hero-blog-title { position:absolute; left:0; right:30%; bottom:60px; z-index:10; }

.blog-content-wrap { float:left; width:100%; margin-top:100vh; position:relative; background-color:#FFF; z-index:1000; }
.blog-content { float:left; width:100%; position:relative; }

.page-share { float:left; width:100%; position:relative; }
	.page-share ul { width:100%; text-align:center; }
		.page-share li { margin-right:15px; }
		.page-share li:last-child { margin-right:0; }
			.page-share li a { float:left; width:100%; color:var(--color-grey); transition:all 0.5s; text-align:center; }
			.page-share li a:hover { color:var(--color-purple); }
				.page-share li a i { float:left; width:40px; font-size:26px; line-height:40px; }

.hero-page { float:left; width:100%; padding-top:100px; min-height:calc(100vh - 180px); margin-bottom:60px; display:flex; align-items:center; }

.studio-gallery { float:left; width:100%; display:flex; align-items:center; }
	.studio-gallery picture { float:left; width:calc(50% - 40px); margin-bottom:60px; border-radius:32px; overflow:hidden; }
	.studio-gallery picture:nth-child(even) { float:right; margin-left:auto; }
		.studio-gallery picture img { float:left; width:100%; }

.block-video { position:relative; }

.our-team { float:left; width:100%; position:relative; }
	.our-team > ul { width:calc(100% + 60px); margin-left:-30px; display:flex; flex-flow:row wrap; }
		.our-team > ul > li { width:33.33334%; padding:0 30px; margin-bottom:80px; }
	
.team-item { float:left; width:100%; position:relative; }
	.team-item picture { float:left; width:100%; position:relative; overflow:hidden; }
		.team-item picture i { float:left; width:100%; font-size:80px; color:var(--color-orange); text-align:center; line-height:138px; border:1px solid rgba(81,1,186,0.12); border-radius:24px; transition:all 0.5s; -webkit-backdrop-filter:blur(13px); backdrop-filter:blur(13px); }
		.team-item:hover picture i { border-color:var(--color-purple); }
		.team-item picture figure { position:absolute; border-radius:inherit; top:0; bottom:0; left:0; right:0; }
			.team-item picture figure img { display:block; width:100%; height:100%; border-radius:inherit; object-position:center; object-fit:cover; image-rendering:auto; transform-origin:center; transition:all 1.5s; }
			.team-item:hover picture figure img { transform:scale(1.25,1.25); }
			
	.team-item strong { float:left; width:100%; margin:26px 0 7px 0; font-size:24px; font-weight:600; color:var(--color-purple); line-height:30px; display:flex; align-items:center; }
		.team-item strong i { float:right; margin-left:auto; font-size:32px; line-height:100%; opacity:0.4; }
	.team-item article { margin-bottom:10px; color:var(--color-grey); }

.next-project { float:left; width:100%; padding:80px; position:relative; border-radius:32px; transition:all 0.5s; }
.next-project:hover { background-color:var(--color-orange); color:#FFF; }
	.next-project-in { float:left; width:100%; }
	.next-project-nav { float:left; width:100%; display:flex; align-items:center; }
		.next-project-nav .project-next { width:auto; font-weight:100; }
		.next-project-nav .project-name { float:right; width:auto; margin-left:auto; font-weight:700; display:flex; align-items:center; }
			.next-project-nav .project-name i { float:right; margin-left:20px; font-size:70px; transition:all 0.5s; }
			.next-project:hover .next-project-nav .project-name i { transform:rotate(45deg); }

.support-block { float:left; width:100%; position:relative; overflow:hidden; }
	.support-block > ul { width:100%; display:flex; flex-flow:row wrap; }
		.support-block > ul > li { flex-basis:calc(50% - 40px); margin-bottom:48px; }
		.support-block > ul > li:nth-child(even) { margin-left:auto; }

.support-item { float:left; width:100%; position:relative; display:flex; align-items:center; }
	.support-item > i { float:left; width:140px; font-size:80px; color:var(--color-orange); text-align:center; line-height:138px; border:1px solid rgba(81,1,186,0.1); border-radius:25%; transition:all 0.5s; }
	.support-item:hover > i { border-color:var(--color-purple); }
	.support-item > section { float:left; flex:1; padding-left:48px; }
		.support-item > section h4 { float:left; width:100%; font-size:30px; font-weight:600; color:var(--color-purple); line-height:120%; }
		.support-item > section article { margin-top:10px; }


/*	Start LIGHTBOX	*/

.fancybox-slide--iframe .fancybox-content { width:800px; min-height:300px; max-width:80%; max-height:80%; margin:0; }

.my-fancy { display:none; padding:30px !important; border-radius:8px; }
	
	.my-fancy-wrap { width:100%; max-width:800px; max-height:600px; overflow:hidden; overflow-y:auto; }
		.my-fancy-wrap::-webkit-scrollbar { width:5px; }
		.my-fancy-wrap::-webkit-scrollbar-track { background:#EEEEEE; }
		.my-fancy-wrap::-webkit-scrollbar-thumb { background-color:#555; }
		.my-fancy-wrap { scrollbar-color:#FFF #EEEEEE; scrollbar-width:thin; }

.fancy-title { float:left; width:100%; padding:0 20px; margin-bottom:15px; position:relative; font-size:16px; color:#000; }
	.fancy-title::before { content:""; position:absolute; top:50%; left:0; width: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 CONTACT	*/
	
.accordion { float:left; width:100%; }
	.accordion-section { float:left; width:100%; border-bottom:1px solid rgba(31,64,131,0.1); }
	
	.accordion-section-title { float:left; width:100%; padding:30px; position:relative; font-size:20px; font-weight:600; color:var(--color-purple); line-height:24px; border-top:1px solid rgba(31,64,131,0.1); z-index:10; }
	.accordion-section-title:hover , .accordion-section-title.active { color:var(--color-green); }
		.accordion-section-title::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 100% auto; transition:all 0.3s; }
		.accordion-section-title.active::after { transform:rotate(180deg); }
		.accordion-section-title section { float:left; }

	.accordion-section-content { float:left; width:100%; padding:0 30px 40px 30px; position:relative; display:none; }
		.accordion-section-text { float:left; width:100%; font-size:17px; line-height:30px; }
	
	.accordion-more { float:left; width:100%; padding:20px 0; margin-top:20px; font-size:17px; line-height:30px; }
		.accordion-more a { font-weight:500; color:var(--color-green); }
		.accordion-more a:hover { text-decoration:underline; }	
	
.contact-wrap { float:left; width:100%; position:relative; }

.contact-info-wrap { position:absolute; top:30px; bottom:30px; left:30px; width:480px; z-index:500; }
	.contact-info { float:left; width:100%; padding:20px; position:relative; background-color:#FFF; box-shadow:0 5px 40px rgba(0, 0, 0, 0.1); border-radius:3px; }
		.contact-info section { float:left; width:100%; padding-left:40px; margin:5px 0; position:relative; font-size:15px; line-height:25px; }
		.contact-info section:last-child { margin-bottom:0; font-weight:400; }
			.contact-info section img { position:absolute; top:0; left:0; height:24px; padding:2px 0; }
			.contact-info section i { display:block; margin:-5px 0; font-size:13px; font-weight:600; letter-spacing:2px; color:#148399; }
			.contact-info section article { display:block; margin-bottom:10px; }

.contact-form { float:left; width:100%; margin-top:35px; position:relative; }
	
	.form-item { float:left; width:50%; padding:0 15px 30px 15px; position:relative; }
	.form-item:last-child { padding-bottom:0; }
	.form-item-text { margin-top:-10px; color:#666; }
		.form-item label { float:left; width:100%; font-size:15px; }
		.form-item section { float:left; width:100%; font-size:17px; font-weight:600; margin-bottom:-10px; }
		.form-item a { text-decoration:underline; font-weight:600; }
	
	.contact-photo { position:absolute; top:0; left:0; right:0; height:100%; border-radius:32px; overflow:hidden; }
		.contact-photo img { width:100%; height:100%; object-position:center; object-fit:cover; }
	
.contact-map { float:left; width:100%; max-height:640px; padding:14px; position:relative; aspect-ratio:4/3; border:1px solid rgba(81,1,186,0.15); border-radius:12px; }
	
	.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }

		.upload section {
			float:left;
			width:100%;
			height:100%;
			position:relative;
			border-bottom:2px solid var(--color-green);
			font-weight:500;
			font-size:15px;
			line-height:48px;
			z-index:2;
		}
		.upload:hover section { background-color:#FFF; }
			
			.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:50px; background:url(../images/icon-clip.png) no-repeat center / auto 16px; }

		.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 PAGINATION	*/
	
.pages { float:left; width:100%; margin-top:20px; position:relative; font-weight:500; line-height:48px; text-align:center; }
	
	.pages ul { width:100%; display:flex; justify-content:center; }
		.pages li { padding:5px; }
			.pages li a { float:left; width:48px; color:var(--color-grey); transition:all 0.3s; border-radius:33%; }
			.pages li a:hover { background-color:var(--color-light); }
			.pages li a.current { color:var(--color-purple); background-color:var(--color-light); }
				
.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; }

.block-flexed { float:left; width:100%; position:relative; display:flex; }
.align-center { align-items:center; }
.align-end { align-items:end; }
	.flex-left { float:left; width:50%; padding-right:80px; position:relative; }
	.flex-right { float:right; width:50%; margin-left:auto; position:relative; }
	.flex-photo { float:left; width:100%; position:relative; aspect-ratio:5/3; overflow:hidden; border-radius:32px; }
		.flex-photo img { width:100%; height:100%; object-fit:cover; }

	.flex-vertical { float:left; width:100%; height:100%; padding:10px 0; position:relative; display:flex; flex-direction:column; row-gap:30px; }
		.flex-v-top { float:left; width:100%; }
		.flex-v-bottom { float:left; width:100%; margin-top:auto; }
	
	.cta-icon { font-size:240px; line-height:80%; }
		.cta-icon i { line-height:80%; }


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

.wrap , .wrap-slim { padding-left:80px; padding-right:80px; }
.nav-project , .nav-cta { padding:40px 60px; }
.animate-text span , .animate-text img { margin:0 24px; }
.services-left-bottom { margin-bottom:80px; }
.hero-services-right .new-services { margin-bottom:40px; }

.hello-screen-left { width:calc(50% - 40px); }
.hello-screen-title { font-size:54px; line-height:60px; }

}


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

.header { padding:15px 30px; }
#logo a { padding:21px 0; }

.hello-screen-wrap { padding-bottom:130px; }
.hello-discover { bottom:14px; left:calc(50% - 44px); width:88px; height:88px; }

.blog-item-content time { width:140px; }
.blog-item-content article { width:auto; flex:1; }
.flex-left { padding-right:40px; }
.next-project { padding:60px; }

}


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

.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; }

.wrap , .wrap-slim { padding-left:48px; padding-right:48px; }
.header-links > ul > li , .copyright-section a { margin-right:40px; }
.nav-project , .nav-cta { padding:32px 48px; }
.services-left-bottom { margin-bottom:48px; }
.hero-services-right .new-services { margin-bottom:8px; }

.hello-experince strong::after { top:-8px; right:-30px; width:24px; height:24px; }
.hello-contact::before { margin-left:48px; margin-right:48px; }

.page-title { font-size:44px; letter-spacing:-0.5px; line-height:60px; }
.page-spacer strong::before , .page-spacer section::after { width:40px; }

.new-projects > ul , .blog > ul { width:calc(100% + 40px); margin-left:-20px; }
.new-projects > ul > li , .blog > ul > li { padding:0 20px; }
.blog > ul > li { margin-bottom:80px; }
.project-item-title { margin:27px 0 17px 0; font-size:27px; }

.page-spacer { margin-top:50px; margin-bottom:50px; }

.animate-text-wrap { padding:12% 0; }
.animate-text-in { font-size:80px; font-weight:500; line-height:100px; }
.animate-text img { width:100px; height:100px; padding:20px; }

.service-item { padding:34px; border-radius:20px; }

.project-item picture , .blog-item picture , .services-left-bottom picture , .video-block , .studio-gallery picture , .project-gallery > ul > li a, .project-gallery > ul > li img , .project-gallery > ul > li::after , .next-project , .flex-photo { border-radius:20px; }

.footer-menu , .footer-connect { width:33%; }
.footer { padding:70px 0 40px 0; row-gap:40px; }
.footer-cta { margin-top:25px; }
.footer-cta a { max-width:360px; padding:20px; font-size:26px; }
.footer-title , .footer-menu li a { font-size:26px; }

.blog-item-title { padding-right:48px; margin:24px 0; font-size:26px; }

.studio-gallery picture { width:calc(50% - 20px); }
.hero-text { font-size:30px; letter-spacing:0; line-height:130%; }
.hero-text.narrow { padding-right:10%; }

.project-gallery > ul { gap:40px; }

.next-project { padding:40px; }

.support-block > ul > li { flex-basis:calc(50% - 20px); margin-bottom:40px; }
.support-item > i { width:100px; font-size:64px; line-height:98px; }
.support-item > section { padding-left:24px; }

.our-team > ul { width:calc(100% + 40px); margin-left:-20px; }
.our-team > ul > li { padding:0 20px; margin-bottom:60px; }

}


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

.nav-cta > ul > li a { float:left; width:100%; padding:8px 0; }
.nav-cta > ul > li a::after { margin-left:40px; }

.hello-screen-wrap { padding-bottom:100px; }
.hello-screen-title { font-size:40px; line-height:48px; }
.hello-discover { bottom:10px; left:calc(50% - 34px); width:68px; height:68px; }

.hero-services-left { width:calc(50% - 30px); }

.page-title { font-size:35px; letter-spacing:0 !important; line-height:125%; }
.page-title.medium { font-size:30px; line-height:125%; }
.page-summary { font-size:18px; }

.copyright-section a { margin-right:20px; }

.project-gallery > ul { gap:24px; }

.next-project { padding:30px; }

.support-block > ul > li { flex-basis:100%; margin-bottom:40px; }

}



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

.wrap , .wrap-slim { padding-left:30px; padding-right: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; }

.header { padding:5px 20px !important; border-radius:0 0 8px 8px; }
.nav-opened .header { background-color:var(--color-purple-dark) !important; border-radius:0; }
.header::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:linear-gradient(180deg,var(--color-purple-dark),rgba(50,0,111,0.0)); border-radius:0 0 8px 8px; }

#logo { float:left; position:relative !important; top:auto !important; left:auto !important; width:auto; box-shadow:none; }
#logo a { padding:10px 0 !important; }
#logo a img { height:40px; margin-left:8px; }
#logo a::before { width:40px; height:40px; }
.header-links , .hello-screen-wrap .mask , .hello-discover , .footer-menu { display:none; }

#nav-wrap { top:74px; height:calc(100vh - 74px); }
.nav-project , .nav-cta { padding:40px; }
.nav-project .link-cta { margin-bottom:0; }
.nav-project .link-cta a { width:100%; }

.hello-screen-wrap { border-radius:0 0 20px 20px; padding-top:150px; padding-bottom:30px; }
.header-cta { margin-right:16px; }

.block-circle::before { left:-20px; right:10%; }

.animate-text-in { font-size:48px; line-height:60px; }
.animate-text img { width:60px; height:60px; padding:10px; }
.animate-text span , .animate-text img { margin:0 12px; }

.block-flexed { display:block; }
.flex-left { width:100%; max-width:initial; padding-right:0; }
.flex-right { width:100%; max-width:initial; padding-left:0; margin-top:20px; }
.flex-right.tar { text-align:left; }
.flex-right:first-child { margin-top:0; }

.link-cta.link-33 a { width:100%; }

.new-projects > ul , .blog > ul , .new-services > ul { width:calc(100% + 30px); margin-left:-15px; }
.new-projects > ul > li , .blog > ul > li , .new-services > ul > li { width:50%; padding:0 15px; }
.new-services > ul > li { margin-bottom:30px; }
.home-projects > ul > li:first-child , .blog > ul > li:first-child { width:100%; }
.project-item picture { aspect-ratio:1/1 !important; }
.new-projects .link-cta { margin-top:-20px; margin-bottom:30px; }

.project-item-title { font-size:20px; }
.project-item-cta small i { margin-left:4px; }

.hero-services-left , .hero-services-right { width:100%; height:auto; }
.services-left-top { margin-bottom:48px; }

.footer-connect , .footer-contact { width:50%; }
.footer-connect small { padding:17px 0 1px 0; }
.footer-address { margin:8px 0 7px 0; }

.footer-cta a { padding:14px; font-size:22px; }

.services-left-bottom picture { max-width:200px; }
.services-left-bottom section { width:auto; flex:1; padding-left:30px; }
.small-title strong { padding:0 20px; }

.hello-sub-wrap { height:74px; border-radius:0 0 8px 8px; }
.hero-text.narrow { padding-right:0; }
.studio-gallery picture { width:calc(50% - 10px); }

.project-gallery > ul > li a, .project-gallery > ul > li img , .project-gallery > ul > li::after { border-radius:12px; }

.project-gallery > ul > li { flex-basis:calc(50% - 24px); }
.project-gallery.two > ul > li { flex-basis:100%; }

.brands-all li { flex-basis:33.33334%; max-width:33.33334%; }
.brands li picture , .brands li picture img { max-height:80px; }

.our-team > ul { width:calc(100% + 30px); margin-left:-15px; }
.our-team > ul > li { width:50%; padding:0 15px; margin-bottom:80px; }

}





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

#nav-wrap .in { flex-direction:column; }
#nav-wrap::before { content:""; position:fixed; top:74px; left:20px; right:20px; height:1px; background-color:var(--color-purple-light); opacity:0.1; }
.nav-project , .nav-cta { width:100%; }
.nav-project { padding-bottom:140px; order:2; }
.nav-cta { order:1; }

.hello-screen { display:block; }
.hello-screen-left , .hello-screen-right { width:100%; margin:12px 0; text-align:center; }
.hello-screen-right { opacity:0.75; }
.hello-contact section a { font-size:18px; padding:5px 0; }
.hello-contact::before { margin-left:24px; margin-right:24px; }
.hello-experince { font-size:18px; }

.animate-text { animation:text-scrolling 6s linear infinite; }
.service-item-icon img { width:50%; }

.hero-text { font-size:26px; }

.next-project-nav { display:block; }
.next-project-nav .project-next { width:100%; font-size:20px !important; font-weight:400; }
.next-project-nav .project-name { width:100%; margin-top:10px; }
.next-project-nav .project-name i { padding-left:16px; margin-left:auto; font-size:40px; }

}



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

.hello-experince span { display:block; margin-top:10px; }

.page-spacer strong::before , .page-spacer section::after { width:24px; }
.page-spacer strong::before { margin-right:12px; }
.page-spacer section::after { margin-left:12px; }
.brands { margin-bottom:2px0; }
.brands li { flex-basis:50%; margin-bottom:0; }
.new-projects > ul > li , .blog > ul > li , .new-services > ul > li { width:100%; }
.service-item { padding:29px; }

.footer-bottom { display:block; }
.footer-connect , .footer-contact { width:100%; }
.footer-contact { margin-top:48px; text-align:left; }
.footer-contact .link-cta a { float:left; width:100%; }

.copyright { flex-direction:column; }
.copyright-section { width:100%; order:2; }
.footer-social { width:100%; margin-bottom:32px; order:1; }

.form-item { width:100%; padding-bottom:20px; }
.contact-map { padding:0; aspect-ratio:1/1; border:0; overflow:hidden; }

.visit-live { left:12px; right:12px; bottom:12px; min-width:initial; }

.support-block > ul > li { margin-bottom:30px; }
.support-item > i { width:80px; font-size:48px; line-height:78px; }
.support-item > section h4 { margin-bottom:-6px; font-size:24px; }

.our-team > ul > li { width:100%; }
.team-item picture i { font-size:60px; line-height:78px; border-radius:12px; }

}



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

.hello-screen-wrap { padding-top:120px; }
.hello-screen { padding-bottom:32px; }
.hello-screen-title { font-size:31px; letter-spacing:-0.6px; line-height:40px; }
.hello-screen .page-summary { font-size:14px; }
.hello-connect { display:block; }
.hello-experince { width:100%; }
.hello-experince strong { line-height:80%; }
.hello-experince strong::after { top:-10px; }
.hello-experince span { display:inline-block; }
.hello-contact { width:100%; margin-top:32px; }
.hello-contact::before { margin-left:0; }

.project-gallery > ul { gap:12px; }
.project-gallery > ul > li { flex-basis:calc(50% - 12px); }
.project-gallery.two > ul > li { flex-basis:100%; }

}



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

.nav-icon { margin-left:-5px; margin-right:-5px; }
.header-cta a { height:44px; padding:5px 14px 5px 10px; font-weight:600; font-size:11px; line-height:13px; border-radius:12px; }
.header-cta a i { margin-right:5px; font-size:20px; }
.header-cta a span { display:block; }

.services-left-bottom { display:block; }
.services-left-bottom picture { width:100%; max-width:initial; aspect-ratio:8/3; }
.services-left-bottom section { width:100%; padding-left:0; margin-top:30px; }

.brands-all li { flex-basis:50%; max-width:50%; }

.support-item { display:block; }
.support-item > section { width:100%; padding:18px 0 42px 0; }

}



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

#logo a img { display:none; }

}

