/* -------------------- Team TimeLine -------------------- */
.cd-timeline-block h2 {
	font-size: 1.5rem;
    font-weight: bold;
}
.circle-image {
	width: 250px;
	height: 250px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
	margin: auto;
	z-index: 10;
}
.team-members .links {
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	padding-top: 60px;
}
.team-members .page-title h3 {
	margin: 0;
}
.cd-timeline-content .button {
	margin-top: 2.2em;
	text-align: center;
}
.cd-container {
	width: 90%;
	max-width: 1170px;
	margin: 0 auto;
	  color: #000;
  }
  .cd-timeline-block hr {
	  width: 50px;
      margin: 20px auto;
      border: solid thin #e5e5e5;
  }
  .cd-container::after {
	/* clearfix */
	content: '';
	display: table;
	clear: both;
  }
  .team-pic {
	  height: 150px;
	  width: 150px;
	  background-size: cover;
	  border-radius: 50%;
	  margin-top: -80px;
	  margin-bottom: 10px;
	  text-align: center;
	  margin-left: auto;
	  margin-right: auto;
	  transition: all 0.5s ease-in-out;
	  box-shadow: 0 0 20px #f4f4f4;
  }
  .team-pic:hover {
	  transform: scale(1.2);
  }
  .circle-large {
	position: relative;
	width: 60px;
	height: 60px;
	/* background-color: #00baed; */
	/* margin: 17.32px 0; */
	display: flex;
	/* justify-content: center; */
	border-radius: 50%;
}
.circle-large img {
	width: 100%;
	align-self: center;
}
  .circle-small {
	position: relative;
	width: 40px; 
	height: 23.09px;
	background-color: #004080;
	margin: 11.55px 0;
  }
  
  .circle-small:before,
  .circle-small:after {
	content: "";
	position: absolute;
	width: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
  }
  
  .circle-small:before {
	bottom: 100%;
	border-bottom: 11.55px solid #004080;
  }
  
  .circle-small:after {
	top: 100%;
	width: 0;
	border-top: 11.55px solid #004080;
  }
  #cd-timeline {
	position: relative;
	padding: 2em 0;
	margin-top: 10em;
	margin-bottom: 2em;
  }
  #cd-timeline::before {
	/* this is the vertical line */
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	height: 100%;
	width: 3px;
	background: #e5e5e5;
  
  }
  @media only screen and (min-width: 1170px) {
	#cd-timeline {
	  margin-top: 10em;
	  margin-bottom: 3em;
	}
	#cd-timeline::before {
	  left: 50%;
	  margin-left: -2px;
	}
  }
  
  .cd-timeline-block {
	position: relative;
	margin: 2em 0 180px 0;
  }
  .cd-timeline-block:after {
	content: "";
	display: table;
	clear: both;
  }
  .cd-timeline-block:first-child {
	margin-top: 0;
  }
  .cd-timeline-block:last-child {
	margin-bottom: 0;
  }
  @media only screen and (min-width: 1170px) {
  
  
	.cd-timeline-block:first-child {
	  margin-top: 0;
	}
	.cd-timeline-block:last-child {
	  margin-bottom: 0;
	}
  }
  
  .cd-timeline-img {
	position: absolute;
	top: 0;
	left: -10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/*box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);*/
  }
  .cd-timeline-img img {
	display: block;
	width: 60px;
	height: 60px;
	position: relative;
	left: 20%;
	top: 20%;
	margin-left: -12px;
	margin-top: -12px;
  }
  .cd-timeline-img.cd-movie {
	background: #c03b44;
  }
  .cd-timeline-img.cd-location {
	background: #fec52f;
  }
  @media only screen and (min-width: 1170px) {
	.cd-timeline-img {
	/*  width: 60px;
	  height: 60px;*/
	  left: 50%;
	  margin-left: -30px;
	}
	.cssanimations .cd-timeline-img.is-hidden {
	  visibility: hidden;
	}
	.cssanimations .cd-timeline-img.bounce-in {
	  visibility: visible;
	  -webkit-animation: cd-bounce-1 0.6s;
	  -moz-animation: cd-bounce-1 0.6s;
	  animation: cd-bounce-1 0.6s;
	}
  }
  
  @-webkit-keyframes cd-bounce-1 {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0.5);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: scale(1.2);
	}
  
	100% {
	  -webkit-transform: scale(1);
	}
  }
  @-moz-keyframes cd-bounce-1 {
	0% {
	  opacity: 0;
	  -moz-transform: scale(0.5);
	}
  
	60% {
	  opacity: 1;
	  -moz-transform: scale(1.2);
	}
  
	100% {
	  -moz-transform: scale(1);
	}
  }
  @keyframes cd-bounce-1 {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0.5);
	  -moz-transform: scale(0.5);
	  -ms-transform: scale(0.5);
	  -o-transform: scale(0.5);
	  transform: scale(0.5);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: scale(1.2);
	  -moz-transform: scale(1.2);
	  -ms-transform: scale(1.2);
	  -o-transform: scale(1.2);
	  transform: scale(1.2);
	}
  
	100% {
	  -webkit-transform: scale(1);
	  -moz-transform: scale(1);
	  -ms-transform: scale(1);
	  -o-transform: scale(1);
	  transform: scale(1);
	}
  }
  .cd-timeline-content {
	  position: relative;
	  margin-left: 60px;
	  background: rgba(255, 255, 255, 0.9);
	  border-radius: 0.25em;
	  padding: 1em;
	  color: black;
	  transition: all 0.5s ease-in-out;
	  border: solid thin #e5e5e5;
  }
  .cd-timeline-content:hover {
	box-shadow: 0 0 20px #f4f4f4;
	border: solid thin #00B9EC;
  }
  .cd-timeline-content:after {
	content: "";
	display: table;
	clear: both;
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
	display: inline-block;
  }
  .cd-timeline-content h2, .cd-timeline-content h3 {
	  margin: 0;
      text-align: center;
      color: #555555;
  }
  .cd-timeline-content p {
	margin: 1em 0;
  }
  .cd-timeline-content .cd-read-more {
	float: right;
	padding: .8em 1em;
	background: #316A33;
	color: white;
	  text-decoration: none;
	border-radius: 0.25em;
  }
  .no-touch .cd-timeline-content .cd-read-more:hover {
	background-color: #bac4cb;
  }
  .cd-timeline-content .cd-date {
	float: left;
	padding: .8em 0;
	opacity: .7;
	  width: 100%;
  }
  .cd-timeline-content::before {
	content: '';
	position: absolute;
	top: 16px;
	right: 100%;
	height: 0;
	width: 0;
	border: 7px solid transparent;
	border-right: 7px solid rgba(255, 255, 255, 0.6);
  }
  @media only screen and (min-width: 768px) {
  
	.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
	  font-size: 14px;
	  font-size: 0.875rem;
	}
  }
  @media only screen and (min-width: 1170px) {
	.cd-timeline-content {
	  margin-left: -40px;
	  padding: 1.6em;
	  width: 45%;
	}
	.cd-timeline-content::before {
	  top: 24px;
	  left: 100%;
	  border-color: transparent;
	  border-left-color: rgba(255, 255, 255, 0.9);
	}
	.cd-timeline-content .cd-read-more {
	  float: left;
	}
	.cd-timeline-content .cd-date {
	  position: absolute;
	  width: 100%;
	  left: 122%;
	  top: 6px;
	  font-size: 16px;
	  font-size: 1rem;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content {
	  float: right;
		  margin-right: -40px;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content::before {
	  top: 24px;
	  left: auto;
	  right: 100%;
	  border-color: transparent;
	  border-right-color: rgba(255, 255, 255, 0.9);
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
	  float: right;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
	  left: auto;
	  right: 122%;
	  text-align: right;
	}
	.cssanimations .cd-timeline-content.is-hidden {
	  visibility: hidden;
	}
	.cssanimations .cd-timeline-content.bounce-in {
	  visibility: visible;
	  -webkit-animation: cd-bounce-2 0.6s;
	  -moz-animation: cd-bounce-2 0.6s;
	  animation: cd-bounce-2 0.6s;
	}
  }
  
  @media only screen and (min-width: 1170px) {
	/* inverse bounce effect on even content blocks */
	.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
	  -webkit-animation: cd-bounce-2-inverse 0.6s;
	  -moz-animation: cd-bounce-2-inverse 0.6s;
	  animation: cd-bounce-2-inverse 0.6s;
	}
  }
  @-webkit-keyframes cd-bounce-2 {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-100px);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: translateX(20px);
	}
  
	100% {
	  -webkit-transform: translateX(0);
	}
  }
  @-moz-keyframes cd-bounce-2 {
	0% {
	  opacity: 0;
	  -moz-transform: translateX(-100px);
	}
  
	60% {
	  opacity: 1;
	  -moz-transform: translateX(20px);
	}
  
	100% {
	  -moz-transform: translateX(0);
	}
  }
  @keyframes cd-bounce-2 {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-100px);
	  -moz-transform: translateX(-100px);
	  -ms-transform: translateX(-100px);
	  -o-transform: translateX(-100px);
	  transform: translateX(-100px);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: translateX(20px);
	  -moz-transform: translateX(20px);
	  -ms-transform: translateX(20px);
	  -o-transform: translateX(20px);
	  transform: translateX(20px);
	}
  
	100% {
	  -webkit-transform: translateX(0);
	  -moz-transform: translateX(0);
	  -ms-transform: translateX(0);
	  -o-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  @-webkit-keyframes cd-bounce-2-inverse {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(100px);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: translateX(-20px);
	}
  
	100% {
	  -webkit-transform: translateX(0);
	}
  }
  @-moz-keyframes cd-bounce-2-inverse {
	0% {
	  opacity: 0;
	  -moz-transform: translateX(100px);
	}
  
	60% {
	  opacity: 1;
	  -moz-transform: translateX(-20px);
	}
  
	100% {
	  -moz-transform: translateX(0);
	}
  }
  @keyframes cd-bounce-2-inverse {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(100px);
	  -moz-transform: translateX(100px);
	  -ms-transform: translateX(100px);
	  -o-transform: translateX(100px);
	  transform: translateX(100px);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: translateX(-20px);
	  -moz-transform: translateX(-20px);
	  -ms-transform: translateX(-20px);
	  -o-transform: translateX(-20px);
	  transform: translateX(-20px);
	}
  
	100% {
	  -webkit-transform: translateX(0);
	  -moz-transform: translateX(0);
	  -ms-transform: translateX(0);
	  -o-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
