.multi-col-facts .container {
  position: relative;
}

.multi-col-facts .multi-col-facts__title {
  font-stretch: 80%;
  font-weight: 400;
  margin:0px;
}

.multi-col-facts .bg-accent svg{
  -o-object-fit:cover;
     object-fit:cover;
  height:100%;
  width:100%;
}

.multi-col-facts .bg-accent{
  position:absolute;
  z-index:0;
  right:0px;
  top:0px;
  height:100%;
  width:80px;
}

.multi-col-facts__rtext {
  font-weight:300;
}

@media (max-width:992px){
  .multi-col-facts .multi-col-facts__title {
    font-stretch: 70%;
    font-weight: 400;
  }
}

.multi-col-facts__props__title {
  border-bottom:2px solid;
  padding-bottom:6px;
  margin-bottom:6px;
  font-stretch:80%;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .multi-col-facts__copy {
    max-width:770px;
    margin-left:auto;
  }
}

/* .multi-col-facts__image img {
  opacity: 0;
} */

.multi-col-facts__image .reveal-image,
.multi-col-facts__image .reveal-image:after {
  position: absolute;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.multi-col-facts__image .reveal-image {
  opacity: 1;
  position: relative;
  animation-name: reveal-image;
}

@keyframes reveal-image {
  from {
    opacity:0;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  to {
    opacity:1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}


