.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: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}


#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #13689B;
}

@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 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 {
    margin: 4em 0;
  }
  .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: 0 0 0 4px #13689B, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}
.cd-timeline-img.cd-picture {
  font-size: 35px;
  text-align: center;
  background: white;
  font-family: 'Conv_Montserrat-ExtraBold';
  color: #13689B;
  padding-top: 5px;
  margin-top: 20px;
}
.cd-timeline-img.cd-movie {
  background: #c03b44;
}
.cd-timeline-img.cd-location {
  background: #f0ca45;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .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: white;
  border-radius: 0.25em;
  padding: 1em;
  /*box-shadow: 0 3px 0 #d7e4ed;*/
}
.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: 13px;
  font-size: 0.8125rem;
}
.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;
  letter-spacing: -2px;
  font-weight: bold;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 30px;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
  }
  .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: 0;
    padding: 1.6em;
    width: 46%;
    padding-top: 0;
  }
  .cd-timeline-content::before {
/*    top: 48px;
    right: 0;
    border-color: transparent;
    width: 36%;
    border: 2px solid #13689b;*/
    top: 50px;
    right: 0;
    border-color: transparent;
    width: 37%;
    border: 2px solid #13689b;
  }
  .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;
    padding-top: 0;
    letter-spacing: -2px;
    font-weight: bold;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 45px;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
/*    top: 48px;
    left: 0;
    border-color: transparent;
    width: 36%;
    border: 2px solid #13689b;*/
    top: 50px;
    left: 0;
    border-color: transparent;
    width: 37%;
    border: 2px solid #13689b;
  }
  .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);
  }
}

.icon-timeline {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.icon-timeline2 {
/*    display: inline-block;
    width: 35%;
    text-align: center;
    padding: 13px;
    border: 2px solid #13689B;
    border-radius: 50%;
    background: #FFF800;*/
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 15px;
    border: 2px solid #13689B;
    border-radius: 50%;
    background: #FFF800;
}

.icon-timeline img{
  display: inline-block;
}

.title-timeline {
    color: #353535;
    font-family: 'Conv_Montserrat-ExtraBold';
    display: inline-block;
    font-size: 15px;
    padding-top: 15px;
}

.sub-title-timeline {
    font-family: 'Conv_Montserrat-Medium';
    font-size: 13px;
}

.body-timeline {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

.body-timeline > p:nth-child(1){
    background: #13689B;
    color: white;
    line-height: 18px;
    padding: 15px;
    margin-bottom: 0!important;
    margin-top: 20px!important;
    font-style: normal!important;
}

.body-timeline > p{
    margin-top: 8px;
    background: #009600;
    padding: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    color: white;
    font-style: italic;
}

.first-row-p {
    font-size: 19px;
    color: #13689B;
    text-transform: uppercase;
    font-family: 'Conv_Montserrat-SemiBold';
    line-height: 30px;
}

.view-getting-started {
    width: 100%;
}

.view-getting-started .view-header p{
    font-size: 25px;
    color: #13689B;
    font-family: 'Conv_Montserrat-Bold';
    line-height: 24px;
}

.vocabulary-getting_started_category h1.page-header{
  display: none;
}

.body-content-custom {
    padding-top: 10px;
}

.page-node-308 h1.page-header{
  display: none;
}

#block-views-getting-started-category-block,
.view-getting-started{
  float: none;
  margin: 0 auto;
}

#block-views-getting-started-category-block > .view-content > ul {
    padding-left: 0;
}

#block-views-getting-started-category-block .view-getting-started-category > .view-content {
    padding-top: 25px;
    padding-bottom: 25px;
}

#block-views-getting-started-category-block > .view-content > ul > li {
    list-style-type: none;
    position: relative;
    /* padding-left: 12px; */
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 10px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

#block-views-getting-started-category-block .views_tree_collapsed ul {
    display: none;
}

#block-views-getting-started-category-block .current > ul {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

#block-views-getting-started-category-block .view-content .views_tree_parent > .views_tree_link{
    padding-top: 10px;
    position: absolute;
    height: 33px;
    width: 250px;
}

#block-views-getting-started-category-block .view-content .views_tree_parent > .views_tree_link > a{
    width: 100%;
    float: left;
    background-color: transparent;
    text-align: left;
    background-position: left;
}

#block-views-getting-started-category-block .view-content .views_tree_parent > .views-field-name{
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 15px;
}

#block-views-getting-started-category-block .view-content .views_tree_parent > .views-field-name a{
    color: #505050;
    font-family: 'Conv_Montserrat-SemiBold';
}

#block-views-getting-started-category-block .view-content .views_tree_parent > .views-field-name a:hover{
    text-decoration: none;
    cursor: default;
}

#block-views-quick-content-block-9 .view-quick-content > .view-content .views-field-title {
    color: #13689B;
    font-family: 'Conv_Montserrat-ExtraBold';
    font-size: 40px;
}

#block-views-quick-content-block-9 .view-quick-content > .view-content .views-field-body{
    color: #505050;
    font-family: 'Conv_Montserrat-Light';
}


.page-taxonomy-term-36 #block-system-main,
.page-taxonomy-term-37 #block-system-main{
  display: none!important;
}