.notification-container {
    max-width: 1080px;
    margin: auto;
    font-family: "Lato" !important;
    padding: 0 20px;
  }
  .notification {
    margin: 16px 0;
    padding: 25px 48px;
    border: 1px solid #DBDBDB;
  }
  .notification:hover {
    background-color: #F5F9FF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
  }
  .notification:hover .notification-more a {
    display: inline;
  }
  .notification-img {
    max-width: 100px;
    margin-right: 20px;
  }
  .notification-img img {
    max-width: 100px;
    max-height: 110px;
  }
  .notification-more {
    display: flex;
    align-items: center;
  }
  .notification-more a {
    color: #1F3D7A;
    text-decoration: none;
    display: none;
  }
  .notification-more a i {
    padding-left: 5px;
  }
  .nofication-breadcrumb a {
    text-decoration: none;
    color: #949494;
  }
  .notification-text {
    color: #060606;
    font-weight: 600;
  }
  .notification-date {
    margin-bottom: 0;
    color: #949494;
  }
  .notification-align {
    width: 100%;
  }
  .notification-inner {
    margin-bottom: 32px;
  }
  .notification-inner:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 992px) {
    .notification-more {
      justify-content: end;
    }
  }
  @media (max-width: 600px) {
    .notification {
      padding: 25px 12px;
    }
  }
  @media (min-width: 600px) and (max-width: 767px) {
    .notification .notification-more a {
      display: inline;
    }
  }
  @media (min-width: 320px) and (max-width: 599px) {
    .notification .notification-more a {
      display: inline;
    }
  }
  