/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 24px;
  font-family: "Lato", sans-serif;
  color: #707070;
  background-color: white;
  overflow-x: hidden;
}

a {
  color: #FCB526;
  text-decoration: none;
  font-family: "Lato", sans-serif;
}

img {
  max-width: 100%;
}

h1, h2 {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
header {
  height: auto;
  margin-bottom: 10px;
  padding-bottom: 2px;
  text-align: left;
  background: #303e49;
  border-style: solid;
  border-top: medium solid white;  
}
header h1 {
  color: white;
  margin-left: 25px;
  font-size: 18px;
  font-size: 2.6rem;
}

header h2 {
  font-size: 1rem;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 15px;
  text-align: left !important;
  color: #7f8c97;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}





#cd-timeline {
  position: relative;
  padding: 0em 0;
  margin-bottom: 0em;
}



.cd-timeline-block {
  position: relative;
  margin: 1em 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;
}


.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: none;
}
.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: 0px;
  margin-top: 0px;
}
.cd-timeline-img.cd-picture {
  background: #75ce66;
}
.cd-timeline-img.cd-movie {
  background: #c03b44;
}
.cd-timeline-img.cd-location {
  background: #f0ca45;
}


@-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;
  background: white;
  border-radius: 1em;
  padding: 1em;
  box-shadow: none;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 12px;
  font-size: 1.1rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  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;
}
figure{
padding:0;
margin:0;
position:relative;
cursor:pointer;
overflow:hidden;
margin-bottom: -3px !important;
}
figcaption{
font-style:italic;
padding:10px !important;
font-size:.5em !important;
position:absolute;
bottom:0;
background:rgba(0,0,0,.7);
color:#fff;
display:block;
-webkit-transform:translateY(100%);
-webkit-transition:-webkit-transform .4s ease-in-out 0s;
line-height:1.3em;
padding: 5px;
margin-bottom: 3px !important;
display: none !important;
width: 100%;

}
figure:hover figcaption{
display:block !important;
-webkit-transform:translateY(0);
}
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }