.cta-banner-2 {
  display: grid;
  width: 100%;
  grid-template-columns: 3fr 1fr;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 24px;
}
.cta-banner-2__content {
  display: flex;
  align-items: center;
  border-radius: 24px;
  background: #38384b;
}
.cta-banner-2__info {
  padding: 40px 27px 40px 0;
}
.cta-banner-2__image {
  width: 288px;
  min-width: 288px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cta-banner-2__image img {
  width: 288px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-banner-2__title {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 8px;
}
.cta-banner-2__description {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
.cta-banner-2__actions {
  padding: 43px 24px;
  border-radius: 24px;
  background: #55556a;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cta-banner-2__promo {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-direction: column;
}
.cta-banner-2__promo-code {
  display: flex;
  height: 46px;
  padding: 0 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  border: 1px dashed #fff;
  background: rgba(255, 255, 255, 0.21);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-banner-2__button {
  border-radius: 4px;
  background: #ff2400;
  color: #fff;
  display: inline-flex;
  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: 1500px) {
  .cta-banner-2 {
  }
  .cta-banner-2__title {
    font-size: 30px;
    line-height: 34px;
  }
  .cta-banner-2__image {
    width: 250px;
    min-width: 250px;
  }
  .cta-banner-2__image img {
    width: 250px;
  }
  .cta-banner-2__description {
    font-size: 16px;
    line-height: 20px;
  }
  .cta-banner-2__content {
  }
}
@media (max-width: 767px) {
  .cta-banner-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cta-banner-2__title {
    font-size: 24px;
    line-height: 28px;
  }
  .cta-banner-2__content {
    padding: 0 16px 21px 16px;
    gap: 0px;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
  }
  .cta-banner-2__info {
    padding: 0;
  }
  .cta-banner-2__description {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
  .cta-banner-2__actions {
    align-self: stretch;
    width: 100%;
  }
  .cta-banner-2__promo {
    gap: 8px;
    flex-direction: column;
  }
  .cta-banner-2__promo-code {
    width: 100%;
  }
  .cta-banner-2__button {
    width: 100%;
  }
  .cta-banner-2__image {
    margin-top: -20px;
    width: 160px;
    height: 122px;
    min-width: unset;
  }
  .cta-banner-2__image img {
    width: 100%;
    height: auto;
    position: static;
    transform: translate(0, 0);
  }
}
