.statistics-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 37% 30%;
  grid-template-columns: 33% 37% 30%;
  gap: 20px;
}
.stat_list {
  margin-bottom: 24px;
}
.stat_list ul li {
  margin: 5px 0;
  padding-left: 26px;
  position: relative;
}
.stat_list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #1e1e1e;
}
.stat {
  background-color: #f6f6f6;
  padding: 24px 20px;
  border-radius: 16px;
  position: relative;
}
.stat.large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.stat.large p {
  margin-bottom: 16px;
}
.blue-card {
  background-color: #cfe1ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.blue-card .text_20 {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.blue-card img  {
  width: 38px;
  height: 34px;
}
.slider {
  text-align: center;
}
.slider .container {
  position: relative;
}
.slider h2 {
  margin-bottom: 32px;
}
.slider .text_20 {
  width: 70%;
  margin: 0 auto 80px;
}
.sticky_section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.text {
  position: sticky;
  top: 0;
  padding-top: 80px;
}
.text h2 {
  margin-bottom: 60px;
}
.text img  {
  position: sticky;
  width: 45%;
  height: 40%;
}
.scroll-images {
  position: relative;
  width: 100%;
  height: 200vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.image {
  border-radius: 16px;
}
.first {
  position: absolute;
  top: 33%;
  left: 0;
  aspect-ratio: 580/400;
  width: 33%;
  height: 23%;
}
.second {
  position: absolute;
  top: 45%;
  right: 0;
  aspect-ratio: 280/320;
  width: 16%;
  height: 18%;
}
.third {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 43%;
  height: 27%;
}
