.cta-banner-2 {
  display: flex;
  width: 100%;
  padding: 24px 36px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 2px solid #00cfa6;
  background: #38384b;
}
.cta-banner-2__content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  max-width: 400px;
}
.cta-banner-2__image {
  width: 84px;
  height: 84px;
  aspect-ratio: 1;
  background-color: #00cfa6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
.cta-banner-2__image img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
}
.cta-banner-2__title {
  color: var(--Tables-txt-header_color, #fff);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.cta-banner-2__promo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-banner-2__promo-code {
  display: flex;
  width: 289px;
  height: 46px;
  padding: 0 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px dashed #00cfa6;
  background: #55556a;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-banner-2__button {
  border-radius: 4px;
  background: #00cfa6;
  display: inline-flex;
  min-width: 152px;
  height: 46px;
  padding: 0 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
@media (max-width: 1200px) {
  .cta-banner-2 {
    padding: 24px;
  }
  .cta-banner-2__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .cta-banner-2 {
    padding: 16px;
    border-radius: 8px;
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner-2__title {
    font-size: 24px;
    line-height: 28px;
  }
  .cta-banner-2__content {
    gap: 16px;
    align-items: flex-start;
    max-width: 100%;
  }
  .cta-banner-2__actions {
    align-self: stretch;
  }
  .cta-banner-2__promo {
    padding-top: 20px;
    gap: 8px;
    flex-direction: column;
  }
  .cta-banner-2__promo-code {
    width: 100%;
  }
  .cta-banner-2__button {
    width: 100%;
  }
  .cta-banner-2__image {
    width: 64px;
    height: 64px;
  }
  .cta-banner-2__image img {
    width: 30px;
    height: 30px;
  }
}
