.cta-telegram {
  margin: 120px 0;
}

.cta-telegram__wrapper {
  padding: 60px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #00afe5 14.64%, #0094d4 85.35%), #2aabee;
  position: relative;
}

.cta-telegram__title {
  color: var(--White);
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 50%;
}

.cta-telegram__desc {
  color: var(--White);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 37px;
}

.cta-telegram__link {
  color: var(--Black);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 25px 29px 25px 60px;
  display: block;
  position: relative;
  z-index: 0;
  width: max-content;
}

.cta-telegram__link::before {
  position: absolute;
  display: block;
  content: "";
  height: calc(100% - 18px);
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--White);
  z-index: -1;
  border-radius: 50px;
}

.cta-telegram__link-icon {
  position: absolute;
  display: block;
  content: "";
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;

}

.cta-telegram__phones-img {
  position: absolute;
  right: 90px;
  bottom: -25px;
  width: 488px;
  height: auto;
  object-fit: contain;
}

.cta-telegram__telegram-img {
  position: absolute;
  bottom: 60px;
  left: 30%;
  width: 150px;
  height: 99px;
}

@media screen and (max-width: 1200px) {
  .cta-telegram {
    margin: 80px 0;
  }

  .cta-telegram__wrapper {
    padding: 75px 16px 200px;
  }

  .cta-telegram__title {
    font-size: 24px;
    margin-bottom: 16px;
    max-width: 70%;
  }

  .cta-telegram__desc {
    margin-bottom: 30px;
  }

  .cta-telegram__phones-img {
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-telegram__telegram-img {
    left: auto;
    right: 23px;
    top: 20%;
  }

  .cta-telegram__link {
    margin: 0 auto;
  }
}