/*///////////////////////// GENERALES /////////////////////////*/

@font-face {
  font-family: 'DinPro';
  src: url('../fonts/din-pro-300.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: 'DinPro';
  src: url('../fonts/din-pro-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'DinPro';
  src: url('../fonts/din-pro-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'DinPro';
  src: url('../fonts/din-pro-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: 'DinPro', sans-serif;
  color: #606060;
  position: relative;
  font-size: 1.1rem;
}

* {
  scroll-behavior: smooth;
}

section {
  overflow: hidden !important;
}


.lh-100 {
  line-height: 1;
}
.lh-150 {
  line-height: 1.5;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}
.text-yellow {
  color: #E1CC2A;
}
.menu.bg-olive {
  background-color: rgba(91, 105, 75, .95);
}

.text-olive {
  color: #5B694B
}
.text-green {
  color: #14593F
}

.link{
  transition: all 0.3s ease-in-out;
  display:inline-block;
  height:40px;
  line-height:40px;
  border: 0;
  background-color: transparent;
  border-bottom:7px solid #5B694B;
  text-transform: capitalize;
  border-radius:0px;
  position:relative;
  overflow:hidden;
  color: #5B694B;
  font-weight: 500;
  text-decoration: none;
}
.link:hover {
  text-decoration: none;
  cursor: pointer;
}
.l1:before{
  transition: all 0.1s linear;  
  content: attr(value);
  display:block; 
  padding-left: 7px;
  padding-right: 7px;
}
.l1:after {
    transition: all 0.3s ease-in-out;  
    content: "";
    display: block;
    background-color:#5B694B;
    margin-top:0px;
    height: 40px;
}
.l1:hover:after{
    margin-top:-40px;
}
.l1:hover,
.link--verde.l1:hover{
    color:#fff;
}

.link--verde.link {
  color: #14593F;
  border-color: #14593F;
}
.link--verde.l1:after{
  background-color:#14593F;
}
.link--invertido.link{
  border-color: #fff;
  color: #fff;
}
.link--invertido.l1:after{
  background-color:#fff;
}
.link--invertido.l1:hover{
  color:#5B694B;
}


.bg-familia {
  background-image: url("../images/bg-familia.jpg");
  background-color: #000;
  background-position: 85% center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-plaza {
  background-image: url("../images/bg-plaza.jpg");
  background-color: #000;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-semi-black {
  background-color: rgba(0, 0, 0, .6);
}
.bg-gray {
  background-color: #ECECE5;
}
.ls-n1 {
  letter-spacing: -1px;
}
.ls-n2 {
  letter-spacing: -2px;
}
.ls-n3 {
  letter-spacing: -3px;
}
.fs-2 {
  font-size: 1.55rem;
}
.fs-3 {
  font-size: 1.5rem;
}
.fs-4 {
  font-size: 2rem;
}
.fs-5 {
  font-size: 3rem;
}
.fs-5 .lotes-disponibles {
  font-size: 2rem;
}
div.btn:hover {
  cursor: inherit !important;
}


/* HEADER  */
.menu {
  background-color: transparent;
  transition: background 0.3s 0s linear;
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
}

.header-logo {
  background-image: url("../images/logo-campo-chico.svg");
  width: 200px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s 0s linear;
  margin: 5px;
}

.bg-olive .header-logo{
  height: 50px;
  transition: 0.3s 0s linear;
}

.navbar {
  z-index: 5;
  width: 100%;
  padding: 0.8rem 0rem;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: white !important;
  padding-bottom: 0px;
  position: relative;
  transition: linear 0.2s;
  padding: 8px 15px !important;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.nav-link::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #14593F;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all .3s;
  transform: translateX(-50px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: translateX(0px);
}

.nav-item.active .nav-link::before {
  opacity: 1;
  transform: translateX(0px);
}

/* Bs nav para el menú mobile */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  background-color: white !important;
  transition: .3s;
}

.bsnav-mobile .navbar {
  left: 0 !important;
  transform: translate3d(-300px, 0, 0) !important;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
}

.bsnav-mobile .navbar .nav-link,
.menu.bg-white .nav-link {
  color: #231F20 !important;
}

.menu.bg-white .nav-link:hover::before {
  opacity: 1;
  transform: translateX(0px);
  background-color: #231F20;
}

.menu.bg-white .nav-item.active .nav-link::before {
  background-color: #231F20;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.header-overlay {
  width: 100%;
  height: 190px;
  position: absolute;
  top: 0;
  background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.25) 30%, #041A29);
  background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, 0.15) 30%, #041A29);
  z-index: 2;
  opacity: .8;
}

.blue-toggler,
.blue-toggler::before,
.blue-toggler::after {
  background-color: #231F20 !important;
}

.nav-shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* MAIN */
.main-carousel .carousel-item,
.main-carousel .carousel-item.active,
.main-carousel .carousel-item .row {
  min-height: 100vh;
}
.main-carousel h1 {
  color: #fff;
  font-size: 44px;
  letter-spacing: -3px;
  line-height: 1;
  text-shadow: -1px 5px 20px rgba(0,0,0,0.5);
}

.main-carousel .carousel-item .container,
.main-carousel .carousel-item.active .container {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  z-index: 100;
}

.main-carousel-img {
  position: absolute;
  bottom: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.carousel-indicators {
  z-index: 9;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid white;
  margin-right: 3px;
  margin-left: 3px;
  background-color: transparent;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.carousel-indicators .active {
  background: white;
}

.whatsapp-mobile {
  position: fixed;
  z-index: 700;
	bottom: 1.5rem;
	right: 1.5rem;
	opacity:.9;
	transition: all ease .25s;
}
.whatsapp-mobile {
    width: 56px;
	height: 56px;
}
.whatsapp-mobile:hover {
	opacity:1;
	transition: all ease .25s;
  }
.social-links a{
  opacity: .7;
  transition: all ease .25s;
}
.social-links a:hover, .social-links a:focus{
  opacity: 1;
}
/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  animation: zoomSlow 35s infinite linear;
}

@keyframes zoomSlow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3) rotate(0.1deg);
  }
  100% {
    transform: scale(1);
  }
}

/* FOOTER */
footer {
  background: #000;
  padding: 50px 0px 50px;
}
.footer-logo{
  max-width: 230px;
  display: none;
}
/* BOTONES GRANDES */

.btn-grande {
  position: relative;
  border-color: transparent;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}
.btn-grande:focus {
  box-shadow: none;
}
.btn-grande::before, .btn-grande::after {
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  content: "";
}
.btn-grande::before {
  width: 100%;
  left: 0;
  border-radius: 0px;
  background-color: #96B570;
  z-index: -1;
}
.btn-grande::after {
  width: 0;
  left: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translate(-50%, 0);
  z-index: 1;
}
.btn-grande:hover {
  color: #96B570;
}
.btn-grande:hover::before {
  transform: scale(0, 1);
}
.btn-grande:hover::after {
  width: 100%;
  border-color: #96B570;
  transition-delay: 0.2s;
}

.btn--claro.btn-grande::before {
  background-color: #96B570;
}
.btn--claro.btn-grande:hover {
  color: #96B570;
}
.btn--claro.btn-grande:hover::after {
  border-color: #96B570;
}

.btn--medio.btn-grande::before {
  background-color: #7FA549;
}
.btn--medio.btn-grande:hover {
  color: #7FA549;
}
.btn--medio.btn-grande:hover::after {
  border-color: #7FA549;
}

.btn--medio-2.btn-grande::before {
  background-color: #3B7D5F;
}
.btn--medio-2.btn-grande:hover {
  color: #3B7D5F;
}
.btn--medio-2.btn-grande:hover::after {
  border-color: #3B7D5F;
}

.btn--oscuro.btn-grande::before {
  background-color: #14593F;
}
.btn--oscuro.btn-grande:hover {
  color: #14593F;
}
.btn--oscuro.btn-grande:hover::after {
  border-color: #14593F;
}

/* FORMULARIO */
.relative {
  position: relative;
}

#response {
  background: #2ec770;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  position: absolute;
  top: 180px;
  width: 77%;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #0000002e url(../images/loading.gif) center no-repeat;
}

.loading {
  display: none;
}
.form-control,
.form-control:active,
.form-control:focus {
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  border: 0;
  border-bottom: solid 2px #fff;
}
.form-control::placeholder {
  color: #fff;
}
.form-control:focus {
  box-shadow: none;
  border-color: #E1CC2A;
}

.h-550 {
  min-height: 300px;
  object-fit: cover;
}


/* RESPONSIVE */

/* SM */
@media (min-width: 576px) { 
  .h-550 {
    min-height: 500px;
  }
  .fs-5 .lotes-disponibles {
    font-size: 2.6rem;
  }
 }

/* MD */
@media (min-width: 768px) {
  .main-carousel h1 {
    font-size: 70px;
  }
  .footer-logo{
    max-width: 230px;
    display: inline-block;
  }
  .social-links{
    padding-right: 4rem;
  }
  
}

/* LG */
@media (min-width: 992px) {
  .h-550 {
    min-height: 550px;
  }
  .header-logo {
    margin: 30px;
  }
  .bg-olive .header-logo{
    margin: 5px;
  }
}

/* XL */
@media (min-width: 1200px) {
  }