* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  font-size: 62.5%;
} 

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  -webkit-box-shadow: 2px 2px 3px #999;
          box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

.my-float {
  margin-top: 16px;
}

.header__content {
  width: 100%;
  background-color: white;
}
.header__content .header__up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  height: 25rem;
  margin: 0 auto;
  border-bottom: 0.1rem solid black;
}
.header__content .header__up .header__up--logo {
  width: 50%;
}
.header__content .header__up .header__up--logo img {
  display: block;
  width: 15rem;
  margin: 0 auto;
}
.header__content .header__up .header__up--slogan {
  width: 0;
  height: 0;
  text-align: center;
}
.header__content .header__up .header__up--slogan p {
  font-family: "Montserrat";
  font-size: 0rem;
}
.header__content .header__up .header__up--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  font-family: "Montserrat";
}
.header__content .header__up .header__up--buttons .buttons__contacto a {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 7rem;
  text-decoration: none;
  padding: 1rem;
  background-color: rgb(179, 138, 76);
  color: white;
  font-weight: 400;
  font-size: 1rem;
}
.header__content .header__up .header__up--buttons .buttons__contacto a:hover {
  background-color: rgb(234, 171, 76);
}
.header__content .header__up .header__up--buttons .buttons__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 2rem;
}
.header__content .header__up .header__up--buttons .buttons__login a {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 7rem;
  text-decoration: none;
  padding: 1rem;
  color: black;
  border: 0.2rem solid black;
  font-weight: 400;
}
.header__content .header__up .header__up--buttons .buttons__login a:hover {
  background-color: black;
  color: white;
}
.header__content .header__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  border-bottom: 0.6rem solid gray;
}
.header__content .header__down nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 90%;
  /* height: 5rem; */
  margin: 0 auto;
}
.header__content .header__down nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10%;
  width: 25%;
  height: 4rem;
  margin-top: 1rem;
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__content .header__down nav .menu .i {
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url("../../../../Assets/menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.header__content .header__down nav .menu:hover {
  background-color: rgb(179, 138, 76);
  border-radius: 2rem;
}
.header__content .header__down nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 7.5%;
  width: 80%;
  height: 40rem;
  margin: 0 auto;
  background-color: rgb(238, 232, 216);
  margin-top: 5rem;
  border-radius: 5rem;
  z-index: -300;
}
.header__content .header__down nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  height: 100%;
  list-style: none;
  text-align: center;
}
.header__content .header__down nav ul li a {
  text-decoration: none;
  font-family: "Montserrat";
  font-size: 1.3rem;
  color: black;
}
.header__content .header__down nav ul li:hover {
  background-color: rgb(225, 195, 113);
  border-radius: 5rem 5rem 5rem 5rem;
}
.header__content .header__down nav ul .nav__left:hover {
  background-color: rgb(225, 195, 113);
  border-radius: 0rem 0 5rem 5rem;
}
.header__content .header__down nav ul .nav__right:hover {
  background-color: rgb(225, 195, 113);
  border-radius: 5rem 5rem 0rem 0rem;
}

.menu__move {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: rgb(255, 0, 0);
  padding-right: 2rem;
}

.main__menu:hover {
  background-color: rgba(255, 0, 0, 0.275);
}

main {
  width: 100%;
  min-width: 36rem;
  padding-bottom: 5rem;
  padding-top: 5rem;
  background-color: white;
  background-image: url("../../../../Assets/bienesraices__fondo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
main .main__presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 40vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: "Montserrat";
  background-image: url("../../../../Assets/fondo__mobile.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
main .main__presentation h1 {
  font-size: 3rem;
  font-weight: 400;
  color: rgb(90, 69, 38);
  background-color: rgba(255, 255, 255, 0.61);
  border-radius: 0.6rem;
}
main .main__presentation p {
  font-size: 2.5rem;
  color: rgb(193, 137, 52);
  background-color: rgba(255, 255, 255, 0.61);
  border-radius: 0.6rem;
}
main .bienvenida {
  width: 80%;
  margin: 0 auto;
  font-family: "Montserrat";
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  text-align: center;
  -webkit-text-decoration: underline 0.4rem;
          text-decoration: underline 0.4rem;
}
main .main__cityCards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
  max-width: 100rem;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0 auto;
  margin-top: 5rem;
}
main .main__cityCards .cityCard {
  width: 28rem;
  height: 35.2rem;
  margin-bottom: 8em;
  text-align: center;
  font-family: "Montserrat";
}
main .main__cityCards .cityCard .cityImg img {
  width: 28rem;
  height: 35.2rem;
}
main .main__cityCards .cityCard .cityInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  height: auto;
  padding: 3rem;
  position: relative;
  bottom: 30%;
  margin: 0 auto;
  background-color: white;
  border: 0.2rem solid black;
  -webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
main .main__cityCards .cityCard .cityInfo p {
  font-size: 2rem;
  font-weight: 700;
}
main .main__cityCards .cityCard .cityInfo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  height: 4rem;
  margin: 0 auto;
  margin-top: 1rem;
  background-color: white;
  font-size: 2.5rem;
  font-weight: 100;
  text-decoration: none;
  color: black;
  border: 0.2rem solid black;
}
main .main__cityCards .cityCard .cityInfo a:hover {
  background-color: rgb(234, 171, 76);
  color: white;
  font-weight: 400;
}
main .main__cityCards .cityCard .cityInfo:hover {
  -webkit-transition: all 200ms cubic-bezier(0.175, 0.885, 1.32, 2.275);
  transition: all 200ms cubic-bezier(0.175, 0.885, 1.32, 2.275);
  bottom: 35%;
  background-color: black;
}
main .main__cityCards .cityCard .cityInfo:hover p {
  color: white;
}
main .main__cityCards .cityCard .cityInfo:hover a {
  border: white;
}
main .main__oficinas {
  width: 60%;
  margin: 0 auto;
}
main .main__oficinas section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .main__oficinas section ul .main__oficinas--li {
  list-style: none;
  width: 50%;
  max-width: 50rem;
  min-width: 33rem;
  text-align: center;
  margin-top: 5rem;
}
main .main__oficinas section ul .main__oficinas--li .oficina__title {
  font-family: "Montserrat";
  color: red;
  font-size: 2rem;
  text-align: center;
}
main .main__oficinas section ul .main__oficinas--li .oficina__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat";
}
main .main__oficinas section ul .main__oficinas--li .oficina__content .mail {
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../../../../Assets/mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1rem;
}
main .main__oficinas section ul .main__oficinas--li .oficina__content .whatsapp {
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../../../../Assets/whatsapp.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1rem;
}
main .main__oficinas section ul .main__oficinas--li .oficina__content .telephone {
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../../../../Assets/telephone.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1rem;
}
main .main__oficinas section ul .main__oficinas--li .oficina__content p {
  margin-left: 1rem;
  font-size: 1.5rem;
}

footer {
  width: 100%;
  height: 50vh;
  background-color: rgb(238, 232, 216);
}
footer section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
footer section p {
  font-family: "Montserrat";
  font-size: 2.5rem;
  color: black;
  margin-bottom: 4rem;
}
footer section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 60%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer section ul li {
  list-style: none;
}
footer section ul img {
  width: 4rem;
}
footer section .button__suport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  font-family: "Montserrat";
  font-size: 2rem;
}
footer section .button__suport a {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 15rem;
  text-decoration: none;
  padding: 1rem;
  color: black;
  border: 0.2rem solid black;
  font-weight: 400;
}