.new-letter {
  /* background-color: #f3f1ff; */
  width: 100%;
  padding: 48px 0;
  /* border-radius: 36px; */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-letter-title {
  font-size: clamp(
    22px,
    calc(22px + (36 - 22) * ((100vw - 350px) / (1800 - 350))),
    36px
  );
  font-weight: 700;
}

.new-letter-desc {
  font-size: clamp(
    16px,
    calc(16px + (20 - 16) * ((100vw - 350px) / (1800 - 350))),
    20px
  );
  font-weight: 300;
}

.email {
  padding: 12px 24px;
  border-radius: 2rem;
  border: none;
  width: 340px;
  max-width: 100%;
}

.subscribe_btn {
  border: none;
  background: linear-gradient(to bottom, #247cf8, #0463fb);
  border-radius: 2rem;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.telegram{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-fit: contain;
}

.news-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.emailing_loader{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  opacity: 0.6;
  z-index: 9999;
}

@media (max-width: 950px) {
  .new-letter {
    padding: 16px 32px 48px 32px;
  }
}
