input {
  display: none;
}
input + label {
  display: inline-block
}
input ~ .tab {
  display: none;
  text-align: center;
}
.tab h2 {
  margin: 12px 0 12px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #A2D45E;
  font-family: "new-spirit", serif;
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 700;
  color: #A2D45E;
}
.tab p {
  margin: 12px 0 36px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #A2D45E;
  color: #333;
}
.tab h3 {
  color: #A2D45E;
  border-bottom: 2px solid #A2D45E;
  padding: 0 0 12px 0;
  margin: 24px 0 24px 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
#tab1:checked ~ .tab.content1, #tab2:checked ~ .tab.content2, #tab3:checked ~ .tab.content3 {
  display: block;
}
input + label {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  border-bottom: none;
  border-left: 2px solid #FFF;
  background: #DA364C;
  color: #FFF;
  padding: 12px 0 12px 0;
  border-radius: 12px 12px 0 0;
  position: relative;
  width: 32%;
  text-align: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1.2rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input:hover + label, input:focus + label {
  font-size: 1.0rem;
  line-height: 1.0rem;
}
input:checked + label {
  color: #DA364C;
  background: #FFF;
  border-top: 2px solid #DA364C;
  border-right: 2px solid #DA364C;
  border-bottom: none;
  border-left: 2px solid #DA364C;
}
input ~ .tab {
  padding: 24px;
  border-top: 2px solid #DA364C;
  border-right: 2px solid #DA364C;
  border-bottom: 2px solid #DA364C;
  border-left: 2px solid #DA364C;
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  margin: -5px 0 24px 0;
}
.accordion {
  background: none;
  color: #DA364C;
  padding: 0 0 0 0;
  margin: 6px 0 6px 0;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3rem;
  border: none;
  font-weight: 700;
  display: block;
  width:100%;
}
.active, .accordion:hover {
  background: none;
  color: #555;
}
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0rem;
  line-height: 1.4rem;
  font-weight: 400;
}