.navbar{
    margin-bottom: 0;
}
.news-title{
    padding: 30px 0;
}
.news-title h3 {
    font-size: 2em;
    color: #012231;
    text-align: center;
    text-transform: uppercase;
    /*background: url(../img/bg-h2.png) repeat-x center;*/
}
.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.list-group-item {
    padding: 10px 0;
    border: none;
}
.list-group-item p{
    margin-right: 90px;
}
.list-group-item p a{
    color: #555;
    font-size: 16px;
}
.list-group-item p a:hover{
    color: #00B895;
}
.news-content .badge {
    font-size: 14px;
    padding: 5px 7px;
    font-weight: normal;
    color: #555;
    background: none;
}
.online-content .badge {
    font-size: 14px;
    padding: 10px;
    font-weight: normal;
    color: #fff;
    background: #00B895;
    border-color: #00B895;
}
.online-content.news .badge {
    font-size: 14px;
    padding: 10px;
    font-weight: normal;
    color: #555;
    background: #fff;
    border-color: #fff;
}
.online-content .glyphicon,
.news-content .glyphicon{
    color: #00B895;
    padding-right: 5px;
}

.news-detail-title{
    border-bottom: 1px dashed #cecece;
    padding-top: 30px;
}
.news-dt-content{
    padding: 50px;
}
.about-content p,
.news-dt-content p{
    text-indent: 2em;
    line-height: 30px;
    font-size: 16px;
}
.about-content h3{
    margin-bottom: 20px;
}
.about-content img{
    width: 80%;
    height: auto;
}

.recent-works {
    padding-top: 80px;
    padding-bottom: 40px;
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, #EAF4F8),
            color-stop(1, #B7C1C5)
    );
    background-image: -o-linear-gradient(bottom, #EAF4F8 0%, #B7C1C5 100%);
    background-image: -moz-linear-gradient(bottom, #EAF4F8 0%, #B7C1C5 100%);
    background-image: -webkit-linear-gradient(bottom, #EAF4F8 0%, #B7C1C5 100%);
    background-image: -ms-linear-gradient(bottom, #EAF4F8 0%, #B7C1C5 100%);
    background-image: linear-gradient(to bottom, #EAF4F8 0%, #B7C1C5 100%);
}

.carousel-control {
    -o-border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    background: none;
    top: -40px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    text-shadow: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    -o-text-shadow: none;
    opacity: 0.5;
    opacity: 1;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    -webkit-backface-visibility: hidden;
}
.carousel-control .glyphicon{
    top: 3px;
}

.carousel-control.left {
    right: 28px;
    left: auto;
    background: #00B895;
}

.carousel-control.left:before {
    position: absolute;
    font-size: 19px;
    color: #fff;
    top: -1px;
    left: 8px;
}

.carousel-control.right {
    right: 0;
    background: #00B895;
}

.carousel-control.right:before {
    position: absolute;
    font-size: 19px;
    color: #fff;
    top: -1px;
    left: 10px;
}

.carousel-control.left:hover {
    background: #00B895;
    opacity: 1;
}

.carousel-control.right:hover {
    background: #00B895;
    opacity: 1;
}

.work-post {
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 30px;
}
.work-post-gal {
    position: relative;
    cursor: pointer;
}
.work-post-gal img {
    width: 100%;
    -webkit-backface-visibility: hidden;
}
.work-post-content {
    background: #fff;
    padding: 20px;
    min-height: 160px;
}
.work-post-content h5 {
    font-size: 16px;
}
.work-post-content span {
    display: inline-block;
    color: #999;
    font-size: 14px;
}
.hover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00b895;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
}
.hover-box a {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -o-transform: scale(0.1);
    -webkit-backface-visibility: hidden;
}
.work-post:hover .hover-box {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-backface-visibility: hidden;
    opacity: 0.8;
}
.work-post:hover .hover-box a {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-backface-visibility: hidden;
}
.hover-box a:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background: url('../img/zoom-after.png') center center no-repeat;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
}
.hover-box a:hover:after {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    opacity: 1;
}
.hover-box a.page {
    left: 50%;
    margin-left: -25px;
    background: url('../img/page.png') center center no-repeat;
}


.figure {
    position: relative;
    overflow: hidden;
    margin: 0 1px 1px 0;
    background: #726FB9;
    text-align: center;
    cursor: pointer;
}

.figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ot-portfolio-item figure .figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}
.ot-portfolio-item figure .figcaption, .ot-portfolio-item .figure .figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.figure.effect-bubba {
    background: #000;
    margin-bottom: 1px;
}
.figure.effect-bubba img {
    opacity: 0.60;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
.figure.effect-bubba:hover img {
    opacity: 0.4;
}
.figure.effect-bubba .figcaption::before,
.figure.effect-bubba .figcaption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
.figure.effect-bubba .figcaption::before {
    border-top: 1px solid #00B895;
    border-bottom: 1px solid #00B895;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}
.figure.effect-bubba .figcaption::after {
    border-right: 1px solid #00B895;
    border-left: 1px solid #00B895;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
}
.figure.effect-bubba h2 {
    opacity: 1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 2.5em;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
    margin-top: 10px;
}

.figure.effect-bubba p {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding-top: 20%;
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
}
.figure.effect-bubba p .iconfont{
    font-size: 36px;
    color: #00B895;
}

.figure.effect-bubba .figcaption::before,
.figure.effect-bubba .figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.figure.effect-bubba h2,
.figure.effect-bubba p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.col-0-gutter {
    padding-left: 0;
    padding-right: 0;
}

.online-content{
    padding: 50px 30px;
}
.online-test{
    padding-top: 30px;
}
.row.online-row {
    margin-right: 0;
    margin-left: 0;
}
.nav-tabs>li>a{
    color: #c2bec2;
    cursor: pointer;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    background: none;
    border: none;
    border-bottom: 4px solid #00B895;
}
.nav-tabs>li>a:hover {
    border-color: #fff #fff #fff;
    color: #555;
    background: none;
}
.nav-tabs{
    border-bottom: 1px solid #00B895;
}

.testCon{
    padding: 5px 15px;
}
h4.tesTitle{
    color: #00B895;
}
.test-form-box{
    max-height: 600px;
    overflow: auto;
}
.assignment{
    margin: 30px 0 60px;
    text-align: center;
}
.assignment .btn{
    background: #00B895;
    width: 120px;
    font-size: 18px;
}
#testForm .testCon:nth-child(odd){
    background: #eee;
}
label{
    font-weight: normal;
}
.jxz-title{
    text-align: justify;
}

.news-btn.btn-default.active,
.news-btn.btn-default.focus,
.news-btn.btn-default:active,
.news-btn.btn-default:focus, 
.news-btn.btn-default:hover,
.news-btn.open > .dropdown-toggle.btn-default {
    color: #fff;
    background-color: #00B895;
    border-color: #00B895;
}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (min-width: 768px) and (max-width: 991px) {

}
@media (max-width: 767px) {
    .online-content {
        padding: 20px 0;
    }
    .news-dt-content{
        padding: 20px 15px;
    }
    .about-content img{
        width: 100%;
        height: auto;
    }
    .figure.effect-bubba .figcaption::before,
    .figure.effect-bubba .figcaption::after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }
}