.bg-orange {
    background-color: #fb9902;
}

.vertical-center {


    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center;

    /* In legacy web browsers such as Firefox 9
       we need to specify the width of the flex container */

    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
       hence the bootstrap's container won't be aligned to the center anymore.

       Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack : center;
    -moz-box-pack : center;
    -ms-flex-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
}

ul {
    margin-left:20px;
}


.homepage-background {
    background-color: #2142ba;
    background-repeat: no-repeat;
    background-position: bottom center;
    color: #FFF;
    min-height: 600px;
    padding:10px;
    background-size: cover;
}

@media (max-width: 767px) {

    .homepage-background-network-services {
        background-image: url('/images/homepage/NetworkServicesBlank.jpg');
    }

    .homepage-background-business-continuity {
        background-image: url('/images/homepage/BusinessContinuityBlank.jpg');
    }

    .homepage-background-cloud-services {
        background-image: url('/images/homepage/CloudServicesBlank.jpg');
    }

    .homepage-background-website-design {
        background-image: url('/images/homepage/WebsiteDesignBlank.jpg');
    }

    .homepage-background-commonly-asked-questions {
        background-color: #4E95D0;
    }
}

@media (min-width: 768px) {

    .homepage-background-network-services {
        background-image: url('/images/homepage/NetworkServices.min.jpg');
    }

    .homepage-background-business-continuity {
        background-image: url('/images/homepage/BusinessContinuity.jpg');
    }

    .homepage-background-cloud-services {
        background-image: url('/images/homepage/CloudServices.jpg');
    }

    .homepage-background-website-design {
        background-image: url('/images/homepage/WebsiteDesign.jpg');
    }

    .homepage-background-commonly-asked-questions {
        background-image: url('/images/homepage/CommonlyAskedQuestions.jpg');
        -webkit-background-size:contain;
        background-size:contain;
        background-position: center bottom;
    }
}

section {
    padding:0 !important;
}

.caption {

}

ol {
    margin: 20px;
}

ol li {
    margin-left: 20px;
    padding:5px 0 5px 17px;
}





.toggle-body {
    background-color: white !important;
    color: black !important;
    margin: 20px !important;
    padding: 10px !important;
    border: 1px dotted orange !important;
}


