/* ==== Google font ==== */
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');


/* BACKGROUND COLORS */

.bg-black { background-color: #111111 !important; }
.bg-white { background-color: #FFFFFF !important; }
.bg-offwhite { background-color: #F5F5F5 !important; }
.bg-clouds { background-color: #ECF0F1 !important; }
.bg-silver { background-color: #BDC3C7 !important; }
.bg-concrete { background-color: #95A5A6 !important; }
.bg-asbestos { background-color: #7F8C8d !important; }
.bg-tan { background-color: #D1DBBD !important; }
.bg-pewter { background-color: #91AA9D !important; }
.bg-moonlight { background-color: #3E606F !important; }
.bg-deepocean { background-color: #062f43 !important; }
.bg-turquoise { background-color: #1ABC9C !important; }
.bg-aqua { background-color: #16A085 !important; }
.bg-sunflower { background-color: #F1C40F !important; }
.bg-sienna { background-color: #BF4E19 !important; }
.bg-milanored { background-color: #AC1C00 !important; }
.bg-river { background-color: #3498DB !important; }
.bg-marina { background-color: #2980B9 !important; }
.bg-deco { background-color: #C9D787 !important; }
.bg-crete { background-color: #7D8A2E !important; }
.bg-guardsman { background-color: #D90000 !important; }
.bg-pomegranate { background-color: #C0392B !important; }
.bg-finn { background-color: #723147 !important; }
.bg-tamarind { background-color: #31152B !important; }
.bg-lesoft { background-color: #005b9b !important; }
.bg-lesoft2 { background-color: #f8f8f8 !important; }
.bg-logistics { background-color: #084ca0 !important; }



/* COLORS */

.black { color: #111111; }
.white { color: #FFFFFF; }
.offwhite { color: #F5F5F5; }
.clouds { color: #ECF0F1; }
.silver { color: #BDC3C7; }
.concrete { color: #95A5A6; }
.asbestos { color: #7F8C8d; }
.tan { color: #D1DBBD; }
.pewter { color: #91AA9D; }
.moonlight { color: #3E606F; }
.deepocean { color: #193441; }
.turquoise { color: #1ABC9C; }
.aqua { color: #16A085; }
.sunflower { color: #F1C40F; }
.sienna { color: #BF4E19; }
.milanored { color: #AC1C00; }
.river { color: #3498DB; }
.marina { color: #2980B9; }
.deco { color: #C9D787; }
.crete { color: #7D8A2E; }
.guardsman { color: #D90000; }
.pomegranate { color: #C0392B; }
.finn { color: #723147; }
.tamarind { color: #31152B; }
.orange { color: #ff6600; }


body {
    width: 100%;
    height: 100%;
    font-family: 'Lato',sans-serif;
	font-weight: 300;
    color: #666;
    background-color: #fff;
	text-align: center;
}

html {
    width: 100%;
    height: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
	color: #084ca0;
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
	margin: 15px 0;
}

p.lead {
	font-weight: 600;
}

p span {
    color: #ff6600;
	font-weight: 500;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #084ca0;
}

small, .small {
	font-size: 80%;
	line-height: 2;
}

.light {
    font-weight: 400;
}


/*===================================================================================*/
/*	BUTTONS
/*===================================================================================*/

.btn {
    color: #FFF;
    padding: 10px 20px;
	margin: 15px 0;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
	letter-spacing: 0.1em;
    text-shadow: none;
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.btn-sm {
    padding: 7px 13px;
	font-size: 12px;
}

.btn-lg {
    padding: 16px 26px;
	font-size: 16px;
}

.btn-xl {
	padding: 18px 30px;
	font-size: 24px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

h1 .btn,
h2 .btn,
h3 .btn,
h4 .btn,
p .btn {
	margin-left: 15px;
}

/* Button DISABLED */
.disabled a {
	cursor: not-allowed;
}

/* Button DEFAULT */
.btn.btn-default {
	background: #084CA0;
	box-shadow: 0 2px #FF7B04;
	color: #999;
}

.btn.btn-default:hover {
	background: #FF7B04;
}

/* Button PRIMARY */
.btn.btn-primary {
	background: #084CA0;
	box-shadow: 0 2px #FF7B04;
}

.btn.btn-primary:hover {
	background: #FF7B04;
}

/* Button WARNING */
.btn.btn-warning {
	background: #ff6600;
	box-shadow: 0 2px #bc4b00;
}

.btn.btn-warning:hover {
	background: #bc4b00;
}

/* Button DANGER */
.btn.btn-danger {
	background: #e74c3c;
	box-shadow: 0 2px #c0392b;
}

.btn.btn-danger:hover {
	background: #c0392b;
}

/* Button SUCCESS */
.btn.btn-success {
	background: #2ecc71;
	box-shadow: 0 2px #27ae60;
}

.btn.btn-success:hover {
	background: #27ae60;
}

/* Button DARK */
.btn.btn-dark {
	background: #34495e;
	box-shadow: 0 2px #2c3e50;
	color: #ffffff;
}

.btn.btn-dark:hover {
	background: #2c3e50;
}

/* Button INFO */
.btn.btn-info {
	background: #3498db;
	box-shadow: 0 2px #2980b9;
}

.btn.btn-info:hover {
	background: #2980b9;
}

/* Outline Buttons */
.btn-outline {
	color: #FFF;
    padding: 12px 20px;
	margin: 15px 0;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
	letter-spacing: 0.1em;
    text-shadow: none;
    border: none;
    text-transform: uppercase;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.btn-outline:hover {
	text-decoration: none;
	color: #ffffff;
}

.btn-outline-sm {
	padding: 5px 13px;
	font-size: 13px;
}

.btn-outline-lg {
	padding: 14px 26px;
	font-size: 15px;
}

.btn-outline-xl {
	padding: 18px 30px;
	font-size: 24px;
	
}

.btn-outline.outline-light,
.icon.outline-light {
	color: #ffffff;
	background: none;
	border: 2px solid #ffffff;
}

.btn-outline.outline-light:hover,
.icon.outline-light:hover {
	color: #2c3e50;
	background: #ffffff;
}

.btn-outline.outline-dark,
.icon.outline-dark {
	color: #ff6600;
	background: none;
	border: 2px solid #ff6600;
}

.btn-outline.outline-dark:hover,
.icon.outline-dark:hover {
	color: #ffffff;
	background: #ff6600;
}

button:hover {
	text-decoration: none;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


.navbar {
    margin-bottom: 0;
    /*border-bottom: 1px solid rgba(255,255,255,.3);*/
	
}

.navbar-brand {
    font-weight: 700;
}
.navbar-brand {
  height: 40px;
  padding: 5px 28px;
  font-size: 18px;
  line-height: 1em;
}

.navbar-brand h1{
	color: #fff;
  	font-size: 20px;
  	line-height: 40px;
}

.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background-color: rgba(255,255,255,.95);
}

.navbar-custom.top-nav-collapse .nav.navbar-nav {
    background-color: rgba(0,0,0,0);
}


.navbar-custom ul.nav li a {
	font-size: 12px;
	letter-spacing: 1px;
    color: #084ca0;
	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: 1px solid #f5f5f5;*/
	border: none;

}

.navbar-custom ul.nav ul.dropdown-menu li:last-child{
	border-bottom: none;
}

.navbar-custom ul.nav ul.dropdown-menu li a {
	padding: 10px 20px;
	color: #084ca0;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	background: rgba(0,0,0,0);
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a {
	color: #3fccff;
}

.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(63,204,255,.2);
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(63,204,255,.2);
}

.navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #3fccff;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}

/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}


#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 10%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
}

#load {
	z-index: 9999;
  background-color: #FF4136;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #FF4136;
  box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
  animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
  color: #084ca0;
}


/* 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;}
.marginbot-60{margin-bottom:60px !important;}
.marginbot-80{margin-bottom:80px !important;}

/* ===========================
--- General sections
============================ */

.home-section {
    padding-top: 50px;
    padding-bottom: 50px;
	display:block;
    position:relative;
    z-index:120;
}


.home-section-grupo {
    padding-top: 10px;
    padding-bottom: 10px;
	display:block;
    position:relative;
    z-index:120;
	background: #084ca0;
}


.section-heading h2 {
	font-size: 36px;
	color: #084ca0;
}

.section-grupo h2 {
	font-size: 36px;
	color: #fff;
	padding: 30px 0 0 0;
}

.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
	width: 700px;
	border: 5px solid #FF7B04;
  	top: 5%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}

.bg-gray {
	background: #f8f8f8;
}

.bg-blue {
	background: #084ca0;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}



/* ===========================
--- Intro
============================ */
.brand-heading {
    font-size: 30px;
}

.intro {
	width:100%;
	background-size: cover !important;
	background-position: 50% 50% !important;
	position:relative;
	background: url(../img/bg1.jpg) no-repeat top center;
}

#intro.intro {
	padding: 1% 0 0 0;
}

.intro .slogan {
	text-align: center;
}

.intro .page-scroll {
	text-align: center;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
	font-family: Montserrat, sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	text-shadow: -1px 0 1px #000;
}

.intro .slogan h4 {
	color: #fff;
	text-shadow: -1px 1px 1px #000;
}

/* ===========================
--- About
============================ */

.boxed-grey {
	display: inline-block;
	background: #f5f5f5;
	padding: 20px;
}

.boxed-grey:hover {
	
	background: rgba(63,204,255,.2);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	cursor:pointer;
}

.team h5 {
	margin-top: 10px;
	margin-bottom: 10px;
}


.team p.subtitle {
	margin-bottom: 10px;
	line-height: 20px;
}

.avatar {
	margin: 40px 0 20px 0;
	text-align: center;
}

.avatar a{
	background:#BF1619;
	
	}

.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: 40px;
}	



/* ===========================
--- Contact
============================ */

/*	CONTACT 1
/*----------------------------------------------------*/

.contact-1 .form-container {
	margin-top: 0px;
}

.contact-1 .contact-info {
	margin-top: 40px;
	padding: 0;
	list-style: none;
}

.contact-1 .contact-info span {
	margin-right: 7px;
	color: #3fccff;
	padding-right: 5px;
}

.contact-1 .contact-info li {
	display: inline-block;
	margin: 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: #084ca0;
}

.contact-1 .contact-info li a {
	color: #084ca0;
}

.contact-1 .contact-info li a:hover {
	color: #3fccff;
}

#contact span.required {
	font-size: 13px;
	color: ff0000;
}

#message {
	margin-bottom: 20px;
	padding: 0;
}

.error_message {
	display: block;
	background: #FBE3E4;
	padding: 10px 0;
	color: #8a1f11;
	border: 2px solid #FBC2C4;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.contact-2 h2 {
	margin-top: 0;
}

.contact-2 .map-img {
	margin: 40px 0;
}

#contact span.required {
	font-size: 13px;
	color: #ff0000;
}

#message {
	margin-bottom: 20px;
	padding: 0;
}

.error_message {
	display: block;
	background: #FBE3E4;
	padding: 10px 0 10px 15px;
	color: #8a1f11;
	border: 2px solid #FBC2C4;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.contact-3 .map {
	width: 100%;
	height: 350px;
	background: #f5f5f5;
}


/*===================================================================================*/
/*	SOCIAL ICONS
/*===================================================================================*/

.social {
    padding: 15px 0 0 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 100;
}

.social li {
    display: inline-block;
    margin-right: 6px;
}

.social li a {
    display: table;
	position: relative;
}

.social li a i {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	font-size: 32px;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.social-light li a i {
	color: #ffffff;
}

.social-dark li a i {
	color: #666666;
}

.social li a i:after {
	content: '';
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.social li a:hover i {
	color: #f0f0f0;
}
.social li a:hover i:after {
	height: 100%;
}
.social a .fa-facebook:after {
    background: #314d89;
}
.social a .fa-google-plus:after {
    background: #dd4b39;
}
.social a .fa-twitter:after {
    background: #00aced;
}
.social a .fa-pinterest:after {
    background: #CB2027;
}
.social a .fa-behance:after {
    background: #1769FF;
}
.social a .fa-dribbble:after {
    background: #EA4C89;
}




/* FORM CONTROL */

fieldset {
	border: 2px solid #ecf0f1;
	border-radius: 6px;
	padding: 30px 50px;
}

fieldset legend {
    color: #333;
    padding: 5px 10px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
}

.form-control {
	border: 2px solid #ecf0f1;
	color: #34495e;
	font-size: 14px;
	line-height: 1.467;
	padding: 8px 12px;
	height: 40px;
	-webkit-appearance: none;
	border-radius: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
	transition: border .25s linear, color .25s linear, background-color .25s linear;
}

.form-group {
	position: relative;
	margin-bottom: 10px;
}

.form-group.focus .form-control,
.form-control:focus {
	border-color: #3fccff;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #f4f6f6;
	border-color: #d5dbdb;
	color: #d5dbdb;
	cursor: default;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.form-control.form-minimal {
	border-color: transparent;
}

.form-control.form-minimal:hover {
	border-color: #bdc3c7;
}

.form-control.form-minimal:focus {
	border-color: #1abc9c;
}


.has-success .help-block,
.has-success .control-label {
  color: #2ecc71;
}
.has-success .form-control {
  color: #2ecc71;
  border-color: #2ecc71;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-success .form-control:-moz-placeholder {
  color: #2ecc71;
  opacity: 1;
}
.has-success .form-control::-moz-placeholder {
  color: #2ecc71;
  opacity: 1;
}
.has-success .form-control:-ms-input-placeholder {
  color: #2ecc71;
}
.has-success .form-control::-webkit-input-placeholder {
  color: #2ecc71;
}
.has-success .form-control.placeholder {
  color: #2ecc71;
}
.has-success .form-control:focus {
  border-color: #2ecc71;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-success .input-group-addon {
  color: #2ecc71;
  border-color: #2ecc71;
  background-color: #ffffff;
}

.has-warning .help-block,
.has-warning .control-label {
  color: #f1c40f;
}
.has-warning .form-control {
  color: #f1c40f;
  border-color: #f1c40f;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-warning .form-control:-moz-placeholder {
  color: #f1c40f;
  opacity: 1;
}
.has-warning .form-control::-moz-placeholder {
  color: #f1c40f;
  opacity: 1;
}
.has-warning .form-control:-ms-input-placeholder {
  color: #f1c40f;
}
.has-warning .form-control::-webkit-input-placeholder {
  color: #f1c40f;
}
.has-warning .form-control.placeholder {
  color: #f1c40f;
}
.has-warning .form-control:focus {
  border-color: #f1c40f;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-warning .input-group-addon {
  color: #f1c40f;
  border-color: #f1c40f;
  background-color: #ffffff;
}

.has-error .help-block,
.has-error .control-label {
  color: #e74c3c;
}
.has-error .form-control {
  color: #e74c3c;
  border-color: #e74c3c;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.has-error .form-control:-moz-placeholder {
	color: #e74c3c;
	opacity: 1;
}

.has-error .form-control::-moz-placeholder {
	color: #e74c3c;
	opacity: 1;
}

.has-error .form-control:-ms-input-placeholder {
	color: #e74c3c;
}

.has-error .form-control::-webkit-input-placeholder {
	color: #e74c3c;
}

.has-error .form-control.placeholder {
	color: #e74c3c;
}

.has-error .form-control:focus {
	border-color: #e74c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.has-error .input-group-addon {
	color: #e74c3c;
	border-color: #e74c3c;
	background-color: #ffffff;
}


/* FORM - INPUT ICON */
.form-control + .input-icon {
	position: absolute;
	top: 1px;
	right: 2px;
	line-height: 37px;
	vertical-align: middle;
	font-size: 20px;
	color: #b2bcc5;
	background-color: #ffffff;
	padding: 0 12px 0 0;
	border-radius: 6px;
}

.input-hg + .input-icon {
	line-height: 49px;
	padding: 0 16px 0 0;
}

.input-lg + .input-icon {
	line-height: 41px;
	padding: 0 15px 0 0;
}

.input-sm + .input-icon {
	font-size: 18px;
	line-height: 30px;
	padding: 0 10px 0 0;
}


/* FORM - INPUT GROUP */
.input-group .input-group-btn .btn {
	margin: 0;
	box-shadow: none;
}


.widget-contact {
	text-align: center;
}


.company-social {
	margin-left: 0;
	padding-left: 0;
	margin-top: 10px;
}

.company-social {
	text-align: center;
}

.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: center;
	padding-top: 20px;
	
}

footer p {
	color: #f8f8f8;
}

/* ==========================
Parallax
============================= */

#parallax1{	
	background-image: url(../img/parallax/1.jpg);
}

#parallax1:after {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


#parallax2{	
	background-image: url(../img/parallax/2.jpg);

}

#parallax2:after  {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


/* ===========================
--- Elements
============================ */

.btn {
	border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,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: 80px;
    height: 80px;
    margin-top: 15px;
    padding: 12px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: rgba(255,255,255,.5);
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,102,0,.95);
}

.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;
}

/* Outline Buttons */
.btn-outline {
	color: #fff;
    padding: 12px 20px;
	margin: 15px 0;
    text-align: center;
	letter-spacing: 0.1em;
    border: none;
    text-transform: uppercase;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}

.btn-outline:hover {
	text-decoration: none;
	color: #ffffff;
}

.btn-outline-sm {
	padding: 5px 13px;
	font-size: 13px;
}

.btn-outline-lg {
	padding: 14px 26px;
	font-size: 15px;
}

.btn-outline-xl {
	padding: 18px 30px;
	font-size: 24px;
	
}

.btn-outline.outline-light,
.icon.outline-light {
	color: #ffffff;
	background: none;
	border: 2px solid #ffffff;
}

.btn-outline.outline-light:hover,
.icon.outline-light:hover {
	color: #084ca0;
	background: #ffffff;
}

button:hover {
	text-decoration: none;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


@-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:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* CONTENT BLOCK HOLDERS */

.content-block {
	width: 100%;
	padding: 0;
	z-index: 100;
	position: relative;
	background-color: #ffffff;
}

.content-cover {
	width: 100%;
	padding: 18% 0 0 0;
	z-index: 100;
	position: relative;
	background: url(../images/LESOFT-404.jpg) no-repeat top center;
}

.content-block-nopad {
	width:100%;
	z-index: 100;
	position:relative;
	background-color: #fff;
}

/*	FOOTER 1-3
/*----------------------------------------------------*/

.footer-1-3 {
	padding-top: 40px;
	padding-bottom: 10px;
}

.footer-1-3 .brand-img {
	width: 180px;
}

.footer-1-3 .social {
	margin-top: 20px;
}

.footer-1-3 .address-bold-line {
	font-weight: 700;
	margin: 0;
	color: #ffffff;
}

.footer-1-3 .address {
	color: #fff;
}

.footer-1-3 .footer-text {
	border-top: #fff 1px solid;
	text-align: center;
	margin-top: 10px;
}

.footer-1-3 .footer-text p {
	color: #fff;
	
}

.footer-1-3 a:hover {
	color: #fff;
	
}



/* 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;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
    }

    .navbar-custom.top-nav-collapse {
		border-bottom: 0;
        /*border-bottom: 1px solid rgba(255,255,255,.3);*/
    }
	
    .intro {
        height: 100%;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	

    .intro-text {
        font-size: 25px;
    }


}
@media (max-width:768px) {
	
	.intro {
	height:100%;
}

#intro.intro {
	padding: 40% 0 0 0;
}
	
	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
	}

	
}

@media (max-width:480px) {
	
	.intro {
	height:600px;
	background-size: cover !important;
	background-position: 50% 50% !important;
}
	#intro.intro {
	padding: 30% 0 0 0;
}

	.intro .slogan h2 {
	font-size: 38px;
	line-height: 32px;
}

	.navbar-custom .nav.navbar-nav {
    background-color: rgba(255,255,255,.95);
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}
	
	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 60px;
		height: 60px;
		margin-top: 10px;
		padding: 7px 0;
		border: 2px solid #fff;
		border-radius: 50%;
		font-size: 30px;
	}
	
}