
.cards-fullwidth-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.cards-fullwidth-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none; 
}

.cards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cards-background img {
    width: 100%;
    min-width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cards-block {
    position: relative;
    z-index: 2;
    width: 100%;  
}

#numbers-block .cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
}

#numbers-block .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 490px;
    padding: 30px;
    gap: 20px;
    border-radius: 10px;
    background: transparent;
    overflow: hidden;
}

#numbers-block .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
    border-radius: 10px;
}

#numbers-block .card-number {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
    line-height: 100%;
}

#numbers-block .card-description {
    color: var(--secondary-text);
}

@media (max-width: 1530px) {
    #numbers-block .cards-wrapper {
    flex-wrap: wrap ;
    justify-content: center ;
    gap: 20px ;
  }
}

@media (max-width: 1200px) {
  .cards-fullwidth-wrapper {
    min-height: auto ;
    padding: 60px 0 ;
  }
  
  
  #numbers-block .card-item {
    min-width: calc(50% - 20px) ;
    max-width: 100% ;
    margin-bottom: 20px ;
  }
  
  .cards-background img {
    height: 100% ;
    min-height: 500px ;
    object-position: center ;
  }
}

@media (max-width: 812px) {
  #numbers-block .card-item {
    min-width: 100% ;
  }
}

@media (max-width: 768px) {
  #numbers-block .card-item {
    min-width: 100% ;
    max-width: 100% ;
  }
  
  .cards-background img {
    min-height: 600px ;
  }
}

@media (max-width: 480px) {
    .cards-fullwidth-wrapper {
        margin-bottom: 40px;
    }
}
