/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
.wp-block-fl-frequently-asked-questions-grid {
  margin: 0;
  width: 99.7vw;
  position: relative;
  left: calc(-50vw + 50%);
}

.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid {
  padding: 56px 20px;
  margin: 0 auto;
}

.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid--bkg {
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  /* identical to box height, or 24px */
  text-align: center;
  color: #26313A;
  margin-bottom: 8px;
  position: relative;
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_title {
    font-size: 36px;
  }
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  /* or 20px */
  text-align: center;
  color: #26313A;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-description {
    font-size: 18px;
  }
}

.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_grid {
    -moz-column-gap: 16px;
         column-gap: 16px;
    flex-wrap: nowrap;
  }
  .wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_grid > div {
    flex-basis: 50%;
  }
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_grid > div {
  flex-basis: 100%;
}

.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 16px;
  background: #F0E1CC;
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question:hover {
  cursor: pointer;
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .grid_text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .grid_text .text_category {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  /* or 22px */
  color: #26313A;
  margin: 0 0 8px;
  font-family: "Founders SemiBold";
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .grid_text .text_category {
    font-size: 20px;
  }
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .grid_text .text_question {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  /* or 22px */
  color: #26313A;
  margin: 0 0 8px;
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .grid_text .text_question {
    font-size: 18px;
  }
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .question_arrow {
  margin-left: 7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #26313A;
  transition: transform 300ms ease;
}
.wp-block-fl-frequently-asked-questions-grid .grid_question-wrapper .grid_question .question_arrow.open {
  transform: rotate(0.25turn);
  transition: transform 300ms ease;
}
.wp-block-fl-frequently-asked-questions-grid .question_answer-hidden {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 16px;
  background: #F0E1CC;
  border-top: solid 5px #67737c;
  -webkit-animation: answerEntrance 500ms ease;
          animation: answerEntrance 500ms ease;
}
.wp-block-fl-frequently-asked-questions-grid .question_answer-hidden .answer-hidden_answer {
  margin: 0;
}
.wp-block-fl-frequently-asked-questions-grid .question_answer-hidden .answer-hidden_answer .answer_link {
  font-weight: 600;
  color: #009940;
}
@-webkit-keyframes answerEntrance {
  0% {
    height: 20px;
    margin-top: -30px;
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    height: auto;
    margin: 0;
    opacity: 1;
  }
}
@keyframes answerEntrance {
  0% {
    height: 20px;
    margin-top: -30px;
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    height: auto;
    margin: 0;
    opacity: 1;
  }
}

.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper {
  position: relative;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper .button-wrapper_button {
  width: auto;
  background-color: transparent;
  padding: 8px 12px 8px;
  border: 1px solid #26313A;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper .button-wrapper_button .button-wrapper_button-arrow {
  margin-left: 7px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #26313A;
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper .button-wrapper_button a {
  font-size: 16px;
  font-weight: 600;
  color: #26313A;
  line-height: 100%;
  font-family: "Founders SemiBold";
}
.wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper .button-wrapper_button a:hover {
  cursor: pointer;
}
@media (min-width: 775px) {
  .wp-block-fl-frequently-asked-questions-grid .frequently-asked-questions-grid_button-wrapper {
    display: flex;
  }
}

/*# sourceMappingURL=style-index.css.map*/