@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat");
/* Border box */
/* Border radius */
/* Transform */
/* Transition */
/* Opacity */
/* Transition-duration */
/* Transition-origin */
/* Transition-timing-function */
/* Animation */
/* Box shadow */
/* Place Holder */
/* Alpha Background Color */
/* ============================================================
	1. GENERAL
=============================================================*/
body {
  font: 300 14px/24px 'Poppins', sans-serif;
  color: #7f7f7f;
  background: #ffffff;
  /*overflow-x: hidden;*/
}

.transition,
a,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input.input-text,
select,
input[type="submit"],
button[type="submit"] {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

input[type="submit"],
button[type="submit"], .button {
  background-color: #FF6C0E;
  color: #ffffff;
	border: none;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.button:hover {
  background: #7f7f7f;
}

input[type="submit"]:disabled,
button[type="submit"]:disabled,
.button:disabled {
  background: #f2f2f2;
  color: #b3b3b3;
  cursor: no-drop;
  border: none;
}

a {
  color: #FF6C0E;
  text-decoration: none;
}

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

a, a:visited, a:focus, a:active, a:hover, a:link {
  outline: 0 none !important;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none;
}

figure {
  margin: 1em 0;
}

figcaption {
  margin: 10px 0;
}

article:after {
  clear: both;
  content: "";
  display: table;
}

.header-top {
  background: #323232;
  padding-top: 13px;
  padding-bottom: 13px;
  color: #c2c2c2;
}
.header-top ul, .header-top ul li {
  float: left;
}

.header-information li {
  margin-right: 30px;
  font-size: 12px;
}
.header-information li a {
  color: #c2c2c2;
}
.header-information li a:hover, .header-information li a:focus {
  color: #FF6C0E;
}
.header-information li:last-child {
  margin-right: 0;
}

.header-sns-button li {
  margin-left: 18px;
}
.header-sns-button li:first-child {
  margin-left: 0;
}
.header-sns-button .fa {
  font-size: 20px;
}
.header-sns-button a {
  color: #c2c2c2;
  display: inline-block;
}
.header-sns-button a span {
  font-size: 14px;
  display: none;
}
.header-sns-button a:hover, .header-sns-button a:focus {
  color: #FF6C0E;
}

.chat{
	display:block;
        width:70px;
        height:70px;
        color:rgba(0,207,5,1.00);
        position: fixed;
        right:20px;
        bottom:20px;
        border-radius:50%;
        line-height:80px;
        text-align:center;
        z-index:999;
}

/* main-header */
header.header {
  -webkit-transition: all 0.4s cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition: all 0.4s cubic-bezier(0.7, 1, 0.7, 1);
  -moz-transition: all 0.4s cubic-bezier(0.7, 1, 0.7, 1);
  transition: all 0.4s cubic-bezier(0.7, 1, 0.7, 1);
  background: #ffffff;
}
header.header .header-brand {
  line-height: 105px;
  height: 105px;
}
header.header .header-brand img {
  vertical-align: middle;
  max-width: 100%;
}
header.header.header-sticky {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.sticky-wrapper.is-sticky .header.header-sticky {
  border-bottom: 1px solid #e5e5e5;
}

.btn-menu {
  float: right;
  width: 22px;
  height: 15px;
	color: #FF6C0E;

}

.btn-menu {
  display: none;
}
.espacio{
	margin-top: 20px !important;
}
#mainnav {
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#mainnav ul {
  position: relative;
  left: -10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainnav ul li {
  position: relative;
}

#mainnav > ul > li {
  display: block;
  float: left;
}

#mainnav > ul > li > a {
  position: relative;
  display: block;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  height: 105px;
  line-height: 105px;
  padding: 0 20px;
  outline: none;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-family: 'Montserrat', serif;
}

#mainnav > ul > li > a:hover, #mainnav > ul > li.active a {
  color: #FF6C0E;
}

.sticky-wrapper.is-sticky header.header .header-brand {
  line-height: 60px;
  height: 60px;
  max-width: 150px;
}
.sticky-wrapper.is-sticky #mainnav > ul > li > a {
  height: 60px;
  line-height: 60px;
}


/* Mobile navigation
---------------------------------------- */
#mainnav-mobi {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  background-color: #333;
  z-index: 1000;
  left: 0;
}

#mainnav-mobi ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainnav-mobi ul li {
  margin: 0;
  position: relative;
  text-align: left;
  border-top: 1px solid #434343;
  cursor: pointer;
}

#mainnav-mobi ul > li > a {
  text-decoration: none;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  color: #fff;
}


#mainnav-mobi > ul > li > ul > li,
#mainnav-mobi > ul > li > ul > li > ul > li {
  position: relative;
  border-top: 1px solid #434343;
}




#mainnav-mobi > ul > li > ul > li:first-child a {
  border-top: none;
}

#mainnav-mobi ul.sub-menu > li > a:hover,
#mainnav-mobi > ul > li > ul > li.active > a {
  color: #fff;
}



/*=============== header03 ===============*/
.header03 .sticky-wrapper {
  position: absolute;
  top: 59px;
  width: 100%;
}
.header03 header.header {
  background: transparent;
}
.header03 #mainnav > ul > li > a {
  color: #fff;
}
.header03 .sticky-wrapper.is-sticky #header {
  background: #333;
}
.header03 .sticky-wrapper.is-sticky .header.header-sticky {
  border-bottom: none;
}

/* Border box */
/* Border radius */
/* Transform */
/* Transition */
/* Opacity */
/* Transition-duration */
/* Transition-origin */
/* Transition-timing-function */
/* Animation */
/* Box shadow */
/* Place Holder */
/* Alpha Background Color */
.btn-yellow, .btn-transfer, .btn-gray {
  color: #ffffff;
  display: inline-block;
  font-family: 'Montserrat', serif;
  padding: 9px 30px;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
  word-wrap: break-word;
  outline: none;
  position: relative;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  transition: all 300ms linear;
}
.btn-yellow:hover, .btn-transfer:hover, .btn-gray:hover, .btn-yellow:active, .btn-transfer:active, .btn-gray:active {
  color: #ffffff;
}

.tt02, .tt03, .tt04, .tt05 {
  font-family: 'Montserrat', serif;
  font-weight: 400;
  margin: 0;
  color: #333333;
}

.tt02 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.tt03 {
  font-size: 18px;
  line-height: 24px;
}

.tt04 {
  font-size: 16px;
  line-height: 24px;
}

.tt05 {
  font-size: 14px;
  line-height: 24px;
}

.font-15px {
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.form-control{
	margin-bottom: 10px;
}

.form-control:focus {
  border-color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select.form-control:focus {
  background-color: transparent;
}

/* big-title */
.big-title p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  
}
.big-title .tt02 {
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  padding-bottom: 14px;
  margin-top: 2px;
  margin-bottom: 50px;
}
.big-title .tt02::after, .big-title .tt02:before {
  background: #222222;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
}
.big-title .tt02:before {
  border-top: 1px solid #222222;
  bottom: 3px;
  width: 50px;
  margin-left: -25px;
}
.big-title .tt02::after {
  border-bottom: 1px solid #222222;
  bottom: 0;
  width: 30px;
  margin-left: -15px;
}
.big-title.white .tt02 {
  color: #ffffff;
}
.big-title.white .tt02::after, .big-title.white .tt02:before {
  border-color: #ffffff;
}

/*---------- offter ----------*/
.pic img {
  width: 100%;
}

.main-text-color {
  color: #f4bc16;
}

.spacetb {
  padding-top: 74px;
  padding-bottom: 80px;
}

.icon-box01 .tt04 {
  margin-top: 35px;
}
.icon-box01 .desc1 {
  font-size: 15px;
  line-height: 27px;
  padding: 14px 10px 6px 10px;
}
.icon-box01 .desc1 .readmore {
  font-size: 14px;
}

.hvr-image {
  overflow: hidden;
}
.hvr-image img {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.hvr-image:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
}

/*---------- section-materiales de construccion ----------*/
.section-team {
  background: #333333;
}
.section-team .big-title .tt02 {
  margin-bottom: 28px;
}
.section-team .image {
  background-image: url("../imagenes/Materiales_de_construccion.jpg");
  background-size: cover;
  background-position: center center;
}
.section-team .creative-desc {
  padding: 92px 110px 60px 85px;
}
.section-team .creative-desc .creative-desc-desc p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 27px;
}
.section-team .creative-desc .action-button {
  margin-top: 50px;
}

.adv-highlight .big-title .tt02::before, .adv-highlight .big-title .tt02::after, .section-team .big-title .tt02::before, .section-team .big-title .tt02::after {
  left: 0;
  margin-left: 0;
}

.action-button a {
  margin-right: 6px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 140px;
}
.action-button a:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 340px) {
  .action-button {
    margin-top: 0;
  }
  .action-button a {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
  }
}
.btn-yellow {
  border-color: #FF6C0E;
  background: #FF6C0E;
}
.btn-yellow:hover, .btn-yellow:active {
	border-color:#ff6c0e;
  background: #949599;
}

.btn-transfer {
  border-color: #ffffff;
}
.btn-transfer:hover, .btn-transfer:active {
  background-color: #333333;
}


.work-masonry {
  overflow: hidden;
  margin-left: -9px;
  margin-right: -9px;
  margin-bottom: 41px;
}
.work-masonry a, .work-masonry img {
  display: block;
  width: 100%;
}
.work-masonry li {
  float: left;
  width: 50%;
  padding: 9px;
}
.work-masonry li .smallCol {
  margin-left: 0;
  margin-right: -18px;
}
.work-masonry li .smallCol .col-xs-12 {
  padding-right: 18px;
  padding-left: 0;
}

.our-work .tab-controls .nav.nav-tabs {
  margin-top: -17px;
}





/*---------- icon-box02 ----------*/
.shape {
  position: relative;
  top: 0;
}
.shape .decagon {
  top: 0;
  position: absolute;
  height: 100px;
  left: 50%;
  margin: 0 0 0 -50px;
  width: 100px;
}
.shape .decagon .rct {
  position: absolute;
  top: 0;
  background: #333333;
  height: 100px;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.shape .icons {
  line-height: 100px;
  height: 100px;
  width: 100px;
  color: #ffffff;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: inline-block;
}
.shape [class^="somali-icon-"] {
  vertical-align: middle;
  color: #ffffff;
  font-size: 40px;
}

.icon-box02 {
  margin-top: 10px;
  cursor: crosshair;
}
.icon-box02 .tt05 {
  margin-top: 32px;
  line-height: 24px;
}
.icon-box02 p {
  margin-top: 12px;
}


/*---------- advantage-highlight ----------*/
.adv-highlight {
  background: #fcfcfc;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  padding-top: 85px;
  padding-bottom: 40px;
}

.adv-highlight-item {
  margin-bottom: 40px;
  cursor: crosshair;
}
.adv-highlight-item .ic {
  float: left;
  display: block;
  margin-top: 4px;
  width: 75px;
  height: 75px;
  background: #f4bc16;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  text-align: center;
}
.adv-highlight-item .ic span {
  color: #ffffff;
  font-size: 35px;
  line-height: 75px;
}
.adv-highlight-item .desc-text {
  padding-left: 100px;
}
.adv-highlight-item .desc-text .tt04 {
  margin-bottom: 10px;
}
.adv-highlight-item .desc-text p {
  font-size: 16px;
  line-height: 27px;
}
.adv-highlight-item:hover .ic {
  background: #d8a304;
}



/* ----------- section-subbanner ------------ */

.section-subbanner {
  background: url("../imagenes/sub-banner.jpg") no-repeat center center;
  padding-bottom: 70px;
	padding-top: 70px;
	position: relative;
}
.section-subbanner .caption {
  color: #ffffff;
  font-size: 35px;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  line-height: 1.4;
}
.section-subbanner .breadcrumb {
  padding: 5px 0;
  list-style: none;
  background-color: transparent;
  margin: 0;
}
.section-subbanner .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}
.section-subbanner .breadcrumb > .active {
  color: #b6b6b7;
}
.section-subbanner .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.4);
  content: "\e258";
  font-size: 9px;
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
/* ----------- introduction ------------ */
.relative {
  position: relative;
}

.intro-image {
  margin-top: 10px;
}
.intro-image ul {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
}
.intro-image ul li {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.wpb-intro .wpb-intro-title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 5px;
  color: #333;
}

.wpb-history {
  margin-top: 45px;
}
.wpb-history .dl-horizontal {
  margin-bottom: 0;
}
.wpb-history .dl-horizontal dt {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  width: 85px;
  text-align: left;
}
.wpb-history .dl-horizontal dd {
  margin-left: 90px;
  border-left: 1px solid #e5e5e5;
  padding-left: 40px;
  padding-bottom: 45px;
  position: relative;
  margin-bottom: 0;
}
.wpb-history .dl-horizontal dd h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 24px;
  color: #333;
}
.wpb-history .dl-horizontal dd::before {
  position: absolute;
  width: 9px;
  height: 9px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  background: #F36C23;
  left: 0;
  top: 0;
  margin-left: -5px;
}
.wpb-history .dl-horizontal:last-child dd {
  border-left-width: 0;
  padding-bottom: 0;
}

/* ----------- creative-team ------------ */
.creative-team .description {
  padding: 15px 0;
	
}
.creative-team .description .tt04 {
  margin-bottom: 3px;
}
.creative-team .description .career {
  font-style: italic;
  color: #b5b5b5;
  font-size: 13px;
}

/* ----------- services ------------ */
.services {
  padding-top: 10px;
  padding-bottom: 100px;
}
.services .single-box {
  margin-top: 60px;
}
.services .single-box .tt04 {
  margin-top: 35px;
  margin-bottom: 10px;
}

.second-text-color {
  color: #333333;
}

/* ----------- service-single ------------ */
.left-sidebar {
  padding-top: 72px;
}
.left-sidebar .widget {
  margin-bottom: 63px;
}

.widget .wg-title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
}

.group-list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.group-list li a {
  font-size: 13px;
}
.group-list li a i {
  margin-right: 9px;
}
.group-list li a:hover {
  color: #F36C23;
}

.download-brochure {
  padding-top: 10px;
}
.download-brochure p {
  margin-bottom: 5px;
}
.download-brochure p a {
  display: block;
  border: 2px solid #e8e8e8;
  color: #7f7f7f;
  padding: 13px 17px;
  position: relative;
}
.download-brochure p a .fa-file-pdf-o, .download-brochure p a .fa-file-word-o, .download-brochure p a .fa-file-powerpoint-o {
  font-size: 18px;
  margin-right: 5px;
}
.download-brochure p a .fa-download {
  position: absolute;
  right: 17px;
  top: 18px;
}
.download-brochure p a:hover {
  color: #F36C23;
  border-color: #F36C23;
}

.text-featured a {
  margin-left: 2px;
  white-space: nowrap;
  color: #7f7f7f;
}
.text-featured a:first-child {
  margin-left: 0;
}
.text-featured a:hover, .text-featured a:focus {
  color: #F36C23;
}

/* ----------- primary-content ------------ */
.primary-content .article-content {
  border-left: 1px solid #e5e5e5;
  margin-left: 30px;
  padding: 80px 0 80px 70px;
}

.section .tt04 {
  margin-bottom: 10px;
}
.section .list-check {
  overflow: hidden;
}
.section .list-check li {
  float: left;
  width: 50%;
  padding: 5px 0;
}
.section .list-check li i {
  color: #F36C23;
  margin-right: 5px;
}
.section .pull-right {
  margin-left: 30px;
}

@media (max-width: 480px) {
  .section .list-check li {
    width: 100%;
    float: none;
  }
  .section .pull-right {
    float: none;
    margin-left: 0;
  }
}
.service-single-accordion {
  margin-top: 60px;
}
.service-single-accordion .panel {
  border-width: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box;
  margin-bottom: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.service-single-accordion .panel-default > .panel-heading {
  padding: 0;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box;
}
.service-single-accordion .panel-default > .panel-heading h4 {
  font-size: 14px;
  line-height: 30px;
}
.service-single-accordion .panel-default > .panel-heading a {
  display: block;
  background-color: #eeeeee;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
  padding: 8px 25px;
  color: #333333;
}
.service-single-accordion .panel-default > .panel-heading a::before {
  content: "\f068";
  font-family: FontAwesome;
  font-size: 12px;
  float: right;
}
.service-single-accordion .panel-default > .panel-heading a.collapsed::before {
  content: "\f067";
}
.service-single-accordion .panel-default > .panel-heading a:hover, .service-single-accordion .panel-default > .panel-heading a:focus {
  background: #f4bc16;
  text-decoration: none;
}
.service-single-accordion .panel-default > .panel-heading.open a {
  background: #f4bc16;
}
.service-single-accordion .panel-default .panel-body {
  padding: 25px;
}

/* ----------- page-category ------------ */
.no-container {
  overflow: hidden;
}

.page-category .tab-controls .nav.nav-tabs {
  text-align: left;
  margin-top: 0;
}
.page-category .tab-controls .nav.nav-tabs a {
  padding-left: 0;
}
.page-category .our-work-v1 {
  margin-bottom: -35px;
  overflow: hidden;
}
.page-category .our-work-v2 .col-sm-4 {
  padding-left: 0;
  padding-right: 0;
}
.page-category .our-work-v2 .col-sm-4 img {
  width: 100%;
}
.page-category .our-work-v2.row {
  margin-left: 0;
  margin-right: 0;
}
.page-category .our-work-v3 .col-sm-4 {
  padding-left: 8px;
  padding-right: 8px;
}
.page-category .our-work-v3.row {
  margin-top: 16px;
  margin-left: -8px;
  margin-right: -8px;
}
.page-category .our-work-v3 .pic {
  margin-bottom: 16px;
}

.work01 .tab-controls, .work02 .tab-controls {
  margin-top: -12px;
  overflow: hidden;
}
.page-contact{
	width: 100%;
	background: url(../imagenes/bk-empresa.jpg) no-repeat center center;
	position: relative;
	color: #ffffff;
	background-color: #000000;
}
.wg-contact{
	color: #FFFFFF;
}

.frm{
	margin-top: 60px;
	margin-right: 30px;
}

/* ----------- pagination ------------ */
.info-pagination {
  margin-top: 50px;
}

.pagination {
  margin-bottom: 0;
  margin-top: 0;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  color: #333333;
  font-size: 14px;
  font-family: 'Montserrat', serif;
}

.pagination > li > a, .pagination > li > span {
  margin: 0 2px;
  border-color: #dfdfdf;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #ffffff;
  background-color: #FF6C0E;
  border-color: #f4bc16;
}


input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

input[type=number]::-moz-number-wrapper,
input[type=number]::-moz-number-spin-box,
input[type=number]::-moz-number-spin-up,
input[type=number]::-moz-number-spin-down {
  background-color: red;
}

#sync1 {
  margin-bottom: 10px;
}

.bgi-gray {
  background: #222222;
}

.footer-nav {
  padding-top: 60px;
  padding-bottom: 55px;
  color: #757575;
}
.footer-nav .tt04 {
  margin: 30px 0;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-info {
  background: no-repeat center bottom;
}
.contact-info li {
  position: relative;
  padding-left: 30px;
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 15px;
}
.contact-info li:last-child {
  margin-bottom: 0;
}
.contact-info i.fa {
  font-size: 14px;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
}
.contact-info i.fa.fa-map-marker {
  font-size: 16px;
}

.list-style ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.list-style li:hover, .list-style li:focus, .list-style li:active {
  -ms-transform: translateX(8px);
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  -o-transform: translateX(8px);
  transform: translateX(8px);
}

.group-item-links li {
  margin-bottom: 10px;
  font-size: 13px;
}
.group-item-links li .fa {
  margin-right: 9px;
}

.time-open {
  font-size: 12px;
}
.time-open span {
  color: #b5b5b5;
}


.color {
  color: #FF6C0E;
}

/* footer-page */
.footer-page {
  border-top: 1px solid #323232;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 13px;
  color: #757575;
}

.redes-footer a{
	color: #c2c2c2;
  display: inline-block;
	float: left;
	font-size: 20px;
	margin-right: 10px;
}

.redes-footer a:hover{
	color: #FF6C0E;
}

.redes-footer a span{
	display: none;
}

.ui-link-color75 {
  color: #757575;
}
.ui-link-color75:hover, .ui-link-color75:focus {
  color: #FF6C0E;
}

.back-top {
  text-align: right;
}



@media (max-width: 480px) {
  .back-top {
    float: none;
    width: 100%;
    text-align: center;
  }

  .back-top {
    margin-top: 10px;
  }
}
@media (min-width: 1600px) {
  .advantage-highlight-bg-img {
    width: 34%;
  }
}
@media (min-width: 768px) {
  .section-team {
    height: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .advantage-highlight-bg-img {
    width: 38%;
  }

  .section-team .creative-desc {
    padding: 80px 20px 25px 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .advantage-highlight-bg-img {
    width: 45%;
  }

  #mainnav > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }

  .download-brochure p a {
    padding-left: 8px;
    padding-right: 8px;
  }
  .download-brochure p a .fa-download {
    right: 6px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-team .creative-desc {
    max-width: 820px;
    padding: 80px 20px 40px 20px;
  }

  .article-ourwork-single {
    padding-left: 0;
  }

  .owl-slider2 .owl-nav .owl-prev {
    margin-left: 0;
  }
  .owl-slider2 .owl-nav .owl-next {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  /*---------- Header ----------*/
  .btn-menu {
    position: relative;
    display: inline-block;
    z-index: 999;
    margin-top: 22px;
    margin-right: 5px;
  }

  header.header .header-brand {
    float: left;
    width: 128px;
    height: 60px;
    line-height: 60px;
    margin-left: 5px;
  }

  /*---------- Home 1 ----------*/
  .icon-box01 .desc1 {
    padding-left: 0;
    padding-right: 0;
  }

  .work-masonry li {
    width: 100%;
  }
  .work-masonry li .smallCol .col-xs-12:first-child {
    margin-bottom: 18px;
  }

  .post-date .inner {
    width: 60px;
  }

  .box-post .post-back .post-back-item {
    border-bottom: none;
  }
  .box-post .post-back .post-back-item span, .box-post .post-back .post-back-item .post-back-share {
    width: 58px;
  }
  .box-post .post-back .post-front {
    left: 58px;
  }
  .box-post .post-back .post-front .post-front-info {
    margin-bottom: 5px;
  }
  .box-post .post-back .post-front .post-front-info .divider {
    padding-left: 3px;
    padding-right: 4px;
  }
  .box-post .post-back .post-front .tt05 {
    line-height: 20px;
  }
  .box-post .post-back .post-front .continue {
    display: none;
  }

  /*---------- Home 2 ----------*/
  .box-chooseus .action-button {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .icon-box03 i {
    font-size: 45px;
    width: 60px;
  }
  .icon-box03 .desc-text {
    padding-left: 80px;
  }

  /*---------- About Us ----------*/
  .creative-team {
    margin-bottom: -30px;
    overflow: hidden;
  }
  .creative-team .col-md-3 {
    margin-bottom: 30px;
  }
  .creative-team .col-md-3:last-child {
    margin-bottom: 0;
  }

  /*---------- Shop ----------*/
  .product-listing-wp .info-pagination {
    margin-top: 20px;
  }

  .products .product-item {
    margin-bottom: 0;
  }

  .shop02 .primary-content .article-content, .single-shop .primary-content .article-content {
    border-left-width: 0;
    border-right: none;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .shop02 .left-sidebar, .single-shop .left-sidebar {
    padding-bottom: 54px;
  }

  /*---------- Footer ----------*/
  .brand-logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer-nav {
    padding-top: 30px;
    padding-bottom: 40px;
  }
	

  /*---------- Header02 ----------*/
  .header02 .btn-menu {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-team .creative-desc {
    padding: 30px 20px 25px 0;
  }

  .spacetb {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .adv-highlight {
    padding-top: 56px;
    padding-bottom: 23px;
  }

  /*---------- Home 3 ----------*/
  .client-says .testimonial-meta .testimonial-cover img {
    width: 100px;
    height: 100px;
  }

  .testimonial {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  /*---------- Service ----------*/
  .left-sidebar {
    padding-top: 35px;
  }
  .left-sidebar .widget {
    margin-bottom: 42px;
  }
  .left-sidebar .widget:last-child {
    margin-bottom: 0;
  }

  .services {
    padding-bottom: 50px;
  }
  .services .single-box {
    margin-top: 40px;
  }

  .primary-content .article-content {
    border-left: none;
    margin-left: 0;
    padding: 54px 0 54px 0;
  }

  .service-single-accordion {
    margin-top: 40px;
  }
  .service-single-accordion .panel-default .panel-body {
    padding: 15px;
  }

  
  /*---------- Header02 ----------*/
  .header-middle .info .address {
    margin-right: 0;
  }
  .header-middle .info .outer-border {
    width: 38px;
    height: 38px;
    padding-top: 8px;
  }
  .header-middle .info .info-description {
    display: block;
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .spacetb {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .tt02 {
    font-size: 30px;
  }

  .big-title .tt02 {
    margin-bottom: 30px;
  }

  /*---------- Home 1 ----------*/
  .icon-box01, .box-post {
    margin-bottom: 30px;
  }

  .section-team .creative-desc {
    padding: 30px 15px;
  }
  .section-team .creative-desc .action-button {
    margin-top: 25px;
  }

  .testimonial {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-meta {
    text-align: center;
  }
  .testimonial-meta .testimonial-cover {
    margin-right: 16px;
    float: none;
    display: inline-block;
  }
  .testimonial-meta .testimonial-author {
    vertical-align: top;
    display: inline-block;
    text-align: left;
  }

  .post-date .inner {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .box-post .post-back .post-back-item span {
    padding-top: 12px;
    padding-bottom: 5px;
  }

  .owl-carousel.owl-work02 .owl-item > div img {
    width: 100%;
    float: none;
  }

  .home03 .tab-pane .no-container {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: auto;
    margin-left: auto;
  }
  .home03 .services-box .contexttab .col-xs-6 {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  .home03 .services-box .services-box-item {
    top: 0;
  }
  .home03 .services-box .services-box-item .tab-controls .nav.nav-tabs {
    margin-bottom: 0;
  }
  .home03 .adv-highlight {
    padding-top: 42px;
    padding-bottom: 20px;
  }

  
  /*---------- About Us ----------*/
  .creative-team .col-md-3:last-child {
    margin-bottom: 0;
  }

  .wpb-history .dl-horizontal dt {
    width: 70px;
    float: left;
  }
  .wpb-history .dl-horizontal dd {
    margin-left: 75px;
    padding-left: 20px;
  }

  /*---------- Services ----------*/
  .services {
    padding-bottom: 50px;
  }
  .services .single-box {
    margin-top: 30px;
  }
  .services .single-box .tt04 {
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .left-sidebar {
    padding-top: 30px;
  }
  .left-sidebar .widget {
    margin-bottom: 30px;
  }
  .left-sidebar .widget:last-child {
    margin-bottom: 0;
  }

  .primary-content .article-content {
    border-left: none;
    margin-left: 0;
    padding: 40px 0 40px 0;
  }

  .service-single-accordion {
    margin-top: 30px;
  }
  .service-single-accordion .panel-default .panel-body {
    padding: 12px 0;
  }

  .wpb-intro {
    margin-top: 30px;
  }

  .article-ourwork-single .share-social {
    margin-top: 25px;
  }

  
  /*---------- Contact ----------*/
  .address-box {
    margin-top: 25px;
    padding-left: 52px;
  }
  .address-box .icon-corner {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
  .address-box h5 {
    margin-bottom: 10px;
  }
  
  /*---------- Footer ----------*/
  .footer-nav {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .section-subbanner {
    padding-bottom: 39px;
  }
  .section-subbanner .caption {
    margin-top: 48px;
  }

  /*---------- Header02 ----------*/
}
@media (max-width: 479px) {
  .adv-highlight-item {
    margin-bottom: 30px;
  }
  .adv-highlight-item .ic {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .adv-highlight-item .desc-text {
    padding-left: 0;
  }
  .adv-highlight-item .desc-text .tt04 {
    text-align: center;
  }
}
