/* ==============================
   Common styles
   ============================== */
  
.align-center{ text-align:center !important; }
.align-left{ text-align:left !important;}
.align-right{ text-align:right !important; }
.left{float:left;}
.right{float:right;}
.relative{position:relative;}
.hidden{display:none;}
.inline-block{display:inline-block;}
.stick-fixed{
	position: fixed !important;
	top: 0;
	left: 0;
}

::-moz-selection{ color: #fff; background:#000; }
::selection{ color: #fff;	background:#000; }
::-webkit-selection{ color: #fff;	background:#000; }

.animate, .animate *{
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.no-animate, .no-animate *{
	-webkit-transition: 0 none !important;  
    -moz-transition: 0 none !important;  
	 -ms-transition: 0 none !important;
    -o-transition: 0 none !important;    
    transition:0 none !important;  
}

.clearlist,
.clearlist li{
	list-style: none;
	padding: 0;
	margin: 0;
	background: none;
}

.full-wrapper{
	margin: 0 2%;
}
.margin-top{
	margin-bottom: 70px;
}
.margin-bot{
	margin-bottom: 70px;
}
.margin-top-null{
	margin-top: 0 !important;
}
.margin-bot-null{
	margin-bottom: 0 !important;
}
.padding-top-null{
	padding-top: 0 !important;
}
.padding-bot-null{
	padding-bottom: 0 !important;
}

html, body{
	height: 100%;
	-webkit-font-smoothing: antialiased;
}
/*
body{
	overflow: hidden;
}
.no-js body{
	overflow: visible;
}
*/
body{
	overflow-y: scroll;
}
.page{
	overflow: hidden;
}
a, b, div, ul, li{
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
	-webkit-tap-highlight-color: transparent; 
	-moz-outline-: none;
}
a:focus,
a:active{
	-moz-outline: none;
	outline: none;
}
img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}


/* Page loader */

.page-loader{
 	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #151515;
	z-index: 10000;	
}
.page-loader b{
  	content: "";
  	display: block;
	width: 60px;
	height: 60px;
	background: #fff url(../images/page-loader.gif) no-repeat center center;
	margin: -30px 0 0 -30px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.no-js .page-loader{
	/*display: none;*/
}


/* ==============================
   Typography
   ============================== */

body{
	color: #151515;
	font-size: 14px;
	font-family: montserrat, arial, sans-serif;
	line-height: 1.6;	
	-webkit-font-smoothing: antialiased;
}

a{
	color: #e54028;
	text-decoration: none;
}
a:hover{
	color: #e54028;
}
a:hover{
	text-decoration: underline;
}

h1,h2,h3,h4,h5,h6{
	font-family: montserrat, arial, sans-serif;
	line-height: 1.4;
}
h1{
	font-size: 32px;
}
h2{
	font-size: 28px;
}
.uppercase{
	text-transform: uppercase;
	letter-spacing: 1px;
}
.color{
	color: #e54028;
}
.serif{
	font-family: Lora, "Times New Roman", Times, serif;
	font-style: italic;
	letter-spacing: 1px;
}
p{
	margin: 0 0 1.3em 0;
}
.text{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6{
	color: #212121;
}
blockquote{
	margin: 1em 0 1.5em 0;
	border-width: 1px;
	border-color: #e54028;
	background: #fafafa;
	text-align: left;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}
blockquote p{
	margin-bottom: 0.5em;
	font-size: 15px;
	font-style: italic;
	color: #212121;	
	letter-spacing: 1px;
	line-height: 1.6;
}
blockquote footer{
	font-size: 12px;
}
dl dt{
	margin-bottom: 5px;
}
dl dd{
	margin-bottom: 15px;
}
pre{
	background-color: #f9f9f9;
	border-color: #ddd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}



/* ==============================
   Buttons
   ============================== */
  
.btn-spacia,
a.btn-spacia{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  	color: #fff;
  	background: #000;
	border: 2px solid transparent;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.btn-spacia:hover,
.btn-spacia:focus{
	font-weight: 700;
	color: rgba(255,255,255, .85);
  	background: rgba(0,0,0, .70);
	text-decoration: none;
}
.btn-spacia:active{
	cursor: pointer !important;
}

.btn-spacia.btn-small{
  	padding: 5px 10px;
	font-size: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
} 
.btn-spacia.btn-medium{
  	padding: 11px 24px;
	font-size: 11px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
} 
.btn-spacia.btn-large{
  	padding: 14px 40px;
	font-size: 12px;
} 

.btn-spacia.btn-glass{
  	color: rgba(255,255,255, .75);
  	background: rgba(0,0,0, .40);
}
.btn-spacia.btn-glass:hover,
.btn-spacia.btn-glass:focus{
  	color: rgba(255,255,255, 1);
  	background: rgba(0,0,0, 1);
}

.btn-spacia.btn-border{
  	color: #151515;
	border: 2px solid #151515;
  	background: transparent;
}
.btn-spacia.btn-border:hover,
.btn-spacia.btn-border:focus{
  	color: #fff;
	border-color: transparent;
  	background: #151515;
}

.btn-spacia.btn-border-c{
  	color: #e54028;
	border: 2px solid #e54028;
  	background: transparent;
}
.btn-spacia.btn-border-c:hover,
.btn-spacia.btn-border-c:focus{
  	color: #fff;
	border-color: transparent;
  	background: #e54028;
}

.btn-spacia.btn-border-w{
  	color: #fff;
	border: 2px solid rgba(255,255,255, .75);
  	background: transparent;
}
.btn-spacia.btn-border-w:hover,
.btn-spacia.btn-border-w:focus{
  	color: #e54028;
	border-color: transparent;
  	background: #fff;
}

.btn-spacia.btn-w{
  	color: #151515;
  	background: #fff;
}
.btn-spacia.btn-w:hover,
.btn-spacia.btn-w:focus{
  	color: #e54028;
  	background: #fff;
}

.btn-spacia.btn-w-color{
  	color: #e54028;
  	background: #fff;
}
.btn-spacia.btn-w-color:hover,
.btn-spacia.btn-w-color:focus{
	color: #151515;
  	background: #fff;
}

.btn-spacia.btn-color{
  	color: #fff;
  	background: rgba(229,64,40, 1);
}
.btn-spacia.btn-color:hover,
.btn-spacia.btn-color:focus{
  	color: #fff;
  	background: rgba(229,64,40, .9);
}

.btn-full{
	width: 100%;
}


/* ==============================
   Forms fields
   ============================== */

.form input[type="text"],
.form input[type="email"],
.form input[type="phone"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form select{
	height: 38px;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #777;
	border: 1px solid #e9e9e9;
background: transparent !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
border-right-color: rgba(255,255,255,0.12) !important;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.form input[type="text"]:hover,
.form input[type="email"]:hover,
.form input[type="phone"]:hover,
.form input[type="url"]:hover,
.form input[type="search"]:hover,
.form input[type="tel"]:hover,
.form input[type="password"]:hover,
.form select:hover{
	border-color: #ccc;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="phone"]:focus,
.form input[type="url"]:focus,
.form input[type="search"]:focus,
.form input[type="tel"]:focus,
.form input[type="password"]:focus,
.form select:focus{
	color: #151515;
	border-color: #151515;
	-webkit-box-shadow: 0 0 3px rgba(21,21,21, .3);
	-moz-box-shadow: 0 0 3px rgba(21,21,21, .3);
	box-shadow: 0 0 3px rgba(21,21,21, .3);
}
.form input[type="text"].input-lg,
.form input[type="email"].input-lg,
.form input[type="phone"].input-lg,
.form input[type="url"].input-lg,
.form input[type="search"].input-lg,
.form input[type="tel"].input-lg,
.form input[type="password"].input-lg,
.form select.input-lg{
	height: 48px;
}
.form input[type="text"].input-sm,
.form input[type="email"].input-sm,
.form input[type="phone"].input-sm,
.form input[type="url"].input-sm,
.form input[type="search"].input-sm,
.form input[type="tel"].input-sm,
.form input[type="password"].input-sm,
.form select.input-sm{
	height: 28px;
}
.form textarea{
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase !important;
	letter-spacing: 1px;
	color: #777;
	border-color: #e9e9e9;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
background-color: transparent !important;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.form textarea:hover{
	border-color: #ccc;
}
.form textarea:focus{
	color: #151515;
	border-color: #151515;
	-webkit-box-shadow: 0 0 3px rgba(21,21,21, .3);
	-moz-box-shadow: 0 0 3px rgba(21,21,21, .3);
	box-shadow: 0 0 3px rgba(21,21,21, .3);
}

.form .small-section-heading{
	margin-bottom: 30px;
}
.form .form-group{
	margin-bottom: 10px;
}
.form-success{
	display: none;
	max-width: 570px;
	margin: 0 auto 10px;
	padding: 20px; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #a9e2c2;
	font-size: 13px;
	text-transform: uppercase;
	color: #36a367;
box-shadow: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}


/* ==============================
   Home section
   ============================== */
  
/*
 * Header style
 */

.home-section{
	display: block;
	width: 100%;
}

.image-bg{
	display: block;
	width: 100%;
	position: relative;
	background-color: #222;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.image-color-bg{
	display: block;
	width: 100%;
	position: relative;
	background-color: #e54028;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.bg-scroll{
	background-attachment: scroll;
}

.home-content{
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
}


/* Home content */

.home-content{
	position: relative;
}
.home-text{
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	color: #fff;
}
.headings{
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(0,0,0, .35);
	color: #fff;
}
.headings li,
.headings h1{
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(0,0,0, .35);
	color: #fff;
}
.home-description{
	margin-top: 0;
	font-family: Lora, Arial, Sans-serif;
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	color: #fff;
}
.home-description.large{
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 1em;
}
.home-call-action{
	padding-top: 50px;
	padding-bottom: 10px;
}


/* Image Slider */ 

.slider-fittext{
	font-size: 20px;
}
.home-image-slider{
	font-size: 1em;
}
.home-image-slider .headings{
	font-size: 3.5em !important;
}
.home-image-slider .home-description{
	font-size: 1.05em !important;
}
.home-image-slider .home-description.large{
	font-size: 1.55em !important;
	font-weight: 400;
	margin-bottom: 1em;
}
.home-image-slider,
.home-image-slider li{
	margin: 0;
	padding: 0;
}


/* Pattern background */

.pattern-bg{
	background-repeat: repeat;
	background-size: auto;
}


/* Gradient overlay */

.gradient-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
background: transparent;
	background-image: -webkit-linear-gradient(-35deg, rgba(229,64,40,.9), rgba(235,172,18,.9));
	background-image: -moz-linear-gradient(-35deg, rgba(229,64,40,.9), rgba(235,172,18,.9));
	background-image: -o-linear-gradient(-35deg, rgba(229,64,40,.9), rgba(235,172,18,.9));
	background-image: linear-gradient(125deg, rgba(229,64,40,.9), rgba(235,172,18,.9));
}


/* Pattern overlay (over photo or video) */

.pattern-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/pattern-overlay.png) repeat;
	/* slightly darker overlay for better contrast */
	background-color: rgba(0,0,0,.36);
}


/* Logo (in header)*/

.logo-wrap{
	width: 100%;
	position: absolute;
	top: 4%;
	left: 0;
	text-align: center;
}
.logo{
	display: inline-block;
	position: relative;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	vertical-align: middle;
}

/* Nav logo image sizing (use `images/logo-min.png`) */
.nav-logo-wrap .logo img{
    max-height: 56px;
    width: auto;
    display: block;
}

@media (max-width: 768px){
    .nav-logo-wrap .logo img{
        max-height: 44px;
    }
}

/* Position nav logo top-left and make nav transparent on homepage */
.nav-logo-wrap{
	position: absolute;
	left: 18px;
	top: 12px;
	z-index: 999;
}

body.homepage nav.main-nav{
	background: #fbfbfb;
	box-shadow: 0 1px 10px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.027);
	position: absolute;
	width: 100%;
}

/* Keep the homepage navigation consistent across browsers and previews. */
body.homepage nav.main-nav.main-nav-center.stick-fixed,
body.homepage nav.main-nav.stick-fixed,
body.homepage .main-nav{
	background: #fbfbfb !important;
	background-color: #fbfbfb !important;
	box-shadow: 0 1px 10px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.027) !important;
}

body.homepage nav.main-nav .full-wrapper{
	align-items: center;
	position: relative;
}

/* Use the standard opaque navigation colors on the homepage. */
body.homepage .inner-nav ul > li > a,
body.homepage .inner-nav ul > li > a:hover,
body.homepage .inner-nav ul > li > a.active{
	background: #fbfbfb !important;
	color: #212121 !important;
	border-right-color: #eee !important;
}

/* Keep the expanded mobile menu opaque as well. */
body.homepage .mobile-on .desktop-nav ul > li > a,
body.homepage .mobile-on .desktop-nav ul > li > a.active{
	background: #fbfbfb !important;
	color: #212121 !important;
}

/* Hero content adjustments */
.home-content{
	padding-top: 120px !important; /* center content while avoiding nav */
}
.home-text h1{
	font-size: 48px;
	text-shadow: 0 6px 18px rgba(0,0,0,0.55);
}
.hero-logo{
	display:block;
	margin: 0 auto 18px;
	width: clamp(140px, 18vw, 520px);
	height: auto;
	max-width: 90%;
}

@media (min-width:1400px){
	.hero-logo{ width: 320px; }
	.home-text h1{ font-size: 56px; }
}

@media (max-width:768px){
	.hero-logo{ width: 110px; max-width: 24%; }
	.home-text h1{ font-size: 26px; }
	.home-content{ padding-top: 80px !important; }
}

/* When using the full home logo (with text) hide the duplicated H1 */
body.homepage .home-text h1{ display:none !important; }
body.homepage .hero-logo{ margin-top: -8vh; }

@media (max-width:768px){
	body.homepage .hero-logo{ margin-top: -4vh; width: clamp(100px, 32vw, 280px); }
}
.home-text .home-description{
	font-size: 18px;
	text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
a.logo:hover{
	color: #fff;
	text-decoration: none;
}
.logo:before,
.logo:after{
	content: " ";
	display: block;
	width: 32px;
	height: 2px;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background: #fff;
	background: rgba(255,255,255, .75);
}
.logo:before{
	left: -42px;
}
.logo:after{
	right: -42px;
}


/* Logo (in navigation panel)*/

.nav-logo-wrap{
	float: left;
	margin-right: 20px;
}
.nav-logo-wrap .logo{
	display: table-cell;
	vertical-align: middle;
	max-width: 100px;
	max-height: 100%;
}
.nav-logo-wrap .logo:before,
.nav-logo-wrap .logo:after{
	display: none;
}
.logo.dark,
a.logo.dark:hover{
	color: #151515;
}

/* If any old logo images remain, hide them and show textual logo */
.nav-logo-wrap .logo img{ display: inline-block !important; max-width: 100%; height: auto; max-height:56px !important; width:auto !important; }
.main-nav img{ display:inline-block !important; }
.nav-logo-wrap .logo{ font-size:18px; color:#151515; display:inline-block; padding:10px 6px; }

/* show template logo file and hide textual fallback */
img[src$="logo-dark.png"]{ display:inline-block !important; }
.nav-logo-text{ display:none !important; }

/* hide leftover template logo wrapper (prevents 'Spacia' text showing) */
.logo-wrap{ display:none !important; }

/* Hide the top navigation only on homepage to get a clean hero */
/* Keep navigation visible and opaque on the homepage. */
body.homepage nav.main-nav{ display:block !important; background: #fbfbfb !important; }
body.homepage .main-nav{ display:block !important; background: #fbfbfb !important; }
body.homepage .mobile-nav{ display:none !important; }
body.homepage .nav-logo-wrap{ display:block !important; }
body.homepage .inner-nav{ display:inline-block !important; }
body.homepage .nav-social-links{ display:block !important; }

/* Keep the desktop and mobile navigation modes mutually exclusive. */
body.homepage .inner-nav{
	margin-left: 130px;
}

.skip-to-content{
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	transform: translateY(-150%);
}
.skip-to-content:focus{
	transform: translateY(0);
}

@media only screen and (max-width: 1023px){
	body.homepage .mobile-nav{
		display: table !important;
		float: right;
		color: #212121;
		border-color: #eee;
	}
	body.homepage .inner-nav{
		display: none !important;
		margin-left: 0;
	}
	body.homepage .inner-nav.js-opened{
		display: block !important;
	}
	body.homepage .mobile-on .desktop-nav ul{
		margin-top: 0;
		background: #fbfbfb;
		border-color: #eee;
	}
	body.homepage .mobile-on .desktop-nav ul > li > a{
		border-bottom-color: #eee !important;
	}
	body.homepage .nav-social-links{
		display: none !important;
	}
}


/* ==============================
   Main menu
   ============================== */

/*
 * Desktop nav
 */

.main-nav{
	width: 100%;
	height: 55px !important;
	position: relative;
	top: 0;
	left: 0;
	text-align: left;
	background: #fbfbfb;
	-webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.027);
	-moz-box-shadow: 0 1px 10px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.027);
	box-shadow: 0 1px 10px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.027);
	z-index: 99;
}
.inner-nav{
	display: inline-block;
	position: relative;
	float: left;
}
.inner-nav ul{
	float: left;
	margin: auto;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
}
.inner-nav ul > li{
	float: left;
}
.inner-nav ul > li > a{
	color: #212121;
	display: inline-block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #eee;
	padding: 0 20px;
	text-decoration: none;
background: transparent !important;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.inner-nav ul > li:first-child > a{
	border-left: 1px solid #eee;
}  
.inner-nav ul > li > a:hover,
.inner-nav ul > li > a.active{
	background: #fff;
	color: #777;
	text-decoration: none;
}

.inner-nav ul > li > a{
	height: 55px;
	line-height: 55px;
}


/*
 * Mobile nav
 */

.mobile-on .desktop-nav{
	display: none;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;	
}
.mobile-on .desktop-nav ul{
	width: 100%;
	margin-top: 2%;
	background: #fbfbfb;
	border: 1px solid #eee;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.mobile-on .desktop-nav ul > li{
	display: block;
	float: none;
}
.mobile-on .desktop-nav ul > li > a{
	display: block;
	width: 100%;
	height: 38px !important;
	line-height: 38px !important;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	text-align: left;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #eee;
}
.mobile-on .desktop-nav ul > li:last-child > a{
	border-bottom: none;
}


.mobile-nav{
	display: none;
	vertical-align: middle;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	cursor: pointer;
box-shadow: none !important;
	-webkit-user-select: none;  
	-moz-user-select: none;     
	-ms-user-select: none;     
	-o-user-select: none;
	user-select: none;
background: transparent !important;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
color: #fff !important;
	-webkit-transition-property: background, color;
    -moz-transition-property: background, color;
    -o-transition-property: background, color;
    transition-property:  background, color;
}
.mobile-nav:hover,
.mobile-nav.active{
	background: #fff;
	color: #777;
}
.mobile-nav:active{
	-webkit-box-shadow: 0 0 35px rgba(0,0,0,.05) inset;
	-moz-box-shadow: 0 0 35px rgba(0,0,0,.05) inset;
	box-shadow: 0 0 35px rgba(0,0,0,.05) inset;
}
.no-js .mobile-nav{
	width: 55px;
	height: 55px;
}
.mobile-on .mobile-nav{
	display: table;
}
.mobile-nav .fa{
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 21px;
}


/* 
 * Social links (in nav panel) 
 */

.nav-social-links{	
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -13px; /* (.nav-social-links a .fa) height/2 */
}
.nav-social-links a{
	float: left;
	padding-left: 5px;
	color: #fff;
	text-decoration: none;
}
.nav-social-links a:hover{
	text-decoration: none;
}
.nav-social-links a .fa{
	width: 26px;
	height: 26px;
	display: block;
	line-height: 26px;
	position: relative;
	vertical-align: middle;
	text-align: center;
	font-size: 13px;
	background: transparent;
	color: #fff;
color: #fff !important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
   	-moz-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     -o-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410);
}

.nav-social-links a .fa:after{
	content: " ";
	width: 28px;
	height: 28px;
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	border: 1px solid transparent;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
   	-moz-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     -o-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410);
}
.nav-social-links a:hover .fa{
	background: #fff;
}
.nav-social-links a:hover .fa:after{
	border-color: #333;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	box-shadow: 0px 0px 2px rgba(0,0,0, .45);
}


/* ==============================
   Inside sections
   ============================== */


.page-section{
	padding: 140px 0;
	text-align: center;
}
.section-title{
	display: inline-block;
	position: relative;
	padding: 4px 24px;
	margin-bottom: 22px;
	border: 1px solid #e9e9e9;
	vertical-align: middle;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	font-style: italic;
	color: #999;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.section-title:before,
.section-title:after{
	content: " ";
	display: block;
	width: 32px;
	height: 2px;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background: #e9e9e9;
}
.section-title:before{
	left: -33px;
}
.section-title:after{
	right: -33px;
}

.section-heading{
	margin-top: 0;
	margin-bottom: 55px;
	font-size: 24px;
	font-weight: 700;
}
.section-text{
	margin-bottom: 65px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 2;
	letter-spacing: 1px;
	color: #777;
}

.small-section{
	padding: 70px 0;
	text-align: center;
}
.small-section-heading{
	margin-top: 0;
	margin-bottom: 45px;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.bg-overlay-1{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #e54028;
	background: rgba(229,64,40, .9);
	z-index: 0;
}
.bg-overlay-2{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #151515;
	background: rgba(21,21,21, .9);
}
.bg-content{
	position: relative;
	z-index: 1;
}


/*
 * Sections whith dark background
 */

.dark-bg{
	color: #fff;
}
.dark-bg a{
	color: #bbb;
}
.dark-bg .section-title{
	color: #999;
	border: 1px solid rgba(255,255,255, .141);
}
.dark-bg .section-title:before,
.dark-bg .section-title:after{
	background: rgba(255,255,255, .141);
}
.dark-bg .section-text{
	color: #bbb;
}


/* Section with lightgray background */

.gray-bg{
	background: #f5f5f5;
}

/*
 * Some facts section
 */

.count-number{
	font-size: 60px;
	font-weight: 700;
	line-height: 1.4;
}
.count-icon{
	display: inline-block;
	position: relative;
	margin-bottom: 4px;
}
.count-icon .fa{
	font-size: 14px;
	color: #fff;
}
.count-icon:before,
.count-icon:after{
	content: " ";
	width: 72px;
	height: 1px;
	display: block;
	position: absolute;
	top: 50%;
	background: #fff;
}
.count-icon:before{
	left: -82px;
}
.count-icon:after{
	right: -82px;
}
.count-title{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 1px;
}
.count-separator{
	height: 30px;
	clear: both;
	float: none;
	overflow: hidden;
}


/*
 * Team section
 */

.team-section{
	background-position: 50% 0;
	background-repeat: repeat;
	background-attachment: scroll;
}
.team-section .bg-overlay-2{
	background: rgba(21,21,21, .963) !important;
}
.team-grid{
	margin: 0 0 -40px -20px;
	text-align: center;
	vertical-align: top;
}
.team-item{
	display: inline-block;
	width: 170px;
	margin: 0 0 40px 20px;
	vertical-align: top;
	/*cursor: pointer;*/
}
.team-photo{
	max-width: 150px;
	max-height: 150px;
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
}
.team-photo:after{
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0, .1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: 2;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.team-photo img{
	max-width: 100%;
	max-height: 100%;
	display: block;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.team-name{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #bbb;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.team-status{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
	color: #888;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.team-item:hover .team-photo:after{
	background: transparent;
}
.team-item:hover .team-name{
	color: #fff;
}
.team-item:hover .team-status{
	color: #bbb;
}
.team-description{
	display: none;
}


/* Opened item description */

.js-clickable{
	cursor: pointer;
}
.team-opened-wrap{
	display: none;
	text-align: center;
}
.team-opened{
	display: block;
	width: auto;
	max-width: 770px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 3.5%;
	color: #151515;
	background: #fff;
	cursor: default;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.team-opened a{
	color: #777;
}
.team-close-link{
	display: none;
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 3px 10px;
	font-size: 20px;
	color: #aaa;
	background: #fff;
	cursor: pointer;
}
.team-close-link:hover{
	color: #777;
}
.team-opened .team-close-link{
	display: block;
}
.team-opened .team-photo:after{
	display: none;
}

.team-cv{
	display: none;
}
.team-opened .team-cv{
	display: block;
}
.team-description{
	display: block;
	margin-top: 30px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 2;
	letter-spacing: 1px;
	text-align: left;
}
.team-opened .team-name,
.team-opened:hover .team-name{
	color: #151515;
}
.team-opened .team-status,
.team-opened:hover .team-status{
	color: #777;
}


/* Team item contacts */ 

.team-contacts{
	margin-top: 20px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 2;
	letter-spacing: 1px;
}


/* Team social links */

.team-social-links{	
	display: inline-block;
}
.team-social-links a{
	float: left;
	padding-left: 5px;
	color: #151515;
	text-decoration: none;
}
.team-social-links a:hover{
	text-decoration: none;
}
.team-social-links a .fa{
	width: 26px;
	height: 26px;
	display: block;
	line-height: 26px;
	position: relative;
	vertical-align: middle;
	text-align: center;
	font-size: 13px;
	background: #eee;
	color: #151515;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.team-social-links a .fa:after{
	content: " ";
	width: 28px;
	height: 28px;
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	border: 1px solid transparent;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0); 
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
   	-moz-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     -o-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410);
}
.team-social-links a:hover .fa{
	background: #fff;
}
.team-social-links a:hover .fa:after{
	border-color: #333;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	box-shadow: 0px 0px 2px rgba(0,0,0, .45);
}


/*
 * Services section
 */

.service-grid{
	margin-bottom: 70px;
}
.service-item{
	height: 250px;
	margin: 20px 0 10px;
	position: relative;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}
.service-item-inner{
	display: table;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #151515;
	background: #fff;
	vertical-align: middle;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.service-wrap{
	width: 100%;
	height: 100%;
	display: table-cell;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 20px;
	padding-bottom: 70px;
	vertical-align: middle;
	overflow: hidden;
}
.service-icon{
	padding-bottom: 5px;
	position: relative;
	font-size: 32px;
	color: #151515;
	z-index: 1;
}
.service-title{
	position: relative;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #151515;
	z-index: 1;
}
.service-more{
	width: 100%;
	padding: 15px 0;
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	font-style: italic;
	letter-spacing: 1px;
	line-height: 1;
	
	cursor: pointer;
}
.js-fade .service-more{
	cursor: default;
}
.service-more:before{
	content: " ";
	display: block;
	width: 100%;
	max-width: 170px;
	height: 1px;
	margin: -15px auto 15px;
	background: #151515;
}

.sm-icon{
	margin-right: 2px;
	font-size: 15px;
}
.sm-more{
	position: relative;
	top: -2px;
}

.service-more:hover .sm-icon,
.service-more:hover .sm-more{
	color: #555;
}


/* Service item hover state */

.service-item-inner,
.service-icon,
.service-title,
.service-more,
.service-more:before,
.sm-icon,
.sm-more{
	-webkit-transition: all 0.55s cubic-bezier(0.300, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.55s cubic-bezier(0.300, 0.000, 0.580, 1.000); 
    -o-transition: all 0.55s cubic-bezier(0.300, 0.000, 0.580, 1.000);
    -ms-transition: all 0.55s cubic-bezier(0.300, 0.000, 0.580, 1.000); 
    transition: all 0.55s cubic-bezier(0.300, 0.000, 0.580, 1.000);
}

.js-fade{
	cursor: default;
}
.js-fade .service-item-inner{
	border-color: #999;
}
.js-fade .service-icon,
.js-fade .service-title,
.js-fade .service-more{
	color: #999;
}
.js-fade .service-more:before{
	background: #999;
}

/* Service full description  */

.service-opened{
	cursor: default;
	z-index: 11;
}
.service-full{
	display: none;
	padding: 20px;
	font-size: 12px;
	color: #444;
}
.service-opened .service-full{
	
}
.sf-list{
	margin: 0 -20px 20px;
	text-transform: uppercase;
	padding: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
}
.sf-list li{
	padding: 7px 20px;
	list-style: none;
	border-bottom: 1px solid #f0f0f0;
}
.sf-list li:first-child{
	border-top: 1px solid #f0f0f0;
}
.sf-list li:nth-child(even){
	background: #fefefe;
}
.sf-description{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	letter-spacing: 1px;
}
.service-close-link{
	display: none;
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 0;
	font-size: 18px;
	text-align: center;
	color: #e54028;
	cursor: pointer;
}

.service-close-link:hover{
	color: rgba(229,64,40, .8);
}
.service-opened .service-close-link{
	
}


/*
 * Banner section
 */

.banner-heading{
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.banner-text{
	text-align: left;
}

.banner-decription{
	margin-top: 7px;
	font-size: 16px;
	color: #999;
}
.image-color-bg .banner-decription{
	color: #f0c3bf;
}
.banner-button{
	text-align: right;
}




/*
 * Portfolio section
 */

/* Works filter */

.works-filter{
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0 0 70px 0;
	font-size: 11px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1px;
	color: #151515;
	border-top: 1px solid #151515;
	cursor: default;
}
.works-filter li{
	display: inline-block;
	margin: 0 17px;
	padding: 15px 0 0;
	border-top: 3px solid transparent;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.works-filter li:first-child{
	margin-left: 0;
}
.works-filter li:last-child{
	margin-right: 0;
}
.works-filter li:hover{
	color: #777;
}
.works-filter li.active{
	border-top: 3px solid #151515;
	cursor: default;
}
.works-filter li.active:hover{
	color: #151515;
}
.works-filter a{
	color: #151515;
	text-decoration: none;
}


/* Works grid */

.works-grid{
	list-style: none;
	margin: 0 0 -30px 0;
	padding: 0;
}
.work-item{
	width: 25%;
	display: inline-block;
	float: left;
	margin: 0;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.work-item > a{
	display: block;	
	padding: 0 0 84px 0;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
}
.work-item a,
.work-item a:hover{
	color: #151515;
	border: none;
}
.work-img{
	position: relative;
}
.work-img img{
	width: 100%;
	display: block;
	overflow: hidden;
}
.work-intro{
	width: 100%;
	height: 84px;
	padding: 18px 20px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}
.work-title{
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.work-descr{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: italic;
	text-align: center;
	letter-spacing: 1px;
	color: #777;
}

/* Work item hover state */

.work-item .work-img:after,
.work-intro{
	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.work-item:hover .work-intro{
	bottom: auto;
	top: 50%;
	margin-top: -84px;
	color: #fff;
	z-index: 3; 
}
.work-item:hover .work-intro:after{
	content: " ";
	display: block;
	max-width: 32px;
	height: 1px;
	margin: 20px auto 0;
	background: #fff;
}
.work-item:hover .work-title,
.work-item:hover .work-descr{
	color: #fff;
}
.work-item .work-img:after{
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	
}
.work-item:hover .work-img:after{	
	background: rgba(229,64,40, .95);
}

/* Filtering */

.work-item.mix {
    opacity: 0;
    display: none;
}

/* Works full view */

.work-full{
	display: none;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 10000;
}
.work-loader{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 10000;
}
.work-loader:after{
	display: block;
	content: " ";
	width: 16px;
	height: 16px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -8px 0 0 -8px;
	background: url(../images/loader.gif) no-repeat;
}

/*
 * Work navigation
 */

.work-navigation{
	width: 100%;
	height: 51px;
	position: relative;
	top: -60px;
	background: #fff;
	border-bottom: 1px solid #e9e9e9;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 99999;
}
.work-navigation .fa{
	font-size: 12px;
	vertical-align: middle;
}
.work-navigation .fa-times{
	font-size: 16px;
	margin-top: -2px;
}
.work-navigation a{
	display: block;
	float: left;
	width: 33.33333%;
	overflow: hidden;
	vertical-align: middle;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}
.work-navigation a,
.work-navigation a:visited{ 
	color: #151515; 
}
.work-navigation a:hover{ 
	color: #151515; 
}
.work-navigation a span{
	display: inline-block;
	height: 50px;
	line-height: 49px;
	padding: 0 4%;
	background: #fff;
	
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.work-navigation span:hover{
	background: #f7f7f7;
}
.work-back-link{
	margin: 20px 0 0;
	display: block;
	background: #fff;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #151515; 
}
.work-prev{
	text-align: left;
}
.work-all{
	text-align: center;
}
.work-next{
	text-align: right;
}

.work-wrapper{

}

.work-container{
	padding: 50px 0;
}
.work-full-title{
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1px;
}
.work-full-media{
	margin-top: 30px;
}
.work-full-slider{
	position: relative;
}
.work-full-slider li{
	overflow: hidden;
}
.work-full-media img{
	max-width: 100%;
	height: auto;
}
.work-full-text{
	margin-top: 50px;
	text-align: left;
}
.work-full-text h6{ 
	margin-top: 5px;
}
.work-detail{
	margin-bottom: 30px;
	background: #f7f7f7;
	padding: 20px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.work-detail h6{
	margin-top: 0;
}
.work-detail p:last-child{
	margin-bottom: 0;
}
.work-full-detail{
	font-size: 10px;
	color: #777;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.work-full-detail p{ 
	margin: 4px 0;
}
.work-full-action{
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e9e9e9;
	text-align: center;
}


/*
 * Benefits (features) section
 */

.benefits-grid{
	margin: 0 0 -40px -20px;
	text-align: center;
	vertical-align: top;
}
.benefit-item{
	display: inline-block;
	width: 264px;
	margin: 0 0 40px 20px;
	padding: 0 15px;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
	cursor: default;
}
.benefit-icon{
	margin-bottom: 6px;
	font-size: 32px;
	color: #e54028;
}
.benefit-title{
	margin: 0 0 17px 0;
	padding: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.benefits-descr{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	/*font-style: italic;*/
	letter-spacing: 1px;
	color: #777;
}

/* Benefit item hover state */

.benefit-item:after{
	content: " ";
	display: block;
	width: 0;
	margin-left: 0;
	height: 1px;
	position: absolute;
	bottom: -20px;
	left: 50%;
	background: #fff;
	
	
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
   	-moz-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     -o-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410);
}

.benefit-item:hover:after{
	width: 32px;
	margin-left: -16px;
	background: #e54028;
}

/*
 * Text carousel section (twitter, reviews, etc...)
 */

.text-carousel{
	
}
.tc-icon{
	margin-bottom: 30px;
	font-size: 48px;
	color: rgba(255,255,255, .15);
}
.tc-icon a,
.tc-icon a .fa{
	color: rgba(255,255,255, .15);
	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.tc-icon a:hover,
.tc-icon a:hover .fa{
	color: rgba(255,255,255, .25);
}
.tc-content{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: italic;
	letter-spacing: 1px;
	color: #ababab;
}
.tc-slider{
	padding: 0;
	margin: 0;
	list-style: none;
}
.tc-slider li{
	display: block;
	margin: 0;
	padding: 0;
}
.tweet_join{
	display: none;
}
.tc-author{
	margin-top: 30px;
	font-family: montserrat, arial, sans-serif;
	font-size: 11px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #777;
}
.tc-author a{
	color: #777;
}
.tc-arrows{
	margin-top: 40px;
}
.tc-arrows a{
	text-decoration: none !important;
}
.tc-arrow-left,
.tc-arrow-right,
.tc-arrow-left:active,
.tc-arrow-right:active{
	width: 30px;
	height: 30px;
	margin: 0 2px;
	position: relative;
	display: inline-block;
	font-size: 21px;
	border: 1px solid rgba(255,255,255, .2);
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
}
.tc-arrow-left .fa,
.tc-arrow-right .fa{
	width: 30px;
	height: 30px;
	position: absolute;
	top: -1px;
	line-height: 30px !important;
	display: block;	
	text-align: center;
	color: #777;
	cursor: pointer;
}
.tc-arrow-left .fa{
	left: -2px;
}
.tc-arrow-right .fa{;
	right: -2px;
}
.tc-arrow-left:hover,
.tc-arrow-right:hover{
	border-color: rgba(255,255,255, .5);
	color: #fff;
}
.tc-arrow-left:hover .fa,
.tc-arrow-right:hover .fa{
	color: #fff;
}


/*
 * Clients Logos
 */

.clients-logos{
	border-top: 1px solid #eaeaea; 
	border-bottom: 1px solid #eaeaea; 
}
.clients-logos-row{
	display: table;
	width: 100%;
	border-bottom: 1px solid #eaeaea; 
}
.clients-logos-row:last-child{
	border-bottom: none; 
}
.client-item{
	width: 200px;
	height: 85px;
	display: table-cell;
	border-right: 1px solid #eaeaea;
	padding: 10px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	text-align: center;
	
	-webkit-transition: all 0.17s cubic-bezier(0, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.17s cubic-bezier(0, 0.000, 0.580, 1.000); 
    -o-transition: all 0.17s cubic-bezier(0, 0.000, 0.580, 1.000);
    -ms-transition: all 0.17s cubic-bezier(0, 0.000, 0.580, 1.000); 
    transition: all 0.17s cubic-bezier(0, 0.000, 0.580, 1.000);
}
.client-item:hover{
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0, .06);
	-moz-box-shadow: 0px 0px 20px rgba(0,0,0, .06);
	box-shadow: 0px 0px 20px rgba(0,0,0, .06);
}
.client-item:last-child{
	border-right: none;
}

.client-item img {
    max-width: 100%;
}

.client-review{
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: italic;
	letter-spacing: 1px;
	color: #777;
	background: transparent;
	text-align: center;
}

.gray-bg .tc-icon{
	color: #ddd;
}
.gray-bg .tc-icon a{
	color: #ddd;
}
.gray-bg .tc-icon a:hover{
	color: #ccc;
}
.gray-bg .tc-content{
	color: #151515;
}
.gray-bg .tc-content a{
	color: #555;
}
.gray-bg .tc-author,
.gray-bg .tc-author a{
	color: #777;
}

.gray-bg .tc-arrow-left,
.gray-bg .tc-arrow-right,
.gray-bg .tc-arrow-left:active,
.gray-bg .tc-arrow-right:active{
	border-color: #ddd;
}
.gray-bg .tc-arrow-left .fa,
.gray-bg .tc-arrow-right .fa{
	color: #777;
}

.gray-bg .tc-arrow-left:hover,
.gray-bg .tc-arrow-right:hover{
	border-color: #bbb;
}
.gray-bg .tc-arrow-left:hover .fa,
.gray-bg .tc-arrow-right:hover .fa{
	color: #151515;
}


/*
 * Contacts section
 */

/* Phone */

.phone{
	position: relative;
	margin-top: 22px;
	margin-bottom: 70px;
	padding: 55px 50px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #151515;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.phone-title{
	width: 98px;
	margin-left: -49px;
	position: absolute;
	top: -22px;
	left: 50%;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.phone-icon{
	font-size: 24px;
	font-weight: normal;
	letter-spacing: normal;
	text-transform: none;
	color: #e54028;
}
.phone-number{
	font-size: 40px;
}


/* Other contact blocks (email, address) */

.contact-icon{
	margin-bottom: 10px;
	font-size: 20px;
	color: #151515;
}
.contact-icon a{
	color: #151515;
}
.contact-text{
	padding: 0 45px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
}
.contact-text a{
	color: #151515;
}


/* Google maps */

.google-map{	
	background: #333;
}
#map-canvas{
	height: 400px;
	background-color: #000000;
}
.gm-style-cc{
	display: none !important;
}
.gm-style-iw div{
	color: #777;
}


/* Contacts form */ 

.map-fix{
	margin-top: 7px;
}
.contact-overspace{
	margin-top: -30px;
	height: 30px;
	background: #fff;
	
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	

	
}
.contact-form-wrap{
	padding: 0 30px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.contact-form{
	max-width: 570px;
	margin: 0 auto;
}



/* ==============================
   Footer
   ============================== */

.footer{
	padding: 20px 0;
	text-align: center;
	font-size: 12px;
}
.footer-text{
	max-width: 370px;
	margin: 0 auto 20px;
	position: relative;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}
.footer-text:before,
.footer-text:after{
	content: " ";
	display: block;
	width: 150px;
	height: 1px;
	position: absolute;
	top: 50%;
	background: #ddd;
}
.footer-text:before{
	left: -175px;
	background-image: -webkit-gradient(linear,left top,	right top, color-stop(0, #FFFFFF), color-stop(1, #DDDDDD));
	background-image: -o-linear-gradient(right, #FFFFFF 0%, #DDDDDD 100%);
	background-image: -moz-linear-gradient(right, #FFFFFF 0%, #DDDDDD 100%);
	background-image: -webkit-linear-gradient(right, #FFFFFF 0%, #DDDDDD 100%);
	background-image: -ms-linear-gradient(right, #FFFFFF 0%, #DDDDDD 100%);
	background-image: linear-gradient(to right, #FFFFFF 0%, #DDDDDD 100%);
}
.footer-text:after{
	right: -175px;
	background-image: -webkit-gradient(	linear, left top, right top, color-stop(0, #DDDDDD), color-stop(1, #FFFFFF));
	background-image: -o-linear-gradient(right, #DDDDDD 0%, #FFFFFF 100%);
	background-image: -moz-linear-gradient(right, #DDDDDD 0%, #FFFFFF 100%);
	background-image: -webkit-linear-gradient(right, #DDDDDD 0%, #FFFFFF 100%);
	background-image: -ms-linear-gradient(right, #DDDDDD 0%, #FFFFFF 100%);
	background-image: linear-gradient(to right, #DDDDDD 0%, #FFFFFF 100%);
}

/* Social links */

.footer-social-links{
	margin-bottom: 20px;
}
.social-links{	
	display: inline-block;
}
.social-links a{
	float: left;
	padding-left: 5px;
	color: #151515;
	text-decoration: none;
}
.social-links a:hover{
	text-decoration: none;
}
.social-links a .fa{
	width: 32px;
	height: 32px;
	display: block;
	line-height: 32px;
	position: relative;
	vertical-align: middle;
	text-align: center;
	font-size: 14px;
	background: #eee;
	color: #151515;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.social-links a .fa:after{
	content: " ";
	width: 34px;
	height: 34px;
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	border: 1px solid transparent;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0); 
	-webkit-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
   	-moz-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     -o-transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410); 
     transition: all 170ms cubic-bezier(0.805, 0.075, 0.315, 1.410);
}
.social-links a:hover .fa{
	background: #fff;
}
.social-links a:hover .fa:after{
	border-color: #333;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0, .45);
	box-shadow: 0px 0px 2px rgba(0,0,0, .45);
}

.footer-copy{
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #999;
}



/* ==============================
   Shortcodes
   ============================== */

.shortcode-section{
	margin-bottom: 50px;
	text-align: center;
}

.shortcode-title{
	padding: 0 0 15px 0;
	margin: 0 0 30px 0;
	border-bottom: 1px solid #e9e9e9;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.text-block{
	margin-bottom: 30px;
	text-align: left;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}

.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6{
	color: #212121;
}

.margin-block{
	margin-bottom: 30px;
}
.button-holst{
	padding-top: 40px;
	background: #e5e5e5;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}


/*
 * Tabs
 */

.spasia-tabs{
	border-color: #ddd;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;	
}
.spasia-tabs > li > a{
	text-decoration: none;
}
.spasia-tabs > li > a:hover{
	background-color: #f5f5f5;
}
.spasia-tabs li.active a{
	color: #212121;
}
.spasia-tabs-cont{
	padding: 15px 0;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}


/*
 * Alert messages
 */

.alert{
	margin: 0 auto 10px;
	padding: 14px 20px; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ddd;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #777;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.success{
	border-color: #a9e2c2;
	color: #36a367;
}
.info{
	border-color: #9ecdfc;
	color: #297ad3;
}
.notice{
	border-color: #f9ce75;
	color: #e9a00a;
}
.error{
	border-color: #ffbbbb;
	color: #e33131;
}


/*
 * Accordion
 */

.accordion > dt{
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.accordion > dt > a{
	display: block;
	position: relative;
	color: #777;
	text-decoration: none;
	padding: 14px 20px;
	border: 1px solid #e0e0e0;
	background: #fdfdfd;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.accordion > dt > a:hover{
	text-decoration: none;
	border-color: #ddd;
	background-color: #f9f9f9;	
	color: #444;
}
.accordion > dt > a.active{
	color: #e54028;
	border-color: #ddd;
	background-color: #f9f9f9;
	cursor: default;
}
.accordion > dt > a:after{
	content: "\e095";
	width: 15px;
	height: 15px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: 'Simple-Line-Icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 15px;
	line-height: 15px;
	text-align: center;
	color: #999;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.accordion > dt > a.active:after,
.accordion > dt > a.active:hover:after{
	content: "\e082";
	color: #e54028;
}
.accordion > dt > a:hover:after{
	color: #444;
}

.accordion > dd{
	margin-bottom: 10px;
	padding: 0 20px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}


/*
 * Toggle
 */

.toggle > dt{
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.toggle > dt > a{
	display: block;
	position: relative;
	color: #777;
	text-decoration: none;
	padding: 14px 20px;
	border: 1px solid #e0e0e0;
	background: #fdfdfd;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.toggle > dt > a:hover{
	text-decoration: none;
	border-color: #ddd;
	background-color: #f9f9f9;	
	color: #444;
}
.toggle > dt > a.active{
	color: #e54028;
	border-color: #ddd;
	background-color: #f9f9f9;
}
.toggle > dt > a:after{
	content: "\e095";
	width: 15px;
	height: 15px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: 'Simple-Line-Icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 15px;
	line-height: 15px;
	text-align: center;
	color: #999;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.toggle > dt > a.active:after,
.toggle > dt > a.active:hover:after{
	content: "\e082";
	color: #e54028;
}
.toggle > dt > a:hover:after{
	color: #444;
}
.toggle > dd{
	margin-bottom: 10px;
	padding: 0 20px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #777;
}


/*
 * Progress bars
 */

.spacia-progress{
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.progress-bar{
	padding-left: 10px;
	padding-right: 10px;
	background-color: #212121;
	font-size: 10px;
	text-align: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.progress-color .progress-bar{
	background-color: #e54028;
}


/*
 * Pricing 
 */

.pricing-grid{
	margin-bottom: 70px;
}
.pricing-item{
	margin: 20px 0 10px;
	position: relative;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}
.pricing-item-inner{
	border: 1px solid #ddd;
	background: #fff;
	vertical-align: middle;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.pricing-item-inner:hover{
	border-color: #151515;
}
.main .pricing-item-inner{
	-webkit-box-shadow: 0px 0px 7px rgba(0,0,0, .07);
	-moz-box-shadow: 0px 0px 7px rgba(0,0,0, .07);
	box-shadow: 0px 0px 7px rgba(0,0,0, .07);
}
@media only screen and (min-width: 768px) {
	
    .main .pricing-item-inner {
        margin-top: -20px;
        margin-bottom: -20px;
    }
	
}
.pricing-wrap{
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	text-align: center;
	overflow: hidden;
}
@media only screen and (min-width: 768px) {
	
    .main .pricing-wrap:before, 
	.main .pricing-wrap:after {
        display: block;
        content: " ";
        height: 20px;
    }
	
}

.pricing-icon{
	padding-bottom: 5px;
	position: relative;
	font-size: 32px;
	color: #151515;
	z-index: 1;
}
.pricing-title{
	position: relative;
	margin-bottom: 25px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 1;
}
.pr-list{
	margin-bottom: 20px;
	color: #777;
	font-weight: 400;
	font-size: 11px;
}
.pricing-num{
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	
}
.pricing-num sup{
	font-size: 20px;
	font-weight: 400;
	position: relative;
	top: -33px;
	left: -3px;
	margin-left: -7px;
}



/* ==============================
   Blog
   ============================== */

.blog-container{
	margin-top: 70px;
	margin-bottom: 70px;
}
.blog-item{
	margin-bottom: 70px;
	position: relative;
}

.blog-item-date{
	width: 100px;
	padding: 10px;
	position: absolute;
	top: 5px;
	left: -130px;
	font-size: 10px;
	letter-spacing: 1px;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	color: #999;
	
}
.date-num{
	display: block;
	margin-bottom: 3px;
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 18px;
}
.blog-media{
	margin-bottom: 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.blog-media img,
.blog-media .video,
.blog-media iframe{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.blog-item-title{
	margin-top: 0;
	padding-top: 0;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -1px;
}
.blog-item-title a{
	color: #212121;
	text-decoration: none;
}
.blog-item-title a:hover{
	color: #e54028;
	text-decoration: none;
}
.blog-item-data{
	margin-bottom: 20px;
	text-transform: uppercase;
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #aaa;
}
.separator{
	margin: 0 5px;
}
.blog-item-data a{
	color: #aaa;
	text-decoration: none;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.blog-item-data a:hover{
	color: #212121;
	text-decoration: none;
}
.blog-item-body{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 17px;
	line-height: 1.7;
	color: #777;
}
.blog-item-body h1,
.blog-item-body h2,
.blog-item-body h3,
.blog-item-body h4,
.blog-item-body h5,
.blog-item-body h6{
	margin: 1.3em 0 0.5em 0;
	color: #212121;
}
.blog-item-foot{
	margin-top: 25px;
}
.blog-item-more{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
	color: #777;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.blog-item-more:hover{
	text-decoration: none;
}
a.blog-item-more{
	color: #777;
	text-decoration: none;
}
a.blog-item-more:hover{
	color: #e54028;
}

.blog-item-q{
	background: none;
	border: none;
	padding: 0;
}
.blog-item-q p{
	position: relative;
	font-size: 22px;
	letter-spacing: 2px;
}
.blog-item-q p a{
	color: #212121;
	text-decoration: none;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.blog-item-q:hover a,
.blog-item-q p a:hover{
	text-decoration: none;
	color: #e54028;
}
.blog-item-q p:before,
.blog-item-q p:after{
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.blog-item-q p:before{
	content: '"';
	position: absolute;
	top: 0;
	left: -17px;
}
.blog-item-q p:after{
	content: '"';
}

.blog-item-q p:hover:before,
.blog-item-q p:hover:after{
	color: #e54028;
}
.blog-page-title{
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}


/* Pagination */

.pagination{
	font-size: 12px;
}
.pagination a{
	display: inline-block;
	min-width: 30px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 2px 5px 0;
	padding: 5px 7px;
	border: 1px solid #e9e9e9;
	color: #888;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.pagination .fa{
	margin-top: 1px;
	font-size: 16px;
}
.pagination a:hover{
	text-decoration: none;
	border-color: rgba(229,64,40, .5);
	color: #e54028;
}
.pagination a.active,
.pagination a.active:hover{
	border-color: #e9e9e9;
	color: #444;
	cursor: default;
}


/* Comments */
.comment-list{
	
}
.comment-item{
	padding-top: 20px;
	border-top: 1px dotted #e9e9e9;
}
.comment-item:first-child{
	padding-top: 0;
	border-top: none;
}
.comment-avatar{
	width: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.comment-item-data{
	margin: 8px 0 10px;
	text-transform: uppercase;
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #aaa;
}
.comment-author{
	font-size: 10px;
}
.comment-item-data a{
	color: #aaa;
	text-decoration: none;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.comment-item-data a:hover{
	color: #212121;
	text-decoration: none;
}


/*
 * Sidebar
 */

.sidebar{
	margin-top: 10px;
}
.widget{
	margin-bottom: 50px;
}
.widget-title{
	margin-bottom: 15px;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	color: #212121;
}
.widget-body{
	font-size: 12px;
	color: #777;
}
.widget-text{
	font-family: Lora, "Times New Roman", Times, serif;
	line-height: 1.7;
	letter-spacing: 1px;
}


/* Search widget */

.search-wrap{
	position: relative;
}
.search-field{
	width: 100% !important;
	height: 40px !important;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.search-button{
	width: 42px;
	height: 40px;
	line-height: 40px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	right: 1px;	
	overflow: hidden;
	background: transparent;
	border: none;
	outline: none;
	color: #777;
	
	-webkit-border-top-right-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;
	-moz-border-radius-topright: 2px;
	-moz-border-radius-bottomright: 2px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.search-button:hover{
	color: #212121;
}
.search-button:hover + .search-field{
	border-color: #ccc;
}


/* Widget menu */

.widget-menu{
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
}
.widget-menu li{
	padding: 5px 0;
	font-family: Lora, "Times New Roman", Times, serif;
	
}
.widget-menu li a{
	color: #555;
	text-decoration: none;
	padding-bottom: 2px;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.widget-menu li a:hover{
	border-color: rgba(229,64,40, .4);
	color: #e54028;
}
.widget-menu li small{
	font-family: Lora, "Times New Roman", Times, serif;
	font-size: 11px;
	font-style: italic;
	color: #999;
}


/* Widget tags */

.tags{
	
}
.tags a{
	display: inline-block;
	margin: 0 2px 5px 0;
	padding: 5px 7px;
	border: 1px solid #e9e9e9;
	color: #777;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.tags a:hover{
	text-decoration: none;
	border-color: rgba(229,64,40, .5);
	color: #e54028;
}


/* Posts & comments */

/* Widget menu */

.widget-posts{
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
	color: #aaa;
}
.widget-posts li{
	padding: 7px 0;
	border-bottom: 1px dotted #e9e9e9;
	font-family: Lora, "Times New Roman", Times, serif;
}
.widget-posts li a{
	color: #555;
	text-decoration: none;
	padding-bottom: 2px;
	text-decoration: none;
	
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.widget-posts li a:hover{
	color: #e54028;
}











/* Dario & Picolini institutional site */
:root{
	--dp-ink: #151a1d;
	--dp-muted: #657078;
	--dp-line: #dfe4e7;
	--dp-paper: #ffffff;
	--dp-soft: #f3f6f7;
	--dp-blue: #187bc0;
	--dp-blue-dark: #0e4f78;
	--dp-green: #47b881;
}
html{ scroll-padding-top: 64px; }
body{ color: var(--dp-ink); background: var(--dp-paper); }

body.homepage .main-nav,
body.homepage nav.main-nav,
body.homepage nav.main-nav.main-nav-center.stick-fixed{
	height: 64px !important;
	background: rgba(255,255,255,.97) !important;
	box-shadow: 0 1px 0 rgba(21,26,29,.1) !important;
	backdrop-filter: blur(12px);
}
body.homepage nav.main-nav .full-wrapper{
	height: 64px;
	margin: 0 clamp(20px, 3vw, 56px);
}
body.homepage .nav-logo-wrap{
	top: 0;
	left: 0;
	height: 64px;
	width: 92px;
	margin: 0;
	display: flex !important;
	align-items: center;
}
body.homepage .nav-logo-wrap .logo{
	display: flex;
	align-items: center;
	height: 64px;
	padding: 0;
	max-width: none;
}
body.homepage .nav-logo-wrap .logo img{
	display: block !important;
	width: auto !important;
	height: 40px;
	max-height: 40px !important;
	max-width: 78px;
	object-fit: contain;
}
body.homepage .inner-nav{ margin-left: 112px; }
body.homepage .inner-nav ul > li > a{
	height: 64px !important;
	line-height: 64px !important;
	padding: 0 22px;
	background: transparent !important;
	border-color: var(--dp-line) !important;
	color: var(--dp-ink) !important;
	font-size: 11px;
}
body.homepage .inner-nav ul > li > a:hover,
body.homepage .inner-nav ul > li > a.active{
	background: var(--dp-soft) !important;
	color: var(--dp-blue-dark) !important;
}
.language-switcher{
	display: flex !important;
	align-items: center;
	gap: 8px;
	top: 0;
	height: 64px;
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	color: #a3abb0;
}
.language-switcher a{
	float: none;
	padding: 6px 2px;
	color: var(--dp-muted);
	letter-spacing: 0;
}
.language-switcher a:hover,
.language-switcher a.active{
	color: var(--dp-blue);
}

.dp-hero{
	position: relative;
	min-height: 640px;
	height: min(820px, calc(100vh - 64px));
	margin-top: 64px;
	overflow: hidden;
	background-position: center;
}
.dp-hero video{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.dp-hero-video{
	opacity: 0;
}
.dp-hero-video.is-visible{
	opacity: 1;
}
.dp-video-curtain{
	position: absolute;
	inset: 0;
	z-index: 1;
	background: #071116;
	opacity: 0;
	pointer-events: none;
	transition: opacity .7s ease-in-out;
	will-change: opacity;
}
.dp-video-curtain.is-visible{
	opacity: 1;
}

.dp-hero-overlay{
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(8,20,27,.48);
}
.dp-hero-content{
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 48px 24px;
	color: #fff;
	text-align: center;
}
body.homepage .dp-hero .hero-logo{
	width: clamp(250px, 31vw, 470px);
	max-width: 78vw;
	margin: -9vh 0 24px;
}
.dp-hero-tagline{
	margin: 0;
	font-family: Montserrat, "Segoe UI", Arial, sans-serif;
	font-size: clamp(13px, 1.35vw, 18px);
	font-style: normal;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #fff;
	text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.dp-hero-subline{
	margin: 14px 0 0;
	font-family: Montserrat, "Segoe UI", Arial, sans-serif;
	font-size: clamp(12px, 1.05vw, 15px);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 1px;
	color: rgba(255,255,255,.9);
	text-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.dp-scroll-link{
	position: absolute;
	bottom: 34px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	color: rgba(255,255,255,.82);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}
.dp-scroll-link:hover{ color: #fff; text-decoration: none; }

.dp-section{ padding: 112px 0; text-align: left; }
.dp-section-grid{
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
	gap: clamp(48px, 8vw, 120px);
}
.dp-section-label{
	padding-top: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dp-blue-dark);
}
.dp-section-label:before{
	content: "";
	display: block;
	width: 32px;
	height: 2px;
	margin-bottom: 18px;
	background: var(--dp-blue);
}
.dp-section-copy h1,
.dp-section-copy h2{
	max-width: 850px;
	margin: 0 0 30px;
	font-size: clamp(36px, 4.3vw, 62px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: 0;
}
.dp-section-copy > .lang-en > p,
.dp-section-copy > .lang-pt > p{
	max-width: 720px;
	margin: 0;
	font-family: Lora, Georgia, serif;
	font-size: 18px;
	line-height: 1.8;
	color: var(--dp-muted);
}
.dp-capabilities{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 48px;
}
.dp-capabilities span{
	padding: 9px 14px;
	border: 1px solid var(--dp-line);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3d484e;
}
.dp-ventures{ background: var(--dp-soft); }
.dp-venture-card{
	margin-top: 56px;
	border-top: 1px solid #bec8cd;
	border-bottom: 1px solid #bec8cd;
}
.dp-venture-meta{
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dp-muted);
}
.dp-status{ display: flex; align-items: center; gap: 8px; }
.dp-status-dot{
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dp-green);
	box-shadow: 0 0 0 4px rgba(71,184,129,.14);
}
.dp-venture-body{
	display: grid;
	grid-template-columns: 1.45fr 1fr;
	gap: 64px;
	padding: 56px 0 64px;
	border-top: 1px solid var(--dp-line);
}
.dp-venture-kicker{
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dp-blue);
}
.dp-venture-body h3{
	margin: 0;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.14;
}
.dp-venture-body > div:last-child p{
	margin: 36px 0 28px;
	font-family: Lora, Georgia, serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--dp-muted);
}
.dp-coming-soon{
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dp-ink);
}
.dp-principles{
	padding: 78px 0;
	background: var(--dp-ink);
	color: #fff;
}
.dp-principles-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(48px, 10vw, 150px);
	align-items: center;
}
.dp-principles p{
	margin: 0;
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.2;
}
.dp-principles-grid > div{
	font-family: Lora, Georgia, serif;
	font-size: 16px;
	line-height: 1.8;
	color: #c5cdd1;
}
.dp-contact-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 52px;
}
.dp-contact-grid a{
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 26px 56px 26px 26px;
	border: 1px solid var(--dp-line);
	color: var(--dp-ink);
	text-decoration: none;
}
.dp-contact-grid a:hover{ border-color: var(--dp-blue); color: var(--dp-blue-dark); }
.dp-contact-grid span{ margin-bottom: 8px; font-size: 11px; text-transform: uppercase; color: var(--dp-muted); }
.dp-contact-grid strong{ overflow-wrap: anywhere; font-size: 14px; }
.dp-contact-grid i{ position: absolute; top: 50%; right: 24px; transform: translateY(-50%); }

.footer{ padding: 42px 0; background: #0f1315; }
.footer .full-wrapper{ display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.dp-footer-brand{ color: #fff; font-size: 13px; font-weight: 700; }
.dp-footer-copy{ color: #7f8a90; font-size: 11px; }

@media only screen and (max-width: 1023px){
	body.homepage .mobile-nav{
		height: 64px !important;
		color: var(--dp-ink);
		border-color: var(--dp-line);
	}
	body.homepage .inner-nav{ margin-left: 0; }
	body.homepage .mobile-on .desktop-nav ul{ margin-top: 0; background: #fff; }
	body.homepage .mobile-on .desktop-nav ul > li > a{ height: 44px !important; line-height: 44px !important; }
	.language-switcher{ right: 74px; }
}
@media only screen and (max-width: 767px){
	body.homepage nav.main-nav .full-wrapper{ margin: 0 16px; }
	body.homepage .nav-logo-wrap{ width: 76px; }
	body.homepage .nav-logo-wrap .logo img{ height: 34px; max-height: 34px !important; max-width: 66px; }
	.dp-hero{ min-height: 520px; height: calc(100svh - 64px); }
	body.homepage .dp-hero .hero-logo{ width: min(310px, 76vw); margin-top: -6vh; }
	.dp-hero-tagline{ font-size: 13px; letter-spacing: 3px; }
	.dp-hero-subline{ max-width: 320px; margin-top: 12px; font-size: 12px; line-height: 1.5; }
	.dp-section{ padding: 76px 0; }
	.dp-section-grid,
	.dp-venture-body,
	.dp-principles-grid,
	.dp-contact-grid{ grid-template-columns: 1fr; }
	.dp-section-grid{ gap: 34px; }
	.dp-section-copy h1,
	.dp-section-copy h2{ font-size: 36px; }
	.dp-section-copy > .lang-en > p,
	.dp-section-copy > .lang-pt > p{ font-size: 16px; }
	.dp-venture-body{ gap: 6px; padding: 40px 0 46px; }
	.dp-venture-body > div:last-child p{ margin-top: 24px; }
	.dp-principles-grid{ gap: 30px; }
	.footer .full-wrapper{ align-items: flex-start; flex-direction: column; }
}
@media only screen and (max-width: 1023px){
	body.homepage .main-nav .mobile-nav{
		display: table !important;
		position: absolute;
		top: 0;
		right: 0;
		float: none;
		width: 56px !important;
	}
	body.homepage .main-nav .mobile-nav .fa{ display: none; }
	body.homepage .main-nav .mobile-nav:after{
		content: "\2630";
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-family: Arial, sans-serif;
		font-size: 22px;
		line-height: 1;
		color: var(--dp-ink);
	}	body.homepage .main-nav .language-switcher{
		display: flex !important;
		position: absolute;
		top: 0;
		right: 70px;
	}
}
@media only screen and (max-width: 420px){
	.language-switcher{ right: 62px; gap: 5px; }
	.language-switcher a{ padding-left: 0; padding-right: 0; }
}
/* Institutional scale refinement */
body.homepage .dp-hero .hero-logo{
	margin-top: calc(-9vh - 72px);
}
.dp-section-label{
	font-size: 14px;
}
.dp-section-copy > .lang-en > p,
.dp-section-copy > .lang-pt > p{
	font-size: 21px;
	line-height: 1.75;
}
.dp-capabilities span{
	font-size: 13px;
	padding: 11px 16px;
}
.dp-venture-meta,
.dp-coming-soon{
	font-size: 12px;
}
.dp-venture-body > div:last-child p,
.dp-principles-grid > div{
	font-size: 18px;
}
.dp-contact-grid span{
	font-size: 12px;
}
.dp-contact-grid strong{
	font-size: 16px;
}
@media only screen and (max-width: 767px){
	body.homepage .dp-hero .hero-logo{
		margin-top: calc(-6vh - 30px);
	}
	.dp-section-label{ font-size: 13px; }
	.dp-section-copy > .lang-en > p,
	.dp-section-copy > .lang-pt > p{ font-size: 18px; }
	.dp-capabilities span{ font-size: 12px; }
}
/* Institutional scale refinement 2 */
body.homepage .dp-hero .hero-logo{
	margin-top: calc(-9vh - 122px);
}
.dp-scroll-link{
	bottom: 28px;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}
.dp-scroll-link .fa{
	font-size: 18px;
}
.dp-section-label{
	font-size: 16px;
}
.dp-section-copy > .lang-en > p,
.dp-section-copy > .lang-pt > p{
	font-size: 23px;
	line-height: 1.7;
}
.dp-capabilities span{
	font-size: 14px;
}
.dp-venture-body > div:last-child p,
.dp-principles-grid > div{
	font-size: 20px;
}
.dp-contact-grid span{
	font-size: 13px;
}
.dp-contact-grid strong{
	font-size: 18px;
}
@media only screen and (max-width: 767px){
	body.homepage .dp-hero .hero-logo{
		margin-top: calc(-6vh - 55px);
	}
	.dp-scroll-link{ font-size: 12px; }
	.dp-section-label{ font-size: 14px; }
	.dp-section-copy > .lang-en > p,
	.dp-section-copy > .lang-pt > p{ font-size: 19px; }
	.dp-capabilities span{ font-size: 13px; }
}
/* Institutional footer */
.dp-footer{
	padding: 0;
	background: #0f1315;
	border-top: 1px solid rgba(255,255,255,.1);
}
.dp-footer .dp-footer-grid{
	display: grid;
	grid-template-columns: 120px minmax(240px, 1fr) minmax(260px, auto);
	align-items: center;
	gap: clamp(28px, 5vw, 72px);
	min-height: 150px;
	margin: 0 clamp(20px, 3vw, 56px);
}
.dp-footer-logo{
	display: flex;
	align-items: center;
	width: 100px;
	height: 72px;
	transform: translateY(-8px);
}
.dp-footer-logo img{
	display: block;
	width: auto;
	height: 60px;
	max-width: 100px;
	object-fit: contain;
	filter: none;
}
.dp-footer-signature{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.dp-footer-signature strong{
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}
.dp-footer-signature > span{
	margin-top: 6px;
	font-family: Lora, Georgia, serif;
	font-size: 13px;
	font-style: italic;
	color: #aeb8bd;
}
.dp-footer-meta{
	text-align: right;
}
.dp-footer-locations{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}
.dp-footer-locations span{
	padding: 0 8px;
	color: var(--dp-blue);
}
.dp-footer-meta small{
	display: block;
	margin-top: 9px;
	font-size: 11px;
	font-weight: 400;
	color: #7f8a90;
}
@media only screen and (max-width: 767px){
	.dp-footer .dp-footer-grid{
		grid-template-columns: 72px 1fr;
		gap: 22px;
		padding: 34px 0;
	}
	.dp-footer-logo{
		width: 64px;
		height: 56px;
		transform: translateY(-3px);
	}
	.dp-footer-logo img{
		height: 44px;
		max-width: 64px;
	}
	.dp-footer-meta{
		grid-column: 1 / -1;
		padding-top: 24px;
		border-top: 1px solid rgba(255,255,255,.1);
		text-align: left;
	}
}