﻿/*font-family: 'Lato', sans-serif;*/
@font-face {
    font-family: 'Calibri-bold';
    src: url('../fonts/Calibri-Bold.woff2') format('woff2'),
        url('../fonts/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri.woff2') format('woff2'),
        url('../fonts/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri-italic';
    src: url('../fonts/Calibri-Italic.woff2') format('woff2'),
        url('../fonts/Calibri-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri-bold-italic';
    src: url('../fonts/Calibri-BoldItalic.woff2') format('woff2'),
        url('../fonts/Calibri-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}


/* CUSTOM CSS START FROM HERE */

* {
    /*margin: 0;
    padding: 0;*/
    outline: 0;
}

/*ul,
ol {
    list-style: none;
}*/

button,
input[type='submit'],
input[type='reset'],

.tr4 {
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.tr3 {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.tr2 {
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #f1592d;
}

a:focus {
    outline: none;
}

/*browser selection text and bg color*/

::-moz-selection {
    color: #fff;
    background: #f1592d;
}

::-moz-selection {
    color: #fff;
    background: #f1592d;
}

::selection {
    color: #fff;
    background: #f1592d;
}

::-moz-selection {
    color: #fff;
    background: #f1592d;
}

/*place holder text color*/

::-webkit-input-placeholder {
    color: #aaa;
}

:-moz-placeholder {
    color: #aaa;
}

::-moz-placeholder {
    color: #aaa;
}

:-ms-input-placeholder {
    color: #aaa;
}

/*chrome input type file cursor pointer*/

::-webkit-file-upload-button {
    cursor: pointer;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

body,
html {
    min-height: 100%;    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: #fafafa;    
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
}

img {
    max-width: 100%;
}

.hide{
    display:none !important;
}

/*--loader--*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 999;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

#status {
    width: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.2);
}

.loader_main {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    left: 50%;
    color: #fff;
    font-size: 14px;
    width: 174px;
    height: 74px;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.7);
    border: solid 1px rgba(172,172,172,0.26);
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.loader_inner {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

    .loader_inner img {
        height: 48px;
        width: 48px;
        margin: 0;
        overflow: visible;
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }

@-webkit-keyframes spinnerRotate {
    from {
        -webkit-transform: rotatey(0deg);
    }

    to {
        -webkit-transform: rotatey(360deg);
    }
}

@keyframes spinnerRotate {
    from {
        -webkit-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    to {
        -webkit-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}

#spin {
    -webkit-animation-name: spinnerRotate;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinnerRotate;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spinnerRotate;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spinnerRotate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
/*--end loader--*/

/*Header and banner*/

.header.header-ban {
    padding-top: 130px;   
   background-size: cover;
    background-position: center bottom;
    justify-content: center;
    padding-bottom: 90px;
    background-repeat: no-repeat;
    position: relative;   
    height: 385px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.header.header-ban .header-top {
    padding: 15px;
}

.header.header-ban .header-top.shrink{
    background: transparent; 
    position: fixed; 
    width: 100%; 
    top:0;     
    z-index: 100;
    opacity:1;
}

.header.header-ban .header-top.shrink.shrink-index {
    background: #35bdc0; 
    opacity:1;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.header.header-ban .logo img{   
   
}

.header.header-ban .logo span{   
    display: inline-block;   
    font-size: 16px;
    color: #fff;    
    margin: 0px 10px;
    font-weight: 600;
}

.header-btn-area .header-btn {
    font-size: 14px;
    color: #000;
    padding: 10px 30px;
    background: rgba(255,255,255,0.7);
    border: 1px dashed #da1b19;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;    
}

.header-btn-area .header-btn:hover {
    background: #F9B74E;
    color: #fff;
    border: 1px solid #F9B74E;
}

.header-ban .banner-cont {   
   width: 650px;
    text-align: center;
    margin: auto;    
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;    
}

.header-ban .banner-cont .lbl-validation{
    color:#fff;
    margin-top:10px;
}

.header-ban .banner-cont h1 {
    font-size: 46px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;   
}
.header-ban .banner-cont h1 span {
    font-size: 36px;
    font-weight: 300;
    display: block;
}

.header-ban .findTabel {
    background-color: #fff;
    border-radius: 50px;   
}
.header-ban .search-outer {
    justify-content: space-between;
}
.header-ban .div-search-item1 {
    display: flex;
    width: 100%;
}
.header-ban .div-search-item1 .inputWrap {
    padding-right: 15px;
    width: 100%;
    margin-left: 20px;
}
.header-ban .div-search-item1 .inputWrap .search-text {
    padding-right: 0;
}
.header-ban .inputWrap .txt-input-box.search-text {   
    background-repeat: no-repeat;
    background-position: right center;
    cursor: auto;
    width: 100%;
    padding-right: 50px;
    font-size: 18px;
    
}
.header-ban .inputWrap .txt-input-box.search-text:focus {
    outline: none;
}
.header-ban .inputWrap .txt-input-box {
    width: 350px;
    border: 0;
    color: #636363;
    font-size: 18px;
    cursor: pointer;
    cursor: default;
    padding: .375rem 30px .375rem 10px;
}

.header-ban .btn-search-box {
    background-color: #eeeeee;
    border-color: #eeeeee;    
    float: right;
    border-radius: 50%;
    background-image:url(../images/search.png);
    background-repeat: no-repeat;
    background-position:center center;
    padding: 30px;
}
.header-ban .inputWrap .btn-primary:hover {
    background-color: #c23208;
    border-color: #c23208;
}

.header-divider{
        width: 100%;
    margin-top: 20px;
    background-image: url(../images/divider.png);
    background-repeat: repeat-x;
    height: 2px;
    display:block;
}

.header-top.shrink.shrink-index .header-divider{
    display:none;
}

.findTabel .inputWrap-last{
    margin:2px;
}

.chapter-tab-content{   
    padding: 5px 10px;
    position: absolute;   
    bottom: 0;   
    height: 37px;
}

.chapter-tab-content .nav-tabs{
    border-bottom: 0px;
}

.chapter-tab-content .nav-tabs .nav-link {
    font-size:16px;
     color: #fff !important;
    border: 0px;    
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display:inline;
    line-height: 27px;
}

    .chapter-tab-content .nav-tabs .nav-link:hover, .chapter-tab-content .nav-tabs .nav-link:focus{
        border:0px;
         background-color: transparent;
    border-bottom: 3px solid #F9B74E;    
    line-height: 27px;
    }

.chapter-tab-content .nav-tabs .nav-item.separator{
        width: 1px;
    background: #4ec4ca;
    margin: 3px 10px;
}

.chapter-tab-content .nav-tabs .nav-item.show .nav-link, .chapter-tab-content .nav-tabs .nav-link.active {
    color: #fff !important;
    font-weight:600;
    background-color: transparent;
    border-bottom: 3px solid #F9B74E;
    line-height:27px;
}



.header-btn-area .icon {
  display: inline-block;
    font-size: 26px;
    padding: 0px 5px;
    color:#fff;
    outline: 0;
}

.header-btn-area .icon:hover{
    background: #fff;
    color:#35bdc0;
    border-radius:4px;
    padding: 0px 5px;
    box-shadow:none;
}

 .header-btn-area .icon:focus{   
    box-shadow:none;
}

 /*right slide panel for chapter list*/
 
.side_panel_btn {
    float: left;
    height: 18px;
    width: 23px;
    position: relative;
    z-index: 999;
}

    .side_panel_btn span {
        background: #000;
        height: 2px;
        width: 100%;
        display: block;
        position: relative;
    }

        .side_panel_btn span:before,
        .side_panel_btn span:after {
            position: absolute;
            content: "";
            background: #000;
            height: 2px;
            width: 100%;
        }

        .side_panel_btn span:before {
            top: 5px;
        }

        .side_panel_btn span:after {
            bottom: -10px;
        }

        /*side panel css start*/

.addpanel .overlay {
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.side_panel {
    position: fixed;
    height: 100%;
    overflow: auto;
    top: 0;
    background: #000;
    z-index: 99999;
    width: 400px;
    right: -400px;
    padding: 30px 110px 30px 0;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
}

.addpanel .side_panel {
    right: 0;
}

.addpanel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*position: fixed;*/
}

.feed_slider {
    position: relative;
}

.panel_inner {
    padding-left: 40px;
}

.panle_nav ul {
    padding: 0px;
    margin: 0px;
}

    .panle_nav ul li {
        float: none;
        list-style: none;
        border-bottom: 1px solid #333333;
    }

        .panle_nav ul li:last-child {
            border-bottom: none;
        }

.panle_nav {
    margin: 55px 0 65px;
}

    .panle_nav ul li a {
        display: inline-block;
        padding: 8px 0;
        font-size: 18px;
        color: #ffffff;
    }
    .panle_nav ul li a.active{
        color: #35bdc0;
    }
        .panle_nav ul li a:hover {
            color: #35bdc0;
        }

.panel_btn {
    margin: 0 0 7px;
}

    .panel_btn a {
        min-width: 130px;
        display: inline-block;
        font-size: 18px;
        color: #ffffff;
        padding: 9px;
        border: 2px solid transparent;
        text-align: center;
    }

    .panel_btn.sign_in a {
        border-color: #fff;
    }

    .panel_btn.register_btn a {
        background: #fff;
        color: #000;
    }
    
    .panel_btn a:hover {
        background: #35bdc0;
        border-color: transparent;
        color: #fff;
    }

.cross_btn {
    position: absolute;
    right: 30px;
    margin-top: 8px;
}

    .cross_btn a .side_panel_btn span,
    .cross_btn a .side_panel_btn span:after,
    .cross_btn a .side_panel_btn span:before {
        background: #fff;
    }

    .cross_btn a .side_panel_btn span {
        background: #000;
    }

        .cross_btn a .side_panel_btn span:after {
            top: 10px;
            transform: translateY(-5px) rotate(-45deg);
            -webkit-transform: translateY(-5px) rotate(-45deg);
            -moz-transform: translateY(-5px) rotate(-45deg);
            height: 2px;
            width: 20px;
        }

        .cross_btn a .side_panel_btn span:before {
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            height: 2px;
            width: 20px;
        }


/*footer*/

.footer {
    background-color: rgb(250, 250, 250);
    padding: 25px 0;   
}
.footerBottom { 
    padding-top: 10px;
    margin-top: 10px;
}

.copy {
    color: #7b7b7b;
    font-size: 13px;    
}

.socialList ul
{
    list-style:none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
}    

.socialList ul a {
    background-color: #bdbdbd;
    color: #fff;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 100px;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .socialList ul a:hover {
        background-color: #02AAB3;
    }

.socialList ul li + li {
    margin-left: 10px;
}
/*END FOOTER*/

/*Home Page Trending*/

.home-chapter-section {
    background-color: #f4f7fa;
    border-bottom: 1px solid #e3e3e3;  
}

.home-chapter-section .home-chapters-container {
    max-width: 1024px;
    margin: 0 auto;
}

.home-chapter-section .item:hover {
    z-index: 3;   
}

@media screen and (min-width: 701px){
.home-chapter-section .home-chapters-container {
    background: url(../images/vertical-line.png) 50% center/2px 90% no-repeat,url(../images/vertical-line.png) center .37% 2px no-repeat,url(../images/vertical-line.png) center .74% 2px no-repeat;
}
.home-chapter-section .item {
    background-color: #f4f7fa;   
}

.home-chapter-section .item:hover {
    -webkit-transform: scale(1.075) rotate(.0001deg);
    -moz-transform: scale(1.075) rotate(.0001deg);
    -ms-transform: scale(1.075) rotate(.0001deg);
    -o-transform: scale(1.075) rotate(.0001deg);
    transform: scale(1.075) rotate(.0001deg);
    background-color: #fff;
    box-shadow: 0 5px 20px 0 rgba(0,0,0,.15);   
    z-index:3;
}

.home-chapter-section .item:hover .chapter-title{
    font-weight:600;
}

}

@media screen and (min-width: 846px){
    .home-chapter-section .home-chapters-container {
    background: url(../images/vertical-line.png) 33.3% center/1px 90% no-repeat,url(../images/vertical-line.png) 66.6% center/1px 90% no-repeat,url(../images/vertical-line.png) center center/90% 1px no-repeat;
}
}

.home-chapter-section .home-chapters-item {
    padding-left: 10px;
    padding-right: 10px;
    width: 33%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 1px;
    margin-top: 1px;
}

.home-chapter-section .item {
    z-index: 2;
    padding: 35px 20px 0;
    position: relative;
    transition-property: all;
    transition-duration: 170ms;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.home-chapter-section .item a.chapter-info {
    text-decoration: none;
    z-index: 1;
    display: block;
    color: #1d1c1d;
    padding: 0px 20px 0;
    width: 100%;
    min-height: 300px;
    max-height: 300px;
}
.chapter-info img{
    width: 48px;
    margin-bottom: 20px;
}
.home-chapter-section .chapter-title {
    margin-bottom: 10px;
    margin-top: 0;   
    color: #1d1c1d;
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
}

.home-chapter-section .chapter_description {
    font-size: 16px;
    line-height: 22px;
    padding: 0;
    margin: 4px auto 0;
    max-width: 340px;
     color: #454245;
}

/*Home Page Featured style*/
.featured {
    background: #fff;
    padding: 10px 0 50px;
}

.featured .featured-inner {
    margin-top: 40px;
    min-height:80px;
}

.featured .featured-inner.featured-inner-ext:first-child {
    margin-top: 0px;    
}


.featured h2.section-heading {
    font-size: 26px;
    color: #000;
    margin-bottom: 18px;
    line-height: 23px;
    font-weight:600;
}

.featured .featured-articles{
    margin-top:20px;
}

.featured .featured-articles .div-bull{
    width:100%;
    display:block;
}
.featured .featured-articles .div-bull svg{
    display: inline-block;
    vertical-align: super;   
    width: 8px;
    color: #999;
}
.featured .featured-articles a{
   display: inline-block;
    width: 95%;
    vertical-align: middle;
    color : #1264a3;
    margin-bottom:10px;
}
.featured .featured-articles a span{
    font-size : 16px;
    margin-left: 20px;   
    display: inline-block;
}
.featured .featured-articles a:hover{
    color : #01858B;
}
.featured .featured-articles a:hover span{
     color : #01858B;
}

/*END Home Page Featured style*/

/*BreadCrumb*/

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 55px 0 45px;
    background-color: transparent;
    font-family: 'Open Sans', sans-serif;  
}

    .breadcrumb li a,
    .breadcrumb-item.active {
        color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
    }

        .breadcrumb li a:hover {
            color: #fff;
        }

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    background-image: url(../images/bred-arrow.png);
    background-repeat: no-repeat;
    width: 5px;
    height: 9px;
}

.breadcrumb-item + .breadcrumb-item {
   
}

.breadcrumb li a, .breadcrumb-item.active {
    color: #9b9b9b;
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before{
        color: #9b9b9b;
}

.breadcrumb li a:hover {
    color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
    background-image: none;
    background-repeat: no-repeat;
    content: "\00bb";
    padding-right: 15px;
    font-size: 20px;   
    line-height: 20px;
}

/*END BreadCrumb*/

/*Inner Page CSS*/
.popular {
    background: #fff;
    padding: 50px 0 50px;
}

.popular-inner {
    margin-top: 40px;
    min-height:400px;
    font-family: 'Open Sans', sans-serif;  
    font-size:14px;
}

.popular-inner .scroll-fix-point{
    height:1px;
    width:100%;
}

/*left navigation menu style*/ 

.left-navigation{
    width:300px;
    background:#f2f2f2;   
    padding:0px;
    border-left:3px solid #02AAB3;
    min-height:20px;
}

.left-navigation ul{
    list-style:none;
    margin-bottom: 0px;
    padding: 0px;
}

.left-navigation ul li{
    list-style:none;
    display:block;   
    border-bottom: 1px solid #999;
}

.left-navigation ul li a{
    color:#000;
    font-size:16px;
    display:block;    
    padding:10px;
}

.left-navigation ul li a svg{
    display:inline-block;    
    margin-right:10px;
}

.left-navigation ul li.active svg, .left-navigation ul li.active a{
    color:#fff;    
    background:#F9B74E;
}

.left-navigation ul li a:hover{
     color:#000; 
     background:#fef1de;   
}

.left-navigation ul li.active a:hover{
     color:#fff;  
     background:#F9B74E;  
}


/*New sub Menu*/

.sidenav {
  
}

/* Style the sidenav links and the dropdown button */
.sidenav a.item-topic {
  padding: 10px 0px 10px 25px;
    text-decoration: none;
    display: block;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-size: 12px;
    width: 100%;   
    margin-left: 0px;
}

.sidenav a.item-topic.active{
    background: #02AAB3;
    color:#fff;
}

.dropdown-btn {
  padding: 0px;
  text-decoration: none; 
  display: inline-block;
  border: none;
  background: none; 
  text-align: left;
  cursor: pointer;
  outline: none;
  float:left;
}

.left-navigation ul li .dropdown-btn svg{
    font-size:20px;
}

.dropdown-btn:focus{
    outline:none !important;
}

/* On mouse-over */
.sidenav a.item-topic:hover {
   background: #02AAB3;
  color:#fff;
}

/* Add an active class to the active dropdown button */


/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display:none;
 background-color: #f4f0ec;   
}

/* Optional: Style the caret down icon */
.left-navigation ul li.active a.item-topic{
    color:#000;
    font-weight:normal;
    background-color: #f4f0ec;
}

.left-navigation ul li.active a.item-topic.active{
    background: #35bdc0;
  color:#fff;
    font-weight:normal;
}

.left-navigation ul li.active a.item-topic:hover{
     background:#35bdc06b;
  color:#000;
}

.left-navigation ul li.active a.item-topic.active:hover{
    background: #35bdc0;
  color:#fff;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}  
}

/*End New sub Menu*/

/*end left navigation menu style*/ 


/*Inner Page Right Side Content Css*/

.result-section {
    background: #fff;
    padding: 0px 0 50px;
    font-family: 'Open Sans', sans-serif;  
    font-size:14px;
}

.result-section .head-content{
    margin-bottom:30px;
}

.result-section .head-content p{
    color:#999;
}

.result-section .result-section-inner {
    margin-top: 30px;
    min-height:80px;
}

.result-section-inner .head-content p{
    color:#999;
}

.result-section .result-section-inner .head-content{
    margin-bottom:0px;
}

.result-section h2.section-heading {
    font-size: 24px;
    color: #000;
    margin-bottom: 18px;
    line-height: 23px;   
}

.result-section .section-articles{
    margin-top:20px;
}

.result-section .section-articles a{
color : #1264a3;
display:inline-block;
margin-bottom:20px;
margin-left:14px;
}

.result-section .section-articles svg{
    font-size :  10px;
color : #89898b;
display:inline-block;
vertical-align:text-top;
margin-right:14px;
float:left;
}

.result-section .section-articles a span{
    font-size : 16px;
color : #1264a3;

}

/*End Inner Page Right Side Content Css*/

/*popover dropdown style*/
.hover_dropdown {
    margin: 0;
    border: solid 1px #c7c7c7;
    width: 265px;
    padding: 0px;
    left: 40px;
    right: 0;
    display:block;
}

.hover_dropdown li{
    padding:5px 0px !important;
}

.hover_dropdown:after, .hover_dropdown:before {
    bottom: 100%;
    right: 19px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.hover_dropdown:before {
    border-color: rgba(199, 199, 199, 0);
    border-bottom-color: #c7c7c7;
    border-width: 14px 10px;  
}

.hover_dropdown li a {
    font-size: 14px !important;
    padding: 10px 5px;
    color: #000;
    display:block !important;
}

.hover_dropdown:after, .hover_dropdown:before {
    bottom: 100%;
    right: 125px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.hover_dropdown:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 14px 10px;   
}
/*popover dropdown style*/

/*search result page*/
.h1-heading{
    font-size: 36px;
}
.result-section p.artl-name{
    font-size:20px;    
}

.result-section p.artl-name a{
    color:#000;
}

.result-section p.artl-name a:hover{
    color:#01858B;
}

.result-section p.artl-desc{
    font-size:14px;
    color:#909090;
}

.result-section p.artl-parent-info{
    font-size:11px; 
}

.result-section p.artl-parent-info a{
    color:#02AAB3;
}

.result-section p.artl-parent-info a:hover{
    color:#01858B;
}
/*End search result page*/

/*article detail page css*/

.artl-dtl-content .h1-heading{
    margin-bottom:10px;
}

.stick-to-abs-point{
    display:block;
    height:1px;
    width:100%;
}
.artl-dtl-content{
    width:100%;
    margin-top: 40px;
    border-right:1px solid #eee;
    padding: 0px 40px 0px 0px;
    margin-bottom: 40px;   
}

.artl-dtl-content .profileDescribe{
display:block;
    min-height:300px;
    width:100%;
     padding-top:30px;    
}

    .artl-dtl-content .profileDescribe figure {
        width:100%;
        /*max-height:400px;*/
        /*min-height:200px;*/
    }
    
    .artl-dtl-content .profileDescribe .vid-frame {
        width: 100%;
    max-height: 400px;
    height: 400px;     
    } 

    .vp-center{
        display:block !important;
    }

    .player .vp-video-wrapper .vp-preview{
        background-position: center !important;
    background-size: cover !important;
    }

.artl-navigate-section{
   width: 250px;
    padding: 40px 0px 0px 10px;
}

 .companyDetail {
       overflow: auto;   
       border-bottom:1px solid #d2d2d2;  
    }
 .companyDetail a{
     padding: 10px 0px 10px 15px;
     display:block;
     float:left;
       font-size: 14px;   
       color:#000;    
       width: 100%; 
        border-radius:2px;    
 }

 .companyDetail a:hover{
      background:#fef1de;
       
 }

.companyDetail a svg {
    font-size: 18px;
    margin-right:10px; 
    color: #999;
}

.companyDetail:first-child {
    border-top: none;
}

.companyDetail.active{
    border-bottom:none;
}

.companyDetail.active a{
    background: #fbbb58;
    color:#fff;
}

.companyDetail.active a, .companyDetail.active a svg {
    color: #fff;
}

.stick-to-fix {
position: fixed;
z-index:10;
}

/*End article detail page css*/

/*Lazy Loader*/

.temp-height {
    min-height: 150px;
    position: relative;    
}

    .temp-height .temp-overlay {
        position: relative;
        width: 100%;
    }

.temp-overlay.static-loader #temp_status {
    width: 120px;
    position: absolute;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.temp-overlay #temp_status {
    width: 120px;
    position: absolute;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/*End Lazy Loader*/

/*article listing style*/

.featured-articles .div-bull{
    width:100%;
    display:block;
}
.featured-articles .div-bull svg{
    display: inline-block;
    vertical-align: super;   
    width: 8px;
    color: #999;
}
.featured-articles a{
   display: inline-block;
    width: 95%;
    vertical-align: middle;
    color : #1264a3;
    margin-bottom:10px;
}
.featured-articles a span{
    font-size : 16px;
    margin-left: 20px;   
    display: inline-block;
}
.featured-articles a:hover{
    color : #01858B;
}
.featured-articles a:hover span{
     color : #01858B;
}

/*End article listing style*/

/* FAQs section style*/
.popular.faq-help{
    padding: 100px 0px;    
}

/*.faq-help .help-note{
    border-top: 1px solid #eee;
    padding: 50px 30px;
    text-align: center;
}*/
.help-note{
    border-top: 1px solid #eee;
    padding: 50px 30px;
    text-align: center;
    margin-top:60px;
}
.help-note .help-note-heading{
    font-size: 32px;
    font-family: open san, sans-serif;
    margin-bottom: 15px;
    color: #000;
}

.help-note .help-note-desc{
    font-family: open san, sans-serif;
    color: #999;
    width: 450px;
    margin: auto;
    font-size: 16px;
}

.help-info-area{
    background:#fff;
    border:1px solid #02AAB3;
    padding:30px 50px;   
    font-family: open san, sans-serif; 
    font-size: 16px;
    text-decoration:none;
    display:block;
    margin: 30px 0px 0px;
    height: 170px;
}

.help-info-area img{
    width: 32px;
}

.help-info-area .spn-contact{
    color: #35bdc0;
    font-size: 16px;
    padding: 10px;
    display: block;
    font-weight: 600;
}

.help-info-area .spn-extra-info{
    color: #999;
    font-size: 16px;
    padding: 0px 0px 10px;
    display: block;
}

@media(max-width:991px){
    .header.header-ban {
    padding-top: 130px;   
   background-size: cover;
    background-position: center bottom;   
    height: auto;
}

    .header-ban .banner-cont h1 {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

    .header-ban .banner-cont {
    width: 500px;
    text-align: center;
    margin: auto;
}

    .header-ban .header-btn {
    font-size: 14px;
    color: #000;
    padding: 10px 10px;
    background: rgba(255,255,255,0.7);    
    border-radius: 4px;
}
    .artl-dtl-content .profileDescribe .vid-frame{
        height:auto;        
    }
}

@media(max-width:1200px)
{
    .home-chapter-section .item{
        padding: 25px 20px 0;
    }
    .home-chapter-section .chapter-title{
        font-size: 22px;
        line-height: 24px;
    }
    .home-chapter-section .chapter_description{
        font-size: 14px;
    line-height: 22px;
    }
    .left-navigation {
    width: 250px;    
}
    .chapter-tab-content .nav-tabs .nav-link{
        font-size:14px;
    }
}

@media screen and (max-width: 991px){
    .home-chapter-section .home-chapters-item {
    width: 49.6%;
}   
     .chapter-tab-content{
        display:none;
    }   

     .topnav {
  overflow: hidden;  
}

    
    /*.header-btn-area .icon {
  display: block;   
}*/
    

}

@media screen and (max-width: 767px){
    .home-chapter-section{
        padding-bottom:50px;
        padding-top:30px;
    }
    .home-chapter-section .home-chapters-item {
     -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    width: 100%;    
    background: #fff;
    margin-top: 15px;
    border-radius: 6px;
}
    .home-chapter-section .item{
        padding-bottom:20px;
        background:#fff;
    }
    .home-chapter-section .item a.chapter-info{
        min-height: 0;
        max-height: 100%;
    }
    

    .footerBottom {
    padding-top: 0px;
    margin-top: 0px;
}
    .copy.fadeInLeft{
        text-align: center;
    margin-top: 10px;
    width: 100%;
    }

    .socialList{
        text-align:center;
        width: 100%;
    }
    .socialList ul{
        display:inline-block;
        list-style:none;
    }
    .socialList ul li{
        display:inline-block;
        margin-right:7px;
    }

    .left-navigation{
        width:100%;
        margin-bottom:20px;
    }
    .left-navigation.stick-to-fix{
        position:relative;
        top:auto !important;
    }
    .artl-navigate-section{
        display:none;
    }
    .artl-dtl-content{
        padding: 0px;
        border-right:none;
    }   
   
}

@media (max-width: 640px){
    .header.header-ban{
        padding-bottom:45px;
    }
    .header-ban .banner-cont {
    width: 100%;
    text-align: center;
    margin: auto;
}

    .header-ban .banner-cont h1{
    font-size:22px;
}

    .header-ban .inputWrap .txt-input-box.search-text {   
    padding-right: 0px;
    font-size: 14px;
}

    .header-ban .btn-search-box {    
    padding: 20px;
}

    .popular {    
    padding: 25px 0 10px;
}
    .popular-inner {
    margin-top: 25px;
    min-height: 100px;
}

    .breadcrumb li a, .breadcrumb-item.active {    
    font-size: 12px;
}
    .left-navigation ul li a{
        font-size:14px;
    }
    .h1-heading {
    font-size: 22px;
}
    .featured-articles a {    
    margin-bottom: 10px;
}
    .featured-articles a span {
    font-size: 13px;
    margin-left: 7px;    
}
    .featured-articles .div-bull svg {
    display: inline-block;
    vertical-align: baseline;    
}
    .result-section .head-content {
    margin-bottom: 20px;
}
    .result-section .result-section-inner {
    margin-top: 15px;    
}
    .result-section h2.section-heading {
    font-size: 16px;    
    margin-bottom: 15px;
    line-height: 16px;
}
     .topnav.responsive .login-inner{
    display:block;
    border: none;
    border-radius: 0px;
}
      .header-btn-area .header-btn.outer-header-btn{
        display:none;
    }  
}

@media(max-width:440px){
    .header.header-ban .logo span{
        display:none;
    }
}
