.form_header {
  cursor: pointer;
  background-color: #e1e1e1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.form_header:hover {
  background-color: #bd0000;
}

.form_header img {
  width: auto;
  margin: 0px 10px -10px 0px;
}

.forminfo {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.forminfo:hover {
  text-decoration: none;
  color: #fff;
}

.form_content {
  padding: 30px 0px 30px 0px;
  margin: 0px 0px 40px 0px;
}

.ac-container {
  width: 100%;
  margin: 30px auto 30px auto;
  text-align: center;
}

.ac-container input {
  display: none;
}

.ac-container label {
  padding: 49px 100px 21px 100px;
  margin-bottom: 0px;
  position: relative;
  z-index: 20;
  display: block;
  height: auto;
  cursor: pointer;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 1%, #eaeaea 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#eaeaea));
  background: -webkit-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
  background: -o-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
  background: -ms-linear-gradient(top, #ffffff 1%,#eaeaea 100%);
  background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );
  /*box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3), 1px 0px 0px 0px rgba(255,255,255,0.9) inset, 0px 2px 2px rgba 0,0,0,0.1);*/
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.ac-container label:hover {
  /*background: #0088ff;*/
}

.ac-container label:hover h1 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.ac-container label p {
  color: #666;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -3px;
  line-height: 60px;
  text-align: center;
}

.ac-container label:hover, 
.ac-container label h3:hover {
  /*color: #fff;*/
}

.ac-container input:checked+label,
.ac-container input:checked+label:hover {
  /*background: #eaeaea;*/
  color: #333;
  /*text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);*/
  /*box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3), 0px 2px 2px rgba(0,0,0,0.1);*/
}

.ac-container input:checked+label:hover {
  /*background: #0088ff;*/
}

.ac-container input:checked+label p {
  color: #000;
}

.ac-container label:hover::after,
.ac-container input:checked+label:hover::after
 {
  content: '';
  position: absolute;
  width: 43px;
  height: 40px;
  right: 13px;
  top: 54px;
  background: transparent url(../../img/arrow_down.png) no-repeat center center; 
}

.ac-container input:checked+label:hover::after{
  /*background-image: url(../../img/arrow_up.png);*/
  background: transparent url(../../img/arrow_up.png) no-repeat center center; 
}

.ac-container article {
  /*background: rgba(255, 255, 255, 0.5);*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 0px;
  position: relative;
  z-index: 10;

  -webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
  transition: height 0.3s ease-in-out, box-shadow 0.6s linear;

}
.ac-container article p {
  font-size: 23px;
  line-height: 39px;
  margin: 5% 7%;
  text-align: center;
}

.form_header-grey {
  background-color: #7e7e7e;
}

.form_header-grey:hover {
  background-color: #7e7e7e;
}

.ac-container input:checked ~ article{
  -webkit-transition: height 0.3s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: height 0.3s ease-in-out, box-shadow 0.1s linear;
  -o-transition: height 0.3s ease-in-out, box-shadow 0.1s linear;
  -ms-transition: height 0.3s ease-in-out, box-shadow 0.1s linear;
  transition: height 0.3s ease-in-out, box-shadow 0.1s linear;
    /*box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);*/
}

.ac-container input:checked ~ article{
  height: auto;
  padding: 30px 0px 30px 0px;
  border-bottom: solid 2px #666;
}

@media screen and (max-width:1300px) {
  .ac-container article p {
    font-size: 30px;
    line-height: 42px;
    margin: 5% 7%;
    text-align: center;
  }
}