* {
  box-sizing: border-box;
}

:root {
  --borderRadius: 0.5rem;
}

body {
  background-color: #f0f0f0;
}

.franchising {
  /* padding: 8rem 3% 0 3%; */
  margin: 8rem 3% 4rem 3%;
  height: 85vh;
  background: url(../img/franchising.jpg) center/cover no-repeat;
  border-radius: var(--borderRadius);
  position: relative;
}

.franchising-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--borderRadius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.franchising-text {
  text-align: center;
  color: #fff /*var(--white) */;
  font-size: 3rem;
  /* font-weight: 500; */
}

.franchising-section h1 {
  /* color: var(--green); */
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  /* padding: 2rem 3%; */
}

.franchising-about {
  /* padding - top right bottom left */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0 3%;
}

.franchising-about .image {
  flex: 1 1 35rem;
}

.franchising-about .content {
  flex: 1 1 55rem;
}

/* .franchising-about {
  background-image: url('../img/patern.jpg');
  background-size: cover;
  background-position: center;
} */

.franchising-about .image h1 {
  font-size: 3.5rem;
}

.franchising-about .image img {
  width: 80%;
}

/*  */

.franchising-about .content h3 {
  color: var(--black);
  font-size: 4rem;
  padding-bottom: 0.5rem;
}

.franchising-about .content p,
.franchising-about .content ul {
  color: var(--light-color);
  font-size: 1.75rem;
  padding: 0.25rem 0;
  line-height: 1.5;
}

.franchising-about .content ul {
  padding: 0.75rem 0 2rem 4rem;
}

.franchising-details {
  text-align: center;
  color: var(--black);
  padding: 4rem;
}

.franchising-details p {
  color: var(--light-color);
  font-size: 2rem;
  padding-bottom: 0.5rem;
}

.franchising-details h3 {
  font-size: 3rem;
  font-weight: 500;
  padding: 0 0 2rem;
}

.franchising-details .email {
  text-transform: none;
}

.faq-main {
  /* background: green; */
  padding: 0rem 3%;
}

.faq-main h1 {
  text-align: center;
  color: var(--black);
  font-size: 3rem;
  padding-top: 3rem;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq {
  background-color: transparent;
  border: 1px solid #9fa4a8;
  border-radius: 0.5rem;
  margin: 10px 0;
  padding: 10px;
  position: relative;
  overflow: hiden;
  /* all 0.2s linear; */
  transition: 0.3s ease;
}

.faq.active {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* .faq.active::before,
.faq.active::after {
  color: #2ecc71;
  font-size: 7rem;
  position: absolute;
  opacity: 0.2;
  top: 20px;
  left: 20px;
  z-index: 0;
} */

/* .faq.active::before {
  color: #3498db;
  top: -10px;
  left: -30px;
  transform: rotateY(180deg);
} */

.faq-title {
  margin: 0 35px 0 10px;
  color: var(--light-color);
  font-size: 2rem;
}

.faq-answer {
  display: none;
  border-top: 0.5px dotted gray;
  padding-top: 10px;
  margin: 15px 0 0 10px;
}

.faq.active .faq-answer {
  display: block;
  color: var(--light-color);
  font-size: 2rem;
}

.faq-toggle {
  background: transparent;
  /* border: 1px solid red; */
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;

  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  height: 30px;
  width: 30px;
}

.faq-toggle:focus {
  outline: 0;
}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #fff;
  display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle {
  background-color: #9fa4a8;
}

@media screen and (max-width: 1020px) {
  /* html {
    font-size: 50%;
  } */
  .franchising-about .image {
    display: grid;
    justify-items: center;
    justify-content: center;
  }

  .franchising {
    height: 70vh;
  }

  .franchising-about .image img {
    width: 50%;
  }
}

@media screen and (max-width: 720px) {
  .franchising-about .image {
    display: grid;
    justify-items: center;
    justify-content: center;
  }

  .franchising {
    height: 60vh;
  }

  .franchising-about .image img {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 50%;
  }

  .franchising {
    height: 60vh;
  }

  .franchising-about .image {
    display: grid;
    justify-items: center;
    justify-content: center;
  }

  .franchising-about .image h1 {
    font-size: 4rem;
  }

  .franchising-about .image img {
    width: 50%;
  }
}
