.container {
  .header {
    text-align:center;
    margin-bottom: 30px;
  }
}

.t_tizer_v2_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  grid-gap: 34px;
  justify-content: center;

  .t_tizer_v2_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius24);
    box-shadow: 0 0 0 0 #C7C7C71A;
    background: #D31C21;
    padding:clamp(16px,3vw,34px);
    .item_img {
      text-align: center;
    }

    .t_tizer_v2_item_info {
      .t_tizer_v2_item_info__title {
        font-family: Montserrat;
        font-weight: 700;
        font-size: var(--font-size20);
        text-align: center;
        margin: 26px auto;
        line-height: 100%;
        letter-spacing: 0;
        color:white;
      }

      .t_tizer_v2_item_info__info {
        color:white;
        margin-top: 15px;
        font-family: Montserrat;
        font-weight: 500;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
      }
    }
  }
}