.c-faq__answer {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

body, html {
	font-family: 'Karla', sans-serif;	
	background-color: #fff;
	max-width: 1200px;
	margin: auto;
	padding: 0px 10px;
}

body *,
body *::after,
body *::before {
  box-sizing: inherit;
}

.container {
  max-width: 1200px;
  padding: 0px 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #eee;
}

.section__headline {
  font-family: 'Karla', sans-serif;	
  font-size: 62px;
  font-weight: light;
  color: #003057;
  padding-left: 15px;
  padding-top: 30px;
}

.c-faqs__headline {
  font-family: 'Karla', sans-serif;	
  text-align: left;
  color:#003057;	
  padding-left: 15px;
  font-size: 1.5em;
  margin-top: 1.5em;
  font-weight: bold;
}

.c-faqs {
  margin: 15px 0;
  padding: 0 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.c-faq {
  font-family: 'Karla', sans-serif;	
  list-style: none;
  margin: 10px 0 5px;
}

.c-faq__title {
  cursor: pointer;
  font-weight: 500;
  color:#000;
  background: white;
  z-index: 10;
  position: relative;
  font-size: 1.1em;
}
.c-faq__title:hover {
  text-decoration: underline;
}
.c-faq__title::after {
  white-space: nowrap;
  font-weight: 300;
  padding-left: 5px;
  opacity: 0;
  -webkit-transform-origin: 11px;
          transform-origin: 11px;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  display: none;
  content: ">";
}

.c-faq--active .c-faq__title {
  color: #007438;
}
.c-faq--active .c-faq__title::after {
  opacity: 1;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  display: inline-block;
}

.c-faq__answer {
  font-weight: normal;
  margin-top: -10;
  transition: all 0.1s;
  z-index: 11;
  font-size: 0.9em;
  color: #007438;
  width: auto;
}

.c-faq--active .c-faq__answer {
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 10px;
  transition: all 0.2s;
  border-radius: 3px;
  border: 1px solid #007438;
  padding: 20px;
}

@media (min-width: 780px) {
  .c-faqs {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }

  .c-faqs::before {
    opacity: 0.2;
  }

  .c-faq {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .c-faq .c-faq__title {
    width: 50%;
    padding-right: 40px;
    display: inline-block;
  }
  .c-faq .c-faq__title::after {
    display: none;
  }
  .c-faq .c-faq__answer {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 50%;
    width: 50%;
    border-color: #003057;
  }
}
.c-note {
  font-size: 0.8em;
  padding-left: 15px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.c-note:hover {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.c-note a {
  color: #003057;
}
.btn {
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: #000;
  font-size: 26px;
  font-weight: 200;
  background: #fff;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  border-style: solid;
  border-width: thin;
}

.btn:hover {
  background: #333;
  text-decoration: none;
  color: #fff;
  font-weight: 200;
}
.hover-fill {
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: #003057;
  transition: all .3s;
}
.hover-fill:hover {
  color: #f7931e;
}
.hover-fill:hover:after {
  max-width: 100%;
}
.hover-fill:after {
  content: attr(data-txthover);
  position: absolute;
  top: 0;
  left: 0;
  max-width: 0;
  color: #f7931e;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .3s ease-out;
}