.educationmctosal {
  float: left;
  width: 37%;
  padding: 0 1em;
}

.educationmc {
  position: relative;
  margin-bottom: 1px;
  width: 275%;
  color: #f3f1f1;
  overflow: hidden;
}

.educationmc input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.educationmc label {
  border-radius: 10px;	
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #1a1a1a;
  line-height: 3;
  cursor: pointer;
  text-shadow: 0 1px 0 #333131;
  font-size: 17px;
}

.educationmc-content {
  border-radius: 14px;	
  max-height: 0;
  overflow: hidden;
  background: #0d4b8e;
  transition: max-height .40s;
  font-size: 14px;
  color: #fffdfd;
  text-shadow: 0 1px 0 #292727;
}
.educationmc-content {
  background: #3d4d4d;
}
.educationmc-content p {
  margin: 1em;
}
.educationmc input:checked ~ .educationmc-content {
  max-height: 100vh;
}

.educationmc label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .40s;
  -o-transition: all .40s;
  transition: all .40s;
}
.educationmc input[type=checkbox] + label::after {
  content: "^";
}
.educationmc input[type=radio] + label::after {
  content: "\25BC";
}
.educationmc input[type=checkbox]:checked + label::after {
  transform: rotate(180deg);
}
.educationmc input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}