@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap");
.newsletter-banner {
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  text-shadow: 2px 3px 8px #000 !important;
}
@media screen and (max-width: 768px) {
  .newsletter-banner {
    height: 250px;
  }
}
.newsletter-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.newsletter-banner .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 2rem;
}
.newsletter-banner .container .banner-text {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .newsletter-banner .container .banner-text {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 1rem;
  }
}

.main-container {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 6rem;
  background: #fff;
  color: #000;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(90deg, rgba(30, 28, 28, 0.82), rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.main-container .main-content {
  position: relative;
  z-index: 2;
}
.main-container h4.main-title {
  margin-bottom: 1.1rem;
  color: #ededed;
  font-size: 2.1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .main-container h4.main-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.main-container .sub-title {
  margin-bottom: 1rem;
  color: #ededed;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .main-container .sub-title {
    font-size: 1rem;
  }
}
.main-container .feature-list {
  color: #ededed;
  margin-bottom: unset;
}
.main-container .feature-list li {
  list-style: none;
  color: #ddd;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 768px) {
  .main-container .feature-list li {
    font-size: 0.9rem;
  }
}
.main-container .feature-list li span {
  color: rgb(74, 255, 3);
  font-weight: 700;
  margin-right: 0.5rem;
}
.main-container .news-latter {
  margin: unset;
  padding: 1.8rem 1.5rem;
  background: #ededed;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 5px;
}
.main-container .news-latter .top-title {
  color: #000;
  text-align: center;
  font-size: 1.6rem;
}
.main-container .news-latter form {
  margin: unset;
}
.main-container .news-latter form fieldset {
  margin: unset;
}
.main-container .news-latter form input {
  height: unset;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #111;
  border: 1px solid #111;
  box-shadow: unset;
}
.main-container .news-latter form input:focus {
  border-color: #B17A4E;
  box-shadow: unset;
}
.main-container .news-latter form button {
  margin: unset;
  margin-top: 0 !important;
  border: none !important;
  height: unset;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: #fff;
  background: #B17A4E!important;
  border: none;
  box-shadow: unset;
  cursor: pointer;
}
.main-container .news-latter form button:hover {
  background: #282828!important;
}