@import url("https://fonts.googleapis.com/css?family=Open Sans:400,400i,700");
*, *::after, *::before{
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

div.c{
  position: relative;
  margin:2em;
}
input{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  visibility: 0;
}
h1{
  background:#1e81b0;
  color:white;
  padding:1em;
  position: relative;
  font-size:24px;
}
label::before{
  content:"";
  display: inline-block;
  border: 10px solid transparent;
  border-left:20px solid white;
}
label{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
div.p{
  max-height:0px;
  overflow: hidden;
  transition:max-height 0.4s;
  background-color: white;
  box-shadow:0 0 90px 0 rgba(0, 0, 0, 0.2);
}
div.p p {
  padding:0.5em;
}
input:checked ~ h1 label::before{
  border-left:15px solid transparent;
  border-top:10px solid white;
  margin-top:5px;
  margin-right:10px;
}
input:checked ~ h1 ~ div.p{
  max-height:370px;
}
a{
  color:steelblue;
}