.services_list_v2 {
  .services_list_v2__items {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;

    .services_list_v2__item {
      box-shadow: 9px 9px 27px 0 #BABABA1A, 34px 34px 49px 0 #BABABA17, 78px 78px 66px 0 #BABABA0D, 138px 138px 78px 0 #BABABA03, 215px 215px 85px 0 #BABABA00;
      padding:21px 20px;
      border-radius:30px;

      .services_list_v2__item_info {
        background: linear-gradient(252.81deg, #FFFFFF -3.77%, #F7F7F7 90.92%);
        border-radius:30px;
        padding:30px;
        .item_info__header{
          height: 100px;
          margin-bottom: 70px;
          .title {
            font-weight: 700;
            font-size: clamp(20px,3vw,26px);
            line-height: 32px;
            letter-spacing: 0;
            vertical-align: middle;
            color:var(--grey-33);
          }
          .prev_text {
            margin-top:30px;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0;
            color: #000;
          }
        }
        .link {
          cursor:pointer;
          font-weight: 600;
          font-size: 16px;
          line-height: 20px;
          letter-spacing: 0;
          text-align: center;
          vertical-align: middle;
          color: var(--red);
          display:flex;
          gap:10px;
          align-items:center;
          &:after{
            content:url("data:image/svg+xml,%3Csvg width='18' height='5' viewBox='0 0 18 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.6464 0.146447C14.8417 -0.0488155 15.1583 -0.0488155 15.3536 0.146447L17.3536 2.14645C17.5488 2.34171 17.5488 2.65829 17.3536 2.85355L15.3536 4.85355C15.1583 5.04882 14.8417 5.04882 14.6464 4.85355C14.4512 4.65829 14.4512 4.34171 14.6464 4.14645L15.7929 3H0.5C0.223858 3 0 2.77614 0 2.5C0 2.22386 0.223858 2 0.5 2H15.7929L14.6464 0.853553C14.4512 0.658291 14.4512 0.341709 14.6464 0.146447Z' fill='url(%23paint0_linear_4389_1590)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_4389_1590' x1='-4.27474e-09' y1='0.352941' x2='13.9861' y2='10.0619' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D31C21'/%3E%3Cstop offset='1' stop-color='%23E63C3D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
          }
        }
        .price {
          margin-top:10px;
          font-weight: 700;
          font-size: clamp(20px,3vw,26px);
          line-height: 32px;
          letter-spacing: 0;
          vertical-align: middle;
          color:var(--grey-33);
        }
      }

      &:last-child {
        grid-column: 1 / -1;
        display: flex;
        justify-content:space-between;
        flex-flow: row wrap;
        gap:35px;
        background: linear-gradient(101.22deg, #D31C21 1.17%, #E63C3D 100%);
        > .services_list_v2__item_info{
          width: 100%;
          max-width:475px;
          background:transparent;
          padding:0;
          border-radius:unset;
          display: flex;
          flex-direction: column;
          justify-content: space-evenly;
          .title{
            margin-left:35px;
            text-wrap-style: balance;
            color:white;
            font-weight: 700;
            font-size: clamp(20px,3vw,37px);
            line-height: clamp(20px,3vw,40px);
            letter-spacing: 0;
            vertical-align: middle;
          }
          .link {
            margin-left:35px;
            color: white;
            &:after{
              content: url("data:image/svg+xml,%3Csvg width='18' height='5' viewBox='0 0 18 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.6464 0.146447C14.8417 -0.0488155 15.1583 -0.0488155 15.3536 0.146447L17.3536 2.14645C17.5488 2.34171 17.5488 2.65829 17.3536 2.85355L15.3536 4.85355C15.1583 5.04882 14.8417 5.04882 14.6464 4.85355C14.4512 4.65829 14.4512 4.34171 14.6464 4.14645L15.7929 3H0.5C0.223858 3 0 2.77614 0 2.5C0 2.22386 0.223858 2 0.5 2H15.7929L14.6464 0.853553C14.4512 0.658291 14.4512 0.341709 14.6464 0.146447Z' fill='white'/%3E%3C/svg%3E");
            }
          }
        }
      }
    }
  }
}