.author__show{
    font-family: Arial;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    position: relative;
    display: block;
    cursor: pointer;
    text-transform: capitalize;
    transition: .3s;
}
.author__show::after{
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 5px;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #333333 transparent transparent transparent;
    transition: .3s;
}
.author__show:hover,
.related_posts a:hover{
    color: #e20038;
    text-decoration: none;
}
.author__show:hover::after{
    border-color: #e20038 transparent transparent transparent;
}
.changeArrow .author__show::after{
    transform: rotate(180deg);
}
.years a{
    display: block;
}
.authors__item{
    font-size: 14px;
    color: #0d3357;
    font-weight: bold;
    padding-bottom: 10px;
    list-style: none;
}
.authors ul{
    padding: 0;
    margin: 0 0 10px;
}
.authors__item a,
.years a{
    color: #0d3357;
    font-style: normal;
    -webkit-transition: all, .4s, ease;
    -moz-transition: all, .4s, ease;
    -ms-transition: all, .4s, ease;
    -o-transition: all, .4s, ease;
    transition: all, .4s, ease;
}
.years a{
    font-weight: bold;
    padding-bottom: 10px;
}
.authors__item a:hover,
.years a:hover{
    text-decoration: none;
    color: #e20038;
}
.authors{
    padding: 25px 0;
    margin-bottom: 15px;
}
.authors__title{
    font-size: 14px;
    color: #536d7d;
    line-height: 17px;
    text-transform: uppercase;
    display: block;
    /* font-family: Montserrat; */
    font-weight: 500;
}
.subscribe{
    background-color: #e8f5ff;
    padding: 15px 15px 0;
    margin-bottom: 35px;
}
.subscribe input[type='email']{
    width: 100%;
    height: 36px;
    padding: 0px 12px;
    border: 2px solid #10345a;
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #10345a;
    font-weight: 500;
    max-width: 300px;
}
.subscribe input[type='submit']{
    width: 121px;
    height: 36px;
    border: 2px solid #10345a;
    background-color: #10345a;
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: .3s;
}
.subscribe input[type='submit']:hover{
    background-color: #fff;
    color: #10345a;
}
.subscribe p{
    margin: 0;
    text-align: center;
}
.subscribe__title{
    margin: 0 0 10px;
    /* font-family: Montserrat; */
    font-size: 20px;
    color: #e20038;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.subscribe__text{
    font-family: Arial;
    font-size: 12px;
    color: #333333;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin-bottom: 15px;
}
.banner{
    padding: 50px 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}
.banner__wrapper img{
    width: 456px;
    height: 116px;
}

.header-blog{
    height: 82px;
}
.header-blog .site-header__inner{
    padding-top: 0;
    padding-bottom: 0;
}
.header-blog .site-header__logo{
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-blog .site-header__wrap{
    align-items: normal;
}
.blogPage{
    padding: 50px 0;
}
.blogPage h2{
    margin-top: 0;
    font-weight: 500;
}
.rivkin-rounds-description{
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rivkin-rounds-description p {
    width: 75%;
}
.rivkin-rounds-description a {
    width: 280px;
}
.rivkin-rounds-description button {
    width: 100%;
    height: unset;
    transition: all 0.35s ease;
    font-size: 16px;
    line-height: 46px;
    font-weight: 500;
    border: 2px solid #e31836;
    background-color: #e31836;
    font-family: Montserrat, sans-serif;
    color: #ffffff;
    text-align: center;
    display: block;
    text-decoration: none;
}
.rivkin-rounds-description a:hover {
    text-decoration: none;
}
.rivkin-rounds-description button:hover {
    border: 2px solid #e31836;
    background-color: white;
    color: #e31836;
}
@media screen and (max-width: 767px){
    .rivkin-rounds-description p {
        width: 100%;
    }
    .rivkin-rounds-description a {
        margin: 0 auto;
    }
}
.header-blog .site-header__contact{
    display: block;
}
.site-header__content{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 33.33%;
}
.site-header__category{
    margin-right: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}
.site-header__category > ul{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #10345a;
    text-transform: uppercase;
    height: 82px;
}
.site-header__category > ul::after{
    content: '';
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-right: 2px solid #10345a;
    border-bottom: 2px solid #10345a;
    position: absolute;
    right: 0;
    top: 49%;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s;
}
.site-header__category > ul.topicsDesktop:hover ul{
    opacity: 1;
    display: block;
}
.site-header__category > ul.topicsDesktop:hover::after{
    transform: translateY(-40%) rotate(-135deg);
}
.site-header__category ul{
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-right: 20px;
}
.health-services_topics{
    position: relative;
    /* font-family: Montserrat; */
}
.site-header__category ul ul{
    position: absolute;
    left: 50%;
    top: 51px;
    transform: translateX(-50%);
    background-color: #10345a;
    padding: 30px 20px 20px;
    width: 280px;
    opacity: 0;
    transition: .3s;
    display: none;
    text-transform: none;
}
.site-header__category .topicsMobile{
    display: none;
}
.site-header__category ul a{
    color: #ffffff;
    text-decoration: none;
    /* font-family: Montserrat; */
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 7px;
    transition: .3s;
}
.site-header__category ul a:hover{
    color: #ce0d27;
}
.site-header__category .categories{
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #10345a;
    font-weight: 500;
    text-align: center;
}
.content__author-item{
    display: flex;
}
.content__author-img{
    width: 120px;
    height: 120px;
    margin-right: 25px;
    flex: none;
}
.content__author-img img{
    max-width: 100%;
    height: auto;
}
.content__author-info{
    width: 100%;
}
.author-title{
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #536d7d;
    font-weight: 500;
    line-height: 17px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.content__author-info .line{
    opacity: .21;
    margin: 0 0 15px;
}
.author-name{
    font-family: Arial;
    font-size: 18px;
    color: #0d3357;
    font-weight: 700;
    margin: 0 0 6px;
}
.content__author-info a:hover{
    text-decoration: none;
}
.content__author-info a:hover .author-name{
    color: #e20038;
}
.author-job{
    font-family: Arial;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    margin: 0;
}
.blogPage .content__detail{
    margin-bottom: 60px;
}
.blogPage .content__author{
    margin-bottom: 50px;
}
.blogPage .content__author-item{
    padding-bottom: 30px;
}
.related__title{
    /* font-family: Montserrat; */
    font-size: 20px;
    color: #e20038;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.content__related .line{
    opacity: .21;
    margin: 0 0 35px;
}
.content__related .related_posts{
    margin-bottom: 0;
}
.content__related .single_related{
    margin-bottom: 35px;
}
.thankyou{
    padding-bottom: 30px;
}
.thankyou__title{
    font-family: Arial;
    font-size: 24px;
    color: #0d3357;
    font-weight: 700;
    margin: 0 0 20px;
    text-transform: none;
}
.thankyou p{
    font-family: Arial;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px;
}
.allAuthors{
    /*display: none;*/
}
.changeArrow .authors__wrapper{
    max-height: 600px;
    overflow-y: scroll;
}
.searchBlog{
    width: 100%;
}
.searchBlog input[type='text']{
    width: 100%;
    height: 40px;
    border: 1px solid #10345a;
    background-color: #fff;
    padding: 10px 55px 10px 15px;
}
.searchBlog form{
    position: relative;
}
.search__btn{
    border: none;
    background-color: transparent;
    position: absolute;
    right: 10px;
    top: 9px;
    transition: .3s;
}
.search__btn:hover{
    opacity: .7;
}
.search__btn i{
    color: #10345a;
    font-size: 20px;
}
.content__img{
    margin: 35px 0;
}
.content__img img{
    max-width: 100%;
    height: auto;
}
.searchBlog{
    margin-bottom: 50px;
}
.healthSlider__img{
    width: 236px;
    height: 125px;
    margin-bottom: 20px;
}
.healthSlider__img img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.healthSlider {
border-right: 1px solid #C9C9C9;
}

.healthSlider,
.webinarsSlider {
    overflow: hidden;
    position: relative;
    padding: 0 60px;
    width: 50%;
}
/*.healthSlider .swiper-slide-active{*/
    /*padding-left: 50px;*/
/*}*/
/*.healthSlider .swiper-slide-next{*/
    /*margin-right: 50px;*/
/*}*/
.healthSliderWrap .swiper-button-next,
.healthSliderWrap .swiper-button-prev{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    background-color: transparent;
    width: 30px!important;
    height: 20px!important;
}
.healthSliderWrap .swiper-button-prev{
    right: auto;
    left: 0;
}
.healthSliderWrap .swiper-button-next::before,
.healthSliderWrap .swiper-button-prev::before{
    background: none;
    border-top: 2px solid #0d3357;
    border-right: 2px solid #0d3357;
    transform: rotate(45deg);
    width: 13px;
    height: 13px;
    transition: .3s;
}
.healthSliderWrap .swiper-button-prev::before{
    transform: rotate(-135deg);
}
.healthSliderWrap .swiper-button-next:hover::before,
.healthSliderWrap .swiper-button-prev:hover::before{
    border-color: #e20038;
}
.healthSliderWrap{
    position: relative;
    margin: 50px 0;
}
.visitBlog{
    background-color: #e8f5ff;
    padding: 20px 20px 25px;
}
.visitBlog__title{
    font-family: Arial;
    font-size: 20px;
    color: #0d3357;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.visitBlog p{
    font-family: Arial;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin: 0 0 20px;
}
.visitBlog a{
    text-decoration: none;
    width: 176px;
    height: 36px;
    border: 2px solid #10345a;
    background-color: #10345a;
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: .3s;
}
.visitBlog a:hover{
    color: #10345a;
    background-color: #fff;
    text-decoration: none;
}
.return__link{
    font-family: Arial;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}
.return__link:hover{
    color: #e20038;
    text-decoration: none;
}
.return{
    margin-bottom: 30px;
}
.return__link:not(:first-of-type),
.breadcrumb__item a:not(:first-of-type){
    display: none;
}
.breadcrumbs{
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: -15px;
    margin-bottom: 25px;
}
.breadcrumbs li{
    margin-right: 5px;
}
.breadcrumbs a{
    font-family: Arial;
    font-size: 12px;
    color: #333333;
    font-weight: 400;
    line-height: 18px;
    transition: .3s;
}
.breadcrumb__item a:hover{
    color: #e20038;
    text-decoration: none;
}
.noResults__text{
    margin-bottom: 60px;
}
.header-blog .site-header__toggle,
.header-blog .site-header__contact--Mobile,
.open-menu.site-header__blog{
    display: none;
}
.blogPage .pub{
    margin: 30px 0;
}
.detailPage .custom_date{
    display: block;
    margin-bottom: 24px;
}
.publications_author{
    text-decoration: none;
    transition: .3s;
}
.publications_author:hover{
    text-decoration: none;
    color: #e20038;
}
.publications_author-custom:hover{
    text-decoration: none;
}
.custom_date a.publications_author-custom{
    color: #333333;
}
/* .blogPage #category-list .category-list_title{
    font-family: Montserrat;
    font-weight: 500;
}
.blogPage #category-list a,
.authors__item a,
.years a{
    font-family: Montserrat;
    font-weight: 500;
} */
.blogPage #category-list a:focus,
.authors__item a:focus,
.years a:focus{
    outline: none;
}
.blogPage input{
    border-radius: 0;
}
.blogpageMain .c-subscriptionContainer{
    display: none;
}
.blogpageMain .footer_brochure,
.formAuthor{
    display: none;
}
.blogPage .search-filter-results{
    margin-top: 0;
}
.authorBlock{
    display: flex;
    flex-direction: column-reverse;
}
.authorName .line{
    margin-bottom: 0;
}
.authorView,
.blogPage-sidebar__Mobile,
.accordion__content{
    display: none;
}
.blogPage .search-filter-results{
    max-height: none;
}
.accordion__header{
    position: relative;
    cursor: pointer;
}
.accordion__header::after{
    content: '';
    position: absolute;
    top: 5px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 6px;
    border-color: #536d7d transparent transparent transparent;
    transition: .3s;
}
.accordion__header.visible::after{
    transform: rotate(180deg);
}
.blogPagination a.next,
.blogPagination a.prev{
    font-family: Arial;
    font-size: 14px;
    color: #0d3357;
    font-weight: 700;
    text-decoration: none;
    background: none;
    border: none;
    margin-left: auto;
    position: relative;
    transition: .3s;
    top: 0;
}
.blogPagination a.next::after,
.blogPagination a.prev::after{
    content: '';
    width: 10px;
    height: 10px;
    border-left: 2px solid #0d3357;
    border-top: 2px solid #0d3357;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: .3s;
}
.blogPagination a.next::after{
    transform: translateY(-50%) rotate(135deg);
    left: auto;
    right: -15px;
}
.blogPagination a.next{
    position: absolute;
    right: 20px;
}
.blogPagination a.prev{
    position: absolute;
    left: 20px;
}
.blogPagination a.next:hover,
.blogPagination a.prev:hover{
    text-decoration: none;
    background: none;
    color: #e20038;
}
.blogPagination a.prev:hover::after,
.blogPagination a.next:hover::after{
    border-color: #e20038;
}
.blogPagination .title{
    display: none;
}
.blogPagination .page-numbers{
    background: none;
    border: none;
    font-family: Arial;
    font-size: 14px;
    color: #0d3357;
    font-weight: 700;
    text-align: center;
    transition: .3s;
    padding: 0 3px;
}
.blogPagination .page-numbers:hover,
.blogPagination .page-numbers.current{
    background: none;
    color: #e20038;
    border: none;
    text-decoration: none;
}
.blogPagination .page-numbers.current{
    padding: 0 3px;
}
.blogPagination .pagination{
    display: flex;
    justify-content: center;
    position: relative;
}
.blogPagination .screen-reader-text{
    display: none;
}
.blogPage .authors__item,
.rightAuthors{
    display: none;
}
.blogPage .authors__item.showLink{
    display: block;
}
.blogPage-sidebar__Desktop .authors__wrapper:first-child,
.blogPage-sidebar__Mobile .authors__wrapper:first-child{
    display: none;
}


.searchBlog ::-webkit-input-placeholder {
    /* font-family: Montserrat;  */
    font-size: 14px;
    color: #10345a;
    font-weight: 600;
    line-height: 21px;
}
.searchBlog ::-moz-placeholder {
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #10345a;
    font-weight: 600;
    line-height: 21px;
}
.searchBlog :-ms-input-placeholder {
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #10345a;
    font-weight: 600;
    line-height: 21px;
}
.searchBlog :-moz-placeholder {
    /* font-family: Montserrat; */
    font-size: 14px;
    color: #10345a;
    font-weight: 600;
    line-height: 21px;
}

.newsAttr {
    display: none;
}

@media (max-width: 1200px) {
    .single_related,
    .related__title{
        padding: 0;
    }
    .header-blog,
    .site-header__category > ul{
        height: 74px;
    }
    .site-header__category ul ul{
        top: 49px;
    }
    .blogPage-sidebar__Desktop{
        display: none;
    }
    .blogPage-sidebar__Mobile{
        display: block;
    }
    .blogPage-sidebar__Mobile .authors{
        margin-bottom: 0;
    }
    .blogPage-sidebar__Mobile .accordion__content{
        padding-left: 20px!important;
    }
}
@media (max-width: 991px) {
    /*.site-header__category > ul.topicsDesktop{*/
        /*display: none;*/
    /*}*/
    /*.site-header__category .topicsMobile{*/
        /*display: flex;*/
    /*}*/
    .topicsMobile.blockCat ul {
        opacity: 1;
        display: block;
    }
    .topicsMobile.blockCat::after{
        transform: translateY(-40%) rotate(-135deg);
    }
    .site-header__category ul ul{
        top: 45px;
    }
    .header-blog,
    .site-header__category > ul{
        height: 70px;
    }
    .header-blog .open-menu{
        height: auto!important;
    }
}

@media (max-width: 767px) {
    .banner__wrapper img{
        width: 300px;
        height: auto;
    }
    .banner{
        padding: 45px 0;
        height: 330px;
        display: flex;
        align-items: center;
    }
    .banner__wrapper{
        margin: 0;
    }
}

@media (max-width: 600px) {
    .header-blog .site-header__toggle{
        display: block;
    }
    .header-blog .site-header__nav{
        position: absolute;
        left: 0;
        right: 0;
        top: 80px;
        height: 85vh;
    }
    .site-header__category{
        margin-right: 0;
        flex-direction: column;
    }
    .site-header__category ul ul{
        display: block;
        top: 0;
        width: 100%;
        background-color: #10345a;
        height: 0px;
        visibility: hidden;
        opacity: 0;
        color: #fff;
    }
    .site-header__contact--Mobile,
    .open-menu.site-header__blog{
        display: block;
    }
    .header-blog .site-header__contact--Desktop,
    .header-blog .topicsDesktop,
    .header-blog .site-header__contact{
        display: none;
    }
    .site-header__category .topicsMobile{
        width: 100%;
        display: block;
        background-color: #10345a;
        opacity: 0;
        height: 0;
        visibility: hidden;
    }
    .open-menu.site-header__blog .topicsMobile{
        opacity: 1;
        height: 85vh;
        visibility: visible;
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: scroll;
    }
    .site-header__blog .contactLink{
        order: 2;
        width: 100%;
        height: 50px;
        background-color: #fff;
        border: 2px solid #10345a;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 30px 0 20px;
        flex: none;
    }
    .site-header__blog .contactLink a{
        color: #10345a;
        text-decoration: none;
        margin: 0;
        /* font-family: Montserrat; */
        font-size: 16px;
        font-weight: 700;
    }
    .site-header__category > ul::after{
        display: none;
    }
    .changeArrow .authors__wrapper{
        max-height: 420px;
    }
}

.sliderContainers {
    display: flex;
}

@media (max-width: 479px) {
    .healthSlider{
        /* margin: 0 30px; */
        /* width: 100%; */
        border: none;
    }

    .healthSlider,
    .webinarsSlider {
        overflow: hidden;
        position: relative;
        padding: 0 20px;
        width: 100%;
    }

    .sliderContainers {
        display: block;
    }
}
