@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
.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: #1a1f29;
  margin-bottom: 32px;
  margin-top: 16px;
}
.cta-banner-2__content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  max-width: 60%;
}
.cta-banner-2__actions {
  width: 30%;
}
.cta-banner-2__image {
  width: 186px;
  min-width: 186px;
}
.cta-banner-2__image img {
  width: 100%;
  height: auto;
}
.cta-banner-2__badge {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  font-style: normal;

  font-family: "Russo One", sans-serif;
}
.cta-banner-2__title {
  color: #ff2400;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  font-family: "Russo One", sans-serif;
}
.cta-banner-2__description {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.cta-banner-2__description strong {
  color: #ff2400;
}
.cta-banner-2__promo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
.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 #fff;
  background: #55556a;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}

.cta-banner-2__button {
  border-radius: 4px;
  background: #ff2400;
  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;
  width: 100%;
}
@media (max-width: 1200px) {
  .cta-banner-2 {
    padding: 24px;
  }
  .cta-banner-2__title {
    font-size: 28px;
  }
  .cta-banner-2__promo {
    gap: 8px;
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .cta-banner-2 {
    padding: 16px;
    border-radius: 8px;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
  }
  .cta-banner-2__title {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
  .cta-banner-2__badge {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
  }
  .cta-banner-2__description {
    text-align: center;
  }
  .cta-banner-2__content {
    gap: 16px;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
  }
  .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 {
    width: 102px;
    margin-top: -50px;
  }
}
