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:#666; }
html::-webkit-scrollbar-thumb { background-color: #FFF; border:3px solid #666; }
html { scrollbar-color:#FFF #666; scrollbar-width:thin; }

body { margin:0; color:#222; font-size:14px; font-family:Manrope, Arial; line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; }

*::-moz-selection { background:rgba(0, 0, 0, 0.2); }
*::selection { background:rgba(0, 0, 0, 0.2); }

a { color:#000; text-decoration:none;  }
a:hover { color:#2469A4; text-decoration:none; }

:root {
	--input-background-color: #FFF;
	--input-border-color: #bfbfbf;
	--input-border-color-inline: #FFF;
	--input-border-color-checked: #00A678;
	--input-background-color-checked: #00C18C;
	--input-border-color-inline-checked: #00C18C;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #00C18C;
	--input-background-color-hover: #FFF;
	--input-border-color-inline-hover: #bfbfbf;
	--input-border-color-focus: #00A678;
}

/* Reset Css */
input, select, textarea, input[type='checkbox'], input[type='radio'] { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; }
input:focus, select:focus, textarea:focus, input[type='checkbox']:focus, input[type='radio']:focus { outline:0; }
input[type='submit'], button { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; outline:0; }

/* Customization checkbox & radio */
input[type='checkbox'], input[type='radio'] { width: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:14px; font-family:Manrope, Arial; border-radius:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:Manrope, Arial; font-size:16px; font-weight:700; }

.input { width:100%; height:50px; padding:0 16px; border:1px solid #999; transition:ease 0.3s; background-color:#FFF; border-radius:3px; box-shadow:5px 5px 0 rgba(0,0,0,0.03); }
.select { background:#FFF url(../images/arrow-select.png) no-repeat right center; background-size:auto 5px; box-shadow:5px 5px 0 rgba(0,0,0,0.03); -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.input:focus , .select:focus { border-color:#00C18C; box-shadow:5px 5px 0 rgba(0,0,0,0.06); }

textarea.input { padding-top:13px !important; padding-bottom:13px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 50px 0 30px; cursor:pointer; position:relative; color:#FFF; background-color:#4E535A; transition:all 0.25s; border-radius:3px; overflow:hidden; }
.button:hover { background-color:#2469A4; }
	.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 auto; transition:all 0.25s; }
	.button:hover::after { right:10px; }

.text-align-justify { text-align:justify; }

.tab-up { margin-top:0px; }
.tab-down { margin-top:40px; }

.grau { float:left; width:100%; padding-top:110px; position:relative; }
	.outer { float:left; width:100%; padding:0 80px; position:relative; }
		.wrap , .wrap-slim { margin:0 auto; width:1440px; min-height:10px; position:relative; }
			.wrap-slim { width:100%; max-width:980px; }

.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%; }
.mt30 { margin-top:30px; }
.mt20 { margin-top:20px; }

.page-subtitle { font-size: 1.1rem; font-weight: 700; }
.fw-bold { font-weight: 600; }

.img-fluid { max-width:100%; height:auto; }

.responsive-iframe { position:relative; width:100%; padding-bottom:56.25%; height:0; overflow:hidden; }
.responsive-iframe iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }

.iti__country-list {display:block; width:100%; }
.iti__country {float:none;}
/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; height:110px; background-color:#F6F6F6; z-index:8000; transition:all 0.4s; }
.nav-up { margin-top:-40px; box-shadow:0 0 10px rgba(0,0,0,0.07); }
.nav-down { margin-top:0; box-shadow:0 0 10px rgba(0,0,0,0.07); }
	.header::before { content:""; position:absolute; top:40px; bottom:0; /*left:50%;*/ left:0; right:0; background-color:#4E535A; }
	.header::after { content:""; position:absolute; top:39px; bottom:0; left:0; right: 50%; background-color:#FFF; z-index: -1; }
	
#logo { float:left; margin-top:35px; position:relative; z-index:1010; transition:all 0.3s; }
	#logo a { float:left; padding:15px 0; box-shadow:0 -1px 0 #F5F5F5; }
		#logo a img { float:left; height:50px; }
	
.nav-icon { display:none; }
	
#nav-wrap { float:left; width:100%; position:absolute; }	
	
	.header-bar { float:left; width:100%; }
	
	.header-connect { float:left; padding:10px 0; }
		.header-connect section { float:left; padding-right:20px; margin-right:20px; border-right:1px solid #E5E5E5; font-size:12px; color:#8B9099; }
		.header-connect section:last-child { padding-right:0; margin-right:0; border-right:0; }
			.header-connect section strong { font-weight:600; color:#4C5259; }
	
	.header-social-wrap { float:right; position:relative; height:40px; z-index:1020; font-size:12px; font-weight:600; color:#8B9099; z-index:1000; }
		.header-social-icon { float:right; padding-right:13px; position:relative; cursor:pointer; z-index:250; background:url(../images/arrow-down.png) no-repeat right 0 center / auto 4px; line-height:40px; }
		
		.header-social { position:absolute; top:40px; right:0; width:140px; background-color:#8B9099; display:none; z-index:300; box-shadow:0 10px 50px rgba(0, 0, 0, 0.15); }
			
			.header-social::before { 
				content:"";
				border-bottom:3px solid transparent;
				border-left:6px solid transparent;
				border-right:6px solid transparent;
				height:0;
				position: absolute;
				width:0;
				right:40px;
				top:-3px;
				border-bottom-color:#8B9099;
			}
			
			.header-social ul { width:100%; }
				.header-social li { width:100%; }
					.header-social li a { float:left; width:100%; color:#FFF; line-height:40px; box-shadow:inset 0 -1px 0 rgba(255,255,255,0.06); }
					.header-social li:last-child a { box-shadow:none; }
					.header-social li a:hover { opacity:0.7; }
						.header-social li a img { float:left; width:40px; height:40px; margin-right:10px; }

	.header-lang-wrap { position:absolute; top:55px; right:0; height:40px; z-index:1010; font-family:Bebas; font-size:17px; letter-spacing:1px; text-align:center; }
		.header-lang-icon { float:right; width:55px; height:40px; padding-left:13px; position:relative; background:url(../images/arrow-white-down.png) no-repeat right 8px center / 10px 4px; cursor:pointer; z-index:250; color:#FFF; text-align:left; line-height:38px; border:1px solid rgba(255,255,255,0.3); border-radius:4px; transition:all 0.3s; }
		.header-lang-icon-close { border-color:#FFF; }
		
		.header-lang { position:absolute; top:48px; right:0; width:55px; background-color:#2B2D31; display:none; z-index:300; box-shadow:0 10px 50px rgba(0, 0, 0, 0.15); border-radius:4px; text-align:center; }
			
			.header-lang::before { 
				content:"";
				border-bottom:4px solid transparent;
				border-left:8px solid transparent;
				border-right:8px solid transparent;
				height:0;
				position: absolute;
				width:0;
				left:50%;
				top:-4px;
				margin-left:-8px;
				border-bottom-color:#2B2D31;
			}
			
			.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(255,255,255,0.1); }
					.header-lang li:last-child a { box-shadow:none; }
					.header-lang li a:hover { opacity:0.7; }

	.search-icon { position:absolute; top:55px; right:70px; width:40px; height:40px; cursor:pointer; transition:all 0.2s; text-indent:-9999px; z-index:100; }
		.search-icon::before { content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:url(../images/icon-search-2.png) no-repeat center / 20px; transition:all 0.2s; }
	.search-icon-close { background-color:#000; }
		.search-icon-close::before { background-image:url(../images/icon-close.png); background-size:20px; }
		
	.hero-search-wrap { position:absolute; left:0; right:0; top:110px; z-index:7990; box-shadow:0 0 15px rgba(0, 0, 0, 0.1); display:none; }
		.hero-search { float:left; width:100%; position:relative; }
			.hero-search input { float:left; width:100%; height:60px; padding:0 60px 0 25px; font-size:16px; font-weight:400; letter-spacing:1px; line-height:60px; background-color:rgba(255, 255, 255, 0.92); }
			.hero-search button { position:absolute; top:0; right:0; bottom:0; width:60px; background:#333 url(../images/icon-search-2.png) no-repeat center / 20px; text-indent:-9999px; }
			.hero-search button:hover { background-size:22px; background-color:#000; }

	/*#nav { float:left; width:100%; padding-right:140px; position:relative; background-color:#4E535A; }*/
		/* #nav::before { content:""; position:absolute; top:0; left:0; bottom:0; width:36px; background:url(../images/nav-corner.png) no-repeat 0 0 / 36px auto; } */
		/*#nav ul { float:right; }
			#nav li { position:relative; margin-right:50px; }
			#nav li:last-child { margin-right:0; }
				#nav li > a { float:left; font-family:Bebas; font-weight:600; font-size:20px; color:#FFF; letter-spacing:1px; line-height:70px; position:relative; transition:all 0.3s; }
				#nav li > a:hover , #nav li > a.active { box-shadow:inset 0 -2px 0 #FFF; }
				
				#nav > ul li span {
					display:none;
					position:absolute;
					top:65px;
					left:-20px;
					width:260px;
					padding:20px;
					background-color:#FFF;
					box-shadow:0 10px 50px rgba(0, 0, 0, 0.2);
					text-align:left;
					}
					#nav li span::before { 
						content:"";
						border-bottom:3px solid transparent;
						border-left:8px solid transparent;
						border-right:8px solid transparent;
						height: 0;
						position: absolute;
						width:0;
						left:40px;
						top:-3px;
						border-bottom-color:#FFF;
					}
					#nav > ul li span > a { float:left; width:100%; padding:10px; position:relative; font-weight:600; transition:all 0.3s; border-bottom:1px solid rgba(0, 0, 0, 0.05); }
					#nav > ul li span > a:hover { background-color:#FFF; }
					#nav > ul li span > a:first-child { border-top:1px solid rgba(0, 0, 0, 0.05); }*/

	#nav { float:left; width:100%; padding-right:140px; position:relative; background-color:#4E535A; }
		/* #nav::before { content:""; position:absolute; top:0; left:0; bottom:0; width:36px; background:url(../images/nav-corner.png) no-repeat 0 0 / 36px auto; } */
		#nav > ul { float:right; }
			#nav > ul > li { position:relative; margin-right:50px; }
			#nav > ul > li:last-child { margin-right:0; }
				#nav > ul > li > a { float:left; font-family:'Bebas'; font-size:20px; color:#FFF; letter-spacing:1px; line-height:70px; position:relative; transition:all 0.3s; }
				#nav > ul > li > a:hover , #nav > ul > li > a.active { box-shadow:inset 0 -2px 0 #FFF; }
				
				#nav > ul > li > span {
					display:none;
					position:absolute;
					top:65px;
					left:-20px;
					width:250px;
					background-color:#FFF;
					box-shadow:0 10px 50px rgba(0, 0, 0, 0.2);
					text-align:left;
					}
					#nav li span::before { 
						content:"";
						border-bottom:3px solid transparent;
						border-left:8px solid transparent;
						border-right:8px solid transparent;
						height: 0;
						position: absolute;
						width:0;
						left:40px;
						top:-3px;
						border-bottom-color:#FFF;
					}
					
				#nav > ul > li.nav-multi-pro > span {
					display:none;
/*					position:absolute;
					z-index:1;
					top:65px;
					left:-20px;
					width:500px;*/
					min-height:250px;
					background-color:#FFF;
					box-shadow:0 10px 50px rgba(0, 0, 0, 0.2);
					text-align:left;
					}

					#nav > ul > li > span > a { float:left; width:100%; padding:10px; position:relative; font-weight:600; transition:all 0.3s; border-bottom:1px solid rgba(0, 0, 0, 0.05); }
					#nav > ul > li > span > a:hover { background-color:#FFF; }
					#nav > ul > li > span > a:first-child { border-top:1px solid rgba(0, 0, 0, 0.05); }
					
						.nav-in { float:left; width:100%; position:relative; overflow:hidden; box-shadow:0 10px 50px rgba(0, 0, 0, 0.2); text-align:left; display:flex; align-items:center; background-color:#FFF; }
						.nav-multi-pro .nav-in { float:left; width:100%; padding-right:240px; position:relative; overflow:hidden; box-shadow:0 10px 50px rgba(0, 0, 0, 0.2); text-align:left; display:flex; align-items:center; background-color:#FFF; }
						
						.nav-pic { position:absolute; top:0; bottom:0; right:0; width:240px; padding:25px; overflow:hidden; text-align:center; }
							.nav-pic img { width:100%; height:100%; object-fit:cover; }
						
						.nav-links { flex:1; padding:25px; display:flex; flex-flow:row wrap; }
						.nav-multi-pro .nav-links { flex:1; padding:25px 0 25px 25px; display:flex; flex-flow:row wrap; }
							.nav-links a { float:left; width:100%; padding:10px; position:relative; font-weight:600; transition:all 0.3s; border-bottom:1px solid rgba(0, 0, 0, 0.05); }
							.nav-links a:hover { background-color:#FFF; }
							.nav-links a:first-child { border-top:1px solid rgba(0, 0, 0, 0.05); }


.nav-multi-pro > span { left:calc(50% - 450px) !important; width:900px !important; }
.nav-multi-pro > span::before { left:calc(50% - 8px) !important; }

.nav-pro { float:left; width:100%; padding-left:300px; min-height:250px; position:relative; overflow:hidden; box-shadow:0 10px 50px rgba(0, 0, 0, 0.2); text-align:left; display:flex; align-items:stretch; background-color:#FFF; }
	.nav-pro-pic { position:absolute; top:0; bottom:0; left:0; width:300px; overflow:hidden; text-align:center; }
		.nav-pro-pic img { width:100%; height:100%; object-fit:cover; }
	
	.nav-pro-links { flex:1; padding:15px; display:flex; flex-flow:row wrap; }
		.nav-pro-links > section { float:left; width:100%; padding-right:50%; position:relative; }
			.nav-pro-links > section a { float:left; width:100%; padding:10px; font-weight:500; transition:all 0.4s; }
			.nav-pro-links > section a:hover { background-color:#F2F2F2; }
			.nav-pro-item { float:left; width:100%; }
				.nav-pro-sub { position:absolute; right:0; top:0; bottom:0; width:50%; overflow:hidden; overflow-y:auto; }
				.nav-pro-sub::-webkit-scrollbar { width:8px; }
				.nav-pro-sub::-webkit-scrollbar-track { background:#666; }
				.nav-pro-sub::-webkit-scrollbar-thumb { background-color: #FFF; border:3px solid #666; }
				.nav-pro-sub { scrollbar-color:#FFF #666; scrollbar-width:thin; }

.nav-opened { overflow:hidden; }

.connect-whatsapp , .call-us , .call-request { position:fixed; bottom:20px; right:20px; z-index:7999; }
	.connect-whatsapp a , .call-us a, .call-request a { float:right; width:48px; height:48px; border:2px solid #FFF; background-color:#27C34B; border-radius:50%; position:relative; text-indent:-9999px; box-shadow:0 0 15px rgba(0,0,0,0.2); }
	.connect-whatsapp a:hover , .call-us a:hover, .call-request a:hover { background-color:#20A23D; }
		.connect-whatsapp a::before , .call-us a::before, .call-request a::before { content:""; position:absolute; top:0; left:0; bottom:0; right:0; background:url(../images/icon-whatsapp.png) no-repeat center / 50px; }

.call-us { bottom:80px; }
	.call-us a { background-color:#4E535A; }
	.call-us a:hover { background-color:#2468A4; }
		.call-us a::before { background-image:url(../images/icon-call.png); background-size:20px; }
		
.call-request { bottom:140px; }
	.call-request a { background-color:#2469A4; }
	.call-request a:hover { background-color:#3376b0; }
		.call-request a::before { background-image:url(../images/icon-call-request.png); background-size:24px; }

/*	Finish TOP	*/

.controls { height:100%; }
	.slick-prev , .slick-next { 
		position:absolute;
		top:50%;
		width:40px; 
		height:40px; 
		margin-top:-20px;
		text-indent:-9999px; 
		cursor:pointer;
		z-index:1000;
		transition:all 0.3s;
		background:#FFF url(../images/arrow-left.png) no-repeat center / 20px auto;
		}
		
	.slick-prev { left:0; }
	.slick-next { right:0; background-image:url(../images/arrow-right.png); }
	
	.slick-prev:hover { width:50px; background-color:#2468A4; background-image:url(../images/arrow-white-left.png); }
	.slick-next:hover { width:50px; background-color:#2468A4; background-image:url(../images/arrow-white-right.png); }
	
	ul.slick-dots { position:absolute; text-align:center; right:0; left:0; bottom:0; padding:25px 0; z-index:1000; background-image:linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3)); }
		ul.slick-dots li { float:none; height:12px; margin:0 4px; display:inline-block; }
			ul.slick-dots li button { width:12px; height:12px; border-radius:50%; cursor:pointer; background-color:#FFF; transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.5; }
			ul.slick-dots li button:hover { opacity:1; }
			ul.slick-dots li.slick-active button { opacity:1; }

.slider-hero { float:left; width:100%; position:relative; z-index:700; overflow:hidden; }
	.slider-hero-item { float:left; width:100%; position:relative; overflow:hidden; }
		.slider-hero-item a { float:left; width:100%; position:relative; }
		
		.slider-hero-item picture { float:left; width:100%; position:relative; aspect-ratio:1920/720; overflow:hidden; }
			.slider-hero-item picture img { width:100%; height:100%; object-fit:cover; }

		.slider-hero-item img { transition:all 2.5s; height:auto; /*transform:scale(1.5, 1.5);*/ }
		.slider-hero .slick-current img { /*transform:scale(1);*/ }
		
		.slider-hero-title { position:absolute; top:0; bottom:0; left:0; right:0; z-index:10; }
			.slider-hero-title .wrap { height:100%; }
			.slider-hero-title section { float:left; width:42%; padding:62px 80px 65px 80px; position:relative; background-color:rgba(255,255,255,0.85); transition:all 0.3s; }
			.slider-hero-title section:hover { background-color:#FFF; }
				.slider-hero-title section h2 { float:left; width:100%; position:relative; font-family:'Bebas'; font-size:53px; color:#2469A4; line-height:60px; }
					.slider-hero-title section h2::before { content:""; position:absolute; top:-5px; bottom:0; left:-80px; width:4px; background-color:#2469A4; border-radius:0 4px 4px 0; }
				.slider-hero-title section span { float:left; width:100%; margin-top:18px; font-size:16px; font-weight:500; line-height:30px; }
	
	.slider-hero ul.slick-dots { right:calc(50% - 120px); }

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

.hero-links-wrap { float:left; width:100%; margin-top:-120px; }
	.hero-links { float:right; width:50%; position:relative; z-index:800; }
		.hero-links ul { width:100%; }
			.hero-links li { width:50%; }
				.hero-links li a { float:left; width:100%; height:120px; padding:0 40px; background-color:#FFF; display:flex; align-items:center; transition:all 0.3s; }
				.hero-links li:first-child a { background-color:#E0E1E5; }
				.hero-links li a:hover { box-shadow:inset 0 -2px 0 #2469A4; }
					.hero-links li a section { float:left; width:100%; }
						.hero-links li a strong { float:left; width:100%; font-family:Bebas; font-size:20px; letter-spacing:1px; transition:all 0.3s; }
						.hero-links li a:hover strong { letter-spacing:2px; }
						.hero-links li a small { float:left; width:100%; margin-top:13px; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; }
.mask-top { top:0; bottom:auto; }
	.mask > img , .mask-top > img { float:left; width:100%; }

/*	Start FOOTER	*/

.footer-wrap { float:left; width:100%; position:relative; background-color:#4F535C; color:#FFF; letter-spacing:0.5px; }
	.footer-wrap::before { content:""; position:absolute; top:5%; bottom:0; left:0; right:0; background:url(../images/bg-footer.jpg) no-repeat right bottom / auto 100%; }
	
	.footer-wrap a { color:#FFF; }
	.footer-wrap a:hover { text-decoration:underline; }
	
	.footer { float:left; width:100%; padding-top:80px; position:relative; }
		
		.footer-grau { float:left; width:30%; padding-right:40px; }
		
			.footer-logo { float:left; width:100%; }
				.footer-logo img { float:left; height:40px; }
				.footer-logo section { float:left; width:100%; margin:26px 0 24px 0; font-size:12px; }
			
			.footer-social { float:left; width:100%; }
				.footer-social li { padding-right:20px; }
				.footer-social li:last-child { padding-right:0; }
					.footer-social li a { float:left; background-color:#8B9099; border-radius:50%; transition:all 0.25s; }
					.footer-social li a:hover { background-color:#FFF; }
						.footer-social li a img { float:left; width:50px; padding:4px; filter:invert(100%) sepia(100%) saturate(100%) hue-rotate(220deg) brightness(1000%) contrast(100%); }
						.footer-social li a:hover img { filter:none; }
		
		.footer .inner-10 { display:flex; flex-flow:row wrap; }
		
		.footer-links-wrap { float:right; width:70%; padding-left:40px; }
		
		.footer-title { float:left; width:100%; padding:13px 0 18px 0; font-family:Bebas; font-size:20px; font-weight:700; color:#8B9099; letter-spacing:1px; }
		.footer-links { float:left; width:33.33334%; padding:0 10px; }
			.footer-links section { float:left; width:100%; }
				.footer-links ul { width:100%; }
					.footer-links li { width:100%; }
						.footer-links li a { float:left; width:100%; padding:5px 0; }
		
	.copyright { float:left; width:100%; padding:50px 0; margin-top:50px; position:relative; z-index:10; font-size:12px; color:rgba(255,255,255,0.6); box-shadow:inset 0 1px 0 rgba(255,255,255,0.05); }
		.copyright .left { float:left; width:calc(100% - 240px); }
			.copyright .left section { float:left; width:100%; margin-bottom:10px; }
			.copyright .left section:last-child { margin-bottom:0; }
				.copyright .left section a { float:left; }
				.copyright .left section i { float:left; margin:0 20px; opacity:0.5; }
		.copyright .right { float:right; }
			.copyright .right a { display:inline-block; font-weight:600; }
				.copyright .right a img { float:right; height:20px; margin-left:7px; }
	
/*	Start CONTENT	*/

.page-title { float:left; width:100%; padding:79px 0 51px 0; position:relative; font-family:Bebas; font-size:47px; line-height:50px; z-index:30; }
.page-title-slim { padding-top:19px; }
.page-title-white { color:#FFF; }
.page-title-center { text-align:center; }
	.page-title::before { content:""; position:absolute; bottom:32px; left:-20px; width:60px; height:2px; background-color:#8B9099; }
	.page-title-center::before { left:calc(50% - 30px); }
	.page-title section { display:block; font-family:Manrope; font-size:32px; font-weight:700; line-height:40px; }

.sub-title { float:left; width:100%; margin:9px 0 21px 0; position:relative; font-size:23px; font-weight:700; color:#000; line-height:30px; letter-spacing:-0.3px; z-index:20; }

.page-about { float:left; width:100%; margin:-10px 0 30px 0; position:relative; font-size:16px; color:#151515; line-height:30px; z-index:20; }
.page-about-white { color:#FFF; }
	.page-about a { font-weight:700; }
	/*.page-about b , .page-about strong { color:#fff; }*/
	
	.page-about ul { float:none; display:block; }
		.page-about li { float:none; display:block; padding-left:30px; margin-bottom:15px; font-weight:700; line-height:22px; background:url(../images/icon-ok.png) no-repeat 0 4px / 16px auto; }

.page-photo { float:left; width:50%; padding:5px 30px 20px 0; }
	.page-photo img { float:left; width:100%; border-radius:8px; }

.hero-text { float:left; width:100%; position:relative; font-size:21px; /* font-weight:500; */ color:#4D5259; line-height:31px; }

.inner-40 { margin:0 -40px; }
.inner-30 { margin:0 -30px; }
.inner-20 { margin:0 -20px; }
.inner-15 { margin:0 -15px; }
.inner-10 { margin:0 -10px; }
.inner-6 { margin:0 -6px; }
.inner-5 { margin:0 -5px; }
.inner-2 { margin:0 -2px; }
.inner-0 { margin:0 0 !important; }

.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; }

.block-grey { background-color:#F7F7F9; }
.block-grey-2 { background-color:#EEEEF2; }
.block-dark { background-color:#4E535A; }
.block-border { box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.06); }

.grau-solutions { float:left; width:100%; position:relative; overflow:hidden; }
	.grau-solutions ul { width:100%; }
	.grau-solutions ul.center { display: flex; flex-wrap: wrap; justify-content: center; }
		.grau-solutions li { width:33.33334%; padding:0 40px; margin-bottom:60px; }
			.grau-solutions li a { float:left; width:100%; position:relative; }
				.grau-solutions li a picture { float:left; width:100%; position:relative; overflow:hidden; }
					.grau-solutions li a picture::before { content:""; position:absolute; top:0; left:-30px; width:60px; height:60px; background-color:#2469A4; transform:skewX(-45deg); opacity:0.5; transition:all 0.3s; z-index:10; }
					.grau-solutions li a:hover picture::before { left:-60px; opacity:0; }
					.grau-solutions li a picture::after { content:""; position:absolute; bottom:0; right:-60px; width:120px; height:120px; background-color:#2469A4; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
					.grau-solutions li a:hover picture::after { right:-120px; background-color:#F7F7F9; }
					.solution-list li a:hover picture::after { background-color:#FFF; }
					.grau-solutions li a picture img { float:left; width:100%; height:auto; transform-origin:center bottom; transition:all 1s; }
					.grau-solutions li a:hover picture img { transform:scale(1.07, 1.07); }
				.grau-solutions li a strong { float:left; width:100%; position:relative; margin:36px 0 17px 0; font-family:Bebas; font-size:27px; color:#2468A4; letter-spacing:0.5px; line-height:30px; z-index:10; transition:all 0.3s; }
					.grau-solutions li a strong::after { content:""; position:absolute; top:0; bottom:0; right:0; width:20px; background:url(../images/arrow-right.png) no-repeat center / 100% auto; transition:all 0.3s; }
					.grau-solutions li a:hover strong::after { right:20px; }
				.grau-solutions li a span { float:left; width:100%; font-size:16px; color:#4C5259; line-height:25px; }

.hero-block { float:left; width:100%; padding:20px 0 50px 0; position:relative; background-color:#4E535A; z-index:3; }
	.hero-block-photo { position:absolute; top:0; bottom:0; right:0; width:50%; background-size:cover; background-position:center; background-repeat:no-repeat; }
	.hero-block-content { float:left; width:calc(50% - 120px); position:relative; color:#FFF; }

.link-all { float:left; width:100%; position:relative; text-align:center; }
	.link-all a { display:inline-block; height:40px; padding:0 30px; position:relative; font-family:Bebas; font-size:17px; color:#8B9099; letter-spacing:1px; line-height:40px; overflow:hidden; transition:all 0.6s; }
	.link-all-big a { height:50px; line-height:50px; }
	.link-all a:hover { background-color:#F3F3F5; color:#2468A4; }
		.link-all a::before { content:""; position:absolute; top:0; bottom:0; right:-10px; left:50%; background-color:#EDEDED; transition:all 0.3s; transform:skew(-25deg); }
		.link-all a:hover::before { left:-10px; right:50%; background-color:#EBEBEE; }
		.link-all a section { float:left; position:relative; }
	
	.link-all-dark a { color:#FFF !important; background-color:#2469A4 !important; }
	.link-all-black a { background-color:#000 !important; }
		.link-all-dark a::before { background-color:rgba(255,255,255,0.07); }
		.link-all-dark a:hover::before { background-color:rgba(255,255,255,0.14); }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.slider-partners.dark{ background-color: #4E535A !important; }
.slider-partners { float:left; width:100%; margin-bottom:30px; position:relative; background-color:#FFF; }
	.slider-partners .slick-list { overflow:hidden; }
	.slider-partners::after { content:""; position:absolute; top:0; bottom:0; left:calc(50% - 1px); width:1px; background-color:rgba(0,0,0,0.06); }
	
	.slider-partner-item { float:left; width:100%; position:relative; }
		.slider-partner-item picture { position:absolute; top:0; bottom:0; left:0; width:50%; background-size:cover; background-repeat:no-repeat; background-position:center; }
		.slider-partner-content { float:right; width:50%; padding:80px; position:relative; }
			.slider-partner-title { float:left; width:100%; margin:-5px 0 25px 0; font-family:Bebas; font-size:30px; color:#2469A4; line-height:30px; letter-spacing:0.5px; }
	
	.slider-partners ul.slick-dots { bottom:-30px; background:none; padding:0; }

.news-list { float:left; width:100%; overflow:hidden; }
	.news-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.news-list li { width:25%; padding:0 20px; margin-bottom:38px; }
			.news-list li a { float:left; width:100%; padding-bottom:2px; }
			
			.news-list li picture { float:left; width:100%; position:relative; overflow:hidden; }
				.news-list li picture img { float:left; width:100%; height:auto; transform-origin:center; transition:all 1s; }
				.news-list li a:hover picture img { transform:scale(1.08, 1.08); }
				.news-list li a picture::after { content:""; position:absolute; bottom:0; right:-6px; width:12px; height:12px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.3s; z-index:10; }
				.news-list li a:hover picture::after { right:-12px; width:24px; height:24px; }
			
			.news-list li a span { float:left; padding:24px 0 16px 0; color:#999; position:relative; font-family:Bebas; font-size:17px; font-weight:500; letter-spacing:2px; }
				.news-list li a span::after { content:""; float:right; width:30px; height:2px; margin:9px 0 0 20px; background-color:#2468A4; opacity:0.2; transition:all 0.5s; }
				.news-list li a:hover span::before { width:50px; }
			.news-list li a strong { float:left; width:100%; font-weight:600; font-size:18px; line-height:30px; overflow:hidden; }

.news-wrap { float:left; width:100%; position:relative; }
	
	.news-content { float:left; width:calc(100% - 280px); margin-top:0; position:relative; }
		.news-photo { float:left; width:100%; margin-bottom:40px; position:relative; overflow:hidden; }
			.news-photo img { width:100%; height:auto; }
			.news-photo::after , .page-photo picture::after , .page-photo-wide picture::after { content:""; position:absolute; bottom:0; right:-7px; width:14px; height:14px; background-color:#FFF; transform:skewX(-45deg); }
			.news-video::after { display:none; }
			.news-video iframe { position:absolute; top:0; left:0; }
		.news-text { margin-top:-10px; }
			.news-text img { width:100%; }

	.news-sidebar { float:right; width:240px; position:relative; }

.news-info { float:left; width:100%; padding:15px 0; margin-bottom:20px; position:relative; border-top:1px solid rgba(0,0,0,0.06); border-bottom:1px solid rgba(0,0,0,0.06); }
	.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; border:1px solid rgba(0,0,0,0.1); background-color:#EEEEF2; transition:all 0.25s; border-radius:10%; }
			
			.page-share li a.share-whatsapp { background-color:#27C34B; }
			.page-share li a:hover { border-color:rgba(0,0,0,0.3); }
				.page-share li a img { float:left; height:44px; padding:2px; margin:-1px; }

.blog-list { float:left; width:100%; position:relative; box-shadow:inset 0 1px 0 rgba(0,0,0,0.06),inset 0 -1px 0 rgba(0,0,0,0.06); overflow:hidden; }
	.blog-list::after { content:""; position:absolute; top:0; bottom:0; right:0; width:1px; background-color:#000; opacity:0.06; }
	.blog-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.blog-list ul > li { width:25%; box-shadow:0 1px 0 rgba(0,0,0,0.06); }

.blog-item { float:left; width:100%; height:45vh; max-height:400px; min-height:300px; position:relative; overflow:hidden; }
.blog-item:hover { color:#FFF; }
	
	.blog-item::before { content:""; position:absolute; top:0; bottom:0; left:0; width:1px; background-color:#000; opacity:0.06; }
	
	.blog-item picture { position:absolute; top:0; bottom:0; left:0; right:0; transform:scale(1.25,1.25); transition:all 1s; background-size:cover; background-position:center; background-repeat:no-repeat; opacity:0.2; }
	.blog-item:hover picture { transform:scale(1,1); opacity:1; }
		.blog-item picture::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; /*background-color:#FFF;*/ transition:all 0.7s; }
		.blog-item:hover picture::before { bottom:100%; }
		.blog-item picture::after { content:""; position:absolute; top:50%; left:50%; width:600px; height:600px; margin:-300px 0 0 -300px; background-color:#FFF; opacity:0; transition:all 1.5s; border-radius:50%; transform:scale(0,0); }
		.blog-item:hover picture::after { background-color:#2469A4; opacity:0.8; transform:scale(1,1); }
	
	.blog-item strong { position:absolute; left:0; right:0; top:0; padding:33px 40px 22px 40px; font-size:18px; font-weight:500; line-height:30px; z-index:10; transition:all 0.5s; }
	
	.blog-item section { position:absolute; bottom:0; left:0; right:0; padding:20px 40px; font-size:13px; font-weight:500; letter-spacing:1px; display:flex; align-items:center; z-index:10; }
		.blog-item section::before { content:""; position:absolute; top:0; left:40px; right:0; height:1px; background-color:#000; opacity:0.06; transition:all 0.3s; }
		.blog-item:hover section::before { background-color:#FFF; opacity:0.3; }
		
		.blog-item section i { float:left; font-family:Bebas; font-size:50px; font-weight:300; color:#2469A4; line-height:60px; transition:all 0.3s; }
		.blog-item:hover section i { color:#FFF; }
		.blog-item section span { float:right; margin-left:auto; font-weight:600; text-align:right; transition:all 0.3s; }

.item { float:left; width:33.33334%; padding:0 20px; margin-bottom:80px; }

.service-item { float:left; width:100%; }
	.service-item a { float:left; width:100%; padding-bottom:2px; }
		.service-item picture { float:left; width:100%; position:relative; overflow:hidden; }
			.service-item picture img { float:left; width:100%; height:auto; transform-origin:center bottom; transition:all 1s; }
			.service-item:hover picture img { transform:scale(1.07, 1.07); }
		.service-item a strong { float:left; width:100%; margin:22px 0 29px 0; font-weight:700; font-size:20px; line-height:25px; overflow:hidden; }
		.service-item a span { float:left; width:100%; color:#999; position:relative; letter-spacing:2px; transition:all 0.3s; }
		.service-item a:hover span { letter-spacing:3px; }
			.service-item a span::before { content:""; position:absolute; top:-16px; left:0; width:40px; height:2px; background-color:#CCC; transition:all 0.3s; }
			.service-item a:hover span::before { width:80px; background-color:#2469A4; }

.tab-out { float:left; width:100%; height:60px; position:relative; margin-bottom:-60px; z-index:800; }
	.tab-wrap { float:left; width:100% !important; position:relative; z-index:90; overflow:hidden; background-color:#151515; box-shadow:0 0 10px rgba(0, 0, 0, 0.07); transition:all 0.3s; }
		.tab { float:left; height:60px; text-align:center; overflow:hidden; }
		.tab-alt { display: flex; float: none; justify-content: center; }
			.tab li a { float:left; padding:0 30px; font-family:Bebas; font-weight:600; font-size:17px; color:#CCC; line-height:60px; transition:all 0.25s; }
			.tab li a:hover { background-color:#000; box-shadow:inset 0 -2px 0 #FFF; color:#FFF; }
			/* .tab li a.active { background-color:#000; box-shadow:inset 0 -2px 0 #FFF; color:#FFF; } */
	
.block-two { width:calc(50% - 60px); }

.simple-list { float:left; width:100%; margin-bottom:20px; font-weight:500; font-size:16px; line-height:30px; }
	.simple-list ul { width:100%; display:flex; flex-flow:row wrap; }
		.simple-list li { width:100%; padding:0 0 10px 30px; position:relative; display:inline-block; vertical-align:top; background:url(../images/icon-ok.png) no-repeat 0 5px / 20px auto; }

.gallery { float:left; width:100%; margin-bottom:20px; position:relative; overflow:hidden; }
	.gallery ul { width:100%;  }
		.gallery li { width:33.33334%; padding:0 2px; margin-bottom:4px; position:relative; }
		.gallery li.subpage-gallery { width:20%; padding:0 2px; margin-bottom:4px; position:relative; }
			.gallery li a { float:left; width:100%; position:relative; overflow:hidden; color:#FFF; border-radius:4px; }
				.gallery li a::after { content:""; position:absolute; top:calc(50% - 20px); left:calc(50% - 20px); width:40px; height:40px; background:rgba(0,0,0,0.5) url(../images/icon-zoom.png) no-repeat center / 16px; transition:all 0.3s; z-index:10; border-radius:50%; }
				.gallery li a:hover::after { background-color:#2469A4; }
				.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; transform-origin:center; transition:all 1s; }
					.gallery li a img { float:left; width:100%; }
					.gallery li a:hover picture { transform:scale(1.1, 1.1); }
						
					.gallery li a::after { opacity:1; }
					
.col-2 { float:left; width:50%; }
.col-3 { float:left; width:33.33334%; }
.col-25 { float:left; width:25%; }
.col-75 { float:left; width:75%; }

.grau-team { float:left; width:100%; margin-bottom:-44px; position:relative; z-index:100; line-height:30px; overflow:hidden; }
	.grau-team ul { width:100%; display:flex; flex-flow:row wrap; }
		.grau-team li { width:50%; padding:0 30px; margin-bottom:30px; position:relative; z-index:1; }
		.grau-team li:hover { z-index:2; }
			
			.grau-team li article { float:left; width:100%; position:relative; padding:40px; overflow:hidden; }
				.grau-team li article::before { content:""; position:absolute; top:-100px; left:0; right:0; height:275px; background-image:linear-gradient(180deg,#F3F3F3,#F9F9F9); transform:skewY(-9deg); }
			
			.grau-team li picture { float:left; width:196px; position:relative; z-index:10; }
				.grau-team li picture img { float:left; width:200px; max-width:100%; height:auto; }
				.grau-team li picture::after { content:""; position:absolute; bottom:0; right:-6px; width:12px; height:12px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
			.grau-team li section { float:right; width:calc(100% - 200px); padding-left:40px; position:relative; z-index:10; }
				.grau-team li section strong { float:left; width:100%; margin-top:16px; position:relative; font-family:Bebas; font-size:27px; font-weight:600; color:#2469A4; letter-spacing:1px; }
				.grau-team li section span { float:left; width:100%; padding:9px 0 20px 0; position:relative; font-size:16px; font-weight:600; }
					.grau-team li section span::after { content:""; position:absolute; left:0; bottom:5px; width:40px; height:2px; background-color:#4F535C; opacity:0.3; }
				.grau-team li section small { float:left; width:100%; margin-top:10px; font-size:14px; color:#666; }

/*	Start SUB PAGES	*/

.sub-hero { float:left; width:100%; height:240px; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; color:#FFF; z-index:1000; }
	.sub-hero::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(145deg,#000,rgba(0,0,0,0.0)); opacity:0.2; }
	.sub-hero .wrap { height:100%; }
	.sub-hero-title { position:absolute; right:0; bottom:-60px; width:50%; padding:50px 80px; font-size:36px; font-weight:800; line-height:40px; background-color:#4E535A; z-index:30; overflow:hidden; }
		.sub-hero-title::before { content:""; position:absolute; top:40px; bottom:40px; left:0; width:4px; border-radius:0 4px 4px 0; background-color:#FFF; }
		.sub-hero-title::after , .service-item picture::after { content:""; position:absolute; bottom:0; right:-8px; width:16px; height:16px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
		
.breadcrumb { float:left; width:100%; height:60px; margin-bottom:-20px; position:relative; z-index:100; font-size:12px; font-weight:500; line-height:60px; box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.06); overflow:hidden; }
	.breadcrumb section { float:left; width:calc(50% - 20px); height:60px; position:relative; overflow:hidden; white-space:nowrap; }
		.breadcrumb section::after { content:""; position:absolute; top:0; bottom:1px; right:0; width:100px; background-image:linear-gradient(90deg,rgba(255,255,255,0.0),#FFF); }
		.breadcrumb a { transition:all 0.3s; }
		.breadcrumb a:hover { text-decoration:underline; }
			.breadcrumb a img { float:left; height:60px; padding:22px 0; }
		.breadcrumb i { margin:0 10px; opacity:0.3; }
		.breadcrumb strong { color:#000; }

.grau-stats { float:left; width:100%; margin-top:-25px; position:relative; z-index:100; font-size:16px; font-weight:600; color:#121E46; }
	.grau-stats ul { width:100%; overflow:hidden; display:flex; flex-flow:row wrap; }
		.grau-stats li { padding:0 20px; margin:30px 0; position:relative; flex:1; flex-basis:50%; }
			.grau-stats li strong { float:left; width:100%; font-family:Bebas; font-size:90px; font-weight:400; line-height:90px; color:#2468A4; position:relative; }
			.grau-stats li span { float:left; width:100%; padding-top:19px; margin-top:12px; box-shadow:inset 0 2px 0 0 #F3F3F3; }

.promo-wrap { float:left; width:100%; }
.promo { float:left; width:100%; position:relative; }
	.promo > ul { width:100%; }
		.promo > ul > li { display:flex; align-items:center; margin-bottom:100px; }
		.promo > ul > li:last-child { margin-bottom:50px; }
			
			.promo > ul > li picture { float:left; width:calc(50% - 60px); position:relative; }
				.promo > ul > li picture figure { float:left; width:100%; padding:0; margin:0; position:relative; overflow:hidden; }
				.promo > ul > li picture figure::before { content:""; position:absolute; top:0; left:-30px; width:60px; height:60px; background-color:#2469A4; transform:skewX(-45deg); opacity:0.5; transition:all 0.3s; z-index:10; }
				.promo > ul > li picture figure::after { content:""; position:absolute; bottom:0; right:-60px; width:120px; height:120px; background-color:#2469A4; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
				.promo > ul > li picture img { width:100%; height:auto; position:relative; }
			
			.promo-content { float:right; width:calc(50% - 60px); margin-left:auto; position:relative; }

			.promo > ul > li:nth-child(even) picture { float:right; margin-left:auto; }
			.promo > ul > li:nth-child(even) .promo-content { float:left; margin-left:0; text-align:left; }

.partners { float:left; width:100%; text-align:center; }
	.partners ul { width:100%; display:flex; flex-flow:row wrap; }
		.partners li { width:33.3333%; padding:0 20px; margin-bottom:40px; }
			.partners li section { float:left; width:100%; height:100%; padding:24px; position:relative; border:1px solid #E5E5E5; border-radius:3px; transition:all 0.3s; }
			.partners li section:hover { border-color:#4E535A; }
				.partners li section::before , .partners li section::after { content:""; position:absolute; bottom:-1px; right:-5px; width:12px; height:12px; background-color:#BBB; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
				.partners li section::after { right:-6px; height:13px; background-color:#FFF; }
				.partners li section:hover::before { background-color:#4E535A; }
				.partners li section img { width:100%; max-width:200px; max-height:200px; margin-bottom:15px; display:inline-block; }
				.partners li section strong { float:left; width:100%; padding:25px 0 10px 0; position:relative; font-size:16px; }
					.partners li section strong::before { content:""; position:absolute; top:0; left:50%; width:40px; height:2px; margin-left:-20px; background-color:#2469A4; opacity:0.3; transition:all 0.3s; }
					.partners li section:hover strong::before { width:80px; margin-left:-40px; opacity:1; }

.testimonials { float:left; width:100%; font-weight:500; }
	.testimonials ul { width:100%; border-top:1px solid #EEE; }
		.testimonials li { width:100%; padding:40px 0; border-bottom:1px solid #EEE; display:flex; align-items:center; }
			.owner { float:left; width:30%; }
				.owner section { float:left; width:100%; display:flex; align-items:center; }
					.owner section picture { float:left; width:100px; }
						.owner section picture img { width:100%; height:auto; border-radius:50%; }
					.owner section article { float:right; width:calc(100% - 120px); margin-left:auto; }
						.owner section article strong { display:block; }
						.owner section article small { display:block; margin-top:3px; font-size:12px; color:#999; line-height:15px; }
			.comment { float:left; width:70%; padding-left:40px; font-size:20px; line-height:40px; }


/*	Start PRODUCT DETAIL	*/

.slider-product-hero { float:left; width:100%; position:relative; overflow:hidden; }
	.slider-product-hero::after { content:""; position:absolute; bottom:0; right:-12px; width:24px; height:24px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.4s; z-index:900; }

	.slider-product { float:left; width:100%; position:relative; z-index:700; overflow:hidden; }
		.slider-product-item { float:left; width:100%; position:relative; overflow:hidden; }
			.slider-product-item a , .slider-product-item img { float:left; width:100%; position:relative; }
			
			.slider-product-item img { transition:all 2.5s; transform:scale(1.5, 1.5); }
			.slider-product .slick-current img { transform:scale(1); }
			
	.slider-product-title { position:absolute; bottom:80px; left:0; right:0; }
		.slider-product-title .wrap { height:100%; }
		.slider-product-title section { float:left; width:50%; padding:41px 60px 45px 60px; position:relative; background-color:rgba(255,255,255,0.9); z-index:800; }
			.slider-product-title section h2 { float:left; width:100%; position:relative; font-family:Bebas; font-size:40px; font-weight:700; color:#2469A4; line-height:50px; }
				.slider-product-title section h2::before { content:""; position:absolute; top:-5px; bottom:0; left:-60px; width:4px; background-color:#2469A4; border-radius:0 4px 4px 0; }
			.slider-product-title section span { float:left; width:100%; margin-top:9px; font-size:16px; font-weight:500; line-height:30px; }

.product-hero-specs { float:left; width:100%; margin:30px 0 10px 0; position:relative; }
	.product-hero-specs ul { width:100%; display:flex; flex-flow:row wrap; }
		.product-hero-specs li { padding:0 30px; flex:1; flex-basis:25%; }
			.product-hero-specs li section { float:left; width:100%; height:100%; padding:20px 0; position:relative; display:flex; align-items:center; background-color:#F7F7F9; overflow:hidden; }
				.product-hero-specs li section::after { content:""; position:absolute; bottom:0; right:-8px; width:16px; height:16px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
				.product-hero-specs li section i { float:left; width:120px; font-family:Bebas; font-size:50px; color:#2468A4; line-height:60px; text-align:center; box-shadow:inset -2px 0 0 rgba(0,0,0,0.06); }
				.product-hero-specs li section article { float:left; width:calc(100% - 120px); padding:0 40px; font-weight:500; }

.product-intro { float:left; width:100%; margin-bottom:20px; position:relative; display:flex; align-items:center; }
	.product-intro-photo { float:left; width:72%; }
		.product-intro-photo img { width:100%; }
	.product-intro-content { float:right; width:calc(28% - 60px); margin-left:auto; }

.product-sub-items { float:left; width:100%; position:relative; text-align:center; }
	.product-sub-items ul { width:100%; display:flex; flex-flow:row wrap; }
		.product-sub-items li { padding:0 30px; flex:1; flex-basis:33.33334%; }
			
			.product-sub-item { float:left; width:100%; height:100%; position:relative; background-color:#FFF; }
				
				.product-sub-item-photo { float:left; width:100%; /*padding:10px;*/ position:relative; background-image:linear-gradient(180deg,#2469A4,#FFF); box-shadow:0 2px 0 #2469A4; }
					.product-sub-item-photo picture { float:left; width:100%; position:relative; background-color:#FFF; }
						.product-sub-item-photo picture img { width:100%; max-width:420px; height:auto; }
				
				.product-sub-item-content { float:left; width:100%; padding:30px; position:relative; }
					.product-sub-item-content h3 { display:block; margin:9px 0 16px 0; font-size:23px; font-weight:600; color:#2467A4; line-height:30px; }
					.product-sub-item-content small { margin-bottom:10px; display:block; font-size:16px; }
					
				.product-sub-item-link { float:left; width:100%; position:relative; }
					.product-sub-item-link a { float:left; width:100%; position:relative; font-family:Bebas; font-size:17px; color:#2469A4; letter-spacing:2px; line-height:50px; box-shadow:inset 0 1px 0 rgba(0,0,0,0.06); transition:all 0.3s; }
						.product-sub-item-link a:hover { background-color:#2469A4; color:#FFF; }
						.product-sub-item-link a::after { content:""; position:absolute; top:0; bottom:0; right:0; width:50px; background:url(../images/arrow-right.png) no-repeat center / 20px auto; transition:all 0.3s; }
						.product-sub-item-link a:hover::after { width:40px; background-image:url(../images/arrow-white-right.png); }

						.product-specs-table { float:left; width:100%; font-weight:500; overflow-x: scroll; }
		.product-specs-table table { float:left; width:100%; border-top:1px solid #EEE; }
			.product-specs-table table tr { border-bottom:1px solid #EEE; }
			.product-specs-table table tr:nth-child(odd) { background-color:#F8F8F8; }
				.product-specs-table table tr td { padding:10px 15px; vertical-align:middle; }
				.product-specs-table table tr th { padding:10px 15px; text-align:left; color:#000; }
					.product-specs-table table tr td strong , .product-specs-table table tr td a { font-weight:600; color:#000; }

.fs-14 { font-size:14px !important; }

.get-in-touch-wrap { float:left; width:100%; position:relative; }
	.get-in-touch-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-color:#F7F7F9; }
	.get-in-touch { float:left; width:100%; padding:40px 80px; position:relative; /*background-image:linear-gradient(125deg,#4E535A,#8B9099);*/ background-color: #4e535a; display:flex; align-items:center; overflow:hidden; }
		.get-in-touch::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-lines.png) no-repeat right center / auto 75%; opacity:0.1; }
		.get-in-touch::after { content:""; position:absolute; bottom:0; right:-8px; width:16px; height:16px; background-color:#FFF; transform:skewX(-45deg); transition:all 0.4s; z-index:10; }
		.get-in-touch-content { float:left; width:calc(100% - 260px); position:relative; }
			.get-in-touch-content .page-about { margin-bottom:20px; }
		.get-in-touch-cta { float:right; width:200px; margin-left:auto; position:relative; }

/*	Start CONTACT	*/
	
.accordion { float:left; width:100%; font-size:16px; border-bottom:1px solid #E5E6EA; }
	
	.accordion-section-title { float:left; width:100%; padding:30px; position:relative; font-size:18px; font-weight:600; color:#4E535A; border-top:1px solid #E5E6EA; z-index:10; }
	.accordion-section-title:hover { color:#000; }
	.accordion-section-title.active { color:#000 !important; }
		.accordion-section-title::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 100% auto; transition:all 0.3s; }
		.accordion-section-title.active::after { transform:rotate(180deg); }
		.accordion-section-title section { float:left; }

	.accordion-section-content { float:left; width:100%; padding:0 30px 40px 30px; position:relative; display:none; }
		.accordion-section-text { float:left; width:100%; font-size:16px; line-height:30px; }


.contact-info-wrap { float:right; width:50%; position:relative; }
	.contact-info { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }
		.contact-info section { float:left; width:100%; padding-left:40px; margin-bottom:13px; position:relative; font-weight:500; font-size:16px; line-height:30px; }
		.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:-2px 0 -1px 0; font-size:12px; font-weight:700; letter-spacing:2px; color:#636672; }
			.contact-info section article { display:block; margin-bottom:10px; }

.contact-info-wrap .accordion-section-content { margin:5px 0 15px 0; }
.contact-info-wrap .accordion-section-content::before { display:none; }

.contact-form { float:left; width:calc(50% - 80px); position:relative; }
.page-title-contact { display:none; }
	
	.form-item { float:left; width:50%; padding:0 15px 30px 15px; position:relative; }
	.form-item-text { margin-top:-10px; color:#666; }
	.form-item:last-child { padding-bottom:0; }
		.form-item label { float:left; width:100%; }
		.form-item section { float:left; width:100%; font-size:17px; font-weight:600; margin-bottom:-10px; }
		.form-item a { text-decoration:underline; font-weight:600; }
		
		.security-code img { float:left; width:120px; height:50px; margin-right:10px; padding:3px; border:1px solid #999; background-color:#FFF; border-radius:4px; 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:4px; box-shadow:5px 5px 0 rgba(0,0,0,0.03); }
		.security-code a:hover.refresh { background-color:#EEE; }

.contact-map { float:left; width:100%; height:320px; padding:4px; position:relative; border:1px solid #4E535A; border-radius:3px; }
	
	.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }

		.upload span {
			float:left;
			width:100%;
			height:100%;
			position:relative;
			color: #FFF;
			font-weight:500;
			font-size:16px;
			line-height:50px;
			z-index:2;
			background-color:#B0BAC4;
		}
		.upload:hover span { background-color:#E85353; }

		.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:40px; font-weight:600; font-size:13px; line-height:45px; text-align:center; }
	.pages ul { width:100%; }
		.pages li { float:none; display:inline-block; padding:0 5px; }
			.pages li a { float:left; min-width:44px; height:44px; padding:0 10px; color:#999; transition:all 0.3s; border-radius:4px; }
			.pages li a:hover { background-color:#F2F2F7; }
			.pages li a.current { color:#FFF; background-color:#4F535C; }
				
.cookies-wrap { position:fixed; right:20px; bottom:0; width:400px; z-index:7950; display:none; }
	.cookies { float:left; width:100%; padding:25px 30px 20px 30px; position:relative; background-color:rgba(78,83,90, 0.75); font-size:12px; color:#FFF; border-bottom:2px solid #FFF; backdrop-filter:blur(13px); }
		.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; text-indent:-9999px; background:#000 url(../images/icon-close.png) no-repeat center / 20px; cursor:pointer; border:2px solid #FFF; }
			.cookies-close span:hover { background-size:18px; background-color:#666; }


@media only screen and (max-width:1600px) {

.wrap { width:1320px; }

}


@media only screen and (max-width:1260px) {

.tab-wrap .wrap { padding:0; }
.tab-wrap::after { content:""; position:absolute; top:0; bottom:0; right:0; width:40px; background-image:linear-gradient(90deg,rgba(0, 0, 0, 0.0),#151515,#151515); z-index:100; }
.tab-out { margin-bottom:0; }
.tab-out .is-sticky { margin-top:-10px; }
.tab { width:100%; height:60px; position:relative; white-space:nowrap; overflow-x:scroll; overflow-y:hidden; }
	.tab ul { float:none; height:60px; display:block; }
		.tab li { float:none; display:inline-block; }
		.tab li:last-child { padding-right:40px; }
			.tab li a { padding:0 25px; }

}


@media only screen and (max-width:1440px) {

.wrap { width:1200px; }

.top-150 { padding-top:100px; }
.top-100 { padding-top:75px; }
.top-50 { padding-top:35px; }
.bottom-150 { padding-bottom:100px; }
.bottom-100 { padding-bottom:75px; }
.bottom-50 { padding-bottom:35px; }

.slider-hero-title section { padding:40px 50px; }
.slider-hero-title section h2 , .slider-product-title section h2 { font-size:36px; line-height:40px; }
.slider-hero-title section h2::before { left:-50px; }
.slider-hero-title section span { margin-top:8px; }

.hero-links-wrap { margin-top:-100px; }
.hero-links li a { height:100px; padding:0 30px; }
.hero-links li a small { margin-top:8px; }

.hero-text { font-size:32px; line-height:50px; }

.grau-solutions .inner-40 { margin:0 -20px; }
.grau-solutions li { padding:0 20px; margin-bottom:40px; }

.hero-block-content { width:calc(50% - 60px); }

.slider-partner-content { padding:50px; }

.blog-item strong { padding:23px 30px 22px 30px; }
.blog-item section { padding:15px 30px; }
.blog-item section::before { left:30px; }

.sub-hero-title { padding:30px 35px; font-size:26px; line-height:30px; }
.sub-hero-title::before { top:20px; bottom:20px; }

.breadcrumb i { margin:0 15px; }

.slider-product-title section { padding:26px 40px 30px 40px; }
.slider-product-title section h2::before { left:-40px; }

.promo > ul > li picture , .promo-content { width:calc(50% - 30px); }

.product-hero-specs .inner-30 , .product-sub-items .inner-30 { margin:0 -15px; }
.product-hero-specs li , .product-sub-items li { padding:0 15px; }

.get-in-touch { padding:20px 40px; }

.grau-team li article { padding:30px; }
.grau-team li section { padding-left:30px; }

}


@media only screen and (max-width:1280px) {

.wrap { width:980px; }
#nav { padding-right:130px; }
#nav li { margin-right:25px; }


.slider-product-title { position:absolute; bottom:58px; }

.product-hero-specs li section i { width:80px; font-size:40px; line-height:50px; }
.product-hero-specs li section article { width:calc(100% - 80px); padding:0 20px; }

.product-intro { display:block; }
.product-intro-photo , .grau-team li { width:100%; }
.product-intro-content { width:100%; margin-top:10px; }

.product-sub-item-content { padding:20px; }

.contact-form { float:left; width:calc(50% - 40px); }

.partners .inner-20 { margin:0 -10px; }
.partners li { padding:0 10px; margin-bottom:20px; }

.item { width:50%; }

.owner section picture { float:left; width:64px; }
.owner section article { width:calc(100% - 80px); }


.nav-multi-pro > span { left:calc(40% - 340px) !important; }
.nav-multi-pro > span::before { left:calc(50% - 114px) !important; }

}


@media only screen and (max-width:1080px) {

.slider-hero-title section { padding:25px 30px; }
.slider-hero-title section h2::before { left:-30px; }

.hero-links li a { padding:0 20px; }

.news-list .inner-20 { margin:0 -15px; }
.news-list li { padding:0 15px; margin-bottom:28px; }

.copyright { padding:40px 0; }

}


@media only screen and (max-width:1023px) {

.grau { padding-top:60px; }
.wrap , .wrap-slim { float:left; width:100%; padding:0 30px; }

.header { height:60px; background-color:#4E535A; }
.header::before , .header::after , #nav::before { display:none; }
.header .wrap { padding:0 20px; }

.nav-up { margin-top:0; }

#logo { margin-top:0; }
#logo a { padding:14px 0; }
#logo a img { height:32px; }

.header-connect section { border-right:1px solid rgba(255,255,255,0.2); color:#AAA; }
.header-connect section strong , .header-connect section a { color:#FFF; }
.header-social-wrap { z-index:7995; }

.search-icon { display:none; }
.hero-search-wrap { float:left; width:100%; margin:25px 0; position:relative; left:auto; right:auto; top:auto; box-shadow:none; display:block; }
.hero-search button { background-color:#000; }

.nav-icon { float:right; width:70px; height:60px; margin-right:50px; position:relative; cursor:pointer; display:block; text-indent:-9999px; }
	.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:#FFF; transition:all 0.5s; }
		.nav-icon span::after { content:""; position:absolute; bottom:-6px; left:0; right:6px; height:2px; 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;
		}
		.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;
			height:2px;
		}
		
	.nav-icon-close::before { 
		content:"";
		border-bottom:4px solid transparent;
		border-left:10px solid transparent;
		border-right:10px solid transparent;
		height:0;
		position: absolute;
		width:0;
		left:50%;
		bottom:0;
		margin-left:-10px;
		border-bottom-color:#FFF;
	}

.header-lang-wrap { top:10px; right:10px; }

#nav-wrap { position:fixed; top:60px; bottom:0; left:0; right:0; width:auto; height:100vh; padding:30px 30px 160px 30px; background-color:#34373D; overflow-y:auto; z-index:200; display:none; }

#nav { padding-right:0; background-color:transparent; }
	#nav::after { display:none; }
	#nav > ul { width:100%; border-top:1px solid rgba(255, 255, 255, 0.07); }
		#nav > ul > li { width:100%; margin-right:0; border-bottom:1px solid rgba(255, 255, 255, 0.07); }
		#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; letter-spacing:2px; line-height:60px; position:relative; color:#FFF; }
			#nav > ul > li > a:hover , #nav > ul > li > a.active { color:#CCC; box-shadow:none; }
			
			#nav > ul > li > span { float:left; width:100%; position:relative; top:auto; left:auto; right:auto; }
				
				#nav > ul > li span > a {  }
				.nav-links a { padding:15px; font-size:16px; }



.nav-multi-pro > span { left:auto !important; width:100% !important; }
.nav-multi-pro > span::before { left:40px !important; }

.nav-pro { padding-left:0; }
.nav-pro-pic { display:none; }

.nav-pro-links > section { padding-right:0; }
.nav-pro-sub { display:block !important; float:left; width:100%; position:relative; right:auto; top:auto; bottom:auto; background-color:#F5F5F5; }

.nav-opened { overflow:hidden; }

.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-item img { width:120%; margin:0 -10%; }
.slider-hero-title section { width:50%; padding:17px 20px; }
.slider-hero-title section h2::before { left:-20px; }
.slider-hero-title section h2 { font-size:27px; line-height:30px; }
.slider-hero-title section span { display:none; }

.hero-links-wrap { margin-top:0; }
.hero-links-wrap .wrap { padding:0; }
.hero-links { width:100%; }
.hero-links li a { padding:0 30px; }

ul.slick-dots { padding:15px 0; }
ul.slick-dots li { height:8px; margin:0 3px; }
ul.slick-dots li button { width:8px; height:8px; }

.slider-hero ul.slick-dots { right:0; }

.footer-wrap::before { background-size:100% auto; }
.footer { padding-top:40px; }
.footer-grau { width:100%; padding-right:0; }
.footer-links-wrap { width:100%; padding-left:0; padding-top:30px; }

.hero-text { font-size:26px; line-height:40px; }

.grau-solutions { width:calc(100% + 30px); margin-bottom:20px; overflow-x:auto; white-space:nowrap; }
.grau-solutions .inner-40 { margin:0 -10px; }
.grau-solutions ul { float:none; width:auto; display:block; }
.grau-solutions li { float:none; width:auto; padding:0 10px 10px 10px; margin:0 10px 20px 0; display:block; }
.grau-solutions li a strong { margin:16px 0 7px 0; font-size:24px; }
.grau-solutions li a span { height:75px; white-space:initial; font-size:14px; }
.grau-solutions li a picture::before , .promo > ul > li picture figure::before { left:-16px; width:32px; height:32px; }
.grau-solutions li a picture::after , .promo > ul > li picture figure::after { right:-32px; width:64px; height:64px; }

.solution-list { width:100% !important; white-space:initial; overflow:hidden; }
.solution-list ul { float:left; width:100%; display:flex; flex-flow:row wrap; }
.solution-list li { float:left; width:50%; margin:0 0 30px 0; }
.solution-list li a span { height:auto; }

.hero-block { padding:0; }
.hero-block-photo { float:left; width:100%; height:320px; position:relative; top:auto; bottom:auto; right:auto; }
.hero-block-content { width:100%; }

.slider-partners::after { display:none; }
.slider-partner-item picture { float:left; width:100%; height:240px; position:relative; top:auto; bottom:auto; left:auto; background-size:auto 100%; box-shadow:0 1px 0 rgba(0,0,0,0.06); }
.slider-partner-content { width:100%; padding:30px; text-align:center; }
.slider-partner-content .link-all-dark a { float:none !important; }

.block-two { width:calc(50% - 30px); }

.news-list li , .blog-list ul > li { width:50%; }

.page-title { padding:47px 0 43px 0; font-size:37px; line-height:40px; }
.page-title-slim { padding-top:17px; }
.page-title::before { bottom:26px; }

.grau-stats li strong { font-size:60px; line-height:60px; }

.breadcrumb , .sub-hero-title::before { display:none; }

.sub-hero { margin-bottom:60px; }
.sub-hero-title { width:calc(100% - 30px); padding:25px 30px; }
.sub-hero-title::after { right:auto; left:-6px; width:12px; height:12px; transform:skewX(45deg); }

.slider-product-title { float:left; width:100%; position:relative; bottom:auto; left:auto; right:auto; background-color:#F7F7F9; }
.slider-product-title section { width:100%; padding:26px 0 30px 0; background-color:transparent; }
.slider-product-title section h2::before { display:none; }

.product-hero-specs .inner-30 { margin:0 -10px; }
.product-hero-specs li { padding:0 10px; flex-basis:50%; margin-bottom:20px; }
.product-hero-specs li:last-child { margin-bottom:0; }
.product-hero-specs li section { padding:15px 0; }

.product-sub-items li { flex-basis:50%; margin-bottom:30px; }

.news-content , .news-sidebar , .contact-form , .contact-info-wrap { width:100%; }

.partners li { width:50%; }

.testimonials li { padding:30px 0; align-items:initial; }

}





@media only screen and (max-width:767px) {

.hero-text { font-size:16px; line-height:26px; }

.grau-solutions li a span { height:auto; white-space:initial; font-size:14px; }

.wrap , .wrap-slim { padding:0 20px; }

.cookies-wrap { right:0; bottom:0; left:0; }
	.cookies { padding:20px 20px 15px 20px; }

.slider-hero-item img { width:100%; margin:0; }

.grau-solutions { width:calc(100% + 20px); }

.hero-links li a { height:90px; padding:0 20px; }

.promo > ul > li { flex-flow:column; margin-bottom:50px;  }
.promo > ul > li picture , .promo-content , .block-two { width:100%; }

.promo > ul > li:nth-child(even) picture { order:1; }
.promo > ul > li:nth-child(even) .promo-content { order:2; }

.sub-hero { margin-bottom:45px; }
.sub-hero-title { width:calc(100% - 20px); padding:20px 25px; bottom:-45px; font-size:20px; line-height:24px; }

.accordion-section-title { padding:20px; }
.accordion-section-title::after { right:10px; }
.accordion-section-content { float:left; width:100%; padding:0 0 20px 0; }
.accordion-section-text { padding-left:20px; }

.get-in-touch { padding:10px 25px 25px 25px; display:block; }
.get-in-touch-content , .get-in-touch-cta { width:100%; }

.connect-whatsapp , .call-us, .call-request { bottom:12px; right:12px; }
.call-us { bottom:68px; }
.call-request { bottom:124px; }

.slider-product-title section { padding:24px 0 20px 0; background-color:transparent; }

.grau-team li article { padding:20px; }
.grau-team li article::before { height:220px; transform:skewY(-7deg); }
.grau-team li picture { width:140px; }
.grau-team li section { width:calc(100% - 140px); padding-left:30px; }
.grau-team li section span { padding:4px 0 10px 0; }
.grau-team li section span::after { bottom:0; }

.partners li section { padding:19px; }

.testimonials ul { margin-top:-30px; border-top:0; }
.testimonials li { padding:30px 0; display:block; border-color:#CCC; }
.owner , .comment { width:100%; }
.comment { padding:15px 0 0 0; font-size:16px; line-height:30px; }

.nav-in { padding-right:0; }
.nav-pic { display:none; }
.nav-links { flex:1; padding:20px; }

}



@media only screen and (max-width:640px) {

.footer-links { width:100%; margin-bottom:20px; }
.footer-title { padding-bottom:8px; }
.copyright { padding:30px 0; margin-top:10px; }
.copyright .left { width:100%; }
.copyright .left section i { margin:0 10px; }
.copyright .right { width:100%; margin-top:10px; }

.product-sub-items li { flex-basis:100%; margin-bottom:20px; }
.product-sub-items li:last-child { margin-bottom:0; }

.product-hero-specs { margin:20px 0; }
.product-hero-specs li { flex-basis:100%; margin-bottom:15px; }

.solution-list li , .partners li , .item { width:100%; }
.item { margin-bottom:50px; }

.form-item { width:100%; padding-bottom:20px; }

}



@media only screen and (max-width:540px) {

.header-connect { width:100%; padding:0; margin:-5px 0; }
.header-connect section { width:100%; padding:5px 0; margin-right:0; border-right:0; }
.header-social-wrap { width:100%; margin-top:20px; }
.header-social-icon { width:100%; padding-left:15px; background-color:rgba(0,0,0,0.2); background-position:right 13px center; }
.header-social { width:100%; }
.header-social::before { right:auto; left:30px; }

.hero-search input { height:48px; padding:0 48px 0 20px; font-size:14px; line-height:48px; }
.hero-search button { width:48px; }

.slider-hero-title { top:auto; text-align:center; }
.slider-hero-title .wrap { padding:0; }
.slider-hero-title section { width:100%; padding:0; background-color:transparent; }
.slider-hero-title section h2 { padding:40px 20px 35px 20px; color:#FFF; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.5)); font-size:24px; line-height:24px; }
.slider-hero-title section h2::before { display:none; }

.slider-partner-item picture { height:200px; }
.hero-links li , .news-list li , .blog-list ul > li { width:100%; }
.hero-links li a { height:auto; padding-top:15px; padding-bottom:15px; }

.sub-hero { height:120px; }

.slider-product-title section h2 { font-size:30px; line-height:32px; }

.gallery li { width:50%; }

.grau-team li picture { width:200px; }
.grau-team li section { width:100%; padding-left:0; }
.grau-team li section strong { margin-top:20px; }
.grau-team li section span { padding-top:4px; }

}



@media only screen and (max-width:440px) {

.hero-block-photo { height:250px; }

}



@media only screen and (max-width:374px) {



}