/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Gotham-Light', sans-serif;
  font-weight: Light;
  color: #444444;
}

a {
  color: #2b5369;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham-Book-Regular', sans-serif;
  font-weight: Book;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #b5a169;
  border-top-color: #2b5369;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  background: #343537;
  color: #b5a169;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #252629;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Chatea en WhatsApp
--------------------------------------------------------------*/
.call-whatsapp {
	bottom:0px;
	right:0px;
	position: fixed;
    z-index: 2;
	margin-bottom: 0px;
	left: 15px;
	}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  font-family: 'Gotham-Book-Regular', sans-serif;
  background: #b5a169;
  color: #2b5369;
  height: 40px;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.5s;
}

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

#topbar i {
  padding-right: 6px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(33, 77, 104, 0.9);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  #header {
    padding: 8px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 90px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
  #header .logo img {
  max-height: 75px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  transition: 0.3s;
  font-size: 13px;
  font-family: 'Gotham-Book-Regular', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

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

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

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #194b4d;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #b5a169;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Appointment Button */
.appointment-btn {
  font-family: 'Gotham-Book-Regular', sans-serif;
  margin-left: 25px;
  background: #343537;
  color: #b5a169;
  border-radius: 0px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #252629;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

.appointment-btn2 {
  font-family: 'Gotham-Book-Regular', sans-serif;
  background: #343537;
  color: #b5a169;
  border-radius: 0px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn2:hover {
  background: #252629;
  color: #fff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 0px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  margin-top: 12px;
}

.mobile-nav-toggle i {
  color: #a39468;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #555555;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #b5a169;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  text-align: center;
  background: rgba(33, 77, 104, 0.9);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid #b5a169;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #b5a169;
  margin-bottom: 20px;
  font-size: 28px;/*36px*/
  font-weight: 500;
  text-transform: uppercase;
}

#hero p {
	font-size: 14px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #ffffff;
}

@media (max-width: 768px) {
#hero p {
	font-size: 10px;
  	-webkit-animation-delay: 0.4s;
  	animation-delay: 0.4s;
  	margin: 0 auto 30px auto;
	}
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

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

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(181, 161, 105, 0.4);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(181, 161, 105, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #b5a169;
}

#hero .btn-get-started {
  font-family: 'Gotham-Book-Regular', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #2b5369;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #b5a169;
  text-transform: none;
  z-index: 3000 !important;
}

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

@media (max-width: 992px) {
  #hero {
    height: 500px;/*100vh*/
  }
  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 14px;
  }
}

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

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

@media (max-width: 575px) {
  #hero {
    height: 320px;/*100vh*/
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

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

.section-title h2 {
  color: #2b5369;
  font-size: 28px;
  font-weight: 300;
  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: #b5a169;*/
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
	font-size: 14px;
  font-weight: 100;
  margin-bottom: 0;
}

.fade:not(.show) {
    opacity: 1;
	
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
   transition: opacity 0.3s;
}

.fade:hover{
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Proyecto
--------------------------------------------------------------*/
.proyecto {
	background-color: #b5a169;
	padding: 80px 0;
	text-align: left;
	}
	.proyecto h2 {
		color: #ffffff;
		font-size: 28px;
		text-transform: uppercase;
		margin-left: 25%;
		}
	.proyecto p {
		color: #ffffff;
		font-size: 20px;
		/*font-family: 'Gotham-Book-Regular', sans-serif;*/
		margin-top: 40px;
		margin-left: 25%;
		margin-bottom: 40px;
		}

.bg-proyecto {
    color: #2B5368;
    background-color: #B5A169!important;
	padding: 30px 0 15px;
	border-width: 5px;
    border-style: solid;
    border-color: #0F3444;
    }

.proyecto .btn-brochure {
  font-family: 'Gotham-Book-Regular', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #b5a169;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #343537;
  text-transform: none;
  margin-left: 25%;
}

.proyecto .btn-brochure:hover {
	color: #fff;
  	background: #252629;
}

@media (max-width: 991px) {
.proyecto {
	background-color: #b5a169;
	padding: 80px 0;
	text-align: center;
	}
	.proyecto h2 {
		color: #ffffff;
		font-size: 28px;
		text-transform: uppercase;
		margin-left: 0;
		}
	.proyecto p {
		color: #ffffff;
		font-size: 20px;
		/*font-family: 'Gotham-Book-Regular', sans-serif;*/
		margin-top: 40px;
		margin-bottom: 40px;
		margin-left: 0;
		}
		.proyecto .btn-brochure {
		  	font-family: 'Gotham-Book-Regular', sans-serif;
		  	font-size: 14px;
		  	letter-spacing: 1px;
		  	display: inline-block;
		  	padding: 14px 32px;
		  	border-radius: 0px;
		  	transition: 0.5s;
		  	line-height: 1;
		  	color: #b5a169;
		  	-webkit-animation-delay: 0.8s;
		  	animation-delay: 0.8s;
		  	background: #343537;
		  	text-transform: none;
		  	margin-left: 0%;
			}
}

/*--------------------------------------------------------------
# Vista Panoramica
--------------------------------------------------------------*/
.vista-panoramica {
	background: url(../img/vista-ocean-side-miraflores.jpg) no-repeat center top;
    background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	height: 400px;
	}
	.vista-panoramica h2 {
		color: #fff;
		font-size: 28px;
		text-align: center;
		text-transform: uppercase;
		}
		.boton-azul {
			color: #fff;
			font-family: 'Gotham-Book-Regular', sans-serif;
			font-size: 14px;
			letter-spacing: 1px;
			display: inline-block;
			padding: 14px 32px;
			border-radius: 0px;
			transition: 0.5s;
			line-height: 1;
			-webkit-animation-delay: 0.8s;
			animation-delay: 0.8s;
			background: #214d68;
			text-transform: none;
			}
@media (max-width: 1024px) {
.vista-panoramica {
	background: url(../img/vista-ocean-side-miraflores.jpg) no-repeat center top;
    background-attachment: none;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	height: 400px;
	}
}

/*--------------------------------------------------------------
# Exclusividad en Acabados
--------------------------------------------------------------*/
.acabados {
	background: url(../img/bg-textura.jpg) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	}
	.acabados h2 {
		color: #214d68;
		font-size: 28px;
		text-align: center;
		text-transform: uppercase;
		margin-bottom: 40px;
		}
		.acabados h3 {
			color: #214d68;
			font-size: 15px;
			margin-bottom: 20px;
			text-transform: uppercase;
			border: 1px solid #b5a169;
			width: 174px;
			padding: 8px 12px 8px 12px;
			}
		
		.acabados p {
			font-size: 14px;
			}
@media (max-width: 575px) {
.acabados {
	background: url(../img/bg-textura.jpg) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	text-align: center;
	}
	
	.acabados h3 {
			color: #214d68;
			font-size: 15px;
			margin-bottom: 20px;
			text-transform: uppercase;
			border: 1px solid #b5a169;
			width: 174px;
			padding: 8px 12px 8px 12px;
			margin-left: auto;
			margin-right: auto;
			}
}

/*--------------------------------------------------------------
# Exclusividad en Acabados 2
--------------------------------------------------------------*/
.acabados2 {
	background-color: #b5a169;
	margin-bottom: -40px;
	}
	.acabados2 h2 {
		color: #214d68;
		font-size: 28px;
		text-align: center;
		text-transform: uppercase;
		margin-bottom: 20px;
		}
		.acabados2 p {
			font-family: 'Gotham-Bold', sans-serif;
			color: #214d68;
			font-size: 14px;
			}
@media (max-width: 575px) {
.acabados2 {
	background-color: #b5a169;
	text-align: center;
	}
}

/*--------------------------------------------------------------
# Respaldo Profesional
--------------------------------------------------------------*/
.respaldo {
	color: #ffffff;
	background-color: #214d68;
	}
	.respaldo h2 {
		color: #b5a169;
		font-size: 28px;
		text-align: center;
		text-transform: uppercase;
		margin-bottom: 40px;
		}
		.respaldo h3 {
			font-size: 24px;
			text-transform: uppercase;
			margin-bottom: 20px;
			}
			.respaldo h4 {
				font-size: 13px;
				text-transform: uppercase;
				letter-spacing: 3px;
				}
				.respaldo h5 {
					font-family: 'Gotham-Bold', sans-serif;
					color: #b5a169;
					font-size: 18px;
					text-transform: uppercase;
					margin-top: 80px;
					margin-bottom: 10px;
					}
			
		.respaldo p {
			font-size: 14px;
			}
		
		.color-amarillo {
			color: #b5a169;
			display: inline-block;
			}
		.frase {
			color: #b5a169;
			font-size: 18px;
			font-style: italic;
			padding: 50px 0;
			text-align: justify;
			}
			.firma {
			color: #b5a169;
			font-size: 18px;
			font-style: italic;
			text-align: right;
			}
			
@media (max-width: 991px) {
.respaldo {
	color: #ffffff;
	background-color: #214d68;
	text-align: center;
	}
	.respaldo h4 {
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 3px;
		margin-top: 30px;
		}
}

/*--------------------------------------------------------------
# Planos
--------------------------------------------------------------*/
.planos {
	color: #ffffff;
	background-color: #214d68;
	padding: 80px 0;
	}
	.planos h2 {
		color: #b5a169;
		font-size: 28px;
		text-transform: uppercase;
		text-align: center;
		margin: 0;
		margin-bottom: 40px;
		}
		.planos p {
			font-size: 14px;
			font-weight: 100;
			padding: 10px 0 10px 0;
			margin: 0;
			text-align: center;
			}
				
.planos a {
	font-family: 'Gotham-Book-Regular', sans-serif;
    background: #343537;
    color: #b5a169;
    border-radius: 0px;
    padding: 8px 8px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
	}
	.planos a:hover {
    background: #252629;
    color: #fff;
}
	
	

@media (max-width: 991px) {

}

@media (max-width: 320px) {
	.planos p {
			font-size: 12px;
			font-weight: 100;
			padding: 10px 0 10px 0;
			margin: 0;
			text-align: center;
			}

}

/*--------------------------------------------------------------
# Recorrido virtual
--------------------------------------------------------------*/
.recorrido {
	color: #ffffff;
	background-color: #b5a169;
	padding: 80px 0;
	}
	.recorrido h2 {
		font-size: 28px;
		text-transform: uppercase;
		text-align: center;
		margin: 0;
		margin-bottom: 40px;
		}
		.recorrido p {
			color: #343537;
			font-size: 14px;
			font-weight: 100;
			padding: 10px 0 30px 0;
			margin: 0;
			text-align: center;
			}
			.recorrido a {
			color: #ffffff;
			font-size: 10px;
			text-align: center;
			margin-top: 0px;
			}


/*--------------------------------------------------------------
# Ubicación Google Map
--------------------------------------------------------------*/
.ubicacion {
	text-align: center;
	margin: 0;
	background-color: #214d68;
    padding: 0;
	}
	.ubicacion h2 {
		color: #ffffff;
		font-size: 14px;
		text-align: center;
		text-transform: uppercase;
		padding-top: 20px;
		}
		.ubicacion iframe {
			height: 400px;
			width: 100%;
			border: 0;
			}
@media (max-width: 575px) {
	.ubicacion iframe {
			height: 260px;
			width: 100%;
			border: 0;
			}

}


/*--------------------------------------------------------------
# Vistas
--------------------------------------------------------------*/
.vistas {
	background-color: #b5a06a;
    padding: 80px 0;
	padding-left: 5%;
	padding-right: 5%;
	}
	.vistas h2 {
		color: #ffffff;
		font-size: 28px;
		text-align: center;
		text-transform: uppercase;
		margin-bottom: 40px;
		}
		.vistas p {
			font-size: 10px;
			margin: 0;
			padding: 8px 0;
			text-align: right;
			}
			.vistas h3 {
				font-size: 14px;
				margin: 0;
				padding: 8px 0;
				margin-bottom: -20px;
				text-align: left;
				}

.titulo-vistas {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #b5a169;
	}
	.titulo-vistas h3 {
		color: #2b5369;
		font-size: 14px;
    	text-transform: uppercase;
		margin: 0;
		}

.texto-encima{
	color: #ffffff;
	font-size: 12px;
    position: absolute;
    left: 5px;
	bottom: 5px;
	text-transform: uppercase;
	background-color: #214d68;
	padding: 1px 6px;
}

.carousel-indicators {
    position: inherit;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

@media (max-width: 575px) {
.vistas h3 {
    font-size: 11px;
    margin: 0;
    padding: 8px 0;
    margin-bottom: -32px;
	}
	.vistas p {
			font-size: 10px;
			margin: 0;
			padding: 8px 0;
			text-align: center;
			}	
}

@media (max-width: 991px) {
.vistas {
	background-color: #b5a06a;
    padding: 80px 0;
	padding-left: 0%;
	padding-right: 0%;
	}
}

.cw-inmobiliaria {
	color: #ffffff;
    background-color: #214d68;
    padding: 80px 0;
	text-align: center;
	} 
	.cw-inmobiliaria h2 {
		color: #b5a169;
		font-family: 'Gotham-Bold', sans-serif;
		font-size: 18px;
		text-transform: uppercase;
		margin-bottom: 20px;
		}
		.cw-inmobiliaria p {
			font-size: 14px;
			}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: url(../img/bg-textura.jpg) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

@media (max-width: 320px) {
.contact {
  background: url(../img/bg-textura.jpg) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	padding: 60px 0;
	}
.section-title h2 {
    color: #2b5369;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
	}
.contact p {
	font-size: 13px;
	}
.contact .info-box h3 {
    font-size: 16px !important;
    color: #777777;
    font-weight: 300;
    margin: 10px 0;
	}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 13px !important;
    margin-bottom: 0;
	}
.contact .php-email-form button[type="submit"] {
    background: #b5a169;
    font-size: 13px;
    border: 0;
    padding: 10px 30px;
    color: #2b5369;
    transition: 0.4s;
    border-radius: 0px;
}
}

.contact .info-box {
  color: #444444;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

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

.contact .info-box h3 {
  font-size: 14px;
  color: #2b5369;
  font-weight: 300;
  margin: 10px 0;
}

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

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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 input, .contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #3fbbc0;
}

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

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

.contact .php-email-form button[type="submit"] {
  font-family: 'Gotham-Book-Regular', sans-serif;
  background: #343537;
  font-size: 14px;
  border: 0;
  padding: 10px 30px;
  color: #b5a06a;
  transition: 0.4s;
  border-radius: 0px;
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}

#footer span {
	font-family: 'Gotham-Book-Regular', sans-serif;
	}

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

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Gotham-Book-Regular', sans-serif;
}

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

#footer .footer-top .social-links a:hover {
  background: #65c9cd;
  text-decoration: none;
}

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

#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: #3fbbc0;
  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: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}
