section.factboxes .item {
  border-radius: var(--borderradius);
  overflow: hidden;
  background-color: var(--mint);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
@container main (min-width: 120rem) {
  section.factboxes .item .top,
  section.factboxes .item .bottom {
    padding: 40px;
  }
}
@container main (min-width: 85.4375rem) and (max-width: 119.9375rem) {
  section.factboxes .item .top,
  section.factboxes .item .bottom {
    padding: 40px 34px;
  }
}
@container main (min-width: 64rem) and (max-width: 85.375rem) {
  section.factboxes .item .top,
  section.factboxes .item .bottom {
    padding: 40px;
  }
}
@container main (max-width: 63.9375rem) {
  section.factboxes .item .top,
  section.factboxes .item .bottom {
    padding: 32px 20px;
  }
}
section.factboxes .item .top {
  background: var(--green);
  color: var(--white);
}
section.factboxes .item .top h3 {
  font-weight: 500;
  color: var(--mint);
}
@container main (min-width: 64rem) and (max-width: 85.375rem) {
  section.factboxes .item .top h3 {
    font: var(--md-font);
    font-weight: 500;
  }
}
@container main (min-width: 64rem) and (max-width: 85.375rem) {
  section.factboxes .item .top p {
    font: var(--text-sm-font);
  }
}
section.factboxes .item .bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
@container main (min-width: 64rem) and (max-width: 85.375rem) {
  section.factboxes .item .bottom p,
  section.factboxes .item .bottom ul li,
  section.factboxes .item .bottom ol li {
    font: var(--text-sm-font);
  }
}
section.factboxes .item .bottom a.arr {
  font: var(--text-xxs-font);
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
section.factboxes .item .bottom a.arr::after {
  -webkit-transition: background-color 0.4s, -webkit-transform 0.4s;
  transition: background-color 0.4s, -webkit-transform 0.4s;
  transition: background-color 0.4s, transform 0.4s;
  transition: background-color 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
section.factboxes .item .bottom a.arr:hover {
  background: var(--darkgreen);
  color: var(--white);
}
section.factboxes .item .bottom a.arr:hover::after {
  background: var(--white);
}
section.factboxes .item .bottom .numbers-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.factboxes .item .bottom .numbers-text-list li .number {
  color: var(--green);
}
section.factboxes .item .bottom .img-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: auto;
}
section.factboxes .item .bottom .img-grid .img-holder {
  display: block;
  overflow: hidden;
  line-height: 0;
}
section.factboxes .item .bottom .img-grid .img-holder img {
  width: 100%;
  height: auto;
}
@container main (min-width: 120rem) {
  section.factboxes .item .bottom .img-grid {
    gap: 20px;
  }
  section.factboxes .item .bottom .img-grid .img-holder img {
    max-width: 142px;
  }
}
@container main (min-width: 85.4375rem) and (max-width: 119.9375rem) {
  section.factboxes .item .bottom .img-grid {
    gap: 5px;
  }
  section.factboxes .item .bottom .img-grid .img-holder img {
    max-width: 100px;
  }
}
@container main (min-width: 64rem) and (max-width: 85.375rem) {
  section.factboxes .item .bottom .img-grid {
    gap: 20px;
  }
  section.factboxes .item .bottom .img-grid .img-holder img {
    max-width: 100px;
  }
}
@container main (max-width: 63.9375rem) {
  section.factboxes .item .bottom .img-grid .img-holder img {
    max-width: 94px;
  }
}
@container main (min-width: 48rem) and (max-width: 63.9375rem) {
  section.factboxes .item .bottom .img-grid {
    gap: 10px;
  }
}
@container main (max-width: 47.9375rem) {
  section.factboxes .item .bottom .img-grid {
    gap: 15px;
  }
}
@container main (max-width: 47.9375rem) {
  section.factboxes .link-wrap.jce {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}