@import url("https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans+Condensed:300");
.wrapper {
  background-color: #42A5F5;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  font: normal 16px/26px Open Sans Condensed, sans-serif;
  color: #fff;
  padding: 100px 20px 200px;
  box-sizing: border-box;
}

.block {
  z-index: 1;
  position: relative;
}
.block:before {
  content: "";
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #f2f2f2;
  left: 50%;
  margin-top: 90px;
}

.title {
  font: bold 42px/52px Open Sans Condensed, sans-serif;
  text-align: center;
  padding: 20px;
  transition: all 0.8s ease-in-out;
}

.each-event {
    background-color: #ffffff;
    color: #777;
    height: 385px;
    overflow: hidden;
    padding: 15px;
    margin: 60px 20px;
    width: 365px;
    position: relative;
    border-radius: 4px;
    display: table;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}
.each-event:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -27px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 20px -4px rgba(64, 64, 64, 0.8);
}
.each-event:nth-child(odd) {
  margin-left: calc(50% + 20px);
}
.each-event:nth-child(even) {
  margin-left: calc(50% - 385px);
}
.each-event:nth-child(even):before {
  left: calc(100% + 14px);
}

.event-title
{
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    width: 100%;  
}

.event-title img
{
    width: 120px;
}

.event-title h3
{
color: #333;
    font-weight: 700;
    margin-top: 17px;  
}

.event-description
{
position: absolute;
    /* display: none; */
    transform: translate(0px, 385px);
    width: 100%;
    left: 0;
    height: 100%;
    /* bottom: 0; */
    top: 0;
    right: 0;
    padding: 20px 20px;
    background: #333333;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.event-description p
{
font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;    
}

.event-description h4
{
    font-size: 22px;
    margin-bottom: 8px;    
}

.each-event:hover .event-description
{
 transform: translate(0px, 0);    
}

.title.non-focus {
  font-size: 24px;
  line-height: 34px;
  transition: all 0.8s ease-in-out;
}

.each-event.non-focus {
  /*color: #d2d2d2;
  background: #e6e6e6;
  margin-top: 90px;*/
  /*transform: rotateZ(45deg);*/
  /*transition: all 0.8s ease-in-out;*/
}
.each-event.non-focus:before {
  opacity: 0;
  background-color: #aaa;
}