

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Serif', serif;
    font-size: medium;
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* COLORS */
.bg_principal{
    background-color: #19243c;
}

.bg_secundario{
    background-color: #cfab77;
}

.bg_terciario{
  background-color: #081017;
}

.bg_blanco {
    background-color: #ffffff
}

.bg_negro {
    background-color: #000000
}

.color_principal {
    color: #19243c;
}

.color_secundario {
    color: #cfab77;
}

.color_terciario{
  color: #081017;
}

.color_blanco {
    color: #ffffff;
}

.color_negro {
    color: #000000;
}

/* UTILS */
.hide{
  display: none !important;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* NAVBAR */
.navbar {
  background-color: #19243c;
  color: #cfab77;
  padding: 30px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar-toggle {
  position: absolute;
  display: none;
 
}

.navbar ul {
  display: flex;
  justify-content: flex-start;
}

.navbar li {
  margin-left: 10px;
  font-size: 20px;
}

.navbar a {
  text-decoration: none;
  color: #cfab77;
}

.navbar-menu li.active a {
  background-color: #ffffff;
}


.navbar-menu li a {
  text-decoration: none;
  color: #ffffff;
}


/* IMAGEN SUPERIOR BACKGROUND */
.top {
    height: 70vh;
    background-image: url("./ASSETS/fondoportada.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.top .container {
    height: 70vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.anuncio {
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0 2vw;
}

.anuncio div {
    height: 5vh;
    margin-left: 2vw;
    padding: 0 2vw;
    display: flex;
    align-items: center;
}

/* FORM */


/* LISTADO */
.listadoInmuebles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


/* BANNERS */
.vendeTuCasa {
    height: 40vh;
    background-image: url("./ASSETS/conocenos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.vendeTuCasa .container {
    height: 40vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nuevosProyectos {
    margin-top: 5vh;
    height: 40vh;
    background-image: url("./ASSETS/nuevosProyectos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.nuevosProyectos .container {
    height: 40vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.anuncio_banner {
  height: 10vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 2vw;
}

.anuncio_banner div {
  height: 5vh;
  margin-left: 2vw;
  padding: 0 2vw;
  display: flex;
  align-items: center;
}


/* FOOTER */
.footer{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 3vh;
  padding: 2vh 0;
}

.footer li,
.footer a {
  color: #ffffff;
  line-height: 2;
}

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

.subfooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1vh 10vw;
}


@media (max-width: 768px) {
  
  /* .navbar ul {
    display: none !important;
  } */

  .navbar-toggle {
    display: flex;
    right: 0;
    width: 62px;
    height: 52px;
    margin-right: 30px;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
  }
  .navbar-toggle span {
    color: #19243c;
    font-size: 50px;
  }

  .opciones_menu_mobile{
    position: absolute;
    top: 88px;
    right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #cfab77;
    padding: 10px;
    border-radius: 2px;
  }
  
  .navbar li {
    border-bottom: #19243c 1px solid;
    width: 100%;
  }

  .navbar a {
    color: #19243c;
    line-height: 2;
  }

  .switch-mode{
    border: none !important;
    margin: 10px 0;
    cursor: pointer;
  }

  .material-symbols-outlined{
    color: #19243c !important;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
  }
  
  .footer_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5vh 0;
  }

  .footer_logo{
    padding: 5vh 0 10vh 0;
    
  }
}