@import url('https://fonts.googleapis.com/css?family=Arimo');
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,400');
body {
  color: #4a4a4a;
}
@media (max-width: 576px) {
  body p {
    font-size: 14px;
  }
}
body .content ul {
  padding-left: 40px;
  padding-bottom: 15px;
}
body .content ul li {
  padding-top: 15px;
  list-style: square outside;
}
@media (max-width: 576px) {
  body .content ul li {
    font-size: 14px;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.basic {
  padding-top: 50px;
}
.basic h1 {
  color: #f7bb41;
  font-size: 2.5rem;
  padding-bottom: 30px;
}
.basic .titulo {
  padding-top: 30px;
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}
.basic p {
  line-height: 140%;
}
.basic p + p {
  margin-top: 10px;
}
.menu-completo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  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;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.menu-completo.is-activo,
.menu-completo:target {
  visibility: visible;
  opacity: 1;
}
#menu .cerrar-menu {
  color: white;
  fill: white;
  margin-bottom: 40px;
  display: block;
}
#menu .menu-header-container li {
  margin-bottom: 10px;
  text-align: center;
}
#menu .menu-header-container li a {
  font-size: 1.2rem;
  color: white;
}
#menu .menu-header-container li.current-menu-item a {
  color: #f7bb41;
}
/*
header{
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Merriweather', serif;  
    display: grid;
  
    grid-template-columns: 
        ~"[left]" 1fr
        ~"[logo]" 200px 
        ~"[right]" 1fr 
        ~"[end-col]";
        
    grid-template-rows: 
      ~"[init]" auto  
      ~"[end-row]";
  
  
  .menu{
    
    @media(min-width: 992px){
      grid-column: left / span 1;
      grid-row: init / span 1;     
      align-self: center;
      ul{
       li{
         display: inline-block;
         padding: 0 15px;
           &.current-menu-item {
             a{
               color: @yellow;
             }
           }
         a{
           color: #737373;
           

         }
       }
      }
      
    }
    
     
     @media (max-width: 991px){
         display: none;
      }

     
  }
  
  .logo{
     grid-column: logo / span 1;
     grid-row: init / span 1;     
     justify-self: center;

  }
  
  .contact{
     grid-column: right / span 1;
     grid-row: init / span 1;     
     align-self: center;
     justify-self: flex-end;
     text-align: center;
     color: @yellow;
     font-weight: 500;
     letter-spacing: 0.02em;
     font-size: 0.9rem;
     
     div+div{
       margin-top: 3px; 
     }
     
     a{
       color: inherit;
     }

     span{
       + span{
         margin-left: 10px;
       }
     }
     
     @media (max-width: 991px){
         display: none;
      }
     
  }
  
  @media (max-width: 991px){
    
    .burger{
      grid-column: left / span 1;
      grid-row: init / span 1;     
      align-self: center;
      justify-self: flex;      
      margin-left: 10px;
      
      span{
        display: block;
        width: 30px;
        height: 4px;
        background-color: @hard-gray;
        margin: 6px 0;
      }
    }
  }
  
    
}
*/
header {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Merriweather', serif;
  display: table;
}
@media (min-width: 992px) {
  header .menu {
    display: table-cell;
    width: 40%;
    text-align: left;
    vertical-align: middle;
  }
  header .menu ul li {
    display: inline-block;
    padding: 0 15px;
  }
  header .menu ul li.current-menu-item a {
    color: #f7bb41;
  }
  header .menu ul li a {
    color: #737373;
  }
}
@media (max-width: 991px) {
  header .menu {
    display: none;
  }
}
header .logo {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 20%;
}
@media (max-width: 991px) {
  header .logo {
    width: 50%;
    text-align: right;
  }
}
header .contact {
  text-align: center;
  color: #f7bb41;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 40%;
}
header .contact div + div {
  margin-top: 3px;
}
header .contact a {
  color: inherit;
}
header .contact span + span {
  margin-left: 10px;
}
@media (max-width: 991px) {
  header .contact {
    display: none;
  }
}
@media (max-width: 991px) {
  header .burger {
    padding-left: 10px;
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  header .burger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #4a4a4a;
    margin: 6px 0;
  }
}
.watermark {
  color: #F9F9F9;
  opacity: 0.8;
  font-family: 'Merriweather', serif;
  font-weight: 400;
  display: block;
  user-select: none;
  line-height: 100%;
  padding-top: 1rem;
  font-size: 2.3rem;
}
@media (max-width: 767px) {
  .watermark {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .watermark {
    font-size: 1.95rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .watermark {
    font-size: 2.1rem;
  }
}
h1 {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 3.2rem;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3.6rem;
  }
}
h2 {
  color: #f7bb41;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin-top: 0.8rem;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 1.85rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  color: #4a4a4a;
  font-family: 'Merriweather', serif;
  font-weight: 400;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .bg-gray {
    background: white;
  }
}
@media (min-width: 1400px) {
  .bg-gray {
    max-width: 1400px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}
.pad30 {
  padding-bottom: 30px;
}
.pad60 {
  padding-bottom: 60px;
}
.pad120top {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .fade-content {
    max-height: 140px;
    overflow: hidden;
    transition: 0.2s all;
    transition-timing-function: ease-out;
  }
}
.fade-content .fade-anchor {
  display: none;
}
@media (max-width: 767px) {
  .fade-content .fade-anchor {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0.96) 65%, #ffffff 80%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0.96) 65%, #ffffff 80%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0.96) 65%, #ffffff 80%);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 140px;
    padding-top: 105px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    -webkit-transition: background 150ms ease-in;
    transition: background 150ms ease-in;
  }
  .fade-content .fade-anchor .fade-anchor-text {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #f7bb41;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    padding: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 576px) {
  .container.fit-sm {
    padding-left: 0;
    padding-right: 0;
  }
}
footer {
  background: #232733;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: 'Arimo', sans-serif;
}
footer hr {
  background: #979797;
}
footer #menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .menu-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
footer .menu-item a {
  color: #D7D7D7;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  padding: 0 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  footer .menu-item a {
    padding: 0 30px;
  }
}
@media (max-width: 720px) {
  footer #menu-footer {
    padding-top: 15px;
    padding-bottom: 10px;
    display: block;
  }
  footer .menu-item {
    display: block;
    text-align: center;
  }
  footer .menu-item a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}
.field_border {
  border-left: 5px #f7bb41 solid;
}
.cabecera h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffac23;
  text-shadow: 4px 2px 9px #000000;
}
.cabecera .content * {
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  text-shadow: 0 2px 0px rgba(116, 116, 116, 0.5);
}
@media (min-width: 992px) {
  .cabecera .content * {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}
.presupuesto a {
  color: inherit;
}
.presupuesto .wpcf7-response-output {
  max-width: 220px;
}
.presupuesto .formulario {
  margin-top: 20px;
  padding-bottom: 30px;
}
.presupuesto .formulario p {
  margin-top: 9px;
}
.presupuesto .formulario select {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  border-left: 5px #f7bb41 solid;
  font-size: 0.9rem;
  color: #848484;
  padding: 10px;
  background: white;
}
.presupuesto .formulario input[type='text'],
.presupuesto .formulario input[type='tel'],
.presupuesto .formulario input[type='email'],
.presupuesto .formulario textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  border-left: 5px #f7bb41 solid;
  font-size: 0.9rem;
  color: #848484;
  padding: 10px;
}
.presupuesto .formulario input[type="submit"] {
  background: #f7bb41;
  color: white;
  border: none;
  text-align: center;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 10px;
  transition: all 0.3s;
}
.presupuesto .formulario input[type="submit"],
.presupuesto .formulario input[type='text'],
.presupuesto .formulario input[type='tel'],
.presupuesto .formulario input[type='email'],
.presupuesto .formulario textarea,
.presupuesto .formulario select {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.15);
  width: 75%;
  max-width: 390px;
}
.presupuesto .formulario input[disabled] {
  background: #fad58a;
}
@media (min-width: 1200px) {
  .servicios .watermark,
  .servicios h2 {
    width: 80%;
  }
}
.servicios .list-servicios {
  position: relative;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .servicios .list-servicios {
    left: -50%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .servicios .list-servicios {
    left: -50%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .servicios .list-servicios {
    left: -15%;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .servicios .list-servicios {
    left: -10%;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.servicios .list-servicios li {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  border-left: 5px #f7bb41 solid;
  font-size: 0.98rem;
  color: #848484;
  background: white;
  margin-bottom: 8px;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.15);
  max-width: 390px;
  width: 150%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .servicios .list-servicios li {
    width: 100%;
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .servicios .list-servicios li {
    width: 100%;
    margin-bottom: 12px;
  }
}
.servicios .list-servicios li a {
  color: inherit;
  display: block;
  padding: 10px;
}
.servicios .list-servicios li a:hover,
.servicios .list-servicios li a:active {
  background: #f9f9f9;
  text-decoration: none;
}
.servicios .list-servicios li span {
  width: calc(100% - 20px);
  padding-left: 30px;
  vertical-align: top;
  transition: .1s all;
}
.servicios .list-servicios li span:before {
  width: 25px;
  margin-left: -30px;
  content: "→";
  color: #f7bb41 !important;
  font-size: 1.2rem;
  vertical-align: top;
  display: inline-block;
  line-height: 1;
}
.servicio {
  background: white;
}
@media (max-width: 991px) {
  .servicio .box-title {
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .servicio .box-title {
    margin-top: 4rem;
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .servicio .box-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .servicio .box-content {
    padding: 15px 30px;
  }
}
.servicio .box-subserv {
  padding: 20px 30px;
  background-color: #232733;
}
@media (max-width: 991px) {
  .servicio .box-subserv {
    width: 80%;
  }
  .servicio .box-subserv ul li {
    padding-bottom: 4px;
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .servicio .box-subserv ul {
    padding-top: 1.5rem;
  }
  .servicio .box-subserv ul li {
    padding-bottom: 8px;
    font-size: 0.95rem;
  }
}
.servicio .box-subserv ul li {
  letter-spacing: 0.025rem;
  color: #d0d0d0;
  font-weight: 700;
}
.servicio .box-subserv ul li:before {
  content: "- ";
}
.servicio .box-link {
  align-self: flex-end;
}
.servicio .box-link a {
  display: block;
  width: 100%;
  padding: 15px;
  background: #f7bb41;
  text-align: center;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .servicio .box-link a {
    padding: 35px 15px;
  }
}
.servicio .box-link a:hover {
  background: #f6b229;
  text-decoration: none;
}
.servicio.alt h2 {
  color: #799257;
}
.servicio.alt .box-link a {
  background: #799257;
}
.servicio.alt .box-link a:hover {
  background: #6c824d;
}
.contacto .box-address {
  background-color: #232733;
  color: #d0d0d0;
  padding: 45px 30px 30px;
  line-height: 160%;
}
@media (min-width: 992px) {
  .contacto .box-address {
    font-size: 0.9rem;
  }
}
.contacto .box-address .marker {
  position: absolute;
  top: -54px;
  width: 50px;
  left: 8px;
}
.contacto .box-address a {
  color: inherit;
  text-decoration: none !important;
}
.contacto .box-address h2 {
  color: white;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .contacto .box-address h2 {
    font-size: 1.8rem;
  }
}
.bg-white {
  background: white;
}
.wrapper {
  background-color: white;
}
.wrapper.half-float {
  display: flex;
}
@media (max-width: 767px) {
  .wrapper.half-float .wrapper-image,
  .wrapper.half-float .wrapper-row {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .wrapper.half-float {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(241, 241, 241, 0) 25%, #ffffff 25.1%, #ffffff 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(241, 241, 241, 0) 25%, #ffffff 25.1%, #ffffff 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(241, 241, 241, 0) 25%, #ffffff 25.1%, #ffffff 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wrapper.half-float {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .wrapper.half-float .wrapper-image {
    flex: 0 0 62%;
  }
  .wrapper.half-float .wrapper-row {
    flex: 0 0 38%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wrapper.half-float {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .wrapper.half-float .wrapper-image {
    flex: 0 0 62%;
  }
  .wrapper.half-float .wrapper-row {
    flex: 0 0 38%;
  }
}
@media (min-width: 1200px) {
  .wrapper.half-float {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .wrapper.half-float .wrapper-image {
    flex: 0 0 62%;
  }
  .wrapper.half-float .wrapper-row {
    flex: 0 0 38%;
  }
}
.wrapper.half-float .wrapper-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper.half-float .wrapper-row {
  padding: 15px;
}
.wrapper.half-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.half-image {
    background-position-x: 50%;
    margin-left: 50%;
  }
  .wrapper.half-image .wrapper-row {
    margin-left: -100%;
    width: 200%;
    padding-left: 15px;
  }
  .wrapper.half-image .wrapper-row .fit {
    width: calc( 50%  -  15px );
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wrapper.half-image {
    background-position-x: 40%;
    margin-left: 40%;
  }
  .wrapper.half-image .wrapper-row {
    margin-left: -66.66666667%;
    width: 166.66666667%;
    padding-left: 15px;
  }
  .wrapper.half-image .wrapper-row .fit {
    width: calc( 40%  -  15px );
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wrapper.half-image {
    background-position-x: 40%;
    margin-left: 40%;
  }
  .wrapper.half-image .wrapper-row {
    margin-left: -66.66666667%;
    width: 166.66666667%;
    padding-left: 30px;
  }
  .wrapper.half-image .wrapper-row .fit {
    width: calc( 40%  -  30px );
  }
}
@media (min-width: 1200px) {
  .wrapper.half-image {
    background-position: center;
    background-position-x: 30%;
    margin-left: 30%;
  }
  .wrapper.half-image .wrapper-row {
    margin-left: -42.85714286%;
    width: 142.85714286%;
    padding-left: 45px;
    padding-bottom: 45px;
  }
  .wrapper.half-image .wrapper-row .fit {
    width: calc( 30%  -  45px );
  }
}
.grid-big {
  background-position: center center;
  background-size: cover;
  min-height: 70vh;
}
@media (max-width: 767px) {
  .grid-big {
    /*
      min-height: 70vh;  	
      grid-template-columns: ~"[guarda-left]" 30px ~"[body-c]" auto ~"[guarda-right]" 30px ~"[end-col]";
      grid-template-rows: ~"[guarda-top]" 60px ~"[body-r]" auto ~"[guarda-bottom]" 60px ~"[end-row]";
*/
  }
}
@media (min-width: 768px) {
  .grid-big {
    /*
      @guardas: 20%;

      grid-template-columns: ~"[guarda-left]" @guardas ~"[body-c]" auto ~"[guarda-right]" @guardas ~"[end-col]";
      grid-template-rows: ~"[guarda-top]" 8rem ~"[body-r]" auto ~"[guarda-bottom]" 8rem ~"[end-row]";
*/
  }
}
.grid-big .content-wrapper {
  /*
    grid-column: body-c / span 1;
    grid-row: body-r / span 1;   
    align-self: center;   
*/
}
.no-grid-picasso .mv-show {
  display: none;
}
@media (max-width: 991px) {
  .no-grid-picasso {
    background: white;
    margin-top: 40px;
  }
  .no-grid-picasso .mv-content-tb {
    display: table;
    width: 100%;
  }
  .no-grid-picasso .mv-show {
    display: block;
  }
  .no-grid-picasso .mv-hide {
    display: none !important;
  }
  .no-grid-picasso .box-image {
    display: table-cell;
    width: 45%;
    background-position: center center;
    background-size: cover;
  }
  .no-grid-picasso .box-title {
    display: table-cell;
    width: 55%;
    padding-top: 40px;
    padding-bottom: 75px;
  }
  .no-grid-picasso .box-subserv {
    display: block;
    width: 80%;
    margin-top: -50px;
    z-index: 100;
  }
  .no-grid-picasso:not(.alt) .box-subserv {
    margin-left: 20%;
  }
  .no-grid-picasso .box-content {
    display: block;
  }
  .no-grid-picasso .box-content .content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
  .no-grid-picasso .box-link {
    display: block;
    width: 100%;
  }
  .no-grid-picasso.alt .box-image {
    width: 45%;
  }
  .no-grid-picasso.alt .box-title {
    width: 55%;
  }
}
@media (min-width: 992px) {
  .no-grid-picasso .mv-show {
    display: none !important;
  }
  .no-grid-picasso .mv-content-tb {
    display: table;
    width: 100%;
  }
  .no-grid-picasso .box-image {
    display: table-cell;
    background-position: center center;
    background-size: cover;
    height: 600px;
    width: 55%;
    vertical-align: bottom;
  }
  .no-grid-picasso .box-title {
    display: table-cell;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 45%;
    padding-bottom: 50px;
    padding-left: 80px;
    vertical-align: middle;
  }
  .no-grid-picasso .box-title .box-content {
    padding-left: 0;
  }
  .no-grid-picasso .box-subserv {
    float: left;
    margin-left: -7%;
    width: 67%;
  }
  .no-grid-picasso .box-link {
    float: left;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
  }
  .no-grid-picasso.alt .box-subserv {
    float: right;
    margin-right: -7%;
    width: 67%;
  }
  .no-grid-picasso.alt .box-link {
    float: right;
    position: absolute;
    bottom: 0;
    width: 40%;
    left: 0;
  }
}
/*
.grid-picasso{

  display: grid;


  @media (max-width: 991px){
    
    @guarda: 30px;
    @ancho_left: 46%;
    
    grid-template-columns: 
      ~"[left]" @ancho_left 
      ~"[right]" 100% - @ancho_left 
      ~"[end-col]";
      
    grid-template-rows: 
      ~"[init]" auto 
      ~"[services]" ~"minmax("0, @guarda*2 ~")" 
      ~"[guarda]" ~"minmax(" @guarda ~",auto)" 
      ~"[button]" auto 
      ~"[content]" auto 
      ~"[end-row]";
      
  
    .box-image{
      grid-column: left / span 1;
      grid-row: init / span 2;   
      align-self: center;   
      
      background-position: center center;
      background-size: cover;
      height: 100%;
      width: 100%;
    }
    
    .box-title{
      grid-column: right / span 1;
      grid-row: init / span 1;   
    }
    
    .box-content{
      grid-column: left / span 2;
      grid-row: content / span 1;
      
      .content{
	  	padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 15px;
      }
      
    }
    
    .box-subserv{
      grid-column: left / span 2;
      grid-row: services / span 2;   
      justify-self: flex-end;
  
    }
     
    .box-link{
      grid-column: left / span 2;
      grid-row: button / span 1;   
      
    }
    
    &.alt{
      @ancho_left: 46%;
    
      grid-template-columns: 
        ~"[left]" 100% - @ancho_left 
        ~"[right]" @ancho_left 
        ~"[end-col]";
      
      .box-image{
        grid-column: right / span 1;
      }
      
      .box-title{
        grid-column: left / span 1;
      }
      
      .box-subserv{
        justify-self: initial;
      }          
    }
  }
  
  @media (min-width: 992px){

    @guarda: 40px;
    @ancho_left: 46%;
    
    grid-template-columns: 
      ~"[text]" @ancho_left
      ~"[services]" @guarda
      ~"[image]" auto
      ~"[button]" ~"minmax(0, 250px)"
      ~"[end-col]";
      
    grid-template-rows: 
      ~"[init]" auto
      ~"[content]" auto 
      ~"[services]" ~"minmax("0, @guarda*2 ~")" 
      ~"[button]" ~"minmax(" @guarda ~",auto)" 
      ~"[end-row]";
  
    .box-image{
      grid-column: image / span 2;
      grid-row: init / span 4;   
      align-self: center;
      background-position: center center;
      background-size: cover;
      height: 100%;
      width: 100%;
    }
    
    .box-title{
      grid-column: text / span 1 ;
      grid-row: init / span 1;   
    }
    
    .box-content{
      grid-column: text / span 1  ;
      grid-row: content / span 3;
    }
    
    .box-subserv{
      grid-column: services / span 2;
      grid-row: services / span 2;   
      align-self: flex-end;
  
    }
     
    .box-link{
      grid-column: button / span 1;
      grid-row: button / span 1;   
      
    }
    
    &.alt{   
      grid-template-columns: 
        ~"[image]" ~"minmax(0, 250px)"
        ~"[services]" auto
        ~"[guarda]" @guarda
        ~"[text]" @ancho_left
        ~"[end-col]";

      .box-link{
        grid-column: image / span 1;
        
      }
    }
    
  }
  
  @media (min-width: 1200px){

    @guarda: 40px;
    @ancho_left: 40%;
    
    display: grid;
    grid-template-columns: 
      ~"[text]" @ancho_left
      ~"[services]" @guarda
      ~"[image]" auto
      ~"[button]" auto
      ~"[end-col]";
      
    grid-template-rows: 
      ~"[init]" auto
      ~"[content]" auto 
      ~"[services]" ~"minmax("0, @guarda*2 ~")" 
      ~"[button]" ~"minmax(" @guarda ~",auto)" 
      ~"[end-row]";
      
      
    &.alt{
    
      grid-template-columns: 
        ~"[image]" ~"minmax(0, 250px)"
        ~"[services]" auto
        ~"[guarda]" @guarda
        ~"[text]" @ancho_left
        ~"[end-col]";

      .box-link{
        grid-column: image / span 1;
        
      }
    }
      
  }
}
*/
.no-grid-map .acf-map {
  width: 100%;
  height: 100%;
  border: #ccc solid 1px;
  margin: 0;
}
.no-grid-map .acf-map img {
  max-width: inherit !important;
}
@media (max-width: 991px) {
  .no-grid-map .box-white {
    display: none;
  }
  .no-grid-map .box-maps {
    width: 100%;
    height: 400px;
  }
  .no-grid-map .box-address {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .no-grid-map .box-white {
    width: calc(100% -  120px );
    min-height: 420px;
    background: white;
    margin-top: 40px;
    margin-right: 120px;
    z-index: 100;
  }
  .no-grid-map .box-maps {
    width: calc(100% -  320px );
    height: 400px;
    background: white;
    position: absolute;
    top: -40px;
    right: 0;
    margin-bottom: 40px;
    z-index: 110;
  }
  .no-grid-map .box-address {
    max-width: 360px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 120;
  }
}
/*
.grid-map{
  display: grid;
  
  .acf-map {
  	width: 100%;
  	height: 100%;
  	border: #ccc solid 1px;
  	margin: 0;
  }
  
  .acf-map img {
     max-width: inherit !important;
  }

  
  @media (max-width: 991px){
	  display: none;
	  
    @guarda: 70px;

     grid-template-columns:
        ~"[init]" auto
        ~"[end-col]";
    
      
      grid-template-rows:
        ~"[maps]" 350px
        ~"[direccion]" @guarda
        ~"[guarda]" auto
        ~"[end-row]";
      
      
      .box-white{
        display: none;
      }
      
      .box-maps{
        grid-column: init / span 1;
        grid-row: maps / span 2;
        height: 400px;
      }
      
      .box-address{
        grid-column: init / span 1;
        grid-row: direccion / span 2;
      }
 
  }
  
  @media (min-width: 992px){
    @guarda: 40px;

     grid-template-columns:
        ~"[init]" @guarda
        ~"[direccion]" ~"minmax(auto," @guarda*7 ~")"
        ~"[mapa]" @guarda * 2
        ~"[guarda]" auto
        ~"[guarda2]" @guarda*3
        ~"[end-col]";
    
      
      grid-template-rows:
        ~"[maps]" @guarda
        ~"[guarda_blanca]" @guarda*6
        ~"[direccion]" auto
        ~"[guarda2]" @guarda/2  
        ~"[guarda3]" @guarda  
        ~"[end-row]";
      
      
      .box-white{
        width: 100%;
        height: 100%;
        background: white;
        grid-column: init / span 4;
        grid-row: guarda_blanca / span 4;
      }
      
      .box-maps{
        grid-column: mapa / span 3;
        grid-row: maps / span 3;
        height: 100%;
      }
      
      .box-address{
        grid-column: direccion / span 2;
        grid-row: direccion / span 2;
        
      }
 
  }
}
*/
@media (min-width: 767px) and (max-width: 991px) {
  .no-grid-foto-texto {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .no-grid-foto-texto {
    background: white;
  }
  .no-grid-foto-texto .box-image {
    min-height: calc( 57.75vw  - 45px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .no-grid-foto-texto .box-title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .no-grid-foto-texto .box-content {
    padding-top: 15px;
  }
  .no-grid-foto-texto .box-content .content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .no-grid-foto-texto .box-image {
    min-height: calc( 60.5vw  - 45px);
  }
}
@media (min-width: 992px) {
  .no-grid-foto-texto.medio .box-image {
    height: 100%;
    min-height: 38vw;
    max-height: 550px;
    width: 46%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    z-index: 100;
  }
  .no-grid-foto-texto.medio .box-title {
    background: white;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .no-grid-foto-texto.medio .box-content {
    padding-top: 40px;
    padding-bottom: 80px;
    background: white;
    position: absolute;
    width: 55%;
    display: block;
    right: 0;
    top: 30px;
    top: 2vw;
    z-index: 110;
  }
  .no-grid-foto-texto.medio .box-content .content {
    padding-top: 20px;
  }
  .no-grid-foto-texto.medio .box-content p + p {
    margin-top: 20px;
  }
  .no-grid-foto-texto.superior .box-white-top {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url(https://limpiezasdelsol.com/wp-content/themes/soft_cocus/less/../img/bg_way_top.png);
    width: 85%;
    height: 40px;
  }
  .no-grid-foto-texto.superior .box-white-bottom {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url(https://limpiezasdelsol.com/wp-content/themes/soft_cocus/less/../img/bg_way_bottom.png);
    width: 85%;
    height: 40px;
  }
  .no-grid-foto-texto.superior .box-white {
    background: white;
  }
  .no-grid-foto-texto.superior .box-image {
    min-height: 600px;
    max-height: 600px;
    background-repeat: no-repeat;
    margin-top: 35px;
    background-size: contain;
    z-index: 110;
    width: 42.5%;
    float: right;
    margin-top: 5vw;
  }
  .no-grid-foto-texto.superior .box-title {
    padding-right: 0px;
    padding-bottom: 40px;
  }
  .no-grid-foto-texto.superior .box-content {
    width: 85%;
    background: white;
    padding-top: 0px;
    padding-left: 40px;
    padding-right: 36%;
    padding-bottom: 100px;
  }
  .no-grid-foto-texto.superior .box-content p + p {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .no-grid-foto-texto.medio {
    margin-bottom: 40px;
  }
  .no-grid-foto-texto.medio .box-image {
    height: 700px;
  }
  .no-grid-foto-texto.medio .box-content {
    padding-left: 70px;
    padding-right: 90px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .no-grid-foto-texto.medio .box-image {
    min-height: auto;
  }
  .no-grid-foto-texto.medio .box-content {
    padding-left: 90px;
    padding-right: 100px;
  }
}
/*
.grid-foto-texto{
  display: grid;
    
  @media (min-width: 767px) and (max-width: 991px){
    padding: 15px;
  }
    
  @media (max-width: 991px){
      background: white;
      
      @ancho_right: 45;
          
      grid-template-columns:
        ~"[init]" auto
        ~"[titulo]" 55% //@ancho_right*1%
        ~"[end-col]";
    
      
      grid-template-rows:
        ~"[init]" auto
        ~"[texto]" auto  
        ~"[end-row]";
    
      
      .box-image{
        grid-column: init / span 1;
        grid-row: init / span 1;
        min-height: ~"calc(" 1.5  * (100 - @ancho_right) * 1vw ~" - 45px)";
        @media (min-width: 767px){
          min-height: ~"calc(" 1.1  * (100 - @ancho_right) * 1vw ~" - 45px)";          
        }
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
      }
      
      .box-title{
        grid-column: titulo / span 1;
        grid-row: init / span 1;     
        padding-left: 15px;
        padding-right: 15px;
        align-self: flex-end;
         
      }
      
      .box-content{
        grid-column: init / span 2;
        grid-row: texto / span 1;
        padding-top: 15px;
        
		.content{
	      padding-left: 15px;
	      padding-right: 15px;	      
	      padding-bottom: 15px;
		}
        
      }
      
      &.alt{
        grid-template-columns:
          ~"[titulo]" @ancho_right*1%
          ~"[init]" auto
          ~"[end-col]";
        
        .box-content{
          grid-column: titulo / span 2;
          grid-row: texto / span 1;
          padding-top: 15px;
        }
        .box-title{
          padding-left: 0px;
          padding-right: 25px;
        }
      }
   
  }
  
  @media (min-width: 992px){
    &.medio{ //Texto a media altura
      display: grid;
      
      @guardas: 20px;
      grid-template-columns:
          ~"[init]" 45%
          ~"[texto]" @guardas/2
          ~"[guarda]" auto
          ~"[end-column]";
      
        
      grid-template-rows:
        ~"[init]" minmax(20px, auto)
        ~"[titulo]" auto
        ~"[texto]" auto
        ~"[guarda]" @guardas
        ~"[end-row]";
        
      .box-image{
        min-height: 45vw;
        max-height:  750px;
        grid-column: init / span 2;
        grid-row: init / span 4; 
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        
      }
      
      @media (min-width: 992px){
        .box-title, .box-content{
          padding-left: 70px;
          padding-right: 90px;
        }
      }
      
      @media (min-width: 1200px){
        .box-title, .box-content{
          padding-left: 90px;
          padding-right: 100px;
        }        
      }
      
      
      .box-title{
        grid-column: texto / span 2;
        grid-row: titulo / span 1; 
        background: white;
        padding-top: 40px;
        padding-bottom: 20px;
        
      }        
        
      .box-content{
        grid-column: texto / span 2;
        grid-row: texto / span 1; 
        background: white;        
        padding-top: 0px;
        padding-bottom: 50px;
        
        p{
          + p{
            margin-top: 20px;
          }
        }
      }
              
    }
    
    &.superior{ //Texto a media altura
      display: grid;
      
      @guardas: 70px;
      
      grid-template-columns:
          ~"[init]" 55%
          ~"[imagen]" auto
          ~"[guarda]" @guardas * 2
          ~"[end-column]";
      
        
      grid-template-rows:
        ~"[init]" @guardas/2 
        ~"[titulo]" minmax(@guardas/2, auto)
        ~"[imagen]" auto
        ~"[texto]" auto
        ~"[guarda]" @guardas/2
        ~"[guarda2]" @guardas
        ~"[end-row]";
      
      .box-white-top{
//        background: red;
        grid-column: init / span 2;
        grid-row: init / span 1;
         background-repeat: no-repeat;
         background-position: center;
         background-size: 100% 100%;
        background-image: url(https://limpiezasdelsol.com/wp-content/themes/soft_cocus/less/../img/bg_way_top.png)  
      }
      
      .box-white-bottom{
        grid-column: init / span 2;
        grid-row: guarda / span 1;
         background-repeat: no-repeat;
         background-position: center;
         background-size: 100% 100%;
        background-image: url(https://limpiezasdelsol.com/wp-content/themes/soft_cocus/less/../img/bg_way_bottom.png)  
      }
      
      .box-white{
        background: white;
        grid-column: init / span 2;
        grid-row: titulo / span 3;
        
      }
      
      .box-image{
        min-height: 45vw;
        max-height:  600px;
        grid-column: imagen / span 2;
        grid-row: imagen / span 4; 
        background-repeat: no-repeat;
        margin-top: @guardas/2;
        background-size: contain;
      }
      
      .box-title{
        grid-column: init / span 1;
        grid-row: titulo / span 2; 
        //background: white;
        padding-left: 40px;
        padding-right: 100px;
        padding-bottom: 40px;       
        align-self: flex-end;        
      }        
        
      .box-content{
        grid-column: init / span 1;
        grid-row: texto / span 1; 
        //background: white;        
        padding-top: 0px;
        padding-left: 40px;
        padding-right: 100px;
        padding-bottom: 100px;
        
        p{
          + p{
            margin-top: 20px;
          }
        }
      }
              
    }
  }
}
*/
