.talk-to-expert {
  position: relative;
  background: var(--green);
  padding: 60px 0;
}

.talk-to-expert__circle-bg-left {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.talk-to-expert__circle-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.talk-to-expert__heading {
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.talk-to-expert__heading span {
  color: var(--yellow);
}

.talk-to-expert__text {
  font-size: 20px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 666px;
  text-align: center;
}

@media (max-width: 991px) {
  .talk-to-expert {
    overflow: hidden;
  }

  .talk-to-expert__circle-bg-right {
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .talk-to-expert__circle-bg-left {
    width: 200px;
    left: -40px;
  }

  .talk-to-expert__circle-bg-right {
    width: 250px;
  }

  .talk-to-expert__heading {
    margin-bottom: 16px;
  }

  .talk-to-expert__text {
    margin-bottom: 32px;
  }
}

@media (max-width: 400px) {

}