.block-cta2 {
  padding: 228px 0;
  background-color: var(--tg-color-blue);
}

.block-cta2__inner {
  position: relative;
  padding-top: 68px;
}

.block-cta2__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 751px;
  max-width: 66%;
  height: 68px;
  background-color: var(--tg-color-black);
  clip-path: polygon(0 0, calc(100% - 68px) 0, 100% 100%, 0 100%);
}

.block-cta2__panel {
  position: relative;
  min-height: 388px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  background-color: var(--tg-color-black);
  color: var(--tg-color-text-white);
}

.block-cta2__title {
  text-transform: uppercase;
  color: var(--tg-color-text-white);
}

.block-cta2__title em {
  color: var(--tg-color-red);
  font-style: normal;
}

.block-cta2__buttons .tg-buttons {
  gap: 20px;
}

@media (max-width: 767px) {
  .block-cta2 {
    padding: 120px 0;
  }

  .block-cta2__inner {
    padding-top: 20px;
  }

  .block-cta2__inner::before {
    width: 221px;
    max-width: 68%;
    height: 20px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }

  .block-cta2__panel {
    min-height: 393px;
    padding: 32px 16px;
    gap: 32px;
  }

  .block-cta2__buttons {
    width: 100%;
  }

  .block-cta2__buttons .tg-buttons {
    width: 100%;
    gap: 16px;
  }

  .block-cta2__buttons .tg-buttons > a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}