.cta-green__container {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 44px -9px rgba(0, 0, 0, 0.08);
  background: #25bb4d;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .cta-green__container {
    flex-direction: column-reverse;
    padding: 16px;
  }
}
.cta-green__content {
  flex-shrink: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-green__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .cta-green__title {
    font-size: 24px;
  }
}
.cta-green__description {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .cta-green__description {
    font-size: 16px;
    font-weight: 300;
  }
}
.cta-green__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.15s;
}
.cta-green__button:hover {
  box-shadow: 0 4px 44px -9px rgba(255, 255, 255, 0.68);
}
@media screen and (max-width: 768px) {
  .cta-green__button {
    width: 100%;
  }
}
.cta-green__image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  max-width: 580px;
  flex-shrink: 1;
  display: flex;
}
.cta-green__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.min.css.map */