.animated-grid-expanding-fact-box {
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, max-height 0.3s ease-in-out;
  transform-origin: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 25px;
  height: 100%;
  width: 100%;
  font-family: "Inter", sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
}
.animated-grid-expanding-fact-box picture {
  padding-top: 10px;
  padding-bottom: 10px;
}
.animated-grid-expanding-fact-box picture img {
  height: 47px;
  width: auto;
}
.animated-grid-expanding-fact-box h1, .animated-grid-expanding-fact-box h2, .animated-grid-expanding-fact-box h3, .animated-grid-expanding-fact-box h4, .animated-grid-expanding-fact-box h5, .animated-grid-expanding-fact-box h6 {
  text-align: center;
  padding-bottom: 10px;
}
.animated-grid-expanding-fact-box .standard-text {
  display: block;
}
.animated-grid-expanding-fact-box .hover-text {
  display: none;
}
.animated-grid-expanding-fact-box .more-btn {
  display: flex;
}
.animated-grid-expanding-fact-box a {
  color: #005131;
}
.animated-grid-expanding-fact-box.hovered, .animated-grid-expanding-fact-box.expanded {
  z-index: 30;
  position: absolute;
  background: linear-gradient(360deg, #76B655 0%, #81E24E 100%);
}
.animated-grid-expanding-fact-box.hovered picture, .animated-grid-expanding-fact-box.expanded picture {
  display: none !important;
}
.animated-grid-expanding-fact-box.hovered a, .animated-grid-expanding-fact-box.expanded a {
  color: #000000;
}
.animated-grid-expanding-fact-box.hovered .standard-text, .animated-grid-expanding-fact-box.expanded .standard-text {
  display: none;
}
.animated-grid-expanding-fact-box.hovered .hover-text, .animated-grid-expanding-fact-box.expanded .hover-text {
  display: block;
}
.animated-grid-expanding-fact-box.hovered .more-btn, .animated-grid-expanding-fact-box.expanded .more-btn {
  display: none;
}
.row .col-md-4 {
  position: relative;
}
.row .col-md-4:first-child .animated-grid-expanding-fact-box {
  transform-origin: left center;
  transition: all 0.3s ease-in-out;
}
.row .col-md-4:first-child .animated-grid-expanding-fact-box.hovered, .row .col-md-4:first-child .animated-grid-expanding-fact-box.expanded {
  transform: scale(1.1);
}
.row .col-md-4:nth-child(2) .animated-grid-expanding-fact-box {
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
}
.row .col-md-4:nth-child(2) .animated-grid-expanding-fact-box.hovered, .row .col-md-4:nth-child(2) .animated-grid-expanding-fact-box.expanded {
  transform: scale(1.1);
}
.row .col-md-4:last-child .animated-grid-expanding-fact-box {
  transform-origin: right center;
  transition: all 0.3s ease-in-out;
}
.row .col-md-4:last-child .animated-grid-expanding-fact-box.hovered, .row .col-md-4:last-child .animated-grid-expanding-fact-box.expanded {
  transform: scale(1.1);
}
@media (max-width: 767.98px) {
  .grid-expanding-fact-box.expanded {
    background: linear-gradient(360deg, #76B655 0%, #81E24E 100%);
    height: auto !important;
  }
  .grid-expanding-fact-box.expanded picture {
    display: none !important;
  }
  .grid-expanding-fact-box.expanded a {
    color: #000000;
  }
  .grid-expanding-fact-box.expanded .standard-text {
    display: none;
  }
  .grid-expanding-fact-box.expanded .hover-text {
    display: block;
  }
  .grid-expanding-fact-box.expanded .more-btn {
    display: none;
  }
}