.header__language-switcher {
  width: unset;
}

.faq-accordion__title,
.faq-intro__title,
.faq__title {
  font-size: 2.25rem;
  font-weight: 700;
}
.faq-intro {
  background-image: url("https://ik.imagekit.io/testcloud/SultanSeeds/photo/about-page__intro.png?updatedAt=1725101210202");
  height: 16.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.faq-intro__title {
  color: #fff;
  text-align: center;
}
.faq-accordion__title {
  margin: 4.5rem 0;
  text-align: center;
  color: #272a2f;
}
.faq-accordion__container {
  margin-bottom: 11.5rem;
}
.accordion {
  justify-content: flex-start;
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.1fr 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 1rem;
  border: 1px solid #eaecf0;
  background: #f9fafb;
}
.plus,
img {
  display: inline-block;
}
.minus,
.plus {
  min-width: 24px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.accordion:not(:last-child) {
  margin-bottom: 1.5rem;
}
.accordion .top {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2.5rem;
  display: flex;
  position: relative;
}
.accordion .top .text {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: wrap;
}
.accordion .top img {
  width: 2rem;
  align-self: flex-start;
  margin-bottom: 0.15rem;
  margin-left: 1.5rem;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
.minus {
  display: none;
}
.accordion .top input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  appearance: none;
}
.accordion .bottom {
  padding-inline: 2.5rem;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.accordion .bottom .text {
  margin: 0;
  padding-bottom: 2rem;
}
.accordion:has(input:checked) {
  grid-template-rows: 0.1fr 1fr;
}
.accordion:has(input:checked) .top img {
  transform: rotateZ(45deg);
}
.accordion:has(input:checked) .top .text {
  color: #9a430e;
}
.accordion:has(input:checked) .plus {
  display: none;
}
.accordion:has(input:checked) .minus {
  display: inline-block;
}
.faq {
  background-image: url(https://ik.imagekit.io/testcloud/SultanSeeds/photo/products3.webp?updatedAt=1725167494486);
  background-size: cover;
  height: 32rem;
  display: flex;
  justify-content: center;
}
.faq__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.faq__title {
  color: #fff;
}
.faq__description {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 1.5rem 0;
}
.faq__button {
  border-radius: 0.75rem;
  background: #9a430e;
  padding: 1rem 1.5rem;
  border: none;
  outline: 0;
  cursor: pointer;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
}
.ask-modal__button:hover,
.faq__button:hover {
  background-color: #bd5c21;
}
.ask-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #272a2f62;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 110;
}
.ask-modal__card,
textarea {
  border-radius: 0.5rem;
  background: #fff;
  width: 100%;
}
/* .disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
} */
.ask-modal.show {
  display: flex;
}
.ask-modal__card {
  max-width: 37rem;
  padding: 1rem 2rem;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ask-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #f2f4f7;
  padding-bottom: 1rem;
}
.ask-modal__nav svg {
  cursor: pointer;
}
.ask-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
}
form {
  width: 100%;
}
.ask-modal__content input,
.ask-modal__content input::placeholder,
textarea,
textarea::placeholder {
  color: #667085;
  font-size: 0.875rem;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 1.25rem;
}
.ask-modal__content {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ask-modal__content input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #f1f2f4;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  outline: none;
  border-radius: 0.5rem;
}

textarea {
  padding: 0.625rem 0.875rem;
  border: 1px solid #f1f2f4;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  resize: none;
  outline: 0;
  height: 8rem;
}
.ask-modal__button {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: #9a430e;
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  outline: 0;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .faq {
    height: 21rem;
  }
  .faq-accordion__title {
    margin-bottom: 1.5rem;
  }
  .accordion .top .text {
    font-size: 1rem;
    font-weight: 600;
  }
  .faq-accordion__container {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .ask-modal__card {
    max-width: calc(100% - 2rem);
  }
}
@media screen and (max-width: 680px) {
  .faq-intro {
    height: 5.9rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .faq-intro__title,
  .faq__title {
    font-size: 1.5rem;
  }
  .accordion .top .text {
    font-size: 0.875rem;
    font-weight: 600;
  }
  .faq-intro {
    height: 5.25rem;
    margin-bottom: 2rem;
  }
  .faq__title {
    text-align: center;
  }
  .faq {
    height: 21rem;
  }
}
