/* progressive image CSS */

.progressive {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
}

.progressive a {
  max-height: 700px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.progressive img {
  display: block;
  width: auto;
  max-height: 700px;
  border: 0 none;
  margin-left: auto;
  margin-right: auto;
}

.progressive img.preview {
  filter: blur(2vw);
  /* transform: scale(1.05); */
}

.progressive img.reveal {
  position: absolute;
  /* left: 0; */
  /* top: 0;  */
  margin-left: auto;
  margin-right: auto;
  animation: progressiveReveal 0.5s linear;
}

@keyframes progressiveReveal {
  /* 0% { transform: scale(0.95); opacity: 0; }
      100% { transform: scale(1); opacity: 1; } */
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* custom image */
.image_article {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 700px;
}

.image_article div {
  max-height: 700px;
  min-height: 100px;
}

.image_article img {
  width: 100%;
  height: auto;
  position: relative;
  max-height: 700px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image_article .btn {
  position: absolute;
  top: 95%;
  left: 95%;
  transform: translate(-95%, -95%);
  -ms-transform: translate(-95%, -95%);
  /* background-color: rgb(0, 90, 175); */
  color: white;
  font-size: 16px;
  /* padding: 12px 24px; */
  border: none;
  cursor: pointer;
  border-radius: 50px;
  text-align: center;
  height: 44px;
  width: 44px;
  min-height: 22px;
  min-width: 22px;
}

.image_article .btn:hover {
  /* background-color: black; */
}

/* carousel transition speed time edit */
.carousel-inner .carousel-item {
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

/* New Subscription */
/* background: rgb(199,68,118);
background: linear-gradient(124deg, rgba(199,68,118,1) 0%, rgba(208,78,115,1) 37%, rgba(234,106,107,1) 100%); */