/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body, html {
  font-family: "Open Sans";
  background-color: #f2f2f2;
}

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

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

.clearfix {
  clear: both;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

p {
  color: #08335c;
  font-weight: 100;
}
p span {
  color: #afcb08;
}
p strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans";
  margin: 0;
}

h1 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}
h1.hasline {
  color: #08335c;
  border-bottom: 4px solid #afcb08;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
h1.head {
  font-size: 24px;
  font-weight: 900;
  color: #08335c;
  display: block;
  border-bottom: 4px solid #afcb08;
  padding-bottom: 10px;
  margin-top: 20px;
}

h2 {
  font-size: 16px !important;
  line-height: 24px;
  font-weight: 100;
  color: #08335c;
  text-transform: uppercase;
  margin-bottom: 15px;
}
h2.topic {
  font-weight: 900;
  text-transform: none;
  margin-bottom: 10px;
}

.btn {
  border-radius: 0;
}
.btn img {
  margin-right: 7px;
}
.btn.btn-full {
  width: 100%;
}

.btn.btn-primary {
  background-color: #afcb08;
  border: 1px solid #afcb08;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary.active {
  background-color: #859a06 !important;
  border: 1px solid #afcb08 !important;
}

.btn.btn-secondary {
  background-color: #08335c;
  border: 1px solid #08335c;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active, .btn.btn-secondary.active {
  background-color: #04192d !important;
  border: 1px solid #08335c !important;
}

section.hascontent {
  padding-top: 75px;
}
@media only screen and (max-width: 640px) {
  section.hascontent {
    padding-top: 37.5px;
  }
}

header {
  margin-top: 15px;
}
header .logo {
  display: inline;
}
header .logo img {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  header {
    margin-bottom: 10px;
  }
  header .logo img {
    max-width: 120px;
  }
}

nav {
  font-weight: 900;
  background-color: #fff;
  margin-top: 50px;
}
nav ul li {
  font-size: 16px;
  display: inline-block;
}
nav ul li a {
  color: #08335c;
  display: block;
  line-height: 50px;
  padding: 0 10px;
  transition: all 0.2s ease;
}
nav ul li a:hover, nav ul li a.active {
  color: #fff;
  background-color: #afcb08;
}
@media only screen and (max-width: 640px) {
  nav {
    display: none;
    margin-top: 10px;
  }
  nav ul {
    width: 100%;
  }
  nav ul li {
    width: 100%;
    display: block;
    border-bottom: 1px solid #f2f2f2;
  }
  nav ul li a {
    color: #08335c;
    display: block;
    line-height: 50px;
    padding: 0 10px;
    transition: all 0.2s ease;
  }
  nav ul li a:hover, nav ul li a.active {
    color: #fff;
    background-color: #afcb08;
  }
}

a.atendimento {
  color: #08335c;
  display: block;
  line-height: 50px;
  padding-left: 37.5px;
  padding-right: 62.5px;
  background-image: url("http://ibs-imoveis.com.br/assets/images/ic_atendimento.png");
  background-repeat: no-repeat;
  background-position: 0 12px;
  position: relative;
}
a.atendimento:after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #afcb08;
  background-image: url("http://ibs-imoveis.com.br/assets/images/ic_whatsapp.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.openmob {
  display: none;
  position: absolute;
  right: 30px;
  top: 37.5px;
  z-index: 1;
}
.openmob a.btn {
  width: 40px;
  height: 40px;
}
.openmob a.btn:hover, .openmob a.btn:focus, .openmob a.btn:active, .openmob a.btn.active {
  background-color: #08335c !important;
  border-color: #08335c !important;
}
@media only screen and (max-width: 640px) {
  .openmob {
    display: block;
  }
  .openmob .openmob {
    display: block;
  }
}

footer {
  padding: 25px 0;
  margin-top: 50px;
  background-color: #08335c;
}
footer p {
  font-size: 13.3333333333px;
  color: #fff;
  margin-bottom: 0;
}
footer .logofoot {
  text-align: right;
}
@media only screen and (max-width: 640px) {
  footer {
    text-align: center;
  }
  footer .logofoot {
    text-align: center;
  }
}

ul.footmenu {
  margin-bottom: 25px;
}
ul.footmenu li {
  font-size: 16px;
  display: inline-block;
}
ul.footmenu li a {
  color: #fff;
  display: block;
  line-height: 20px;
  margin-right: 15px;
  padding-bottom: 5px;
  border-bottom: 3px solid #08335c;
  transition: all 0.2s ease;
}
ul.footmenu li a:hover, ul.footmenu li a.active {
  color: #fff;
  border-bottom: 3px solid #afcb08;
}
@media only screen and (max-width: 640px) {
  ul.footmenu {
    width: 100%;
    text-align: center;
    margin-top: 25px;
    margin-left: 15px;
  }
  ul.footmenu li.hfm {
    display: none;
  }
}

label {
  font-size: 12.3076923077px;
  color: #08335c;
  font-weight: 100;
}
label.white {
  color: #fff;
}
label.error {
  color: white;
  background-color: #ff0000;
}

input[type=text],
input[type=email],
textarea,
select {
  font-size: 13.3333333333px !important;
  color: #08335c !important;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

input[type=text],
input[type=email] {
  line-height: 32px;
}

#response {
  display: none;
}

.owl-carousel .item {
  background-position: center center;
  background-size: cover;
}

.owl-entry {
  min-height: 520px;
  background-color: rgba(0, 0, 0, 0.35);
  position: relative;
}
.owl-entry .owl-text {
  width: 85%;
  position: absolute;
  left: 0;
  bottom: 65px;
  z-index: 1;
  padding-left: 75px;
  padding-right: 75px;
}
@media only screen and (max-width: 640px) {
  .owl-entry .owl-text {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.owl-entry h1 {
  font-size: 24px !important;
  line-height: 32px !important;
  margin-bottom: 25px;
  font-weight: 900;
  color: #fff;
}
.owl-entry a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 3px solid #afcb08;
  padding-bottom: 5px;
}
@media only screen and (max-width: 640px) {
  .owl-entry {
    min-height: 300px;
  }
}

.busca_imovel {
  background-color: #08335c;
  padding: 25px 25px 10px 25px;
}
.busca_imovel .line {
  widows: 100%;
  height: 5px;
  background-color: #afcb08;
  margin-top: 15px;
  margin-bottom: 25px;
}

.showregiao {
  display: none;
}

.entry-box {
  min-height: 400px;
  padding: 41.6666666667px;
  background-color: #fff;
  -ms-box-shadow: 0px 0px 2px 0px #ccc;
  -o-box-shadow: 0px 0px 2px 0px #ccc;
  box-shadow: 0px 0px 2px 0px #ccc;
}
.entry-box.hasimg {
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .entry-box {
    min-height: auto;
    padding: 25px;
  }
}

.entry-row {
  padding-top: 50px;
}
@media only screen and (max-width: 640px) {
  .entry-row {
    padding-top: 10px;
  }
}
.entry-row ul {
  font-size: inherit !important;
  padding-left: 20px;
  color: #08335c;
}

@media only screen and (max-width: 640px) {
  #searchimovel {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  #listcondominios {
    margin-bottom: 25px;
  }
}

.list-topic {
  font-size: 13.3333333333px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  background-color: #08335c;
}

ul.list {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
ul.list li {
  font-size: 13.3333333333px;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding-left: 15px;
}
ul.list li:before {
  width: 15px;
  height: 4px;
  background-color: #08335c;
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  z-index: 1;
  transition: all 0.2s ease;
}
ul.list li:hover:before {
  background-color: #afcb08;
}
ul.list li a {
  color: #08335c;
  display: block;
  line-height: 37.5px;
  padding: 0 10px;
  transition: all 0.2s ease;
}
ul.list li a:hover, ul.list li a.active {
  color: #afcb08;
}

ul.specs {
  font-size: 13.3333333333px;
}
ul.specs li {
  margin-bottom: 15px;
}
ul.specs li strong {
  color: #08335c;
}

.imv_img {
  width: 100%;
  height: 200px;
  background-position: center center;
  background-size: cover;
}

.imv_card {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  min-height: 270px;
  transition: all 0.2s ease;
  -ms-box-shadow: 0px 0px 2px 0px #ccc;
  -o-box-shadow: 0px 0px 2px 0px #ccc;
  box-shadow: 0px 0px 2px 0px #ccc;
}
.imv_card.box {
  padding: 37.5px;
}
.imv_card h1 {
  color: #08335c;
}
.imv_card ul.imv_specs {
  border-top: 1px solid #f2f2f2;
  margin-top: 15px;
}
.imv_card ul.imv_specs li {
  font-size: 13.3333333333px;
  color: #08335c;
  width: 100%;
  display: block;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
.imv_card ul.imv_specs li:before {
  content: "";
  width: 24px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 8px;
  z-index: 1;
  background-image: url("http://ibs-imoveis.com.br/assets/images/sprite_icons_imoveis.png");
  background-repeat: no-repeat;
  background-position-x: left;
}
.imv_card ul.imv_specs li.spec1:before {
  background-position-y: 0;
}
.imv_card ul.imv_specs li.spec2:before {
  background-position-y: -21px;
}
.imv_card ul.imv_specs li.spec3:before {
  background-position-y: -42px;
}
.imv_card ul.imv_specs li.spec4:before {
  background-position-y: -63px;
}
.imv_card:hover {
  background-color: #08335c;
}
.imv_card:hover h1 {
  color: #fff;
}
.imv_card:hover ul.imv_specs li {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.imv_card:hover ul.imv_specs li:before {
  background-position-x: right;
}

.imv_box {
  background-color: #fff;
  padding: 37.5px;
  margin-bottom: 15px;
  -ms-box-shadow: 0px 0px 2px 0px #ccc;
  -o-box-shadow: 0px 0px 2px 0px #ccc;
  box-shadow: 0px 0px 2px 0px #ccc;
}
.imv_box h1 {
  color: #08335c;
}
@media only screen and (max-width: 640px) {
  .imv_box {
    padding: 25px;
  }
}

.imv_img {
  display: block;
  margin-bottom: 15px;
}

.imv_corretor img {
  border-radius: 50%;
}
@media only screen and (max-width: 640px) {
  .imv_corretor img {
    width: 50%;
    margin-bottom: 10px;
  }
}
.imv_corretor p {
  font-size: 13.3333333333px;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}
.imv_corretor ul li {
  margin-bottom: 10px;
}

#imv_agendar {
  display: none;
}

ul.thumbs li {
  display: inline-block;
}
ul.thumbs li a {
  width: 100px;
  height: 75px;
  display: block;
  background-size: cover;
  background-position: center center;
  margin-bottom: 15px;
  margin-right: 10px;
}
ul.thumbs li img {
  width: 100px;
  display: block;
  margin-bottom: 15px;
  margin-right: 10px;
}
@media only screen and (max-width: 640px) {
  ul.thumbs li img {
    width: 110px;
  }
}

.pagnum ul {
  text-align: center;
  width: 100%;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 20px;
  display: block;
}
.pagnum ul li {
  font-size: 13.3333333333px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s ease;
}
.pagnum ul li a, .pagnum ul li span {
  color: #08335c;
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.pagnum ul li.active a, .pagnum ul li.active span, .pagnum ul li:active a, .pagnum ul li:active span, .pagnum ul li:hover a, .pagnum ul li:hover span {
  color: #afcb08;
  border-bottom: 3px solid #afcb08;
}
.pagnum ul li.disabled span {
  color: #08335c;
  opacity: 0.2;
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.not_card {
  background-color: #fff;
  padding: 15px 15px 30px 15px;
  margin-bottom: 15px;
  min-height: 230px;
  position: relative;
  transition: all 0.2s ease;
  -ms-box-shadow: 0px 0px 2px 0px #ccc;
  -o-box-shadow: 0px 0px 2px 0px #ccc;
  box-shadow: 0px 0px 2px 0px #ccc;
}
.not_card h1 {
  color: #08335c;
  padding-bottom: 10px;
}
.not_card p {
  font-size: 13.3333333333px;
}
.not_card .not_det {
  font-size: 13.3333333333px !important;
  font-weight: 900;
  color: #08335c;
  text-transform: uppercase;
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 1;
  width: 100%;
}
.not_card:hover {
  background-color: #08335c;
}
.not_card:hover h1, .not_card:hover p {
  color: #fff;
}
.not_card:hover ul.not_specs li {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.not_card:hover ul.not_specs li:before {
  background-position-x: right;
}
.not_card:hover .not_det {
  color: #fff;
}

.ed_card {
  background-color: #fff;
  padding: 15px 15px 30px 15px;
  margin-bottom: 15px;
  min-height: 230px;
  position: relative;
}
.ed_card h1 {
  color: #08335c;
  margin-bottom: 15px;
}
.ed_card img {
  max-width: 150px;
  margin-bottom: 15px;
}
.ed_card a {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 30px;
  color: #08335c;
  background-image: url("http://ibs-imoveis.com.br/assets//images/ic_download.png");
  background-repeat: no-repeat;
  padding-left: 45px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.not_head {
  width: 100%;
  color: #08335c;
  border-bottom: 4px solid #afcb08;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.not_head p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.not_head h1 {
  color: #08335c;
}

.form_card {
  background-color: #fff;
  padding: 50px 100px;
  margin-bottom: 15px;
  -ms-box-shadow: 0px 0px 2px 0px #ccc;
  -o-box-shadow: 0px 0px 2px 0px #ccc;
  box-shadow: 0px 0px 2px 0px #ccc;
}
@media only screen and (max-width: 640px) {
  .form_card {
    padding: 25px;
  }
}

.tabs { display: none; }
.tabs.active { display: block; }