@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root{
    --main-c:#0DA2F5;
    --green-c:#4a9d55;
    --grey-c:#576171;
}
html, body{
    margin: 0;
    padding: 0;
    color: #222;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    line-height: 1.4;
}
/* Elements */
h1{
  font-size: 2.6rem;
}
h2{
  font-size: 2.2rem;
}
h3{
  font-size: 1.6rem;
}
h4{
  font-size: 1.4rem;
}
h5{
  font-size: 1.2rem;
}
a{
    text-decoration: none;
    color:var(--main-c);
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
ul{
  padding: 0;
  list-style: none;
}
.main-c{
  color:var(--main-c);
}
.green-c{
  color:var(--green-c);
}
.grey-c{
  --grey-c:#576171;
}
.bold{
  font-weight: bold;
}

.center{
  text-align: center;
}
.main-cta{
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 200px;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, rgba(122,204,249,1) 8%, rgba(13,162,245,1) 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  box-shadow: 0 12px 12px rgba(0,0,0,.12);
  letter-spacing: 1px;
  cursor:pointer;
}
.section{
  padding: 5rem 0;
}
.br12{
  border-radius: 12px;
}
.br24{
  border-radius: 24px;
}

@media (max-width:768px){
  .section{
    padding: 2.5rem 0;
  }
}
/* Covid Section Top*/
.covid-section{
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    padding: .75rem;
}
.covid-section p{
    margin: 0;
    font-size: 0.9rem;
}

/* header */
.header {
    background-color: #fff;
    position: relative;
    width: 100%;
    z-index: 999;
  }
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }
  .header ul li, .header ul span{
    display: flex;
    justify-content: center;
    border-radius: 6px;
    margin: 0.5rem .5rem;
  }
  .header li a {
    display: block;
    /* padding: 20px 20px; */
    text-decoration: none;
    color: #202020;
  }
  .header li a:hover{
    color:var(--main-c);
  }
  .header ul .menu_link-featured{
    border-radius: 6px;
  }
  .header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 0.3rem 0.3rem 0.2rem 2rem;
    text-decoration: none;
  }
  .logo img{
    height: 60px;
  }

  /* Header transparent */
  .header.transparent{
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;    
  }
  .header.transparent a.logo span{
/*     background-color: transparent;
    width: auto;
    z-index: 999; */
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
  }
  .header.transparent .menu{
    background-color: transparent;   
  }

  .header.transparent li a, .header.transparent li span{
    color:#fff;
  }
  .header.transparent .sub_menu-li a{
    color:#222;
  }
  .header.transparent .menu-icon .nav-icon:before, .header.transparent .menu-icon .nav-icon:after{
    background: #fff;
    content: '';
    display: block;
    height: 2.4px;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  .header.transparent .menu-icon .nav-icon{
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }

  .header.transparent .menu_link-featured{
    border:1px solid #fff;
  }
  .header.transparent .menu_link-featured:hover{
    background-color:transparent;
  }

  @media (max-width:860px){
    .header.transparent{
      background-color: #0000007d;   
    }
    .header.transparent .menu_link-featured{
      border:none;
    }
    .header.transparent .menu ul.sub_menu-ul{
      /* background-color: #000000ba; */
      width: 100%;
      right: 0;
      /* border: #000000ba; */
    }
    .header ul li, .header ul span{
      /* justify-content: center; */
    }
  }

  /* Menu */
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  .header .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  .header .menu-icon .nav-icon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  .header .menu-icon .nav-icon:before,
  .header .menu-icon .nav-icon:after {
    background: #333;
    content: '';
    display: block;
    height: 2.4px;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  .header .menu-icon .nav-icon:before {
    top: 5px;
  }
  .header .menu-icon .nav-icon:after {
    top: -5px;
  }
  /* menu btn */
  .header .menu-btn {
    display: none;
  }
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  .header .menu-btn:checked ~ .menu-icon .nav-icon {
    background: transparent;
  }
  .header .menu-btn:checked ~ .menu-icon .nav-icon:before {
    transform: rotate(-45deg);
    top:0;
  }
  .header .menu-btn:checked ~ .menu-icon .nav-icon:after {
    transform: rotate(45deg);
    top:0;
  }
  
  /* 48em = 768px @ 16pt font */ 
  @media (min-width: 860px) {
    .header li {
      float: left;
    }
    .header .menu_link-featured{
      border: 1.5px solid var(--main-c);
    }
    .header .menu_link-featured:hover{
      background:var(--main-c);
    }
    .header .menu_link-featured{
      color:var(--main-c);
    }
    .header .menu_link-featured:hover{
      color:#fff;
    }
    .header li a, .header span {
      /* margin: 20px 30px; */
      font-size: 1.1rem;
      padding: .5rem .5rem;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
      padding-right: 2rem;
      align-items: center;
      display: flex;
    }
    .header .menu-icon {
      display: none;
    }
  }

/*Sub Menú */
.sub_menu-ul{
  display: none;
}
.menu li:hover .sub_menu-ul, .menu li:active .sub_menu-ul, .menu li:focus .sub_menu-ul{
  display: flex;
  flex-flow: column;
  position: absolute;
  background-color: #fff;
  border:1px solid #f2f2f2;
  border-radius: 6px;
  margin-top: 45px;
  margin-left: -150px;
/*   left: 0;
  width: 100%; */
}
.menu li:hover .sub_menu-ul ul{
  display: block;
}
.header ul .sub_menu-li{
  display: flex;
  /* justify-content: start; */
}

main{
  position: relative;
  /* margin-top: 5rem; */
}
/* Hero Section*/
.front_hero-section{
  display: flex;
  justify-content: center;
  padding-top:2rem;
  width: 100%;

}
.front_hero-section .text-wrap{
  flex-basis: 40%;
  margin: 1rem;
  margin-left: 8rem;
  display: flex;
  flex-flow: column;
}
.front_hero-section .text-wrap h1{
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0rem;
}
.front_hero-section .text-wrap p{
  font-size: 1.5rem;
  color: #76808F;
  font-weight: 400;
}
.text-wrap .ul_hero{
  color:#1C1C1C;
  font-size: 1.2rem;
  line-height: 2;
  list-style: none;
  padding: 0.2rem;
}
li.li_hero{
  display: flex;
  align-items: center;
  margin:1rem 0;
}
.text-wrap .li_hero:before{
  content: "";
  background: url(img/check.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 1rem;
}
.img-wrap .intro{
  position: relative;
}
.slideshow-img{
  position: absolute;
  object-fit: cover;
  display: none;
  transition: opacity 1s ease-in-out;
}
/* .slideshow-img:first-child{
  display: block;
} */
.front_hero-section .img-wrap{
  display: flex;
  flex-flow: column;
  flex-basis: 50%;
  margin: 1rem;
  height: 500px;
}
.front_hero-section .img-wrap img{
  width:100%;
  max-width: 800px;
  height: 500px;
  border-radius: 12px;
  position: relative;
}
.front_hero-section .img-wrap span{
  display: flex;
  justify-content: flex-end;
  color:#76808F; 
}

@media (max-width:768px){
  .header .logo{
    padding: 0.3rem 0.3rem 0.2rem 1rem;
  }
  .front_hero-section{
    flex-flow: column;
    padding-top:1rem;
  }
  .front_hero-section .text-wrap h1{
    font-size: 2.5rem;
  }
  .front_hero-section .text-wrap{
    margin: 0;
    padding: 1rem;
  }
  .front_hero-section .img-wrap img{
    width:100%;
    height: 300px;
  }
  .menu li:hover .sub_menu-ul, .menu li:active .sub_menu-ul, .menu li:focus .sub_menu-ul{
    margin-left: 0;
    left: 0;
    width: 100%;
  }
  .header.transparent .menu li:hover .sub_menu-ul, .header.transparent .menu li:active .sub_menu-ul, .header.transparent .menu li:focus .sub_menu-ul{
    /* background-color: #222; */
    width: 100%;
    right: 0;
  }
}

/* Featured Logos Section */
.wrap_feat-logos{
  max-width: 1280px;
  margin: 2.5rem auto;
}
.wrap_logos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.head-logos span{
  font-size: 1.2rem;
  color: #76808F;
  background: #fff;
  padding-right: 30px;
  position: relative;
  z-index: 1;
}
.head-logos{
  position: relative;
  color: #76808f;
  margin: 30px;
  /* width: 100%; */
}
.head-logos:before{
  content: "";
  background: #f6f7f8;
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  position: absolute;
}
.wrap_logos img{
  height: 40px;
  padding: 1rem;
  padding-right: 2rem;
  filter: grayscale(0.9);
}
@media (max-width:768px){
  .wrap_feat-logos{
    padding: .5rem;
  }
  .wrap_logos img{
    padding: .75rem 0;
    max-width: 100%;
  }
}
/* casas Grid Home Section */
.grid-casas-home{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));;
  place-items: center;
  column-gap: 1rem;
  row-gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}
.grid-casas-home .grid_casa-element-grid{
  border-radius: 15px;
  border: 2px solid #f2f2f2;
  background-color: #fff;
}

.grid-casas-home .grid_casa-element-grid img{
  width: 400px;
  height: 225px;
  border-radius: 12px 12px 0 0;
}
.price-box-casa-element h4{
  margin: 1rem 0;
  color:#576171
}
.price-box-casa-element p{
  text-align: center;
}

@media (max-width:928px){
  .grid-casas-home{
    grid-template-columns: repeat(1,1fr);
    padding: 1rem;
  }
  .grid-casas-home .grid_casa-element-grid img{
    max-width: 500px;
  }
}
@media (max-width:480px){
  .grid-casas-home .grid_casa-element-grid img{
    width: 100%;
  }
}

/* Servicios Grid Section */
.servicios-section, .section-casas{
  background: #43c2f90f;
}
.wrap_servicios-section{
  max-width: 1280px;
  margin: 4rem auto;
  padding: 1rem;
}
.wrap_servicios-section .heading{
  margin-bottom: 3rem;
}
.grid-servicios{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 6rem;
  row-gap: 4rem;
}
.img_element-grid img{
  height: 50px;
}
.text_grid-element p{
  font-size: 1.2rem;
  color: #576171;
}

@media (max-width:768px){
  .wrap_servicios-section{
    margin:1rem auto;
  }
  .grid-servicios{
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 576px){
  .grid-servicios{
    grid-template-columns: repeat(1,1fr);
    row-gap: 2rem;
  }
}
/* Double Section: Simple */
.wrap_doble-section{
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
}
.title-wrap-section{
  max-width: 1000px;
  margin: 0 auto;  
}
.title-wrap-section h2{
  max-width: 600px;
  margin: 0;
}
.text-wrap_section, .img-wrap_section{
  padding: 0 2rem;
  font-size: 1.1rem;
}
.text-wrap_section{
  display: flex;
  justify-content: center;
  flex-flow: column;
  flex-basis: 50%;
}
.text-wrap_section h2{
  margin: 0;
}
.text-wrap_section .text-li h3{
  margin: 0;
}
/* .text-wrap_section h2{
  margin-bottom: 2rem;
} */
.text-wrap_section ul{
  max-width: 450px;
  list-style-type: none;
}
.text-wrap_section li{
  display: flex;
}
.text-wrap_section .num-div span{
  font-size: 4rem;
  color: var(--main-c);
  font-weight: bold;
  margin-right: 2rem;
}
.img-wrap_section{
  display: flex;
  align-items: center;
  flex-basis: 50%;
  justify-content: center;
}
.img-wrap_section1{
  position: relative;
}
.img-wrap_section1:before{
  content: '';
  display: block;
  background: rgb(145 205 239 / 20%);
  width: 400px;
  height: 536px;
  position: absolute;
  z-index: -999;
  border-radius: 12px;
  top: 25px;
  right: 25px;
}
.img-wrap_section3:before{
  content: '';
  display: block;
  background: rgb(145 205 239 / 20%);
  width: 404px;
  height: 604px;
  position: absolute;
  z-index: -999;
  border-radius: 12px;
  top: 19px;
  right: 24px;
}

.img-wrap_section img{
  z-index: 99;
  max-width: 500px;
}
@media (min-width:768px){
  .text-wrap_section p{
    line-height: 1.6;
  }
}
@media (max-width:768px){
  .doble-section{
    display: flex;
    flex-flow: column;
    padding: 1rem;
  }
  .wrap_doble-section{
    flex-flow: column;
  }
  .text-wrap_section, .img-wrap_section{
    padding: 0rem;
  }
  .title-wrap-section{
    order:0;
  }
  .img-wrap_section{
    order:1;
    padding: 0;
  }
  .text-wrap_section{
    order:2;
  }
  .img-wrap_section img{
    width: 100%;
    margin-bottom:1rem;
  }
  .img-wrap_section1:before, .img-wrap_section3:before{
    top: 0;
    right: 0;
    display: none;
  }
}
/* Review Section */

.wrap-section{
  max-width: 1280px;
  margin:5rem auto;
}
.review-section{
  background: #43c2f90f;
  padding: 1rem;
}
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  row-gap: 2rem;
  column-gap: 2rem;
}
.review-grid-box{
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  height: auto;
}
.img-perfil-google{
  height: 55px;
  margin-right: .5rem;
}
.head-review-grid-box img{

}
.head-review-grid-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-review-grid-box span{
  font-weight: bold;
}
.footer-review-grid-box{
  display: flex;
  align-items: center;
}
.footer-review-grid-box img{
  height: 30px;
  margin-right: .5rem;
}
.footer-review-grid-box p{
  color:#76808F;
}
@media (max-width:928px){
  .reviews-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:768px){
  .reviews-grid{
    grid-template-columns: repeat(1,1fr);
    row-gap: 4rem;
  }
  .review-grid-box{
    height: 100%;
  }
}

/* casas eficientes */
.img-wrap_section2{
  position: relative;
}
.img-wrap_section2:before{
  content: '';
  display: block;
  background: rgb(145 205 239 / 20%);
  width: 500px;
  height: 550px;
  position: absolute;
  z-index: -999;
  border-radius: 12px;
  top: 19px;
  right: -21px;
}

/* Footer */
footer{
  /* background-color: #F6F7F8; */
  background-color: #fff;
  color:#576171;
  border-top: 1px solid #f2f2f2;
}
.wrap-footer{
  display: grid;
  grid-template-columns: 30% 20% 20% 20%;
  column-gap: 2rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1280px;
}
.text-element-footer:first-child img{
  max-height: 75px;
}
.text-element-footer li{
  line-height: 2;
}
.link-elements-footer li a{
  color:#576171;
}
.link-elements-footer li a:hover{
  color:var(--main-c);
}
.rrss-element-footer ul{
  display: flex;
  flex-wrap: wrap;
}
.rrss-element-footer ul li{
  padding: .2rem;
}
.rrss-element-footer ul:last-child {
  list-style: none;
  padding: 0;
  display: flex;
}
.rrss-element-footer li{
  margin-right: 1rem;  
}
.rrss-element-footer img{
  width: 40px;
}
.footer-creds{
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  color:#576171;
  font-size: 0.9rem;
  max-width: 1280px;
  margin: 0 auto;
}
.legal-creds ul{
  display: flex;
}
.legal-creds ul li{
  padding-right: 1rem;
}
.legal-creds ul li a{
  color:#576171;
  font-size: 0.9rem;
}
@media (max-width:768px){
  .wrap-footer{
    grid-template-columns:repeat(2,1fr);

  }
  .img-wrap_section2:before{
    display: none;
  }
}
@media (max-width:576px){
   .footer-creds{
	 flex-flow: column;
	}
	.footer-creds .copy-creds{
	 order: 2;
	}
  .rrss-element-footer ul:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1rem;    
  }
}
@media (max-width:480px){
  .wrap-footer{
    grid-template-columns: repeat(1,1fr);
  }
}
/* Página de Contacto */
.header_section{
  padding: 2rem;
  padding-top: 8rem;
  opacity: .8;
}
section.header_section.header-contacto{
  background: linear-gradient(to right, rgb(0 0 0 / .75), rgb(0 0 0 / .75)),url(img/contact/portada-contacto02.jpg)no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
.doble-section_contact{
  background: #43c2f90f;
}
.wrap-header_section{
  max-width: 800px;
  /* margin: 0 auto; */
  background: #fff;
  padding: 1rem;
  padding-left: 2rem;
  border-radius: 12px;
  margin-left: 5rem;
  opacity: 0.95;
}
.wrap-header_section p{
  font-size: 1.2rem;
}
.wrap_contact{
  padding-right:5rem;
}
.item-form input[type="text"]{
  height: 2rem;
}
textarea#form-message{
  min-height: 300px;
}
.item-form input[type="text"], textarea#form-message{
  width: 100%;
  padding: .4rem;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  margin-bottom: 1rem;
}
input.main-cta{
  border:none;
}
input.checkbox{
  width: 16px;
  height: 16px;
  margin-right: .5rem;
}
.checkbox_form{
  display: flex;
  align-items: center;
}
.wrap_contact-form{
  padding-right: 5rem;
  display: flex;
  flex-flow: column;
  flex-basis: 50%;
}
.text_wrap-contact{
  display: flex;
  flex-flow: column;
  flex-basis: 50%;
}
.contact-datos{
  display: flex;
  flex-flow: column;
}
.contact-datos span{
  margin-bottom: 1.25rem;
}
.contact-map iframe{
  border: 0;
  min-height: 312px;
  border-radius: 12px;
}

@media (max-width:768px){
  .wrap_doble-section{
    padding: 1rem;
  }
  .wrap_contact-form{
    padding-right: 0;
    padding: 1rem;
  }
}
@media (max-width:928px){
  .wrap-header_section{
    margin-left: 0;
  }
}

/* Quienes somos */

section.header_section.header-about_section{
  background: linear-gradient(to right, rgb(0 0 0 / .75), rgb(0 0 0 / .75)),url(img/about/quienes-somos-portada.jpg)no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
.section_full{
  background: #43c2f90f;
}
.wrap_doble-section_full{
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 5rem 0;
}
.img-wrap_section_full img{
  width: auto;
}
@media (max-width: 768px){
  .wrap_doble-section_full{
    display: flex;
    flex-flow: column;
}
}

/* CTA Contact Section */
.contact-cta_section{
  background: #43c2f90f;
}
.wrap-contact-cta_section-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding:1rem;
}
.text-wrap_contact-cta-section p{
  font-size: 1.2rem;
}

@media (max-width:768px){
  .wrap-contact-cta_section-wrap{
    flex-flow: column;
  }
}

/* Página casas */
.header.transparent ul{
  background-color: #000000a1;
}
section.header_section.casa1{
  background: linear-gradient(to right, rgb(0 0 0 / .75), rgb(0 0 0 / .75)),url(img/casas/tipos-de-casas.jpg)no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
section.header_section.casa2{
  background: linear-gradient(to right, rgb(0 0 0 / .75), rgb(0 0 0 / .75)),url(img/casas/casa-estandar-hero.jpg)no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
section.header_section.casas-premium{
  background: linear-gradient(to right, rgb(0 0 0 / .75), rgb(0 0 0 / .75)),url(img/casas/casas-premium.jpg)no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
.wrap-header_section_trans{
  background-size: cover;
  background-position: center;
  height: 40vh;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}
.wrap-header_section_trans p{
  font-size: 1.2rem;
}
.button-after-section{
  display: grid;
  place-items: center;
  margin-top: -34px;
}
.button-after-section a{
  z-index: 9999;
  border: .25rem solid #fff;
}

@media (max-width:768px){
	section.header_section.casa1{
		height: 60vh;
	}
}
/* Intro Section */
.wrap-section_intro-page{
  padding: 1rem;
  max-width: 1100px;
  margin: 2rem auto;
}
.wrap-column-text_intro-page{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 2rem;
}

.casa-section-left{
  height: 600px;
  display: flex;
  align-items: center;
  margin-top: 5rem;
}
.casa-section-right{
  background: url(img/Contact/Header-Image.jpg)no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top:5rem
}
.casa-section-left.adhara{
  background: url(img/casas/adhara_casa.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-right.altair{
  background: url(img/casas/altair_casa.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-left.rigel{
  background: url(img/casas/rigel-casa.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-left.capella{
  background: url(img/casas/capella_estandar.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-right.vega{
  background: url(img/casas/casa-vega.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-left.shaula{
  background: url(img/casas/modelo-shaula.png)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-left.toliman{
  background: url(img/casas/modelo-casa-toliman.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-right.lyra{
  background: url(img/casas/casa-lyra.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.casa-section-left.orion{
  background: url(img/casas/modelo-orion.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.wrap-section_ficha-casa{
  width: 50%;
  max-width: 500px;
  /* margin: 0 auto; */
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  margin-left: 5%;
  opacity: .9;
}
.wrap-section_ficha-casa h3{
  margin-bottom: .25rem;
}
.wrap-section_ficha-casa ul li{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
  padding: .25rem 0;
}
.wrap-section_ficha-casa ul li:first-child{
  border-top: 1px solid #f2f2f2;
}
.wrap-section_ficha-casa ul li p{
  margin: .5rem 0;
}

.wrap-section_ficha-casa ul li span:last-child{
  font-weight: bold;
  text-transform: capitalize;
}
.casa-section-right .wrap-section_ficha-casa{
    margin-right: 5%;
} 
.wrap-column2-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 2rem;
}

@media (max-width:768px){
  .wrap-section_ficha-casa{
    width: 100%;
    max-width: 100%;
    margin: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    opacity: .9;
  }
}
@media (max-width:480px){
  .wrap-column2-grid{
    grid-template-columns: repeat(1,1fr);
  }
}

.grid-casas_intro-page{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
  padding-top: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.grid-casas-element_intro-page{
  max-width: 400px;
}
.grid-casas-element_intro-page img{
  max-width: 100%;
  height: 250px;
  border: 1px solid #f2f2f2;
}
@media (max-width:768px){
  .grid-casas_intro-page{
    place-items: center;
  }
}
@media (max-width:420px){
  .grid-casas_intro-page{
    grid-template-columns:repeat(1,1fr);
  }

}