.timeline-h {
    text-align: center;
    color: #fff;
    font-size: 32px;
        padding: 50px 10px;
    line-height: 40px;
    font-weight: 600;
}
.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-img,
.cd-timeline-content-hov {
    cursor: pointer;
}
/* -------------------------------- 

Main components 

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

header {
    height: 200px;
    line-height: 200px;
    text-align: center;
    background: #303e49;
}
header h1 {
    color: white;
    font-size: 18px;
}
#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 0;
    margin-bottom: 0;
}
#cd-timeline::before {
    /* this is the vertical line */
    
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 6px;
    background: #FFFFFF;
}
.hov-sub-p {
    padding-top: 20px;
    padding-bottom: 30px;
}
.txt-left {
    text-align: left !important;
}
.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;
}
.cd-timeline-img {
    margin-top: -4px;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.cd-timeline-img-hov {
    margin-top: -4px;
    margin-bottom: 15px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.cd-timeline-img-hov img {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
    height: 70px;
}
.cd-timeline-img img {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
}
.cd-timeline-img.cd-picture {
    background: #FFFFFF;
}
.cd-timeline-img-hov.cd-picture {
    background: #FFFFFF;
}
.cd-timeline-img.cd-movie {
    background: #FFFFFF;
}
.cd-timeline-img-hov.cd-movie {
    background: #FFFFFF;
}
.cd-timeline-img.cd-location {
    background: #FFFFFF;
}
.cd-timeline-img-hov.cd-location {
    background: #FFFFFF;
}
@-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: #ef473a;
    border-radius: 0.25em;
}
.cd-timeline-content-hov {
    position: relative;
    margin-left: 60px;
    background: #ef473a;
    border-radius: 0.25em;
}
.cd-timeline-content:after {
    content: "";
    display: table;
    clear: both;
}
.cd-timeline-content-hov:after {
    content: "";
    display: table;
    clear: both;
}
.cd-timeline-content h2 {
    color: #FFFFFF;
    font-weight: 400;
}
.cd-timeline-content-hov h2 {
    color: #FFFFFF;
    font-weight: 400;
}
.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
    font-size: 13px;
    font-weight: 300;
}
.cd-timeline-content-hov p,
.cd-timeline-content-hov .cd-read-more,
.cd-timeline-content-hov .cd-date {
    font-size: 13px;
    font-weight: 300;
}
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
    display: inline-block;
}
.cd-timeline-content-hov .cd-read-more,
.cd-timeline-content-hov .cd-date {
    display: inline-block;
}
.cd-timeline-content p {
    margin: 5px 0;
    line-height: 1.6;
    font-weight: 300;
    color: #FFFFFF;
}
.cd-timeline-content-hov p {
    margin: 5px 0;
    line-height: 1.6;
    font-weight: 300;
}
.cd-timeline-content .cd-read-more {
    float: right;
    padding: .8em 1em;
    background: #acb7c0;
    color: white;
    border-radius: 0.25em;
}
.cd-timeline-content-hov .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;
}
.no-touch .cd-timeline-content-hov .cd-read-more:hover {
    background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
    float: left;
    padding: .8em 0;
    opacity: .7;
}
.cd-timeline-content-hov .cd-date {
    float: left;
    padding: .8em 0;
    opacity: .7;
}
.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 27px;
    right: 100%;
    background: #FFFFFF;
    height: 5px;
}
.cd-timeline-content-hov::before {
    content: '';
    position: absolute;
    top: 27px;
    right: 100%;
    background: #FFFFFF;
    height: 4px;
}
@-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);
    }
}
/* ------------------------------------------------------------------------------------320px-------------------------------------------------------- */

@media only screen and (min-width: 320px) {
    .cd-timeline-content h2 {
        font-size: 20px;
    }
    .cd-timeline-content h2,
    .cd-timeline-content p {
        padding-left: 75px;
		padding-top: 5px;
    }
    .cd-timeline-content::before {
        width: 40px;
    }
    .cd-timeline-content-hov::before {
        width: 40px;
        top: 49px;
    }
    .cd-timeline-img {
        margin-left: -1px;
        float: left;
        margin-bottom: 30px;
    }
    .cd-timeline-img-hov {
        margin-left: -1px;
    }
    .cd-timeline-img-hov img {
        left: 39%;
        top: 26%;
        height: 50px;
    }
    .cd-timeline-content-hov h2 {
        font-size: 22px;
        font-weight: 400;
    }
    .cd-timeline-content-hov h2,
    .cd-timeline-content-hov p {
        margin-left: 32px;
        color: #FFFFFF;
    }
    .cd-timeline-img img {
            margin-left: -16px;
    margin-top: -13px;
    }
}
/* ------------------------------------------------------------------------------------768px-------------------------------------------------------- */

@media only screen and (min-width: 768px) {
    .timeline-h {
        text-align: center;
        color: #fff;
        font-size: 28px;
        padding: 50px 230px;
        line-height: 40px;
        font-weight: 600;
    }
    .cd-timeline-content h2 {
        font-size: 20px;
        font-weight: 400;
    }
    .cd-timeline-content-hov h2 {
        font-size: 20px;
        font-weight: 400;
    }
    .cd-timeline-content p {
        font-size: 13px;
        color: #FFFFFF;
        font-weight: 300;
    }
    .cd-timeline-content-hov p {
        font-size: 13px;
        color: #FFFFFF;
        font-weight: 300;
    }
    .cd-timeline-content-hov h2,
    .cd-timeline-content-hov p {
        margin-left: 27px;
    }
    .cd-timeline-content .cd-read-more,
    .cd-timeline-content .cd-date {
        font-size: 14px;
    }
    .cd-timeline-content-hov .cd-read-more,
    .cd-timeline-content-hov .cd-date {
        font-size: 14px;
    }
    .cd-timeline-content::before {
        width: 40px;
    }
    .cd-timeline-content-hov::before {
        width: 40px;
        top: 49px;
    }
    .cd-timeline-img-hov img {
        left: 28%;
        top: 10%;
        height: 70px;
    }
    .txt-left-hov {
        text-align: left;
        clear: both;
    }
}
/* ------------------------------------------------------------------------------------1170px-------------------------------------------------------- */

@media only screen and (min-width: 1170px) {
    header {
        height: 300px;
        line-height: 300px;
    }
    header h1 {
        font-size: 24px;
    }
    #cd-timeline {
        margin-top: 0;
        margin-bottom: 0;
    }
    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
    .txt-right {
        text-align: right;
        padding-right: 75px;
    }
    .txt-right-hov {
        text-align: left;
        clear: both;
        margin-left: 32% !important;
        margin-top: 10px;
    }
    .pullright {
        float: right;
        margin-top: -1px !important;
        margin-right: -1px;
    }
    .pullright-hov {
        float: left;
        margin-top: -29px !important;
        margin-left: 25% !important;
    }
    .pullleft {
        float: left;
    }
    .pullleft-hov {
        float: right;
        margin-top: -29px !important;
        margin-right: 25% !important;
    }
    .cd-timeline-block {
        margin: 4em 0;
    }
    .cd-timeline-block:first-child {
        margin-top: 25px;
    }
    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }
    .txt-left {
        padding-left: 75px;
        margin-top: 0px;
    }
    .txt-left-hov {
        text-align: right !important;
        clear: both;
        margin-right: 32% !important;
    }
    .cd-timeline-img-hov img {
        left: 33% !important;
        top: 32% !important;
    }
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -1px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
		padding: 10px;
    }
    .cd-timeline-img-hov {
        width: 120px;
        height: 120px;
        left: 50%;
        margin-left: -1px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
		padding: 25px;
    }
    .cd-timeline-img-hov img {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        margin-left: -15px;
        margin-top: -15px;
        height: 70px;
    }
    .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
    }
    .cssanimations .cd-timeline-img-hov.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;
    }
    .cssanimations .cd-timeline-img-hov.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }
    .cd-timeline-content {
        margin-left: 0;
        width: 45%;
    }
    .cd-timeline-content-hov {
        margin-left: 0;
        width: 45%;
    }
    .cd-timeline-content::before {
        top: 24px;
        left: 100%;
        width: 60px;
    }
    .cd-timeline-content-hov::before {
        top: 24px;
        left: 47%;
        width: 337px;
    }
    .cd-timeline-content .cd-read-more {
        float: left;
    }
    .cd-timeline-content-hov .cd-read-more {
        float: left;
    }
    .cd-timeline-content .cd-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 16px;
    }
    .cd-timeline-content-hov .cd-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 16px;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content-hov {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content-hov::before {
        top: 29px;
        left: -56px;
        right: 100%;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content-hov .cd-read-more {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
        left: auto;
        right: 122%;
        text-align: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content-hov .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;
    }
    /* 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;
    }
}

@media only screen and (min-width: 320px) and (max-width: 1024px){
	.cd-timeline-img svg {
		width: 37px;
margin-left: 13px;
margin-top: 12px;
	}
	.cd-timeline-img-hov svg {
		width: 52px;
	margin-left: 23px;
	margin-top: 24px;
	}
	.tl-svg-6 {
    margin-left: 20px !important;
}
.tl-svg-3 {
    margin-left: 20px !important;
}
.timelinecontent3-hover svg {
	 margin-left: 30px !important;
}
.timelinecontent6-hover svg {
	 margin-left: 40px !important;
}
}

@media screen and (min-width: 1200px) and (max-width: 1230px) {
	.cd-timeline-content{
		width: 44.5%;
	}
	.cd-timeline-content-hov::before {
		left: 45%;
		width: 329px;
	}
}

/* for horizontal timeline */

@media only screen and (max-width: 992px) {
    .icon-h {
        padding-top: 20px;
    }
    .icon-p,
    .sol-center-text {
        padding: 0 30px 20px 30px;
    }
    .icon-top {
        margin-bottom: 0;
    }
    .icon-fix {
        margin-top: 20px;
        margin-bottom: 0;
    }
    .icon-bottom {
        margin-top: 0;
        margin-bottom: -20px;
    }
}
.cd-timeline-block path{
	fill: #ef473a;
}
.cd-timeline-block svg{
	margin-bottom: -25px !important;
}
.tl-svg-3{
	margin-left: 7px;
}
.tl-svg-6{
	margin-left: 10px;
}