.protect-block .protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.protect-block .protect-grid .protect-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: transparent;
  padding: 1.2rem 1.2rem;
  border-radius: 12px;
  box-sizing: border-box;
}
.protect-block .protect-grid .protect-item .protect-icon {
  width: 66px;
  height: 77px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.protect-block .protect-grid .protect-item .protect-label {
  margin-left: 60px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  white-space: normal;
  text-align: left;
  line-height: 1.2;
  flex: 1;
}
@media (max-width: 1200px) {
  .protect-block .protect-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: center;
    width: 100%;
  }
  .protect-block .protect-grid .protect-item {
    width: 100%;
    max-width: 213px;
    margin: 0 auto;
    justify-content: center;
    padding: 0.3rem 0rem;
  }
  .protect-block .protect-grid .protect-item .protect-label {
    margin-left: 41px !important;
    font-size: 22px;
    text-align: center;
  }
}