.section{
    padding: 5.7rem 1.4rem;  
}

.menu-btn{
    display: none;
}

.menu{
    position: static;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    background-color: transparent;
   
}

.menu a{
    padding: 0 1rem;
    color: var(--second-color);
}

.menu a:hover{
    background-color: transparent;
}


.header{
    position: sticky;
    top:0;
    padding: 0.5rem;
    height: calc(var(--header-height) + 0.5rem);
    z-index: 1;
}

.logo{
    width: 20%;
}

.hero-image{
    /* background-image: var(--image); */
    background-image: url(../img/podologoHeroDesktop.jpg);   
   
}


.about{
    display: flex;
}

.about article{
    width: 50%;
    padding: 0 3.7rem;
    text-align: justify;
}

.imgAcerca{
    height: 500px;
    width: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
   
    /* margin-right: auto; */
}


.services > .container {
    display: grid;
   
    grid-template-columns: repeat(2, 45%);
    /* grid-template-rows: repeat(3,auto); */
  }

  .services .section-title {
    grid-column: span 2;
    /* grid-row: span 2; */
  }

  .wrapper-form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }      
  
  #formulario{
    margin: auto;
    width: 90%;    
  }

  .wrapper-img-form{
    width: 50vw;   
  }

  .img-contacto{
    /* width: 51% ; */
    margin: auto;    
  }

  
  .wrapper-form2{
    width: 50vw;   
  }



.footer {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 4px;
    max-width: 100%;
    min-width: 300px;  
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer-copyright{
    background-color: var(--back-color);
    color: var(--text-color-primary);
    /* width: 100%; */

}

  