/*  ============================================================
    HTML5 BOILERPLATE RESET FILE
    ============================================================  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Bootstrap IE Fix */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a,
.dropdown-menu > li.active > a {
  filter: none;
}
/* Prevent Flickering in Chrome */
* {
  -webkit-backface-visibility: hidden;
}
/*  ============================================================
    GRAYSCALE EFFECT "FILTER"
    ============================================================  */
img.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'https://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: .6;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
img.grayscale:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'https://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/*  ============================================================
    PRIMARY STYLES
    ============================================================  */
body {
  background: none repeat scroll 0 0 #EBEBEB;
  color: #221918;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 21px;
  cursor: default;
}
/*  ------------------------------------------------------------
    TYPOGRAPHY
    ------------------------------------------------------------  */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 21px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 13px;
}
h6 {
  font-size: 12px;
}
small {
  font: 11px 'Arial';
}
p {
  font: 14px/21px 'Arial', Helvetica, sans-serif;
}
p.UpperCase:first-letter {
  font-size: 60px;
  color: #ff9311;
  text-transform: uppercase;
}
blockquote {
  background: none repeat scroll 0 0 #F6F6F6;
  padding: 30px 30px 30px;
  color: #A1A1A1;
  font-style: italic;
}
/*  ------------------------------------------------------------
    MISCELLANEOUS
    ------------------------------------------------------------  */
.MediumSize {
  font-size: 21px;
}
.SmallSize {
  font-size: 28px;
}
.LargeSize {
  font-size: 42px;
}
.VeryLargeSize {
  font-size: 72px;
}
.WhiteSkin {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.AddPaddingTop {
  padding-top: 20px !important;
}
.active-btn {
  background: none repeat scroll 0 0 #FF9311 !important;
}
.secondary-btn {
  background: none repeat scroll 0 0 #929490 !important;
}
.hide-padding-left {
  padding-left: 0 !important;
}
.hide-padding-right {
  padding-right: 0 !important;
}
/*  ------------------------------------------------------------
    HEADER > SITE BRAND
    ------------------------------------------------------------  */
header#header .logo {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background: url(/Content/img/main-logos/logo.png) no-repeat 0 0 transparent;
  max-width: 100%;
  width: 100%;
  height: 56px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1px;
}
/*  ------------------------------------------------------------
    HEADER > HEADER MENU
    ------------------------------------------------------------  */
header#header ul.header-menu {
  margin: 16px 0 0;
}
header#header ul.header-menu > li {
  display: inline;
}
/*  ------------------------------------------------------------
    HEADER > HEADER MENU > QUICK LINKS
    ------------------------------------------------------------  */
header#header ul.header-menu > li:first-child > a {
  color: #C5C5C5;
  text-shadow: 0 1px 0 #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header#header ul.header-menu > li:first-child > a:hover {
  color: #818181;
}
/*  ------------------------------------------------------------
    HEADER > HEADER MENU > DROPDOWN
    ------------------------------------------------------------  */
header#header ul.header-menu > li:last-child > a {
  color: #ff9311;
  text-shadow: 0 1px 0 #ffffff;
  padding: 0 0 0 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header#header ul.header-menu > li:last-child > a:hover {
  opacity: .7;
}
header#header ul.header-menu ul.dropdown-menu {
  background: none repeat scroll 0 0 #525252;
  border-radius: 0 0 0 0;
  box-shadow: none;
  border: medium none;
  padding: 0 0 0;
  margin: 8px 0 0;
}
header#header ul.header-menu ul.dropdown-menu > li > a {
  color: #FFFFFF;
  padding: 12px 20px;
}
header#header ul.header-menu ul.dropdown-menu > li > a:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:focus {
  background-color: #ff9311;
  background-image: none;
  background-repeat: no-repeat;
}
/*  ------------------------------------------------------------
    HEADER > SEARCH
    ------------------------------------------------------------  */
header#header .navbar-form {
  margin: 8px 0 0;
  padding: 0 0 0;
}
header#header .navbar-form #form-group {
  position: relative;
}
header#header .navbar-form #form-group .search-input {
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
  border: medium none;
  height: 45px;
}
header#header .navbar-form #form-group .search-input:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
header#header .navbar-form #form-group .search-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #a3a3a3;
  padding: 9px 8px;
}
/*  ------------------------------------------------------------
    HEADER > SOCIALS
    ------------------------------------------------------------  */
header#header .navbar-form .header-social ul li {
  float: left;
  padding: 10px 10px 10px;
}
header#header .navbar-form .header-social ul li a {
  color: #c7c7c7;
  font-size: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
header#header .navbar-form .header-social ul li a:hover {
  color: #606060;
}
/*  ------------------------------------------------------------
    NAVIGATION
    ------------------------------------------------------------  */
.navbar-default {
  background-color: #FFFFFF;
}
#nav-wrapp {
  background: none repeat scroll 0 0 #ff9311;
  position: relative;
}
#nav-wrapp #styleSwitcher {
  position: absolute;
  width: 50%;
  background: none repeat scroll 0 0 #221918;
  right: 0;
  line-height: 50px;
  top: 0;
  z-index: 299;
}
#nav-wrapp #styleSwitcher i {
  display: block;
  height: 50px;
  width: 50px;
  background: none repeat scroll 0 0 #ff9311;
  color: #221918;
  float: right;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
}
#nav-wrapp .slogan {
  text-align: center;
  color: #FFFFFF;
  line-height: 50px;
  background: none repeat scroll 0 0 #D44A46;
  padding: 3px 0px;
  min-height: 50px;
  height: auto;
}
#nav-wrapp .slogan .col-md-6 {
  padding: 0px;
  margin: -4px 0px 0px 0px;
}
#nav-wrapp .slogan .col-md-6 a {
  width: 100%;
  height: 50px;
  line-height: 35px;
  border: none;
  color: #FFFFFF;
  font-weight: bold;
  border-left: 1px solid #BF1717;
}
#nav-wrapp .navbar-collapse {
  border: medium none;
}
#nav-wrapp .navbar-default {
  background: none repeat scroll 0 0 #221918;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: medium none;
  margin: 0 0 0 0;
  z-index: 300;
}
#nav-wrapp .navbar-default ul.nav .caret {
  border-bottom-color: #ff9311;
  border-top-color: #ff9311;
}
#nav-wrapp .navbar-default ul.nav .open a {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#nav-wrapp .navbar-default ul.nav .open a:hover {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
}
#nav-wrapp .navbar-default ul.nav .open a:focus {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
}
#nav-wrapp .navbar-default ul.nav li {
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px 0;
}
#nav-wrapp .navbar-default ul.nav li:first-child {
  padding: 0 10px 0 14px;
}
#nav-wrapp .navbar-default ul.nav li:last-child {
  padding: 0 0 0 10px;
}
#nav-wrapp .navbar-default ul.nav li a {
  padding: 0 0 0;
  background: none repeat scroll 0 0 transparent;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
  color: #FFFFFF;
  line-height: 50px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#nav-wrapp .navbar-default ul.nav li a:hover {
  background: none repeat scroll 0 0 transparent;
  color: #999999;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu {
  background: none repeat scroll 0 0 #ff9311;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
  border: medium none;
  margin: 0 0 0;
  padding: 0 0 0;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li {
  padding: 0 14px 0;
  border-bottom: 1px solid #e77e00;
  border-top: 1px solid #ffa436;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:first-child {
  border-top: medium none;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:last-child {
  border-bottom: medium none;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li a {
  color: #221918;
  line-height: 38px;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover {
  background: none repeat scroll 0 0 #221918;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover a {
  color: #FFFFFF;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover a:hover {
  color: #FFFFFF;
}
#nav-wrapp .navbar-default li.nested-dropdown {
  position: relative;
}
#nav-wrapp .navbar-default li.nested-dropdown:before {
  position: absolute;
  content: "\e88d";
  right: 14px;
  top: 0;
  color: #221918;
  font: 13px 'FontAwesome';
  line-height: 36px;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover:before {
  color: #ff9311;
}
#nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu {
  background: none repeat scroll 0 0 #ff9311;
  display: none;
  position: absolute;
  left: 100%;
  top: 100%;
  margin: -38px 0 0 0;
  width: 100% !important;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu {
  display: block;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li {
  padding: 0 14px 0;
  border-bottom: 1px solid #e77e00;
  border-top: 1px solid #ffa436;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:first-child {
  border-top: medium none;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:last-child {
  border-bottom: medium none;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li a {
  color: #221918;
  font-weight: normal;
  line-height: 38px;
  display: block;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover {
  background: none repeat scroll 0 0 #221918;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover a {
  color: #FFFFFF;
}
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover a:hover {
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    NAVIGATION > COLOR PICKER
    ------------------------------------------------------------  */
#colorPicker {
  position: absolute;
  z-index: 399;
  right: 0;
  top: 0;
  width: 50px;
  background: none repeat scroll 0 0 #424848;
  margin: 50px 0 0;
  display: none;
}
#colorPicker ul {
  float: right;
  background: none repeat scroll 0 0 #424848;
  width: 50px;
  display: inline;
}
#colorPicker ul li:nth-of-type(1) a {
  display: block;
  width: 18px;
  height: 18px;
  background: none repeat scroll 0 0 #ff9311;
  margin: 18px auto;
}
#colorPicker ul li:nth-of-type(2) a {
  display: block;
  width: 18px;
  height: 18px;
  background: none repeat scroll 0 0 #02bd85;
  margin: 18px auto;
}
#colorPicker ul li:nth-of-type(3) a {
  display: block;
  width: 18px;
  height: 18px;
  background: none repeat scroll 0 0 #189a99;
  margin: 18px auto;
}
#colorPicker ul li:nth-of-type(4) a {
  display: block;
  width: 18px;
  height: 18px;
  background: none repeat scroll 0 0 #af7ac4;
  margin: 18px auto;
}
#colorPicker ul li:last-child {
  margin: 18px 0 0;
  border-top: 1px solid #485254;
}
#colorPicker ul li:last-child span#closeCP {
  color: #424748;
  display: block;
  width: 18px;
  height: 18px;
  line-height: 17px;
  background: none repeat scroll 0 0 #2f2b2b;
  margin: 18px auto;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}
/*  ------------------------------------------------------------
    MAIN SLIDER - HOME PAGE SLIDER
    ------------------------------------------------------------  */
#main-slider {
  margin: 0 0 10px;
}
#main-slider .image-wrapp {
  position: relative;
}
#main-slider .image-wrapp .bx-caption {
  bottom: 6px;
  padding: 0 0 0;
  left: 10px;
  right: 50%;
  position: absolute;
  color: #FFFFFF;
}
#main-slider .bx-wrapper {
  position: relative;
}
#main-slider .bx-controls {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 34px;
  background: none !important;
}
#main-slider .bx-controls .bx-controls-direction {
  float: right;
}
#main-slider .bx-controls .bx-controls-direction a.bx-prev {
  float: left;
  color: #878786;
  background: none repeat scroll 0 0 #535353;
  height: 34px;
  text-align: center;
  line-height: 34px;
  width: 34px;
}
#main-slider .bx-controls .bx-controls-direction a.bx-next {
  float: right;
  color: #878786;
  background: none repeat scroll 0 0 #535353;
  height: 34px;
  text-align: center;
  line-height: 34px;
  width: 34px;
}
#main-slider .bx-controls .bx-controls-direction a.bx-prev:hover {
  color: #FFFFFF;
  background: none repeat scroll 0 0 #211917;
}
#main-slider .bx-controls .bx-controls-direction a.bx-next:hover {
  color: #FFFFFF;
  background: none repeat scroll 0 0 #211917;
}
#main-slider .pager-container {
  background: none repeat scroll 0 0 #E42020;
  border-right: 9px solid #ff9311;
  min-height: 388px;
  position: relative;
}
#main-slider .pager-container:before {
  content: "";
  border-top: 10px solid transparent;
  border-right: 10px solid #ff9311;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: 32px;
  right: 0;
}
#main-slider .pager-container a .pager-content {
  padding: 30px 40px 0;
  display: none;
}
#main-slider .pager-container a.active .pager-content {
  display: block;
}
#main-slider .pager-container a .pager-content h2 {
  padding: 0 0 10px;
  color: #FFFFFF;
}
#main-slider .pager-container a .pager-content p {
  color: #8f8d8c;
}
#main-slider .pager-container .pager-btn {
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
}
#main-slider .pager-container .pager-btn ul {
  list-style: none outside none;
}
#main-slider .pager-container .pager-btn ul li:first-child {
  float: left;
  width: 50%;
  text-align: center;
}
#main-slider .pager-container .pager-btn ul li:last-child {
  float: right;
  width: 50%;
  text-align: center;
}
#main-slider .pager-container .pager-btn ul li a {
  background: none repeat scroll 0 0 #474747;
  color: #FFFFFF;
  display: block;
  height: 34px;
  line-height: 34px;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#main-slider .pager-container .pager-btn ul li a:hover {
  background: none repeat scroll 0 0 #ff9311;
}
#main-slider .pager-container .pager-btn ul li a.active {
  background: none repeat scroll 0 0 #ff9311;
}
/*  ------------------------------------------------------------
    LATEST NEWS
    ------------------------------------------------------------  */
.latest-news {
  margin: 0 0 30px;
}
.latest-news p {
  padding: 15px 25px;
}
.latest-news ul.news-dropdown {
  display: inline;
}
.latest-news ul.news-dropdown > li {
  color: #ff9311;
  margin: 15px 0;
  display: inline-block;
  padding: 0 10px;
  border-left: 1px solid #544b4a;
}
.latest-news ul.news-dropdown > li.open {
  background-color: #E7E7E7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.latest-news ul.news-dropdown > li > a {
  color: #221918;
}
.latest-news ul.news-dropdown ul.dropdown-menu {
  background: none repeat scroll 0 0 #525252;
  border-radius: 0 0 0 0;
  box-shadow: none;
  border: medium none;
  padding: 0 0 0;
  margin: 8px 0 0;
  right: 0;
  left: inherit;
}
.latest-news ul.news-dropdown ul.dropdown-menu > li > a {
  color: #FFFFFF;
  padding: 12px 20px;
}
.latest-news ul.news-dropdown ul.dropdown-menu > li > a:hover {
  background: none repeat scroll 0 0 #ff9311;
}
/*  ------------------------------------------------------------
    SERVICES MOSAIC
    ------------------------------------------------------------  */
.mosaic {
  padding: 20px 30px 15px;
  text-align: center;
  color: #221918;
  margin: 0 0 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mosaic:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.mosaic h3 {
  font-weight: bold;
  padding: 15px 0 15px;
  text-transform: uppercase;
  font-size: 18px;
}
.mosaic p {
  font-size: 12px;
}
/*  ------------------------------------------------------------
    NEW PROJECT
    ------------------------------------------------------------  */
.new-project {
  min-height: 420px;
  position: relative;
  margin: 0 0 20px;
}
.new-project .project-heading {
  background: none repeat scroll 0 0 #ff9311;
  padding: 0 0 0 12px;
  position: relative;
  display: block;
  height: 30px;
}
.new-project .project-heading .project-title {
  color: #FFFFFF;
  line-height: 30px;
  float: left;
}
.new-project .project-heading .arrows {
  float: right;
  text-align: center;
  line-height: 30px;
}
.new-project .project-heading .arrows span {
  background: none repeat scroll 0 0 #FFFFFF;
  display: inline-block;
  width: 27px;
  height: auto;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.new-project .project-heading .arrows span:hover {
  background: none repeat scroll 0 0 #221918;
  color: #FFFFFF;
}
.new-project .project-footer {
  height: 28px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.new-project .project-footer .view-btn {
  background: none repeat scroll 0 0 #221918;
  padding: 0 10px;
  color: #FFFFFF;
  line-height: 28px;
  height: 28px;
  display: block;
  float: right;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.new-project .project-footer .view-btn:hover {
  background: none repeat scroll 0 0 #ff9311;
}
.new-project .project-pager a.active .project-content {
  display: block;
}
.new-project .project-pager a .project-content {
  padding: 24px 10px 0;
  display: none;
}
.new-project .project-pager a .project-content h2,
.new-project .project-pager a .project-content h4 {
  color: #221918;
}
.new-project .project-pager a .project-content i {
  color: #949292;
  font-size: 11px;
  font-style: italic;
}
.new-project .project-pager a .project-content p {
  padding: 8px 0 50px;
  color: #3c3835;
  font-size: 12px;
}
.new-project img {
  width: 100%;
}
.new-project .project-image {
  overflow: hidden;
  max-height: 175px;
  /*min-height: 175px;*/
  /*TODO: analizar cajas*/
}
#latest-published-properties .new-project .project-image {
  overflow: hidden;
  max-height: 143px;
  min-height: 143px;
}
@media (min-width: 768px) {
  .estrenar .new-project .project-image {
    min-height: 74px;
    max-height: 74px;
  }
}
.new-project p.message {
  font-size: 12px;
  -webkit-line-clamp: 5;
  height: 92px;
  line-height: 17px;
}
.new-project p.price {
  height: auto !important;
}
.property-list-searchers .new-project.listGoogle {
  max-height: 410px;
  min-height: 410px;
}
.property-list-searchers .new-project.listGoogle p.price {
  background-color: #E0E0E0;
}
.property-list-searchers .new-project.listGoogle p.message {
  max-height: 127px;
  min-height: 127px;
}
.property-list-searchers .new-project.listGoogle .project-content {
  min-height: 210px;
  max-height: 210px;
}
.property-list-searchers .new-project.listGoogle .project-image {
  max-height: 195px;
  min-height: 195px;
}
#latest-published-properties p.message {
  min-height: 115px;
  max-height: 115px;
}
/*  ------------------------------------------------------------
    RECENT WORKS / PORTFOLIO
    ------------------------------------------------------------  */
.portfolio-list {
  margin: 0 0 30px;
}
.portfolio-list .portfolio-outer {
  text-align: center;
  border-bottom: 5px solid #ff9311;
  position: relative;
}
.portfolio-list .portfolio-outer h2 {
  color: #221918;
  text-align: left;
  float: left;
}
.portfolio-list .portfolio-outer .controls {
  display: inline-block;
  float: right;
}
.portfolio-list .portfolio-outer .controls .arrows {
  background: none repeat scroll 0 0 #FFFFFF;
  float: right;
  display: block;
  width: 27px;
  height: 27px;
  color: #aeadad;
  line-height: 28px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio-list .portfolio-outer .controls .arrows:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.portfolio-list .portfolio-outer .controls .arrows li {
  padding: 0 10px 0;
}
.portfolio-list figure {
  position: relative;
  z-index: 499;
}
.portfolio-list figure .image-caption {
  position: absolute;
  z-index: 599;
  bottom: 0;
  width: 100%;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  height: 60px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-list figure .image-caption .caption {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  padding: 8px 0 8px;
  top: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-list figure:hover .image-caption .caption {
  margin: 54% 0 0;
}
.portfolio-list figure:hover .image-caption {
  height: 100%;
}
.portfolio-list figure .icon-overlay {
  position: absolute;
  z-index: 600;
  top: 45%;
  bottom: 0;
  opacity: 0;
  left: 50%;
  margin: 0 0 0 -40px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-list figure .icon-overlay a {
  background: none repeat scroll 0 0 #FFFFFF;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio-list figure .icon-overlay a:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.portfolio-list figure:hover .icon-overlay {
  opacity: 1;
}
/*  ------------------------------------------------------------
    TESTIMONIALS
    ------------------------------------------------------------  */
.testimonials {
  margin: 0 0 30px;
}
.testimonials .tab-content {
  position: relative;
  border-left: 41px solid #221918;
  border-right: 3px solid #221918;
  margin: 0 0 8px 0;
  background: none repeat scroll 0 0 #f8f8f8;
}
.testimonials .tab-content .tab-pane {
  padding: 40px 46px 40px;
}
.testimonials .tab-content .tab-pane blockquote {
  color: #878786;
  padding: 10px 0 6px;
  background: none repeat scroll 0 0 transparent;
  font-style: normal;
}
.testimonials .panel-container ul li {
  margin: 0 0 8px 0;
  padding: 12px 25px 13px;
  border-left: 3px solid #221918;
  color: #221918;
  position: relative;
}
.testimonials .panel-container ul li.active {
  background: none repeat scroll 0 0 #ff9311;
  border-left: 3px solid #ff9311;
  color: #FFFFFF;
}
.testimonials .panel-container ul li.active:after {
  content: " ";
  left: 0;
  top: 50%;
  margin: -10px 0 0 -13px;
  border-top: 10px solid transparent;
  border-left: 0px solid transparent;
  border-right: 10px solid #ff9311;
  border-bottom: 10px solid transparent;
  display: block;
  position: absolute;
}
.testimonials .panel-container ul li:hover {
  background: none repeat scroll 0 0 #ff9311;
  border-left: 3px solid #ff9311;
  color: #FFFFFF;
}
.testimonials .panel-container ul li:hover:after {
  content: " ";
  left: 0;
  top: 50%;
  margin: -10px 0 0 -13px;
  border-top: 10px solid transparent;
  border-left: 0px solid transparent;
  border-right: 10px solid #ff9311;
  border-bottom: 10px solid transparent;
  display: block;
  position: absolute;
}
/*  ------------------------------------------------------------
    CLIENTS
    ------------------------------------------------------------  */
.clients-wrapp {
  margin: 0 0 30px;
}
.clients-wrapp .clients-slider {
  padding: 40px 0 45px;
}
.clients-wrapp .clients-outer {
  text-align: center;
  border-bottom: 2px solid #d4d4d4;
  -webkit-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
  position: relative;
}
.clients-wrapp .clients-outer:after {
  content: " ";
  left: 50%;
  margin: 0 0 0 -10px;
  border-top: 10px solid #d9d9d9;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  display: block;
  position: absolute;
}
.clients-wrapp .clients-outer h2 {
  color: #a4a4a4;
  text-shadow: 0 1px 0 #ffffff;
  padding: 0 0 10px;
}
.clients-wrapp .clients-outer .controls {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 599;
  margin: 32px 0 0;
}
.clients-wrapp .clients-outer .controls .arrows {
  background: none repeat scroll 0 0 #d4d4d4;
  float: right;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #8f8d8c;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.clients-wrapp .clients-outer .controls .arrows:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    BACK TO UP
    ------------------------------------------------------------  */
#backTopWrapp {
  position: relative;
  display: block;
  /*height: 70px;*/
  width: 100%;
  display: none;
}
#backTopWrapp .back-top-btn {
  background: none repeat scroll 0 0 #FFFFFF;
  color: #221918;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 70px;
  width: 70px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#backTopWrapp .back-top-btn span {
  font-size: 42px;
  line-height: 70px;
}
#backTopWrapp .back-top-btn:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    CONTACT INFORMATION
    ------------------------------------------------------------  */
.footer-divider {
  border-bottom: 6px solid #b6b6b6;
  position: relative;
}
.footer-divider a {
  background: none repeat scroll 0 0 #cacbcb;
  color: #221918;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  padding: 8px 8px;
  position: absolute;
  margin-top: -8px;
  z-index: 499;
}
.footer-divider a:after {
  top: 0;
  left: 0;
  margin: 0 0 0 -8px;
  content: " ";
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid #9b9b9b;
  border-bottom: 4px solid #9b9b9b;
  display: block;
  position: absolute;
}
.footer-divider a:before {
  top: 0;
  right: 0;
  margin: 0 -8px 0 0;
  content: " ";
  border-top: 4px solid transparent;
  border-left: 4px solid #9b9b9b;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #9b9b9b;
  display: block;
  position: absolute;
}
/*  ------------------------------------------------------------
    FOOTER
    ------------------------------------------------------------  */
footer#footer {
  background: none repeat scroll 0 0 #B6B6B6;
  padding: 56px 0;
}
footer#footer p {
  color: #656363;
}
footer#footer .twitter {
  margin: 30px 0 0;
}
footer#footer .twitter ul li {
  color: #c5c5c5;
}
footer#footer .twitter ul li h4 {
  font-size: 11px;
  font-style: italic;
  color: #656363;
}
footer#footer .twitter ul li img {
  width: 74px;
  height: 74px;
  border: 3px solid #ff9311;
}
footer#footer .contact-details {
  color: #c5c5c5;
}
footer#footer .contact-details ul li .media-heading {
  color: #FFFFFF;
}
footer#footer .contact-details ul li i {
  color: #3b3331;
  font-size: 72px;
}
/*  ------------------------------------------------------------
    PRIVACY SECTION
    ------------------------------------------------------------  */
.footer-privacy {
  background: none repeat scroll 0 0 #221918;
  text-align: center;
  font: bold 11px 'Arial', Helvetica, sans-serif;
}
.footer-privacy ul {
  display: inline-block;
  margin: 4px 0;
}
.footer-privacy ul li {
  float: left;
  padding: 0 12px;
  border-left: 1px solid #c5c5c5;
}
.footer-privacy ul li:first-child {
  border-left: medium none;
}
.footer-privacy ul li a {
  color: #c5c5c5;
}
.footer-privacy ul li a:hover {
  color: #ff9311;
}
/*  ------------------------------------------------------------
    NEWSLETTER
    ------------------------------------------------------------  */
.newsletter {
  background: none repeat scroll 0 0 #FFFFFF;
}
.newsletter .input-group .form-control-wrapper {
  margin: 19px 0;
}
.newsletter .input-group .form-control {
  width: 400px;
  background: none repeat scroll 0 0 #ebebeb;
  border: medium none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  height: 34px;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.newsletter .input-group .btn-default {
  background: none repeat scroll 0 0 #ff9311;
  border: medium none;
  color: #FFFFFF;
  width: 152px;
  margin: 0 0 0 34px;
  height: 72px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  font-weight: lighter;
  font-size: 22px;
}
.newsletter ul li .media-heading {
  color: #221918;
}
.newsletter ul li .media-body {
  margin: 12px 0 0;
}
.newsletter ul li i {
  color: #221918;
  font-size: 72px;
}
/*  ------------------------------------------------------------
    COPYRIGHT
    ------------------------------------------------------------  */
.footer-copyright {
  background: none repeat scroll 0 0 #ff9311;
  text-align: center;
  font: bold 11px 'Arial', Helvetica, sans-serif;
}
.footer-copyright .copyright {
  line-height: 30px;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    BREADCRUMB
    ------------------------------------------------------------  */
.breadcrumb-wrapp {
  width: 100%;
}
.breadcrumb-wrapp .breadcrumb {
  background: none repeat scroll 0 0 transparent;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  margin: 0 0 0 0;
  padding: 8px 10px;
}
.breadcrumb-wrapp .breadcrumb li {
  font-size: 12px;
  color: #9b9b9b;
}
.breadcrumb-wrapp .breadcrumb li a {
  color: #9b9b9b;
}
.breadcrumb-wrapp .breadcrumb li a:hover {
  color: #221918;
}
/*  ------------------------------------------------------------
    OUR TEAM , GROUP MEMBERS
    ------------------------------------------------------------  */
.team {
  margin: 20px 0 0;
}
.team .team-member {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  padding: 8px 8px 0 8px;
  cursor: pointer;
}
.team .team-member figure {
  position: relative;
}
.team .team-member figure .icon-overlay {
  position: absolute;
  top: 0;
  right: 0;
}
.team .team-member figure .icon-overlay span a {
  background: none repeat scroll 0 0 #ff9311;
  width: 33px;
  height: 33px;
  float: right;
  text-align: center;
  line-height: 33px;
  color: #221918;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.team .team-member figure .icon-overlay span:hover a {
  background: none repeat scroll 0 0 #221918;
  color: #FFFFFF;
}
.team .team-member figure .icon-overlay span:last-child a {
  display: none;
}
.team .team-member:hover figure .icon-overlay span:last-child a {
  display: block;
}
.team .team-member:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.team .team-member:hover h3 {
  color: #FFFFFF;
}
.team .team-member:hover p {
  color: #FFFFFF;
}
.team .team-member p {
  color: #919090;
  font: 11px 'Arial', Tahoma;
}
/*  ------------------------------------------------------------
    SPECIAL DIVIDER
    ------------------------------------------------------------  */
.special-divider {
  clear: both;
  text-align: center;
  height: 2px;
  margin: 60px auto 100px;
  position: relative;
  width: 100%;
  background-color: #dedede;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.special-divider span.statistics {
  background-color: #282828;
  top: -40px;
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 12px solid #ebebeb;
  margin-left: -40px;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 54px;
  left: 50%;
  width: 80px;
  height: 80px;
}
.special-divider span.subtitle {
  color: #282828;
  font: 16px 'Open Sans';
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 36px;
}
/*  ------------------------------------------------------------
    EXPERIENCE
    ------------------------------------------------------------  */
.progress-circles {
  margin: 0 0 60px;
  text-align: center;
}
.progress-circles .progress-label {
  text-align: center;
  margin: 30px 0 30px;
}
.progress-circles .progress-label h3 {
  color: #555555;
}
.progress-circles .progress-label small {
  color: #b4b4b4;
}
/*  ------------------------------------------------------------
    BLOG NAVIGATION
    ------------------------------------------------------------  */
.blog-navbar {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  margin: 10px 0 20px;
}
.blog-navbar .navbar-title {
  color: #221918;
}
.blog-navbar .search-input {
  border: 1px solid #c7c7c7;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 298px;
}
.blog-navbar .search-button {
  border: medium none;
  background: none repeat scroll 0 0 transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.blog-navbar ul.blog-filter {
  margin-right: 0 !important;
}
.blog-navbar ul.blog-filter > li {
  padding: 0 0 0;
  margin: 15px 0;
}
.blog-navbar ul.blog-filter > li > a {
  border-right: 1px solid #544b4a;
  padding: 0 18px 0;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-navbar ul.blog-filter > li:first-child > a {
  padding: 0 18px 0 0;
}
.blog-navbar ul.blog-filter > li:last-child > a {
  padding: 0 8px 0 8px;
}
.blog-navbar ul.blog-filter > li > a:hover {
  color: #ff9311;
}
.blog-navbar ul.blog-filter ul.dropdown-menu {
  background: none repeat scroll 0 0 #525252;
  border-radius: 0 0 0 0;
  box-shadow: none;
  border: medium none;
  padding: 0 0 0;
  margin: 8px 0 0;
  right: 0;
  left: inherit;
}
.blog-navbar ul.blog-filter ul.dropdown-menu > li > a {
  color: #FFFFFF;
  padding: 12px 20px;
}
.blog-navbar ul.blog-filter ul.dropdown-menu > li > a:hover {
  background: none repeat scroll 0 0 #ff9311;
}
/*  ------------------------------------------------------------
    BLOG POST, Article
    ------------------------------------------------------------  */
article.blog-post {
  margin: 0 0 30px;
}
article.blog-post figure {
  position: relative;
}
article.blog-post figure img {
  width: 100%;
}
article.blog-post figure .icon-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
}
article.blog-post figure .icon-overlay a {
  background: none repeat scroll 0 0 #221918;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  float: right;
  text-align: center;
  line-height: 32px;
}
article.blog-post figure .icon-overlay a.active {
  background: none repeat scroll 0 0 #ff9311;
  float: right;
}
article.blog-post .post-meta {
  font: 12px 'Arial', Helvetica, sans-serif;
  color: #FFFFFF;
  background: none repeat scroll 0 0 #ff9311;
  height: 30px;
}
article.blog-post .post-meta span {
  float: left;
  line-height: 30px;
  padding: 0 0 0 26px;
}
article.blog-post .post-meta span:first-child {
  background: none repeat scroll 0 0 #221918;
  padding: 0 26px;
}
article.blog-post .post-meta span a {
  color: #FFFFFF;
}
article.blog-post .post-content {
  padding: 20px 20px 0;
}
article.blog-post .post-content .post-title {
  text-align: left;
  padding: 0 0 8px;
  font: bold 20px/22px 'Open Sans';
}
article.blog-post .post-content .post-title a {
  color: #221918;
}
article.blog-post .post-content .alternative-meta {
  text-align: left;
  color: #a9aaa9;
  margin: 0 0 20px;
}
article.blog-post .post-content .alternative-meta span {
  font: 10px 'Arial';
  border-right: 1px solid #dfdfdf;
  padding: 0 12px 0;
}
article.blog-post .post-content .alternative-meta span:first-child {
  padding: 0 12px 0 0;
}
article.blog-post .post-content .alternative-meta span a {
  color: #a9aaa9;
}
article.blog-post .post-content blockquote {
  background: none repeat scroll 0 0 #F6F6F6;
  padding: 30px 30px 30px;
  color: #A1A1A1;
  font-style: italic;
  margin: 0 0 20px;
}
article.blog-post .post-content h3 {
  margin: 10px 0 4px;
  color: #ff9311;
}
article.blog-post .post-content p {
  color: #767676;
  margin: 0 0 20px;
  line-height: 24px;
}
article.blog-post .post-content p a {
  color: #ff9311;
}
article.blog-post .post-content p a:hover {
  color: #221918;
}
article.blog-post .more {
  text-align: right;
  margin: 20px 0 0;
}
article.blog-post .more a {
  color: #FFFFFF;
  background: none repeat scroll 0 0 #ff9311;
  display: block;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
article.blog-post .more a:hover {
  background: none repeat scroll 0 0 #221918;
}
article.alternative-post {
  border-left: 4px solid #d9d9d9;
}
article.alternative-post .post-meta {
  font: 12px 'Arial', Helvetica, sans-serif;
  color: #FFFFFF;
  background: none repeat scroll 0 0 #b1b1b1;
  height: 30px;
}
article.alternative-post .post-meta span {
  float: left;
  line-height: 30px;
  padding: 0 0 0 26px;
}
article.alternative-post .post-meta span:first-child {
  background: none repeat scroll 0 0 #221918;
  padding: 0 26px;
}
article.alternative-post .post-meta span a {
  color: #FFFFFF;
}
article.alternative-post .post-content .post-title {
  text-align: left;
  padding: 0 0 8px;
  font: bold 20px/22px 'Open Sans';
}
article.alternative-post .post-content .post-title a {
  color: #909090;
}
article.format-audio {
  border-left: 4px solid #d9d9d9;
}
article.format-audio .post-content .post-title {
  text-align: left;
  padding: 0 0 8px;
  font: bold 20px/22px 'Open Sans';
}
article.format-audio .post-content .post-title a {
  color: #909090;
}
article.format-link {
  border-left: 4px solid #d9d9d9;
}
article.format-link .post-meta {
  font: 12px 'Arial', Helvetica, sans-serif;
  color: #FFFFFF;
  background: none repeat scroll 0 0 #b1b1b1;
  height: 30px;
}
article.format-link .post-meta span {
  float: left;
  padding: 0 26px;
  line-height: 30px;
  padding: 0 0 0 26px;
}
article.format-link .post-meta span:first-child {
  background: none repeat scroll 0 0 #221918;
  padding: 0 26px;
}
article.format-link .post-meta span a {
  color: #FFFFFF;
}
article.format-link .post-content .post-title {
  text-align: left;
  padding: 0 0 8px;
  font: bold 20px/22px 'Open Sans';
}
article.format-link .post-content .post-title a {
  color: #ff9311;
}
/*  ------------------------------------------------------------
    PAGINATION
    ------------------------------------------------------------  */
#pagination {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 0 20px;
  text-align: center;
  height: 30px;
  position: relative;
}
#pagination a.prev-direction {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: none repeat scroll 0 0 #221918;
  color: #FFFFFF;
}
#pagination a.next-direction {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: none repeat scroll 0 0 #221918;
  color: #FFFFFF;
}
#pagination a.disabled {
  background: none repeat scroll 0 0 #221918;
  color: #221918;
}
#pagination ul {
  display: inline-block;
  margin: 0 auto;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
#pagination ul li {
  float: left;
  background: none repeat scroll 0 0 #f6f6f6;
  padding: 0 12px;
}
#pagination ul li.active {
  background: none repeat scroll 0 0 #ff9311;
}
#pagination ul li.active a {
  color: #FFFFFF;
}
#pagination ul li a {
  line-height: 30px;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  border: medium none;
  padding: 0 0 0;
  background: none repeat scroll 0 0 transparent;
  color: #221918;
}
/*  ------------------------------------------------------------
    WIDGET
    ------------------------------------------------------------  */
.widget {
  margin-bottom: 15px;
}
.widget .widget-title {
  position: relative;
}
.widget .widget-title h4 {
  padding-bottom: 8px;
}
.widget .widget-title h4 a {
  color: #FFFFFF;
}
.widget .widget-title .hideWidget {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 22px;
  color: #FFFFFF;
  display: block;
  width: 26px;
  height: 22px;
  background: none repeat scroll 0 0 #221918;
  cursor: pointer;
}
.widget-title-button {
  border-color: #E42020;
  text-align: center;
  font-weight: bold;
}
.widget .widget-body {
  padding: 24px 24px 24px;
  border-top: 3px solid #221918;
  position: relative;
}
.widget .widget-body ul {
  margin: 0 0 20px;
}
.widget .widget-body ul li {
  padding: 5px 0;
}
/*  ------------------------------------------------------------
    CATEGORIES WIDGET
    ------------------------------------------------------------  */
.widget .categories {
  padding: 10px 20px !important;
}
.widget .categories ul {
  margin: 0 0 !important;
}
.widget .categories ul li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0 6px !important;
}
.widget .categories ul li a {
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget .categories ul li a:hover {
  color: #ff9311;
}
.widget .categories ul li:last-child {
  border-bottom: medium none;
}
/*  ------------------------------------------------------------
    LATEST POSTS WIDGET
    ------------------------------------------------------------  */
.widget .latest-post {
  padding: 0px 0px 0px 15px !important;
}
.widget .latest-post ul li {
  border-bottom: 1px solid #f0f0f0;
}
.widget .latest-post ul li small {
  color: #b0aeae;
  font-style: italic;
}
.widget .latest-post ul li h4 {
  color: #221918;
}
.widget .latest-post ul li p {
  color: #767676;
}
/*  ------------------------------------------------------------
    TWEETER WIDGET
    ------------------------------------------------------------  */
.widget .twitter {
  padding: 24px 24px 8px;
}
.widget .twitter ul {
  font-family: 'Arial', Helvetica, sans-serif;
}
.widget .twitter ul li {
  border-bottom: 1px solid #f0f0f0;
  color: #595857;
  padding: 8px 0;
}
.widget .twitter ul li:last-child {
  border: medium none;
}
.widget .twitter ul li a {
  color: #66b8f1;
}
/*  ------------------------------------------------------------
    ACCORDION WIDGET
    ------------------------------------------------------------  */
.widget .accordion {
  padding: 10px 20px !important;
}
.widget .accordion ul {
  margin: 0 0 !important;
}
.widget .accordion ul li {
  border-top: 1px solid #efefef;
  padding: 18px 0 18px !important;
}
.widget .accordion ul li:first-child {
  border-top: medium none;
}
.widget .accordion ul li a.Plus:before {
  content: '\e81d';
  font-family: "FontAwesome";
  padding: 0 12px 0 0;
}
.widget .accordion ul li a.Minus:before {
  content: '\e821';
  font-family: "FontAwesome";
  padding: 0 12px 0 0;
}
.widget .accordion ul li a {
  color: #221918;
  font-weight: bolder;
  text-decoration: none;
}
.widget .accordion p {
  color: #767676;
  padding: 0 8px 20px 20px !important;
  font: 12px 'Arial';
}
/*  ------------------------------------------------------------
    TAGS WIDGET
    ------------------------------------------------------------  */
.widget .tagcloud {
  padding: 18px 0;
}
.widget .tagcloud a {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  color: #221918;
  white-space: nowrap;
  line-height: 34px;
  margin: 0 4px 0 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget .tagcloud a:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.element-cursor-pointer {
  cursor: pointer;
}
/*  ------------------------------------------------------------
    POST AUTHOR
    ------------------------------------------------------------  */
.post-author {
  margin: 0 0 60px;
}
.post-author .author-image {
  border: 1px solid #e6e6e6;
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 0 20px;
}
.post-author .author-image img {
  padding: 4px 4px 4px;
  max-width: 100%;
}
.post-author .author-image h4 {
  color: #282828;
  padding: 2px 0 6px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
}
.post-author .author-details {
  background: none repeat scroll 0 0 #FFFFFF;
  position: relative;
}
.post-author .author-details p {
  color: #767676;
  padding: 16px 12px;
  line-height: 24px;
}
.post-author .author-details .Triangle {
  position: absolute;
  left: 0;
  bottom: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid #FFFFFF;
  border-bottom: 6px solid transparent;
  border-top: 6px solid #FFFFFF;
  width: 0;
  height: 0;
  margin: 0 0 0 -12px;
}
.post-author .author-meta {
  font: 12px 'Arial', Helvetica, sans-serif;
  color: #FFFFFF;
  background: none repeat scroll 0 0 #ff9311;
  min-height: 30px;
}
.post-author .author-meta span {
  float: left;
  padding: 0 16px;
  line-height: 30px;
}
.post-author .author-meta span:last-child {
  background: none repeat scroll 0 0 #221918;
}
.post-author .author-meta span a {
  color: #FFFFFF;
}
.post-author ul.social li {
  padding: 10px 20px;
  float: left;
}
.post-author ul.social li a {
  color: #c7c7c7;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.post-author ul.social li a:hover {
  color: #606060;
}
/*  ------------------------------------------------------------
    COMMENTS
    ------------------------------------------------------------  */
#post-comments {
  margin: 0 0 20px;
}
#post-comments .comments {
  margin: 0 0 60px;
}
#post-comments .comments .media > .pull-left {
  margin-right: 20px !important;
}
#post-comments .comments .avatar {
  position: relative;
  border: 1px solid #e6e6e6;
}
#post-comments .comments .avatar img {
  padding: 4px 4px 4px;
  max-width: 100%;
  width: 84px;
  height: 84px;
}
#post-comments .comments .avatar h4 {
  color: #282828;
  padding: 2px 0 8px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
}
#post-comments .comments .comment {
  position: relative;
}
#post-comments .comments .comment p {
  color: #767676;
  padding: 18px 12px 0;
  line-height: 24px;
}
#post-comments .comments .comment .reply {
  line-height: 24px;
  text-align: center;
  width: 100%;
  display: block;
  margin: 20px 0 0;
}
#post-comments .comments .comment .reply a {
  color: #FFFFFF;
  text-align: center;
  width: 94px;
  height: 24px;
  display: block;
  background: none repeat scroll 0 0 #ff9311;
}
#post-comments .post-leave-comment .input-field {
  margin: 0 0 15px;
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
}
#post-comments .post-leave-comment .message-field {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
  resize: vertical;
}
#post-comments .button {
  font-size: 11px;
}
#post-comments .button .btn-submit {
  background: none repeat scroll 0 0 #221918;
  border: medium none;
  color: #FFFFFF;
  padding: 5px 54px;
  float: right;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#post-comments .button .btn-submit:hover {
  background: none repeat scroll 0 0 #ff9311;
}
/*  ------------------------------------------------------------
    CONTACT US
    ------------------------------------------------------------  */
.contact-form {
  margin: 0 0 40px;
}
.contact-form .contact-input {
  margin: 0 0 15px;
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
}
.box-office-form .contact-input {
  margin: 0 0 12px;
}
.box-office-form .field-validation-error {
  margin-bottom: 10px;
  display: block;
}
.contact-form .contact-textarea {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
  resize: vertical;
}
.submit-btn {
  background: none repeat scroll 0 0 #221918;
  border: medium none;
  color: #FFFFFF;
  font-size: 15px;
  padding: 5px 54px;
  float: right;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.submit-btn:hover {
  background: none repeat scroll 0 0 #FFEB00;
}
.general-btn {
  background: none repeat scroll 0 0 #221918;
  border: medium none;
  color: #FFFFFF;
  font-size: 15px;
  padding: 5px 54px;
  float: right;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.general-btn:hover {
  background: none repeat scroll 0 0 #FFEB00;
}
/*  ------------------------------------------------------------
    GOOGLE MAP
    ------------------------------------------------------------  */
.google-map {
  margin: 0 0 30px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
/*  ------------------------------------------------------------
    CONTACT DETAILS
    ------------------------------------------------------------  */
.widget .contact-details {
  padding: 16px 18px !important;
}
.widget .contact-details ul {
  margin: 0 0 0 !important;
}
.widget .contact-details ul li h4 {
  color: #221918;
}
.widget .contact-details ul li .media-body {
  color: #767676;
}
.widget .contact-details ul li a {
  color: #221918;
}
/*  ------------------------------------------------------------
    ERROR 404
    ------------------------------------------------------------  */
.page-not-found {
  text-align: center;
  margin: 150px 0 100px;
}
.page-not-found h1 {
  font-size: 240px;
  margin: 0 0 40px;
  line-height: 170px;
}
.page-not-found h1 .different-color {
  color: #ff9311;
}
.page-not-found h2 {
  font-weight: bold;
}
/*  ------------------------------------------------------------
    PORTFOLIO NAVIGATION
    ------------------------------------------------------------  */
.portfolio-navbar {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: medium none;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  margin: 10px 0 20px;
}
.portfolio-navbar .navbar-title {
  color: #221918;
}
.portfolio-navbar ul.portfolio-filter {
  margin-right: 0 !important;
}
.portfolio-navbar ul.portfolio-filter > li {
  padding: 0 0 0;
  margin: 15px 0;
}
.portfolio-navbar ul.portfolio-filter > li > a {
  border-right: 1px solid #544b4a;
  padding: 0 18px 0;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio-navbar ul.portfolio-filter > li:first-child > a {
  padding: 0 18px 0 0;
}
.portfolio-navbar ul.portfolio-filter > li:last-child > a {
  padding: 0 8px 0 8px;
}
.portfolio-navbar ul.portfolio-filter > li > a:hover {
  color: #ff9311;
}
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu {
  background: none repeat scroll 0 0 #525252;
  border-radius: 0 0 0 0;
  box-shadow: none;
  border: medium none;
  padding: 0 0 0;
  margin: 8px 0 0;
  right: 0;
  left: inherit;
}
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu > li > a {
  color: #FFFFFF;
  padding: 12px 20px;
}
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu > li > a:hover {
  background: none repeat scroll 0 0 #ff9311;
}
/*  ------------------------------------------------------------
    PORTFOLIO MOSAIC
    ------------------------------------------------------------  */
.portfolio-mosaic {
  margin: 0 0 20px;
}
.portfolio-mosaic figure {
  position: relative;
  z-index: 499;
}
.portfolio-mosaic figure img {
  width: 100%;
}
.portfolio-mosaic figure .image-caption {
  position: absolute;
  z-index: 599;
  bottom: 0;
  width: 100%;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  height: 60px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-mosaic figure .image-caption .caption {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  padding: 8px 0 8px;
  top: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-mosaic figure:hover .image-caption .caption {
  margin: 54% 0 0;
}
.portfolio-mosaic figure:hover .image-caption {
  height: 100%;
}
.portfolio-mosaic figure .icon-overlay {
  position: absolute;
  z-index: 600;
  top: 45%;
  bottom: 0;
  opacity: 0;
  left: 50%;
  margin: 0 0 0 -40px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.portfolio-mosaic figure:hover .icon-overlay {
  opacity: 1;
}
.portfolio-mosaic figure .icon-overlay a {
  background: none repeat scroll 0 0 #FFFFFF;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio-mosaic figure .icon-overlay a:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    INFINTY SCROLL
    ------------------------------------------------------------  */
#addMore {
  text-align: center;
  margin: 20px 0 50px;
}
#addMore a {
  color: #221918;
  font: 14px 'Open Sans', Arial, sans-serif;
}
#addMore a:hover {
  color: #ff9311;
}
/*  ------------------------------------------------------------
    PORTFOLIO IMAGE SLIDER CONTROLS
    ------------------------------------------------------------  */
.controls-wrapp {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 0 15px;
  height: 45px;
  padding: 0 0 0 10px;
}
.controls-wrapp h3 {
  color: #494747;
  line-height: 45px;
}
.controls-wrapp h2.titulo-a-estrenar {
  color: #494747;
  font-size: 18px;
}
.controls-wrapp h2.titulo-a-estrenar a {
  padding-bottom: 3px;
}
.controls-wrapp .controls a {
  width: 45px;
  height: 45px;
  display: inline-block;
  background: none repeat scroll 0 0 #221918;
  color: #838282;
  line-height: 45px;
  float: right;
  text-align: center;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.controls-wrapp .controls a:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    LUNCH PROJECT
    ------------------------------------------------------------  */
.lunch-project {
  background: none repeat scroll 0 0 #ff9311;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 0 20px;
  height: 45px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.lunch-project:hover {
  background: none repeat scroll 0 0 #221918;
}
.lunch-project h3 {
  color: #221918;
  line-height: 45px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.lunch-project:hover h3 {
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    PROJECT DETAILS
    ------------------------------------------------------------  */
.widget .project-details {
  padding: 10px 20px !important;
}
.widget .project-details ul {
  margin: 0 0 !important;
}
.widget .project-details ul li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0 6px !important;
}
.widget .project-details ul li a {
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget .project-details ul li a:hover {
  color: #ff9311;
}
.widget .project-details ul li:last-child {
  border-bottom: medium none;
}
/*  ------------------------------------------------------------
    TESTIMONIALS WIDGET
    ------------------------------------------------------------  */
.widget .testimonials {
  padding: 24px 24px 24px;
}
.widget .testimonials small {
  color: #b0aeae;
  font-style: italic;
}
.widget .testimonials h4 {
  color: #221918;
}
.widget .testimonials p {
  color: #767676;
  padding: 0 0 8px;
}
/*  ------------------------------------------------------------
    SERVICE HEADER
    ------------------------------------------------------------  */
header.services {
  margin: 0 0 20px;
  height: auto;
  max-width: 100%;
  background-color: #ff9311;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: block;
}
header.services .slogan {
  padding-top: 45px;
  padding-bottom: 45px;
}
/*  ------------------------------------------------------------
    SERVICE CAROUSEL
    ------------------------------------------------------------  */
.svc-carousel-wrapp {
  background: none repeat scroll 0 0 #dddddd;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.svc-carousel-wrapp .service-item {
  padding: 20px 0;
  text-align: center !important;
  color: #a4a4a4;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: bold;
  font-family: 'Arial', Tahoma;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.svc-carousel-wrapp .service-item h4 {
  text-align: center !important;
}
.svc-carousel-wrapp .service-item.active {
  background: none repeat scroll 0 0 #FFFFFF;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.svc-carousel-wrapp .service-item.active:hover {
  color: #221918;
}
.svc-carousel-wrapp .service-item:hover {
  color: #666666;
}
.service-content {
  padding: 36px 20px;
  margin-bottom: 30px;
}
.service-content h2 {
  padding: 0 0 16px;
  color: #545453;
}
.service-content p {
  color: #616161;
  font-family: 'Arial', Helvetica, sans-serif;
}
.service-content p a {
  color: #ff9311;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.service-content p a:hover {
  color: #221918;
}
.service-content p img {
  width: 100%;
  margin: 16px 0;
}
.svc-carousel-ctrls {
  position: relative;
  z-index: 499;
  height: 52px;
}
.svc-carousel-ctrls .controls {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 599;
}
.svc-carousel-ctrls .controls .owl-btn {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #dddddd;
  float: right;
  cursor: pointer;
  color: #a4a4a4;
  line-height: 20px;
}
.svc-carousel-ctrls .controls .owl-btn:hover {
  background-color: #221918;
  color: #FFFFFF;
}
/*  ------------------------------------------------------------
    SURVEY WIDGET
    ------------------------------------------------------------  */
.widget .survey-widget .vote-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.widget .survey-widget .vote-btn a {
  color: #FFFFFF;
  padding: 5px 15px 5px;
  background: none repeat scroll 0 0 #ff9311;
  display: inline-block;
}
/*  ------------------------------------------------------------
    SPECIAL WIDGET
    ------------------------------------------------------------  */
.special-widget {
  margin-bottom: 20px;
}
.special-widget .widget-body ul a {
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.special-widget .widget-body ul a:hover {
  color: #ff9311;
}
.special-widget .widget-body ul li {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #f5f5f5;
  padding: 18px 6px;
}
.special-widget .widget-body ul li:first-child {
  border-top: medium none;
}
.special-widget .widget-body ul li:last-child {
  border-bottom: medium none;
}
/*  ============================================================
    HOME PAGE NO#2
    ============================================================  */
/*  ------------------------------------------------------------
    FULL WIDTH NAVIGATION
    ------------------------------------------------------------  */
#fw-nav-wrapp {
  background: none repeat scroll 0 0 #221918;
  z-index: 300;
  position: relative;
}
#fw-nav-wrapp .navbar-collapse {
  border: medium none;
}
#fw-nav-wrapp .navbar-default {
  background: none repeat scroll 0 0 #221918;
  border-radius: 0 0 0 0;
  box-shadow: none;
  border: medium none;
  margin: 0 0 0 0;
  z-index: 300;
}
#fw-nav-wrapp .navbar-default ul.nav .caret {
  border-bottom-color: #ff9311;
  border-top-color: #ff9311;
}
#fw-nav-wrapp .navbar-default ul.nav .open a {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
}
#fw-nav-wrapp .navbar-default ul.nav .open a:hover {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
}
#fw-nav-wrapp .navbar-default ul.nav .open a:focus {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
}
#fw-nav-wrapp .navbar-default ul.nav li {
  font-size: 11px;
  font-weight: bold;
}
#fw-nav-wrapp .navbar-default ul.nav li a {
  padding: 0 64px 0 35px;
  background: none repeat scroll 0 0 transparent;
  border-radius: 0 0 0;
  color: #FFFFFF;
  line-height: 50px;
  box-shadow: none;
  text-shadow: none;
}
#fw-nav-wrapp .navbar-default ul.nav li a:hover {
  background: none repeat scroll 0 0 transparent;
  color: #999999;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu {
  background: none repeat scroll 0 0 #ff9311;
  border-radius: 0 0 0;
  border: medium none;
  margin: 0 0 0;
  padding: 0 0 0;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li {
  border-bottom: 1px solid #e77e00;
  border-top: 1px solid #ffa436;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:first-child {
  border-top: medium none;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:last-child {
  border-bottom: medium none;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li a {
  color: #221918;
  padding: 0 10px 0 25px !important;
  line-height: 38px !important;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover {
  background: none repeat scroll 0 0 #221918;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover a {
  color: #FFFFFF;
}
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li:hover a:hover {
  color: #FFFFFF;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown {
  position: relative;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:before {
  position: absolute;
  content: "\e88d";
  right: 14px;
  top: 0;
  color: #221918;
  font: 13px 'FontAwesome';
  line-height: 36px;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover:before {
  color: #ff9311;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu {
  background: none repeat scroll 0 0 #ff9311;
  display: none;
  position: absolute;
  left: 100%;
  top: 100%;
  margin: -38px 0 0 0;
  width: 100% !important;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu {
  display: block;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li {
  border-bottom: 1px solid #e77e00;
  border-top: 1px solid #ffa436;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:first-child {
  border-top: medium none;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:last-child {
  border-bottom: medium none;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li a {
  padding: 0 10px 0;
  color: #221918;
  font-weight: normal;
  line-height: 38px;
  display: block;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover {
  background: none repeat scroll 0 0 #221918;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover a {
  color: #FFFFFF;
}
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li:hover a:hover {
  color: #FFFFFF;
}
#fw-nav-wrapp #styleSwitcher {
  position: absolute;
  width: 50%;
  background: none repeat scroll 0 0 #221918;
  right: 0;
  line-height: 50px;
  top: 0;
  z-index: 299;
}
#fw-nav-wrapp #styleSwitcher i {
  display: block;
  height: 50px;
  width: 50px;
  background: none repeat scroll 0 0 #ff9311;
  color: #221918;
  float: right;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
}
/*  ------------------------------------------------------------
    FULL WIDTH SLIDER
    ------------------------------------------------------------  */
#fw-nivo-wrapp {
  margin: 0 0 10px;
}
#fw-nivo-wrapp .nivo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#fw-nivo-wrapp .nivo-slider .nivo-directionNav a {
  color: #ff9311 !important;
  font-size: 72px;
  top: 50%;
  margin-top: -62px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/*  ============================================================
    COLUMNS
    ============================================================  */
.grid-block {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
/*  ============================================================
    ELEMENTS
    ============================================================  */
header.elements {
  margin: 0 0 20px;
  height: auto;
  max-width: 100%;
  background-color: #ff9311;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: block;
}
header.elements .slogan {
  padding-top: 45px;
  padding-bottom: 45px;
}
/*  ------------------------------------------------------------
    ALERTS
    ------------------------------------------------------------  */
.SuccessAlert {
  background-color: #d3ebb7;
  border: 1px solid #9adf8f;
  padding: 15px 24px;
  color: #404040;
}
.SuccessAlert a {
  color: #6da662;
  font-size: 42px;
}
.SuccessAlert h4 {
  color: #258815;
  font: 16px 'Open Sans', Arial, sans-serif;
}
.WarningAlert {
  background-color: #f3f1c4;
  border: 1px solid #e5db55;
  padding: 15px 24px;
  color: #404040;
}
.WarningAlert a {
  color: #dbd149;
  font-size: 42px;
}
.WarningAlert h4 {
  color: #878314;
  font: 16px 'Open Sans', Arial, sans-serif;
}
.ErrorAlert {
  background-color: #f6cace;
  border: 1px solid #df8f90;
  padding: 15px 24px;
  color: #404040;
}
.ErrorAlert a {
  color: #d46e77;
  font-size: 42px;
}
.ErrorAlert h4 {
  color: #871414;
  font: 16px 'Open Sans', Arial, sans-serif;
}
/*  ------------------------------------------------------------
    VIDEO
    ------------------------------------------------------------  */
.VideoContainer {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 20px 0 52%;
}
.VideoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*  ============================================================
    PLUGINS
    ============================================================  */
.ms-wrapp {
  position: relative !important;
}
.placeholder {
  color: #c8c8c8;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
  position: absolute !important;
  left: 12px !important;
  top: 8px !important;
  width: 8px !important;
  height: 62px !important;
  background: #ff9311 !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important;
  margin: 0 !important;
}
.mejs-video .mejs-controls {
  position: absolute !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  background: #ff9311 !important;
  height: 36px !important;
  width: 100% !important;
}
/*  ============================================================
EXTRAS
============================================================  */
.fanasociado .fanlogo {
  width: 93%;
}
.fanasociado .project-image {
  padding-left: 13px;
  padding-top: 2px;
  border-bottom: 2px solid #ffdc14;
}
.fanasociado .project-text-description {
  padding: 18px;
  font-size: 13px;
}
.fanasociado .project-image.foto {
  border-top: 1px solid #cacaca;
  bottom: 0px;
  max-height: 150px;
  overflow: hidden;
  position: relative;
  /*border-bottom: 1px solid gray;*/
  padding: 0px;
}
.fanasociado .project-image.foto img {
  width: 100%;
}
.abogados .logo-abogados {
  padding-left: 15px;
  padding-top: 5px;
}
.abogados .project-image {
  border-bottom: 2px solid #ffdc14;
}
.abogados .project-text-description {
  padding: 18px;
  font-size: 13px;
}
.abogados .project-image.mapa {
  border-top: 1px solid #cacaca;
  bottom: 0px;
  max-height: 150px;
  overflow: hidden;
  position: relative;
  /*border-bottom: 1px solid gray;*/
}
.abogados .slogan {
  background: #E42020;
  height: 62px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
.abogados .project-text-slogan {
  padding: 8px 18px 18px;
  font-size: 13px;
  color: white;
  text-align: center;
  font-weight: bold;
  line-height: 19px;
}
.bold {
  font-weight: bold !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
#header ul.header-menu {
  margin: 35px 0 0 !important;
}
#header .navbar-form {
  margin: 20px 0 0 !important;
}
.tasaciones li {
  display: inline-block;
}
.tasaciones li a {
  color: white;
}
.header-social.line-social {
  margin-top: 20px;
  display: block;
  float: right;
}
.header-social.line-social a {
  color: black;
}
.tile-inmueble.inmueble .project-footer {
  top: 25px;
}
.tile-inmueble.inmueble .project-image {
  padding-left: 0px;
}
.tile-inmueble.inmueble .project-image img {
  max-height: 175px;
}
.module-home .widget-title {
  background: #E42020;
  color: white;
}
.module-home .widget-title h4 {
  padding: 5px 12px;
}
.module-home .widget-title .hideWidget {
  display: none;
}
.module-home .widget-body {
  border-top: 0px;
  padding: 0px 0px 0px 24px !important;
}
.module-home .widget-body ul {
  overflow-y: auto;
  height: 389px;
  padding: 5px 10px 15px 0px;
  margin: 0 0 0px !important;
}
.img-result-properties img {
  border-right: 1px solid #e7e7e7;
}
#main-slider .bx-controls {
  position: relative;
}
.pager-container.estrenar {
  border: none !important;
}
.estrenar .btn-group.bootstrap-select {
  width: 100% !important;
  background: none repeat scroll 0 0 #ffffff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 0;
  -moz-border-radius: 0 0 0;
  border-radius: 0 0 0;
}
.estrenar .pager-btn {
  padding: 35px;
}
.estrenar .pager-container.pager-container-entry {
  background: white !important;
  border-right: 1px solid #ebebeb !important;
  padding: 0px 32px;
}
.estrenar a.WhiteSkin.item-carousel-container {
  background: #fafafa !important;
  border-left: 1px solid gainsboro !important;
}
.estrenar a.WhiteSkin.item-carousel-container {
  height: 354px !important;
}
.estrenar .col-md-8.col-sm-12.item-carousel-descripcion {
  padding: 30px;
}
.estrenar .col-md-8.col-sm-12.item-carousel-descripcion h4 {
  font-weight: bold;
  font-size: 17px;
  color: #646464;
}
.estrenar .col-md-8.col-sm-12.item-carousel-descripcion i {
  color: #7f7f7f;
  font-size: 11px;
}
.estrenar .col-md-8.col-sm-12.item-carousel-descripcion p {
  display: -webkit-box !important;
  -webkit-line-clamp: 9 !important;
  -webkit-box-orient: vertical !important;
  font-size: 12px;
  color: #6b6b6b;
  padding: 20px 0px;
}
.estrenar .col-md-4.col-sm-12 {
  padding: 0px !important;
}
.estrenar #main-slider .bx-controls {
  margin-top: -35px !important;
}
.estrenar form h2 {
  padding: 15px 0px !important;
}
.estrenar .form-group {
  padding: 28px 6px !important;
}
@media (max-width: 768px) {
  .estrenar .form-group {
    padding: 0px 0px !important;
  }
}
.estrenar #form-search-construction .pager-btn {
  bottom: 0;
  left: 0;
  width: inherit;
  position: relative;
}
.estrenar #form-search-construction .pager-btn li {
  width: 100% !important;
}
.estrenar #form-search-construction .pager-btn a {
  padding: 0px 13px;
}
#main-slider .pager-container.estrenar,
.estrenar .pager-container {
  min-height: 95px !important;
}
/*Item estrenar*/
.item-estrenar * {
  padding: 0px;
}
.item-estrenar .content {
  color: black;
  padding: 10px 12px;
}
.item-estrenar p,
.item-estrenar h4,
.item-estrenar small {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block !important;
  height: initial !important;
}
.item-estrenar h4 {
  font-size: 13px;
  font-weight: bold;
}
.item-estrenar p {
  font-size: 12px;
}
.item-estrenar small {
  color: #ba1212;
}
.item-estrenar img,
.item-estrenar .new-project {
  min-height: 80px !important;
}
.title-estrenar h3,
.title-propiedades h1,
.title-propiedades h3,
.title-estrenar p {
  padding: 12px;
}
.title-estrenar h3,
.title-propiedades h1,
.title-propiedades h3,
.title-ficha h3 {
  font-weight: bold;
  font-size: 18px;
}
.title-ficha h3 {
  font-size: 20px;
}
.title-propiedades h1 {
  font-size: 24px;
}
.title-ficha h3 {
  line-height: 25px;
}
.title-ficha .price,
.title-propiedades .price,
.detalle-ficha .price {
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding-top: 10px;
}
.controls-wrapp.ficha {
  height: auto;
  padding: 10px 0px;
}
.contenedor-nav-propiedad {
  display: block;
}
.contenedor-nav-propiedad:before,
.contenedor-nav-propiedad:after {
  display: table;
  content: " ";
}
#filters {
  margin-right: 0px;
}
.estrenar-view .ImageWrapper img {
  width: 100%;
}
.estrenar-view h3 {
  margin-top: 0px !important;
}
.estrenar-view .description {
  padding: 15px;
}
.estrenar-view hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.estrenar-view .datos-anexos {
  margin-top: 0px !important;
}
.estrenar-view .main-info {
  height: 328px;
}
.construction-information-title {
  padding-top: 10px;
  padding-bottom: 10px;
}
.construction-information-title .description {
  padding: 2px;
}
/*Detelle inmueble*/
.detalle-inmueble .construction-information {
  padding: 35px;
}
.detalle-inmueble .widget-title,
.detalle-oficina .widget-title {
  background: #E42020;
  color: white;
  padding: 5px 22px 0px;
  /*text-transform: uppercase;*/
}
.detalle-inmueble .widget-title,
.detalle-oficina .widget-title,
.feactures-estate-map-blocks-wrapper,
.feactures-construction-blocks-wrapper,
.feactures-media-construction-blocks-wrapper,
.content-button,
.feactures-estate-blocks-wrapper {
  border-bottom: 3px solid #FFEB00;
}
.detalle-oficina .WidgetBody,
.detalle-inmueble .WidgetBody {
  padding: 15px 22px 22px;
}
.detalle-oficina .WidgetBody h3,
.detalle-inmueble .WidgetBody h3 {
  color: #221918;
  font-weight: normal;
  font-size: 13px;
  margin-top: 3px;
  padding-bottom: 2px;
}
.detalle-inmueble .important-data {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  font-size: 13px;
  font-weight: bold;
  color: #221918;
  text-align: left;
  height: 27px;
  overflow: hidden;
}
.detalle-inmueble .datos-anexos,
.important-message {
  margin-top: 15px;
}
.detalle-inmueble .datos-anexos #feactures-blocks {
  background: #E42020;
  color: white;
  /*text-transform: uppercase;*/
}
.detalle-inmueble .datos-anexos #feactures-blocks a {
  display: inline-block;
  background: none;
  color: white;
}
.detalle-inmueble .datos-anexos #feactures-blocks a li {
  background: none !important;
  padding: 6px 23px;
}
.detalle-inmueble .datos-anexos #feactures-blocks a li.active {
  background: #4f4f4f !important;
}
.detalle-inmueble .datos-anexos .feactures-construction-entry.tab-pane h2,
.detalle-inmueble .datos-anexos .feactures-estate-entry.tab-pane h2 {
  padding: 15px 22px;
  border-bottom: 1px solid #cccccc;
  font-size: 15px;
}
.detalle-inmueble .datos-anexos .carousel-inner.feacture-photo-carousel-container img {
  width: 100%;
}
.detalle-inmueble .datos-anexos .pagination li {
  font-size: 9px !important;
}
.detalle-inmueble .your-request-container {
  margin-top: 25px;
}
.detalle-inmueble .your-request-container h2 {
  margin-bottom: 15px;
  line-height: 120%;
  font-size: 20px;
  font-weight: bold;
}
.amenities img {
  vertical-align: middle !important;
}
.amenities li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 6px;
  margin-bottom: 0px;
  font-size: 13px;
  font-family: arial;
  padding-top: 6px;
}
/*Tile inmueble*/
.tile-inmueble .project-content p {
  font-size: 13px;
  padding: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 90px;
}
.tile-inmueble.inmueble .project-content p {
  font-size: 13px;
  padding: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 78px;
}
.tile-inmueble.inmueble .WhiteSkin {
  padding-left: 0px !important;
}
.precio-inmueble {
  text-align: right;
  color: #e42020;
}
- .tile-inmueble.inmueble i {
  font-size: 12px;
  padding: 13px;
  color: #221918 !important;
}
.tile-inmueble .project-content .direccion {
  font-size: 14px;
  font-weight: bold;
}
.tile-inmueble .new-project .project-content {
  height: 150px;
}
.tile-inmueble .new-project {
  border: solid 3px #B7B7B7;
  min-height: 175px;
}
.listGoogle {
  border: 3px solid #B7B7B7;
  max-height: 350px;
  min-height: 350px;
}
.latest-properties-galery .new-project .project-content p {
  line-height: initial !important;
  height: 65px;
}
.tile-inmueble .project-content h2,
.listGoogle .project-content h2,
.tile-inmueble .project-content h4,
.listGoogle .project-content h4 {
  font-size: 14px;
  padding: 12px 3px 25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile-inmueble i {
  font-size: 12px;
  padding: 5px;
  color: #FFFFFF;
}
.listGoogle .price {
  padding: 12px 15px 25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #E42020;
  font-weight: bold;
}
.tile-inmueble.estrenar .project-content p,
.listGoogle .project-content p {
  font-size: 13px;
  padding: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 90px;
}
#form-search-construction h2 {
  font-weight: bold;
  color: #000000 !important;
  font-size: 14px;
  margin-bottom: 6px;
  padding: 25px 0px 15px !important;
}
.footer-widget.contact-details li {
  display: block;
}
.footer-widget.contact-details li .media-body {
  width: 60%;
  display: inline-block;
}
.footer-widget.contact-details li .media-body p {
  font-size: 12px;
  margin-bottom: -3px !important;
}
.footer-widget.contact-details li .media-heading {
  margin-bottom: 2px;
}
#nav-wrapp .header-social {
  overflow: hidden;
  background: none !important;
  padding: 0px;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="span"] {
  float: none;
  display: inline-block;
  margin-left: 0;
  border-radius: 0px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectpicker {
  border: 1px solid #c7c7c7;
}
.page-title {
  font: 18px 'Arial', Helvetica, sans-serif;
}
.form-container.pager-container {
  border-right-color: white !important;
}
.form-container.pager-container .contact-form h1 {
  padding: 7px 13px 7px;
  font-size: 16px;
  font-weight: bold;
}
.form-container.pager-container .contact-form .form-group {
  margin-bottom: -3px;
}
.form-container.pager-container .contact-form .contact-input {
  margin: 0 0 10px;
  width: 100% !important;
}
.form-container.pager-container .contact-form .submit-btn {
  /*margin-right: 15px;*/
  margin-top: 5px;
  font-size: 15px;
}
.no-padding-right {
  padding-right: 0px !important;
}
.no-padding-left {
  padding-left: 0px !important;
}
#message-request-order span,
.dialog-message-error {
  color: #E42020;
  font-weight: bold;
  font-size: 14px;
}
.newsletter .input-group .form-control {
  width: 100%;
}
.sliderhome {
  width: 100%;
}
.bx-controls-direction {
  float: left;
}
.widget .latest-post {
  padding: 0px 0px 0px 15px !important;
}
/*Table pedidos*/
.pedidos .btn-default {
  padding: 5px 10px;
  border: 1px solid gainsboro;
}
.pedidos .btn-danger {
  padding: 5px 10px;
}
.pedidos .table-striped > tbody > tr > td,
.pedidos .table-striped > tbody > tr > th {
  background-color: white;
}
.pedidos .table-striped > tbody > tr:nth-child(odd) > td,
.pedidos .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #F5F5F5;
}
.table.pedidos > tbody > tr > td,
.table.pedidos > tfoot > tr > td,
.table.pedidos > tbody > tr > th {
  border-top: none;
}
.table.pedidos {
  margin-top: 25px;
}
.table.pedidos > thead > tr > th {
  border: none;
}
.pedidos tbody {
  font-size: 12px;
}
.pedidos thead {
  font-size: 13px;
  font-weight: bold;
  background: #d5d5d5;
}
.search-pedidos input {
  border-color: white;
  border-radius: 0px;
}
/*Tasaciones*/
form.carga-tasaciones,
form.opiniones {
  background: white;
  padding: 5px 15px;
  /*margin-top: 25px;*/
}
form.carga-tasaciones .form-control,
form.opiniones .form-control {
  border-radius: 0px;
}
form.carga-tasaciones .btn-red,
form.opiniones .btn-red {
  background: #E42020 !important;
  color: white;
  padding: 5px 25px;
  margin-left: 15px;
}
form.opiniones input[type="text"] {
  margin-bottom: 5px;
}
form.opiniones {
  min-height: 715px;
}
form.opiniones .btn-red {
  margin-left: 0px;
  margin-top: 15px;
}
form.opiniones-unsubscribedsurvey {
  min-height: 450px;
}
form.opiniones-satisfactionsurvey {
  min-height: 480px;
}
.label-title {
  margin-top: 10px;
  position: relative;
  top: 15px;
}
.mEsp {
  margin-top: -5px !important;
  margin-bottom: 5px;
}
.btn-gray {
  background: #3c3c3c;
  color: white;
}
.btn-gray:hover,
.btn-gray:focus {
  color: white;
  background: #000000;
}
.btn-whiteGray {
  margin-top: 15px;
  background: #ccc;
}
td:last-child {
  text-align: right;
}
/*  ============================================================
    EXTRAS MEDIA QUERIES
    ============================================================  */
@media (max-width: 991px) {
  .hide-padding-right {
    padding-right: 15px !important;
  }
  .hide-padding-left {
    padding-left: 15px !important;
  }
  .form-container {
    padding: 20px 30px 30px !important;
  }
  .contact-form .col-sm-12 {
    float: none !important;
  }
  .newsletter .input-group .btn-default {
    height: 80px !important;
  }
  #nav-wrapp .navbar-default {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 768px) {
  .inmueble .img-responsive {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
  }
  .inmueble .WhiteSkin,
  .inmueble .project-image {
    padding: 0px !important;
  }
  .inmueble .project-pager {
    margin-bottom: 25px;
  }
  .inmueble .project-footer {
    position: relative !important;
    height: auto;
  }
  #nav-wrapp .slogan {
    background: #D44A46 !important;
  }
  #nav-wrapp .slogan .col-md-6 a {
    border-top: 1px solid #BF1717;
  }
}
/*Porfolio*/
#portfolio-navigation-collapse li {
  background: #E42020;
}
#portfolio-navigation-collapse li a {
  color: white;
  font-weight: 500;
}
/*Btn sidebar*/
.controls-wrapp.back {
  padding: 0px;
  background: #000000;
}
.controls-wrapp.back a {
  width: 100%;
  padding: 0px;
}
.controls-wrapp.back a:hover i {
  color: white;
}
.controls-wrapp.back label {
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  width: 100%;
  padding: 0px;
  text-align: left;
}
.controls-wrapp.back .bx-prev {
  float: left;
  margin: 0px;
}
.controls-wrapp.back i {
  font-size: 18px;
  font-weight: 100;
  color: gray;
  padding: 14px 20px;
  margin: 0px;
}
/*
    Home latest properties
*/
#client-information-container {
  margin: 15px auto 0px;
}
/*BTN Mas Info*/
.content-button {
  text-align: right;
  background-color: #5E5E5E;
  margin-bottom: 15px;
}
.content-button .active-btn {
  background: #E42020 !important;
  color: #fff;
  font-weight: bold;
}
.content-button-with-social {
  margin-bottom: 15px;
}
.content-button-with-social .button-block {
  background-color: #FFFFFF;
  text-align: right;
  padding-right: 0px;
}
.content-button-with-social .social-block {
  background-color: #FFFFFF;
  padding-left: 0px;
}
.content-button-with-social .active-btn {
  background: #E42020 !important;
  color: #fff;
  font-weight: bold;
}
/*COMPORTAMIENTO HOVER gral.*/
.new-project .project-content {
  color: black;
}
.new-project:hover {
  box-shadow: 0px 2px 10px gray;
}
.latest-properties-galery .client-item {
  height: 354px;
}
.latest-properties-galery .new-project .project-content p {
  border-top: 1px solid #E4E4E4;
}
.latest-properties-galery .new-project .project-content h4 {
  color: #595959;
}
.latest-properties-galery .new-project .project-content h2 {
  color: #595959;
}
.latest-properties-galery .new-project .project-content .price {
  font-size: 15px;
}
/*Inmobiliarias Header*/
.suc-content {
  background: none repeat scroll 0 0 #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  margin-bottom: 15px;
  border: 2px solid #E42020;
  height: 44px;
  overflow: hidden;
}
.suc-content span.nombre {
  font-size: 12px;
  font-weight: bold;
}
.suc-content .col-md-7 {
  padding: 0px 5px;
}
.suc-content small {
  display: block;
}
.suc-content.new {
  border: 2px solid #ffdc14;
  background: #fffef6;
}
.suc-content a,
.suc-content a:link,
.suc-content a:visited,
.suc-content a:hover,
.suc-content a:focus,
.suc-content a:active {
  color: inherit;
  text-decoration: none;
}
.suc-content * {
  padding: 0px;
}
/*Grid 5 Column*/
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (max-width: 768px) {
  .suc-market {
    display: none;
  }
  .estrenar-view .title-estrenar,
  .estrenar-view .title-propiedades {
    display: block;
  }
  #filters {
    display: inline-block;
    margin: 15px;
  }
  #feacture-price-table_wrapper {
    overflow: auto;
    max-height: 370px;
  }
  .only-mobile {
    display: block !important;
    visibility: visible !important;
  }
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 18%;
    float: left;
    margin: 0px 1%;
  }
  .suc-content {
    width: 19%;
    float: left;
    margin-left: 6px !important;
  }
  .suc-content span.name,
  .suc-content small {
    padding: 0px 10px;
  }
  .suc-market {
    padding: 0px 7px;
  }
  .suc-container-all {
    margin-left: 2px !important;
  }
  .suc-market-top {
    margin-bottom: 1px !important;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 18%;
    float: left;
    margin: 0px 1% !important;
  }
  .suc-market {
    padding: 6px;
    margin-bottom: 7px;
    margin-top: 0px;
  }
  .suc-content span.name,
  .suc-content small {
    padding: 0px 0px;
  }
  .suc-market-top {
    margin-bottom: 1px !important;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 18%;
    float: left;
    margin: 0px 1%;
  }
  .suc-market {
    padding: 6px;
    margin-bottom: 7px;
    margin-top: 0px;
  }
  .suc-market-top {
    margin-bottom: 1px !important;
  }
}
.row-top-separator {
  margin-top: 20px;
}
/*  ----------------------------
Inmobiliarias home slider
--------------------------------  */
.inmobiliarias-lider-list-24h {
  margin: 10px 0 10px;
}
.inmobiliarias-lider-list-24h-xs {
  background-color: #ffdc14;
  margin: 0 0 10px;
}
.inmobiliarias-lider-list-24h .inmobiliarias-lider-24hs h3 {
  background-color: #ffdc14;
  color: #221918;
  text-align: center;
  float: left;
  width: 100%;
  padding-top: 5px;
  font-size: 19px;
}
.inmobiliarias-lider-list-24h-xs .inmobiliarias-lider-24hs-xs h3 {
  color: #221918;
  text-align: center;
  float: left;
  width: 100%;
  padding-top: 5px;
  font-size: 17px;
}
.inmobiliarias-lider-list {
  margin: 10px 0 30px;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer {
  text-align: center;
  border-bottom: 5px solid #ff9311;
  position: relative;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer h2 {
  color: #221918;
  text-align: center;
  float: left;
  width: 100%;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer .controls {
  display: inline-block;
  float: right;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer .controls .arrows {
  background: none repeat scroll 0 0 #FFFFFF;
  float: right;
  display: block;
  width: 27px;
  height: 27px;
  color: #aeadad;
  line-height: 28px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer .controls .arrows:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer .controls .arrows li {
  padding: 0 10px 0;
}
.inmobiliarias-lider-list figure {
  position: relative;
  z-index: 499;
}
.inmobiliarias-lider-list figure .image-caption {
  position: absolute;
  z-index: 599;
  bottom: 0;
  width: 100%;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  height: 60px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.inmobiliarias-lider-list figure .image-caption .caption {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  padding: 8px 0 8px;
  top: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.inmobiliarias-lider-list figure:hover .image-caption .caption {
  margin: 54% 0 0;
}
.inmobiliarias-lider-list figure:hover .image-caption {
  height: 100%;
}
.inmobiliarias-lider-list figure .icon-overlay {
  position: absolute;
  z-index: 600;
  top: 45%;
  bottom: 0;
  opacity: 0;
  left: 50%;
  margin: 0 0 0 -40px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.inmobiliarias-lider-list figure .icon-overlay a {
  background: none repeat scroll 0 0 #FFFFFF;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  color: #221918;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.inmobiliarias-lider-list figure .icon-overlay a:hover {
  background: none repeat scroll 0 0 #ff9311;
  color: #FFFFFF;
}
.inmobiliarias-lider-list figure:hover .icon-overlay {
  opacity: 1;
}
.inmobiliarias-lider-list .inmobiliarias-lider-outer figure .icon-overlay {
  margin: 0 0 0 -20px;
}
.inmobiliarias-thumbnails {
  margin-top: 10px;
}
.inmobiliarias-thumbnails img {
  max-height: 110px;
}
/*btn barrios*/
.btn.btn-default.btn-mobileSelect-gen {
  width: 100% !important;
  border: 1px solid #c7c7c7;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.mobileSelect-container .mobileSelect-buttons {
  height: 30px !important;
}
.mobileSelect-container.white .mobileSelect-buttons a {
  background: #F9F9F9;
  padding: 9px 20px;
  font-size: 14px;
}
.mobileSelect-savebtn {
  background-color: red !important;
  color: white !important;
}
.mobileSelect-container .list-container {
  margin-top: 50px !important;
  margin-bottom: 40px !important;
}
.mobileSelect-container.white .mobileSelect-title {
  background: #F9F9F9 !important;
}
.mobileSelect-container.white .mobileSelect-title {
  background: #F9F9F9 !important;
  border-bottom: solid 1px #e1e1e1;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 17px 20px !important;
  height: 50px !important;
}
.mobileSelect-container .list-container .mobileSelect-control {
  padding: 10px 40px !important;
  color: #575757 !important;
  font-size: 14px !important;
}
.mobileSelect-container.white .list-container .mobileSelect-control.selected {
  background-color: #BABABA !important;
}
.mobileSelect-container.white .list-container {
  background-color: #FFFFFF !important;
}
.mobileSelect-container.white .list-container .mobileSelect-control.selected {
  background-color: #9E9E9E !important;
  color: white !important;
}
.mobileSelect-container.white .list-container .mobileSelect-control {
  background-image: url(/Content/images/descarga.png) !important;
}
.mobileSelect-container.white .list-container .mobileSelect-control.selected {
  background-image: url(/Content/images/descarga-ckeck.png) !important;
}
.fa-facebook-square {
  color: #3b5998;
}
.fa-twitter-square {
  color: #00aced;
}
.fa-google-plus-square {
  color: #dd4b39;
}
.fa-youtube-square {
  color: #bb0000;
}
.fa-linkedin-square {
  color: #007bb6;
}
div.main-menu ul li {
  font-size: 12px;
}
.grid .article.blog-post .post-content blockquote {
  background: none !important;
  padding: 10px 0px 20px;
  color: #A1A1A1;
  font-style: italic;
  margin: 0 0 20px;
}
.skiptranslate iframe {
  display: none;
}
body {
  position: relative;
  min-height: 100%;
  top: 0px !important;
}
.w100 {
  width: 100%;
}
.message-email-request {
  font-weight: bold;
  color: #E42020;
  padding-bottom: 6px;
}
.button-gray {
  background-color: #7C7D7D !important;
}
.goog-te-gadget-simple {
  width: 100%;
  padding: 7px 10px !important;
  margin-bottom: 20px;
}
.goog-te-menu-value span:nth-child(5) {
  float: right;
  margin-right: 5px;
}
#container-render-page {
  margin-top: 15px;
}
.sucursal-ficha h3 {
  font-size: 15px !important;
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 10px !important;
  margin-bottom: 15px;
  font-weight: bold;
}
.sucursal-ficha a {
  color: #E42020;
}
.mt0 {
  margin-top: 0px !important;
}
.mCenter-top {
  margin-top: 10px !important;
  margin-bottom: 2px !important;
  margin-right: 0px !important;
  margin-left: 0px !important;
}
.mCenter-bottom {
  margin-top: 2px !important;
  margin-bottom: 10px !important;
  margin-right: 0px !important;
  margin-left: 0px !important;
}
.main-migliorisi #container-render-page {
  margin-top: 0px;
}
.estrenar .pager-container.search-respond {
  min-height: inherit !important;
  padding: 20px 32px;
  display: flex;
}
.carousel-inner .item {
  height: 100%;
  width: 100%;
  /*cambio 12-08-2021*/
}
.carousel-inner .item img {
  margin: 0 auto;
}
/*cambio 12-08-2021*/
a.image-link {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  display: flex;
}
.detalle-inmueble .carousel-inner {
  /*height: 435px !important;*/
  /*cambio 12-08-2021*/
  height: 435px !important;
  /*cambio 12-08-2021*/
  background: #444444;
  /*cambio 12-08-2021*/
  display: flex;
  /*cambio 12-08-2021*/
}
/*cambio 12-08-2021*/
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.sucursal-modulo {
  /*height: 368px;*/
}
@media (max-width: 768px) {
  .carousel-inner {
    /*height:235px !important;*/
  }
  .sucursal-modulo {
    height: auto;
  }
}
.blockUI.blockOverlay {
  width: calc(100% + 8px) !important;
}
.search-criteria-value {
  font-weight: bold;
}
#main-slider .image-wrapp a {
  height: calc(100% + 34px);
}
#main-slider .image-wrapp a img {
  /*height: 100%;*/
}
/*#pagerCustom .bx-viewport {
    height: 388px !important;
}*/
#carousel-estrenar-slider {
  overflow: hidden;
  height: 388px !important;
  z-index: 0;
  border-left: 2px solid #E42020;
  border-bottom: 2px solid #E42020;
}
#main-slider .bx-controls {
  width: 100%;
  height: 34px;
  background: none !important;
  margin-top: -52px;
  position: relative !important;
  z-index: 99999;
  display: block;
  float: left;
  opacity: 1;
}
.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}
.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  /*overflow: hidden;*/
}
.autocomplete-selected {
  background: #F0F0F0;
}
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #E42020;
}
.autocomplete-group {
  padding: 2px 5px;
}
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}
#forprint {
  display: none;
}
.detalle-ficha .navbar-right {
  margin-right: 0px;
}
.detalle-ficha {
  padding: 15px 5px !important;
}
.detalle-ficha.titulo {
  padding: 0px !important;
}
.detalle-ficha .content-title,
.detalle-ficha .title-propiedades {
  padding-left: 0px !important;
}
.detalle-ficha .gobacklink {
  padding: 19px 15px;
  margin-left: -15px;
}
.detalle-ficha .gobacklink .glyphicon {
  top: 12px;
}
.detalle-ficha .title-propiedades {
  height: 80px;
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
  box-shadow: none;
}
.detalle-ficha .title-propiedades h1 {
  overflow-y: hidden;
  max-height: 44px;
}
.detalle-ficha .print-btn #filters {
  margin: 0px;
  padding: 30px 25px;
}
@media (max-width: 768px) {
  .detalle-ficha .title-propiedades h1 {
    overflow-y: hidden;
    max-height: 44px;
    font-size: 18px;
  }
  .detalle-ficha .title-propiedades {
    padding-left: 15px !important;
  }
  .detalle-ficha .print-btn #filters {
    width: 100%;
    text-align: center;
    /*border-top: 8px solid #EBEBEB;*/
  }
  .detalle-ficha .print-btn #filters {
    padding: 30px 20px;
  }
}
.detalle-ficha .print-btn a {
  color: white;
}
.detalle-ficha .print-btn {
  padding: 0px;
}
.detalle-ficha .title-propiedades h1 {
  padding: 0px;
  font-size: 19px;
}
.detalle-ficha #filters {
  padding: 15px 25px;
  background: #E42020;
  color: white;
}
.detalle-ficha .btn-folleto {
  width: 99%;
  text-align: center;
}
table tr th {
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
.shared-social {
  padding: 15px 20px 15px 15px !important;
}
.shared-social .col-md-6 {
  padding: 0px;
  margin-bottom: 0px;
  overflow: hidden;
}
.shared-social a {
  width: 100%;
  margin: 1px 7px;
}
.social-links,
.social-after-links {
  padding: 0px;
}
.social-links a {
  width: calc(25% - 2.8px);
}
.social-links,
.btn-final,
.social-after-links {
  height: 34px;
}
.container-btn-final {
  margin-bottom: 10px;
}
.social-after-links button {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .social-links a {
    width: calc(25% - 2.8px);
  }
  .social-after-links button {
    width: 100%;
  }
  .button-left,
  .button-rigth {
    border: 0px;
  }
}
@media (max-width: 768px) {
  .footer-divider {
    margin-top: 30px;
  }
}
.col-full {
  padding-left: 0px;
  padding-right: 0px;
}
.btn-full-width {
  width: 100%;
}
@media (min-width: 768px) {
  .button-left {
    border-left: 1px solid #FFFFFF;
  }
  .button-rigth {
    border-left: 2px solid #FFFFFF;
  }
  .btn-container-1 .col-left {
    padding-right: 0px;
  }
  .btn-container-1 .col-rigth {
    padding-left: 0px;
    border-left: 2px solid #FFFFFF;
  }
}
@media (max-width: 425px) {
  .btn-top-margen {
    margin-top: 6px;
  }
}
.properties-search {
  margin-bottom: 20px;
}
.properties-search a {
  display: block;
}
.properties-search .widget-body {
  padding: 15px 0px;
}
.properties-search .title-search {
  font-size: 18px;
  padding-bottom: 15px;
}
.properties-search .category-search a {
  border-bottom: 1px solid #EBEBEB;
  padding: 5px 0px;
  color: #404040;
}
.properties-search .special-widget {
  padding: 5px 15px;
}
/**/
.propiedades-busquedas-armadas {
  margin-bottom: 20px;
}
.propiedades-busquedas-armadas h2 {
  font-size: 14px;
  display: inline;
}
.propiedades-busquedas-armadas .contenedor-busquedas {
  display: block;
  border-bottom: 1px solid #EBEBEB;
  padding: 5px 0px;
}
.propiedades-busquedas-armadas .widget-body {
  padding: 15px 0px;
}
.propiedades-busquedas-armadas .title-search {
  font-size: 18px;
  padding-bottom: 15px;
}
.propiedades-busquedas-armadas .category-search a {
  color: #404040;
}
.propiedades-busquedas-armadas .special-widget {
  padding: 5px 15px;
}
/**/
.descripcion-breve-construccion p {
  font-size: 13px;
  font-family: 'Open Sans', Arial, sans-serif;
  max-height: 165px;
  overflow: hidden;
  margin-top: 6px;
}
.caracteristicas-propiedad-iconos {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}
.modal-body {
  padding: 15px 15px 1px 15px;
}
.modal-footer {
  padding: 1px 15px 15px 15px;
}
.col-message-container {
  margin-bottom: 10px;
  font-weight: bold;
}
button[disabled],
html input[disabled] {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.your-request-get-more-info {
  display: none;
}
.your-request-register-request {
  display: none;
}
.auto-register {
  display: none;
}
.dialog-your-request-get-more-info .your-request-get-more-info {
  display: block;
}
.dialog-your-request-register-request .your-request-register-request {
  display: block;
}
.dialog-auto-register .auto-register {
  display: block;
}
.span-terminos-condiciones {
  display: block;
  text-align: center;
  font-size: smaller;
}
.address-construction {
  font-size: 16px;
}
@media (max-width: 767px) {
  #nav-wrapp .navbar-default {
    margin-top: 60px;
  }
}
@media (max-width: 992px) {
  .tile-inmueble .new-project .project-content {
    height: auto !important;
  }
}

#nav-wrapp .slogan,
#nav-wrapp,
#main-slider .pager-container .pager-btn ul li a.active,
.new-project .project-heading,
#nav-wrapp #styleSwitcher i,
.portfolio-list .portfolio-outer .controls .arrows:hover,
.inmobiliarias-lider-list .inmobiliarias-lider-outer .controls .arrows:hover,
.testimonials .panel-container ul li:hover,
.testimonials .panel-container ul li.active,
.newsletter .input-group .btn-default,
.clients-wrapp .clients-outer .controls .arrows:hover,
.team .team-member:hover,
#main-slider .pager-container .pager-btn ul li a:hover,
.ms-gallery-template .ms-bullet,
#fw-nav-wrapp #styleSwitcher i,
.lunch-project,
.post-author .author-meta,
.widget .tagcloud a:hover,
article.blog-post .post-meta,
article.blog-post .more a,
.mejs-video .mejs-controls,
#pagination ul li.active,
#backTopWrapp .back-top-btn:hover,
#post-comments .comments .comment .reply a,
#post-comments .button .btn-submit:hover,
.active-btn,
.controls-wrapp .controls a:hover {
  background: #E42020;
}
#main-slider .pager-container,
.portfolio-list .portfolio-outer,
.inmobiliarias-lider-list .inmobiliarias-lider-outer,
.testimonials .panel-container ul li:hover,
.testimonials .panel-container ul li.active {
  border-color: #E42020;
}
#main-slider .pager-container:before,
.testimonials .panel-container ul li:hover:after,
.testimonials .panel-container ul li.active:after {
  border-right-color: #E42020;
}
#nav-wrapp .navbar-default ul.nav .caret,
#fw-nav-wrapp .navbar-default ul.nav .caret {
  border-bottom-color: #E42020;
  border-top-color: #E42020;
}
.latest-news ul.news-dropdown > li,
header#header ul.header-menu > li:last-child > a,
.portfolio-navbar ul.portfolio-filter > li > a:hover,
.widget .project-details ul li a:hover,
article.blog-post .post-content h3,
article.format-link .post-content .post-title a,
.blog-navbar ul.blog-filter > li > a:hover,
.widget .categories ul li a:hover,
.page-not-found h1 .different-color {
  color: #E42020;
}
.mejs-video .mejs-controls,
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,
.active-btn {
  background: #E42020 !important;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu,
.mosaic:hover,
.portfolio-list figure .icon-overlay a:hover,
.inmobiliarias-lider-list figure .icon-overlay a:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:focus,
.latest-news ul.news-dropdown ul.dropdown-menu > li > a:hover,
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu,
#fw-nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu,
#nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu,
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu > li > a:hover,
.portfolio-mosaic figure .icon-overlay a:hover,
.blog-navbar ul.blog-filter ul.dropdown-menu > li > a:hover {
  background: #FFEB00;
}
footer#footer .twitter ul li img {
  border-color: #FFEB00;
}
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu li,
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu li,
#fw-nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li,
#nav-wrapp .navbar-default li.nested-dropdown:hover ul.nested-dropdown-menu li {
  border-bottom: 1px solid #E4C031;
  border-top: 1px solid #FAF000;
}
#fw-nivo-wrapp .nivo-slider .nivo-directionNav a,
.team .team-member figure .icon-overlay span a {
  color: #FFEB00 !important;
}
.mosaic:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:hover,
.latest-news ul.news-dropdown ul.dropdown-menu > li > a:hover,
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu > li > a:hover,
.blog-navbar ul.blog-filter ul.dropdown-menu > li > a:hover,
#nav-wrapp .navbar-default ul.nav ul.dropdown-menu,
.mosaic:hover,
.portfolio-list figure .icon-overlay a:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:hover,
.inmobiliarias-lider-list figure .icon-overlay a:hover,
header#header ul.header-menu ul.dropdown-menu > li > a:focus,
.latest-news ul.news-dropdown ul.dropdown-menu > li > a:hover,
#fw-nav-wrapp .navbar-default ul.nav ul.dropdown-menu,
#fw-nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu,
#nav-wrapp .navbar-default li.nested-dropdown ul.nested-dropdown-menu,
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu > li > a:hover,
.portfolio-mosaic figure .icon-overlay a:hover,
.blog-navbar ul.blog-filter ul.dropdown-menu > li > a:hover {
  color: #505050;
}
.footer-copyright,
.new-project .project-footer .view-btn:hover,
header#header ul.header-menu ul.dropdown-menu,
#main-slider .pager-container .pager-btn ul li a,
.latest-news ul.news-dropdown ul.dropdown-menu,
#main-slider .bx-controls .bx-controls-direction a.bx-next,
#main-slider .bx-controls .bx-controls-direction a.bx-prev,
.team .team-member figure .icon-overlay span a,
.portfolio-navbar ul.portfolio-filter ul.dropdown-menu,
article.blog-post figure .icon-overlay a.active,
.blog-navbar ul.blog-filter ul.dropdown-menu,
.submit-btn:hover,
.general-btn:hover {
  background: #505050;
}
/*other*/
.lunch-project h3 {
  color: white;
}
/*Formulario de busqueda home*/
#main-slider .form-container {
  background: white;
  padding: 1px 10px;
}
#main-slider .form-container input,
#main-slider .form-container select {
  border: 1px solid #c7c7c7;
}
/*Social Links*/
.line-social li {
  float: left;
  padding: 0px 7px 0px;
  line-height: 45px;
}
.line-social li a {
  color: white;
  font-size: 23px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.line-social li a:hover {
  color: #000000;
}
/*Slogan*/
.latest-news li {
  list-style-type: none;
}
/*Twitts*/
.twits {
  min-height: 391px;
}
/*Links*/
.special-widget.links .widget-body ul a {
  border-right: 1px solid #e6e6e6;
  padding: 0 11px;
}
.hidden-element {
  display: none;
}
.new-project .project-heading .project-title h4 {
  height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.construction-carousel-caption {
  padding-bottom: 50px;
}
.carousel-caption {
  left: 3%;
  right: 3%;
  max-width: 94%;
  min-width: 94%;
}
.carousel-caption .carousel-caption-text {
  font-size: 20px;
  color: #E42020;
  display: block;
  font-weight: bold;
}
.carousel-caption .carousel-caption-background {
  background-color: rgba(255, 220, 20, 0.6);
  padding: 10px;
}
#feacture-price-table .item-center {
  text-align: center;
}
.carousel-indicators .active {
  background-color: #E42020;
}
.carousel-control {
  color: #E42020;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #E42020;
}
html,
body {
  min-height: 100%;
}
body {
  position: relative;
}
.image-terceros-construccion {
  height: 50px;
}
.contact-form-contruction {
  margin: 0 0 10px;
}
.overlay-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  /*dim the background*/
}
.own-modal {
  position: fixed;
  top: 10%;
  z-index: 99999;
  left: 0;
  right: 0;
  min-width: 300px;
  max-width: 550px;
  background-color: #E9E9E9;
  margin: 0 auto;
  box-shadow: 0px 2px 10px #363636;
  border: 1px solid white;
  border-radius: 0px;
}
.own-header {
  font-weight: bold;
}
.own-header .modal-title {
  font-size: 20px;
}
@media (max-width: 768px) {
  .own-modal {
    top: 3%;
  }
}
.your-request-get-more-info {
  display: none;
}
.your-request-register-request {
  display: none;
}
.auto-register {
  display: none;
}
.dialog-auto-register .modal-body {
  padding-top: 0px;
}
.dialog-auto-register .modal-header {
  padding-bottom: 0px;
}
.your-request-interview {
  display: none;
}
.your-request-shared {
  display: none;
}
.dialog-your-request-get-more-info .your-request-get-more-info {
  display: block !important;
}
.dialog-your-request-register-request .your-request-register-request {
  display: block !important;
}
.dialog-auto-register .auto-register {
  display: block !important;
}
.dialog-your-request-interview .your-request-interview {
  display: block !important;
}
.dialog-your-request-shared .your-request-shared {
  display: block !important;
}
.button-gray {
  background-color: #7B7B7B;
}
.estrenar.pager-container.search-respond {
  min-height: inherit !important;
  padding: 20px 32px;
  display: flex;
}
.mensaje-tasacion-exito {
  margin-bottom: 30px;
  color: #E42020;
  font-weight: 600;
}
.emprendimientos-sin-resultados {
  color: #E42020;
}
.alerta-mensaje {
  background-color: #FFFFFF;
  margin: 30px 0px;
  padding: 10px;
  text-align: center;
  color: #E42020;
  font-weight: bold;
}
#myorders-container {
  min-height: 190px;
}
strong {
  font-weight: bold;
}
.vertical-align {
  display: flex;
  flex-direction: row;
}
.vertical-align > [class^="col-"],
.vertical-align > [class*=" col-"] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-align > [class^="col-"] > div,
.vertical-align > [class*=" col-"] > div {
  /* flex: 1; */
  flex-grow: 1;
}
.box-office-form {
  border-top: solid 2px #FFEB00;
}
.box-office-form .button-container {
  padding-top: 10px;
}
.alert {
  border-radius: initial;
}
