body {
    padding-top: 95px;
}

.header {
    height: 95px;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 45px;
    background: #FFFFFF;
    position: fixed;
    z-index: 100;
}

.header .right {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .language_btn {
    background: #73808B;
    padding: 0 27px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

.header .language_btn svg {
    margin-left: 10px;
}

.language_dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 10px 27px;
    z-index: 10;
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(-30px);
}

.header .language_btn:hover .language_dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.language_dropdown li {
    margin-bottom: 5px;
}

.language_dropdown li:last-child {
    margin-bottom: 0;
}

.language_dropdown li a {
    font-size: 14px;
    line-height: 17px;
    color: #5C6670;
    text-transform: none;
}

.language_dropdown li a:hover {
    color: #316590;
}

.header_nav ul {
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.header_nav ul li {
    margin-left: 23px;
}

.header_nav ul li a {
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5C6670;
}

.header_nav ul li a:hover {
    color: #316590;
}

.main_screen {
    position: relative;
}

.main_screen_item {
    position: relative;
}

.main_screen_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.home .main_screen_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.main_screen_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_screen_bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 64.18%);
}

.main_screen .container {
    z-index: 2;
    min-height: 478px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 98px;
}

.main_screen_slider .main_screen_item .container {
    height: calc(73vh - 95px);
    padding-bottom: 164px;
}

.main_title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #FFFFFF;
}

.main_screen_slider .main_screen_item .main_title {
    max-width: 735px;
}

.main_screen .main_title {
    max-width: 642px;
    line-height: 140%;
}

.share_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #73808B;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    padding-right: 2px;
}

.pdf_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #C40101;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.main_screen .share_btn:hover {
    background-color: #316590;
}

.main_screen .btns_wrpr {
    display: flex;
    align-items: center;
}

.main_screen .btns_wrpr .share_btn {
    margin-right: 18px;
}

.main_screen .middle_text {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.main_screen .category {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0 20px;
}

.main_screen .middle_text span {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.main_screen .middle_text h1:first-child {
    margin-right: 0;
}

.main_screen .category:hover {
    color: #316590;
}

.main_screen .date {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.main_screen_slider_arrows {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 106px;
    right: 50%;
    margin-right: -582px;
    border-radius: 3px;
    overflow: hidden;
    z-index: 2;
}

.main_screen_arrow {
    background: #316590;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    width: 50px;
    height: 50px;
}

.main_screen_arrow:hover {
    opacity: 0.8;
}

.main_screen_prev {
    border-right: 1px solid #29577D;
    background: #316590 url(../img/main_screen_arrow_prev.svg) no-repeat center;
}

.main_screen_next {
    background: #316590 url(../img/main_screen_arrow_next.svg) no-repeat center;
}

.topic_s {
    margin-top: -105px;
    padding-bottom: 75px;
}

.topic_s .container {
    display: flex;
    flex-wrap: wrap;
}

.topic_s .left {
    width: 49%;
}

.topic_s .right {
    width: 51%;
    padding-top: 145px;
    padding-left: 63px;
}

.topic_s .img_wrpr {
    border-radius: 3px;
    overflow: hidden;
}

.topic_min_title {
    font-weight: 500;
    font-size: 16px;
    color: #636363;
    display: block;
}

.def_lil_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #316590;
}

.topic_s p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: #636363;
    margin-bottom: 15px;
}

.topic_s p:last-child{
    margin-bottom: 0;
}

.topic_s .def_lil_title {
    max-width: 528px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.def_title {
    font-weight: 700;
    font-size: 36px;
    /* line-height: 44px; */
    color: #316590;
    margin-bottom: 40px;
}

.discover_clme_s {
    padding-bottom: 75px;
}

.discover_clme_wrpr {
    display: flex;
    flex-wrap: wrap;
    margin: -21px;
}

.discover_clme_item {
    width: calc(33.33% - 42px);
    margin: 21px;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 29px 26px;
    box-shadow: 0px 4px 7px rgba(0, 62, 113, 0.05);
}

.discover_clme_item > a {
    display: flex;
    align-items: center;
}

.discover_clme_item .icon_wrpr {
    width: 76px;
    height: 76px;
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.discover_clme_item .left {
    padding-right: 23px;
}

.discover_clme_item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #316590;
    margin-bottom: 10px;
}

.discover_clme_item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #636363;
}

/* .chapters_s {
    padding-bottom: 30px;
} */

.chapters_search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #FFFFFF;
    box-shadow: 0px 4px 7px rgba(0, 62, 113, 0.05);
    border-radius: 3px;
    padding: 16px 21px; 
    margin-bottom: 34px; 
}
.chapters_search label{
    margin-left: 15px;
}
.select {
    border: 0;
    border-radius: 3px;
    background: #F5F5F5 url(../img/select_arrow.svg) no-repeat;
    background-position: right 12px center;
}

.select select {
    /* padding: 11px 54px 11px 17px; */
    padding: 8px 54px 9px 17px;
    width: auto;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    outline: none;
    font-weight: 500;
    font-size: 14px;
    color: #A1B4C5;
    cursor: pointer;
}

.chapters_search .select {
    margin-left: 25px;
}

.chapters_search .filters {
    display: flex;
    align-items: center;
}

.search_input_wrpr {
    background: #F5F5F5;
    border-radius: 3px;
    position: relative;
    padding-left: 38px;
    display: flex;
    align-items: center;
    height: 38px;
    /* min-width: 429px; */
    padding-right: 12px;
}

.search_input_wrpr .search_icon {
    position: absolute;
    left: 12px;
    top: 11px;
}

.search_input_wrpr input {
    background: transparent;
    border: 0;
    font-weight: 500;
    font-size: 14px;
    color: #A1B4C5;
    height: 100%;
    width: 100%;
    display: block;
}

.search_input_wrpr input::placeholder {
    color: #A1B4C5;
}

.chapters_wrpr {
    display: flex;
    flex-wrap: wrap;
}  

/* .chapters-template-default .chapters_wrpr,
.tax-chapter .left-menu-chapters_s .chapters_wrpr {
    display: flex;
    flex-direction: column;
} */

.chapter_item {
    margin: 9px;
    position: relative;
}

.chapter_item_inner {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: flex;
}
.chapter_item_inner:hover .hidden_link {
    display: flex;
}

.chapter_item.w_33 {
    width: calc(33.33% - 18px);
}

.chapter_item.w_66 {
    width: calc(66.67% - 18px);
}

.chapter_item.w_50 {
    width: calc(50% - 18px);
}
.chapter_item.w_100 {
    width: 100%;
}

.chapter_item img {
    width: 100%;
    height: 432px;
    object-fit: cover;
    object-position: center;
}
.chapter_item .item_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter_item .top_btns {
    position: absolute;
    left: 29px;
    top: 27px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.chapter_item .share_btn,
.chapter_item .pdf_btn {
    background: rgba(0, 0, 0, 0.35);
}

.chapter_item .share_btn {
    margin-right: 11px;
}

.chapter_item .share_btn svg path {
    fill: rgba(255, 255, 255, 0.6);
}

.chapter_item .pdf_btn {
    color: rgba(255, 255, 255, 0.6);
}

.chapter_item .share_btn:hover,
.chapter_item .pdf_btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.chapter_item .share_btn:hover svg path {
    fill: #fff;
}

.chapter_item .bottom_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 19px 28px 28px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 0 0 3px 3px;
    line-height: 1.5em;
    z-index: 1;
}

.left-menu-chapters_s .chapter_item a,
.left-menu-chapters_s .chapter_item span.no_link {
    width: 100%;
    position: relative;
    /* 
    bottom: 0;
    left: 0; */
    /* padding: 19px 28px 28px; */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    /*border-radius: 0 0 3px 3px;*/
    background: #0068B4;
}

.left-menu-chapters_s .chapter_item {
    margin: 0px 0;
    padding: 0 7px;
}

.left-menu-chapters_s .chapter_item_inner,
.left-menu-chapters_s.active  {
    overflow: visible;
}

.left-menu-chapters_s .chapter_item a,
.left-menu-chapters_s .chapter_item span.no_link{
    padding: 6px 10px;
    height: 100%;
    display: block;
    color: #FFF !important;
    margin: 0px 0 0;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.chapter_item .bottom_text .chapter_title {
    font-weight: 700;
    color: #fff;
    /* font-size: 18px;
    line-height: 150%; */
}
.chapter_item .bottom_text .chapter_title img {
    vertical-align: middle;
}
/* .chapter_item .bottom_text:hover .chapter_title {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
} */
.chapter_item .bottom_text .chapter_title.no_link:hover {
    color: #fff;
    cursor: default;
}
.chapter_item .bottom_text .chapter_title:hover {
    color: #316590;
}

.chapter_item.w_66 .bottom_text .chapter_title {
    max-width: 316px;
    display: block;
}

.chapter_item .bottom_text .top_text {
    display: flex;
    align-items: baseline;
    padding-bottom: 5px;
}

.chapter_item .bottom_text .tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #B4B4B4;
    display: block;
    margin-right: 15px;
}

.chapter_item .bottom_text .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #B4B4B4;
    display: flex;
}

.tab-content-item .wp-block-column h2 {
    margin-top: 10px;
}

.wp-block-column.big_middle_col {
    flex-basis: calc(61% - 31px);
}

.wp-block-column.little_middle_col {
    flex-basis: calc(39% - 31px);
}

.wp-block-column.big_col {
    flex-basis: calc(66% - 41px);
}

.wp-block-column.little_col {
    flex-basis: calc(34% - 41px);
}

.tab-content-item .big_col {
    width: calc(66% - 41px);
}

.tab-content-item .little_col {
    width: calc(34% - 41px);
}

.tab-content-item .big_middle_col {
    width: calc(61% - 31px);
}

.tab-content-item .little_middle_col {
    width: calc(39% - 31px);
}

.tab-content-item .flex-block h2, .tab-content-item .wp-block-column h2 {
    line-height: 140%;
}

.align_item_c {
    align-items: center;
}

.align_item_fl_end {
    align-items: flex-end;
}

.align_item_fl_end .report-card {
    margin-bottom: 25px;
}

.tab-content-item .align_item_fl_end .grey-block {
    margin-bottom: 25px;
}

.text_a_c {
    text-align: center;
}

.text_a_c .report-card {
    margin-bottom: 25px;
}

.mb_32 {
    margin-bottom: 32px;
}

.report-card .text-box p.medium_fw {
    font-weight: 500;
}

.introd_title {
    max-width: 300px;
}

.grey-block h4 {
    font-size: 18px;
    color: #B5B5B5;
    margin-bottom: 20px;
    font-weight: 700;
}

.grey-block.double_col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 54px 64px 54px 44px;
}

.grey-block.double_col .left {
    width: calc(46% - 30px);
}

.grey-block.double_col .right {
    width: calc(52% - 30px);
}

.tab-content-item .grey-block p.fsz_24 {
    font-size: 24px;
    line-height: 150%;
}

.br_rad {
    border-radius: 3px;
}

.tab-content-item p.mb_0 {
    margin-bottom: 0;
}

.mt-minus-100 {
    margin-top: -100px;
}

.mt-minus-100 h2 {
    max-width: 417px;
}

.tab-content-item h2.single_h2 {
    margin-top: 0;
}

.nav_btn {
    display: none;
}

.share-list {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    padding: 5px;
    background-color: #fff;
    transform: translate(0, 25%);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.6s ease;
    animation: share-in 1 0.6s forwards;
    bottom: -7px; 
    left: 100%;
    margin-left: 5px;
}

.share-list li {
    display: block;
}

.share-list li a {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 5px;
    background-color: #73808B;
    border-radius: 100%;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.share_btn,
.report-card .card-panel .share-box {
    position: relative;
    overflow: visible;
}

.report-card .card-panel .share-box:hover {
    background-color: #316590;
}

.report-card .card-panel .share-box:hover svg path {
    fill-opacity: 1;
}

.share-list li a:hover {
    background-color: #316590;
}

a.fb-share {
    background-image: url(../img/fb-icon.svg);
}

a.tw-share {
    background-image: url(../img/tw-icon.svg);
}

a.in-share {
    background-image: url(../img/in-icon.svg);
}

a.w-share {
    background-image: url(../img/w-icon.svg);
}

a.email-share {
    background-image: url(../img/em-icon.svg);
}

a.sms-share {
    background-image: url(../img/sms-icon.svg);
}

a.reddit-share {
    background-image: url(../img/reddit-icon.svg);
}

a.close-share {
    background-image: url(../img/close-share.svg);
}

.share_btn svg,
.report-card .card-panel .share-box svg {
    pointer-events: none;
}

.share-list .mob-share {
    display: none;
}

@keyframes share-in {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.ie .share-list {
    width: 275px;
}

.ie .select select {
    padding-right: 10px;
}

.ie .select {
    background: #F5F5F5;
}

.ie .report-top-panel > a svg {
    min-width: 15px;
    min-height: 15px;
}

.ie .main_screen .container {
    padding-top: 80px;
}

.left-menu-chapters_s .chapter_item {
    transition: .5s;
}

/* .chapters_wrpr .bottom_text:hover {
    z-index: 9;
    height: 100%;
    transition: .5s;
} */

.chapters_wrpr .hidden_link {
    padding: 30px 30px;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
}

.chapters_wrpr .hidden_link a,
.chapters_wrpr .hidden_link span.no_link {
    font-weight: 700;
    line-height: 150%;
    display: block;
    margin-bottom: 10px;
    transition: .5s;
    color: #fff;
}

.chapters_wrpr .hidden_link a:hover {
    color: #a1b4c5;
    transition: .5s;
}

/* .chapters_wrpr .bottom_text:hover .hidden_link {
     display: block;
 } */
.warning{
    width: 100%;
    left: 0;
    right: 0;
    top: 95px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 45px;
    background: #FF0000;
    position: fixed;
    z-index: 100;
    font-size: 16px;
    line-height: 130%;
    box-sizing: border-box;
    color:#fff;
}
.warning a {
    color: purple;
}
.warning p{
    margin-bottom: 15px;
}
.warning p:last-child{
    margin-bottom: 0;
}

.subchapt_icon_wrap {
    
}

.chapter_item_submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: auto;
    flex-direction: column;
    margin: 0;
}

.chapter_item:hover .chapter_item_submenu {
    display: flex;
}

.chapter_item_submenu_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 0 0 3px 3px;
    background: #0068B4 !important;
    color: #fff;
    padding: 6px 15px;
    height: 100%;
    color: #FFF !important;
    margin: 3px 0 0;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5em;
}

.chapter_item_submenu_item {
    position: relative;
    padding: 0 7px;
}

.chapter_item_submenu_sub_submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: auto;
    flex-direction: column;
    margin: 0;
}

.chapter_item_submenu_item:hover .chapter_item_submenu_sub_submenu {
    display: block;
}

.left-menu-chapters_s {
    background: none;
}

.chapter_item_submenu_sub_submenu_item {
    margin: 0px 0;
    padding: 0 7px;
}

.chapter_item_submenu_sub_submenu_link {
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 0 0 3px 3px;
    background: #0068B4 !important;
    color: #fff;
    padding: 6px 10px;
    height: 100%;
    display: block;
    color: #FFF !important;
    margin: 3px 0 0;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5em;
}
.chapter_title_arrow_wrap {
    display: inline-flex;
    justify-content: flex-end;
    width: 15px;
    position: absolute;
    right: 10px;
    top: calc(50% - 8px);
    z-index: 999;
}

.chapter_title_arrow {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
} 

.left-menu-chapters_s .chapter_item a,
.left-menu-chapters_s .chapter_item span.no_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
    line-height: 1.5em;
}

/* .left-menu-chapters_s .chapters_wrpr {
    display: block;
} */

@media (max-width: 768px) {
    
    .chapters-template-default .chapter_item .bottom_text, .tax-chapter .left-menu-chapters_s .chapter_item .bottom_text {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chapter_title_arrow_wrap {
        display: inline-flex;
        justify-content: flex-end;
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .chapter_title_arrow {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
    }    

    .chapter_item_submenu_sub_submenu {
        position: static;
    }

    .submenu-active {
        display: flex;
    }
}