/* Media Queries */
/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */

@media (min-width: 1170px) {
    #workexp .demo-card:nth-child(odd) .head::after, #workexp .demo-card:nth-child(even) .head::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    #workexp .demo-card:nth-child(odd) .head::before, #workexp .demo-card:nth-child(even) .head::before {
        position: absolute;
        content: "";
        width: 9px;
        height: 9px;
        background-color: #2a268dc7;
        border-radius: 9px;
        -webkit-box-shadow: 0px 0px 2px 8px #b2c5f1;
        box-shadow: 0px 0px 2px 8px #b2c5f1;
    }
}

/* Some Cool Stuff */
.demo-card:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.demo-card:nth-child(2) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.demo-card:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.demo-card:nth-child(4) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.demo-card:nth-child(5) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.demo-card:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

/* Border Box */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Fonts */
body {
    font-family: Roboto;
}

#workexp {
    /* padding: 100px 0; */
    /* background: #f7f7f7; */
    border-top: 1px solid rgba(191, 191, 191, 0.4);
    border-bottom: 1px solid rgba(191, 191, 191, 0.4);
    background-color: #b2c5f1;
    border: none;
    outline: none;
    margin-top: -10ch;
}


#workexp p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 45px;
}

#workexp .demo-card-wrapper {
    position: relative;
    margin: auto;
}

@media (min-width: 1170px) {
    #workexp .demo-card-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        width: 1170px;
        height: 800px;
        margin: 0 auto;
    }

    #workexp .card-wrapper-edu{
        height: 470px;
    }
   
}

#workexp .demo-card-wrapper::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px solid rgb(42, 38, 141);
}

@media (min-width: 1170px) {
    #workexp .demo-card-wrapper::after {
        border-left: 1px solid rgba(42, 38, 141, 0.599);
    }
}

#workexp .demo-card {
    position: relative;
    display: block;
    margin: 10px auto 40px;
    max-width: 94%;
    z-index: 2;
    box-shadow: 0px 0px 10px 0px #2a2a7d;
}

@media (min-width: 480px) {
    #workexp .demo-card {
        max-width: 60%;
        -webkit-box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.395);
        box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.238);
    }
}

@media (min-width: 720px) {
    #workexp .demo-card {
        max-width: 40%;
    }
}

@media (min-width: 1170px) {
    #workexp .demo-card {
        max-width: 450px;
        height: max-content;
        margin: 90px;
        margin-top: 45px;
        margin-bottom: 45px;
    }

    #workexp .demo-card:nth-child(odd) {
        margin-right: 45px;
    }

    #workexp .demo-card:nth-child(odd) .head::after {
        border-left-width: 15px;
        border-left-style: solid;
        left: 100%;
    }

    #workexp .demo-card:nth-child(odd) .head::before {
        left: 491.5px;
    }

    #workexp .demo-card:nth-child(even) {
        margin-left: 85px;
    }

    #workexp .demo-card:nth-child(even) .head::after {
        border-right-width: 15px;
        border-right-style: solid;
        right: 100%;
    }

    #workexp .demo-card:nth-child(even) .head::before {
        right: 489.5px;
    }

    #workexp .demo-card:nth-child(2) {
        margin-top: 180px;
    }
}

#workexp .demo-card .head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* color: #fff; */
    font-weight: 400;
}

#workexp .demo-card .head .number-box {
    display: inline;
    float: left;
    margin: 15px;
    padding: 1px 10px;
    font-size: 15px;
    line-height: 35px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.17);
}

#workexp .demo-card .head .number-box span {
    font-size: 13px;
}

#workexp .demo-card .head h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: inherit;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 6px;
    line-height: 1rem;
}

@media (min-width: 480px) {
    #workexp .demo-card .head h2 {
        font-size: 165%;
        line-height: 1.2rem;
    }
}

#workexp .demo-card .head h2 span {
    display: block;
    font-size: 0.6rem;
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 480px) {
    #workexp .demo-card .head h2 span {
        font-size: 0.8rem;
    }
}

@media (max-width: 1170px) {
    #workexp .demo-card .body {
        height: max-content;
        display: flex;
        flex-direction: column;
    }
    
    #workexp .demo-card {
        height: auto;
    }

    #workexp .demo-card .body {
        height: auto;
    }
}

#workexp .demo-card .body {
    border: 1px solid rgba(191, 191, 191, 0.4);
    border-top: 0;
    padding: 15px;
}


@media (min-width: 1170px) {
    #workexp .demo-card .body {
        height: max-content;
        display: flex;
        flex-direction: column;
    }
}

/* @media screen and (max-width: 600px) {
    #workexp .demo-card-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        width: 1170px;
        height: 1000px;
        margin: 0 auto;
    }
} */

#workexp .demo-card .body p {
    font-size: 17px;
    line-height: 18px;
    margin-bottom: 15px;
}

#workexp .demo-card .body a {
    display: block;
    padding: 1.5ch 4ch;
    width:fit-content;
    color: #fff;
    text-decoration: none;
    align-self: end;
    font-weight: 600;
}
/* 
#workexp .demo-card .body a:hover{
    background-color:#2a268dc7
}

#workexp .demo-card--step1 {
    background-color: #2a268dc7;
}

#workexp .demo-card--step1 .body a{
    background-color: #2a268dc7;
}

#workexp .demo-card--step1 .head::after {
    border-color: #2a268dc7;
}

#workexp .demo-card--step2 {
    background-color: #2a268dc7;
}

#workexp .demo-card--step2 .body a{
    background-color: #2a268dc7;
}

#workexp .demo-card--step2 .head::after {
    border-color: #2a268dc7;
}

#workexp .demo-card--step3 {
    background-color: #2a268dc7;
}

#workexp .demo-card--step3 .body a{
    background-color: #2a268dc7;
}

#workexp .demo-card--step3 .head::after {
    border-color: #2a268dc7;
}

#workexp .demo-card--step4 {
    background-color: #2a268dc7;
}

#workexp .demo-card--step4 .body a{
    background-color: #2a268dc7;
}

#workexp .demo-card--step4 .head::after {
    border-color: #2a268dc7;
}

#workexp .demo-card--step5 {
    background-color: #2a268dc7;
}

#workexp .demo-card--step5 .body a{
    background-color: #2a268dc7;
}

#workexp .demo-card--step5 .head::after {
    border-color: #2a268dc7;
} */

#workexp .demo-card{
color:#2a2a7d;
background-color: #b2c5f1;
}


/*# sourceMappingURL=style.css.map */
