:root{
    /* --hex_font_family:'PT Sans', sans-serif; */
    /* --hex_font_family_secondary:'PT Serif', serif; */
    --hex_font_family:'Mulish', sans-serif;
    --hex_font_family_secondary:'Mulish', sans-serif;
    --hex_blue_color: #0449D1;
    --hex_btn_hover: #0a54e4;
    --hex_link_color_hover: #1c65f6;
    --hex_link_color: #3f46ae;
    --hex_mild_blue: #323648;
    --hex_link_hover:#0449D1;
    --hex_home_common_text_color: #556575;
    --hex_home_common_title_color: #2f3f50;
    --hex_text_secondary: #333333;
    --hex_text_common_grey: #4f6173;
    --hex_blue_bg: #f5faff;
    --hex_post_titles: #123B67;
    --hex_fade_black: #020a19;
    --hex_error_red: #e16b6b;
    --hex_success_green: #a2f79d;
    --hex_arrow_black: #364352;
    --hex_light_border:  #eaeaea;
    --hex_thin_border: #ecedf3;
    --hex_dark_link_text_color:#191919;
    --hex_link_hover_blue:#0549D1;
    --hex_text_grey:#313F4E;
    --hex-light-grey-bg: #5565750f;
    --hex-white-bg:#fff;
    --hex-offwhite-bg:#fafafc;
    --hex-offblue-hover:#2553DC;
    --hex-miniblog-thumb-bg:#ecf5fe;
    --hex-white-font:#fff;
    --hex-black-color:rgb(0, 0, 0);
  }
 

/* .page_wrapper.new-home{
    padding-top: 100px ;
} */
.tab-link-wrapper{
    border-bottom: 1px solid var(--hex_light_border);
}
.tab__links{
    padding: 20px 25px;
    border: none;
    background: none;
    outline: none !important;
    font-family: var(--hex_font_family);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--hex_dark_link_text_color);
}

.tab__links.active_tab{
    color: var(--hex_link_hover_blue) ;
    pointer-events: none !important;
}
.tab__links.active_tab:hover{
    color: var(--hex_link_hover_blue);
}
.tab__links:hover{
    color: var(--hex_link_hover_blue);
    cursor: pointer;
}
.tab{
    position: relative;
}
.tab__slider{
    position: absolute;
    width: 0px;
    height: 2px;
    transition: 0.5s all ease;
    background-color: var(--hex_link_hover_blue);
    bottom: 0;
    left: 0;
}

/* subtab */

.subtab__links{
    padding: 20px 25px;
    border: none;
    background: none;
    outline: none !important;
    font-family: var(--hex_font_family);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--hex_dark_link_text_color);
}
.subtab__links.active_tab{
    /* color: var(--hex_link_hover_blue); */
}
.subtab__links:hover{
    color: var(--hex_link_hover_blue);
}
.subtab{
    position: relative;
}
.subtab__slider{
    position: absolute;
    width: 50px;
    height: 2px;
    transition: 0.5s all ease;
    background-color: var(--hex_link_hover_blue);
    bottom: 0;
    left: 0;
}
.tabcontent,
.subtabcontent {
  display: none;
}
.tabcontent.active,
.subtabcontent.active{
    display: block;
}

/* home */

.tabcontent__heading{
    font-size: 32px;
    line-height: 48px;
    font-family: var(--hex_font_family);
    font-weight: 700;
    color: var(--hex_dark_link_text_color);
    margin: 0;
    padding-top: 60px;
}
.featured-blog-section.with-heading{
    padding: 50px 0px 40px;
}
.featured-blog-section{
    padding: 60px 0px 40px;
}
.featured-post__thumbnail .featured-post__thumbnail__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.16);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0;
    -webkit-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -moz-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -ms-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -o-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
}
.featured-post__thumbnail .featured-post__thumbnail__img:hover:before {
    opacity: 1;
}
.featured-post__thumbnail .featured-post__thumbnail__img{
    padding-top: 56%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    background-color: var(--hex-offwhite-bg);
}
.featured-post__thumbnail .featured-post__thumbnail__img img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    border-radius: 8px;
}
.featured-post__content {
  
}
.featured-post__heading{
    font-size: 28px;
    line-height: 36px;
    font-family: var(--hex_font_family);
    font-weight: 600;
    color: var(--hex_text_grey);
    margin: 0;
    margin-bottom: 20px;
    display: block;
}
.featured-post__heading:hover{
    color: var(--hex_dark_link_text_color);
    text-decoration: none;
}
.featured-post__text p{
    margin-bottom: 0;
}
.featured-post__text{
    position: relative;
    max-width: 100%;
    padding-bottom: 15px;
}
.featured-post__text p{
    font-family: var(--hex_font_family);
    font-size: 18px;
    line-height: 28px;
    color: var(--hex_home_common_text_color);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab a{
    padding: 20px 25px;
    border: none;
    background: none;
    outline: none !important;
    font-family: var(--hex_font_family);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--hex_dark_link_text_color);
}
.tab a:hover{
    color: var(--hex_link_hover_blue);
    text-decoration: none;
}

.featured-post__text .featured-post__readmore{
    background-color: var(--hex-white-bg);
    line-height: 28px;
    font-size: 18px;
    margin: 10px 0;
    margin-top: 0px;
    display: inline-block;
}
.featured-post__text .featured-post__readmore:before{

}
.post-category-list {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    
}
.post-category-list li a {
    color: var(--hex_home_common_text_color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background-color: var(--hex-light-grey-bg);
    padding: 7px 15px;
    margin-right: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.post-category-list li a:hover {
    color: var(--hex_link_hover_blue);
}
.blog-post-list .other-post-details p,
.blog-box__content-wrap .other-post-details p,
.featured-post__content .other-post-details p{
    font-family: var(--hex_font_family);
    color: var(--hex_home_common_text_color);
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0;
}
.blog-post-list .other-post-details span:first-child,
.blog-box__content-wrap .other-post-details span:first-child,
.featured-post__content .other-post-details span:first-child{
    
    padding-left: 0;
}
.blog-post-list .other-post-details span,
.blog-box__content-wrap .other-post-details span,
.featured-post__content .other-post-details span{
    padding-left:10px;
    padding-right:10px;
    position: relative;
}
.blog-post-list .other-post-details span:nth-child(odd):after,
.blog-box__content-wrap .other-post-details span:nth-child(odd):after,
.featured-post__content .other-post-details span:nth-child(odd):after{
    content: '';
    width: 4px;
    height: 4px;
    right:-2px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    background-color: var(--hex_home_common_text_color);
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;

}
.blog-box{
    margin-bottom: 30px;
    width: 100%;
}
.blog-box__thumbnail .blog-box__thumbnail__img {
    padding-top: 55%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: var(--hex-offwhite-bg);
    border-radius: 8px;
}
.blog-box__thumbnail .blog-box__thumbnail__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.blog-box__heading {
    font-size: 22px;
    color: var(--hex_home_common_title_color);
    margin:20px 0px 15px 0px;
    line-height: 32px;
    font-family: var(--hex_font_family_secondary);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
}
.blog-post-list__item__heading--margin-b-0{
    margin-bottom: 0;
}
.blog-box__heading:hover{
    color: var(--hex_dark_link_text_color);
    text-decoration: none;
}
.blog-post-list__item__thumbnail__img:before,
.blog-box__thumbnail .blog-box__thumbnail__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.16);
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -moz-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -ms-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    -o-transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    transition: all .3s cubic-bezier(0.43,0.27,0.39,0.88);
    border-radius: 8px;
    z-index: 2;
}
.blog-post-list__item__thumbnail__img:hover:before,
.blog-box__thumbnail .blog-box__thumbnail__img:hover:before{
    opacity: 1;
}
.blog-box{
    padding-top: 50px;
}
.blog-post-list__item__thumbnail__img{
        padding-top: 57%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-color: var(--hex-offwhite-bg);
        border-radius: 8px;
}
.blog-post-list__item__thumbnail__img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1;
}
.blog-post-list__item__heading{
    font-size: 22px;
    color: var(--hex_home_common_title_color);
    margin:20px 0px 15px 0px;
    line-height: 32px;
    font-family: var(--hex_font_family_secondary);
    font-weight: 600;
    display: inline-block;
}
.blog-post-list__item__heading:hover {
    color: var(--hex_dark_link_text_color);
    text-decoration: none;
}
.blog-post-list__item{
    padding-bottom: 40px;
}
.blog-post-list__item__thumbnail{
    max-width: 25%;
}
.blog-post-list__item__content-wrap{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.blog-sub-heading{
    font-size: 32px;
    color: var(--hex_dark_link_text_color);
    margin:20px 0px 10px 0px;
    line-height: 38px;
    font-family: var(--hex_font_family_secondary);
    font-weight: 600;
    display: inline-block;
}

.blog-post-list__item .post-category-list{
    margin-bottom: 5px;
}
.loadmore:after{
    content:"";
    background-color: var(--hex-offwhite-bg);
    left:0;
    opacity: 0.2;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: 0.5s all ease;
}
.loadmore.loading:after{
    width: 100%;
    display: block;
}
/* subscripbe popup */





/******************************************************/



.tab{
    width: 100%; 
    overflow: auto; 
    white-space: nowrap; 
    left:0;
    transform: 0.5s all ease;
    scroll-behavior: smooth;
}


.toright {
    -webkit-animation: left-to-right .6s both;
    -moz-animation: left-to-right .6s both;
    -ms-animation: left-to-right .6s both;
    -o-animation: left-to-right .6s both;
    animation: left-to-right .6s both;
}
.toleft {      
    -webkit-animation: right-to-left .6s both;
    -moz-animation: right-to-left .6s both;
    -ms-animation: right-to-left .6s both;
    -o-animation: right-to-left .6s both;
    animation: right-to-left .6s both;

}
.tabcontent {
    margin: 0 auto;
}
.tabcontent .all_list_blog_type {
    padding-bottom: 20px;
}
.footer-subscribe-pop__container button:hover{
    cursor: pointer;

}

@-webkit-keyframes left-to-right{
    0%{
        opacity:0;
        -webkit-transform:translate(-70px,0);
        -moz-transform:translate(-70px,0);
        -ms-transform:translate(-70px,0);
        -o-transform:translate(-70px,0);
        transform:translate(-70px,0);
    }
    100%{
        opacity:1;
        -webkit-transform:translate(0,0);
        -moz-transform:translate(0,0);
        -ms-transform:translate(0,0);
        -o-transform:translate(0,0);
        transform:translate(0,0);
    }
}
@keyframes left-to-right{
    0%{
        opacity:0;
        -webkit-transform:translate(-70px,0);
        -moz-transform:translate(-70px,0);
        -ms-transform:translate(-70px,0);
        -o-transform:translate(-70px,0);
        transform:translate(-70px,0);
    }
    100%{
        opacity:1;
        -webkit-transform:translate(0,0);
        -moz-transform:translate(0,0);
        -ms-transform:translate(0,0);
        -o-transform:translate(0,0);
        transform:translate(0,0);
    }
}
@-webkit-keyframes right-to-left{
    0%{
        opacity:0;
        -webkit-transform:translate(70px,0);
        -moz-transform:translate(70px,0);
        -ms-transform:translate(70px,0);
        -o-transform:translate(70px,0);
        transform:translate(70px,0);
    }100%{
        opacity:1;
        -webkit-transform:translate(0,0);
        -moz-transform:translate(0,0);
        -ms-transform:translate(0,0);
        -o-transform:translate(0,0);
        transform:translate(0,0);
    }
}
@keyframes right-to-left{
    0%{
        opacity:0;
        -webkit-transform:translate(70px,0);
        -moz-transform:translate(70px,0);
        -ms-transform:translate(70px,0);
        -o-transform:translate(70px,0);
        transform:translate(70px,0);
    }100%{
        opacity:1;
        -webkit-transform:translate(0,0);
        -moz-transform:translate(0,0);
        -ms-transform:translate(0,0);
        -o-transform:translate(0,0);
        transform:translate(0,0);
    }
}
.tab::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .tab{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  /* resource  */


/* new resource  */
.blog-box .blog-box-resource{
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color:var(--hex-black-color);
    border-radius: 8px;
    position: relative;
    padding: 40px 75px 40px 25px;
    padding-bottom: 35%;
    overflow: hidden;

}
.blog-box-resource__tag{
    width: 240px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 22px;
    right: -75px;
    text-align: center;
    letter-spacing: 1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding: 10px 60px;
    overflow: hidden;
}
.blog-box-resource__tag-text{
    font-family: var(--hex_font_family);
    font-weight:  600;
    font-size: 14px;
    line-height:  23px;
    letter-spacing: 0px;
    color: var(--hex-white-font);
    opacity: 0.5;
    overflow: hidden;
}
.subtabdivs .blog-box.resource-div{
   -webkit-box-flex:1;
   -ms-flex:1 1 auto;
   flex:1 1 auto;
   display:-webkit-box;
   display:-ms-flexbox;
   display:flex;
}
.blog-box-resource__heading{
    font-family: var(--hex_font_family);
    font-weight:  600;
    font-size: 22px;
    line-height:  32px;
    letter-spacing: 0px;
    color: var(--hex-white-font);
    margin-bottom: 15px;
}
.blog-box-resource__content{
    font-family: var(--hex_font_family);
    font-weight:  400;
    font-size: 16px;
    line-height:  24px;
    letter-spacing: 0px;
    color: var(--hex-white-font);
    opacity: 0.6;
    margin-bottom: 0px;
}
.blog-box-resource__button{
    background-color : var(--hex_link_hover_blue);
    border-radius: 4px;
    opacity: 1;
    color: var(--hex-white-font);
    padding: 14px 25px;
    margin-top: 25px;
    display: inline-block;
    text-decoration: none;
    font-family: var(--hex_font_family);
    font-weight:  600;
    font-size: 16px;
    line-height:  20px;
    letter-spacing: 0px;
}
.blog-box-resource__button:hover{
    background-color :var(--hex-offblue-hover);
    color: var(--hex-white-font);
    text-decoration: none;
}
.subtabdivs{
    display: flex;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}



/* responsive */
@media screen and (max-width: 1200px){
    .featured-post__text p {
        -webkit-line-clamp: 3;
    }
    .featured-post__heading {
        font-size: 22px;
        line-height: 30px;
    }
    .featured-post__text {
        padding-bottom: 5px;
    }
}
@media screen and (max-width: 1050px){
   .featured-post__text{
       display: none;
   }
    .featured-post__heading {
        font-size: 22px;
        line-height: 30px;
    }
    .blog-post-list__item__thumbnail {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }
    .blog-post-list__item__content-wrap {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }
    .blog-post-list__item__heading {
        margin-top: 0px;
    }
}
 @media screen and (max-width: 991px){


.tab__links:hover{
    color: var(--hex_dark_link_text_color);
    cursor: pointer;
}
.featured-post__text p {
    font-size: 16px;
    line-height: 26px;
}
.featured-post__text .featured-post__readmore {
    font-size: 16px;
    line-height: 26px;
}
/* resource  */
.blog-box-resource__button{
    padding: 15px 15px;
}
.blog-box .blog-box-resource {
    padding-right: 75px;
}
}
@media screen and (max-width: 640px){
    .mits_other_post--nogutters{
        padding: 0;
    }
    .featured-post__text p {
        -webkit-line-clamp: 3;
    }
    .featured-post__text{
        display: block;
        padding-bottom: 10px;
    }
    .featured-post__thumbnail{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .featured-post__data{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 30px;
    }
    .featured-post__heading {
        font-size: 22px;
        line-height: 30px;
    }
    .featured-post__text p {
        -webkit-line-clamp: 3;
    }
    .tab__links {
        padding: 16px 20px;
    }
    .featured-blog-section {
        padding: 50px 0px 10px;
    }
    .featured-blog-section.with-heading{
        padding: 30px 0px 40px;
    }
    .tabcontent__heading {
        font-size: 26px;
        line-height: 34px;
        padding-top: 30px;
    }
    .blog-box__heading {
        font-size: 22px;
        line-height: 30px;
    }
    .blog-sub-heading {
        font-size: 26px;
        margin: 0px 0px 10px 0px;
        line-height: 34px;
    }
    .mits_blog_section.all_collapse_article{
        padding-top: 40;
    }
    .mits_other_post.mg-blog.row>div:last-child .blog-box{
        margin-bottom: 0;
    }
    .blog-post-list__item__heading {
        font-size: 20px;
        margin: 10px 0px 10px 0px;
        line-height: 28px;
    }
    .blog-post-list__item {
        padding-bottom: 20px;
    }
    .blog-box {
        padding-top: 10px;
    }
    .subtabcontent{
        padding-top: 30px;
    }
    .blog-post-list__item__thumbnail{
        display: none;
    }
    .blog-post-list__item__content-wrap {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
}

@media screen and (min-width: 768px){
    .subtabdivs{     
        -moz-box-flex: 0 0 50%; 
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px){
    .subtabdivs{     
        -moz-box-flex: 0 0 33.333333%; 
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
}
@media screen and (max-width: 1023px) and (min-width: 576px){
    .mits_other_post--nogutters{
        justify-content: center;
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        justify-content:center
    }
    .resource-div-par{
        -webkit-box-ordinal-group:4;
        -ms-flex-order:3;
        order:3;
    }
  
}
/* searchpage */
body.search-results .blog-post-list__item__thumbnail__img.mini-thumb{
    background-color: var(--hex-miniblog-thumb-bg);
}
.mits_blog_section.mits_search_result{
    padding-top: 20px;
}

