/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-Regular.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppins-bold';
  src: url('../fonts/Poppins-Bold.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'poppins-med';
  src: url('../fonts/Poppins-Medium.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'adamcg';
  src: url('../fonts/ADAMCGPRO.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal-Regular';
  src: url('../fonts/Tajawal-Regular.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  background: #fff;
  color: #818180;
  font-family: "Tajawal-Regular", sans-serif;
}
ul.nav-menu{
	margin-right: 20px;display:  inline-block;
}
div.socials a i{
	color:#eee;
	padding: 0 20px;
}
div.socials a i:hover{
	color:#566637;
}
div.socials a i{
	color:#eee;
}
a {
  color: #000;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: rgba(190,200,157,0.95);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
.margin-top-120{
	margin-top: 120px;
}
.margin-top-40{
	margin-top: 40px;
}
.margin-bot-40{
	margin-bottom: 40px;
}
.margin-left-40{
	margin-left: 40px;
}
.no-padding
{
	padding: 0;
}
.no-side-margin
{
	margin-left: 0;
	margin-right: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #566637;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}
.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(50, 58, 36, 0.9);
    filter: alpha(Opacity=80);
    opacity: 1;
    display: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: rgba(190,200,157,0.78);
  padding: 20px 0;
    height: 105px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(190,200,157,0.95);
    padding: 0;
    height: 60px;
  transition: all 0.5s;
}
#header.header-scrolled #logo img{
  height: 50px;
    margin-top: 5px;
}

#header #logo {
  float: left;
}

@media (min-width: 1224px) {
  #header #logo {
    padding-left: 60px;
  }
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #566637;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 1080px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
  #main{
	  margin-top: 30px;
  }
  div.socials{
    float: left !important;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    display: block;
    width: 100%;
    height: 39vw;
    background: #fff;
    overflow: hidden;
}

#intro .carousel-item {
  width: 100%;
  height: 39vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}


#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}


#intro .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0.5;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
	    background-color: rgba(200,200,200,0.9)
  }
@media (min-width: 1024px) {
	/*width: 20px;*/
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    width: 30px;
    height: 115px;
    background-size: contain;
    background-repeat: no-repeat;
}
#intro .carousel-control-next-icon {
  background-image: url('../img/home-arr-next.png') ;
}
#intro .carousel-control-prev-icon {
  background-image: url('../img/home-arr-prev.png') ;
}
.carousel-control-next, .carousel-control-prev {
    opacity: 0.6;
}
#intro .carousel-indicators li {
  cursor: pointer;
      width: 10px;
    height: 10px;
	border-radius: 100%;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #576638;
}
#intro .carousel-indicators .active {
    background-color: #fff;
}
.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease,-webkit-transform .6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

#intro .btn-get-started {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #566637;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #566637;
}

@media (max-width:1200px) {

}
@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

@media (max-width: 1080px) {
  #intro h2 {
    font-size: 28px;
  }
  #intro {
    margin-top: 60px;
  }
  h3.subtitle {
    padding: 30px 0;
    font-size: 30px;
	}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
      padding-right: 0;
    margin-top: 18px;
}

@media (min-width: 1024px) {
  #nav-menu-container {
    /* padding-right: 60px; */
  }
}

@media (max-width: 1080px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-family: "poppins", Arial;
  /* font-weight: 700; */
font-size: 15px;
    text-transform: none;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #fff;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #566637;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 12px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}
/*
@media (max-width: 999px) and (min-width: 768px) {
	.nav-menu a {
		font-size: 13px;
	}
}*/
@media (max-width: 1080px) {
  #mobile-nav-toggle {
    display: inline;
  }
  #header {
    height: 60px;
	padding: 7px 0;
	}
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(86,102,55,0.7);
  right: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
  max-height: 390px;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  /* font-family: "Montserrat", sans-serif; */
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #566637;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #566637;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  right: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

@media (min-width: 1081px) {
  #mobile-nav {
    display: none !important;
  }
  #mobile-body-overly {
    display: none !important;
  }
}
/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  right: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #566637;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

#introCarousel a,
#introCarousel .carousel-indicators{
	/*display:none;*/
}
/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/
h3.subtitle {
	text-align:center;
	padding: 40px 0;
	    font-size: 40px;
    color: #566637;
    font-family: poppins-med;
}
h2{
    color: #566637;
    font-family: poppins;
}
#featured-services {
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services img {
  width: 100%;
}
.single_service_left_text{
  padding-right: 30px;
  width: 75%;
  float: right;
}

.single_service_left_text *{
	text-align: right;
	    clear: both;
	float: right;
}
.single_service_right_text{
	padding-left: 30px;
}
.single_service_right_text *{
	text-align: left;
	float: left;
	    clear: both;
}
.single_service  a{
	color: #606060;
	font-weight: bold;
}
#featured-services .main_service_content .single_service {
    margin-top: 25%;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #566637;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #566637;
}

#featured-services p {
  font-size: 16px;
  line-height: 24px;
  color: #818180;
  max-width: 430px;
}

.full-width{
	width: 100%;
}

@media (max-width: 1080px){

	#featured-services .single_service {
		margin-top: 20px !important;

	}
	#featured-services h2,
	#featured-services p {
		max-width: 100%;
		text-align: center;
		width: 100%;
	}
	#featured-services a  {
		margin-left: auto !important;
		float: none;
		margin-right: auto !important;
		display: table;
		margin-bottom: 30px;
	}
	.single_service_left_text {
		padding-right:0;
	}
	.single_service_right_text {
		padding-left: 0;
	}
	h3.subtitle {
		padding: 30px 0;
		font-size: 30px;
	}
}

/* Certif LEED
--------------------------------*/
h1.titulo{
	text-align:center;
	padding: 30px 0;
	color: #566637;
}
h2.subtitulo{
	text-align:center;
	padding: 10px 0;
	color: #566637;
}
#certificacion{
}
section.certif-carousel{
	width: 100%;
    height: 300px;
}



/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0 100px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #566637;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
	position: relative;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
	border-radius: 10px;
}

#portfolio .portfolio-item figure {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  overflow: hidden;
  height: 120px;
  position: relative;
  border-radius: 5px;
  margin: 0;
  cursor: pointer;
}

#portfolio .portfolio-item figure:hover img {

  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
 /*  background: #566637; */
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
  /*color: #fff;*/
  font-size: 24px;.single_service_left_text
}
#portfolio.promos .portfolio-item figure:hover img {
    opacity: 0;
}
#portfolio .portfolio-item figure .link-preview {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#portfolio .portfolio-item figure:hover .link-preview {
	opacity: 1;
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
    padding: 10px 5px;
    height: 60px;
  border-radius: 0 0 3px 3px;
  display: none;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #566637;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.link-preview{
	display:none;
}

.slider{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider .slide{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  float: left;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;

}

#portfolio .portfolio-item figure .popup {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px){
	#portfolio .portfolio-item figure {
		height: 97px;
	}
}
@media (max-width: 992px){
	#portfolio .portfolio-item figure {
		height: 157px;
	}
}
@media (max-width: 1080px){
	#portfolio .portfolio-item figure {
		height: 180px;
	}
	#portfolio.promos .portfolio-item figure {
		height: auto;
	}
	#portfolio.promos .portfolio-item figure img{
      margin: 0 auto;
      display: block;
    }
}
@media (max-width: 576px){
	#portfolio .portfolio-item {
		height: auto;
		padding-bottom: 40px;
		float: left !important;
		position: unset !important;
	}

	#portfolio .portfolio-item figure {
		height: 376px;
	}
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefeea;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
	display: flow-root;
    border: 1px solid #888;
    width: 580px;
	max-width: 90%;
	border-radius: 20px;
}
.modal-content .data,
.modal-content img{
	float: left;
}
.modal-content img{
	margin-top: 10px;
}
.modal-content .data ul{
    list-style: none;
    padding-left: 0;
}
.modal-content .horario {
    float: left;
    width: 100%;
    margin-top: 20px;
    color: gray;
    text-align: center;
    margin-bottom: 10px;
}
.modal-content .data li{
	margin-top: 20px;
    padding-left: 35px;
	color: #606060;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px;
}
.modal-content .data li.local{
	background-image: url('../img/ico-addr.png');
}
.modal-content .data li.phone{
	background-image: url('../img/ico-phone.png');
}
.modal-content .data li.web{
	background-image: url('../img/ico-web.png');
}
.modal.locales .modal-content img {
    margin-top: 10px;
    height: auto;
    width: auto;
    max-width: 200px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 30px;
    position: absolute;
    right: 0;
    top: 4px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Galeria
-------------------------------*/
section.container.galeria{
  margin-bottom: 150px;
}
section.container.galeria div.album{
  float: left;
  width: 30%;
  margin-right: 2%;
  margin-bottom: 40px;
}
section.container.galeria div.album:nth-child(3n){
  margin-right: 0;
}
section.container.galeria div.album img{
  width: 100%;
  float: left;
}
section.container.galeria div.album h4.album-title{
  color: #566637;
  height: 30px;
  overflow: hidden;
  display: inline-block;
}

@media (max-width: 767px){
  section.container.galeria div.album{
    width: 48%;
    margin-right: 2%;
  }
  section.container.galeria div.album:nth-child(2n){
    margin-right: 0;
  }
}
@media (max-width: 400px){
  section.container.galeria div.album{
    width: 100%;
    margin-right: 0;
  }
}
/*-------------------------------*/



/* EVENTOS Section
--------------------------------*/
div.zabuto_calendar {
    margin: 80px auto 40px;
    padding: 0;
    width: 60%;
    max-width: 100%;
    min-width: 500px;
}
div.zabuto_calendar .table tr.calendar-month-header td {
	background-color: #ed8364;
	color: #fff;
}
div.zabuto_calendar .badge-today, div.zabuto_calendar div.legend span.badge-today {
    background-color: rgba(140,140,117,0.95);
	padding: 8px;
}
div.zabuto_calendar .table tr td div.day {
    font-size: 25px;
    font-weight: bold;
}
div.zabuto_calendar .table tr.calendar-month-header td span {
    cursor: pointer;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 30px;
}
div.zabuto_calendar .table tr.calendar-dow-header th {
    background-color: rgb(246,183,160);
    color: #fff;
    font-size: 13px;
    font-family: arial;
	font-weight: normal;
    padding: 6px 0;
}
div.zabuto_calendar .table tr td.event div.day, div.zabuto_calendar ul.legend li.event {
    background-color: #ed8364;
    color: #fff;
}
div.zabuto_calendar .table tr td.dow-clickable.event, div.zabuto_calendar .table tr td.event-clickable.event {
    cursor: pointer;
}
div.zabuto_calendar .table tr td.dow-clickable, div.zabuto_calendar .table tr td.event-clickable {
    cursor: default;
    position: relative;
}
div.zabuto_calendar div.popup {
    display: none;
    position: absolute;
    left: 100%;
    z-index: 9;
    top: -10px;
    background: rgb(250,234,230);
    border: 1px solid rgb(251,143,160);
    border-radius: 5px;
    color: rgb(252,128,96);
    padding: 20px;
    width: 200px;
}
div.zabuto_calendar div.popup a.title{
    display: block;
	width: auto;
}
div.zabuto_calendar div.popup a.title:hover{
    font-weight: bold;
}
div.zabuto_calendar div.popup a.title p{
	margin-bottom: 8px;
    text-align: left;
}
#evento{
    width: 700px;
    margin: 30px auto 100px;
    max-width: 100%;
}
#evento .titleEv,
#evento .footerEv{
	font-size: 30px;
	color: #ed8364;
	text-align: center;
}
#evento .bodyEv{
	font-size: 20px;
	/* color: #ed8364; */
	text-align: center;
}
#evento .bodyEv p{
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	div.zabuto_calendar {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 0 30px;
	}

}
/* Movilidad Section
--------------------------------*/
.movilidad.container .mapa{
	float: left;
}

body.movilidad .lightbox .lb-image {
	width: 100% !important;
    height: auto !important;
}

body.movilidad .lightbox .lb-outerContainer{
	width: 90% !important;
    height: auto !important;
}
body.movilidad .lb-dataContainer {
    position: absolute;
    top: -40px;
	right: 20px;
}
body.movilidad .lb-details {
   display: none;
}
body.movilidad #lightbox {
   top: 40px !important;
}

.movilidad.container .showmap p{
    padding-left: 60px;
    background-size: 50px;
    background-repeat: no-repeat;
    background-image: url(../img/glass.jpg);
    background-position: left center;
    font-size: 25px;
    height: 50px;
}


/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}

section.contacto {
    margin-bottom: 40px;
    margin-top: 160px;
}
section.contacto .form-control{
    border: none;
    border-bottom: 1px solid #96a687;
    border-radius: 0;
    padding-left: 0;
}

section.contacto textarea.form-control{
    border: 1px solid #ed8364;
    border-radius: 30px;
	    height: 240px;
    background-image: url(../img/bg-form-contact.png);
background-position: center;
    background-repeat: no-repeat;
    background-size: auto 80%;
	padding: 10px 20px;
}
section.contacto button[type="submit"]{
	background-color: #ed8364;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #ed8364;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #ed8364;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .form #sendmessage {
  color: #ed8364;
  border: 1px solid #ed8364;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #ed8364;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #13a456;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
}
#footer .bottom{
    background-image: url(../img/footer-bg.jpg);
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #ed8364;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /* font-family: "Montserrat", sans-serif; */
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ed8364;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #ed8364;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ed8364;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #ed8364;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
      color: #fff;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #000;
}

@media (max-width:1200px) and (min-width: 1080px){
 #header .container {
    max-width: 1060px;
  }
}

