@charset "UTF-8";
/* Color Variables -  Named how they are in figma */
/* Formatting Variables */
/* Container Variables */
/* Font-size Variables */
/* Extendables */
/* For limiting all containers to same width.*/
.text_with_accordian_background {
  color: #5d6375;
}
.text_with_accordian_background .text_with_accordian {
  padding: 3rem;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container {
  display: flex;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_card {
  width: 100%;
  padding: 3rem;
  background: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_card .text_with_accordian_heading {
  color: #2d3655;
  margin-bottom: 1.5rem;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_card h3 {
  font-size: 1.71rem;
  font-weight: 600;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_card h4 {
  font-size: 1rem;
  font-weight: 600;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_card h5 {
  color: #bcbcbc;
  padding-top: 0.8rem;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions {
  margin-top: 2rem;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question {
  overflow: hidden;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question a {
  color: #49b52c;
  text-decoration: underline;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question a:hover {
  color: #40a225;
  text-decoration: none;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question h3 {
  line-height: 4.42rem;
  font-size: 1.28rem;
  font-style: normal;
  font-weight: 500;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question label {
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question label::after {
  content: "❯";
  width: 1.5em;
  height: 1.5em;
  font-size: 1.3rem;
  text-align: center;
  transition: all 0.35s;
  transform: rotate(-90deg);
  color: #40a225;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question .text_with_accordian_question_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f5f6f8;
  border: 1px solid #e7e9ee;
  border-bottom: 0px;
  box-sizing: border-box;
  border-left: 4px solid #2d3655;
  z-index: 1;
  position: relative;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question .text_with_accordian_content {
  max-height: 0;
  width: 100%;
  line-height: 1.71rem;
  position: relative;
  color: #5d6375;
  transition: all 0.35s;
  visibility: hidden;
  background: #FBFBFB;
  border: 1px solid #e7e9ee;
  border-top: 0px;
  box-sizing: border-box;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question .text_with_accordian_content p {
  margin: 0;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question input[type=checkbox] {
  z-index: -1;
  position: absolute;
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question input:checked + .text_with_accordian_question_label::after {
  transform: rotate(90deg);
}
.text_with_accordian_background .text_with_accordian .text_with_accordian_container .text_with_accordian_questions .text_with_accordian_question input:checked ~ .text_with_accordian_content {
  max-height: 100vh;
  padding: 1em;
  visibility: visible;
}
