/* HERO HEADER */
.section-hero {
  height: 100vh;
  background-color: var(--purple);
  background: url("../assets/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
  /* gap: 10rem; */
}
.hero-content {
  min-height: 90%;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content p {
  font-size: 1.2rem;
}

.down-arrow-container {
  text-align: center;
  justify-self: end;
}
.down-arrow {
  width: 30px;
}
/* ==================== SECTION START ==================== */
/* ======== ABOUT COLLECTION POINT FRANCHISE PAGE ======== */
/* ======================================================= */

.section-about-collection-point-franchise {
  padding: 2rem 0;
}

.about-collection-point-franchise {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.collection-point-image {
  justify-self: end;
  /* text-align: center; */
}
.collection-point-image img {
  max-width: 100%;
  /* height: 80vh; */
  border-radius: 10px;
}

/* ==================== SECTION START ==================== */
/* ======== WHY CHOOSE US ======== */
/* ======================================================= */
.section-why-choose-us {
  padding: 2rem 0;
  background-color: var(--white-grey);
}

.why-choose-us h2 {
  color: var(--purple);
  text-align: center;
}
.why-choose-us ul li {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.why-choose-us ul li::marker {
  color: var(--purple);
}
.why-choose-us .choosing-reasons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-choose-us .choosing-reasons .reason {
  background-color: white;
  padding: 1rem 1.5rem;
  border-left: 1rem solid var(--purple);
  box-shadow: 1px 5px 5px 2px rgba(136, 136, 136, 0.226);
  border-radius: 8px;
}

/* ==================== SECTION START ==================== */
/* ======== FRANCHISE BUSINESS SUPPORT FROM PRAAVA ======== */
/* ======================================================= */
.section-business-support {
  padding: 2rem 0;
}

.business-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.business-support .image img {
  max-width: 100%;
  border-radius: 10px;
}

.business-support-content h2 {
  color: var(--purple);
}

.business-support-content .supports {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-support-content .supports .support {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.business-support-content .supports .support span {
  background-color: var(--purple);
  padding: 1rem 1.3rem;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}
/* ==================== SECTION START ==================== */
/* ======== BENEFITS OF FRANCHISEE ======== */
/* ======================================================= */

.section-benefits-of-franchisee {
  padding: 2rem 0;
  background-color: var(--white-grey);
}
.benefits-of-franchisee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefits-of-franchisee h2 {
  color: var(--purple);
}

.benefits-of-franchisee .image img {
  max-width: 100%;
  border-radius: 10px;
}

.benefits-of-franchisee .benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}
.benefits-of-franchisee .benefits .benefit {
  background-color: white;
  padding: 1rem;
  text-align: center;
  box-shadow: 1px 5px 5px 2px rgba(136, 136, 136, 0.226);
  border-radius: 8px;
}
/* ==================== SECTION START ==================== */
/* ======== REQUIREMENTS ======== */
/* ======================================================= */
.section-franchisee-requirements {
  padding: 2rem 0;
}
.franchisee-requirements h2 {
  color: var(--purple);
}

.requirements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.requirement-heading {
  display: flex;
  gap: 0.5rem;
}
.requirement-heading img {
  width: 1.2rem;
}

.requirements .requirement h5 {
  font-size: 1.2rem;
}
.requirements .requirement div,
.requirements .requirement p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.137);
  padding: 0.8rem 0;
}
/* ==================== SECTION START ==================== */
/* ======== CONTACT DETAILS ======== */
/* ======================================================= */
.section-contact-details {
  padding: 2rem 0;
  background-color: var(--white);
  text-align: center;
}
.contact-details h2 {
  color: var(--purple);
}
.contact-details p {
  /* color: var(--purple); */
  font-size: 1rem;
}
.contact-info a {
  text-decoration: none;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  font-size: 1rem;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* ==================== SECTION START ==================== */
/* ======== APPLICATION ======== */
/* ======================================================= */

.application-image {
  background-color: black;
  background: url(../assets/images/background.png);
  background-size: cover;
  background-position: right;
  height: 100vh;
}
.application-header {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.section-application-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  /* gap: 2rem; */
}
.application-form-header {
  text-align: center;
  color: var(--purple);
}
.section-application-form form {
  padding: 3rem;
}
.input-field-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.input-field-container label {
  font-size: 1rem;
  color: var(--purple);
  font-weight: 600;
}
.input-field-container input {
  padding: 0.5rem;
}
.section-application-form .submit-button {
  text-align: center;
}
/* ==================== SECTION START ==================== */
/* ======== THANK YOU ======== */
/* ======================================================= */
.thank-you {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you p {
  font-size: 1rem;
}

.thank-you p a {
  text-decoration: none;
  font-weight: 600;
  color: var(--purple);
}
