.shadow-md {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  }
  .divider {
    background: linear-gradient(
      359deg,
      #fafbfc -0.32%,
      #ebf0f5 49.87%,
      #fafbfc 100.06%
    );
  }

  .scrolling-text-container {
    /* width: 100%; */
    overflow: hidden;
  }

  .scrolling-text {
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
  }

  @keyframes scrollText {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-0%);
    }
  }
  .banner-slider .slick-dots {
    bottom: -40px;
  }
  .banner-slider .slick-dots li button:before {
    background-color: #b8d9ff;
    height: 8px;
    width: 8px;
    border-radius: 50px;
    text-indent: -9999px;
    overflow: hidden;
  }
  .banner-slider .slick-dots li button {
    position: relative;
  }

  .banner-slider .slick-dots li button:before,
  .banner-slider .slick-dots li button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }
  .banner-slider .slick-dots li button:before {
    width: 8px;
    height: 8px;
    background: #1882ff;
    top: 8px;
    left: 4px;
    transform: translateY(-50%);
    margin: 0;
  }

  .banner-slider .slick-dots li.slick-active button {
    position: relative;
  }

  .banner-slider .slick-dots li.slick-active button:before,
  .banner-slider .slick-dots li.slick-active button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }
  .banner-slider .slick-dots li.slick-active button:before {
    width: 8px;
    height: 8px;
    background: #1882ff;
    top: 8px;
    left: 4px;
    transform: translateY(-50%);
    margin: 0;
  }
  .banner-slider .slick-dots li.slick-active button:after {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid #1882ff;
    left: 0;
    top: 0;
  }
  .notice-card-wrapper {
    height: 148px;
    overflow: hidden;
  }

  .notice-card-wrapper:not(:last-child) {
    margin-right: 16px;
  }

  .notice-card-wrapper:hover .notice-card {
    transform: translateY(-148px);
  }

  .notice-card {
    width: 100%;
    transition: all 0.2s ease-in-out;
  }

  .notice-image {
    width: 100%;
    height: 148px;
  }

  .notice-image img {
    width: 100%;
  }

  .notice-details {
    width: 100%;
    transition: 0.3s ease;
    height: 148px;
  }
  .notice-texts {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }