
.footer p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:17px;
  line-height:21px;
  color:white;
  text-align: center;
}
      
      
.footer p.bold {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:17px;
  line-height:21px;
  color:white;
  text-align: center;
}
      
      
      .footer{
        display:flex;
        width:100%;
        flex-direction:column;
        gap:20px;
        padding:70px 20px 76px 20px;
        background-color:#711D35;
        justify-content:center;
        align-items:center;
      }
      
      .footerRedes{
        display:flex;
        gap:13px;
        /*background-color:pink;*/
      }
      
      .footerRedes .icon{
        all:unset;
        display:flex;
        width:35px;
        height:35px;
        /*background-color:black;*/
        cursor:pointer;
      }
      
      .footerRedes .icon img{
        width:100%;
        object-position:center;
        object-fit:cover;
      }
      
      .footerTelefonos{
        display:flex;
        gap:22px;
        /*background-color:orange;*/
      }


     .footer a.ubicacion{
        all:unset;
        text-align: center;
        font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
        font-size:14.5px;
        line-height:14.5px;
        /*background-color:green;*/
        max-width:292px;
        color:#5A5656;
        color: white;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .footer a.ubicacion:hover{
        color: #F1D7AB;
      }


      @media(max-width:720px){


        .footer{
          padding: 60px 20px 50px;
          gap: 15px;
        }

        .footer p, .footer p.bold{
          font-size: 16px ;
        }

      }