.section-heading {
  /*font-family: Georgia, "Times New Roman", Times, serif;*/
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
}

#franchise-hero-section {
  width: 100%;
  height: 600px;
  background-image: url("/assets/franchise-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.franchise-form {
  padding: 15px;
  border-radius: 15px;
  background-image: linear-gradient(
    to right,
    #a52a2a,
    #b24d2a,
    #bc6c2f,
    #c28a3c,
    #c7a750
  );
}

.franchise-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.franchise-form form input {
  background-color: transparent;
}

.franchise-form form input:focus {
  background: transparent;
}

.franchise-form form input::placeholder {
  color: white;
}

.franchise-why-card {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  #franchise-hero-section {
    height: auto;
    padding-bottom: 10px;
  }
}
