.new_year_banner {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}
.new_year_banner_content {
  width: 600px;
  height: 600px;
  position: relative;
}
.new_year_banner_content_overlay {
  width: 100%;
  height: 100%;
  background: #2e3736bd;
  position: absolute;
}
.new_year_banner_content_close {
  width: 40px;
  height: 40px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  right: -20px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.new_year_banner_content_form {
  width: 49%;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.new_year_banner_content_form_input {
  width: 45%;
  padding: 5px;
  border-radius: 10px;
  border: none;
  height: 40px;
  text-align: center;
}
.new_year_banner_content_form_submit {
  margin-top: 15px;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #44c054;
  color: white;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
}
.new_year_banner_content_img > img {
  max-width: 100%;
  height: auto;
}
.new_year_banner_content_form > form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .new_year_banner_content {
    width: 400px;
    height: 400px;
  }
  .new_year_banner_content_close {
    width: 30px;
    height: 20px;
    top: -15px;
    right: -15px;
    font-size: 15px;
  }
  .new_year_banner_content_form {
    width: 60%;
    bottom: 10px;
    left: 10px;
  }
  .new_year_banner_content_form_input {
    height: 20px;
  }
  .new_year_banner_content_form_submit {
    margin-top: 10px;
    height: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 13px;
  }
}
@media (max-width: 450px) {
  .new_year_banner_content {
    width: 300px;
    height: 300px;
  }
  .new_year_banner_content_close {
    width: 25px;
    height: 25px;
  }
  .new_year_banner_content_form {
    width: 60%;
    bottom: 10px;
    left: 10px;
  }
  .new_year_banner_content_form_input {
    height: 15px;
    font-size: 10px;
    width: 44%;
  }
  .new_year_banner_content_form_submit {
    margin-top: 10px;
    height: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 10px;
  }
}
