.home-driven {
  position: relative;
  padding: 190px 0 140px;
  background-image: var(--home-driven-bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
   color: #fff;
     font-size: var(--f16);
}
.change-button{
    background-color: #fff;
 }
.home-driven::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 91, 172, 0.52);
}

.home-driven-inner {
  position: relative;
  z-index: 1;
}

.home-driven-header {
  text-align: center;
}

.home-driven-title {
  max-width: 920px;
  margin: 0 auto;
  font-size: var(--f48);
  font-weight: 700;
}

.home-driven-subtitle {
  max-width: 860px;
  margin: 40px auto 50px;


}

.home-driven-data ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px;
  list-style: none;
  max-width: 1140px;
  margin: 90px auto 0 ;
}

.home-driven-data li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 138px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 91, 172, 0.2);
      border-radius: 0 15px 0 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  font-weight: 400;
  
}

.home-driven-data li h1 {
  display: block; 
     font-size: 50px;
    line-height: 1;
    font-weight: 600;
    font-family: 'DIN';
    margin-bottom: 20px;
}



@media (min-width: 768px) {
  
  .home-driven-data ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .home-driven-data li h1 {
          font-size: var(--f72);
}

}
