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

Primary style

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



body {
  font-size: 1.6rem;
  font-family: "Droid Serif", serif;
  color: #7f8c97;
  background-color: #e9f0f5;
}

a {
  color: #acb7c0;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1, h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

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

Patterns - reusable parts of our design

-------------------------------- */
@media only screen and (min-width: 1170px) {
  .cd-is-hidden {
    /*visibility: hidden;*/
  }
}

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

Vertical Timeline - by CodyHouse.co

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #303e49;
}

header h1 {
  color: white;
  font-size: 1.8rem;
}

@media only screen and (min-width: 1170px) {
  header {
    height: 300px;
    line-height: 300px;
  }
  header h1 {
    font-size: 2.4rem;
  }
}

.cd-timeline {
  overflow: hidden;
  margin: 0 auto;
  padding-top: 2px;
}

.cd-timeline__container {
    position: relative;
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 0 5px 0;
}

    .cd-timeline__container::before {
        /* this is the vertical line */
        content: '';
        position: absolute;
        top: 0;
        left: 12px;
        height: 100%;
        width: 16px;
        background: #d7e4ed;
    }


@media only screen and (min-width: 1170px) {  
    .cd-timeline__container::before, .points-bar {
        left: 31% !important;
        /*margin-left: 3px !important;*/
    }
}

.cd-timeline__block {
    position: relative;
    margin: 0 0 1.5em 0;
}

.cd-timeline__block:after {
  /* clearfix */
  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: 0 0 1.5em 0;
  }
}

.cd-timeline__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-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);
          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);
  z-index: 3;
}



.timeline-blob-content {
    display: block;
    height: 24px;
   text-align: center;
    margin-top: 19px;
    color: #fff;
    font-weight: 500;
}


/*.cd-timeline__img.cd-timeline__img--inactive {
    background: #febf00;
}*/

.cd-timeline__img.cd-timeline__img--inactive {
    background: #c7c7c7;
}

.cd-timeline__img.cd-timeline__img--active {
    background: #81b243;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__img {
    width: 60px;
    height: 60px;
    left: 32%;
    margin-left: -30px;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .cd-timeline__img.cd-timeline__img--bounce-in {
    visibility: visible;
    -webkit-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);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.cd-timeline__content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  /*padding: 1em;*/
  -webkit-box-shadow: 0 3px 0 #d7e4ed;
          box-shadow: 0 3px 0 #d7e4ed;
}

.cd-timeline__content:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

    .cd-timeline__content::before, .cd-timeline__date::after {
        /* triangle next to content block */
        content: '';
        position: absolute;
        top: 16px;
        right: 100%;
        height: 0;
        width: 0;
        border: 15px solid transparent;
        border-right: 30px solid #d7e4ed;
    }

.cd-timeline__content h2 {
  color: #303e49;
}

    .cd-timeline__content .card-body {
        padding-top: 0.3rem;
        padding-bottom: 0.4rem;
    }

.cd-timeline__content p,
.cd-timeline__read-more,
.cd-timeline__date {
  font-size: 0.8rem;
  width: 100%;
}

.cd-timeline__content p {
  margin: 0.5em 0 1em 0;
  line-height: 1;
}


.cd-timeline__read-more,
.cd-timeline__date {
    display: inline-block;
}

.cd-timeline__read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}

.cd-timeline__read-more:hover {
  background-color: #bac4cb;
}

.cd-timeline__date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}

@media only screen and (min-width: 768px) {
  .cd-timeline__content h2 {
    font-size: 2rem;
  }
  .cd-timeline__content p {
    font-size: 1rem;
  }
  .cd-timeline__read-more,
  .cd-timeline__date {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__content {
    margin-right: 5px;
    margin-left: 0;
    /*padding: 1em;*/
    width: 50%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
    .cd-timeline__content::before, .cd-timeline__date::after {
        top: 26px;
        left: 100%;
        border-color: transparent;
        border-left-color: white;
    }
  .cd-timeline__read-more {
    float: left;
  }
  .cd-timeline__date {
    position: absolute;
    /* width: 100%; */
	width: 90px;
    left: 118%;
    top: 6px;
    font-size: 1rem;
  }
  .cd-timeline__block .cd-timeline__content {
    float: right;
  }
    .cd-timeline__block .cd-timeline__content::before, .cd-timeline__date::after {
        top: 20px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: #d7e4ed;
    }
  .cd-timeline__block .cd-timeline__read-more {
    float: right;
  }
  .cd-timeline__block .cd-timeline__date {
    left: auto;
    right: 158%;
    text-align: right;
  }
  .cd-timeline__content.cd-timeline__content--bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
            animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1200px) {
	.cd-timeline__block .cd-timeline__date {
		width: 90px !important;
		right: 164% !important;
	}
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cd-timeline__block:nth-child(even) .cd-timeline__content.cd-timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
            animation: cd-bounce-2-inverse 0.6s;
  }

    .cd-timeline__date {
        padding-top: 0;
        top: 0;
    }

    /* when only on left side */
    .cd-timeline__container {
        position: relative;
        width: 100%;
    }
}

@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.cd-timeline__date::after {
    left: 100%;
    transform: rotate(180deg);
}

@media only screen and (max-width: 1169px) {
    .cd-timeline__date .card, .cd-timeline__date .card > div {
        display: inline-block;
    }

        .cd-timeline__date .card > div {
            display: inline-block;
            margin-right: 5px;
        }

            .cd-timeline__date .card > div:not(:first-child):before {
                /*padding: 0 5px;*/
                color: #ccc;
                content: "/\00a0";
                font-size: 18px;
            }

    .cd-timeline__date::after {
        display: none;
    }

    .timeline-blob-content {
        font-size: 0.8rem;
        margin-top: 11px;
    }

    .cd-timeline__content::before, .cd-timeline__date::after {
        top: 9px;
        border: 12px solid transparent;
        border-right: 15px solid #d7e4ed;
    }

    .cd-timeline__date {
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    .levels {
        padding-right: 0 !important;
    }
}


.points-bar {    
    left: 12px;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 16px;
    background: #d7e4ed;
    transform: rotate(180deg);
    z-index: 1;
}

.scale-in-ver-bottom {
    -webkit-animation: scale-in-ver-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-ver-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    /*height: 50%;*/
    display: inline-block;
    width: 16px;
    background: #81b243;
    z-index: 2;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-2-25 9:40:41
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-ver-top
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

@keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

.btn-unlock-promo {
    width: 100px;
    font-size: 0.7rem !important;
}