/* ==== Google font ==== */
/*@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');*/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900');

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto',sans-serif;
	font-weight: 300;
    color: #666;
    background-color: #fff;
		margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px;
	text-transform: none;
	font-family: 'Roboto',sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 1.3em;
}

p {
	margin: 0 0 20px;
	font-size: 17px;
	line-height: 1.5em;
	text-align:left;
}

p.lead {
	font-weight: 600;
}

a {
    color: #28c3ab;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #f00;
}

.light {
    font-weight: 400;
}

/* ------------------------------ */
/* UTILITY                        */
/* ------------------------------ */

.bg-cover {
	background-repeat:no-repeat !important;
	background-position:center center !important;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.bg-contain {
	background-repeat:no-repeat !important;
	background-position:center center !important;
	-webkit-background-size: contain !important;
	-moz-background-size: contain !important;
	-o-background-size: contain !important;
	background-size: contain !important;
}

.bg-100 {
	background-repeat:no-repeat !important;
	background-position:center center !important;
	-webkit-background-size: 100% 100% !important;
	-moz-background-size: 100% 100% !important;
	-o-background-size: 100% 100% !important;
	background-size: 100% 100% !important;
}

.bg-pos-tc {background-position:top center !important;}
.bg-pos-tl {background-position:top left !important;}
.bg-pos-tr {background-position:top right !important;}

.bg-pos-cc {background-position:center center !important;}
.bg-pos-cl {background-position:center left !important;}
.bg-pos-cr {background-position:center right !important;}

.bg-pos-bc {background-position:bottom center !important;}
.bg-pos-bl {background-position:bottom left !important;}
.bg-pos-br {background-position:bottom right !important;}

.jumbo {
    min-height: 500px;
	min-height: 70vh;
}
.v-align {
	position: absolute !important;
	top: 50% !important;
	-webkit-transform: translateY(-50%)!important;
    -moz-transform: translateY(-50%)!important;
    -ms-transform: translateY(-50%)!important;
    -o-transform: translateY(-50%)!important;
    transform: translateY(-50%)!important;
}
.vh-align {
	position: absolute !important;
	width: 100%;
	left: 50% !important;
	top: 50% !important;
	-webkit-transform: translate(-50%, -50%)!important;
    -moz-transform: translate(-50%, -50%)!important;
    -ms-transform: translate(-50%, -50%)!important;
    -o-transform: translate(-50%, -50%)!important;
    transform: translate(-50%, -50%)!important;
}
/* ------------------------------- */
/* LOADER                          */
/* ------------------------------- */

#preloader {
    background: #000;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.spinner {
  	z-index: 9999;
	opacity: 1.00;
	width: 100%;
	text-align:center;
	position: absolute;
	top: 50%;
	margin: 0px auto 0 auto;
	left: 0;
	right: 0;
}

.spinner > div {
	width: 10px;
	height: 10px;
	background-color: #;
	margin:0 5px;
  
	border-radius: 0;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.40s;
	animation-delay: -0.40s;
	background-color: #009ee0;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.35s;
	animation-delay: -0.35s;
	background-color:#ec7015;
}
.spinner .bounce3 {
	-webkit-animation-delay: -0.30s;
	animation-delay: -0.30s;
	background-color:#97b214;
}
.spinner .bounce4 {
	-webkit-animation-delay: -0.25s;
	animation-delay: -0.25s;
	background-color:#007744;
}
.spinner .bounce5 {
	-webkit-animation-delay: -0.20s;
	animation-delay: -0.20s;
	background-color:#ffed00;
}
.spinner .bounce6 {
	-webkit-animation-delay: -0.15s;
	animation-delay: -0.15s;
	background-color:#e2007a;
}
.spinner .bounce7 {
	-webkit-animation-delay: -0.10s;
	animation-delay: -0.10s;
	background-color:#e2001e;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
	  -webkit-transform: scale(0);
	  transform: scale(0);
	} 40% { 
	  -webkit-transform: scale(1.0);
	  transform: scale(1.0);
	}
}

/* ------------------------------- */
/* SCROLLBAR                       */
/* ------------------------------- */

::-webkit-scrollbar{
    width:8px;
}
 
::-webkit-scrollbar-track{
    border-radius:0px; 
    background:#eee;
}

::-webkit-scrollbar-thumb{
    border-radius:0px; 
    background:rgba(0,158,224,1);
	border:0px solid #FFF;
}

/* ------------------------------- */
/* PARALLAX                        */
/* ------------------------------- */

.parallax-window {
    min-height: 400px;
    background: transparent;
}



.navbar {
    margin-bottom: 0;
    border-bottom: 0px solid rgba(255,255,255,.3); /*S*/
	
}

.navbar-header {
	/*background-color:  rgba(0,0,0,1);*/
}

.navbar-brand {
    font-weight: 700;
	font-size: 1em;
	line-height: 1em;
	text-shadow: 1px 1px 2px #000;
}
.navbar-brand {
	padding: 0px 15px ;
	height:50px;
}

.navbar-brand img {
	height: 30px;
	opacity:0;
	margin-top:-50px;
}

.navbar-brand h1{
	color: #FFF;
	font-size: 1em;
	line-height: 40px;
}

.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background-color:  rgba(0,0,0,0.7);
}

.top-nav-collapse {
	background-color:  rgba(0,0,0,1);
	-webkit-transition: background .5s ease-in-out;
	-moz-transition: background .5s ease-in-out;
	transition: background .5s ease-in-out;
}

.top-nav-collapse .navbar-brand img {
	height: 30px;
	opacity:1;
	margin-top:10px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.navbar-custom.top-nav-collapse .nav.navbar-nav {
    background-color: rgba(0,0,0,0.7);
}


.navbar-custom ul.nav li a {
	font-size: 12px;
	letter-spacing: 2px;
    color: #fff; /*S*/
	text-transform: uppercase;
	font-weight: 700;
}

.navbar-custom.top-nav-collapse ul.nav li a {
	    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color: #fff;
}

.navbar-custom ul.nav ul.dropdown-menu {
	  border-radius: 0;	
}

.navbar-custom ul.nav ul.dropdown-menu li {
	border-bottom: 0px solid #f5f5f5; /*S*/

}

.navbar-custom ul.nav ul.dropdown-menu li:last-child{
	border-bottom: none;
}

.navbar-custom ul.nav ul.dropdown-menu li a {
	padding: 10px 30px;
	color: #000;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	color: #fff;
	background-color:  rgba(0,158,224,0.8);
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a {
	/*color: #000;*/
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(255,255,255,.2);
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(255,255,255,.2);
}

.navbar-toggle {
    padding: 0px 15px;
	height:50px;
	width:50px;
    color: #fff;
	font-size: 1.5em;
	/*text-shadow: 1px 1px 2px #000;*/
	background-color: rgba(0,0,0,0.3);
	border-radius:0px;
	margin:0 0px 0 0;
	border:0;
	/*height: 1em;
	padding: 9px 10px;
	font-size: 1em;
	line-height:1em;
	margin: 8px 5px 8px 0px;*/
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}

.navbar-collapse {
    max-height: 340px;
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 0px solid transparent;
    box-shadow: inset 0 0px 0 rgba(255,255,255,.1);
    -webkit-overflow-scrolling: touch;
}

.dropdown-menu {
	background-color: rgba(255,255,255,0.8) !important;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    border: 0px solid #ccc !important;
    border: 0px solid rgba(0,0,0,.15) !important;
    border-radius: 0px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	}



/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}


/* ------------------------------- */
/* SWIPER                          */
/* ------------------------------- */

.swiper-container {
	width: 100%;
	height: auto;
	margin: 0;
}

.swiper-slide {
	padding:40px 0;
	
	background-position:center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.swiper-button-prev {
    background-image:url(../js/swiper/prev-w.svg);
	background-size:50%;
    left: 10px;
    right: auto;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.swiper-button-prev:hover {
    background-image:url(../js/swiper/prev.svg);
}

.swiper-button-next {
    background-image:url(../js/swiper/next-w.svg);
	background-size:50%;
    right: 10px;
    left: auto;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.swiper-button-next:hover {
    background-image:url(../js/swiper/next.svg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .15;
    cursor: auto;
    pointer-events: none;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(0,158,224,1);
}

/* ------------------------------- */
/* SECTION COVER (INTRO SWIPER)    */
/* ------------------------------- */

.swiper-cover {
	min-height: 450px;
	display:block;
	position:relative;
}

.swiper-cover img {
	margin:0 auto;
}


.swiper-cover h1 {
	color:#fff;
	/*text-shadow: 1px 1px 0px rgba(0,0,0,0.5);*/
	font-weight:500;
	font-size:30px;
}

.swiper-cover h3 {
	color:#fff;
	font-weight:300;
	font-size:24px;
	margin-bottom:20px;
}

.swiper-cover h5 {
	color:#fff;
	text-transform:uppercase;
	font-weight:300;
}

.swiper-cover p {
	color:#ddd;
	font-weight:300;
	font-size:18px;
	max-height:110px;
	overflow:hidden;
}

/* ------------------------------- */
/* SWIPER PARALLAX                 */
/* ------------------------------- */

.parallax-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 130%;
	height: 100%;
	background-position:center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: bottom center;
	background-repeat:no-repeat;
}
.parallax-bg span {
	position: absolute;
	left: 0;
	right:0;
	top: 0;
	bottom:0;
	background-color:rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	background-position:center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}

/* ------------------------------- */
/* SWIPER NEWS                     */
/* ------------------------------- */

.swiper-news {
	width: 100%;
	height: 100%;
    overflow:hidden;
	margin:0;
	background-color:transparent;
}

.swiper-news .swiper-slide {
	padding:0 0 30px 0;
	
	background-position:center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;;
	align-items: flex-start;;
}

.swiper-image-news {
	padding:0;
	width:100%;
	height:120px;
	
	background-position:center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.swiper-news a:hover {
	opacity: 0.5;
}

.swiper-news img {
	display:block;
	margin:0 auto;
}

.swiper-news h1 {
	color:rgba(151,179,20,1);
	/*text-shadow: 1px 1px 0px rgba(0,0,0,0.5);*/
	font-weight:500;
	font-size:18px;

}

.swiper-news h3 {
	color:#fff;
	font-weight:300;
	font-size:14px;
	margin-bottom:10px;

}

.swiper-news h5 {
	color:#fff;
	text-transform:uppercase;
	font-weight:300;
	font-size:12px;
}

.swiper-news p {
	color:#aaa;
	font-weight:300;
	font-size:14px;
	line-height:1.3em;
	max-height:110px;
	overflow:hidden;
}

/* ------------------------------- */
/* NEWS PAGINATION                 */
/* ------------------------------- */

.pager li>a, .pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: transparent;
    border: 1px solid #aaa;
    border-radius: 0px;
}

.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span {
    color: #999;
    background-color: transparent;
    cursor: not-allowed;
	opacity:0.5;
}
/* ===========================
--- General sections
============================ */

.home-section {
    padding-top: 90px;
    padding-bottom: 70px;
	display:block;
    position:relative;
    z-index:120;
}

.contact-section {
    padding-top: 30px;
    padding-bottom: 30px;
	display:block;
    position:relative;
    z-index:120;
}


.section-heading h2 {
	font-size: 30px;
}
.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f2f2f2; /*#f8f8f8*/
}

.bg-dark {
	background: #575757;
}

.bg-black {
	background: #000;
}

.bg-subscript {
	background: #f2f2f2;
	padding: 14px 14px 1px 14px;
	border-radius:4px;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}

/*===============
  COLORI FIDELITAS
===============*/
.color-bianco {color:#FFF;}
.bg-color-bianco {background-color:#FFF;}

.color-nero {color:#000;}
.bg-color-nero {background-color:#000;}

.color-grigio {color:#999;}
.bg-color-grigio {background-color:#999;}

.color-grigio-eee {color:#eee;}
.bg-color-grigio-eee {background-color:#eee;}

.color-grigio-ccc {color:#ccc;}
.bg-color-grigio-ccc {background-color:#ccc;}

.color-ciano {color: rgba(0,158,224,1);}
.bg-color-ciano {background-color: rgba(0,158,224,1);}

.color-magenta {color: rgba(226,0,122,1);}
.bg-color-magenta {background-color: rgba(226,0,122,1);}

.color-rosso {color: rgba(226,0,30,1);}
.bg-color-rosso {background-color: rgba(226,0,30,1);}

.color-arancio {color: rgba(236,112,21,1);}
.bg-color-arancio {background-color: rgba(236,112,21,1);}

.color-verde-1 {color: rgba(151,179,20,1);}
.bg-color-verde-1 {background-color: rgba(151,179,20,1);}

.color-verde-2 {color: rgba(50,153,153,1);}
.bg-color-verde-2 {background-color: rgba(50,153,153,1);}

.color-giallo {color: rgba(255,237,0,1);}
.bg-color-giallo {background-color: rgba(255,237,0,1);}


/* ------------------------------- */
/* SHAMET BUTTON SKIN              */
/* ------------------------------- */

.sha-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.sha-btn-default {
    color:#fff;
    background-color: rgba(0,158,224,1);
    border-color: rgba(0,158,224,1);
	
	padding:0 20px;
	
	font-size: 14px;
	font-weight: 500;
	line-height:3;
	letter-spacing:2px;
	text-transform:uppercase;
}

.sha-btn-default:hover, .sha-btn-default:active, .sha-btn-default:focus {
    color:#fff;
    background-color: rgba(226,0,30,1);
    border-color: rgba(226,0,30,1);
}

/*===============
  IMMAGINI
===============*/

.img-leader {
	width:100%;
	height:auto;
	background: url(../img/2-leader.jpg) no-repeat center top;
	/*background-attachment: fixed;*/
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-color:#000;
}

.img-leader2 {
	display:block;
	width:100%;
	height:auto;
	background: url(../img/2-leader.jpg) no-repeat right top;
	background-color:#000;
	background-size: 100%;
	margin-bottom:20px;
}

/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	height:calc(100vh - 50px);
	background: url(../img/1-index.jpg) no-repeat center top;
	/*background-attachment: fixed;*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-color:#333;
	overflow: hidden;
}

#intro.intro {
	padding:0px 0 0 0;
}

.intro .slogan {
	text-align: center;
}

.intro .page-scroll {
	text-align: center;
	
	position:absolute;
	top:auto;
	bottom:0;
	left:0;
	right:0;
}

.intro .page-top-btn {
	text-align: center;
	
	position:absolute;
	top:0;
	bottom:auto;
	left:0;
	right:0;
	z-index: 99999;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.img-responsive-logo {
	display:block;
	max-width:50%;
	margin:0 auto 10px auto;
	
}

.pippo-table{
	/*position:fixed;*/
	width: 100%;
    height: 100%;
    display: table;
	text-align:center;
	background-color: rgba(0, 0, 0, 0.5);
}

.pippo-cell{
	display: table-cell;
    vertical-align: middle;
	position: relative;
}

.pippo-table-1{
	/*position:fixed;*/
	width: 100%;
    height: 100%;
    display: table;
	text-align:center;
}

.intro .slogan h2 {
	color: #000;
	text-shadow: none;
	font-size: 5vw;
	line-height: 5vw;
	font-weight: 700;
	font-family: 'Roboto',sans-serif;
	/*background-color: rgba(0, 0, 0, 0.3);*/
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	text-shadow: 0px 0px 15px #FFF;
	margin:10px 0 0 0;
}

.intro .slogan h4 {
	font-size: 2em;
	line-height: auto;
	color: #fff;
	/*background-color: rgba(51, 153, 153, 0.6);*/
	/*text-shadow: 0px 0px 15px #000;*/
}



/* ===========================
--- About
============================ */

.boxed-grey {
	background: #f2f2f2 /*#f9f9f9*/;
	padding: 10px;
	border-radius:4px;
}

.boxed-grey2 {
	background: #f9f9f9;
	padding: 0;
	margin-top:20px;
	text-align:left;
}

.team h5 {
	margin-bottom: 10px;
}

.team p.subtitle {
	margin-bottom: 10px;
}

.avatar {
	margin-bottom: 10px;
}

.team-social {
	margin-left: 0;
	padding-left: 0;
	
}

.team-social {
	text-align: center;
}

.team-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.team-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.team-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.team-social .social-facebook a{background: #3873ae;}
.team-social .social-twitter a{background: #62c6f8;}
.team-social .social-dribble a{background: #d74980;}
.team-social .social-deviantart a{background: #8da356;}
.team-social .social-google a{background: #000;}
.team-social .social-vimeo a{background: #51a6d3;}
.team-social .social-facebook a:hover{background: #4893ce;}
.team-social .social-twitter a:hover{background: #82e6ff;}
.team-social .social-dribble a:hover{background: #f769a0;}
.team-social .social-deviantart a:hover{background: #adc376;}
.team-social .social-google a:hover{background: #333;}
.team-social .social-vimeo a:hover{background: #71c6f3;}


/* ===========================
--- Services
============================ */

.service-icon {
	margin-bottom: 20px;
}

.service-icon-outline {
	display:inline-block;
	width:52px;
	height:52px;
	border-radius: 100%;
	border-width:1px;
	border-color:#CCC;
	border-style:solid;
	padding:10px;
}	

.service-icon-img {
	width:auto;
	height:100%;
}

/* ===========================
--- Contact
============================ */

form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	color: #666;
}
form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 0;
	border: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow:  none;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
	border-color:#009ee0;
	background-color:#f9f9f9;
	-webkit-box-shadow: 0 0px 5px rgba(0,158,224,0.5);
	box-shadow: 0 0px 5px rgba(0,158,224,0.5);
}

.input-group-addon {
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	border-right: 0px solid #fff;
	border-radius: 0;
}

.checkbox-group-addon {
	background-color: #fff;
	border-radius: 0;
	margin-left:23px;
	text-indent:-23px;
}

.checkbox-group-addon span {
	text-align:left;
	padding-left:10px;
}

.widget-contact {
	text-align: left;
}


.company-social {
	margin-left: 0;
	padding-left: 0;
	margin-top: 10px;
}

.company-social {
	text-align: left;
}

.company-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.company-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.company-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.company-social .social-facebook a{background: #3873ae;}
.company-social .social-twitter a{background: #62c6f8;}
.company-social .social-dribble a{background: #d74980;}
.company-social .social-deviantart a{background: #8da356;}
.company-social .social-google a{background: #000;}
.company-social .social-vimeo a{background: #51a6d3;}
.company-social .social-facebook a:hover{background: #4893ce;}
.company-social .social-twitter a:hover{background: #82e6ff;}
.company-social .social-dribble a:hover{background: #f769a0;}
.company-social .social-deviantart a:hover{background: #adc376;}
.company-social .social-google a:hover{background: #333;}
.company-social .social-vimeo a:hover{background: #71c6f3;}



/* ===========================
--- Footer
============================ */

footer {
	text-align: left;
	padding: 30px 0 0 0 ;
	background-color:  rgba(0,0,0,1);
	margin:0;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
}

footer hr {
	border:1px solid #222;
}

footer p {
	color: #f8f8f8;
}

.logo-footer {
	position: relative;
}
.logo-footer::before {
	position: absolute;
	content: '';
	display: block;
	height: 2px;
	width: calc(50% - 100px);
	top: calc(50% - 1px);
	left: 0;
	background-color: #333;
}
.logo-footer::after {
	position: absolute;
	content: '';
	display: block;
	height: 2px;
	width: calc(50% - 100px);
	top: calc(50% - 1px);
	right: 0;
	background-color: #333;
}

/*===============
  COVER
===============*/

.cover {
	background-color:#FFF;
	background-attachment:fixed;
	background-image:url(../img/tl_intro3.jpg);
	background-repeat:no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position:50% 0;
	/*position:relative;*/
}

/* ==========================
Separator
============================= */

#separator-n {	
	display:block;
	height:1.3em;
	width:100%;
	background:url(../img/barra-n.jpg) no-repeat top center;
	-webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
}

#separator-b {	
	display:block;
	height:1.3em;
	width:100%;
	background:url(../img/barra-b.jpg) no-repeat top center;
	-webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
}

#separator .icon {
	margin-bottom: 20px;
	margin-top: 20px;
	color: #fff;
}

#separator span {
	color: #fff;
}

/*#separator:after {	
	background: url(../img/bg31600.jpg) top left no-repeat;
	background-attachment: fixed;
	content: " ";
	position: ;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 1.7;
	z-index: -1;
}*/


/* ===========================
--- Elements
============================ */

.btn {
	border-radius: 0px;
    text-transform: uppercase;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.btn-circle {
    width: 50px;
    height: 50px;
    margin-top: 0px;
	margin-bottom: 0px;
    padding: 10px;
    border: 0px solid #fff;
    border-radius: 0;
    font-size: 20px;
    color: #fff;
    background: 0 0;
	background-color: rgba(0,158,224,1);
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #000;
    background: rgba(255,255,255,1);
	
	box-shadow: inset 0px 0px 0px #000;
	-webkit-box-shadow: inset 0px 0px 0px #000;
	-moz-box-shadow: inset 0px 0px 0px #000;
	-o-box-shadow: inset 0px 0px 0px #000;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
	height: 500px;
}

.btn-skin {
  color: #fff;
  background-color: rgba(0,158,224,1); /*#0b3354;*/
  border-color: rgba(0,158,224,1); /*#0b3354;*/
  border:none;
}

.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: rgba(226,0,30,1); /*#666;*/
  border-color: rgba(226,0,30,1); /*#666;*/
}

.btn-skin-2 {
  color: #fff;
  background-color: rgba(0,158,224,1); /*#0b3354;*/
  border-color: rgba(0,158,224,1); /*#0b3354;*/
  border:none;
  padding:10px 30px !important;
  border-radius:100px;
}

.btn-skin-2:hover,
.btn-skin-2:focus,
.btn-skin-2:active,
.btn-skin-2.active {
  color: #fff;
  background-color: rgba(226,0,30,1); /*#666;*/
  border-color: rgba(226,0,30,1); /*#666;*/
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 16px;
    font-size: 18px;
}

.banner-social-buttons {
    margin-top: 0;
}

.btn-contact-skin {
	width:100%; 
	background-color: #fff;
	padding:15px;
	border-radius:0px;
	border:2px solid #ddd;
}
.btn-contact-skin:hover,
.btn-contact-skin:focus {
  background-color: #009ee0;
  color:#FFF;
  border:2px solid #009ee0;
}


/* Media queries */

@media(min-width:767px) {

    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        /*background: 0 0;*/
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
		background-color:  rgba(0,0,0,0);
    }

.navbar img {
        margin-top: 0px;
}

    .top-nav-collapse {
        padding: 0px 0 0 0;
        background-color:  rgba(0,0,0,1);
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 0px solid rgba(255,255,255,.3);
    }
	
    .intro {
        height: 100vh;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	
    .intro-text {
        font-size: 25px;
    }

	.navbar-brand img {
		height: 30px;
		opacity:0;
		margin-top:-50px;
	}

}
@media (max-width:768px) {
	
	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
	}
	
	.dropdown-menu {
	background-color: rgba(255,255,255,1) !important;
	}
}

@media (max-width:480px) {

	.navbar-custom .nav.navbar-nav {
    /*background-color: rgba(255,255,255,.4*/);
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 0px;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 50px;
		height: 50px;
		margin-top: 0px;
		padding: 10px;
		border: 0px solid #fff;
		border-radius: 0;
		font-size: 20px;
	}
	
	.img-responsive-logo {
		/*display:block;
		max-width:70%;
		height:auto;
		margin:40% auto 0 auto;*/
	}
	
	.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 13vw;
	line-height: 13vw;
	font-weight: 700;
	font-family: 'Roboto',sans-serif;
	/*background-color: rgba(0, 0, 0, 0.3);*/
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	/*text-shadow: 0px 0px 5px #000;*/
	margin:10px 0 0 0;
}

.intro .slogan h4 {
	font-size: 5vw;
	line-height: 5vw;
	color: #fff;
	/*background-color: rgba(51, 153, 153, 0.6);*/
	/*text-shadow: 0px 0px 5px #000;*/
}
}

/* ===========================
--- Shamet add-on
============================ */

.label_levelbar {
	display:block;
	position:relative;
	text-align: left;
	font-weight:normal;
	/*text-transform: uppercase;*/
	letter-spacing: 1px;
	font-size: 13px;
	margin: 10px 0 10px 10px;
	color:#333;
}

.levelbar {
	display:block;
	border-radius: 10px;
	border-width:0px;
    text-transform: uppercase;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	width:auto;
	margin:4px;
	padding:0px;
	background:#ddd url() top left ;
}

.levelbar_int {
	display:block;
	border-radius: 10px;
	border-width:0px;
    text-transform: uppercase;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	margin:0px;
	padding:6px;
	background:#390 url() top left;
	box-shadow:0 6px 1px rgba(255, 255, 255, 0.3) inset, 0px 0px 5px rgba(0, 0, 0, 0.0);
}

.levelbar20 {width:20%;}
.levelbar40 {width:40%;}
.levelbar60 {width:60%;}
.levelbar80 {width:80%;}
.levelbar100 {width:auto;}


.skill-icon-group {
	margin: 20px 0 20px 0;
}

.skill-icon-outline {
	display:inline-block;
	padding: 0 5px 0 5px;
}	

.skill-icon-img {
	width:auto;
	height:19px;
}

/* ------------------------------- */
/* YOUTUBE VIDEO RESPONSIVE        */
/* ------------------------------- */

.video-16-9 
{
position:         relative;
padding-top:      0px;
padding-bottom:   56.25%;
height:           0;
overflow:         hidden;
}

.video-16-9 iframe
{
position:  absolute;
top:       0;
left:      0;
width:     100%;
height:    100%;
}

.video-4-3 
{
position:         relative;
padding-top:      30px;
padding-bottom:   75%;
height:           0;
overflow:         hidden;
}

.video-4-3 iframe
{
position:  absolute;
top:       0;
left:      0;
width:     100%;
height:    100%;
}

/* ------------------------------- */
/* CHECKUP OBIETTIVO               */
/* ------------------------------- */

.check-up-or {
	position:absolute; 
	left:0; 
	bottom:0; 
	width:250px;
}
.click {
	position:absolute; 
	top:0; 
	left:0; 
	width:100%; 
	text-align:center;
}

.click span {
	display:inline-block; 
	font-weight:700; 
	padding:5px 10px; 
	margin:0 auto; 
	background-color:rgba(0,0,0,0.5); 
	border-radius:100px;
	
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.check-up-or:hover .click span {
	background-color:rgba(0,158,224,1);
	color:#000;
}

@media (max-width:767px) {
	.check-up-or {
		position:absolute; 
		left:0; 
		bottom:0; 
		width:150px;
	}
	.click {
		position:absolute; 
		top:-10px; 
		left:0; 
		width:100%; 
		text-align:center;
	}
}

.intro-btn-dx {
	position:absolute; 
	right:15px; 
	bottom:0; 
	width:220px;
}

.intro-btn-top-sx {
	position:absolute;
	display: block;
	left:15px;
	top:15px;
	width:200px;
	z-index: 99999;
}

@media (max-width:960px) {
	.intro-btn-top-sx {
		position:absolute; 
		left:0; 
		right: 0;
		top:100px;
		margin: 0 auto;
		width:200px;
	}
}
@media (max-width:767px) {
	.intro-btn-dx {
		position:absolute; 
		right:15px; 
		bottom:0; 
		width:120px;
	}
	.intro-btn-top-sx {
		position:absolute; 
		left:0; 
		right: 0;
		top:50px;
		margin: 0 auto;
		width:120px;
	}
}

/* ------------------------------- */
/* PRIVACY FORM (MINIFY IN HTML!)  */
/* ------------------------------- */

.privacy-form {
	padding:30px;
	border:1px solid #eee;
	
}
.privacy-form  {
	width:100%;
	max-width:800px;
	border:1px solid #eee;
	margin:0 auto;
	text-align:left
}

.privacy-form label {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-top:3px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align:left;
  font-size:16px;
  line-height:1.4;
    -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.privacy-form label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius:2px;
  background-color: #eee;
    -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.privacy-form label:hover input ~ .checkmark {
  background-color: #ccc;
}
.privacy-form label input:checked ~ .checkmark {
  background-color: transparent; /*#2196F3*/
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.privacy-form label input:checked ~ .checkmark:after {
  display: block;
}

.privacy-form label .checkmark:after {
  left: 9px;
  top: 4px;
  width: 8px;
  height: 14px;
  border: solid #0C0;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.privacy-form p {
	font-size:14px;
	padding-left:40px;
}

/* ------------------------------- */
/* MEDIA QUARIES BREAKPOINTS       */
/* ------------------------------- */

@media (min-width:599px) {.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}

@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}

@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}