
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #33b7ff;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.blue-ligth{
  color: #33b7ff;	
}

.blue-strong{
  color: #046bad;	
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 140px;
  height: 60px;
  border-radius: 4px;
  transition: all 0.4s;
  font-weight: 600;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  color: #fff;
  background: #33b7ff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #33b7ff;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

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

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  height: 44px;
  padding: 0;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -44px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #01b1d7;
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #444444;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #01b1d7;
}

#topbar .social-links a {
  color: #62787d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #01b1d7;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  background: #37517e;
  top: 44px;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo h1 a span, #header .logo h1 a:hover span {
  color: #01b1d7;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #01b1d7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #01b1d7;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #354144;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 38, 39, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #354144;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #01b1d7;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #01b1d7;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background: #37517e;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-top: 114px;
}

#hero .carousel-item {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

#hero .carousel-content {
  text-align: center;
  width: 100%; 
}

#hero h1 {
  color: #33b7ff;
  margin-bottom: 30px;
  font-size: 98px;
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif; 
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 44px;
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif; 
}

#hero .hero-img {
  margin-bottom: 30px;	
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

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

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  transition: ease-in;
  opacity: .7;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background-color: #01b1d7;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: #01b1d7;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#hero .btn-get-started:hover {
  background: #019cbe;
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }
  #hero .carousel-item {
    height: 90vh;
  }
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
  #hero .carousel-item {
    height: 150vh;
  }
}

/*--------------------------------------------------------------
# Hero Small
--------------------------------------------------------------*/
#hero-small {
  width: 100%;
  height: 50vh;
  background: #37517e;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-top: 114px;
}

#hero-small:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;  
}

#hero-small h1 {
  margin: 80px 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #046bad;
  font-family: "Poppins", sans-serif;
}

#hero-small h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
}

#hero-small .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: #01b1d7;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#hero-small .btn-get-started:hover {
  background: #019cbe;
}

@media (max-width: 991px) {
  #hero-small .hero-img {
    text-align: center;
  }
  #hero-small .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero-small {
    -moz-text-align-last: center;
    text-align-last: center;
  }
  #hero-small h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-small h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero-small .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero-small .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #33b7ff;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #37517e;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #33b7ff;
  content: "/";
}

/*--------------------------------------------------------------
# Refor
--------------------------------------------------------------*/
#refor {
  background: #fff;
  padding: 60px 0;
}

#refor .about-container .background {
  margin: 20px 0;
}

#refor .about-container .content {
  background: #fff;
}

#refor .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#refor .about-container p {
  line-height: 26px;
}

#refor .about-container p:last-child {
  margin-bottom: 0;
}

#refor .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#refor .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #33b7ff;
  transition: all 0.3s ease-in-out;
}

#refor .about-container .icon-box .icon i {
  color: #33b7ff;
  font-size: 24px;
  line-height: 0;
}

#refor .about-container .icon-box:hover .icon {
  background: #33b7ff;
}

#refor .about-container .icon-box:hover .icon i {
  color: #fff;
}

#refor .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  font-size: 18px;
}

#refor .about-container .icon-box .title a {
  color: #046bad;
  font-weight: 700;
  font-size: 28px;
  margin-top: 20px;
}

#refor .about-container .parag-text {
  margin: 10px 0px 30px 0px;	
}

#refor .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#refor .about-container span {
  color: #046bad;
  font-weight: 700;
}

#refor .about-container #ofi-img img {
  margin: 30px 0px 30px 0px;
  -webkit-box-shadow: 11px 10px 17px 1px #B3B3B3; 
  -moz-box-shadow: 11px 10px 17px 1px #B3B3B3; 
  box-shadow: 11px 10px 17px 1px #B3B3B3;  
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #33b7ff;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #33b7ff;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #33b7ff;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #33b7ff;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #eee;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #046bad;
  background: #d8e8f6;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 120px;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(209,209,209,0); 
  -moz-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(209,209,209,0); 
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(209,209,209,0);  
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  color: #EAB200;  
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #33b7ff;
  border: 1px solid #33b7ff;
  background: #bcd7f0;
}

.tabs .nav-link.active {
  background: #33b7ff;
  color: #fff;
  border-color: #046bad;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
  color: #046bad;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
  color: #3F3F3F;
  font-weight: 600;
  font-size: 20px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #EAB200;
}

.tabs .tab-pane p {
  font-weight: 600;
  color: #7C7C7C;
}

.tabs .tab-pane img {
  -webkit-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  -moz-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68);
  margin-top: 30px;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Servicios Inmobiliarios
--------------------------------------------------------------*/

#inmo-sec {
  padding: 60px 0 40px 0;
  position: relative;
}

#inmo-sec::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#inmo-sec .container {
  position: relative;
  z-index: 10;
}

#inmo-sec .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 3px 12px 3px rgba(168,168,168,0.78); 
  -moz-box-shadow: 5px 3px 12px 3px rgba(168,168,168,0.78); 
  box-shadow: 5px 3px 12px 3px rgba(168,168,168,0.78);  
}

#inmo-sec .about-col .img {
  position: relative;
}

#inmo-sec .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#inmo-sec .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #046bad;
  border-radius: 50%;
  border: 4px solid #33b7ff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#inmo-sec .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#inmo-sec .about-col:hover .icon {
  background-color: #fff;
}

#inmo-sec .about-col:hover i {
  color: #EAB200;
}

#inmo-sec .about-col h2 {
  color: #046badz;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  padding: 0;
  margin: 40px 0 30px 0;
}

#inmo-sec .about-col h2 a {
  color: #046bad;
}

#inmo-sec .about-col:hover h2 a {
  color: #33b7ff;
}

#inmo-sec .about-col p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #515151;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

#inmo-sec .about-col span {
  font-weight: 600;
  font-size: 18px;  
}

#inmo-sec .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 20px 10px 30px 10px;
  color: #fff;
  background: #01b1d7;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#inmo-sec .btn-get-started:hover {
  background: #019cbe;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin: 30px 0 30px 0;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  transition: 0.3s;
  color: #444444;
  border: 2px solid #fff;  
}

.services .icon-box:hover {
  background: #a1c5e9;
  border: 2px solid #EAB200;
}

.services .icon-box i {
  float: left;
  color: #EAB200;
  font-size: 46px;
  line-height: 0;
  margin-top: 20px;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 38px;
}

.services .icon-box h4 a {
  color: #046bad;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #33b7ff;
  transition: 0.3s;  
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 500;
}

.services .icon-box span {
  color: #33b7ff;
  font-size: 18px;
  font-weight: 600;  
}

.services .icon-box:hover span {
  color: #EAB200;
}

.services .icon-box .texto-der a {
  font-size: 20px;
  margin-left: 10px;
  color: #33b7ff;  
}

.services .icon-box .texto-der i {
  float: left;
  color: #33b7ff;
  font-size: 20px;
  line-height: 0;
  margin-top: 0px;
}

.services .icon-box:hover .texto-der a {
    color: #EAB200;
}

.services .icon-box:hover .texto-der i {
    color: #EAB200;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #33b7ff;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
  color: #444;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #33b7ff;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #33b7ff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #33b7ff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list a:hover {
  color: #33b7ff;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #33b7ff;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Inmobiliaria SECTION
--------------------------------------------------------------*/

#inmo-text .title h2 {
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
  color: #046bad;
  margin-bottom: 20px;
}

#inmo-text .title p {
  font-weight: 600;
  color: #7C7C7C;
}

#inmo-text .contenido {
  margin-top: 30px;
}

#inmo-text .contenido h3 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
  color: #046bad;
  text-shadow: 2px 2px 0px #33b7ff;
}

#inmo-text .contenido h4 {
  font-weight: 600;
  font-size: 22px;
  margin: 30px 0 0px 0;
  color: #33b7ff;
}

#inmo-text .contenido h4 i {
  margin-right: 10px;
  color: #046bad;
}

#inmo-text .contenido .texto p {
  margin-left: 30px;
}

#inmo-text .contenido ul {
  list-style: none;
  padding: 0;
}

#inmo-text .contenido ul li {
  padding-bottom: 10px;
  color: #3F3F3F;
  font-weight: 600;
  font-size: 20px;
}

#inmo-text .contenido ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #EAB200;
}

#inmo-text .contenido p {
  font-weight: 600;
  color: #7C7C7C;
}

#inmo-text .contenido img {
  -webkit-box-shadow: -8px 6px 13px -1px rgba(158,158,158,0.85); 
  -moz-box-shadow: -8px 6px 13px -1px rgba(158,158,158,0.85); 
  box-shadow: -8px 6px 13px -1px rgba(158,158,158,0.85);
  margin-top: 30px;
}

#inmo-text .contenido .btn-llamar {
  color: #046bad;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #33b7ff;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}

#inmo-text .contenido .btn-llamar:hover {
  background: #33b7ff;
  color: #fff;
}

/* Panels. */
.para-inmo .splitview {
  position: relative;
  width: 100%;
  min-height: 35vw;
  overflow: hidden;
  margin: 30px 0px 30px 0px;
}

.para-inmo .panel {
  position: absolute;
  width: 100%;
  min-height: 35vw;
  overflow: hidden;
}

.para-inmo .panel .content {
  position: absolute;
  width: 100vw;
  min-height: 35vw;
  color: #FFF;
}

.para-inmo .panel .description {
  width: 35%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.para-inmo .panel .description h2 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 20px 0 30px 0;
}

.para-inmo .panel .description p {
  font-weight: 600;
  font-size: 18px;
}

.para-inmo .panel img {
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
  width: 35%;
  position: absolute;
  top: 60%;
  left: 73%;
  transform: translate(-50%, -50%);
}

.para-inmo .bottom {
  background-color: #33b7ff;
  z-index: 1;
}

.para-inmo .bottom .description {
  left: 5%;
  color: #444;
}

.para-inmo .bottom .description ul {
  list-style: none;
  padding: 0;
}

.para-inmo .bottom .description ul li {
  padding-bottom: 10px;
  color: #3F3F3F;
  font-weight: 600;
  font-size: 16px;
}

.para-inmo .bottom .description ul i {
  font-size: 16px;
  padding-right: 4px;
  color: #EAB200;
}

.para-inmo .top {
  background-color: #37517e;
  z-index: 2;
  width: 50vw;
}

.para-inmo .top .description {
  left: 5%;
}

.para-inmo .handle {
  height: 100%;
  position: absolute;
  display: block;
  background-color: rgb(253, 171, 0);
  width: 5px;
  top: 0;
  left: 61%;
  z-index: 3;
}

.para-inmo .skewed .handle {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
  height: 200%;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
}

.para-inmo .skewed .top {
  transform: skew(-30deg);
  margin-left: -1000px;
  width: calc(60vw + 1005px);
}

.para-inmo .skewed .top .content {
  transform: skew(30deg);
  margin-left: 1000px;
}

@media (max-width: 768px) {
  .para-inmo .splitview {
    height: 60vw;
  }

  .para-inmo .panel {
	height: 60vw;
  }

  .para-inmo .panel .content {
	height: 60vw;
  }
}

@media (max-width: 575px) {
  .para-inmo .splitview {
    height: 80vw;
  }

  .para-inmo .panel {
	height: 80vw;
  }

  .para-inmo .panel .content {
	height: 80vw;
  }
  
  .para-inmo .panel .description {
    width: 55%;
    top: 50%;
  }  
  
  .para-inmo .panel .description h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }  
  
  .para-inmo .panel .description p {
    font-size: 14px;
  }  
  
  .para-inmo .bottom .description ul li {
    padding-bottom: 0px;
  }
  
  .para-inmo .panel img {
    width: 35%;
    top: 50%;
    left: 78%;
  } 
}

/*--------------------------------------------------------------
# Reformas SECTION
--------------------------------------------------------------*/

.llegar .icon-box {
  text-align: center;
  padding: 60px 20px;
  transition: all ease-in-out 0.3s;
}

.llegar .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffb03b;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.llegar .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.llegar .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fccd86;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.llegar .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.llegar .icon-box h4 a {
  color: #384046;
}

.cartas .wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cartas .wrapper .container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.cartas .wrapper .container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.cartas .wrapper .columna{
  margin-bottom: 30px; 
}

.cartas .wrapper .container .front,
.cartas .wrapper .container .back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
  background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
     backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;

}

.cartas .wrapper .container .back{
  background: #046bad;
  background: -webkit-linear-gradient(45deg,  #046bad 0%,#33b7ff 100%);
  background: -o-linear-gradient(45deg,  #046bad 0%,#33b7ff 100%);
  background: linear-gradient(45deg,  #046bad 0%,#33b7ff 100%);
}

.cartas .wrapper .container .front:after{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .5;
    background-color: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.cartas .wrapper .container:hover .front,
.cartas .wrapper .container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.cartas .wrapper .container .back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.cartas .wrapper .container .inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.cartas .wrapper .container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.cartas .wrapper .container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.cartas .wrapper .container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.cartas .wrapper .container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.cartas .wrapper .container .front .inner h1{
  font-size: 2.5rem;
  font-weight: normal;
  color: #444;
  text-align: center;
  margin: 2rem 0;
}

.cartas .wrapper .container .front .inner p{
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.cartas .wrapper .container .front .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.cartas .wrapper .container .front .inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}

.reformas .contenido {
  margin-top: 30px;
}

.reformas .contenido h3 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 50px 0 10px 0;
  color: #046bad;
}

.reformas .contenido ul {
  list-style: none;
  padding: 0;
}

.reformas .contenido ul li {
  padding-bottom: 10px;
  color: #3F3F3F;
  font-weight: 600;
  font-size: 20px;
}

.reformas .contenido ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #EAB200;
}

.reformas .contenido p {
  font-weight: 600;
  color: #7C7C7C;
}

.reformas .contenido img {
  -webkit-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  -moz-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68);
  margin-top: 30px;
}

.refor-azul .contenido {
  margin: 20px 0px 20px 0px;
}

.refor-azul .contenido h3 {
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 50px 0 10px 0;
  color: #33b7ff;
}

.refor-azul .contenido ul {
  list-style: none;
  padding: 0;
}

.refor-azul .contenido ul li {
  padding-bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.refor-azul .contenido ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #EAB200;
}

.refor-azul .contenido p {
  font-weight: 600;
  color: #fff;
}

.refor-azul .contenido img {
  -webkit-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  -moz-box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68); 
  box-shadow: 5px 5px 15px 6px rgba(176,176,176,0.68);
  margin-top: 30px;
}

.reformas .contenido .btn-llamar {
  color: #046bad;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #33b7ff;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}

.reformas .contenido .btn-llamar:hover {
  background: #33b7ff;
  color: #fff;
}

/*--------------------------------------------------------------
# Aviso Legal
--------------------------------------------------------------*/

.avisotitle {
  margin: 50px 0px 20px 0px;	
}

.aviso h4 {
  font-size: 18px;  
  font-weight: 700;
}

.aviso p {
  text-align: justify;	
}

.aviso ul li {
  margin-bottom: 20px;	
}

.policy h4 {
  font-size: 18px;  
  font-weight: 700;
}

.policy p {
  text-align: justify;	
}

.policy ul li {
  margin-bottom: 20px;	
}

.policy table {
  width: 100%;
}

.policy table tr th {
  background: #cccccc;
  font-weight: 600;
  font-size: 18px;
}

.policy table .gris {
  background: #cccccc;
  font-weight: 600;
  font-size: 16px;  
}

.policy table .azul {
  background: #bae6ff;
  font-weight: 600;
  font-size: 16px;  
}

.policy table tr td {
  border: 1px solid #444;
  width: auto;  
  padding: 10px 20px 10px 20px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.mapheader {
  position: relative; 	
  padding-bottom: 0px;  
  padding-top: 16vh;
}

#position-relative,
* {
  position: relative;
}

.contact-info .float-left {
  float: left;
}

.contact-info .image img {
  width: 375px;
  height: 130px;
  border-radius: 4px;
}

.contact-info .card,
.contact-info .card-helper,
.contact-info .card:before,
.contact-info .card:after { 
  width: 450px;
  height: 290px;
  box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
}

.contact-info .inmo { 
  color: #fff;
}

.contact-info .inmo:before { 
  background-color: #8063e1;
  background-image: linear-gradient(135deg, #bd7be8, #8063e1);
}

.contact-info .inmo:after { 
  background-color: #3f58e3;
  background-image: linear-gradient(135deg, #7f94fc, #3f58e3);
}

.contact-info .refor:before { 
  background: #9fc8d6;
}

.contact-info .refor:after { 
  background: #67acbd;
}

.contact-info .card {
  transform: rotate(-40deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-40deg) rotateX(20deg) rotateY(30deg);
  margin: 80px auto;
}

.contact-info .card-helper {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-info .card:before,
.contact-info .card:after {
  content: "";
  position: absolute;
  left: 0;
}

.contact-info .card:before {
  transform: rotate(8deg);
  -webkit-transform: rotate(8deg);
  top: -20px;
  z-index: -1;
}

.contact-info .card:after {
  transform: rotate(16deg);
  -webkit-transform: rotate(16deg);
  top: -40px;
  z-index: -2;
}
  
.contact-info .card:hover {
  transform: none;
  -webkit-transform: none;
}

.contact-info .card:hover:before,
.contact-info .card:hover:after {
  top: 0;
}

.contact-info .card:hover:before {
  transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-24deg) rotateX(20deg) rotateY(30deg);
}

.contact-info .card:hover:after {
  transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
  -webkit-transform: rotate(-32deg) rotateX(20deg) rotateY(30deg);
}

.contact-info .card,
.contact-info .card:before,
.contact-info .card:after,
.contact-info .card:hover,
.contact-info .card:hover:before,
.contact-info .card:hover:after {
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
}

.contact-info .card,
.contact-info .card:before,
.contact-info .card:after {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}

.contact-info .card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-left: 20px;
  font-family: 'Josefin Sans', sans-serif;   
}

.contact-info .card p {
  margin-left: 20px;  
  font-family: 'Josefin Sans', sans-serif; 
  font-size: 17px;  
}

.contact-info #cont-info {
  -webkit-box-shadow: 5px 5px 15px 5px #CACACA; 
  -moz-box-shadow: 5px 5px 15px 5px #CACACA; 
  box-shadow: 5px 5px 15px 5px #CACACA;
  margin-bottom: 40px;  
}

.contact-info .info-box {
  color: #444444;
  text-align: center;
  padding: 30px 0 32px 0;
  border-radius: 4px;
  transition: 0.4s; 
  border: 1px solid #046bad; 
  min-height: 220px;  
  background: #f1f7f9;
}

.contact-info .info-box:hover {
  background: #d6e8ed;
  border: 1px solid #33b7ff;
}

.contact-info .info-box:hover i {
  color: #046bad;
  border: 2px dotted #046bad;   
}

.contact-info .info-box i {
  font-size: 32px;
  color: #33b7ff;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #33b7ff;
}

.contact-info .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact-info .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.contact-info .info-box span {
  font-weight: 600;
}

.contact-info #card-container {
  -webkit-box-shadow: 5px 5px 15px 5px #CACACA; 
  -moz-box-shadow: 5px 5px 15px 5px #CACACA; 
  box-shadow: 5px 5px 15px 5px #CACACA;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 576px) { 
  .contact-info .card,
  .contact-info .card-helper,
  .contact-info .card:before,
  .contact-info .card:after { 
    width: 320px;
    min-height: 160px;
    box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
  }
  
  .contact-info .card h3{
	margin-top: 0px;	
  }
}

/*--------------------------------------------------------------
# Presupuesto - SECTION
--------------------------------------------------------------*/

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form label {
  color: #046bad;
  margin-top: 10px;
}

.contact .php-email-form span {
  color: #515151;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #33b7ff;  
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #046bad;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #33b7ff;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #046bad;
}

.contact .lopd{
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #37679c;
}

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

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #33b7ff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-contact i {
  font-size: 18px;
  color: #EAB200;
  margin-right: 10px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #33b7ff;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #33b7ff;
  bottom: 0;
  left: 0;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #EAB200;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter p {
  color: #fff;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

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

#footer .social-links a:hover {
  background: #33b7ff;
  color: #fff;
  text-decoration: none;
}