/* Over Write */
.master {
  height: 70vh;
}
/* Discount */
.discount {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  padding: var(--section-padding);
}

.discount .image {
  background-image: url(../imgs/contact.avif);
  background-size: cover;
  color: #fff;
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.discount .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(23 135 224 / 60%);
  z-index: -1;
}

.discount .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
}

@media (max-width: 991px) {
  .discount .image,
  .discount .form {
    flex-basis: 100%;
  }
}

.discount .form .input {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  caret-color: var(--main-color);
}

.discount .form textarea.input {
  resize: none;
  height: 200px;
}

.discount .form .input:focus {
  outline: none;
}

.discount .form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.discount .form input[type="submit"]:hover {
  background-color: var(--transparent-blue);
}
.discount .content {
  text-align: center;
  padding: 0 20px;
}

.discount .content h2 {
  font-size: 40px;
  letter-spacing: -2;
  margin: 30px 0;
}

.discount .content p {
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
}

@media (max-width: 767px) {
  .discount .content h2 {
    font-size: 25px;
  }

  .discount .content p {
    font-size: 15px;
  }
}

.discount .content img {
  width: 300px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .discount .content img {
    margin: 30px 0;
  }
}
