﻿
.serviceBox {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

    .serviceBox .service-icon {
        color: #fff;
        background: #fff;
        font-size: 50px;
        line-height: 80px;
        height: 60px;
        width: 60px;
        margin: 0 auto 25px;
        border-radius: 0px;
        box-shadow: 0 0 0 0px #fff;
    }

        .serviceBox .service-icon i.fa {
            transition: all 0.3s ease 0s;
        }

    .serviceBox:hover .service-icon i.fa {
        text-shadow: 0 0 5px #555;
        transform: rotateY(360deg) rotateX(360deg);
    }

    .serviceBox .service-content {
        background-color: #fff;
        color: #005587;
        padding: 10px 13px 15px;
        border-radius: 10px;
        box-shadow: 0 0 15px -5px rgba(0,0,0,0.5);
    }

    .serviceBox .title {
        color: #fff;
        background: linear-gradient(150deg,#dcce1c,#ed8b00);
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 7px 15px;
        margin: -21px 7px 15px;
        border-radius: 0 0 25px 25px;
        position: relative;
        z-index: 1;
    }

        .serviceBox .title:before,
        .serviceBox .title:after {
            content: "";
            background: linear-gradient(-45deg,#efbf10 49%,transparent 50%);
            width: 12px;
            height: 10px;
            position: absolute;
            top: 1px;
            left: -12px;
        }

        .serviceBox .title:after {
            transform: rotateY(180deg);
            left: auto;
            right: -12px;
        }

    .serviceBox .description {
        color: #777;
        font-size: 15px;
        line-height: 25px;
        margin: 0;
    }

    .serviceBox .read-more {
        display: inline-block;
        padding: 11px 39px;
        background: #ed8b00;
        font-size: 15px;
        font-weight: 500;
        color: #fff;
        text-transform: capitalize;
        border-radius: 40px;
        transform: scale(1);
        transition: all 0.2s ease-out 0s;
    }


     .serviceBox.green .title {
        background: linear-gradient(135deg,#8cac10,#449d44);
    }

    .serviceBox.green .title:before, .serviceBox.green .title:after {
        background: linear-gradient(-45deg,#398439 49%,transparent 50%);
    }

.service-content > hr {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: initial;
}



.serviceBox.normal .progress-bar {
    animation: animate-positive 2s;
}


.serviceBox .sector {
    height: 32px;
    display: block;
}

.serviceBox .disabledBtn {
    background: green;
    color: #cabea7;
    text-decoration: none;
}

.progress-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.progress-outer {
    background: #fff;
    padding: 2px 50px 2px 2px;
    border: none;
    border-radius: 40px;
    margin: 10px 10px 20px 30px;
    position: relative;
}

.progress {
    position: initial;
    background: #bebfbf;
    border-radius: 20px;
    margin: 0;
    height: 14px;
}

    .progress .progress-bar {
        border-radius: 20px;
        box-shadow: none;
        position: relative;
    }


.progress .progress-value {
    font-size: 14px;
    font-weight: 700;
    color: #6b7880;
    position: absolute;
    top: 0px;
    right: 10px;
}

.progress-bar-striped, .progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

span.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 240px;
    display: block;
}


@media screen and (max-width: 1200px ) {
    .serviceBox {
        margin: 20px;
    }
}

@media screen and (min-width: 620px) and (max-width: 1200px ) {
    div.well {
        width: 50%;
        margin: auto;
        clear: both;
        margin-bottom: 20px;
    }
}
