/* animation */

.bg-ripple-effect {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.bg-ripple-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: url("./../assets/images/bg2.png");
  /* background-size: cover;
  background-position: center; */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 1s;

  @media screen and (min-height: 900px) {
    background-size: cover;
  }
}

.bg-ripple-effect.active::before {
  width: 200%;
  height: 200%;
}


/* news modal */
.news-modal-content {
  height: calc(100vh - 2em);
  overflow-y: auto;
  background: white;
  color: #222;
  padding: 2rem 5rem;
  box-sizing: border-box;
  max-width: 1000px;
  font-weight: 400;

  @media screen and (max-width: 576px) {
    height: calc(100vh);
    padding: 2rem 1rem;
  }
}

.news-modal-content p {
  text-align: justify;
}

.news-modal-content img {
  text-align: center;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.image-title {
  font-size: 14px;
  color: #333;
}

.news-short-description {
  font-weight: 600;
}
