* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}


#welcome-video {
    position: relative;
    /* padding-bottom: 56.25%; */
    padding-top: 10px;
    height: 50;
    overflow: hidden;
}

.page {
  height: auto;
  margin-bottom: 20px;
}

.testimony {
  min-height: 500px;
  margin-bottom: 20px;
}

.inverted {
  background-color: #1ABC9C;
}

.reviewer {
  position: relative;
  max-height: 250px;
  max-width: 250px;
  margin-bottom: 40px;
  overflow: hidden;
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;
}

.details {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 22%;
  background: rgba(0,0,0,0.1);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.05)), color-stop(100%, rgba(0,0,0,0.6)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  /* border-bottom-left-radius: 4px; */
  /* border-bottom-right-radius: 4px; */
  text-shadow: 0px 0px 1px #000;
 }


.details .name {
  position: absolute;
  left: 3px;
  top: -4px;
  color: rgba(255, 255, 255, 1.0);
  font-size: 90%;
}

.details .department {
  position: absolute;
  bottom: -7px;
  right: 3px;
  color: rgba(255, 255, 255, 1.0);
  font-size: 70%;
  opacity: 0;
}

.active {
  opacity: 1;
  /* transition: opacity 0.2s ease-in; */
}

.inactive {
  opacity: 0.5;
  transition: opacity 0.2s ease-in;
  cursor: pointer;
}

.inactive:hover {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.user-profile-photo {
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  border-radius: 150px;
  box-shadow: 0px 0px 0px 3px #1ABC9C;
}

/* .user-profile-testimony { */
/*   visibility: visible; */
/* } */



