.counter_section {
  margin: 60px 0 0 0;
  position: relative;
}
.counter_section .container {
  position: relative;
}
.counter_section:has(.section_header):before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/overlay-corevalues.png);
  background-size: 100% 100%;
}
.counter_section .column_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
  width: calc(100% + 24px);
  row-gap: 24px;
}
.counter_column {
  width: 25%;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 3px;
}
.column_wrapper:has(.counter_column:nth-child(5)) .counter_column {
  width: 20%;
}
.counter_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 10px;
  background: #ffffff;
  border: 1px solid rgba(232, 115, 26, 0.3);
  box-shadow: 0px 2px 0px rgba(232, 115, 26, 0.5);
  border-radius: 15px;
  margin: auto;
  height: 100%;
}
.counter_item h3 {
  color: var(--orange);
  margin-bottom: 5px;
}
.counter_section h5 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
}
.counter_item p {
    font-size: 14px;
}
@media (max-width: 991px) {
  .column_wrapper:has(.counter_column:nth-child(5)) .counter_column {
    width: 25%;
  }
  .counter_column {
    width: 33.33%;
  }
}

@media (max-width: 767px) {
  .column_wrapper:has(.counter_column:nth-child(5)) .counter_column {
    width: 33.33%;
  }
  .counter_column {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .column_wrapper:has(.counter_column:nth-child(5)) .counter_column {
    width: 50%;
  }
}

@media (max-width: 400px) {
  .column_wrapper:has(.counter_column:nth-child(5)) .counter_column,
  .counter_column {
    width: 100%;
  }
  .counter_item {
    max-width: 250px;
  }
}
