.card {
    background-color: whitesmoke;
}

.card p{
    font-family: 'Nunito', sans-serif;
}

.card-border {
    border-color:rgba(41, 4, 2, 0.7);
}

.card-header {
    font-size: 1.3rem;
    font-family: 'Sniglet', Tahoma, sans-serif;
    font-style: normal;
}

.card-header-top-border {
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.card-title {
    font-size: 1.2rem;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
}

.card-text {
    font-size: 1.1rem;
}

.card-button {
    color: #fff !important;
    background-color: rgba(62, 86, 121, 0.7);
    border-color: rgba(62, 86, 121, 0.9);
    font-family: "Quicksand", sans-serif;
}

.card-button-solid {
    color: #fff !important;
    background-color: rgba(62, 86, 121, 0.9);
    border-color: rgba(62, 86, 121, 1);
    font-family: "Quicksand", sans-serif;
}

.card-custom-side-padding {
    padding-left: 0.4vw;
    padding-right: 0.4vw;
}

.card-image img {
    max-width: 90%;
    margin-bottom: 2vh;
}

.card-image img:hover {
    transform: scale(0.9);
    transition: 600ms;
}

.card-nextStep {
    border:1px solid rgba(41, 4, 2, 0.5);
}

/* Timeline new version */
.timeline {
    border-left: 3px solid rgb(83, 3, 0);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(153, 153, 153, 0.09);
    /* margin: 0 auto; */
    margin-left:30%;
    letter-spacing: 0.2px;
    position: relative;
    line-height: 1.4em;
    font-size: 1.03em;
    padding: 50px;
    list-style: none;
    text-align: left;
    max-width: 70%;
}

@media (max-width: 767px) {
    .timeline {
        max-width: 98%;
        padding: 25px;
    }
}

.timeline h1 {
    font-weight: 300;
    font-size: 1.4em;
}

.timeline h2,
.timeline h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline .event {
    border-bottom: 1px dashed #e8ebf1;
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
    max-width:100%;
}

@media (max-width: 767px) {
    .timeline .event {
        padding-top: 30px;
    }
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -207px;
    content: attr(data-date);
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
}

@media (max-width: 767px) {
    .timeline .event:before {
        left: 0px;
        text-align: left;
    }
}

.timeline .event:after{
    -webkit-box-shadow: 0 0 0 3px rgb(83, 3, 0);
    box-shadow: 0 0 0 3px rgb(83, 3, 0);
    left: -55.8px;
    background: #fff;
    border-radius: 50%;
    height: 9px;
    width: 9px;
    content: "";
    top: 5px;
}

@media (max-width: 767px) {
    .timeline .event:after{
        left: -31.8px;
    }
}

.rtl .timeline {
    border-left: 0;
    text-align: right;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-right: 3px solid rgb(83, 3, 0);
}

.rtl .timeline .event::before {
    left: 0;
    right: -170px;
}

.rtl .timeline .event::after{
    left: 0;
    right: -55.8px;
}

/*End Timeline Stock*/

/*Timeline custom edits */
.timeline .event li {
    font-size: 1.0rem;
    font-family: 'Baloo Da 2', Tahoma, sans-serif;
}

.timeline .event h3{
    padding-left:1.4vw;
}

.timeline .passed:after {
    background: green;
}

.timeline .passed h3,
.timeline .passed:before {
    color:rgba(18, 70, 27, 0.466)
}

.timeline .passed:before {
    text-decoration: line-through;
}

.timeline .passed li{
    color:rgba(0, 0, 0, 0.466)
}


