.pic-with-grid {
  padding: 100px 0;
}
.pic-with-grid .new-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pic-with-grid .description {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 650px;
  margin-bottom: 50px;
}
.pic-with-grid .blocs-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4em;
}
.pic-with-grid .blocs-container .ctn {
  max-width: 320px;
  width: 100%;
}
.pic-with-grid .label {
  padding: 6px 14px;
  gap: 7px;
  border: 1px solid rgba(49, 47, 124, 0.4);
  border-radius: 20px;
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.pic-with-grid .new-h2 {
  max-width: 600px;
  text-align: center;
}
.pic-with-grid .blocs-container .ctn > div {
  padding: 0 10px;
}
.pic-with-grid .blocs-container .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  margin: 0 10px 20px;
}
.pic-with-grid .blocs-container .image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #00000020;
}
.pic-with-grid .blocs-container span {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
.pic-with-grid .blocs-container p {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0.8;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .pic-with-grid .description {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .pic-with-grid .blocs-container {
    flex-direction: column;
    gap: 50px;
  }
  .pic-with-grid .blocs-container .ctn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pic-with-grid .blocs-container span,
  .pic-with-grid .blocs-container p {
    text-align: center;
  }
}