
body{
	font-family: 'Montserrat', Arial, Ubuntu, sans-serif;
}

img{
	max-width: 100%;
}


body.content-modal-open{
  overflow: hidden;
}

.content-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.content-modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.content-modal-bg {
  position: absolute;
  background-color: rgba(0,0,0,.4);
  width: 100%;
  height: 100%;
}

.content-modal-container {
  border-radius: 10px;
  background: #fff;
  position: relative;
  padding: 30px;
}

@media(min-width: 768px){
  .content-modal-container{
    width: 80%;
  }
}

@media(min-width: 1024px){
  .content-modal-container{
    width: 70%;
  }
}

@media(min-width: 1300px){
  .content-modal-container{
    width: 60%;
  }
}

@media(min-width: 1600px){
  .content-modal-container{
    width: 50%;
  }
}

@media(min-width: 1920px){
  .content-modal-container{
    width: 40%;
  }
}

.content-modal-title{
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  color: #8a8c49;
}

.content-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: red;
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
}


.form-title{
	color: #434649;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 5%;
	font-size: 25px;
	text-align: center;
}

@media(min-width: 1600px){
  .form-title{
    font-size: 23px;
  }
}

.hs-form{
  display: grid;
  row-gap: 10px;
}

.hs-form label[id|="label"]{
  color: #727272;
  font-weight: 500;
  font-size: 16px;
}

.hs-form .hs-input{
  background: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  padding: 3% 4%;
  width: 100% !important;
}

.hs-form .hs-submit{
  text-align: center;
  margin-top: 5%;
}

.hs-form .hs-submit .hs-button{
	padding: 10px 15px;
	display: inline-block;    
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.125em;
	min-width: 260px;
	text-decoration: none;
  color: #F1F3F2;
  background: #788C2B;
  border: 0 none;
  transition: 0.3s;
}

.hs-form .hs-submit .hs-button:hover{
	text-decoration: none;
  background: #566C10;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.hs-form .hs-error-msgs{
  list-style: none;
  text-align: center;
  margin: 3% 0;
  padding: 2% 0;
  background: #bd0101;
  color: #f98b8b;
  font-size: 15px;
  font-weight: 500;
}

.hs-form .hs-error-msgs label{
  margin-bottom: 0;
}



.sft__button{
	text-align: center;
}

.sft__button .hs-button{
	padding: 10px 15px;
	display: inline-block;    
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.125em;
	min-width: 260px;
	text-decoration: none;
  transition: 0.3s;
}

.sft__button .hs-button:hover{
	text-decoration: none;
}

.sft__button--default .hs-button{
	color: #F1F3F2;
	background: #788C2B;
}

.sft__button--default .hs-button:hover{
	background: #566C10;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.sft__button--secondary .hs-button{
	color: #7B868C;
	border: 1px solid #7B868C;
  background: #788c2b;
  color: #f1f3f2;
}

.sft__button--secondary .hs-button:hover{
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}







.sft__navigation{
  width: 100%;
  text-align: right;
  /*background: #f4f4f4;*/
}
.sft__navigation .contain-header{
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
}

@media(max-width: 430px){
  .sft__navigation .contain-header{
    width: 100%;
  }
}
.sft__navigation .contain-header .logo{
  display: flex;
}
.sft__navigation .contain-header .logo img{
  width: 100%;
}
.sft__navigation label{
  display: inline-block;
  margin-bottom: 0;
  /*padding: 5px 15px;*/
  padding: 15px;
  /*margin-right: 15px;*/
  cursor: pointer;
}

@media(min-width: 1300px){
  .sft__navigation label{
    margin-right: 10px;
  }  
}

.sft__navigation label span{
  display: block;
  width: 25px;
}

.sft__navigation label svg{
  fill: #7E8045;
}

.sft__menu{
  height: 0;
  overflow: hidden;
}

.sft__menu__container{
  background: rgba(65, 84, 100, 0.86);
  padding: 5%;
  position: absolute;
  z-index: 10;
  display: none;
}

@media(min-width: 768px){
  .sft__menu__container{
    width: 50%;
    margin-left: 50%;
  }  
}

@media(min-width: 1024px){
  .sft__menu__container{
    width: 40%;
    margin-left: 60%;
    padding: 3%;
  }  
}

@media(min-width: 1300px){
  .sft__menu__container{
    width: 30%;
    margin-left: 70%;
  }  
}

@media(min-width: 1920px){
  .sft__menu__container{
    width: 26%;
    margin-left: 74%;
  }  
}

#menuToggle{
  display: none;
}

/*@media(max-width: 1299px){
  .sft__menu__logo img{
    max-width: 200px;
  }
}*/

.sft__menu__list ul{
  list-style: none;
  padding-right: 0;
  margin-top: 25px;
}

.sft__menu__list li{
  display: block;
}

.sft__menu__list a{
  color: #fff;
  display: inline-block;
  padding: 9px 5px;
  line-height: 1.2;
  font-size: 18px;
  position: relative;
}


.sft__menu__list a:after{
  content: "";
  width: 0;
  height: 2px;
  background: #78a229;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}

.sft__menu__list a:hover{
  text-decoration: none;
}

.sft__menu__list a:hover:after{
  width: 120%;
}

.sft__menu .sft__button{
  text-align: right;
}

#menuToggle:checked ~ .sft__menu{
  height: 100%;
}


.sft__header{
/* 	background-image: url('https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/bg-mobile.svg'); */
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
.sft__header__contentwrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sft__header__contentwrap h1 {
    text-align: center;
    color: rgba(0, 39, 73,1.0);
    text-transform: uppercase;
}

.sft__header__container{
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}

@media (max-width: 768px){
  .sft__header__container{
    grid-template-columns: 100%;
  }
}
.content-form{
  display: grid;
  justify-content: center;
  margin: 20px 0px;
}
.sft__header__container__form{
  background-image: url(https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/New%20images/Rectangle%201.png);
  background-position: bottom;
  padding-top: 60px;
  background-size: cover;m;
}
.sft__header__container__carousel{
  max-height: 800px;
}
.imagenes__slider{
  height: 100%;
}
/* SLIDER */
.imagenes-slider{
  height: 100%;
}
.imagenes-slider .imagen-slide .imagen-slide-info{
  height: 100%;
}
.imagenes-slider .imagen-slide .imagen-slide-info img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.imagenes-slider .imagen-slide .imagen-slide-info span{
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 38px 20px 20px 20px;
  width: 100%;
  max-width: 400px;
  background: #415464eb;
  height: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.imagen-slider-control{
  display: flex;
  width: 100%;
  gap: 20px;
  position: absolute;
  bottom: 40px;
  max-width: 140px;
/*   left: 271px; */
}
.imagen-slider-control .swiper-pagination{
  display: none;
}
.imagen-slider-control .slider-arrow{
  width: 50px;
  position: inherit;
}
.imagen-slider-control .swiper-button-prev:after{
  content: 'prev';
  background: #5f5f5f;
  color: #F2F2F2;
  height: 40px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}
.imagen-slider-control .swiper-button-next:after{
  content: 'next';
  background: #5f5f5f;
  color: #F2F2F2;
  height: 40px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}


.sft__header__beforetitle{
	color: #fff;
	letter-spacing: 0.285em;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	margin-bottom: 10%;
}

@media(min-width: 1300px){
	.sft__header__beforetitle{
		font-size: 24px;
	}
}

.sft__header__beforetitle strong{
	display: block;
	font-weight: 700;
}

.sft__logo{
  margin-bottom: 10%;
}

.sft__header__slogan{
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.285em;
	text-transform: uppercase;
	font-weight: 400;
}

.sft__header__slogan strong{
  display: block;
}

.sft__header__content{
	text-align: center;
	color: #686868;
	line-height: 1.3;
	font-size: 16px;
}

@media(min-width: 1300px){
	.sft__header__content{
		font-size: 20px;
	}
}

@media(min-width: 1920px){
	.sft__header__content{
		font-size: 25px;
	}
}

.sft__header__content h1{
	margin-bottom: 10%;
}

@media(min-width: 1024px){
	.sft__header__content p{
		display: inline-block;
    width: 90%;
	}	
}

@media(min-width: 1300px){
	.sft__header__content p{
    width: 80%;
	}	
}

@media(min-width: 1920px){
	.sft__header__content p{
    width: 100%;
	}	
}

.sft__header__buttons{
	display: grid;
	row-gap: 20%;
	margin-top: 10%;
}

@media(min-width: 1300px){
	.sft__header__buttons{
		grid-template-columns: 1fr 1fr;
	}
}

.sft__header__buttons .sft__button:last-child svg{
  width: 9px;
  transform: translate(-6px, -2px);
  fill: #7b868c;
}

.video_header{
  min-width: 250px;
}

.sft__header__rightbar{
	display: none;
}

@media(min-width: 1300px){
/* 	.sft__header__rightbar{		
		display: block;
    width: 100px;
    height: 120%;
    background: #f4f4f4;
    position: absolute;
    right: 0%;
    top: 0;
    z-index: 100;
	} */

	.sft__header__rightbar p{
		transform: rotate(270deg) translate(-100%,-94px);
    width: 270px;
    height: 24px;
    margin: 0;
		color: #898F65;
		font-size: 16px;
	}
}




.sft__section__container{
	padding: 30px;
}



.sft__section__avances{
  margin-top: 20px;
}


.sft__section--1{
	background: #F4F4F4;
}

.sft__section--1 .sft__section__container{
	padding-top: 17%;
	padding-bottom: 14%;
}

@media(min-width: 768px){
	.sft__section--1 .sft__section__container{
		padding-top: 10%;
		padding-bottom: 10%;
	}	
}

@media(min-width: 1024px){
	.sft__section--1 .sft__section__container{
		width: 90%;
    margin: 0 auto;
	}
}

@media(min-width: 1300px){
	.sft__section--1 .sft__section__container{
		width: 90%;
	}
}

@media(min-width: 1600px){
	.sft__section--1 .sft__section__container{
		width: 90%;
	}
}

@media(min-width: 1920px){
	.sft__section--1 .sft__section__container{
		padding-top: 7%;
    padding-bottom: 7%;
		width: 90%;
	}
}

.sft__section--1 .sft__section__header{
  margin-bottom: 15%;
}

@media(min-width: 768px){
  .sft__section--1 .sft__section__header{
    margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  } 
}

@media(min-width: 1300px){
  .sft__section--1 .sft__section__header{
    width: 80%;    
  } 
}

.sft__section--1 .sft__section__cols{
  margin-left: -30px;
  margin-right: -30px;
  display: grid;
  gap: 60px;
}

@media(min-width: 768px){	
  .sft__section--1 .sft__section__cols{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 20px;
  }
  /* 	.sft__section--1 .sft__section__col:first-child{
		padding-right: 5%;
	} */

  .sft__section--1 .sft__section__col__wrap{
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
  }
}
/* 
@media(min-width: 1024px){		
	.sft__section--1 .sft__section__col:first-child{
		padding-right: 5%;
	}
} */

/* @media(min-width: 1300px){
	.sft__section--1 .sft__section__col:first-child{
		padding-right: 10%;
	}
} */

.sft__section--1 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
  margin-bottom: 15%;
	font-size: 24px;
  text-align: center;
}

/*@media(min-width: 768px){
  .sft__section--1 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
    margin-bottom: 4%;    
  }  
}*/

@media(min-width: 1300px){
	.sft__section--1 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
		font-size: 26px;
	}
}

@media(min-width: 1600px){
	.sft__section--1 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
		font-size: 30px;
	}
}

/*.sft__section--1 .sft__section__content strong{
	display: block;
}*/

@media(min-width: 1024px){
	.sft__section--1 .sft__section__content strong{
		display: inline-block;
	}
}

.sft__section--1 .sft__section__content p{
	font-size: 15px;
	line-height: 1.3;
	color: #686868;
  text-align: center;
}

@media(min-width: 1300px){
	.sft__section--1 .sft__section__content p{
		font-size: 17px;
	}
}

@media(min-width: 1600px){
	.sft__section--1 .sft__section__content p{
		font-size: 19px;
	}
}

.sft__section--1 .sft__vista360{
	text-align: center;
	/*margin-bottom: 10%;*/
}

.sft__section--1 .sft__button{
  position: relative;
  margin-top: -40px;
  padding-bottom: 0%;
  background: rgba(65, 84, 100, 0.83);
}

@media(min-width: 1300px){
  .sft__section--1 .sft__button{
    margin-top: -50px;
    padding-bottom: 10px;   
  } 
}

.sft__section--1 .sft__button .hs-button{
  transform: translateY(-40%);
  font-size: 14px;
}



.sft__section--2{
}

@media(min-width: 768px){

}

@media(min-width: 1300px){
	.sft__section--2 .sft__section__container{
		padding: 0% 0 0%;
	}
}

.sft__section--2 .sft__section__cols{
	display: grid;
	row-gap: 5%;
}

@media(min-width: 768px){
	.sft__section--2 .sft__section__cols{
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
	}	
}

@media(min-width: 1300px){
	.sft__section--2 .sft__section__cols{
		grid-template-columns: 44% 51%;
    column-gap: 4%;
	}	
}

.sft__section--2 .sft__section__col:first-child{
		display: grid;
  position: relative;
	}

.sft__section--2 .sft__section__cols .sft__col{
  align-self: start;
}
.cta__verde{
  display: inline-block;
  font-size: 16px;
  letter-spacing: .125em;
  min-width: 260px;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: .3s;
  background: #788c2b;
  color: #f1f3f2;
  margin: 10px;
}
.cta__verde:hover{
  background: #566c10;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  text-decoration: none;
  color: #fff;
}
.mirar_detalle{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  margin: 20px;
  color: #fff;
}
.mirar_detalle a{
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.mirar_detalle a:hover{
  color: #fff;
}
.sft__section--2 .sft__section__col1{
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/bg-seccion-2.jpg);
  position: relative;
}

.sft__section--2 .sft__section__col1 .sft__col{
  background: rgba(65, 84, 100, 0.5);
  backdrop-filter: blur(50px);
  padding: 1.5rem 2rem;  
  color: #fff;
  margin-top: 20%;
}
.sft__section--2 .sft__section__col1 .sft__col h4{
  font-weight: 400;
  font-size: 32px;
}
.sft__section--2 .sft__section__col1 .sft__col h3{
  font-size: 42px;
}

@media(min-width: 768px){
  .sft__section--2 .sft__section__col1 .sft__col h3{
    font-size: 30px;
  }
}

@media(min-width: 1300px){
  .sft__section--2 .sft__section__col1 .sft__col h3{
    font-size: 42px;
  }
}

.sft__section--2 .sft__section__col1 .sft__col :is(h3,h4){
  text-transform: uppercase;
  line-height: 1;
}

.sft__section--2 .sft__section__col1 .detalle-apto{
  display: inline-flex;
  width: 100%;
  align-items: end;
}
.sft__section--2 .detalle-apto h3:first-child{
  margin-right: 3%;
}
.sft__section--2 .detalle-apto h3:last-child{
  font-weight: 300;
}

@media(min-width: 768px){
  .sft__section--2 .sft__section__col1 .sft__col{
    width: 85%;
    padding-left: 18%;
  }
}


.sft__section--2 .sft__section__col:last-child{
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}


@media(min-width: 1300px){
	.sft__section--2 .sft__section__col:last-child{
		padding-right: 7%;
	}
   .sft__section__col-modelos .tablink{
    margin-right: 9px;
    padding: 9px 28px!important;
  }
}

@media(min-width: 1600px){
	.sft__section--2 .sft__section__col:last-child{
		padding-right: 21%;
	}
}

@media(min-width: 1920px){
	.sft__section--2 .sft__section__col:last-child{
		padding-right: 25%;
	}
}

.sft__section--2 .modelo{
  min-height: 100px;
}

.sft__section--2 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 8%;
	font-size: 20px;
}

.sft__section--2 .sft__section__content h2{
	margin-bottom: 4%;
  padding: 20px;
}

.sft__section--2 .sft__section__content h2 strong{
	display: block;
}

@media(min-width: 1920px){
	.sft__section--2 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
		font-size: 25px;
	}

  
}
.sft__section__col-modelos .tablink:focus{
  outline: none;
}
.sft__section__col-modelos .tablink{
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  border: 1px solid #7B868C;
  color: #7B868C;
  background: #fff;
  padding: 9px 20px;
}

.sft__section__col-modelos .tablink-hover{
  background: #788C2B;
  color: #fff;
}
.sft__section__col-modelos{
  margin-bottom: 1.5rem;
  padding: 20px 20px;
  display: flex;
  gap: 16px;
}

.distribucion-cols{
	display: grid;
}
@media(min-width: 768px){
  .distribucion-cols{
    row-gap: 5%;
  }
  .sft__section__col-modelos .tablink-hover{
    padding: 15px 20px;
  }
}

@media(min-width: 1024px){
  .distribucion-cols{
    min-height: 360px;
    align-items: center;
  }
}

@media(min-width: 1300px){
  .distribucion-cols{
    min-height: 500px;
  }
}

@media(min-width: 1920px){
  .distribucion-cols{
    min-height: 570px;
  }
}

.tabs-modelo{
  display: flex;
  gap: 12px;
  padding: 10px;
}

button.btn-seccion:focus{
  outline: none;
}
button.btn-seccion{
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #7B868C;
  border: 1px solid #7b868c;
  border-radius: 500px;
  padding: 10px 15px;
  background: #fff;
  transition: 0.3s;
  /*margin-bottom: 2rem;*/
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
button.btn-seccion i{
  font-size: 38px;
}
button.btn-seccion a{
  
}
@media(min-width: 1300px){
  button.btn-seccion{
    padding: 8px 15px;
    font-size: 15px;
    margin-bottom: 2rem;  
  }  
}

button.btn-seccion.btn-hover-seccion{
  background: #686868;
  color: #fff;
}

@media(min-width: 768px){
	.distribucion-cols{
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
	}	
  .sft__section__pc{
    display: block;
  }
  .sft__section__movil{
    display: none;
  }
  
 
}

@media(min-width: 1300px){
	.distribucion-cols{
		grid-template-columns: 51% 44%;
    column-gap: 4%;
	}	
}
@media(max-width:480px){
  .tabs-modelo{
    gap: 8px;
  }
  .sft__section__col-modelos .tablink{
    font-size: 11px!important;
    padding: 9px 9px!important;
  }
  button.btn-seccion{
    font-size: 8px!important;
    padding: 8px 10px;
  }
  button.btn-seccion i{
    font-size: 10px;
  }
  .mirador__ctadetalles{
    margin-top: 1rem;
  }
}
@media(max-width: 767px){
  .sft__section__movil{
    min-height: 550px;
    display: grid!important;
    position: relative;
    margin-bottom: 4rem;
    background-image: url(https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/bg-seccion-2-movil.jpg);
  }
  .sft__section--2 .sft__section__col1 .sft__col{
    padding: 1rem 2rem;
    width: 95%;   
  }
  .sft__section__movil:after{
    content: '';
    width: 42px;
    height: 42px;
    background: url(https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/Continue.png);
    position: absolute;
    bottom: -40px;
    left: 43%;
  }
  .sft__section--2 .sft__section__col1 .sft__col h3 {
      font-size: 30px;
  }
   /*.sft__section__content, .sft__section__col-modelos, .modelo{
    padding-left: 20px;
    padding-right: 20px;
  }*/
  .sft__section__pc{
    display: none!important;
  }
  .sft__section__movil{
    display: block;
  }
  button.btn-seccion{
    font-size: 12px;
    margin-top: 1.5rem;
  }
  .sft__section__col-modelos .tablink{
    font-size: 13px;
    padding: 9px 12px;
  }
  .sft__section--2 .sft__section__container{
    padding-left: 0;
    padding-right: 0;
  }
}
.galeriamodelos{
  position: relative;
}
.galeriamenidades{
  display: flex;
  gap: 20px;
}
.galeriamodelos .slick-arrow {
    font-size: 16px;
    padding: 14px;
    background: #7e8045;
    color: #fff;
  cursor: pointer;
}

.galeriamodelos .logo-carousel{
  padding: 0;
}

.galeriamodelos .slick-arrow{
  bottom: 0%;
  top: auto;
}
.galeriamodelos .slick-arrow.prev{
  right:43px;
  left: auto;
}

.tns-nav{
  display: none;
}
.tns-item img{
  max-width: 100%;
/*   height: 330px; */
  object-fit: cover;
}
ul.controls{
  list-style: none;
  text-align: right;
  margin-top: -30px;
  /*position: relative;*/
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
  gap: 4px;
}

ul.controls li{
  display: inline-block;
}

ul.controls img{
  height: 60px;
}
ul.controls svg{
  fill: #566C10;
}

ul.controls li.prev, ul.controls li.next{
  cursor: pointer;
  width: 20px;
}
@media(max-width: 767px){
  ul.controls{
    text-align: center;
  }
}
@media(max-width: 767px){
  ul.controls li.prev, ul.controls li.next{
    /*width: 45px;*/
    width: 12px;
  }
}

.mirador__ctadetalles{
  color: #566C10;
  margin-bottom: 80px;
}
.mirador__ctadetalles a{
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.13em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #566C10;
}
.distribucion-col{

}

/***********************MODAL*********************************/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 60px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
  color: #415464;
}

.modal-content h3{
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
  text-align: center;
  color: #8A8C49;
}

@media(min-width: 768px){
  .modal-content p{
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .modal-content h3{
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
@media(max-width: 400px){
  .btn-seccion{
  margin-top: 0.5rem!important;
    margin-bottom: 0.5rem!important;
  }
}
@media(max-width: 767px){
  .mirador__ctadetalles {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

span.close2{
  background: #788C2B;
  text-align: center;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #F1F3F2;
  cursor: pointer;
    padding: 0.5rem 2rem;
    display: inline-block;
}




.sft__section--3{
  text-align: center;
  background: #F4F4F4;
  color: #686868;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 21px;
}
.sft__section--3 p{
  margin-bottom: 5px;
}
.sft__section--3 .hs-button {
  margin-top: 3rem;
}

.sft__section--4{
	background: #F4F4F4;
  background: linear-gradient(to right, white 0%, white 0%, white 25%, #F4F4F4 25% );
}

/*.sft__section--4 .sft__section__container{
	padding-top: 17%;
	padding-bottom: 14%;
}

@media(min-width: 768px){
	.sft__section--4 .sft__section__container{
		padding-top: 10%;
		padding-bottom: 10%;
	}
}*/
@media(max-width: 768px){
   .sft__section--4{
    background: #F4F4F4;
  }
}
@media(min-width: 1300px){
	.sft__section--4 .sft__section__container{
		padding: 3% 0 5%;
		margin-top: 5%;
	}
}

.sft__section--4 .sft__section__cols{
	display: grid;
	row-gap: 5%;
}

@media(min-width: 768px){
	.sft__section--4 .sft__section__cols{
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
	}	
}

@media(min-width: 1300px){
	.sft__section--4 .sft__section__cols{
    grid-template-columns: 51% 38%;
    column-gap: 4%;
	}	
}

.sft__section--4 .sft__section__col:first-child{
	margin-left: -30px;
	margin-right: -30px;
	order: 2;
  transform: translateY(20px);
}

@media(min-width: 768px){
	.sft__section--4 .sft__section__col:first-child{
		margin-right: 0;
		order: 1;
	}
}

@media(min-width: 1300px){
	.sft__section--4 .sft__section__col:first-child{
		margin-left: 0;
		margin-top: -13%;
    margin-bottom: 0;
	}
}

.sft__section--4 .sft__section__col:last-child{
	order: 1;
}

@media(min-width: 768px){
	.sft__section--4 .sft__section__col:last-child{
		order: 2;
	}
}

@media(min-width: 1300px){
	.sft__section--4 .sft__section__col:last-child{
		padding-right: 7%;
	}
}

@media(min-width: 1600px){
	.sft__section--4 .sft__section__col:last-child{
		padding-right: 21%;
	}
}

@media(min-width: 1920px){
	.sft__section--4 .sft__section__col:last-child{
		padding-right: 25%;
	}
}

.sft__section--4 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 8%;
	font-size: 20px;
}

@media(min-width: 1920px){
	.sft__section--4 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
		font-size: 25px;
	}
}

.sft__section--4 .sft__section__content ul, .sft__section--2 .sft__section__content ul{
	list-style: none;
	padding-left: 0;
}

.sft__section--4 .sft__section__content li, .sft__section--2 .sft__section__content li{
	font-size: 16px;
	color: #415464;
	line-height: 1.3;
  padding-left: 8%;
  padding-top: 1%;
  padding-bottom: 1%;
	border-bottom: 1px solid #E8E8E8;
	background-image: url('https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/Ellipse%202.svg');
	background-repeat: no-repeat;
	background-position: left center;
	min-height: 30px;
}

@media(min-width: 768px){
  .sft__section--4 .sft__section__content li, .sft__section--2 .sft__section__content li{
    padding-left: 15%;    
  }  
}

@media(min-width: 1024px){
  .sft__section--4 .sft__section__content li, .sft__section--2 .sft__section__content li{
    padding-left: 8%;    
  }  
}

.sft__section--4 .sft__button{
	margin-top: 10%;
}

@media(min-width: 768px){
	.sft__section--4 .sft__button{
		text-align: left;
	}
}

@media(min-width: 768px){
	.sft__section--4 iframe{
		height: 100%;
	}
}


.sft__section--5 .sft__section__container{
	padding-top: 20%;
	padding-bottom: 20%;
}

@media(min-width: 768px){
	.sft__section--5 .sft__section__container{
		padding-top: 10%;
		padding-bottom: 10%;
	}
}

@media(min-width: 1300px){
	.sft__section--5 .sft__section__container{		
    margin-left: auto;
    margin-right: auto;
    width: 80%;
	}
}

@media(min-width: 1600px){
	.sft__section--5 .sft__section__container{		
		width: 75%;
    padding-top: 6%;
		padding-bottom: 6%;
	}
}

@media(min-width: 1920px){
	.sft__section--5 .sft__section__container{		
		width: 70%;
    padding-top: 5%;
		padding-bottom: 5%;
	}
}

.sft__section--5 .sft__section__heading :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 8%;
	font-size: 17px;
	text-align: center;
}

@media(min-width: 768px){
	.sft__section--5 .sft__section__heading :is(h1,h2,h3,h4,h5,h6){
		font-size: 20px;
	}
}

@media(min-width: 1300px){
	.sft__section--5 .sft__section__heading :is(h1,h2,h3,h4,h5,h6){
		font-size: 25px;
	}
}

.sft__section--5 .sft__section__heading strong{
	display: block;
}

.sft__section--5 .sft__section__carousel .slick-arrow{
	font-size: 16px;
	padding: 14px;
	background: #7E8045;
	color: #fff;
}

.slick-initialized .slick-slide{
	display: inline-flex !important;
  flex-wrap: wrap;
	min-height: 100px;
	justify-content: center;
	align-items: center;
}



.sft__section--6{
  position: relative;
}

.sft__section--6:before{
  content: '';
  display: block;
  width: 100%;
  height: 40px;
  background: #F4F4F4;
  position: absolute;
  left: 0;
  top: 11%;
}
  
@media(min-width: 768px){
  .sft__section--6:before{
    height: 60px;
    top: 0;
  }  
}

@media(min-width: 1300px){
  .sft__section--6:before{
    height: 90px;
  }
}

@media(min-width: 1600px){
  .sft__section--6:before{
    height: 110px;
  }
}

.sft__section--6 .sft__section__container{
  padding-top: 0;
  padding-bottom: 25%;
}
  
@media(min-width: 768px){  
  .sft__section--6 .sft__section__container{
    padding-top: 2%;
    padding-bottom: 15%;
  }
}
  
@media(min-width: 1024px){  
  .sft__section--6 .sft__section__container{
    padding-bottom: 10%;
  }
}

@media(min-width: 1300px){  
  .sft__section--6 .sft__section__container{
    margin: 0 auto;
    width: 80%;
    padding-bottom: 7%;
  }
}

@media(min-width: 1600px){  
  .sft__section--6 .sft__section__container{
    width: 75%;
  }
}

@media(min-width: 1920px){  
  .sft__section--6 .sft__section__container{
    width: 70%;
  }
}

.sft__section--6 .sft__section__cols{
  display: grid;
  row-gap: 71px;
}

@media(min-width: 768px){
  .sft__section--6 .sft__section__cols{
    grid-template-columns: 45% 50%;
    column-gap: 5%;
  }
  .sft__section--6 .sft__col:first-child{
    align-self: center;
  }
}

.sft__section--6 .sft__col:last-child{
  position: relative;
}

.sft__section--6 .sft__section__logo{
  text-align: center;
}

.sft__section--6 .sft__form{
	margin-left: -30px;
	margin-right: -30px;
}

@media(min-width: 768px){  
  .sft__section--6 .sft__form{
    margin-left: 0;
    margin-right: 0;
  }
}


.sft__section--7{
	background-image: url('https://wvw.casasroble.com/hubfs/lp-san-francisco-tower/section-7-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sft__section--7 .sft__section__container{
	padding-top: 15%;
	padding-bottom: 15%;  
  position: relative;
}

.sft__section--7 .sft__section__container:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 253, 253, 0.6);
  backdrop-filter: blur(7px);
  position: absolute;
  left: 0;
  top: 0;
}

@media(min-width: 768px){
  .sft__section--7 .sft__section__container{
    padding-top: 9%;
    padding-bottom: 9%;
  }
  .sft__section--7 .sft__section__container:before{
    width: 70%;
  }
}

@media(min-width: 1024px){
  .sft__section--7 .sft__section__container{
    padding-top: 0;
    padding-bottom: 0;
  }
  .sft__section--7 .sft__section__container:before{
    width: 60%;
    left: 7%;
  }
}

@media(min-width: 1300px){  
  .sft__section--7 .sft__section__container:before{
    width: 42%;
    left: 7%;
  }
}

@media(min-width: 1600px){  
  .sft__section--7 .sft__section__container:before{
    width: 38%;
    left: 7.5%;
  }
}

@media(min-width: 1920px){  
  .sft__section--7 .sft__section__container:before{
    width: 31%;
    left: 11.4%;
  }
}

.sft__section--7 .sft__section__cols{
  position: relative;
  z-index: 9;
}

@media(min-width: 768px){  
  .sft__section--7 .sft__section__cols{
    display: flex;
    flex-wrap: wrap;
  }
  .sft__section--7 .sft__section__col:first-child{
    width: 70%;
    margin-right: 8%;
  }
  .sft__section--7 .sft__section__col:last-child{
    display: flex;
    width: 20%;
    flex-direction: column;
  }
}

@media(min-width: 1024px){
  .sft__section--7 .sft__section__cols {
    margin-left: 9%;
  }
  .sft__section--7 .sft__section__col:first-child{
    width: 60%;
    margin-right: 16%;
    padding-top: 9%;
    padding-bottom: 9%;
  }
  .sft__section--7 .sft__section__col:last-child{
    width: 45%;
    align-self: center;
    flex-direction: row;
  }
}

@media(min-width: 1300px){
  .sft__section--7 .sft__section__col:first-child{
    width: 38%;
    margin-right: 6%;
  }
  .sft__section--7 .sft__section__col:last-child{
    min-height: 426px;
    width: 54%;
  }
}

@media(min-width: 1600px){
  .sft__section--7 .sft__section__col:first-child{
    margin-right: 2%;
  }
  .sft__section--7 .sft__section__col:last-child{
    width: 55%;
    min-height: 576px;
  }
}

@media(min-width: 1920px){
  .sft__section--7 .sft__section__cols {
    margin-left: 14%;
  }

  .sft__section--7 .sft__section__col:first-child{
    width: 30%;
    margin-right: 3%;
  }
}

.sft__section--7 .sft__section__content{
  margin-top: 10%;
}

.sft__section--7 .sft__section__content :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 8%;
	font-size: 20px;
}

@media(min-width: 1600px){
  .sft__section--7 .sft__section__content :is(h1,h2,h3,h4,h5,h6){    
    font-size: 25px;
  }
  
  .sft__section--7 .sft__section__content :is(h1,h2,h3,h4,h5,h6) strong{    
    display: block;
  }
  
}

.sft__section--7 .sft__section__content p{
	font-size: 16px;
	line-height: 1.3;
	color: #686868;
}

.sft__section--7 .sft__project{
  margin-bottom: 10%;
}

.sft__section--7 .sft__project:last-child{
  margin-bottom: 0;
}

@media(min-width: 1300px){
  .sft__section--7 .sft__project{
    margin-bottom: 0;
  }

  .sft__section--7 .sft__project:nth-child(1){
    align-self: end;
  }
  .sft__section--7 .sft__project:nth-child(2){
    align-self: center;
  }  
}






.sft__section--8{
  padding-top: 3rem;
}
.sft__section--8 .sft__section__container{
  padding-top: 0;
  padding-bottom: 25%;
}
  
@media(max-width: 767px){ 
  .sft__section--8 .sft__section__content{
    padding-left: 0;
    padding-right: 0;
  }
}

@media(min-width: 768px){  
  .sft__section--8 .sft__section__container{
    padding-top: 2%;
    padding-bottom: 15%;
  }
}
  
@media(min-width: 1024px){  
  .sft__section--8 .sft__section__container{
    padding-bottom: 10%;
  }
}

@media(min-width: 1300px){  
  .sft__section--8 .sft__section__container{
    margin: 0 auto;
    width: 88%;
    padding-bottom: 7%;
  }
}

@media(min-width: 1600px){  
  .sft__section--8 .sft__section__container{
    width: 75%;
  }
}

@media(min-width: 1920px){  
  .sft__section--6 .sft__section__container{
    width: 70%;
  }
}

.sft__section--8 .sft__section__cols{
  display: grid;
  row-gap: 71px;
}

@media(min-width: 768px){
  .sft__section--8 .sft__section__cols{
    grid-template-columns: 20% 20% 20% 20%;
    column-gap: 7%;
  }
  .sft__section--8 .sft__col:first-child{
    align-self: center;
  }
}

.sft__section--8 .sft__col:last-child{
  position: relative;
}
.sft__section--8 .sft__section__logo{
  min-height: 94px;

}
.sft__section--8 .sft__section__heading :is(h1,h2,h3,h4,h5,h6){
	color: #686868;
	letter-spacing: 0.184em;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 8%;
	font-size: 24px;
  text-align: center;
}

@media(min-width: 1300px){
	.sft__section--8 .sft__section__heading :is(h1,h2,h3,h4,h5,h6){
		font-size: 26px;
	}
}



.sft__section--9{
	background-image: url('https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/bg-seccion9-movil.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media(min-width: 768px){
	.sft__section--9{
		background-image: url('https://5881356.fs1.hubspotusercontent-na1.net/hubfs/5881356/lp-san-francisco-tower/bg-seccion9.jpg');
		position: relative;
	}
}

@media(min-width: 1300px){  
  .sft__section--9 .sft__section__container{
    margin: 0 auto;
    width: 88%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

@media(min-width: 1600px){  
  .sft__section--9 .sft__section__container{
    width: 75%;
  }
}

@media(min-width: 1920px){  
  .sft__section--9 .sft__section__container{
    width: 70%;
  }
}

.sft__section--9 .sft__button{
  text-align: left; 
}

@media(max-width: 767px){
  .sft__section--9{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .sft__section--9 h2{
    font-size: 25px!important;
  }
  .sft__section--9 h2 br{
    display: none;
  }
}
.sft__section--9 h2{
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.214em;
  text-transform: uppercase;
  color: #627B38;
  margin-bottom: 2rem;
}

.sft__section--9 h2 strong{
  font-weight: 700;
}


.sft__section--32 .sft__section32__content h3{
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  /* or 80% */
  margin-bottom: 3rem;
  letter-spacing: 0.214em;
  
}

.sft__section--32 .sft__section32__content{
  font-size: 22px;
  line-height: 40px;
  color: #686868;
  /* or 133% */

  letter-spacing: 0.214em;
  text-transform: uppercase;
  padding: 40px 0px;
}

@media(max-width: 480px){
  .sft__section--32 .sft__section32__content h3{
    font-size: 26px;
    line-height: 26px;

  }

}

.sft__section--32 .sft__amenidades{
  position: relative;
}


.sft__section--32 .sft__amenidades ul.controls{
  justify-content: end;
  position: relative;
}

.sft__section--32 .sft__amenidades ul.controls li{
  width: auto;
}
@media screen and (max-width:768px) {
  .sft__section--32 .sft__amenidades ul.controls{
    justify-content: center;
  }
}
.galeriamenidades .tns-item{
  padding: 0.6rem;
}
.galeriamenidades .tns-item h3{
  color: #9A9A9A;
}
@media(min-width: 1300px){  
  .sft__section--32 .mirador__ctadetalles{
    margin-top: -3rem;
  }
  .sft__section--32 .sft__section__container{
    margin: 0 auto;
    width: 88%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

@media(min-width: 1600px){  
  .sft__section--32 .sft__section__container{
    width: 75%;
  }
}

@media(min-width: 1920px){  
  .sft__section--32 .sft__section__container{
    width: 70%;
  }
}