/*///////////////////////// GENERALES /////////////////////////*/
* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: white;
  line-height: 1.2;
  color: #191A1A;
}

img {
  width: 100%;
}

.wrapper {
  overflow: hidden;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.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;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}

.rotate {
  transform: scaleX(-1);
}

.green {
  color: #114745;
}

.brown {
  color: #7E4029;
}

.deep-green {
  color: #1D4644;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/

.btn {
  border-radius: 35px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: visible;
}

.btn-primary {
  border: 1px solid #2D5B59;
  color: white;
  background-color: #2D5B59;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: #387673;
  transition: all ease .25s;
  color: #fff;
  border: 1px solid #387673;
}

.btn-outline-primary {
  border: 1px solid #2D5B59;
  color: #2D5B59;
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
  background-color: #2D5B59;
  transition: all ease .25s;
  color: #fff;
  border: 1px solid #2D5B59;
}

.btn-secondary {
  border: 1px solid #83644B;
  color: white;
  background-color: #83644B;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
  background-color: #947358;
  transition: all ease .25s;
  color: #fff;
  border: 1px solid #83644B;
}

.btn-outline-secondary {
  border: 1px solid #83644B;
  color: #83644B;
  background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
  background-color: #83644B;
  transition: all ease .25s;
  color: #fff;
  border: 1px solid #83644B;
}

.btn-sm {
  font-size: .8rem !important;
}

.brown {
  color: #95785E;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

/*///////////////////////// HEADER /////////////////////////*/
*:focus {
  outline: none !important;
}

header {
  position: absolute;
  width: 100%;
}

.header-logo {
  max-width: 230px;
}

.navbar {
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3rem;
}

.bsnav-sticky.bsnav-sticky-slide {
  position: relative;
  background-color: black;
}

.nav-link {
  font-size: 18px;
  font-weight: 300;
  color: #fff !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  position: relative;
  padding: 10px 0px !important;
  text-transform: uppercase;
}

.navbar .nav-item a::after,
.navbar-light .navbar-nav .active>.nav-link::after {
  content: "";
  background-color: #fff;
  height: 2px;
  width: 35px;
  position: absolute;
  left: -15px;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  z-index: -5;
  margin-bottom: 5px;
  opacity: 0;
  transition: all .3s;
}

.navbar .nav-item a:hover::after,
.navbar .nav-item a:focus::after,
.navbar-light .navbar-nav .active>.nav-link::after {
  content: "";
  left: 0;
  opacity: 1;
}

.navbar .nav-item .nav-link.active-nav::after {
  content: "";
  background-color: #fff;
  height: 2px;
  width: 35px;
  position: absolute;
  left: -15px;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  z-index: -5;
  margin-bottom: 5px;
  opacity: 1;
  transition: all .3s;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}


.navbar-toggler {
  right: 20px;
}

/* Bs nav para el menú mobile */

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

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

.bsnav-mobile .navbar.bsnav-dark {
  background: #000000 !important;
  color: #fff !important;
  padding: 50% 0 15px;
  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);
}


/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  min-height: 100vh;
  /* background-image: url("../images/slide-01-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  display: flex;
  align-items: center;
  position: relative;
  /* margin-top: -107px; */
}

.main-section .container {
  position: relative;
  z-index: 2;
}

.main-section .carousel {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-inner {
  height: 100%;
}

.carousel .carousel-item,
.carousel .carousel-item.active {
  height: 100%;
}

.main-section .carousel .carousel-item>div,
.main-section .carousel .carousel-item.active>div {
  margin-top: 35vh;
}

.hero-images-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.main-section .carousel-item::after {
  content: "";
  width: 80%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.899922268907563) 20%, rgba(0, 0, 0, 0) 91%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 50%;
  bottom: 0;
  color: #fff;
  text-align: center;
  opacity: 1;
  width: 60px;
  height: 60px;
  font-size: 24px;
  background: none;
  outline: none;
  border: 0;
  transition: all .3s;
  z-index: 5;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  opacity: .9;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators li {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid white;
  opacity: 1;
  transition: all .6s ease;
  background: transparent;
}

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

.main-section h1 {
  font-size: 52px;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 2px solid white;
  width: fit-content;
}

.text-deco {
  background-color: #24A7B0;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 2px 10px;
}


/*///////////////////////// BANNER //////////////////////////*/
.banner {
  background: url(../images/bg-wood.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*///////////////////////// Mapa //////////////////////////*/

/*///////////////////////// Carousel //////////////////////////*/
.sustainability {
  height: 690px;
  display: flex;
  align-items: center;
  position: relative;
}

.sustainability .carousel {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.sustainability .carousel .carousel-item>div,
.sustainability .carousel .carousel-item.active>div {
  margin-top: 8rem;
}

.sustainability .carousel-item::after {
  content: "";
  width: 80%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.711922268907563) 0%, rgba(0, 0, 0, 0) 81%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

.air .carousel-item::after {
  content: "";
  width: 80%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3701855742296919) 0%, rgba(0, 0, 0, 0) 40%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

/*///////////////////////// Arquitectura //////////////////////////*/
.arq {
  background: url(../images/bg-arquitectura.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
  position: relative;
}

.arq .carousel {
  padding-bottom: 4rem;
}

.arq .carousel-indicators .active {
  background-color: #7E4029;
}

.arq .carousel-indicators li {
  border: 1px solid #7E4029;
}

.arq .carousel .carousel-indicators {
  bottom: 0;
}

.arq button,
.arq button:hover,
.arq button:focus {
  color: #7E4029;
}

.arq-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arq-icon-container {
  color: #3C3C3B;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  min-height: 210px;
}

.arq-icon-container p {
  padding: 0 1.6rem;
}

.arq-icon-container img {
  height: 78px;
  margin-bottom: 1.4rem;
}

.icons-detail {
  position: absolute;
  width: 46%;
  right: 50px;
  top: 10px;
}

/*///////////////////////// Unidades //////////////////////////*/
.left-overlay {
  width: 80%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.711922268907563) 0%, rgba(0, 0, 0, 0) 81%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.right-overlay {
  width: 80%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.721922268907563) 60%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.units {
  min-height: 750px;
  background: url(../images/bg-unidades.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  z-index: 5;
}

.units h3 {
  color: #191A1A;
  font-size: 40px;
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
}

.units h3::before {
  content: "";
  height: 115%;
  background-color: #ffffffb5;
  position: absolute;
  width: 1500px;
  z-index: -1;
  left: -10px;
  bottom: 0;
  top: 0;
  margin: auto;

}

.units p {
  font-size: 20px;
}

/*///////////////////////// CARACTERISTICAS //////////////////////////*/
.features {
  background: url(../images/bg-caracteristicas.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 900px;
  padding: 4rem 0;
  display: flex;
  align-items: flex-end;
}

.green-card {
  background-color: #11474491;
}

.brown-card {
  background-color: #7e40299d;
  z-index: 50;
}

.gray-card {
  background-color: #7e8970bb;
}

.blue-card {
  background-color: #26828575;
}

.card-feature {
  position: relative;
  min-height: 140px;
  height: 100%;
}

.no-opacity {
  opacity: 0;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}


.card-title img {
  height: 90px;
  width: 70px;
  margin-right: 15px;
}

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

.hide-content {
  position: absolute;
  left: 0;
  bottom: -100%;
  opacity: 0;
  transition: all .3s;
  color: white;
  text-align: center;
  width: 100%;
  z-index: 0;
}

.hidden-content {
  opacity: 1 !important;
  bottom: 0 !important;
}

.hide-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.hide-info {
  padding: 1rem;
  width: 100%;
}

.hide-info img {
  height: 120px;
  margin: 1rem auto;
}


/*///////////////////////// TIPOLOGIAS //////////////////////////*/

.f-carousel__slide {
  width: calc(100% / 2);
}

.f-carousel__dots {
  display: none;
  bottom: 0;
}

@media (max-width: 768px) {
  .f-carousel__slide {
    width: 100%;
  }
}

.f-button.is-prev {
  left: -35px !important
}

.f-button.is-next {
  right: -35px !important
}

.typology {
  background-color: #DBDBDB;
  padding: 4rem 0;
}

.typology-card {
  background-color: white;
  border-radius: 32px;
  padding: 2rem 1rem;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, .125);
  margin: 3rem 0.8rem;
}

.typology-card img {
  
  margin: 0 auto;
  display: block;
}

.h-divider {
  border: none;
  border-top: 2px dotted #191A1A;
  width: 100%;
  height: 2px;
  margin: .4rem 0;
}

.v-divider {
  border: none;
  border-left: 2px dotted #191A1A;
  height: 100px;
  width: 2px;
  margin: 0 1.4rem;
}

.tipology-info-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.typology-info {
  text-align: center;
  min-width: 100px;
}

.tipology-number {
  color: #83644B;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
}

.tipology-description {
  color: #191A1A;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}

/*///////////////////////// BANNER //////////////////////////*/
.sustainability-banner {
  background: url(../images/bg-banner-sustentabilidad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 490px;
  padding: 3rem 0;
  display: flex;
  align-items: center;
}

.sustainability-banner img {
  border-radius: 1rem;
}

.slide-text-container {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid white;
  padding-bottom: 1rem;
  width: 100%;
  justify-content: space-between;
}

.slide-text-list {
  text-transform: uppercase;
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.slide-text-list li {
  border-bottom: 1px solid white;
  margin-bottom: 0.4rem;
  padding-bottom: 0.2rem;
}

/*///////////////////////// FOOTER //////////////////////////*/

footer {
  background-color: #fff;
  color: #191A1A;
}

.footer-logo {
  max-width: 250px;
  margin-left: auto;
  margin-top: auto;
  display: flex;
}

footer a {
  color: #191A1A;
  transition: all .3s;
}

footer a:hover {
  color: #24A7B0;
}

.social-media {
  width: 20px;
  height: 20px;
  border: 1px solid #5E5E5E;
  border-radius: 50%;
  color: #5E5E5E;
  padding: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.social-media-container a:hover {
  text-decoration: none;
  color: #24A7B0 !important;
}

.social-media-container a i {
  transition: .3s;
}

.social-media-container a:hover i {
  color: #24A7B0 !important;
  transform: scale(1.2);
}

.social-media:hover {
  background: #fff;
  transform: scale(1.2);
}

/*//////////////////////////////////////////// CONTACTO ////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////*/

.main-section.contact-carousel .carousel-item::after {
  content: none;
}

.contact-form {
  font-size: 20px;
  color: #222222;
}

.form-control {
  border: 1px solid #95785E;
  border-radius: 12px;
  transition: .3s;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
  border: 1px solid #95785E;
  background-color: #fbf0e6;
  color: black;
}

.contact-form img {
  min-height: 480px;
  object-fit: cover;
  border: 2px solid #95785E;
}

/********** FORMULARIO ***************/
#response{
  background: #2ec770;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}
.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background:#ffffffad url(../images/loading.gif) center no-repeat;
}
.loading {
    display: none;
}
.invisible {
	display: none;
}
.relative{ position: relative;}
/*////////////////////// BTN WSP //////////////////*/
.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;
}

/*////////////////////// INTERNAS - DOMITILA //////////////////*/
.hero-domitila {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-domitila .carousel {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-domitila .carousel .carousel-item>div,
.hero-domitila .carousel .carousel-item.active>div {
  margin-top: 70vh;
}

.hero-domitila .carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 51%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.text-block {
  background-color: #E4E4E4;
  padding: 5rem 0;
}

.domitila-gallery {
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.domitila-gallery .carousel {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.live {
  background-color: #E4E4E4;
  display: flex;
  align-items: center;
}

.live img {
  width: 100%;
  height: 790px;
  object-fit: cover;
}

.live-text {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: auto;
}

.domitila-amenities {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.domitila-amenities .container {
  position: relative;
  z-index: 2;
}

.domitila-amenities .carousel {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.domitila-amenities .carousel .carousel-item>div,
.domitila-amenities .carousel .carousel-item.active>div {
  margin-top: 35vh;
}

.live-deco-img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}

.equipment {
  background-color: #C2C2C2;
  padding: 4rem 0;
  color: #606060;
}

.equipment ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
  padding-left: 0;
  font-size: 24px;
  font-weight: 400;
}

.equipment ul li {
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  position: relative;
}

.equipment ul li::after {
  content: url(../images/deco-list.png);
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
}

.logos img {
  width: 100%;
  max-width: 120px;
  padding: .4rem;
  margin: 0 auto;
  display: block;
}

/*////////////////////// INTERNAS - URBAN HOUSES //////////////////*/
.hero-urban {
  height: calc(95vh - 87px);
  margin-top: 85px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-urban-text {
  background: url("../images/bg-hero-urban.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-urban-deco {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.urban-text-block {
  background-color: #222222;
  padding: 6rem 0;
}

.urban-links-container {
  height: 500px;
  width: 100%;
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}

.urban-links-container:hover img {
  transform: scale(1.1);
}

.urban-links-container:hover .urban-links-overlay {
  background: #00000045;
}

.urban-actions {
  position: relative;
  z-index: 5;
  text-align: center;
}

.urban-links-container img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: .3s;
  object-fit: cover;
}

.urban-links-overlay {
  background: #00000060;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: .3s;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1200px) {}

@media (max-width: 1024px) {
  .contact-form img {
    min-height: auto;
  }

  .icons-detail {
    display: none;
  }

  .hero-urban {
    height: calc(80vh - 87px);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .card-title img {
    width: 55px;
  }

  .main-section .carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.899922268907563) 5%, rgba(0, 0, 0, 0) 91%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .3s;
  }

  .live img {
    width: 100%;
    height: 590px;
    object-fit: cover;
  }

  .equipment ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    font-size: 21px;
    text-align: center;
  }

  .equipment ul li::after {
    margin: 0 auto;
    right: 0;
  }

  .hero-urban {
    height: calc(65vh - 68px);
    margin-top: 65px;
  }

  .urban-links-container {
    height: 400px;
}
}

@media (max-width: 525px) {

  .navbar-brand,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-brand {
    width: 75%;
  }

  .main-section .carousel-control-prev,
  .main-section .carousel-control-next {
    display: none;
  }

  .main-section h1 {
    font-size: 36px;
  }

  .f-carousel__dots {
    display: flex;
  }

  .f-carousel__nav {
    display: none;
  }

  .card-title {
    font-size: 16px;
  }

  .card-title img {
    width: 40px;
  }

  .hide-info img {
    height: 90px;
  }

  .hide-info p.h3 {
    font-size: 18px;
  }

  .main-section.contact-carousel,
  .main-section.contact-carousel .carousel {
    height: 600px;
    min-height: 600px;
  }

  .slide-text-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .sustainability .carousel .carousel-item>div,
  .sustainability .carousel .carousel-item.active>div {
    margin-top: 4rem;
  }

  .sustainability .carousel-control-prev,
  .sustainability .carousel-control-next {
    display: none;
  }

  .arq-icon-container {
    font-size: 15px;
    min-height: 210px;
  }

  .arq-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .arq-title .h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .arq-title .h1 {
    font-size: 3.4rem;
  }

  .arq-icon-container p {
    padding: 0;
  }

  .domitila-amenities .carousel-control-prev,
  .domitila-amenities .carousel-control-next {
    display: none;
  }

  .hero-urban {
    height: auto;
  }
}

@media (max-width: 375px) {}

@media (max-width: 320px) {}