.entry-header h2 {
    margin: 8px 0px;
    padding-bottom: 10px;
    font-size: 24px;
    line-height: 1;
    border-bottom: 2px solid #85cf90;
    color: #85cf90;
}

.flyer{
    margin: auto;
    background-color: #85cf90;
    border-radius: 5px 5px 5px 5px;
    padding: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.flyer-p {
    margin: auto;
    background-color: #85cf90;
    border-radius: 5px 5px 5px 5px;
    padding: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
    font-size:  16px; 
    font-weight: 500; 
    text-align: justify; 
    color: #fff; 
    padding: 25px;
}

.flyer-header {
    border-bottom: 4px solid #fdc300;
    color: #0080c9;
    padding: 2px;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.button {
  display: inline-block;
  border-radius: 10px 0px 10px 0px;
  background-color: #187fc4;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 22px;
  padding: 25px;
  width: 380px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  display:block;
  margin: 0 auto;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover {
  background-color: #f3910a;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 30px;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}