.mos-img img {display: none !important;}
.mx-horizontal-timeline ul{
  list-style: none;
  padding-left: 0rem !important;
}

.mx-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    margin-bottom: 4em;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.mx-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

.mx-horizontal-timeline.loaded {
    /* show the timeline after events position has been set (using JavaScript) */
    opacity: 1;
}

.mx-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.mx-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}

.mx-horizontal-timeline .events-wrapper::after,
.mx-horizontal-timeline .events-wrapper::before {
    /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}

.mx-horizontal-timeline .events-wrapper::before {
    left: 0;
    background-image: -webkit-linear-gradient( left, #fff, rgba(248, 248, 248, 0));
    background-image: -webkit-linear-gradient(left, #fff, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to right, #fff, rgba(248, 248, 248, 0));
}

.mx-horizontal-timeline .events-wrapper::after {
    right: 0;
    background-image: -webkit-linear-gradient( right, #fff, rgba(248, 248, 248, 0));
    background-image: -webkit-linear-gradient(right, #fff, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to left, #fff, rgba(248, 248, 248, 0));
}

.mx-horizontal-timeline .events {
    /* this is the grey line/timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 49px;
    height: 2px;
    /* width will be set using JavaScript */
    background: #dfdfdf;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.mx-horizontal-timeline .filling-line {
    /* this is used to create the green line filling the timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #333;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.mx-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 15px;
    color: #383838;
    /* fix bug on Safari - text flickering while timeline translates */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mx-horizontal-timeline .events a::after {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .mx-horizontal-timeline .events a:hover::after {
    background-color: #333;
    border-color: #333;
}

.mx-horizontal-timeline .events a.selected {
    pointer-events: none;
}

.mx-horizontal-timeline .events a.selected::after {
    background-color: #333;
    border-color: #333;
}

.mx-horizontal-timeline .events a.older-event::after {
    border-color: #333;
}

@media only screen and (min-width: 1100px) {

    .mx-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

.cd-timeline-navigation a {
    /* these are the left/right arrows to navigate the timeline */
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    /* replace text with an icon */
    overflow: hidden;
    color: #333;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.cd-timeline-navigation a::after {
    /* arrow icon */
    font-family: "Ionicons";
    position: absolute;
    bottom: auto;
    right: auto;
}

.cd-timeline-navigation a.prev {
    left: 0;
}

.cd-timeline-navigation a.next {
    right: 0;
}

.cd-timeline-navigation a.next:after {
    content: '\f3d6';
    height: 16px;
    width: 16px;
    left: -10px;
    top: -3px;
    font-size: 24px;
    color: #ddd;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cd-timeline-navigation a.prev:after {
    content: '\f3d5';
    height: 16px;
    width: 16px;
    left: -10px;
    top: -3px;
    font-size: 24px;
    color: #ddd;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cd-timeline-navigation a.prev.inactive:hover:after {
    color: #ddd;
}

.cd-timeline-navigation a.prev:hover:after {
    color: #333;
}

.cd-timeline-navigation a.next:hover:after {
    color: #333;
}

.no-touch .cd-timeline-navigation a:hover {
    border-color: #333;
}

.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}

.cd-timeline-navigation a.inactive::after {
    background-position: 0 -16px;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.mx-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 1em auto;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
}

.mx-horizontal-timeline .events-content li {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    padding: 0;
    opacity: 0;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.mx-horizontal-timeline .events-content li.selected {
    /* visible event content */
    position: relative;
    z-index: 2;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mx-horizontal-timeline .events-content li.enter-right,
.mx-horizontal-timeline .events-content li.leave-right {
    -webkit-animation-name: cd-enter-right;
    animation-name: cd-enter-right;
}

.mx-horizontal-timeline .events-content li.enter-left,
.mx-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-name: cd-enter-left;
    animation-name: cd-enter-left;
}

.mx-horizontal-timeline .events-content li.leave-right,
.mx-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.mx-horizontal-timeline .events-content li > * {
    max-width: 100%;
    margin: 0 auto;
}

.mx-horizontal-timeline .events-content h2 {
    font-family: Montserrat Alternates;
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
}
.fa.fa-user-o {
  margin-left: 5px;
}
.fa.fa-folder-o {
  margin-right: 2px;
}
.mx-horizontal-timeline .events-content em {
    font-style: normal;
    margin: 10px;
    color: #a4a4a4
}
.mx-horizontal-timeline .events-content span{
    color: #a4a4a4;
    line-height: 40px;
	font-size: 16px;
}
.mx-horizontal-timeline .events-content span a{
    color: #a4a4a4;
	margin-right: 5px;
}
.mx-horizontal-timeline .events-content span a:hover{
    color: #ee0909;
}
.mx-horizontal-timeline .events-content em::before {
    content: '- ';
}
.mx-horizontal-timeline .default-btn {
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 0 20px 20px 0;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
}

.mx-horizontal-timeline .default-btn i {
    opacity: 0;
    position: absolute;
    font-size: 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    right: 30px;
    top: -7px;
}

.mx-horizontal-timeline .default-btn:hover i {
    opacity: 1;
    right: 0;
}

.mx-horizontal-timeline .default-btn:after {
    content: "";
    position: absolute;
    top: 27px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #60606e;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mx-horizontal-timeline .default-btn:hover:after {
    width: 100%;
}

@media only screen and (min-width: 768px) {}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
