.footer {
    background-color:#0b376c;
    color: #b0bec5;
    padding: 40px 0;
    width: 100%;
  }
  .footer-line {
    border-right: 1px solid #b0bec5;
    padding: 0 40px;
    margin-bottom: 40px;
  }
  .footer .btn-custom {
      border-radius: 3px;
      background-color: #0D5287;
      color: #fff;
      border: none;
      width: 100%;
      height: 50px; /* Establece la altura del botón */
      line-height: 0px; /* Centra verticalmente el texto */
      margin-top: 10px;
      transition: background-color 0.3s;
    }
  .footer .btn-custom:hover {
    background-color:rgb(13, 71, 142);
    height: 50px;
   
  }
  .footer .btn-white {
      border-radius: 3px;
      background-color: #fff;
      color: #0b376c;
      border: 1px solid #0b376c;
      width: 100%;
      height: 50px; /* Establece la altura del botón */
      line-height: 0px; /* Centra verticalmente el texto */
      margin-top: 10px;
      transition: color 0.3s, background-color 0.3s;
    }
  .footer .btn-white:hover {
    background-color:rgb(111, 137, 170);
    color: #fff;
  }
  .social-icons2 {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  .social-icons2 a {
    color: #b0bec5;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .social-icons2 a:hover {
    color: #fff;
  
  }
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .footer .line {
      border-right: none;
      border-bottom: 1px solid #b0bec5;
      padding: 20px;
      margin-bottom: 20px;
    }
  }