.footer {
    height: 190px;
    background: #19407b;
    position: relative;
    width: 100%;
    /* display: flex; */
  }
  .footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 45px;
  }
  .footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-left-title {
    font-size: 16px;
    color: #fff;
    margin-right: 24px;
  }
  .footer-icons {
    display: flex;
    gap: 16px;
  }
  .footer-icon {
    width: 50px;
    height: 50px;
    background: #719fda;
    /* border-radius: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .footer-icon img {
    width: 50px;
    height: 50px;
  }
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin-top: 60px;
    /* margin-bottom: 8px; */
  }
  