@font-face {
    font-family: 'Moniqa-Light';
    src: url(../fonts/Moniqa-ExtraLightDisplay.ttf) format('truetype');
    font-style: normal; 
    font-weight: 300; 
	font-display: swap;
}
@font-face {
    font-family: 'Iglets';
    src: url(../fonts/Iglets.ttf) format('truetype');
    font-style: normal; 
    font-weight: normal;
	font-display: swap; 
}
@font-face {
    font-family: 'Nunito-Light';
    src: url(../fonts/Nunito-Light.ttf) format('truetype');
    font-style: normal; 
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito-Regular';
    src: url(../fonts/Nunito-Regular.ttf) format('truetype');
    font-style: normal; 
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito-SemiBold';
    src: url(../fonts/Nunito-SemiBold.ttf) format('truetype');
    font-style: normal; 
    font-weight: 600;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito-Bold';
    src: url(../fonts/Nunito-Bold.ttf) format('truetype');
    font-style: normal; 
    font-weight: 700;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito-ExtraBold';
    src: url(../fonts/Nunito-ExtraBold.ttf) format('truetype');
    font-style: normal; 
    font-weight: 800;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito-Black';
    src: url(../fonts/Nunito-Black.ttf) format('truetype');
    font-style: normal; 
    font-weight: 900;
	font-display: swap;
}

.container_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.container_block {
    display: flex;
    justify-content: center;
    width: 1310px;

    box-sizing: border-box;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
}




/*====================================
============SEARCH BLOCK==============
=====================================*/
.search_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
    background-image: url(../img/castle.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;

    height: 147px;

    padding-top: 32px;
    padding-left: 36px;
    padding-right: 36px;
    box-sizing: border-box;
}
.search_block_logo_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    height: 100%;
    width: 368px;
}
.search_block_logo_section-container_logo {
    width: 368px;
    height: 64px;

    margin-bottom: 5px;
}
.search_block_logo_section-container_logo img {
    height: 100%;
    width: 100%;

    object-fit: contain;
}
.search_block_logo_section-text {
    font-family: "Nunito-Regular";
    font-size: 28px;
    line-height: 40px;
    color: #1e7b84;

    margin-bottom: 10px;
}
.search_block_search_section {
    height: 71px;
    width: 400px;

    border: 2px solid #cacbcb;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.cont_search_block_search_section {
    width: 100%;
    height: 100%;

    position: relative;
    display: flex;
    align-items: center;
}
.search_block_search_section .search_line {
    position: relative;

    box-sizing: border-box;
    width: 100%;
    padding: 10px 50px 10px 55px;

    font-family: "Nunito-Regular";
    font-size: 20px;
    color: black;

    border: none;
    outline: none;

    background: none;
}

.search_block_search_section .search_line::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: block;
    position: absolute;
    left: 23px;

    height: 15px;
    width: 15px;

    background-image: url(../img/blue_cross.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    cursor: pointer;
}
.search_block_search_section .search_img {
    position: absolute;

    height: 20px;
    width: 20px;

    background-image: url(../img/icon_search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    right: 21.5px;
    top: 29px;

    cursor: pointer;
}




/*====================================
=============HEADER NAV===============
=====================================*/
.header_navigation {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #0a3a52;
}
.header_navigation .container_block {
    display: flex;
    justify-content: center;
    

    background-color: #0a3a52;

    height: 92px;
    width: 1920px;
}
.container_nav {
    width: 1310px;
    height: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.container_nav li{
    display: flex;
    position: relative;

    font-family: "Nunito-SemiBold";
    font-size: 20px;
    color: #ffffff;

    height: 100%;
    width: 100%;

    background: transparent;

    transition: background .1s;
}
.container_nav li:hover {
    background: #fd9726;
}
.container_nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;

    white-space: nowrap;

    padding: 0 10px;
}
.container_nav li a::before {
    position: absolute;
    left: 10px;
    margin-right: 5px;
    opacity: 1;
    transition: opacity .1s;
}
.container_nav > li a::after {
    position: absolute;
    left: 10px;
    margin-right: 5px;
    opacity: 0;
    transition: opacity .1s;
}



.container_nav li a:hover::before {
    opacity: 0;
}
.container_nav li a:hover::after {
    opacity: 1;
}


.container_nav_link:nth-of-type(1) a::before {
    content: url(../img/icon_nav_1.svg);
}
.container_nav_link:nth-of-type(2) a::before {
    content: url(../img/icon_nav_2.svg);
}
.container_nav_link:nth-of-type(3) a::before {
    content: url(../img/icon_nav_3.svg);
}
.container_nav_link:nth-of-type(4) a::before {
    content: url(../img/icon_nav_4.svg);
}
.container_nav_link:nth-of-type(5) a::before {
    content: url(../img/icon_nav_5.svg);
}
.container_nav_link:nth-of-type(6) a::before {
    content: url(../img/icon_nav_6.svg);
}


.container_nav_link:nth-of-type(1) a::after {
    content: url(../img/icon_nav_1_transparent.svg);
}
.container_nav_link:nth-of-type(2) a::after {
    content: url(../img/icon_nav_2_transparent.svg);
}
.container_nav_link:nth-of-type(3) a::after {
    content: url(../img/icon_nav_3_transparent.svg);
}
.container_nav_link:nth-of-type(4) a::after {
    content: url(../img/icon_nav_4_transparent.svg);
}
.container_nav_link:nth-of-type(5) a::after {
    content: url(../img/icon_nav_5_transparent.svg);
}
.container_nav_link:nth-of-type(6) a::after {
    content: url(../img/icon_nav_6_transparent.svg);
}








/*====================================
==========NAVIGATION CHAIN============
=====================================*/
.navigation_chain .kama_breadcrumbs {
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: wrap;

    padding-left: 36px;
    padding-right: 36px;

    margin-top: 17px;

    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    
    color: #0a3a52;
}
.navigation_chain span {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.navigation_chain span a, .navigation_chain span a span {
    color: #0a3a52 !important;
}
.navigation_chain span:last-of-type {   
    color: #C4CAD4;
}
.navigation_chain span:not(:last-of-type)::after {
    content: '';
    display: block;

    height: 100%;
    width: 7px;

    background:url(../img/navigation_chain_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    margin: 0 8px 0 8px;
}







/*====================================
================MAIN==================
=====================================*/
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-image: url(../img/main_bg.svg);
    background-position: left top;
    background-repeat: repeat;
    background-size: auto;
    overflow: hidden;
}
.main .container_block {
    display: flex;
    flex-direction: column;

    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
}
.main_header_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 56px;
    padding-left: 36px;
    padding-right: 36px;
}
.main_header_section_container_img {
    position: relative;

    height: 424px;
    width: 715px;
    padding-top: 14px;
    margin-right: 20px;

    box-sizing: border-box;
    overflow: hidden;
}
.main_header_section_container_img::before {
    content: '';
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;

    left: 0;
    top: 0;

    background: #fd9726;
    background-position: left;
    background-repeat: repeat;
    background-size: contain;
}
.main_header_section_container_img::after {
    content: '';
    display: block;
    position: absolute;
    height: 7px;
    width: 100%;

    left: 0;
    bottom: 0;

    background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
}
.main_header_section_container_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.main_header_section_container_text {
    position: relative;
    width: 504px;

    padding: 31px 49px 3px 44px;
    box-sizing: border-box;

    min-height: 424px;

    background: #e8eaee;
}
.main_header_section_container_text::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    right: 0;

    height: 39px;
    width: 39px;

    background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
}
.main_header_section_container_text-header {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    
    text-transform: uppercase;

    color: #0a3a52;

    padding-bottom: 10px;
}
.main_header_section_container_text-text {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;

    text-align: left;
    
    color: #0a3a52;
}






.epoch_ul_section {
   display: flex; 
   flex-direction: column;

   padding-top: 51px;
   padding-left: 36px;
   padding-right: 36px;
}
.epoch_ul_section_caption {
    display: flex;
    align-items: center;
    position: relative;

    padding: 0;
    margin: 0;

    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 64px;
    line-height: 87px;
    
    color: #0a3a52;
}
.epoch_ul_section_caption::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100% + 14px);

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}
.epoch_ul_section_container_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex-wrap: wrap;

    margin-top: 20px;

    margin-bottom: -50px;
}
.epoch_ul_section_single {
    display: flex;
    flex-direction: column;
    position: relative;

    background-color: #f3f4f6;

    width: 400px;

    box-sizing: border-box;
    min-height: auto;

    margin-bottom: 50px;
}
.epoch_ul_section_single::before {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    right: 0;

    height: 39px;
    width: 39px;

    background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
}
.epoch_ul_section_single::after {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 6px;

    background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
}
.epoch_ul_section_single-caption {
    display: flex;
    align-items: center;

    position: relative;

    min-height: 69px;
    box-sizing: border-box;

    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;

    padding: 19px 10px 14px 115px;
    
    text-transform: uppercase;
    
    /* Primary */
    
    color: #1e7b84;

    background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
}
.epoch_ul_section_single-caption::before {
    display: flex;
    position: absolute;
    left: 56px;

    padding-right: 8px;
}
.epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_1.svg);
}
.epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_2.svg);
}
.epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_3.svg);
}
.epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_4.svg);
}
.epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_5.svg);
}
.epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
    content: url(../img/icon_main_6.svg);
}
.epoch_ul_section-ul {

    list-style: none;
    padding-left: 56px;
    padding-top: 20px;
}
.epoch_ul_section-li {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    
    color: #000000;

    margin-bottom: 15px;

    transition: color .1s, text-decoration .1s;
}
.epoch_ul_section-li a {
    text-decoration: underline;
    text-decoration-color: inherit;
    transition: color .1s, text-decoration-color .1s;
}
.epoch_ul_section-li a:hover {
    text-decoration-color: transparent;
    
    color: #2A6C96;
}








.interesting_section {
    display: flex;
    flex-direction: column;

    margin-top: 57px;

    padding-left: 36px;
    padding-right: 36px;
}
.interesting_section_caption {
    display: flex;
    align-items: center;
    position: relative;

    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 57px;
    
    color: #0a3a52;

    margin: 0;
    padding: 0;
}
.interesting_section_caption::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100% + 14px);

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}
.interesting_section_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: -45px;
}
.interesting_section_content a {
	text-decoration: none !important;
}
.cont_interesting_section_single {
    margin-bottom: 45px;
}
.interesting_section_single {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 295px;
}
.interesting_section_single::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: -.5px;

   
    z-index: 1;
}
.interesting_section_single-conteiner_img {
    position: relative;
    height: 186px;
    width: 100%;

    /* border-bottom: 5px solid #1e7b84; */

    overflow: hidden;

    transition: border .2s;

    background-color: #000000;
}
.interesting_section_single-conteiner_img::before {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background-color: #1e7b84;

    transition: height .2s;
    z-index: 1;
}
.interesting_section_single:hover .interesting_section_single-conteiner_img::before {
    height: 14px;
}
.interesting_section_single-conteiner_img img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.interesting_section_single-conteiner_img::after {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: #000000;

    opacity: 0;

    transition: opacity .2s;
}
.interesting_section_single:hover .interesting_section_single-conteiner_img::after {
    opacity: .4;
}
.interesting_section_single-text {
        font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: #0a3a52;
    background-color: #e8eaee;
    cursor: pointer;
    position: relative;
    padding: 9px 18px 14px;
    box-sizing: border-box;
    transition: color .2s, background .2s;
    border: 5px solid #0a3a52;
    text-align: center;
}
.interesting_section_single:hover .interesting_section_single-text {
    color:  #2A6C96;
    background-color: #c4cad41a;
}
.interesting_section_single-text::before {
    content: '';
    display: block;
    position: absolute;

    top: 10px;
    right: 1px;

    height: 24px;
    width: 24px;

    background-image: url(../img/blue_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    cursor: pointer;
}









.epoch_figures_section {
    display: flex;
    flex-direction: column;

    margin-top: 96px;
}
.epoch_figures_section_single {
    display: flex;
    flex-direction: column;
    position: relative;
    
    padding: 37px 36px 9px;

    z-index: 2;
}
.epoch_figures_section_single:not(:nth-of-type(1)) {
    margin-top: 100px;
}
.epoch_figures_section_single:nth-of-type(odd) {
    background-color: #f9efe3;
}
.epoch_figures_section_single:nth-of-type(odd):before {
    content: '';
    display: block;
    position: absolute;

    top: 0px;
    left: 0;

    width: 100%;
    height: 7px;

    background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
}
.epoch_figures_section_single:nth-of-type(even) {
    background-color: #ebedf0;
}
.epoch_figures_section_single:nth-of-type(even):before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 7px;

    background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
}
.epoch_figures_section_single-caption {
    display: flex;
    align-items: center;

    position: relative;
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    
    text-transform: uppercase;
    
    color: #0a3a52;

    margin-bottom: 34px;
    margin: 5px 0 34px;

    padding-left: 100px;
}
.epoch_figures_section_single-caption::before {
    display: flex;
    position: absolute;

    left: 10px;

    padding-right: 10px;
}
.epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_1.svg);
}
.epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_2.svg);
}
.epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_3.svg);
}
.epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_4.svg);
}
.epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_5.svg);
}
.epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
    content: url(../img/icon_epoch_article_6.svg);
}
.epoch_figures_section_single-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex-wrap: wrap;
}
.cont_epoch_figures_section_single-content_single {
    position: relative;
    margin-bottom: 27px;
    width: 392px;
    /* min-height: 111px; */
}
.cont_epoch_figures_section_single-content_single::after {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
    
    opacity: 1;

    transition: opacity .1s;
}
.cont_epoch_figures_section_single-content_single:hover::after {
    opacity: .7;
}
.epoch_figures_section_single-content_single {
    display: flex;
    flex-direction: row;
    position: relative;

    z-index: 1;
}

.epoch_figures_section_single-content_single::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    height: 35px;
    width: 35px;

    z-index: 1;
}
.epoch_figures_section_single-content_single::after {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    right: 0;

    height: 35px;
    width: 35px;

    z-index: 1;
}

.epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
    background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
}
.epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
    background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
}

.epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
    background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
}
.epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
    background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
}



.epoch_figures_section_single-content_single-cont_img {
    display: flex;
    position: relative;

    /* height: 100%; */
    width: 171px;

    overflow: hidden;

    box-sizing: border-box;

    transition: border .1s;
}
.epoch_figures_section_single-content_single-cont_img::after {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #1e7b84;

    transition: height .1s;
}
.cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
    height: 9px;
}
.epoch_figures_section_single-content_single-cont_img::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: #363636;

    opacity: 0;

    transition: opacity .1s;
}
.cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
    opacity: .3;
}
.epoch_figures_section_single-content_single-cont_img img {

    height: 100%;
    width: 100%;

    object-fit: cover;
}
.epoch_figures_section_single-content_single-text {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    
    /* White */
    
    color: #FFFFFF;

    padding: 14px 20px;

    width: 221px;

    cursor: pointer;
}
.epoch_figures_section_single-content_single-text a {
    height: 100%;
    display: block;
}








.author_section {
    display: flex;
    flex-direction: column;

    margin: 74px 36px 115px;
    padding: 26px 26px 50px;

    background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
}
.author_section_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    position: relative;
}
.author_section_header::before {
    content: '';
    display: block;
    position: absolute;

    height: 3px;
    width: 100%;

    background-image: url(../img/dotted.svg);
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
	/* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position: center; */
}
.author_section_header-caption {
    display: flex;
    align-items: center;
    position: relative;

    font-family: 'Moniqa-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 70px;
    line-height: 73px;

    padding-left: 14px;
    padding-right: 38px;
    
    color: #0a3a52;

    background-color: #f3f4f6;
}
.author_section_header-caption::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100%);

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}
.author_section_header-see_more {
    display: flex;
    align-items: center;
    position: relative;

    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    
    color: #2A6C96;

    padding-right: 16px;
    padding-left: 41px;

    background-color: #f3f4f6;

    cursor: pointer;

    transition: color .1s;
}
.author_section_header-see_more:hover {
    color: #1e7b84
}
.author_section_header-see_more::before {
    content: '';
    display: block;
    position: absolute;

    right: -14px;

    height: 24px;
    width: 24px;

    background: url(../img/blue_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transition: background .1s;
}
.author_section_header-see_more:hover::before {
    background: url(../img/orange_arrow.svg);
}

.author_section_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 32px;
}
.author_section_content_single {
    display: flex;
    flex-direction: row;
    align-items: center;

    flex-basis: 32.5%;
}
.author_section_content_single {
    display: flex;
    flex-direction: row;
    align-items: center;

    flex-basis: 32.5%;
}
.author_section_content_single-cont_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    height: 97px;
    width: 97px;

    border-radius: 50px;

    overflow: hidden;

    margin-right: 12px;
}
.author_section_content_single-cont_img::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: #000000;

    opacity: 0;

    transition: opacity .1s;
}
.author_section_content_single:hover .author_section_content_single-cont_img::before {
    opacity: .3;
}
.author_section_content_single-cont_img img {
    height: 100%;
    width: 100%;
}
.author_section_content_single-author_data {
    display: flex;
    flex-direction: column;

    flex-shrink: 10000;
}
.author_section_content_single-author_data-name {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    
    color: #0a3a52;

    margin-bottom: 2px;

    transition: color .1s;
}
.author_section_content_single:hover .author_section_content_single-author_data-name {
    color: #1e7b84;
}
.author_section_content_single-author_data-profession {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    
    color: #0a3a52;

    margin-bottom: 11px;
}
.author_section_content_single-author_data-author_articls {
    font-family: 'Nunito-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    /* identical to box height */
    
    text-decoration-line: underline;
    
    /* Tertiary */
    
    color: #2A6C96;

    cursor: pointer;
    transition: color .1s;
}    
.author_section_content_single-author_data-author_articls:hover {
    color: #1e7b84;
}










.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #0a3a52;

    overflow: hidden;
}
.footer .container_block {
    display: flex;
    justify-content: center;
    position: relative;


    width: 1920px;
}

.footer .container_block::after {
    content: '';
    display: flex;
    position: absolute;

    top: 20px;
    height: 92px;
    width: 1920px;

    background-color: #0a3a52;
}
.container_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1310px;
    padding: 40px 36px 31px;

    box-sizing: border-box;
}
.footer .container_block:before {
    content: '';
}
.footer_logo_block {
    display: flex;
    flex-direction: column;
    margin-right: 162px;

    
    z-index: 1;
}
.footer_logo_block-container_logo {
    width: 368px;
    height: 64px;
}
.footer_logo_block-container_logo img {
    height: 100%;
    width: 100%;
    
    object-fit: contain;
}
.footer_logo_block-text {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 25px;
    line-height: 41px;
    
    color: #1e7b84;

    margin-bottom: 21px;
}
.footer_logo_block-text_2 {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    
    color: #C4CAD4;
}
.footer_link_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    position: relative;

    width: 100%;

    z-index: 1;
}
.footer_link_block::before {
    content: '';
    display: block;
    position: absolute;

    bottom: -25px;
    left: calc(50% - 161px);

    width: 385px;
    height: 123px;

    background: url(../img/castle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer_link_block_left_links {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 41px;
    
    color: #FFFFFF;

    list-style: none;

    cursor: pointer;

    z-index: 1;
}
.footer_link_block_left_links a {
    transition: color .1s;
}
.footer_link_block_left_links a:hover {
    color: #1e7b84;
}
.footer_link_block_right_links {
    font-family: 'Nunito-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    
    text-align: right;
    text-decoration-line: underline;
    
    color: #FFFFFF;

    list-style: none;

    cursor: pointer;
}
.footer_link_block_right_links a {
    transition: color .1s;
}
.footer_link_block_right_links a:hover {
    color: #1e7b84;
}
























/*==============================
==========RUBRIC PAGE===========
===============================*/
.rubric_section {
    display: flex;
    flex-direction: column;

    padding: 0 36px;
}
.rubric_name {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 64px;
    line-height: 87px;
    
    color: #0a3a52;

    margin-top: 8px;
}
.rubric_text {
    position: relative;

    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 35px;
    
    color: #0a3a52;

    padding: 12px 0 12px 41px;

    /* border: 9px solid #000000;
    border-image: url(../img/vertical_orange_border.svg) 9 repeat repeat; */

    margin-top: 27px;
}
.rubric_text::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 9px;

   /* background-image: url(../img/vertical_orange_border.svg);
    background-position: top;
    background-repeat: repeat-y;
    background-size: contain;*/
}







/*==============================
=============TABLE==============
===============================*/
.table_1 {
    margin-top: 37px;
    width: max-content;
    max-width: 100%;
}
.table_1 table {
    width: max-content;
    max-width: 100%;
}
.table_1 table th, .table_1 table tr:nth-child(1) td {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    
    background: #0a3a52;

    padding: 10px 10px 10px 5px;
    border: 2px solid #ffffff;

    text-align: left;
    
    white-space: nowrap;
}

.table_1 table th, .table_1 table tr:nth-child(1) td, .table_1 table tr:nth-child(1) p {
    color: #FFFFFF !important;	
}

.table_1 table td {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    
    color: #0a3a52;

    padding: 10px 10px;
    border: 2px solid #ffffff;

    vertical-align: middle;
}
.table_1 table tr {

    background-color: #dcdfe5;
}
.table_1 table tr:nth-of-type(odd) {
    background-color: #eef0f2;
}
.last_section {
    margin-bottom: 72px;
}












/*==============================
==========STATYA PAGE===========
===============================*/

.statya_page_cont_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    padding: 0 36px;
    box-sizing: border-box;

    width: 100%;
}




.statya_block {
    margin-right: 20px;
    width: 925px;
}

.page_404 {	
    padding: 70px 0;
}

.statya_header {
    /* H1 */
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 50px;
    
    /* Secondary */
    color: #ec7c00;
    margin-top: 10px;
    width: 100%;
    text-align: left;
}
.switch_version {
    display: flex;
    flex-direction: row;
    align-items: flex-end;

    margin-top: 10px;
}
.switch_version_single {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 31px;
    /* or 194% */
    
    text-align: center;
    height: max-content;
    
    /* Secondary */
    
    color: #0a3a52;

    padding: 9px 35px 9px;
    background: #C4CAD4;

    cursor: pointer;
}
.switch_version_single.active { 
    color: #ffffff;

    padding: 13px 35px 9px;
    background: #0a3a52;
}




.table_contents {
    display: flex;
    flex-direction: column;
    position: relative;

    padding: 34px 42px 6px;
    box-sizing: border-box;

    border-top: 6px solid #1e7b84;
    background: no-repeat right 23px bottom 30px url(../img/single_book.svg), #f3f4f6;

    margin-top: 20px;

    width: 100%;
}
.table_contents::after {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;

    height: 6px;
    width: 100%;

    background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
}
.table_contents_header {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    
    text-transform: uppercase;
    
    color: #1e7b84;

}
.table_contents ol {
    counter-reset: li;
}
.table_contents_ol {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    
    color: #0a3a52;
    margin-top: 24px;
	border: none !important;
    padding: 0 0 25px 0 !important;
	
	background: transparent !important;
}
.table_contents_li {
    margin-bottom: 20px;
}
.table_contents_li_link {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: underline;
    text-decoration-color: transparent;

    transition: text-decoration-color .1s;
}
.table_contents_li_link {
    color: #0a3a52 !important;
    text-decoration: none !important;
    text-decoration-color: none !important;
	transition: all .5s !important;
}
a.table_contents_li_link:hover  {
    text-decoration: underline !important;
    text-decoration-color: underline !important;
}
a.table_contents_li_link:hover {
    text-decoration-color: inherit;
}
.table_contents_li_link::before {
    height: 100%;
    counter-increment: li;
    content: counters(li, ".");

    background: #c4cad4;
    margin-right: 18px;
    padding: 1px 6px 0 6px;

    border-bottom: 2px solid #1e7b84;
    text-decoration: none !important;
}
.table_contents_subol {
    margin-left: 39px;
    margin-top: 20px;
}



.statya_block h2 {
    display: flex;
    align-items: center;
    position: relative;
    
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 47px;
    
    color: #0a3a52;

    margin-top: 27px;

    /*width: 100%;*/
    text-align: center;
}
.statya_block h2::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100% + 14px);
	top: 12px;

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}

.statya_block p {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 35px;
    
    color: #0a3a52;

    margin-top: 30px;

    width: 100%;
}
.statya_block a {
    color: #2a6c96;
    text-decoration: underline;
    text-decoration-color: inherit;

    transition: color .02s, text-decoration-color .02s;
}
.statya_block a:hover {
    color: #1e7b84;
    text-decoration: underline;
    text-decoration-color: transparent;
}




.statya_figure_1 {
    display: flex;
    flex-direction: column;
    border-top: 4px solid #0a3a52;
    width: 715px;

    margin: 30px auto 0;
    /* margin-top: 30px; */
}
.statya_figure_1_cont_img {
    width: 715px;
    height: 358px;
    padding: 2px 0 3px;
}
.statya_figure_1_cont_img img {
    height: 100%;
    width: 100%;

    object-fit: cover;
}
.statya_figure_1_text {
    padding: 12px 38px;
    text-align: left;

    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    /* or 143% */
    
    
    /* White */
    
    color: #FFFFFF;

    background: #1e7b84;
}



.statya_block blockquote {
    position: relative;

    font-family: 'Nunito-Black';
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 30px;
    
    color: #FFFFFF;

    padding: 43px 46px 43px 105px;
    margin-bottom: 50px;
    margin-top: 48px;

    background: no-repeat left 31px top 46px url(../img/article_icon.svg), #0a3a52;

}
.statya_block blockquote::after {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;

    height: 6px;
    width: 100%;

    background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
}
.statya_block blockquote::before {
    content: '';
    display: block;
    position: absolute;

    bottom: -14px;
    left: 0;

    height: 14px;
    width: 14px;

    background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
}
.statya_block blockquote p {
	color: #fff;
}
.statya_block blockquote p:first-child {
	margin: 0;	
}



.statya_block ol {
    display: flex;
    flex-direction: column;
    position: relative;

    padding: 35px 39px;
    box-sizing: border-box;

    border-left: 4px solid #0a3a52;

    margin-top: 20px;

    background: #f3f4f6;
 
    counter-reset: li;

    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    
    color: #0a3a52;
    margin-top: 24px;
}
.statya_block ol li {
    margin-bottom: 20px;
}
.statya_block ol li:last-child {
	margin-bottom: 0px;
}

.statya_block ol li:not(.kamatoc__top) {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.statya_block ol li:not(.kamatoc__top)::before {
    height: 100%;
    counter-increment: li;
    content: counters(li, ".");

    background: #0a3a52;
    margin-right: 18px;
    padding: 1px 6px 0 6px;

    border-bottom: 2px solid #1e7b84;
    color: #ffffff;
}
.statya_ol_1 .statya_subol {
    margin-left: 39px;
    margin-top: 20px;
}






.statya_read_also {

    padding: 24px 23px 27px 38px;

    border-left: 3px solid #c4cad4;

    background: #eef0f2;

    margin-top: 30px;
}
.statya_read_also_cont_img {
    position: relative;
    height: 136px;
    width: 215px;

    overflow: hidden;

    border-bottom: 4px solid #1e7b84;
    /* order: 2; */
    float: right;
    margin-left: 36px;
    /* margin-bottom: 20px; */
}
.statya_read_also_cont_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.statya_read_also_cont_img::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    height: 20px;
    width: 20px;

    background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
}
.statya_read_also_text_header {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    /* identical to box height */
    
    text-transform: uppercase;
    
    /* Primary */
    
    color: #1e7b84;
}
.statya_block p.statya_read_also_text_p_1 {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    
    /* Secondary */
    
    color: #0a3a52;

    margin-top: 8px;
}

.statya_block p.statya_read_also_text_p_1 a {
    
    color: #0a3a52;
text-decoration: none;
	
}


.statya_block p.statya_read_also_text_p_1 a:hover {
    
    color: #0a3a52;
text-decoration: underline;
	
}


.statya_block p.statya_read_also_text_p_2 {
    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    
    color: #0a3a52;

    margin-top: 6px;
}



.statya_block ul {
    display: flex;
    flex-direction: column;
    position: relative;

    padding: 41px 62px 41px 60px;
    box-sizing: border-box;

    border-left: 4px solid #0a3a52;

    margin-top: 20px;
    margin-bottom: 20px;

    background: #f3f4f6;
	
    list-style-image: url(../img/ul_list_style_1.svg);

    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    
    color: #0a3a52;
    margin-top: 24px;
}

.statya_block ul.kamatoc {
	background: transparent;
}

.statya_block ul li ul {
	border-left: none;
    padding: 0 0 0 20px !important;
}

.statya_block ul li {
    margin-bottom: 20px;
}

.statya_block ul li:last-child {
	margin-bottom: 0px;
}

.statya_block ul li a {
    color: #0a3a52;	
}


.statya_block h3 {
    display: flex;
    align-items: center;
    position: relative;
    
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 47px;
    
    /* Secondary */
    
    color: #0a3a52;

    margin-top: 30px;
}
.statya_block h3::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100% + 14px);
	top: 12px;

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}


.statya_block h4 {
    display: flex;
    align-items: center;
    position: relative;
    
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    
    /* Secondary */
    
    color: #0a3a52;

    margin-top: 30px;
}
.statya_block h4::before {
    content: '';
    display: block;
    position: absolute;

    right: calc(100% + 14px);
    top: 12px;

    height: 25px;
    width: 4px;

    background-color: #1e7b84;
}


.statya_block blockquote.blockquote_style_2 {
    display: flex;
    flex-direction: column;
    position: relative;
    
    padding: 30px 61px 18px 140px;
    background: no-repeat left 50px top 38px url(../img/feather_2.svg), #1e7b84;

    margin-top: 40px;
}
.statya_block blockquote.blockquote_style_2::before {
    content: '';
    display: block;
    position: absolute;

    top: -12px;
    left: 0;

    width: 100%;
    height: 20px;

    background: url(../img/img_border.svg);
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
}

.statya_block blockquote.blockquote_style_2 .blockquote_style_2_header {
    font-family: 'Moniqa-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 70px;
    line-height: 73px;
    
    color: #FFFFFF;
}
.statya_block blockquote.blockquote_style_2 .blockquote_style_2_text {
    font-family: 'Nunito-Black';
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 30px;
    
    color: #FFFFFF;
	
	margin-top: 0;
}





.statya_references_list {
    display: flex;
    flex-direction: column;
    padding: 35px 58px 35px;
    background: no-repeat right 38px top 42px url(../img/books.svg), #F3F4F6;

    margin-top: 32px;
}
.statya_references_list_header {
    font-family: 'Moniqa-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 70px;
    line-height: 73px;
    
    color: #0a3a52;
}
.statya_references_ul ul {
    font-family: 'Nunito-Bold' !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 16px !important;
    line-height: 24px !important;
    
    color: #0a3a52 !important;
    margin-left: 30px !important;
    margin-top: 11px !important;
    
    list-style-image: url(../img/ul_list_style_1.svg) !important;
	
	background: transparent  !important;
	
    padding: 10px 0 0 0 !important;
	
	border-left: none !important;
}
.statya_references_li:not(:last-of-type) {
    margin-bottom: 15px;
}










.statya_media_section {
    display: flex;
    flex-direction: column;
    position: relative;

    margin-top: 77px;

    padding: 17px 72px 43px 62px;

    background: no-repeat right 84px bottom 28px url(../img/feather_3.svg), #0a3a52;
}
.statya_media_section::before {
    content: '';
    display: block;
    position: absolute;

    top: -3px;
    left: 0;

    width: 100%;
    height: 5px;

    background: #fd9726;
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
}
.cont_stastya_share {
    display: flex;
    flex-direction: column;
}
.stastya_share_header {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    /* identical to box height */
    
    text-transform: uppercase;
    
    /* White */
    
    color: #FFFFFF;
}
.cont_stastya_share_content {
    display: flex;
    flex-direction: column;
}
.stastya_share_top_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    margin-top: 26px;
}
.stastya_share_social {
    display: flex;
    flex-direction: row;

    width: 474px;
}
.cont_social_icon {
    width: 70px;
    height: 70px;
}
.cont_social_icon:not(:last-of-type) {
    margin-right: 30px;
}
.cont_social_icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}
.stastya_share_discuss {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;

    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 27px;
    display: flex;
    align-items: center;
    text-align: center;
    
    color: #FFFFFF !important;

    padding: 19px 21px 17px 21px;

    width: 235px;
    height: 64px;

    box-sizing: border-box;

    background: #1e7b84;

    transition: background .1s;
	
	text-decoration: none !important;
}
.stastya_share_discuss:hover {
    background: #d69240;
}
.stastya_share_discuss::before {
    content: '';
    display: block;
    position: absolute;

    left: 28px;

    width: 24px;
    height: 24px;

    background: url(../img/discuss_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.stastya_share_discuss::after {
    content: '';
    display: block;
    position: absolute;

    left: 0;
    top: 0;

    width: 15px;
    height: 15px;

    background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    
    transition: background .1s;
}
.stastya_share_discuss span {
    position: absolute;

    right: 21px;

    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
    display: flex;
    align-items: center;
    text-align: center;
    
    /* White */
    
    color: #FFFFFF;

    margin-left: 21px;
}

.stastya_share_bottom_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    margin-top: 26px;
}
.stastya_share_polezna {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;

    width: 474px;
}
.stastya_share_polezna_caption {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    
    /* White */
    
    color: #FFFFFF;

    margin-bottom: 5px;
}
.stastya_share_polezna_cont_da_net {
    display: flex;
    flex-direction: row;
}
.stastya_share_polezna_cont_da_net > * {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    
    color: #FFFFFF;

    background: #1e7b84;

    height: 40px;
    width: 72px;

    cursor: pointer;

    transition: background .1s;
}
.stastya_share_polezna_cont_da_net > *:hover {
    background: #d69240;
}
.stastya_share_polezna_cont_da_net > *::before {
    content: '';
    display: block;
    position: absolute;

    width: 15px;
    height: 15px;

    transition: background .1s;
}
.stastya_share_polezna_da {
    margin-right: 17px;
}
.stastya_share_polezna_da::before {
    left: 0;
    top: 0;

    background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
}
.stastya_share_polezna_net::before {
    right: 0;
    bottom: 0;

    background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
}

.stastya_share_raiting {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 235px;
}
.stastya_share_raiting_caption {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    
    /* Primary */
    
    color: #1e7b84;

    width: 100%;
}
.stastya_share_raiting_cont_button {
    display: flex;
    flex-direction: row;

    margin-left: 17px;
    margin-top: 3px;
}
.stastya_share_raiting_likes,
.stastya_share_raiting_dislikes {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    position: relative;
    
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    
    color: #FFFFFF;

    border-radius: 50px;

    background: #1e7b84;
    cursor: pointer;
    transition: background .1s;

    width: 43px;
    height: 43px;

    padding-left: 7px;
    box-sizing: border-box;
}
.stastya_share_raiting_likes {
    margin-right: 61px;
}
.stastya_share_raiting_likes:hover,
.stastya_share_raiting_dislikes:hover {
    background: #d69240;
}
.stastya_share_raiting_likes::before,
.stastya_share_raiting_dislikes::before {
    content: '';
    display: block;
    position: absolute;

    left: -14px;

    width: 24px;
    height: 24px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.stastya_share_raiting_likes::before {
    background: url(../img/like_icon.svg);
}
.stastya_share_raiting_dislikes::before {
    background: url(../img/dislike_icon.svg);
}





.cont_statya_author {
    position: relative;
    margin-top: 51px;
}
.cont_statya_author::before {
    content: '';
    display: block;
    position: absolute;

    top: -10px;

    width: 100%;
    height: 5px;

    background: #fd9726;
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
}
.statya_author_header {
    font-family: 'Moniqa-Light';
    font-style: normal;
    font-weight: 300;
    font-size: 70px;
    line-height: 73px;
    
    color: #FFFFFF;

    margin-bottom: 11px;
}
.statya_author_data {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.statya_author_cont_img {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 140px;
    width: 140px;

    border-radius: 50%;

    overflow: hidden;

    margin-right: 32px;
}
.statya_author_cont_img img {
    height: 100%;
    width: 100%;

    object-fit: cover;
}
.statya_author_info {
    display: flex;
    flex-direction: column;
}
.statya_author_name {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;
    
    color: #FFFFFF;

    margin-bottom: 2px;
}
.statya_author_proffession {
    font-family: 'Nunito-SemiBold' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 27px !important;
    
    color: #FFFFFF !important;

    margin-bottom: 11px !important;
    
	margin-top: 0px !important;
}
.statya_author_date_release,
.statya_author_date_modified {
    font-family: 'Nunito-Light' !important;
    font-style: normal !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 19px !important;
    
    color: #FFFFFF !important;
	
    margin-top: 0px !important;
}






.statya_page_cont_content .interesting_section {
    padding: 0;
}
.statya_page_cont_content .interesting_section_caption {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 71px;
    
    color: #0a3a52;
}
.statya_page_cont_content .interesting_section_caption::before {
    display: none;
}



/* COMMENTS */ 

.statya_comments_section {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 100%;
    margin-top: 57px;
    margin-bottom: 50px;
    padding: 34px 0 54px;

    box-sizing: border-box;
}
.statya_comments_section::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 9px;

    background: #fd9726;
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
}
.statya_comments_section::after {
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 9px;

    background: #fd9726;
    background-position: left;
    background-repeat: repeat-x;
    background-size: contain;
}
.statya_comments_section_header {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    /* identical to box height */
    
    text-transform: uppercase;
    
    /* Secondary */
    
    color: #0a3a52;
}
.statya_comments_section_content {
    display: flex;
    flex-direction: column;

    width: 100%;
	
	margin-top: 20px;
}


.statya_comments_section_single {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 100%;
    padding: 16px 28px 16px 47px;
    box-sizing: border-box;

    background-color: #eef0f2;

    margin-top: 50px;
}

.comment.depth-2 .statya_comments_section_single {
	width: calc(100% - 40px);
	
	margin-left: 40px;

    background-color: #f8f8f9;
}

.comment.depth-2 .statya_comments_section_single::before {
	background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
}

.statya_comments_section_single::before {
    content: '';
    display: block;
    position: absolute;

    top: 100%;
    left: 0;

    height: 28px;
    width: 32px;

    background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
}
.statya_comments_section_single_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.statya_comments_section_single_header_name {
    font-family: 'Nunito-Black';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 25px;
    
    color: #0a3a52;
}
.statya_comments_section_single_header_date {
    display: flex;
    align-items: center;

    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    
    color: #C4CAD4;
}
.statya_comments_section_single_body {
    position: relative;

    width: 100%;
    margin-top: 15px;

    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    
    color: #0a3a52;
}
.statya_comments_section_single_body::before {
    content: '';
    display: block;
    position: absolute;

    top: -9px;
    left: 0;

    width: 100%;
    height: 1px;

    background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);

    color: #cdd2d9;
}
.statya_comments_section_single_footer {
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 22px;
    /* or 183% */
    
    text-align: right;
    text-decoration-line: underline;
    
    /* Tertiary */
    
    color: #2A6C96;

    cursor: pointer;

    margin-top: 10px;

    transition: color .1s;
}
.statya_comments_section_single_footer:hover {
    color: #1e7b84;
}


.statya_comments_section_single_responce .statya_comments_section_single {
    background-color: #f8f8f9;
}

.statya_comments_section_single_responce .statya_comments_section_single::before {
    background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
}
.statya_comments_section_single_responce {
    width: calc(100% - 48px);
}



.statya_comments_section_add_comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    padding: 21px 35px 26px 48px;

    margin-top: 60px;

    box-sizing: border-box;
    
    background: #fafafb;
}
.statya_comments_section_add_comment_header {
    font-family: 'Nunito-SemiBold' !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 26px !important;
    line-height: 35px !important;
    
    color: #0a3a52 !important;

    margin-bottom: 25px !important;
}

.statya_comments_section_add_comment_name {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    
    color: #0a3a52;

    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;

    margin-bottom: 30px;

    border: 1px solid #C4CAD4;
    box-sizing: border-box;
}
.statya_comments_section_add_comment_name::placeholder {
    color: #C4CAD4;
    text-transform: uppercase;
}
.statya_comments_section_add_comment_text {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    
    color: #0a3a52;

    width: 100%;
    height: 140px;
    margin-bottom: 30px;
    padding: 24px 20px;
    box-sizing: border-box;

    border: 1px solid #C4CAD4;
    box-sizing: border-box;

    resize: none;
}
.statya_comments_section_add_comment_text::placeholder {
    color: #C4CAD4;
    text-transform: uppercase;
}
.statya_comments_section_add_comment_submit {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Nunito-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 27px;
    
    color: #FFFFFF;

    width: 235px;
    height: 64px;
    
    background: #1e7b84;
    border-radius: 4px;

    transition: background .1s;
}
.statya_comments_section_add_comment_submit:hover {
    background: #d69240;
}










.sidebar_block {
    width: 295px;

    margin-top: 125px;
	
	padding-bottom: 45px;
}
.epoch_ul_sidebar {
   display: flex; 
   flex-direction: column;
   align-items: center;
   position: relative;

   padding: 23px 34px 68px 33px;

   background: no-repeat right 12px bottom 14px url(../img/horse.svg), #F3F4F6;
	
	margin-bottom: 30px;
}
.epoch_ul_sidebar::after {
    content: '';
    display: block;
    position: absolute;

    bottom: calc(100% + 4.6px);

    width: 100%;
    height: 41px;

    background: url(../img/icon_sidebar.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background: no-repeat center url(../img/sidebar_crown.svg), #ffffff; */
}
.epoch_ul_sidebar_caption {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */
    
    text-transform: uppercase;
    
    /* Primary */
    
    color: #1e7b84;
}
.epoch_ul_sidebar ul {
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    
    color: #000000;

    margin-top: 14px;
}
.epoch_ul_sidebar ul li:not(:last-of-type) {
    margin-bottom: 15px;
}
.epoch_ul_sidebar ul li a {
text-decoration: underline;
text-decoration-color: inherit;
transition: color .1s, text-decoration-color .1s;
}
.epoch_ul_sidebar ul li a:hover {
text-decoration-color: transparent;

color: #2A6C96;
}

.sidebar_interesting_section_caption {
    font-family: 'Nunito-ExtraBold';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    
    text-transform: uppercase;
    
    color: #0a3a52;
}

.sidebar_capture_block {
    width: 100%;
    height: max-content;
    overflow: hidden;

    margin-top: 60px;
}
.sidebar_capture_block img {
    height: 100%;
    width: 100%;

    object-fit: cover;
}





@media screen and (max-width: 1200px) {

    .container_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .container_block {
        display: flex;
        justify-content: center;
        width: 100%;
    
        box-sizing: border-box;
    }
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ffffff;
        overflow: hidden;
    }
    
    
    
    
    /*====================================
    ============SEARCH BLOCK==============
    =====================================*/
    .search_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        
        background-image: url(../img/castle.svg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: auto;
    
        height: 147px;
    
        padding-top: 32px;
        padding-left: 36px;
        padding-right: 36px;
        box-sizing: border-box;
    }
    .search_block_logo_section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    
        height: 100%;
        width: 368px;
    }
    .search_block_logo_section-container_logo {
        width: 368px;
        height: 64px;
    
        margin-bottom: 5px;
    }
    .search_block_logo_section-container_logo img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .search_block_logo_section-text {
        font-family: "Nunito-Regular";
        font-size: 30px;
        line-height: 40px;
        color: #1e7b84;
    
        margin-bottom: 10px;
    }
    .search_block_search_section {
        height: 71px;
        width: 400px;
    
        border: 2px solid #cacbcb;
    border-radius: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .cont_search_block_search_section {
        width: 100%;
        height: 100%;
    
        position: relative;
        display: flex;
        align-items: center;
    }
    .search_block_search_section .search_line {
        position: relative;
    
        box-sizing: border-box;
        width: 100%;
        padding: 10px 50px 10px 55px;
    
        font-family: "Nunito-Regular";
        font-size: 20px;
        color: black;
    
        border: none;
        outline: none;
    
        background: none;
    }
    
    .search_block_search_section .search_line::-webkit-search-cancel-button {
        -webkit-appearance: none;
        display: block;
        position: absolute;
        left: 23px;
    
        height: 15px;
        width: 15px;
    
        background-image: url(../img/blue_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    .search_block_search_section .search_img {
        position: absolute;
    
        height: 20px;
        width: 20px;
    
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        right: 21.5px;
        top: 29px;
    
        cursor: pointer;
    }
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    .header_navigation {
        display: flex;
        justify-content: center;
        width: 100%;
        background-color: #0a3a52;
    }
    .header_navigation .container_block {
        display: flex;
        justify-content: center;
        
    
        background-color: #0a3a52;
    
        height: 92px;
        width: 100%;
    }
    .container_nav {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .container_nav li {
        display: flex;
        position: relative;
    
        font-family: "Nunito-SemiBold";
        font-size: 20px;
        color: #ffffff;
    
        height: 100%;
        width: 100%;
    
        background: transparent;
    
        transition: background .1s;
    }
    .container_nav li:hover {
        background: #fd9726;
    }
    .container_nav li a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    
        white-space: nowrap;
    
        padding: 0 10px;
        padding-left: 60px;
    }
    .container_nav li a::before {
        position: absolute;
        left: 10px;
        margin-right: 5px;
        opacity: 1;
        transition: opacity .1s;
    }
    .container_nav li a::after {
        position: absolute;
        left: 10px;
        margin-right: 5px;
        opacity: 0;
        transition: opacity .1s;
    }
    
    
    
    .container_nav li a:hover::before {
        opacity: 0;
    }
    .container_nav li a:hover::after {
        opacity: 1;
    }
    
    
    .container_nav_link:nth-of-type(1) a::before {
        content: url(../img/icon_nav_1.svg);
    }
    .container_nav_link:nth-of-type(2) a::before {
        content: url(../img/icon_nav_2.svg);
    }
    .container_nav_link:nth-of-type(3) a::before {
        content: url(../img/icon_nav_3.svg);
    }
    .container_nav_link:nth-of-type(4) a::before {
        content: url(../img/icon_nav_4.svg);
    }
    .container_nav_link:nth-of-type(5) a::before {
        content: url(../img/icon_nav_5.svg);
    }
    .container_nav_link:nth-of-type(6) a::before {
        content: url(../img/icon_nav_6.svg);
    }
    
    
    .container_nav_link:nth-of-type(1) a::after {
        content: url(../img/icon_nav_1_transparent.svg);
    }
    .container_nav_link:nth-of-type(2) a::after {
        content: url(../img/icon_nav_2_transparent.svg);
    }
    .container_nav_link:nth-of-type(3) a::after {
        content: url(../img/icon_nav_3_transparent.svg);
    }
    .container_nav_link:nth-of-type(4) a::after {
        content: url(../img/icon_nav_4_transparent.svg);
    }
    .container_nav_link:nth-of-type(5) a::after {
        content: url(../img/icon_nav_5_transparent.svg);
    }
    .container_nav_link:nth-of-type(6) a::after {
        content: url(../img/icon_nav_6_transparent.svg);
    }
    
    
    
    
    
    
    
    
    /*====================================
    ==========NAVIGATION CHAIN============
    =====================================*/
    .navigation_chain {
        display: flex;
        flex-direction: row;
        justify-content: left;
        flex-wrap: wrap;
    
        padding-left: 36px;
        padding-right: 36px;
    
        margin-top: 17px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    }
    .navigation_chain span {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    .navigation_chain span:last-of-type {   
        color: #C4CAD4;
    }
    .navigation_chain span:not(:last-of-type)::after {
        content: '';
        display: block;
    
        height: 100%;
        width: 7px;
    
        background:url(../img/navigation_chain_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        margin: 0 8px 0 8px;
    }
    
    
    
    
    
    
    
    /*====================================
    ================MAIN==================
    =====================================*/
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-image: url(../img/main_bg.svg);
        background-position: left top;
        background-repeat: repeat;
        background-size: auto;
        overflow: hidden;
    }
    .main .container_block {
        display: flex;
        flex-direction: column;
    
        background-color: #ffffff;
        box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
    }
    .main_header_section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 56px;
        padding-left: 36px;
        padding-right: 36px;
    }
    .main_header_section_container_img {
        position: relative;
    
        height: 424px;
        width: 715px;
        padding-top: 14px;
        margin-right: 20px;
    
        box-sizing: border-box;
        overflow: hidden;
    }
    .main_header_section_container_img::before {
        content: '';
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
    
        left: 0;
        top: 0;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat;
        background-size: contain;
    }
    .main_header_section_container_img::after {
        content: '';
        display: block;
        position: absolute;
        height: 7px;
        width: 100%;
    
        left: 0;
        bottom: 0;
    
        background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
    }
    .main_header_section_container_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .main_header_section_container_text {
        position: relative;
        width: 504px;
    
        padding: 31px 49px 3px 44px;
        box-sizing: border-box;
    
        min-height: 424px;
    
        background: #e8eaee;
    }
    .main_header_section_container_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .main_header_section_container_text-header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
    
        color: #0a3a52;
    
        padding-bottom: 10px;
    }
    .main_header_section_container_text-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 30px;
    
        text-align: left;
        
        color: #0a3a52;
    }
    
    
    
    
    
    
    .epoch_ul_section {
       display: flex; 
       flex-direction: column;
    
       padding-top: 51px;
       padding-left: 36px;
       padding-right: 36px;
    }
    .epoch_ul_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        padding: 0;
        margin: 0;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    }
    .epoch_ul_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .epoch_ul_section_container_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    
        margin-top: 20px;

        margin-bottom: -50px;
    }
    .epoch_ul_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        background-color: #f3f4f6;
    
        width: 365px;
    
        box-sizing: border-box;
        min-height: 503px;

        margin-bottom: 50px;
    }
    .epoch_ul_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .epoch_ul_section_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 6px;
    
        background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
    }
    .epoch_ul_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
    
        min-height: 69px;
        box-sizing: border-box;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
    
        padding: 19px 10px 14px 115px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    
        background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
    }
    .epoch_ul_section_single-caption::before {
        display: flex;
        position: absolute;
        left: 56px;
    
        padding-right: 8px;
    }
    .epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_1.svg);
    }
    .epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_2.svg);
    }
    .epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_3.svg);
    }
    .epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_4.svg);
    }
    .epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_5.svg);
    }
    .epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_6.svg);
    }
    .epoch_ul_section-ul {
    
        list-style: none;
        padding-left: 56px;
        padding-top: 11px;
    }
    .epoch_ul_section-li {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        
        color: #000000;
    
        margin-bottom: 15px;
    
        transition: color .1s, text-decoration .1s;
    }
    .epoch_ul_section-li a {
        text-decoration: underline;
        text-decoration-color: inherit;
        transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_section-li a:hover {
        text-decoration-color: transparent;
        
        color: #2A6C96;
    }
    
    
    
    
    
    
    
    
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding-left: 36px;
        padding-right: 36px;
    }
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .interesting_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 32%;
    }
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 186px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    .epoch_figures_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 96px;
    }
    .epoch_figures_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 37px 36px 9px;
    
        z-index: 2;
    }
    .epoch_figures_section_single:not(:nth-of-type(1)) {
        margin-top: 100px;
    }
    .epoch_figures_section_single:nth-of-type(odd) {
        background-color: #f9efe3;
    }
    .epoch_figures_section_single:nth-of-type(odd):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0px;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
    }
    .epoch_figures_section_single:nth-of-type(even) {
        background-color: #ebedf0;
    }
    .epoch_figures_section_single:nth-of-type(even):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
    }
    .epoch_figures_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    
        margin-bottom: 34px;
    
        padding-left: 100px;
    }
    .epoch_figures_section_single-caption::before {
        display: flex;
        position: absolute;
    
        left: 10px;
    
        padding-right: 10px;
    }
    .epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_1.svg);
    }
    .epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_2.svg);
    }
    .epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_3.svg);
    }
    .epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_4.svg);
    }
    .epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_5.svg);
    }
    .epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_6.svg);
    }
    .epoch_figures_section_single-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    }
    .cont_epoch_figures_section_single-content_single {
        position: relative;
        margin-bottom: 27px;

        width: 32%;
        min-height: 111px;
    }
    .cont_epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
        
        opacity: 1;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover::after {
        opacity: .7;
    }
    .epoch_figures_section_single-content_single {
        display: flex;
        flex-direction: row;
        position: relative;
    
    
        z-index: 1;
    }
    
    .epoch_figures_section_single-content_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 28px;
        width: 28px;
    
        z-index: 1;
    }
    .epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 28px;
        width: 28px;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    
    
    
    .epoch_figures_section_single-content_single-cont_img {
        display: flex;
        position: relative;
    
        /* height: 100%; */
        width: 171px;
    
        overflow: hidden;
    
        box-sizing: border-box;
    
        transition: border .1s;
    }
    .epoch_figures_section_single-content_single-cont_img::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 3px;
    
        background: #1e7b84;
    
        transition: height .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
        height: 9px;
    }
    .epoch_figures_section_single-content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #363636;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
        opacity: .3;
    }
    .epoch_figures_section_single-content_single-cont_img img {
    
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .epoch_figures_section_single-content_single-text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        /* White */
        
        color: #FFFFFF;
    
        padding: 14px 20px 9px;
    
        width: 221px;
    
        cursor: pointer;
    }
    .epoch_figures_section_single-content_single-text a {
        height: 100%;
        display: block;
    }
    
    
    
    
    
    
    
    
    .author_section {
        display: flex;
        flex-direction: column;
    
        margin: 74px 36px 115px;
        padding: 26px 26px 50px;
    
        background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
    }
    .author_section_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        position: relative;
    }
    .author_section_header::before {
        content: '';
        display: block;
        position: absolute;
    
        height: 3px;
        width: 100%;
    
        background-image: url(../img/dotted.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
        /* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
        background-size: 10px 10px;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .author_section_header-caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
    
        padding-left: 14px;
        padding-right: 38px;
        
        color: #0a3a52;
    
        background-color: #f3f4f6;
    }
    .author_section_header-caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100%);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .author_section_header-see_more {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        
        color: #2A6C96;
    
        padding-right: 16px;
        padding-left: 41px;
    
        background-color: #f3f4f6;
    
        cursor: pointer;
    
        transition: color .1s;
    }
    .author_section_header-see_more:hover {
        color: #1e7b84
    }
    .author_section_header-see_more::before {
        content: '';
        display: block;
        position: absolute;
    
        right: -14px;
    
        height: 24px;
        width: 24px;
    
        background: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        transition: background .1s;
    }
    .author_section_header-see_more:hover::before {
        background: url(../img/orange_arrow.svg);
    }
    
    .author_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        margin-top: 32px;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 32.5%;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 32.5%;
    }
    .author_section_content_single-cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    
        height: 97px;
        width: 97px;
    
        border-radius: 50px;
    
        overflow: hidden;
    
        margin-right: 12px;
    }
    .author_section_content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #000000;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .author_section_content_single:hover .author_section_content_single-cont_img::before {
        opacity: .3;
    }
    .author_section_content_single-cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .author_section_content_single-author_data {
        display: flex;
        flex-direction: column;
    }
    .author_section_content_single-author_data-name {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    
        margin-bottom: 2px;
    
        transition: color .1s;
    }
    .author_section_content_single:hover .author_section_content_single-author_data-name {
        color: #1e7b84;
    }
    .author_section_content_single-author_data-profession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-bottom: 11px;
    }
    .author_section_content_single-author_data-author_articls {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
        /* identical to box height */
        
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
        transition: color .1s;
    }    
    .author_section_content_single-author_data-author_articls:hover {
        color: #1e7b84;
    }
    
    
    
    
    
    
    
    
    
    
    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
        background: #0a3a52;
    
        overflow: hidden;
    }
    .footer .container_block {
        display: flex;
        justify-content: center;
        position: relative;
    
    
        width: 100%;
    }

    .footer .container_block::after {
        content: '';
        display: flex;
        position: absolute;
    
        top: 20px;
        height: 92px;
        width: 100%;
    
        background-color: #0a3a52;
    }
    .container_footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 40px 36px 31px;
    
        box-sizing: border-box;
    }
    .footer .container_block:before {
        content: '';
    }
    .footer_logo_block {
        display: flex;
        flex-direction: column;
        margin-right: 162px;
    
        
        z-index: 1;
    }
    .footer_logo_block-container_logo {
        width: 368px;
        height: 64px;
    }
    .footer_logo_block-container_logo img {
        height: 100%;
        width: 100%;
        
        object-fit: contain;
    }
    .footer_logo_block-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 30px;
        line-height: 41px;
        
        color: #1e7b84;
    
        margin-bottom: 21px;
    }
    .footer_logo_block-text_2 {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        
        color: #C4CAD4;
    }
    .footer_link_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        position: relative;
    
        width: 100%;
    
        z-index: 1;
    }
    .footer_link_block::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -25px;
        left: calc(50% - 161px);
    
        width: 385px;
        height: 123px;
    
        background: url(../img/castle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .footer_link_block_left_links {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 41px;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_left_links > * {
        transition: color .1s;
    }
    .footer_link_block_left_links > *:hover {
        color: #1e7b84;
    }
    .footer_link_block_right_links {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
        
        text-align: right;
        text-decoration-line: underline;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_right_links > * {
        transition: color .1s;
    }
    .footer_link_block_right_links > *:hover {
        color: #1e7b84;
    }
    
    
    
    
    




    
    /*==============================
    ==========RUBRIC PAGE===========
    ===============================*/
    .rubric_section {
        display: flex;
        flex-direction: column;
    
        padding: 0 36px;
    }
    .rubric_name {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .rubric_text {
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        padding: 12px 0 12px 41px;
    
        /* border: 9px solid #000000;
        border-image: url(../img/vertical_orange_border.svg) 9 repeat repeat; */
    
        margin-top: 27px;
    }
    .rubric_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 9px;
    /* 
        background-image: url(../img/vertical_orange_border.svg);
        background-position: top;
        background-repeat: repeat-y;
        background-size: contain;*/ 
    }
    
    
    
    
    
    
    
    /*==============================
    =============TABLE==============
    ===============================*/
    .table_1 {
        margin-top: 37px;
    }
    .table_1 table {
        width: 100%;
        max-width: 100%;
    }
    .table_1 {
        margin-top: 37px;
        width: unset;
        max-width: unset;
    }
    .table_1 table {
        width: 100%;
        max-width: 100%;
    }
    .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px 40px 10px 20px;
        border: 2px solid #ffffff;
    
        text-align: left;
        
        white-space: nowrap;
    }
    .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        padding: 10px 20px;
        border: 2px solid #ffffff;
    
        vertical-align: middle;
    }
    .table_1 table tr {
    
        background-color: #dcdfe5;
    }
    .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .last_section {
        margin-bottom: 72px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*==============================
    ==========STATYA PAGE===========
    ===============================*/
    
    .statya_page_cont_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        padding: 0 36px;
        box-sizing: border-box;
    
        width: 100%;
    }
    
    
    
    
    .statya_block {
        margin-right: 10px;
        width: unset;
        flex-basis: 925px;

        flex-shrink: 100;
    }
    
    
    
    .sidebar_block {
        width: unset;
        flex-basis: 295px;
    
        margin-top: 125px;
    }
    .epoch_ul_sidebar {
       display: flex; 
       flex-direction: column;
       align-items: center;
       position: relative;
    
       padding: 23px 33px 68px 32px;
    
       background: no-repeat right 12px bottom 14px url(../img/horse.svg), #F3F4F6;
    }
    .epoch_ul_sidebar::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: calc(100% + 4.6px);
    
        width: 100%;
        height: 41px;
    
        background: url(../img/icon_sidebar.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* background: no-repeat center url(../img/sidebar_crown.svg), #ffffff; */
    }
    .epoch_ul_sidebar_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .epoch_ul_sidebar_ul {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        text-decoration-line: underline;
        
        color: #000000;
    
        margin-top: 14px;
    }
    .epoch_ul_sidebar_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    .epoch_ul_sidebar_li a {
    text-decoration: underline;
    text-decoration-color: inherit;
    transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_sidebar_li a:hover {
    text-decoration-color: transparent;
    
    color: #2A6C96;
    }
    
    
    .sidebar_interesting_section_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    }
    
    .sidebar_capture_block {
        width: 100%;
        height: max-content;
        overflow: hidden;
    
        margin-top: 60px;
    }
    .sidebar_capture_block img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }

    .sidebar_block .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 100%;
    }
    .sidebar_block .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }



    .statya_header {
        /* H1 */
        
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 50px;
        line-height: 65px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .switch_version {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    
        margin-top: 10px;
    }
    .switch_version_single {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 31px;
        /* or 194% */
        
        text-align: center;
        height: max-content;
        
        /* Secondary */
        
        color: #0a3a52;
    
        padding: 9px 35px 9px;
        background: #C4CAD4;
    
        cursor: pointer;
    }
    .switch_version_single.active { 
        color: #ffffff;
    
        padding: 13px 35px 9px;
        background: #0a3a52;
    }
    
    
    
    
    .table_contents {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 34px 42px 6px;
        box-sizing: border-box;
    
        border-top: 6px solid #1e7b84;
        background: no-repeat right 23px bottom 30px url(../img/single_book.svg), #f3f4f6;
    
        margin-top: 20px;
    
        width: 100%;
    }
    .table_contents::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
    }
    .table_contents_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        color: #1e7b84;
    
    }
    .table_contents ol {
        counter-reset: li;
    }
    .table_contents_ol {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .table_contents_li {
        margin-bottom: 20px;
    }
    .table_contents_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .table_contents_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #c4cad4;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        /* height: 100%; */
    
        border-bottom: 2px solid #1e7b84;
    }
    .table_contents_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    .statya_subtitle_1 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin-top: 27px;
    }
    .statya_subtitle_1::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    .statya_text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-top: 30px;
    }
    .statya_text_link {
    
        color: #2a6c96;
        text-decoration: underline;
    }
    
    
    
    
    .statya_figure_1 {
        display: flex;
        flex-direction: column;
        border-top: 4px solid #0a3a52;
        width: 715px;
    
        margin: 30px auto 0;
        /* margin-top: 30px; */
    }
    .statya_figure_1_cont_img {
        width: 715px;
        height: 358px;
        padding: 2px 0 3px;
    }
    .statya_figure_1_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_figure_1_text {
        padding: 12px 38px;
        text-align: left;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        /* or 143% */
        
        
        /* White */
        
        color: #FFFFFF;
    
        background: #1e7b84;
    }
    
    
    
    .blockquote_style_1 {
        position: relative;
    
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    
        padding: 43px 46px 43px 105px;
        margin-bottom: 50px;
        margin-top: 48px;
    
        background: no-repeat left 31px top 46px url(../img/article_icon.svg), #0a3a52;
    
    }
    .blockquote_style_1::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
    }
    .blockquote_style_1::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -14px;
        left: 0;
    
        height: 14px;
        width: 14px;
    
        background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
    }
    
    
    
    .cont_statya_ol_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 35px 39px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ol_1 ol {   
        counter-reset: li;
    }
    .statya_ol_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ol_1 .statya_li {
        margin-bottom: 20px;
    }
    .statya_ol_1 .statya_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .statya_ol_1 .statya_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #0a3a52;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        border-bottom: 2px solid #1e7b84;
        color: #ffffff;
    }
    .statya_ol_1 .statya_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    
    
    
    .statya_read_also {
    
        padding: 24px 23px 27px 38px;
    
        border-left: 3px solid #c4cad4;
    
        background: #eef0f2;
    
        margin-top: 45px;
    }
    .statya_read_also_cont_img {
        position: relative;
        height: 136px;
        width: 215px;
    
        overflow: hidden;
    
        border-bottom: 4px solid #1e7b84;
        /* order: 2; */
        float: right;
        margin-left: 36px;
        /* margin-bottom: 20px; */
    }
    .statya_read_also_cont_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_read_also_cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 20px;
        width: 20px;
    
        background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
    }
    .statya_read_also_text_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .statya_read_also_text_p_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .statya_read_also_text_p_2 {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-top: 6px;
    }
    
    
    
    .cont_statya_ul_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 41px 62px 41px 90px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ul_1 ul {
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_ul_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ul_1 .statya_li {
        margin-bottom: 20px;
    }
    
    
    
    
    .statya_subtitle_2 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 45px;
    }
    .statya_subtitle_2::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    
    
    
    
    .blockquote_style_2 {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 30px 61px 18px 140px;
        background: no-repeat left 50px top 38px url(../img/feather_2.svg), #1e7b84;
    
        margin-top: 40px;
    }
    .blockquote_style_2::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -12px;
        left: 0;
    
        width: 100%;
        height: 20px;
    
        background: url(../img/img_border.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    
    .blockquote_style_2_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    }
    .blockquote_style_2_text {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    .statya_references_list {
        display: flex;
        flex-direction: column;
        padding: 35px 58px 45px;
        background: no-repeat right 38px top 42px url(../img/books.svg), #F3F4F6;
    
        margin-top: 32px;
    }
    .statya_references_list_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #0a3a52;
    }
    .statya_references_ul {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-left: 30px;
        margin-top: 11px;
        
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_references_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    
    
    
    
    
    
    
    
    
    
    .statya_media_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        margin-top: 77px;
    
        padding: 17px 72px 43px 62px;
    
        background: no-repeat right 84px bottom 28px url(../img/feather_3.svg), #0a3a52;
    }
    .statya_media_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -3px;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .cont_stastya_share {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    }
    .cont_stastya_share_content {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_top_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_social {
        display: flex;
        flex-direction: row;
    
        width: 400px;
    }
    .cont_social_icon {
        width: 70px;
        height: 70px;
    }
    .cont_social_icon:not(:last-of-type) {
        margin-right: 30px;
    }
    .cont_social_icon img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    .stastya_share_discuss {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;
    
        padding: 19px 21px 17px 21px;
    
        width: 235px;
        height: 64px;
    
        box-sizing: border-box;
    
        background: #1e7b84;
    
        transition: background .1s;
    }
    .stastya_share_discuss:hover {
        background: #d69240;
    }
    .stastya_share_discuss::before {
        content: '';
        display: block;
        position: absolute;
    
        left: 28px;
    
        width: 24px;
        height: 24px;
    
        background: url(../img/discuss_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_discuss::after {
        content: '';
        display: block;
        position: absolute;
    
        left: 0;
        top: 0;
    
        width: 15px;
        height: 15px;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
        
        transition: background .1s;
    }
    .stastya_share_discuss span {
        position: absolute;
    
        right: 21px;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-left: 21px;
    }
    
    .stastya_share_bottom_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_polezna {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    
        width: 400px;
    }
    .stastya_share_polezna_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-bottom: 5px;
    }
    .stastya_share_polezna_cont_da_net {
        display: flex;
        flex-direction: row;
    }
    .stastya_share_polezna_cont_da_net > * {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    
        height: 40px;
        width: 72px;
    
        cursor: pointer;
    
        transition: background .1s;
    }
    .stastya_share_polezna_cont_da_net > *:hover {
        background: #d69240;
    }
    .stastya_share_polezna_cont_da_net > *::before {
        content: '';
        display: block;
        position: absolute;
    
        width: 15px;
        height: 15px;
    
        transition: background .1s;
    }
    .stastya_share_polezna_da {
        margin-right: 17px;
    }
    .stastya_share_polezna_da::before {
        left: 0;
        top: 0;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    .stastya_share_polezna_net::before {
        right: 0;
        bottom: 0;
    
        background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    
    .stastya_share_raiting {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 235px;
    }
    .stastya_share_raiting_caption {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        /* Primary */
        
        color: #1e7b84;
    
        width: 100%;
    }
    .stastya_share_raiting_cont_button {
        display: flex;
        flex-direction: row;
    
        margin-left: 17px;
        margin-top: 3px;
    }
    .stastya_share_raiting_likes,
    .stastya_share_raiting_dislikes {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        border-radius: 50px;
    
        background: #1e7b84;
        cursor: pointer;
        transition: background .1s;
    
        width: 43px;
        height: 43px;
    
        padding-left: 7px;
        box-sizing: border-box;
    }
    .stastya_share_raiting_likes {
        margin-right: 61px;
    }
    .stastya_share_raiting_likes:hover,
    .stastya_share_raiting_dislikes:hover {
        background: #d69240;
    }
    .stastya_share_raiting_likes::before,
    .stastya_share_raiting_dislikes::before {
        content: '';
        display: block;
        position: absolute;
    
        left: -14px;
    
        width: 24px;
        height: 24px;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_raiting_likes::before {
        background: url(../img/like_icon.svg);
    }
    .stastya_share_raiting_dislikes::before {
        background: url(../img/dislike_icon.svg);
    }
    
    
    
    
    
    .cont_statya_author {
        position: relative;
        margin-top: 51px;
    }
    .cont_statya_author::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -10px;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_author_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_data {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .statya_author_cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
    
        height: 140px;
        width: 140px;
    
        border-radius: 50%;
    
        overflow: hidden;
    
        margin-right: 32px;
    }
    .statya_author_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_author_info {
        display: flex;
        flex-direction: column;
    }
    .statya_author_name {
        text-align: center;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 28px;
        line-height: 38px;
        
        color: #FFFFFF;
    
        margin-bottom: 2px;
    }
    .statya_author_proffession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_date_release,
    .statya_author_date_modified {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    
    
    .statya_block 
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding: 0;
    }
    .statya_block 
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .statya_block 
    .interesting_section_caption::before {
        content: '';
        display: none;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .statya_block 
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .statya_block 
    .cont_interesting_section_single {
        margin-bottom: 45px;
    }
    .statya_block 
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 270px;
    }
    .statya_block 
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .statya_block 
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 160px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .statya_block 
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .statya_block 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .statya_block 
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_block 
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .statya_block 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .statya_block 
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .statya_block 
    .interesting_section_single:hover 
    .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .statya_block 
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    /* COMMENTS */ 
    
    .statya_comments_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        margin-top: 57px;
        margin-bottom: 50px;
        padding: 34px 0 54px;
    
        box-sizing: border-box;
    }
    .statya_comments_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Secondary */
        
        color: #0a3a52;
    }
    .statya_comments_section_content {
        display: flex;
        flex-direction: column;
    
        width: 100%;
    }
    
    
    
    .cont_statya_comments_section_single {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    
        width: 100%;
    
        margin-top: 50px;
    }
    
    
    .statya_comments_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        padding: 16px 28px 16px 47px;
        box-sizing: border-box;
    
        background-color: #eef0f2;
    }
    .statya_comments_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 100%;
        left: 0;
    
        height: 28px;
        width: 32px;
    
        background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
    }
    .statya_comments_section_single_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .statya_comments_section_single_header_name {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_header_date {
        display: flex;
        align-items: center;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        
        color: #C4CAD4;
    }
    .statya_comments_section_single_body {
        position: relative;
    
        width: 100%;
        margin-top: 15px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_body::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -9px;
        left: 0;
    
        width: 100%;
        height: 1px;
    
        background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);
    
        color: #cdd2d9;
    }
    .statya_comments_section_single_footer {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 22px;
        /* or 183% */
        
        text-align: right;
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
    
        margin-top: 10px;
    
        transition: color .1s;
    }
    .statya_comments_section_single_footer:hover {
        color: #1e7b84;
    }
    
    
    .statya_comments_section_single_responce .statya_comments_section_single {
        background-color: #f8f8f9;
    }
    
    .statya_comments_section_single_responce .statya_comments_section_single::before {
        background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
    }
    .statya_comments_section_single_responce {
        width: calc(100% - 48px);
    }
    
    
    
    .statya_comments_section_add_comment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
        width: 100%;
        padding: 21px 35px 26px 48px;
    
        margin-top: 30px;
    
        box-sizing: border-box;
        
        background: #fafafb;
    }
    .statya_comments_section_add_comment_header {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 26px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-bottom: 25px;
    }
    
    .statya_comments_section_add_comment_name {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    
        margin-bottom: 30px;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    }
    .statya_comments_section_add_comment_name::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        height: 140px;
        margin-bottom: 30px;
        padding: 24px 20px;
        box-sizing: border-box;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    
        resize: none;
    }
    .statya_comments_section_add_comment_text::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_submit {
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        width: 235px;
        height: 64px;
        
        background: #1e7b84;
        border-radius: 4px;
    
        transition: background .1s;
    }
    .statya_comments_section_add_comment_submit:hover {
        background: #d69240;
    }
}











@media screen and (max-width: 1024px) {
	
    .container_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .container_block {
        display: flex;
        justify-content: center;
        width: 100%;
    
        box-sizing: border-box;
    }
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ffffff;
        overflow: hidden;
    }
    .header_search_button {
        display: none;
        position: absolute;

        top: 28px;
        right: 62px;

        width: 24px;
        height: 24px;

        background: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }
    .header_menu_button {
        display: block;
        position: absolute;

        top: 42px;
        right: 36px;

        width: 50px;
        height: 50px;

        background: url(../img/menu_button.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }
    
    
    
    
    /*====================================
    ============SEARCH BLOCK==============
    =====================================*/
    .search_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        
        
        background: url(../img/bg_header_mobile.svg), #eef0f2;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: auto;
    
        height: 147px;
    
        padding-top: 32px;
        padding-left: 36px;
        padding-right: 140px;
        box-sizing: border-box;
    }
    .search_block_logo_section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    
        height: 100%;
        width: 368px;
    }
    .search_block_logo_section-container_logo {
        width: 368px;
        height: 64px;
    
        margin-bottom: 5px;
    }
    .search_block_logo_section-container_logo img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .search_block_logo_section-text {
        font-family: "Nunito-Regular";
        font-size: 24px;
        line-height: 40px;
        color: #1e7b84;
    
        margin-bottom: 10px;
    }
    .search_block_search_section {
        height: 71px;
        width: 400px;
    
        border: 2px solid #cacbcb;
    border-radius: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .cont_search_block_search_section {
        width: 100%;
        height: 100%;
    
        position: relative;
        display: flex;
        align-items: center;
    }
    .search_block_search_section .search_line {
        position: relative;
    
        box-sizing: border-box;
        width: 100%;
        padding: 10px 50px 10px 55px;
    
        font-family: "Nunito-Regular";
        font-size: 20px;
        color: black;
    
        border: none;
        outline: none;
    
        background: none;
    }
    
    .search_block_search_section .search_line::-webkit-search-cancel-button {
        -webkit-appearance: none;
        display: block;
        position: absolute;
        left: 23px;
    
        height: 15px;
        width: 15px;
    
        background-image: url(../img/blue_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    .search_block_search_section .search_img {
        position: absolute;
    
        height: 20px;
        width: 20px;
    
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        right: 21.5px;
        top: 29px;
    
        cursor: pointer;
    }
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    .header_navigation {
        display: none;
        justify-content: center;
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        background-color: #0a3a52;
        border-left: 6px solid #1e7b84;

        box-sizing: border-box;


        z-index: 10;
    }
    .header_navigation.active {
        display: flex;
        opacity: 1;
    }
    .header_navigation_cross {
        display: block;
        position: absolute;

        top: 16px;
        right: 16px;

        width: 32px;
        height: 32px;

        background: url(../img/white_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        z-index: 11;

        cursor: pointer;
    }
    .header_navigation .container_block {
        display: flex;
        justify-content: center;
        background: none !important;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    
        background-color: #ffffff;
    
        height: unset;
        width: 100%;
    }
    .container_nav {
        width: 100%;
        height: unset;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }
    .container_nav li {
        display: flex;
        position: relative;
    
        font-family: "Nunito-SemiBold";
        font-size: 20px;
        color: #ffffff;
    
        height: 139px;
        width: 100%;
    
        background: transparent;
    
        transition: background .1s;
    }
    .container_nav li:hover {
        background: #fd9726;
    }

    .container_nav li a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    
        white-space: nowrap;
    
        padding: 0 132px;
    }
    .container_nav li a::before {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 1;
        transition: opacity .1s;
    }
    .container_nav li a::after {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 0;
        transition: opacity .1s;
    }


    .container_nav_link:nth-of-type(1) a::before {
        content: url(../img/icon_nav_1.svg);
    }
    .container_nav_link:nth-of-type(2) a::before {
        content: url(../img/icon_nav_2.svg);
    }
    .container_nav_link:nth-of-type(3) a::before {
        content: url(../img/icon_nav_3.svg);
    }
    .container_nav_link:nth-of-type(4) a::before {
        content: url(../img/icon_nav_4.svg);
    }
    .container_nav_link:nth-of-type(5) a::before {
        content: url(../img/icon_nav_5.svg);
    }
    .container_nav_link:nth-of-type(6) a::before {
        content: url(../img/icon_nav_6.svg);
    }
    
    
    .container_nav_link:nth-of-type(1) a::after {
        content: url(../img/icon_nav_1_transparent.svg);
    }
    .container_nav_link:nth-of-type(2) a::after {
        content: url(../img/icon_nav_2_transparent.svg);
    }
    .container_nav_link:nth-of-type(3) a::after {
        content: url(../img/icon_nav_3_transparent.svg);
    }
    .container_nav_link:nth-of-type(4) a::after {
        content: url(../img/icon_nav_4_transparent.svg);
    }
    .container_nav_link:nth-of-type(5) a::after {
        content: url(../img/icon_nav_5_transparent.svg);
    }
    .container_nav_link:nth-of-type(6) a::after {
        content: url(../img/icon_nav_6_transparent.svg);
    }



    


    .container_nav li::after {
        content: '';
        display: block;
        position: absolute;

        bottom: -1px;
        left: 0;

        width: calc(100% - 104px);

        margin: 0 52px;

        box-sizing: border-box;

        height: 2px;

        background: repeat-x url(../img/nav_border.svg);
        z-index: 10000;
    }
    /* .container_nav_link a::after {
        content: '';
        display: block;
        position: absolute;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 10px;

        background-image: repeating-radial-gradient(90deg, black, black 10px, transparent 10px, transparent);
        

        z-index: 10000;
    } */
    
    
    
    
    
    
    
    
    /*====================================
    ==========NAVIGATION CHAIN============
    =====================================*/
    .navigation_chain .kama_breadcrumbs {
        display: flex;
        flex-direction: row;
        justify-content: left;
        flex-wrap: wrap;
    
        padding-left: 0;
        padding-right: 36px;
    
        margin-top: 17px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    }
    .navigation_chain span {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    .navigation_chain span:last-of-type {   
        color: #C4CAD4;
    }
    .navigation_chain_single:not(:last-of-type)::after {
        content: '';
        display: block;
    
        height: 100%;
        width: 7px;
    
        background:url(../img/navigation_chain_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        margin: 0 8px 0 8px;
    }
    
    
    
    
    
    
    
    /*====================================
    ================MAIN==================
    =====================================*/
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-image: url(../img/main_bg.svg);
        background-position: left top;
        background-repeat: repeat;
        background-size: auto;
        overflow: hidden;
    }
    .main .container_block {
        display: flex;
        flex-direction: column;
    
        background-color: #ffffff;
        box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
    }
    .main_header_section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 56px;
        padding-left: 36px;
        padding-right: 36px;
    }
    .main_header_section_container_img {
        position: relative;
    
        height: 424px;
        width: 715px;
        padding-top: 14px;
        margin-right: 20px;
    
        box-sizing: border-box;
        overflow: hidden;
    }
    .main_header_section_container_img::before {
        content: '';
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
    
        left: 0;
        top: 0;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat;
        background-size: contain;
    }
    .main_header_section_container_img::after {
        content: '';
        display: block;
        position: absolute;
        height: 7px;
        width: 100%;
    
        left: 0;
        bottom: 0;
    
        background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
    }
    .main_header_section_container_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .main_header_section_container_text {
        position: relative;
        width: 504px;
    
        padding: 25px 40px 25px 38px;
        box-sizing: border-box;
    
        min-height: 424px;
    
        background: #e8eaee;
    }
    .main_header_section_container_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .main_header_section_container_text-header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
    
        color: #0a3a52;
    
        padding-bottom: 10px;
    }
    .main_header_section_container_text-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 28px;
    
        text-align: left;
        
        color: #0a3a52;
    }
    
    
    
    
    
    
    .epoch_ul_section {
       display: flex; 
       flex-direction: column;
    
       padding-top: 51px;
       padding-left: 36px;
       padding-right: 36px;
    }
    .epoch_ul_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        padding: 0;
        margin: 0;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    }
    .epoch_ul_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .epoch_ul_section_container_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    
        margin-top: 20px;

        margin-bottom: -50px;
    }
    .epoch_ul_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        background-color: #f3f4f6;
    
        width: 48%;
    
        box-sizing: border-box;
        min-height: 503px;

        margin-bottom: 50px;
    }
    .epoch_ul_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .epoch_ul_section_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 6px;
    
        background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
    }
    .epoch_ul_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
    
        min-height: 69px;
        box-sizing: border-box;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
    
        padding: 19px 10px 14px 115px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    
        background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
    }
    .epoch_ul_section_single-caption::before {
        display: flex;
        position: absolute;
        left: 56px;
    
        padding-right: 8px;
    }
    .epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_1.svg);
    }
    .epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_2.svg);
    }
    .epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_3.svg);
    }
    .epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_4.svg);
    }
    .epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_5.svg);
    }
    .epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_6.svg);
    }
    .epoch_ul_section-ul {
    
        list-style: none;
        padding-left: 56px;
        padding-top: 11px;
    }
    .epoch_ul_section-li {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        
        color: #000000;
    
        margin-bottom: 15px;
    
        transition: color .1s, text-decoration .1s;
    }
    .epoch_ul_section-li a {
        text-decoration: underline;
        text-decoration-color: inherit;
        transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_section-li a:hover {
        text-decoration-color: transparent;
        
        color: #2A6C96;
    }
    
    
    
    
    
    
    
    
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding-left: 36px;
        padding-right: 36px;
    }
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .interesting_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 32%;
    }
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
      
        z-index: 1;
    }
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 186px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    .epoch_figures_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 96px;
    }
    .epoch_figures_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 37px 36px 9px;
    
        z-index: 2;
    }
    .epoch_figures_section_single:not(:nth-of-type(1)) {
        margin-top: 100px;
    }
    .epoch_figures_section_single:nth-of-type(odd) {
        background-color: #f9efe3;
    }
    .epoch_figures_section_single:nth-of-type(odd):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0px;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
    }
    .epoch_figures_section_single:nth-of-type(even) {
        background-color: #ebedf0;
    }
    .epoch_figures_section_single:nth-of-type(even):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
    }
    .epoch_figures_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    
        margin-bottom: 34px;
    
        padding-left: 100px;
    }
    .epoch_figures_section_single-caption::before {
        display: flex;
        position: absolute;
    
        left: 10px;
    
        padding-right: 10px;
    }
    .epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_1.svg);
    }
    .epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_2.svg);
    }
    .epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_3.svg);
    }
    .epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_4.svg);
    }
    .epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_5.svg);
    }
    .epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_6.svg);
    }
    .epoch_figures_section_single-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    }
    .cont_epoch_figures_section_single-content_single {
        position: relative;
        margin-bottom: 27px;
        width: 48%;
        min-height: 111px;
    }
    .cont_epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
        
        opacity: 1;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover::after {
        opacity: .7;
    }
    .epoch_figures_section_single-content_single {
        display: flex;
        flex-direction: row;
        position: relative;
    
        z-index: 1;

        height: 100%;
    }
    
    .epoch_figures_section_single-content_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 35px;
        width: 35px;
    
        z-index: 1;
    }
    .epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 35px;
        width: 35px;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    
    
    
    .epoch_figures_section_single-content_single-cont_img {
        display: flex;
        position: relative;

        /* height: 100%; */
        width: 171px;
        flex-basis: 170px;
    
        overflow: hidden;
    
        box-sizing: border-box;
    
        transition: border .1s;
    }
    .epoch_figures_section_single-content_single-cont_img::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 3px;
    
        background: #1e7b84;
    
        transition: height .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
        height: 9px;
    }
    .epoch_figures_section_single-content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #363636;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
        opacity: .3;
    }
    .epoch_figures_section_single-content_single-cont_img img {
    
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .epoch_figures_section_single-content_single-text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        /* White */
        
        color: #FFFFFF;
    
        padding: 14px 20px 9px;
    
        width: 100%;
    
        cursor: pointer;
        flex-shrink: 100000;

    }
    .epoch_figures_section_single-content_single-text a {
        height: 100%;
        display: block;
    }
    
    
    
    
    
    
    
    
    .author_section {
        display: flex;
        flex-direction: column;
    
        margin: 74px 36px 115px;
        padding: 26px 26px 50px;
    
        background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
    }
    .author_section_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        position: relative;
    }
    .author_section_header::before {
        content: '';
        display: block;
        position: absolute;
    
        height: 3px;
        width: 100%;
    
        background-image: url(../img/dotted.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
        /* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
        background-size: 10px 10px;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .author_section_header-caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
    
        padding-left: 14px;
        padding-right: 38px;
        
        color: #0a3a52;
    
        background-color: #f3f4f6;
    }
    .author_section_header-caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100%);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .author_section_header-see_more {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        
        color: #2A6C96;
    
        padding-right: 16px;
        padding-left: 41px;
    
        background-color: #f3f4f6;
    
        cursor: pointer;
    
        transition: color .1s;
    }
    .author_section_header-see_more:hover {
        color: #1e7b84
    }
    .author_section_header-see_more::before {
        content: '';
        display: block;
        position: absolute;
    
        right: -14px;
    
        height: 24px;
        width: 24px;
    
        background: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        transition: background .1s;
    }
    .author_section_header-see_more:hover::before {
        background: url(../img/orange_arrow.svg);
    }
    
    .author_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        margin-top: 32px;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 32.5%;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 32.5%;
    }
    .author_section_content_single-cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    
        height: 97px;
        width: 97px;
    
        border-radius: 50px;
    
        overflow: hidden;
    
        margin-right: 12px;
    }
    .author_section_content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #000000;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .author_section_content_single:hover .author_section_content_single-cont_img::before {
        opacity: .3;
    }
    .author_section_content_single-cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .author_section_content_single-author_data {
        display: flex;
        flex-direction: column;
    }
    .author_section_content_single-author_data-name {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    
        margin-bottom: 2px;
    
        transition: color .1s;
    }
    .author_section_content_single:hover .author_section_content_single-author_data-name {
        color: #1e7b84;
    }
    .author_section_content_single-author_data-profession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-bottom: 11px;
    }
    .author_section_content_single-author_data-author_articls {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
        /* identical to box height */
        
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
        transition: color .1s;
    }    
    .author_section_content_single-author_data-author_articls:hover {
        color: #1e7b84;
    }
    
    
    
    
    
    
    
    
    
    
    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
        background: #0a3a52;
    
        overflow: hidden;
    }
    .footer .container_block {
        display: flex;
        justify-content: center;
        position: relative;
    
    
        width: 100%;
    }

    .footer .container_block::after {
        content: '';
        display: flex;
        position: absolute;
    
        top: 20px;
        height: 92px;
        width: 100%;
    
        background-color: #0a3a52;
    }
    .container_footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 40px 36px 31px;
    
        box-sizing: border-box;
    }
    .footer .container_block:before {
        content: '';
    }
    .footer_logo_block {
        display: flex;
        flex-direction: column;
        margin-right: 50px;
    
        
        z-index: 1;
    }
    .footer_logo_block-container_logo {
        width: 368px;
        height: 64px;
    }
    .footer_logo_block-container_logo img {
        height: 100%;
        width: 100%;
        
        object-fit: contain;
    }
    .footer_logo_block-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 30px;
        line-height: 41px;
        
        color: #1e7b84;
    
        margin-bottom: 21px;
    }
    .footer_logo_block-text_2 {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        
        color: #C4CAD4;
    }
    .footer_link_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        position: relative;
    
        width: 100%;
    
        z-index: 1;
    }
    .footer_link_block::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -25px;
        left: unset;
        right: 0;
    
        width: 385px;
        height: 123px;
    
        background: url(../img/castle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .footer_link_block_left_links {
        text-align: center;

        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 41px;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_left_links > * {
        transition: color .1s;
    }
    .footer_link_block_left_links > *:hover {
        color: #1e7b84;
    }
    .footer_link_block_right_links {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
        
        text-align: right;
        text-decoration-line: underline;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_right_links > * {
        transition: color .1s;
    }
    .footer_link_block_right_links > *:hover {
        color: #1e7b84;
    }
    
    
    
    
    




    
    /*==============================
    ==========RUBRIC PAGE===========
    ===============================*/
    .rubric_section {
        display: flex;
        flex-direction: column;
    
        padding: 0 36px;
    }
    .rubric_name {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .rubric_text {
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        padding: 12px 0 12px 41px;
    
        /* border: 9px solid #000000;
        border-image: url(../img/vertical_orange_border.svg) 9 repeat repeat; */
    
        margin-top: 27px;
    }
    .rubric_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 9px;
   /*  
        background-image: url(../img/vertical_orange_border.svg);
        background-position: top;
        background-repeat: repeat-y;
        background-size: contain;*/ 
    }
    
    
    
    
    
    
    
    /*==============================
    =============TABLE==============
    ===============================*/
    .table_1 {
        margin-top: 37px;
    }
    .table_1 table {
        width: 100%;
        max-width: 100%;
		
		 display: inline-block;
	vertical-align: top;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
    }
    .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px 40px 10px 20px;
        border: 2px solid #ffffff;
    
        text-align: left;
        
        white-space: nowrap;
    }
    .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    
        padding: 10px 10px;
        border: 2px solid #ffffff;
    
        vertical-align: middle;
    }
    .table_1 table tr {
    
        background-color: #dcdfe5;
    }
    .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .last_section {
        margin-bottom: 72px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*==============================
    ==========STATYA PAGE===========
    ===============================*/
    
    .statya_page_cont_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        padding: 0 36px;
        box-sizing: border-box;
    
        width: 100%;
    }
    
    
    
    
    .statya_block {
        margin-right: 0;
        width: 100%;
        flex-basis: unset;

        flex-shrink: unset;
    }
    
    
    
    .sidebar_block {
        display: none;
        width: unset;
        flex-basis: 295px;
    
        margin-top: 125px;
    }
    .epoch_ul_sidebar {
       display: flex; 
       flex-direction: column;
       align-items: center;
       position: relative;
    
       padding: 23px 33px 68px 32px;
    
       background: no-repeat right 12px bottom 14px url(../img/horse.svg), #F3F4F6;
    }
    .epoch_ul_sidebar::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: calc(100% + 4.6px);
    
        width: 100%;
        height: 41px;
    
        background: url(../img/icon_sidebar.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* background: no-repeat center url(../img/sidebar_crown.svg), #ffffff; */
    }
    .epoch_ul_sidebar_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .epoch_ul_sidebar_ul {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        text-decoration-line: underline;
        
        color: #000000;
    
        margin-top: 14px;
    }
    .epoch_ul_sidebar_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    .epoch_ul_sidebar_li a {
    text-decoration: underline;
    text-decoration-color: inherit;
    transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_sidebar_li a:hover {
    text-decoration-color: transparent;
    
    color: #2A6C96;
    }
    
    
    .sidebar_interesting_section_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    }
    
    .sidebar_capture_block {
        width: 100%;
        height: max-content;
        overflow: hidden;
    
        margin-top: 60px;
    }
    .sidebar_capture_block img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }



    .statya_header {
        /* H1 */
        
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .switch_version {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    
        margin-top: 10px;
    }
    .switch_version_single {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 31px;
        /* or 194% */
        
        text-align: center;
        height: max-content;
        
        /* Secondary */
        
        color: #0a3a52;
    
        padding: 9px 35px 9px;
        background: #C4CAD4;
    
        cursor: pointer;
    }
    .switch_version_single.active { 
        color: #ffffff;
    
        padding: 13px 35px 9px;
        background: #0a3a52;
    }
    
    
    
    
    .table_contents {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 34px 42px 6px;
        box-sizing: border-box;
    
        border-top: 6px solid #1e7b84;
        background: no-repeat right 23px bottom 30px url(../img/single_book.svg), #f3f4f6;
    
        margin-top: 40px;
    
        width: 100%;
    }
    .table_contents::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
    }
    .table_contents_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        color: #1e7b84;
    
    }
    .table_contents ol {
        counter-reset: li;
    }
    .table_contents_ol {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .table_contents_li {
        margin-bottom: 20px;
    }
    .table_contents_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .table_contents_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #c4cad4;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        /* height: 100%; */
    
        border-bottom: 2px solid #1e7b84;
    }
    .table_contents_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    .statya_subtitle_1 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin-top: 27px;
    }
    .statya_subtitle_1::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    .statya_text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-top: 30px;
    }
    .statya_text_link {
    
        color: #2a6c96;
        text-decoration: underline;
    }
    
    
    
    
    .statya_figure_1 {
        display: flex;
        flex-direction: column;
        border-top: 4px solid #0a3a52;
        width: 715px;
    
        margin: 30px auto 0;
        /* margin-top: 30px; */
    }
    .statya_figure_1_cont_img {
        width: 715px;
        height: 358px;
        padding: 2px 0 3px;
    }
    .statya_figure_1_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_figure_1_text {
        padding: 12px 38px;
        text-align: left;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        /* or 143% */
        
        
        /* White */
        
        color: #FFFFFF;
    
        background: #1e7b84;
    }
    
    
    
    .blockquote_style_1 {
        position: relative;
    
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    
        padding: 43px 46px 43px 105px;
        margin-bottom: 50px;
        margin-top: 48px;
    
        background: no-repeat left 31px top 46px url(../img/article_icon.svg), #0a3a52;
    
    }
    .blockquote_style_1::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
    }
    .blockquote_style_1::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -14px;
        left: 0;
    
        height: 14px;
        width: 14px;
    
        background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
    }
    
    
    
    .cont_statya_ol_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 35px 39px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ol_1 ol {   
        counter-reset: li;
    }
    .statya_ol_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ol_1 .statya_li {
        margin-bottom: 20px;
    }
    .statya_ol_1 .statya_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .statya_ol_1 .statya_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #0a3a52;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        border-bottom: 2px solid #1e7b84;
        color: #ffffff;
    }
    .statya_ol_1 .statya_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    
    
    
    .statya_read_also {
    
        padding: 24px 23px 27px 38px;
    
        border-left: 3px solid #c4cad4;
    
        background: #eef0f2;
    
        margin-top: 45px;
    }
    .statya_read_also_cont_img {
        position: relative;
        height: 136px;
        width: 215px;
    
        overflow: hidden;
    
        border-bottom: 4px solid #1e7b84;
        /* order: 2; */
        float: right;
        margin-left: 36px;
        /* margin-bottom: 20px; */
    }
    .statya_read_also_cont_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_read_also_cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 20px;
        width: 20px;
    
        background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
    }
    .statya_read_also_text_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .statya_read_also_text_p_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .statya_read_also_text_p_2 {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-top: 6px;
    }
    
    
    
    .cont_statya_ul_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 41px 62px 41px 90px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ul_1 ul {
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_ul_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ul_1 .statya_li {
        margin-bottom: 20px;
    }
    
    
    
    
    .statya_subtitle_2 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 45px;
    }
    .statya_subtitle_2::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    
    
    
    
    .blockquote_style_2 {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 30px 61px 18px 140px;
        background: no-repeat left 50px top 38px url(../img/feather_2.svg), #1e7b84;
    
        margin-top: 40px;
    }
    .blockquote_style_2::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -12px;
        left: 0;
    
        width: 100%;
        height: 20px;
    
        background: url(../img/img_border.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    
    .blockquote_style_2_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    }
    .blockquote_style_2_text {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    .statya_references_list {
        display: flex;
        flex-direction: column;
        padding: 35px 58px 45px;
        background: no-repeat right 38px top 42px url(../img/books.svg), #F3F4F6;
    
        margin-top: 32px;
    }
    .statya_references_list_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #0a3a52;
    }
    .statya_references_ul {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-left: 30px;
        margin-top: 11px;
        
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_references_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    
    
    
    
    
    
    
    
    
    
    .statya_media_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        margin-top: 77px;
    
        padding: 17px 72px 43px 62px;
    
        background: no-repeat right 84px bottom 28px url(../img/feather_3.svg), #0a3a52;
    }
    .statya_media_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -3px;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .cont_stastya_share {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    }
    .cont_stastya_share_content {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_top_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_social {
        display: flex;
        flex-direction: row;
    
        width: 400px;
    }
    .cont_social_icon {
        width: 70px;
        height: 70px;
    }
    .cont_social_icon:not(:last-of-type) {
        margin-right: 30px;
    }
    .cont_social_icon img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    .stastya_share_discuss {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;
    
        padding: 19px 21px 17px 21px;
    
        width: 235px;
        height: 64px;
    
        box-sizing: border-box;
    
        background: #1e7b84;
    
        transition: background .1s;
    }
    .stastya_share_discuss:hover {
        background: #d69240;
    }
    .stastya_share_discuss::before {
        content: '';
        display: block;
        position: absolute;
    
        left: 28px;
    
        width: 24px;
        height: 24px;
    
        background: url(../img/discuss_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_discuss::after {
        content: '';
        display: block;
        position: absolute;
    
        left: 0;
        top: 0;
    
        width: 15px;
        height: 15px;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
        
        transition: background .1s;
    }
    .stastya_share_discuss span {
        position: absolute;
    
        right: 21px;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-left: 21px;
    }
    
    .stastya_share_bottom_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_polezna {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    
        width: 400px;
    }
    .stastya_share_polezna_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-bottom: 5px;
    }
    .stastya_share_polezna_cont_da_net {
        display: flex;
        flex-direction: row;
    }
    .stastya_share_polezna_cont_da_net > * {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    
        height: 40px;
        width: 72px;
    
        cursor: pointer;
    
        transition: background .1s;
    }
    .stastya_share_polezna_cont_da_net > *:hover {
        background: #d69240;
    }
    .stastya_share_polezna_cont_da_net > *::before {
        content: '';
        display: block;
        position: absolute;
    
        width: 15px;
        height: 15px;
    
        transition: background .1s;
    }
    .stastya_share_polezna_da {
        margin-right: 17px;
    }
    .stastya_share_polezna_da::before {
        left: 0;
        top: 0;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    .stastya_share_polezna_net::before {
        right: 0;
        bottom: 0;
    
        background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    
    .stastya_share_raiting {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 235px;
    }
    .stastya_share_raiting_caption {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        /* Primary */
        
        color: #1e7b84;
    
        width: 100%;
    }
    .stastya_share_raiting_cont_button {
        display: flex;
        flex-direction: row;
    
        margin-left: 17px;
        margin-top: 3px;
    }
    .stastya_share_raiting_likes,
    .stastya_share_raiting_dislikes {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        border-radius: 50px;
    
        background: #1e7b84;
        cursor: pointer;
        transition: background .1s;
    
        width: 43px;
        height: 43px;
    
        padding-left: 7px;
        box-sizing: border-box;
    }
    .stastya_share_raiting_likes {
        margin-right: 61px;
    }
    .stastya_share_raiting_likes:hover,
    .stastya_share_raiting_dislikes:hover {
        background: #d69240;
    }
    .stastya_share_raiting_likes::before,
    .stastya_share_raiting_dislikes::before {
        content: '';
        display: block;
        position: absolute;
    
        left: -14px;
    
        width: 24px;
        height: 24px;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_raiting_likes::before {
        background: url(../img/like_icon.svg);
    }
    .stastya_share_raiting_dislikes::before {
        background: url(../img/dislike_icon.svg);
    }
    
    
    
    
    
    .cont_statya_author {
        position: relative;
        margin-top: 51px;
    }
    .cont_statya_author::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -10px;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_author_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_data {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .statya_author_cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
    
        height: 140px;
        width: 140px;
    
        border-radius: 50%;
    
        overflow: hidden;
    
        margin-right: 32px;
    }
    .statya_author_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_author_info {
        display: flex;
        flex-direction: column;
    }
    .statya_author_name {
        text-align: center;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 28px;
        line-height: 38px;
        
        color: #FFFFFF;
    
        margin-bottom: 2px;
    }
    .statya_author_proffession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_date_release,
    .statya_author_date_modified {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    
    
    .statya_page_cont_content 
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding: 0;
    }
    .statya_page_cont_content 
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .statya_page_cont_content 
    .interesting_section_caption::before {
        content: '';
        display: none;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .statya_page_cont_content 
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .statya_page_cont_content 
    .cont_interesting_section_single {
        margin-bottom: 45px;
    }
    .statya_page_cont_content 
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 300px;
    }
    .statya_page_cont_content 
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
      
        z-index: 1;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 170px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .statya_page_cont_content 
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .statya_page_cont_content 
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    /* COMMENTS */ 
    
    .statya_comments_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        margin-top: 57px;
        margin-bottom: 50px;
        padding: 34px 0 54px;
    
        box-sizing: border-box;
    }
    .statya_comments_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Secondary */
        
        color: #0a3a52;
    }
    .statya_comments_section_content {
        display: flex;
        flex-direction: column;
    
        width: 100%;
    }
    
    
    
    .cont_statya_comments_section_single {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    
        width: 100%;
    
        margin-top: 50px;
    }
    
    
    .statya_comments_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        padding: 16px 28px 16px 47px;
        box-sizing: border-box;
    
        background-color: #eef0f2;
    }
    .statya_comments_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 100%;
        left: 0;
    
        height: 28px;
        width: 32px;
    
        background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
    }
    .statya_comments_section_single_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .statya_comments_section_single_header_name {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_header_date {
        display: flex;
        align-items: center;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        
        color: #C4CAD4;
    }
    .statya_comments_section_single_body {
        position: relative;
    
        width: 100%;
        margin-top: 15px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_body::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -9px;
        left: 0;
    
        width: 100%;
        height: 1px;
    
        background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);
    
        color: #cdd2d9;
    }
    .statya_comments_section_single_footer {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 22px;
        /* or 183% */
        
        text-align: right;
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
    
        margin-top: 10px;
    
        transition: color .1s;
    }
    .statya_comments_section_single_footer:hover {
        color: #1e7b84;
    }
    
    
    .statya_comments_section_single_responce .statya_comments_section_single {
        background-color: #f8f8f9;
    }
    
    .statya_comments_section_single_responce .statya_comments_section_single::before {
        background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
    }
    .statya_comments_section_single_responce {
        width: calc(100% - 48px);
    }
    
    
    
    .statya_comments_section_add_comment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
        width: 100%;
        padding: 21px 35px 26px 48px;
    
        margin-top: 60px;
    
        box-sizing: border-box;
        
        background: #fafafb;
    }
    .statya_comments_section_add_comment_header {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 26px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-bottom: 25px;
    }
    
    .statya_comments_section_add_comment_name {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    
        margin-bottom: 30px;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    }
    .statya_comments_section_add_comment_name::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        height: 140px;
        margin-bottom: 30px;
        padding: 24px 20px;
        box-sizing: border-box;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    
        resize: none;
    }
    .statya_comments_section_add_comment_text::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_submit {
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        width: 235px;
        height: 64px;
        
        background: #1e7b84;
        border-radius: 4px;
    
        transition: background .1s;
    }
    .statya_comments_section_add_comment_submit:hover {
        background: #d69240;
    }
}











@media screen and (max-width: 768px) {

    .container_page {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .container_block {
        display: flex;
        justify-content: center;
        width: 100%;
    
        box-sizing: border-box;
    }
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ffffff;
        overflow: hidden;
    }
    /* .header_search_button {
        display: block;
        position: absolute;

        top: 28px;
        right: 62px;

        width: 24px;
        height: 24px;

        background: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    } */
    .header_menu_button {
        display: block;
        position: absolute;

        top: 24px;
        right: 36px;

        width: 50px;
        height: 50px;

        background: url(../img/menu_button.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }


    /*====================================
    ============SEARCH BLOCK==============
    =====================================*/
    .search_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        
        background: url(../img/bg_header_mobile.svg), #eef0f2;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: auto;
    
        height: 95.5px;
    
        padding: 20px 15px 11px;
        box-sizing: border-box;
    }
    .search_block_logo_section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    
        height: 100%;
        width: 235px;
    }
    .search_block_logo_section-container_logo {
        width: 100%;
        height: 37px;
    
        margin-bottom: 10.5px;
    }
    .search_block_logo_section-container_logo img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .search_block_logo_section-text {
        font-family: "Nunito-Regular";
        font-size: 17px;
        line-height: 17px;
        color: #1e7b84;
    
        margin-bottom: 0;
    }
    .search_block_search_section {
        display: block;
        position: absolute;

        top: 13px;
        right: 130px;

        height: 71px;
        width: 360px;
    
        border: 2px solid #cacbcb;
    border-radius: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .cont_search_block_search_section {
        width: 100%;
        height: 100%;
    
        position: relative;
        display: flex;
        align-items: center;
    }
    .search_block_search_section .search_line {
        position: relative;
    
        box-sizing: border-box;
        width: 100%;
        padding: 10px 50px 10px 55px;
    
        font-family: "Nunito-Regular";
        font-size: 20px;
        color: black;
    
        border: none;
        outline: none;
    
        background: none;
    }
    .search_block_search_section .search_img {
        position: absolute;
    
        height: 20px;
        width: 20px;
    
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        right: 21.5px;
        top: 29px;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    .header_navigation {
        display: none;
        justify-content: center;
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        background-color: #0a3a52;
        border-left: 6px solid #1e7b84;

        box-sizing: border-box;


        z-index: 10;
    }
    .header_navigation.active {
        display: flex;
        opacity: 1;
    }
    .header_navigation_cross {
        display: block;
        position: absolute;

        top: 16px;
        right: 16px;

        width: 32px;
        height: 32px;

        background: url(../img/white_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        z-index: 11;

        cursor: pointer;
    }
    .header_navigation .container_block {
        display: flex;
        justify-content: center;
        
    
        background-color: #0a3a52;
    
        height: unset;
        width: 100%;
    }
    .container_nav {
        width: 100%;
        height: unset;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }
    .container_nav_link {
        display: flex;
        position: relative;
    
        font-family: "Nunito-SemiBold";
        font-size: 20px;
        color: #ffffff;
    
        height: 139px;
        width: 100%;
    
        background: transparent;
    
        transition: background .1s;
    }
    .container_nav_link:hover {
        background: #1e7b84;
    }

    .container_nav_link a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    
        white-space: nowrap;
    
        padding: 0 132px;
    }
    .container_nav_link a::before {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 1;
        transition: opacity .1s;
    }
    .container_nav_link a::after {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 0;
        transition: opacity .1s;
    }


    .container_nav_link:nth-of-type(1) a::before {
        content: url(../img/icon_nav_1.svg);
    }
    .container_nav_link:nth-of-type(2) a::before {
        content: url(../img/icon_nav_2.svg);
    }
    .container_nav_link:nth-of-type(3) a::before {
        content: url(../img/icon_nav_3.svg);
    }
    .container_nav_link:nth-of-type(4) a::before {
        content: url(../img/icon_nav_4.svg);
    }
    .container_nav_link:nth-of-type(5) a::before {
        content: url(../img/icon_nav_5.svg);
    }
    .container_nav_link:nth-of-type(6) a::before {
        content: url(../img/icon_nav_6.svg);
    }
    
    
    .container_nav_link:nth-of-type(1) a::after {
        content: url(../img/icon_nav_1_transparent.svg);
    }
    .container_nav_link:nth-of-type(2) a::after {
        content: url(../img/icon_nav_2_transparent.svg);
    }
    .container_nav_link:nth-of-type(3) a::after {
        content: url(../img/icon_nav_3_transparent.svg);
    }
    .container_nav_link:nth-of-type(4) a::after {
        content: url(../img/icon_nav_4_transparent.svg);
    }
    .container_nav_link:nth-of-type(5) a::after {
        content: url(../img/icon_nav_5_transparent.svg);
    }
    .container_nav_link:nth-of-type(6) a::after {
        content: url(../img/icon_nav_6_transparent.svg);
    }



    


    .container_nav_link::after {
        content: '';
        display: block;
        position: absolute;

        bottom: -1px;
        left: 0;

        width: calc(100% - 104px);

        margin: 0 52px;

        box-sizing: border-box;

        height: 2px;

        background: repeat-x url(../img/nav_border.svg);
        z-index: 10000;
    }
    /* .container_nav_link a::after {
        content: '';
        display: block;
        position: absolute;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 10px;

        background-image: repeating-radial-gradient(90deg, black, black 10px, transparent 10px, transparent);
        

        z-index: 10000;
    } */
    
    
    
    
    
    
    
    
    /*====================================
    ==========NAVIGATION CHAIN============
    =====================================*/
    .navigation_chain {
        display: flex;
        flex-direction: row;
        justify-content: left;
        flex-wrap: wrap;
    
        padding-left: 15px;
        padding-right: 15px;
    
        margin-top: 17px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    }
    .navigation_chain_single {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    .navigation_chain_single:last-of-type {   
        color: #C4CAD4;
    }
    .navigation_chain_single:not(:last-of-type)::after {
        content: '';
        display: block;
    
        height: 100%;
        width: 7px;
    
        background:url(../img/navigation_chain_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        margin: 0 8px 0 8px;
    }
    
    
    
    
    
    
    
    /*====================================
    ================MAIN==================
    =====================================*/
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-image: url(../img/main_bg.svg);
        background-position: left top;
        background-repeat: repeat;
        background-size: auto;
        overflow: hidden;
    }
    .main .container_block {
        display: flex;
        flex-direction: column;
    
        background-color: #ffffff;
        box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
    }
    .main_header_section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 56px;
        padding-left: 36px;
        padding-right: 36px;
    }
    .main_header_section_container_img {
        position: relative;
    
        height: 424px;
        width: 100%;
        padding-top: 14px;
        margin-right: 20px;
    
        box-sizing: border-box;
        overflow: hidden;

        margin-bottom: 20px;
    }
    .main_header_section_container_img::before {
        content: '';
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
    
        left: 0;
        top: 0;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat;
        background-size: contain;
    }
    .main_header_section_container_img::after {
        content: '';
        display: block;
        position: absolute;
        height: 7px;
        width: 100%;
    
        left: 0;
        bottom: 0;
    
        background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
    }
    .main_header_section_container_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .main_header_section_container_text {
        position: relative;
        width: 100%;
    
        padding: 31px 49px 23px 44px;
        box-sizing: border-box;
    
        min-height: unset;
    
        background: #e8eaee;
    }
    .main_header_section_container_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .main_header_section_container_text-header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
    
        color: #0a3a52;
    
        padding-bottom: 10px;
    }
    .main_header_section_container_text-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 30px;
    
        text-align: left;
        
        color: #0a3a52;
    }
    
    
    
    
    
    
    .epoch_ul_section {
       display: flex; 
       flex-direction: column;
    
       padding-top: 51px;
       padding-left: 36px;
       padding-right: 36px;
    }
    .epoch_ul_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        padding: 0;
        margin: 0;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    }
    .epoch_ul_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .epoch_ul_section_container_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    
        margin-top: 20px;

        margin-bottom: -50px;
    }
    .epoch_ul_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        background-color: #f3f4f6;
    
        width: 340px;
    
        box-sizing: border-box;
        min-height: 503px;

        margin-bottom: 50px;
    }
    .epoch_ul_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .epoch_ul_section_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 6px;
    
        background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
    }
    .epoch_ul_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
    
        min-height: 69px;
        box-sizing: border-box;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
    
        padding: 19px 10px 14px 115px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    
        background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
    }
    .epoch_ul_section_single-caption::before {
        display: flex;
        position: absolute;
        left: 56px;
    
        padding-right: 8px;
    }
    .epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_1.svg);
    }
    .epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_2.svg);
    }
    .epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_3.svg);
    }
    .epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_4.svg);
    }
    .epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_5.svg);
    }
    .epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_6.svg);
    }
    .epoch_ul_section-ul {
    
        list-style: none;
        padding-left: 56px;
        padding-top: 11px;
    }
    .epoch_ul_section-li {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        
        color: #000000;
    
        margin-bottom: 15px;
    
        transition: color .1s, text-decoration .1s;
    }
    .epoch_ul_section-li a {
        text-decoration: underline;
        text-decoration-color: inherit;
        transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_section-li a:hover {
        text-decoration-color: transparent;
        
        color: #2A6C96;
    }
    
    
    
    
    
    
    
    
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding-left: 36px;
        padding-right: 36px;
    }
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .interesting_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 48%;
    }
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 186px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    .epoch_figures_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 96px;
    }
    .epoch_figures_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 37px 36px 9px;
    
        z-index: 2;
    }
    .epoch_figures_section_single:not(:nth-of-type(1)) {
        margin-top: 100px;
    }
    .epoch_figures_section_single:nth-of-type(odd) {
        background-color: #f9efe3;
    }
    .epoch_figures_section_single:nth-of-type(odd):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0px;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
    }
    .epoch_figures_section_single:nth-of-type(even) {
        background-color: #ebedf0;
    }
    .epoch_figures_section_single:nth-of-type(even):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
    }
    .epoch_figures_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    
        margin-bottom: 34px;
    
        padding-left: 100px;
    }
    .epoch_figures_section_single-caption::before {
        display: flex;
        position: absolute;
    
        left: 10px;
    
        padding-right: 10px;
    }
    .epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_1.svg);
    }
    .epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_2.svg);
    }
    .epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_3.svg);
    }
    .epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_4.svg);
    }
    .epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_5.svg);
    }
    .epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_6.svg);
    }
    .epoch_figures_section_single-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    }
    .cont_epoch_figures_section_single-content_single {
        position: relative;
        margin-bottom: 27px;

        width: 340px;
        min-height: 111px;
    }
    .cont_epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
        
        opacity: 1;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover::after {
        opacity: .7;
    }
    .epoch_figures_section_single-content_single {
        display: flex;
        flex-direction: row;
        position: relative;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single-content_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 35px;
        width: 35px;
    
        z-index: 1;
    }
    .epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 35px;
        width: 35px;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    
    
    
    .epoch_figures_section_single-content_single-cont_img {
        display: flex;
        position: relative;
    
        /* height: 100%; */
        width: unset;
        flex-basis: 140px;
    
        overflow: hidden;
    
        box-sizing: border-box;
    
        transition: border .1s;
    }
    .epoch_figures_section_single-content_single-cont_img::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 3px;
    
        background: #1e7b84;
    
        transition: height .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
        height: 9px;
    }
    .epoch_figures_section_single-content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #363636;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
        opacity: .3;
    }
    .epoch_figures_section_single-content_single-cont_img img {
    
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .epoch_figures_section_single-content_single-text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        /* White */
        
        color: #FFFFFF;
    
        padding: 14px 20px 9px;
    
        width: 100%;
    
        cursor: pointer;
    }
    .epoch_figures_section_single-content_single-text a {
        height: 100%;
        display: block;
    }
    
    
    
    
    
    
    
    
    .author_section {
        display: flex;
        flex-direction: column;
    
        margin: 74px 36px 115px;
        padding: 26px 26px 50px;
    
        background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
    }
    .author_section_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        position: relative;
    }
    .author_section_header::before {
        content: '';
        display: block;
        position: absolute;
    
        height: 3px;
        width: 100%;
    
        background-image: url(../img/dotted.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
        /* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
        background-size: 10px 10px;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .author_section_header-caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
    
        padding-left: 14px;
        padding-right: 38px;
        
        color: #0a3a52;
    
        background-color: #f3f4f6;
    }
    .author_section_header-caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100%);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .author_section_header-see_more {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        
        color: #2A6C96;
    
        padding-right: 16px;
        padding-left: 41px;
    
        background-color: #f3f4f6;
    
        cursor: pointer;
    
        transition: color .1s;
    }
    .author_section_header-see_more:hover {
        color: #1e7b84
    }
    .author_section_header-see_more::before {
        content: '';
        display: block;
        position: absolute;
    
        right: -14px;
    
        height: 24px;
        width: 24px;
    
        background: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        transition: background .1s;
    }
    .author_section_header-see_more:hover::before {
        background: url(../img/orange_arrow.svg);
    }
    
    .author_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    
        margin-top: 32px;
        margin-bottom: -40px;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 50%;

        margin-bottom: 40px;
    }
    .author_section_content_single-cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    
        height: 97px;
        width: 97px;
    
        border-radius: 50px;
    
        overflow: hidden;
    
        margin-right: 12px;
    }
    .author_section_content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #000000;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .author_section_content_single:hover .author_section_content_single-cont_img::before {
        opacity: .3;
    }
    .author_section_content_single-cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .author_section_content_single-author_data {
        display: flex;
        flex-direction: column;

        width: 100%;
    }
    .author_section_content_single-author_data-name {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    
        margin-bottom: 2px;
    
        transition: color .1s;
    }
    .author_section_content_single:hover .author_section_content_single-author_data-name {
        color: #1e7b84;
    }
    .author_section_content_single-author_data-profession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-bottom: 11px;
    }
    .author_section_content_single-author_data-author_articls {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
        /* identical to box height */
        
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
        transition: color .1s;
    }    
    .author_section_content_single-author_data-author_articls:hover {
        color: #1e7b84;
    }




    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
        background: #0a3a52;
    
        overflow: hidden;
    }
    .footer .container_block {
        display: flex;
        justify-content: center;
        position: relative;
    
    
        width: 390px;
    }

    .footer .container_block::after {
        content: '';
        display: none;
        position: absolute;
    
        top: 20px;
        height: 92px;
        width: 390px;
    
        background-color: #0a3a52;
    }
    .container_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 40px 5px 0;
    
        box-sizing: border-box;
    }
    .footer .container_block:before {
        content: '';
    }
    .footer_logo_block {
        display: flex;
        flex-direction: column;
        align-items: center;
		
        margin-right: 0;      

        z-index: 2;
		
		margin-bottom: 30px;
    }
    .footer_logo_block-container_logo {
        width: 238px;
        height: 36px;
    }
    .footer_logo_block-container_logo img {
        height: 100%;
        width: 100%;
        
        object-fit: contain;
    }
    .footer_logo_block-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 17px;
        
        color: #1e7b84;
    
		margin-top: 20px;
        margin-bottom: 0;
    }
    .footer_logo_block-text_2 {
		
        width: 100%;
        text-align: center;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 22px;
        
        color: #C4CAD4;
		
		margin-top: 5px;
    }
    .footer_link_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    
        position: relative;
    
        width: 100%;
    
        z-index: 1;

        margin-bottom: 40px;
    }
    .footer_link_block::before {
        content: '';
        display: none;
        position: absolute;
    
        bottom: -25px;
        left: calc(50% - 161px);
    
        width: 385px;
        height: 123px;
    
        background: url(../img/castle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .footer_link_block_left_links {
        text-align: center;
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 41px;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;

        margin-bottom: 15px;
    }
    .footer_link_block_left_links > * {
        transition: color .1s;
        margin-bottom: 10px;
    }
    .footer_link_block_left_links > *:hover {
        color: #1e7b84;
    }
    .footer_link_block_right_links {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
        
        text-align: right;
        text-decoration-line: underline;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_right_links > * {
        transition: color .1s;
    }
    .footer_link_block_right_links > *:hover {
        color: #1e7b84;
    }
    
    
    
    
    




    
    /*==============================
    ==========RUBRIC PAGE===========
    ===============================*/
    .rubric_section {
        display: flex;
        flex-direction: column;
    
        padding: 0 15px;
    }
    .rubric_name {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 64px;
        line-height: 87px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .rubric_text {
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        padding: 12px 0 12px 41px;
    
        /* border: 9px solid #000000;
        border-image: url(../img/vertical_orange_border.svg) 9 repeat repeat; */
    
        margin-top: 27px;
    }
    .rubric_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 9px;
    
     /*    background-image: url(../img/vertical_orange_border.svg);
        background-position: top;
        background-repeat: repeat-y;
        background-size: contain;*/
    }
    
    
    
    
    
    
    
    /*==============================
    =============TABLE==============
    ===============================*/
    .table_1 {
        margin-top: 37px;
    }
    .table_1 table {
        width: 100%;
        max-width: 100%;
    }
    .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px 40px 10px 20px;
        border: 2px solid #ffffff;
    
        text-align: left;
        
        white-space: nowrap;
    }
    .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        padding: 10px 20px;
        border: 2px solid #ffffff;
    
        vertical-align: middle;
    }
    .table_1 table tr {
    
        background-color: #dcdfe5;
    }
    .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .last_section {
        margin-bottom: 72px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*==============================
    ==========STATYA PAGE===========
    ===============================*/
    
    .statya_page_cont_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        padding: 0 36px;
        box-sizing: border-box;
    
        width: 100%;
    }
    
    
    
    
    .statya_block {
        margin-right: 0;
        width: 100%;
        flex-basis: unset;

        flex-shrink: unset;
    }
    
    
    
    .sidebar_block {
        display: none;
        width: unset;
        flex-basis: 295px;
    
        margin-top: 125px;
    }
    .epoch_ul_sidebar {
       display: flex; 
       flex-direction: column;
       align-items: center;
       position: relative;
    
       padding: 23px 33px 68px 32px;
    
       background: no-repeat right 12px bottom 14px url(../img/horse.svg), #F3F4F6;
    }
    .epoch_ul_sidebar::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: calc(100% + 4.6px);
    
        width: 100%;
        height: 41px;
    
        background: url(../img/icon_sidebar.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* background: no-repeat center url(../img/sidebar_crown.svg), #ffffff; */
    }
    .epoch_ul_sidebar_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .epoch_ul_sidebar_ul {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        text-decoration-line: underline;
        
        color: #000000;
    
        margin-top: 14px;
    }
    .epoch_ul_sidebar_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    .epoch_ul_sidebar_li a {
    text-decoration: underline;
    text-decoration-color: inherit;
    transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_sidebar_li a:hover {
    text-decoration-color: transparent;
    
    color: #2A6C96;
    }
    
    
    .sidebar_interesting_section_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    }
    
    .sidebar_capture_block {
        width: 100%;
        height: max-content;
        overflow: hidden;
    
        margin-top: 60px;
    }
    .sidebar_capture_block img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }



    .statya_header {
        /* H1 */
        
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 50px;
        line-height: 70px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .switch_version {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    
        margin-top: 10px;
    }
    .switch_version_single {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 31px;
        /* or 194% */
        
        text-align: center;
        height: max-content;
        
        /* Secondary */
        
        color: #0a3a52;
    
        padding: 9px 35px 9px;
        background: #C4CAD4;
    
        cursor: pointer;
    }
    .switch_version_single.active { 
        color: #ffffff;
    
        padding: 13px 35px 9px;
        background: #0a3a52;
    }
    
    
    
    
    .table_contents {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 34px 42px 6px;
        box-sizing: border-box;
    
        border-top: 6px solid #1e7b84;
        background: no-repeat right 23px bottom 30px url(../img/single_book.svg), #f3f4f6;
    
        margin-top: 40px;
    
        width: 100%;
    }
    .table_contents::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
    }
    .table_contents_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        color: #1e7b84;
    
    }
    .table_contents ol {
        counter-reset: li;
    }
    .table_contents_ol {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .table_contents_li {
        margin-bottom: 20px;
    }
    .table_contents_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .table_contents_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #c4cad4;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        /* height: 100%; */
    
        border-bottom: 2px solid #1e7b84;
    }
    .table_contents_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    .statya_subtitle_1 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin-top: 27px;
    }
    .statya_subtitle_1::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    .statya_text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-top: 30px;
    }
    .statya_text_link {
    
        color: #2a6c96;
        text-decoration: underline;
    }
    
    
    
    
    .statya_figure_1 {
        display: flex;
        flex-direction: column;
        border-top: 4px solid #0a3a52;
        width: 715px;
    
        margin: 30px auto 0;
        /* margin-top: 30px; */
    }
    .statya_figure_1_cont_img {
        width: 715px;
        height: 358px;
        padding: 2px 0 3px;
    }
    .statya_figure_1_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_figure_1_text {
        padding: 12px 38px;
        text-align: left;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        /* or 143% */
        
        
        /* White */
        
        color: #FFFFFF;
    
        background: #1e7b84;
    }
    
    
    
    .blockquote_style_1 {
        position: relative;
    
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    
        padding: 43px 46px 43px 105px;
        margin-bottom: 50px;
        margin-top: 48px;
    
        background: no-repeat left 31px top 46px url(../img/article_icon.svg), #0a3a52;
    
    }
    .blockquote_style_1::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
    }
    .blockquote_style_1::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -14px;
        left: 0;
    
        height: 14px;
        width: 14px;
    
        background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
    }
    
    
    
    .cont_statya_ol_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 35px 39px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ol_1 ol {   
        counter-reset: li;
    }
    .statya_ol_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ol_1 .statya_li {
        margin-bottom: 20px;
    }
    .statya_ol_1 .statya_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .statya_ol_1 .statya_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #0a3a52;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        border-bottom: 2px solid #1e7b84;
        color: #ffffff;
    }
    .statya_ol_1 .statya_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    
    
    
    .statya_read_also {
    
        padding: 24px 23px 27px 38px;
    
        border-left: 3px solid #c4cad4;
    
        background: #eef0f2;
    
        margin-top: 45px;
    }
    .statya_read_also_cont_img {
        position: relative;
        height: 136px;
        width: 215px;
    
        overflow: hidden;
    
        border-bottom: 4px solid #1e7b84;
        /* order: 2; */
        float: right;
        margin-left: 36px;
        /* margin-bottom: 20px; */
    }
    .statya_read_also_cont_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_read_also_cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 20px;
        width: 20px;
    
        background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
    }
    .statya_read_also_text_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .statya_read_also_text_p_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .statya_read_also_text_p_2 {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-top: 6px;
    }
    
    
    
    .cont_statya_ul_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 41px 62px 41px 90px;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ul_1 ul {
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_ul_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ul_1 .statya_li {
        margin-bottom: 20px;
    }
    
    
    
    
    .statya_subtitle_2 {
        display: flex;
        align-items: center;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 42px;
        line-height: 57px;
        
        /* Secondary */
        
        color: #0a3a52;
    
        margin-top: 45px;
    }
    .statya_subtitle_2::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    
    
    
    
    .blockquote_style_2 {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 30px 61px 18px 140px;
        background: no-repeat left 50px top 38px url(../img/feather_2.svg), #1e7b84;
    
        margin-top: 40px;
    }
    .blockquote_style_2::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -12px;
        left: 0;
    
        width: 100%;
        height: 20px;
    
        background: url(../img/img_border.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    
    .blockquote_style_2_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    }
    .blockquote_style_2_text {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 16px;
        line-height: 30px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    .statya_references_list {
        display: flex;
        flex-direction: column;
        padding: 35px 58px 45px;
        background: no-repeat right 38px top 42px url(../img/books.svg), #F3F4F6;
    
        margin-top: 32px;
    }
    .statya_references_list_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #0a3a52;
    }
    .statya_references_ul {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-left: 30px;
        margin-top: 11px;
        
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_references_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    
    
    
    
    
    
    
    
    
    
    .statya_media_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        margin-top: 77px;
    
        padding: 17px 40px 43px 40px;
    
        background: no-repeat right 84px bottom 28px url(../img/feather_3.svg), #0a3a52;
    }
    .statya_media_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -3px;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .cont_stastya_share {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    }
    .cont_stastya_share_content {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_top_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_social {
        display: flex;
        flex-direction: row;
    
        width: unset;

        margin-right: 40px;
    }
    .cont_social_icon {
        width: 70px;
        height: 70px;
    }
    .cont_social_icon:not(:last-of-type) {
        margin-right: 10px;
    }
    .cont_social_icon img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    .stastya_share_discuss {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;
    
        padding: 19px 21px 17px 21px;
    
        width: 235px;
        height: 64px;
    
        box-sizing: border-box;
    
        background: #1e7b84;
    
        transition: background .1s;
    }
    .stastya_share_discuss:hover {
        background: #d69240;
    }
    .stastya_share_discuss::before {
        content: '';
        display: block;
        position: absolute;
    
        left: 28px;
    
        width: 24px;
        height: 24px;
    
        background: url(../img/discuss_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_discuss::after {
        content: '';
        display: block;
        position: absolute;
    
        left: 0;
        top: 0;
    
        width: 15px;
        height: 15px;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
        
        transition: background .1s;
    }
    .stastya_share_discuss span {
        position: absolute;
    
        right: 21px;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-left: 21px;
    }
    
    .stastya_share_bottom_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 26px;
    }
    .stastya_share_polezna {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    
        width: 350px;

        /* margin-right: 40px; */
    }
    .stastya_share_polezna_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-bottom: 5px;
    }
    .stastya_share_polezna_cont_da_net {
        display: flex;
        flex-direction: row;
    }
    .stastya_share_polezna_cont_da_net > * {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    
        height: 40px;
        width: 72px;
    
        cursor: pointer;
    
        transition: background .1s;
    }
    .stastya_share_polezna_cont_da_net > *:hover {
        background: #d69240;
    }
    .stastya_share_polezna_cont_da_net > *::before {
        content: '';
        display: block;
        position: absolute;
    
        width: 15px;
        height: 15px;
    
        transition: background .1s;
    }
    .stastya_share_polezna_da {
        margin-right: 17px;
    }
    .stastya_share_polezna_da::before {
        left: 0;
        top: 0;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    .stastya_share_polezna_net::before {
        right: 0;
        bottom: 0;
    
        background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    
    .stastya_share_raiting {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 235px;
    }
    .stastya_share_raiting_caption {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        /* Primary */
        
        color: #1e7b84;
    
        width: 100%;
    }
    .stastya_share_raiting_cont_button {
        display: flex;
        flex-direction: row;
    
        margin-left: 17px;
        margin-top: 3px;
    }
    .stastya_share_raiting_likes,
    .stastya_share_raiting_dislikes {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        border-radius: 50px;
    
        background: #1e7b84;
        cursor: pointer;
        transition: background .1s;
    
        width: 43px;
        height: 43px;
    
        padding-left: 7px;
        box-sizing: border-box;
    }
    .stastya_share_raiting_likes {
        margin-right: 61px;
    }
    .stastya_share_raiting_likes:hover,
    .stastya_share_raiting_dislikes:hover {
        background: #d69240;
    }
    .stastya_share_raiting_likes::before,
    .stastya_share_raiting_dislikes::before {
        content: '';
        display: block;
        position: absolute;
    
        left: -14px;
    
        width: 24px;
        height: 24px;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_raiting_likes::before {
        background: url(../img/like_icon.svg);
    }
    .stastya_share_raiting_dislikes::before {
        background: url(../img/dislike_icon.svg);
    }
    
    
    
    
    
    .cont_statya_author {
        position: relative;
        margin-top: 51px;
    }
    .cont_statya_author::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -10px;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_author_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_data {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .statya_author_cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
    
        height: 140px;
        width: 140px;
    
        border-radius: 50%;
    
        overflow: hidden;
    
        margin-right: 32px;
    }
    .statya_author_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_author_info {
        display: flex;
        flex-direction: column;
    }
    .statya_author_name {
        text-align: center;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 28px;
        line-height: 38px;
        
        color: #FFFFFF;
    
        margin-bottom: 2px;
    }
    .statya_author_proffession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_date_release,
    .statya_author_date_modified {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    
    
    .statya_page_cont_content 
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
    
        padding: 0;
    }
    .statya_page_cont_content 
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 52px;
        line-height: 71px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .statya_page_cont_content 
    .interesting_section_caption::before {
        content: '';
        display: none;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .statya_page_cont_content 
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -45px;
    }
    .statya_page_cont_content 
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 48%;
    }
    .statya_page_cont_content 
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .statya_page_cont_content 
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 190px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_page_cont_content 
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .statya_page_cont_content 
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .statya_page_cont_content 
    .interesting_section_single:hover 
    .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .statya_page_cont_content 
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    /* COMMENTS */ 
    
    .statya_comments_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        margin-top: 57px;
        margin-bottom: 50px;
        padding: 34px 0 54px;
    
        box-sizing: border-box;
    }
    .statya_comments_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Secondary */
        
        color: #0a3a52;
    }
    .statya_comments_section_content {
        display: flex;
        flex-direction: column;
    
        width: 100%;
    }
    
    
    
    .cont_statya_comments_section_single {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    
        width: 100%;
    
        margin-top: 50px;
    }
    
    
    .statya_comments_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        padding: 16px 28px 16px 47px;
        box-sizing: border-box;
    
        background-color: #eef0f2;
    }
    .statya_comments_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 100%;
        left: 0;
    
        height: 28px;
        width: 32px;
    
        background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
    }
    .statya_comments_section_single_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .statya_comments_section_single_header_name {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_header_date {
        display: flex;
        align-items: center;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        
        color: #C4CAD4;
    }
    .statya_comments_section_single_body {
        position: relative;
    
        width: 100%;
        margin-top: 15px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_body::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -9px;
        left: 0;
    
        width: 100%;
        height: 1px;
    
        background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);
    
        color: #cdd2d9;
    }
    .statya_comments_section_single_footer {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 22px;
        /* or 183% */
        
        text-align: right;
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
    
        margin-top: 10px;
    
        transition: color .1s;
    }
    .statya_comments_section_single_footer:hover {
        color: #1e7b84;
    }
    
    
    .statya_comments_section_single_responce .statya_comments_section_single {
        background-color: #f8f8f9;
    }
    
    .statya_comments_section_single_responce .statya_comments_section_single::before {
        background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
    }
    .statya_comments_section_single_responce {
        width: calc(100% - 48px);
    }
    
    
    
    .statya_comments_section_add_comment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
        width: 100%;
        padding: 21px 35px 26px 48px;
    
        margin-top: 60px;
    
        box-sizing: border-box;
        
        background: #fafafb;
    }
    .statya_comments_section_add_comment_header {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 26px;
        line-height: 35px;
        
        color: #0a3a52;
    
        margin-bottom: 25px;
    }
    
    .statya_comments_section_add_comment_name {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    
        margin-bottom: 30px;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    }
    .statya_comments_section_add_comment_name::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        height: 140px;
        margin-bottom: 30px;
        padding: 24px 20px;
        box-sizing: border-box;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    
        resize: none;
    }
    .statya_comments_section_add_comment_text::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_submit {
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        width: 235px;
        height: 64px;
        
        background: #1e7b84;
        border-radius: 4px;
    
        transition: background .1s;
    }
    .statya_comments_section_add_comment_submit:hover {
        background: #d69240;
    }
	.statya_block img {
		max-width: 100%;
		height: auto;
		object-fit: cover;
	}
	.container_nav li a {
		padding: 0 20px;
    	box-sizing: border-box;
	}
	.container_nav li:after {
		content: '';
		display: block;
		position: absolute;
		bottom: -1px;
		left: 0;
		width: calc(100% - 40px);
		margin: 0 20px;
		box-sizing: border-box;
		height: 2px;
		background: repeat-x url(//rusistori.ru/wp-content/themes/rusistori-1/css/../img/nav_border.svg);
		z-index: 10000;
	}
	.menu-image-hover-wrapper {
		position: absolute;
    	left: 20px;
	}
	
}











@media screen and (max-width: 425px) {
	
	.alignright, .alignleft, .aligncenter {
		display: block;
    	float: none !important;
		margin: 20px auto !important;
	}
	
	.statya_page_cont_content .cont_interesting_section_single {
		width: 100% !important;
	}
	
	.statya_block ol {
    	padding: 20px 15px 20px 20px !important;
	}
	
	.statya_block ul {
    	padding: 20px 15px 20px 40px;
	}
	
	.statya_block ol li:not(.kamatoc__top) {		
    	font-size: 16px;
	}
	
	.statya_block ul li:not(.kamatoc__top) {		
    	font-size: 16px;
	}
	
    .container_block {
        display: flex;
        justify-content: center;
        width: 100%;
    
        box-sizing: border-box;
    }
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100%;
        background-color: #ffffff;

        overflow: visible;
    }
    .header_search_button {
        display: block;
        position: absolute;

        top: 28px;
        right: 62px;

        width: 24px;
        height: 24px;

        background: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }
    .header_menu_button {
        display: block;
        position: absolute;

        top: 28px;
        right: 25px;

        width: 28px;
        height: 28px;

        background: url(../img/menu_button.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }


    /*====================================
    ============SEARCH BLOCK==============
    =====================================*/
    .search_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: unset;
        
        background: url(../img/bg_header_mobile.svg), #eef0f2;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: auto;
    
        height: 95.5px;
    
        padding: 20px 15px 11px;
        box-sizing: border-box;
    }
    .search_block_logo_section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    
        height: 100%;
        width: 235px;
    }
    .search_block_logo_section-container_logo {
        width: 100%;
        height: 37px;
    
        margin-bottom: 10.5px;
    }
    .search_block_logo_section-container_logo img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .search_block_logo_section-text {
        font-family: "Nunito-Regular";
        font-size: 17px;
        line-height: 17px;
        color: #1e7b84;
    
        margin-bottom: 0;
    }
    .search_block_search_section {
        display: none;
        position: absolute;

        top: 13px;
        left: unset;
        right: unset;

        height: 71px;
        width: calc(100% - 30px);
    
        border: 2px solid #cacbcb;
    border-radius: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        opacity: 0;

        z-index: 10;

        transition: opacity .1s;
    }
    .search_block_search_section.active {
        display: block;
        opacity: 1;
    }
    .cont_search_block_search_section {
        width: 100%;
        height: 100%;
    
        position: relative;
        display: flex;
        align-items: center;
    }
    .search_block_search_section .search_line {
        position: relative;
    
        box-sizing: border-box;
        width: 100%;
        padding: 10px 50px 10px 55px;
    
        font-family: "Nunito-Regular";
        font-size: 20px;
        color: black;
    
        border: none;
        outline: none;
    
        background: none;
    }
    .search_block_search_section .search_img {
        position: absolute;
    
        height: 20px;
        width: 20px;
    
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        right: 21.5px;
        top: 29px;
    
        cursor: pointer;
    }
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    .header_navigation {
        display: none;
        justify-content: center;
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        background-color: #0a3a52;
        border-left: 6px solid #1e7b84;

        box-sizing: border-box;


        z-index: 10;
    }
    .header_navigation.active {
        display: flex;
        opacity: 1;
    }
    .header_navigation_cross {
        display: block;
        position: absolute;

        top: 16px;
        right: 16px;

        width: 32px;
        height: 32px;

        background: url(../img/white_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        z-index: 11;

        cursor: pointer;
    }
    .header_navigation .container_block {
        display: flex;
        justify-content: center;
        
    
        background-color: #0a3a52;
    
        height: unset;
        width: 100%;
    }
    .container_nav {
        width: 100%;
        height: unset;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }
    .container_nav_link {
        display: flex;
        position: relative;
    
        font-family: "Nunito-SemiBold";
        font-size: 20px;
        color: #ffffff;
    
        height: 139px;
        width: 100%;
    
        background: transparent;
    
        transition: background .1s;
    }
    .container_nav_link:hover {
        background: #1e7b84;
    }

    .container_nav_link a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    
        white-space: nowrap;
    
        padding: 0 132px;
    }
    .container_nav_link a::before {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 1;
        transition: opacity .1s;
    }
    .container_nav_link a::after {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 0;
        transition: opacity .1s;
    }


    .container_nav_link:nth-of-type(1) a::before {
        content: url(../img/icon_nav_1.svg);
    }
    .container_nav_link:nth-of-type(2) a::before {
        content: url(../img/icon_nav_2.svg);
    }
    .container_nav_link:nth-of-type(3) a::before {
        content: url(../img/icon_nav_3.svg);
    }
    .container_nav_link:nth-of-type(4) a::before {
        content: url(../img/icon_nav_4.svg);
    }
    .container_nav_link:nth-of-type(5) a::before {
        content: url(../img/icon_nav_5.svg);
    }
    .container_nav_link:nth-of-type(6) a::before {
        content: url(../img/icon_nav_6.svg);
    }
    
    
    .container_nav_link:nth-of-type(1) a::after {
        content: url(../img/icon_nav_1_transparent.svg);
    }
    .container_nav_link:nth-of-type(2) a::after {
        content: url(../img/icon_nav_2_transparent.svg);
    }
    .container_nav_link:nth-of-type(3) a::after {
        content: url(../img/icon_nav_3_transparent.svg);
    }
    .container_nav_link:nth-of-type(4) a::after {
        content: url(../img/icon_nav_4_transparent.svg);
    }
    .container_nav_link:nth-of-type(5) a::after {
        content: url(../img/icon_nav_5_transparent.svg);
    }
    .container_nav_link:nth-of-type(6) a::after {
        content: url(../img/icon_nav_6_transparent.svg);
    }



    


    .container_nav_link::after {
        content: '';
        display: block;
        position: absolute;

        bottom: -1px;
        left: 0;

        width: calc(100% - 104px);

        margin: 0 52px;

        box-sizing: border-box;

        height: 2px;

        background: repeat-x url(../img/nav_border.svg);
        z-index: 10000;
    }
    /* .container_nav_link a::after {
        content: '';
        display: block;
        position: absolute;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 10px;

        background-image: repeating-radial-gradient(90deg, black, black 10px, transparent 10px, transparent);
        

        z-index: 10000;
    } */
    
    
    
    
    
    
    
    
    /*====================================
    ==========NAVIGATION CHAIN============
    =====================================*/
    .navigation_chain {
        display: flex;
        flex-direction: row;
        justify-content: left;
        flex-wrap: wrap;
    
        padding-left: 15px;
        padding-right: 15px;
    
        margin-top: 15.5px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    }
    .navigation_chain_single {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    .navigation_chain_single:last-of-type {   
        color: #C4CAD4;
    }
    .navigation_chain_single:not(:last-of-type)::after {
        content: '';
        display: block;
    
        height: 100%;
        width: 7px;
    
        background:url(../img/navigation_chain_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        margin: 0 8px 0 8px;
    }
    
    
    
    
    
    
    
    /*====================================
    ================MAIN==================
    =====================================*/
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-image: none !important;
        background-position: left top;
        background-repeat: repeat;
        background-size: auto;
        overflow: hidden;
    }
    .main .container_block {
        display: flex;
        flex-direction: column;
    
        background-color: #ffffff;
        box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
    }
    .main_header_section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 20px;

        padding-left: 15px;
        padding-right: 15px;
    }
    .main_header_section_container_img {
        position: relative;
    
        height: 250px;
        width: 100%;
        padding-top: 14px;
        margin-right: 20px;
    
        box-sizing: border-box;
        overflow: hidden;

        margin-bottom: 20px;
    }
    .main_header_section_container_img::before {
        content: '';
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
    
        left: 0;
        top: 0;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat;
        background-size: contain;
    }
    .main_header_section_container_img::after {
        content: '';
        display: block;
        position: absolute;
        height: 7px;
        width: 100%;
    
        left: 0;
        bottom: 0;
    
        background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
    }
    .main_header_section_container_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .main_header_section_container_text {
        position: relative;
        width: 100%;
    
        padding: 31px 49px 23px 44px;
        box-sizing: border-box;
    
        min-height: unset;
    
        background: #e8eaee;
    }
    .main_header_section_container_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .main_header_section_container_text-header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        
        text-transform: uppercase;
    
        color: #0a3a52;
    
        padding-bottom: 10px;
    }
    .main_header_section_container_text-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 30px;
    
        text-align: left;
        
        color: #0a3a52;
    }
    
    
    
    
    
    
    .epoch_ul_section {
       display: flex; 
       flex-direction: column;
    
       padding-top: 51px;
        
       padding-left: 0;
       padding-right: 0;
    }
    .epoch_ul_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        padding: 0;
        margin: 0;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 58px;
        line-height: 69px;
        
        color: #0a3a52;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .epoch_ul_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .epoch_ul_section_container_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    
        margin-top: 20px;

        margin-bottom: -50px;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .epoch_ul_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        background-color: #f3f4f6;
    
        width: 100%;
    
        box-sizing: border-box;
        min-height: 503px;

        margin-bottom: 50px;
    }
    .epoch_ul_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .epoch_ul_section_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 6px;
    
        background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
    }
    .epoch_ul_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
    
        min-height: 69px;
        box-sizing: border-box;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 17px;
        line-height: 24px;
    
        padding: 19px 10px 14px 95px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    
        background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
    }
    .epoch_ul_section_single-caption::before {
        display: flex;
        position: absolute;
        left: 40px;
    
        padding-right: 8px;
    }
    .epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_1.svg);
    }
    .epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_2.svg);
    }
    .epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_3.svg);
    }
    .epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_4.svg);
    }
    .epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_5.svg);
    }
    .epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_6.svg);
    }
    .epoch_ul_section-ul {
    
        list-style: none;
        padding-left: 40px;
        padding-top: 11px;
    }
    .epoch_ul_section-li {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        
        color: #000000;
    
        margin-bottom: 15px;
    
        transition: color .1s, text-decoration .1s;
    }
    .epoch_ul_section-li a {
        text-decoration: underline;
        text-decoration-color: inherit;
        transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_section-li a:hover {
        text-decoration-color: transparent;
        
        color: #2A6C96;
    }
    
    
    
    
    
    
    
    
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
        
        padding-left: 0;
        padding-right: 0;
    }
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 35px;
        line-height: 49px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .interesting_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: -45px;
    }
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 100%;
    }
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
      
        z-index: 1;
    }
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 186px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 9px 18px 14px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    .epoch_figures_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 96px;
    }
    .epoch_figures_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 37px 15px 9px;
    
        z-index: 2;
    }
    .epoch_figures_section_single:not(:nth-of-type(1)) {
        margin-top: 100px;
    }
    .epoch_figures_section_single:nth-of-type(odd) {
        background-color: #f9efe3;
    }
    .epoch_figures_section_single:nth-of-type(odd):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0px;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
    }
    .epoch_figures_section_single:nth-of-type(even) {
        background-color: #ebedf0;
    }
    .epoch_figures_section_single:nth-of-type(even):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
    }
    .epoch_figures_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 24px;
        line-height: 37px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    
        margin-bottom: 34px;
    
        padding-left: 75px;
    }
    .epoch_figures_section_single-caption::before {
        display: flex;
        position: absolute;
    
        left: 0;
    
        padding-right: 10px;

        transform: scale(.7);
    }
    .epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_1.svg);
    }
    .epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_2.svg);
    }
    .epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_3.svg);
    }
    .epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_4.svg);
    }
    .epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_5.svg);
    }
    .epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_6.svg);
    }
    .epoch_figures_section_single-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    }
    .cont_epoch_figures_section_single-content_single {
        position: relative;
        margin-bottom: 27px;

        width: 100%;
        min-height: 111px;
    }
    .cont_epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
        
        opacity: 1;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover::after {
        opacity: .7;
    }
    .epoch_figures_section_single-content_single {
        display: flex;
        flex-direction: row;
        position: relative;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single-content_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 25px;
        width: 25px;
    
        z-index: 1;
    }
    .epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 25px;
        width: 25px;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    
    
    
    .epoch_figures_section_single-content_single-cont_img {
        display: flex;
        position: relative;
    
        /* height: 100%; */
        width: unset;
        flex-basis: 140px;
    
        overflow: hidden;
    
        box-sizing: border-box;
    
        transition: border .1s;
    }
    .epoch_figures_section_single-content_single-cont_img::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 3px;
    
        background: #1e7b84;
    
        transition: height .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
        height: 9px;
    }
    .epoch_figures_section_single-content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #363636;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
        opacity: .3;
    }
    .epoch_figures_section_single-content_single-cont_img img {
    
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .epoch_figures_section_single-content_single-text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        /* White */
        
        color: #FFFFFF;
    
        padding: 14px 23px 9px 9px;
    
        width: 100%;
    
        cursor: pointer;
    }
    .epoch_figures_section_single-content_single-text a {
        height: 100%;
        display: block;
    }
    
    
    
    
    
    
    
    
    .author_section {
        display: flex;
        flex-direction: column;
    
        margin: 74px 0 115px;
        padding: 26px 15px 50px;
    
        background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
    }
    .author_section_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        position: relative;
    }
    .author_section_header::before {
        content: '';
        display: block;
        position: absolute;
    
        height: 3px;
        width: 100%;
    
        background-image: url(../img/dotted.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
        /* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
        background-size: 10px 10px;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .author_section_header-caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
    
        padding-left: 14px;
        padding-right: 38px;
        
        color: #0a3a52;
    
        background-color: #f3f4f6;
    }
    .author_section_header-caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100%);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .author_section_header-see_more {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        
        color: #2A6C96;
    
        padding-right: 16px;
        padding-left: 41px;
    
        background-color: #f3f4f6;
    
        cursor: pointer;
    
        transition: color .1s;
    }
    .author_section_header-see_more:hover {
        color: #1e7b84
    }
    .author_section_header-see_more::before {
        content: '';
        display: block;
        position: absolute;
    
        right: -14px;
    
        height: 24px;
        width: 24px;
    
        background: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        transition: background .1s;
    }
    .author_section_header-see_more:hover::before {
        background: url(../img/orange_arrow.svg);
    }
    
    .author_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    
        margin-top: 32px;
        margin-bottom: -40px;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 100%;

        margin-bottom: 40px;
    }
    .author_section_content_single-cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    
        height: 97px;
        width: 97px;
    
        border-radius: 50px;
    
        overflow: hidden;
    
        margin-right: 12px;
    }
    .author_section_content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #000000;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .author_section_content_single:hover .author_section_content_single-cont_img::before {
        opacity: .3;
    }
    .author_section_content_single-cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .author_section_content_single-author_data {
        display: flex;
        flex-direction: column;

        width: 100%;
    }
    .author_section_content_single-author_data-name {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    
        margin-bottom: 2px;
    
        transition: color .1s;
    }
    .author_section_content_single:hover .author_section_content_single-author_data-name {
        color: #1e7b84;
    }
    .author_section_content_single-author_data-profession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-bottom: 11px;
    }
    .author_section_content_single-author_data-author_articls {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
        /* identical to box height */
        
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
        transition: color .1s;
    }    
    .author_section_content_single-author_data-author_articls:hover {
        color: #1e7b84;
    }





    




    /*==========================================
    =================STATYA_PAGE================
    ============================================*/


    .statya_page_cont_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        padding: 0;
        box-sizing: border-box;
    
        width: 100%;
    }
    
    .statya_block {
        margin-right: 0;
        width: 100%;
    }
    .statya_header {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 36px;
        line-height: 49px;
        
        color: #0a3a52;
    
        margin-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .switch_version {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    
        margin-top: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .switch_version_single {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 35px;
        /* or 250% */
        
        text-align: center;
        
        text-align: center;
        height: max-content;
        
        /* Secondary */
        
        color: #0a3a52;
    
        padding: 5px 0;

        width: 50%;
        background: #C4CAD4;
    
        cursor: pointer;
    }
    .switch_version_single.active { 
        color: #ffffff;
    
        padding: 9px 0;
        background: #0a3a52;
    }
    
    
    
    
    .table_contents {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 34px 15px 17px;
        box-sizing: border-box;
    
        border-top: 6px solid #1e7b84;
        background: #f3f4f6;
    
        margin-top: 25px;
    
        width: 100%;
    }
    .table_contents::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
    }
    .table_contents_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        color: #1e7b84;
    
    }
    .table_contents ol {
        counter-reset: li;
    }
    .table_contents_ol {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .table_contents_li {
        margin-bottom: 20px;
    }
    .table_contents_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .table_contents_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #c4cad4;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        /* height: 100%; */
    
        border-bottom: 2px solid #1e7b84;
    }
    .table_contents_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    .statya_block h2 {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 28px;
        line-height: 38px;
        
        color: #0a3a52;
    
        margin-top: 49px;

        padding-left: 15px;
        padding-right: 15px;

        box-sizing: border-box;

        width: 100%;
    }
    .statya_block h2::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0px;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    .statya_block p {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 30px;
        
        color: #0a3a52;
    
        margin-top: 20px;
        
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;

        width: 100%;
    }
    .statya_block a {
    
        color: #2a6c96;
        text-decoration: underline;
    }
    
    
    
    
    .statya_figure_1 {
        display: flex;
        flex-direction: column;
        border-top: 4px solid #0a3a52;
        width: 100%;
    
        margin: 30px auto 0;
        /* margin-top: 30px; */
    }
    .statya_figure_1_cont_img {
        width: 100%;
        height: 195.5px;
        padding: 2px 0 3px;
    }
    .statya_figure_1_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_figure_1_text {
        padding: 12px 15px;
        text-align: left;

        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 12px;
        line-height: 18px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    }
    
    
    
    .statya_block blockquote {
        position: relative;

        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 26px;
        /* or 186% */
        
        color: #FFFFFF;
    
        padding: 38px 15px 23px 18px;
        margin-bottom: 20px;
        margin-top: 20px;
    
        background: no-repeat left 15px top 13px url(../img/article_icon.svg), #0a3a52;
        background-size: 17px 18px;
    }
    .statya_block blockquote::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
    }
    .statya_block blockquote::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -14px;
        left: 0;
    
        height: 14px;
        width: 14px;
    
        background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
    }
    
    
    
    .statya_block ol {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 36px 15px 20px 39px;
        width: 100%;
        box-sizing: border-box;
    
        margin-top: 20px;
    
        background: #f3f4f6;

        border-left: 4px solid #0a3a52;
		
        counter-reset: li;
    }
    
    
    
    
    
    
    .statya_read_also {
        position: relative;
    
        padding: 69px 14px 12px 15px;
        width: 100%;
        box-sizing: border-box;
    
        border-left: 3px solid #c4cad4;
    
        background: #eef0f2;
    
        margin-top: 30px;
    }
    .statya_read_also_cont_img {
        position: relative;
        height: 228px;
        width: 100%;
    
        overflow: hidden;
    
        border-bottom: none;
        
        float: unset;
        margin-left: 0;
    }
    .statya_read_also_cont_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_read_also_cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 49px;
        width: 49px;
    
        background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
    }
    .statya_read_also_text_header {
        position: absolute;

        top: 23px;
        left: 15px;

        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .statya_read_also_text_p_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        margin-top: 15px;
    }
    .statya_read_also_text_p_2 {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    
    
    
    .cont_statya_ul_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 31px 15px 14px 62px;
        width: 100%;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ul_1 ul {
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_ul_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-top: 0;
    }
    .statya_ul_1 .statya_li {
        margin-bottom: 20px;
    }
    
    
    
    
    .statya_block h3 {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        
        color: #0a3a52;
    
        margin-top: 36px;
        padding: 0 15px;
        box-sizing: border-box;

        width: 100%;
        text-align: left;
    }
     .statya_block h3::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }

    
    /*==============================
    =============TABLE==============
    ===============================*/
    .statya_block .table_1 {
        margin-top: 37px;
        padding-left: 0;
        padding-right: 0;

        box-sizing: border-box;

        width: 100%;
    }
    .statya_block .table_1 table {
        width: 100%;
        max-width: 100%;

        table-layout: fixed;

        word-wrap: break-word;
    }
    .statya_block .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px 10px 10px 20px;
        border: 2px solid #ffffff;
    
        text-align: center;
        vertical-align: middle;
        
        white-space: unset;
    }
    .statya_block .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        padding: 10px 10px 10px 20px;
        border: 2px solid #ffffff;
    
        vertical-align: text-top;
    }
    .statya_block .table_1 table tr {
        background-color: #dcdfe5;
    }
    .statya_block .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .statya_block .last_section {
        margin-bottom: 40px;
    }
    
    
    
    
    
    .blockquote_style_2 {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 39px 15px 10px 17px;
        background: no-repeat left 16px top 20px url(../img/feather_2.svg), #1e7b84;
        background-size: 17px 74px;
    
        margin-top: 40px;
    }
    .blockquote_style_2::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -12px;
        left: 0;
    
        width: 100%;
        height: 20px;
    
        background: url(../img/img_border.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    
    .blockquote_style_2_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;

        margin-left: 38px;
    }
    .blockquote_style_2_text {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 26px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    .statya_references_list {
        display: flex;
        flex-direction: column;
        padding: 35px 15px 38px;
        background:#F3F4F6;
    
        margin-top: 32px;
    }
    .statya_references_list_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #0a3a52;
    }
    .statya_references_ul {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-left: 30px;
        margin-top: 11px;
        
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_references_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    
    
    
    


    .statya_media_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        margin-top: 77px;
    
        padding: 17px 15px 40px;
    
        background: #0a3a52;
    }
    .statya_media_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -3px;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .cont_stastya_share {
        display: flex;
        flex-direction: column;

        width: 100%;
    }
    .stastya_share_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        
        text-transform: uppercase;
        
        color: #FFFFFF;
    }
    .cont_stastya_share_content {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_top_block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 27px;
    }
    .stastya_share_social {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        width: 100%;
    }
    .cont_social_icon {
        width: 53px;
        height: 53px;
    }
    .cont_social_icon:not(:last-of-type) {
        margin-right: 23px;
    }
    .cont_social_icon img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    .stastya_share_discuss {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;
    
        padding: 19px 21px;
    
        width: 100%;
        height: 64px;

        margin-top: 33px;
    
        box-sizing: border-box;
    
        background: #1e7b84;
    
        transition: background .1s;
    }
    .stastya_share_discuss:hover {
        background: #d69240;
    }
    .stastya_share_discuss::before {
        content: '';
        display: block;
        position: absolute;
    
        left: 78px;
    
        width: 24px;
        height: 24px;
    
        background: url(../img/discuss_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_discuss::after {
        content: '';
        display: block;
        position: absolute;
    
        left: 0;
        top: 0;
    
        width: 15px;
        height: 15px;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
        
        transition: background .1s;
    }
    .stastya_share_discuss span {
        position: absolute;
    
        right: 92px;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-left: 21px;
    }
    
    .stastya_share_bottom_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 60px;
    }
    .stastya_share_polezna {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: center;
    
        width: 474px;
    }
    .stastya_share_polezna_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-bottom: 5px;
    }
    .stastya_share_polezna_cont_da_net {
        display: flex;
        flex-direction: row;
    }
    .stastya_share_polezna_cont_da_net > * {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    
        height: 40px;
        width: 72px;
    
        cursor: pointer;
    
        transition: background .1s;
    }
    .stastya_share_polezna_cont_da_net > *:hover {
        background: #d69240;
    }
    .stastya_share_polezna_cont_da_net > *::before {
        content: '';
        display: block;
        position: absolute;
    
        width: 15px;
        height: 15px;
    
        transition: background .1s;
    }
    .stastya_share_polezna_da {
        margin-right: 25px;
    }
    .stastya_share_polezna_da::before {
        left: 0;
        top: 0;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    .stastya_share_polezna_net::before {
        right: 0;
        bottom: 0;
    
        background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    
    .stastya_share_raiting {
        display: none;
        flex-direction: column;
        position: relative;
    
        width: 235px;
    }
    .stastya_share_raiting_caption {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        /* Primary */
        
        color: #1e7b84;
    
        width: 100%;
    }
    .stastya_share_raiting_cont_button {
        display: flex;
        flex-direction: row;
    
        margin-left: 17px;
        margin-top: 3px;
    }
    .stastya_share_raiting_likes,
    .stastya_share_raiting_dislikes {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        border-radius: 50px;
    
        background: #1e7b84;
        cursor: pointer;
        transition: background .1s;
    
        width: 43px;
        height: 43px;
    
        padding-left: 7px;
        box-sizing: border-box;
    }
    .stastya_share_raiting_likes {
        margin-right: 61px;
    }
    .stastya_share_raiting_likes:hover,
    .stastya_share_raiting_dislikes:hover {
        background: #d69240;
    }
    .stastya_share_raiting_likes::before,
    .stastya_share_raiting_dislikes::before {
        content: '';
        display: block;
        position: absolute;
    
        left: -14px;
    
        width: 24px;
        height: 24px;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_raiting_likes::before {
        background: url(../img/like_icon.svg);
    }
    .stastya_share_raiting_dislikes::before {
        background: url(../img/dislike_icon.svg);
    }
    
    
    
    
    
    .cont_statya_author {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-top: 51px;
    }
    .cont_statya_author::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -10px;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_author_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    
        margin-bottom: 19px;
    }
    .statya_author_data {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .statya_author_cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
    
        height: 140px;
        width: 140px;
    
        border-radius: 100px;
    
        overflow: hidden;
    
        margin-right: 0;
        margin-bottom: 18px;
    }
    .statya_author_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_author_info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .statya_author_name {
        text-align: center;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 22px;
        line-height: 30px;
        
        color: #FFFFFF;
    
        margin-bottom: 9px;
    }
    .statya_author_proffession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_date_release,
    .statya_author_date_modified {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    
    .statya_page_cont_content .interesting_section {
        display: flex;
        flex-direction: column;

        width: 100%;
        box-sizing: border-box;
    
        margin-top: 57px;
    
        padding: 0 15px;
    }
    .statya_page_cont_content .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 28px;
        line-height: 38px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .statya_page_cont_content .interesting_section_caption::before {
        content: '';
        display: none;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .statya_page_cont_content .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .statya_page_cont_content .cont_interesting_section_single {
        margin-bottom: 40px;

        width: unset;
    }
    .statya_page_cont_content .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .statya_page_cont_content .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img {
        position: relative;
        height: 227px;
        width: 100%;
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .statya_page_cont_content .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 10px 34px 10px 10px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .statya_page_cont_content .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }



	.statya_block .table_1 {
		overflow-x: auto;
		margin: 15px;
	}
    
    
    
    /* COMMENTS */ 
    
    .statya_comments_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: calc(100% - 30px);

        margin: 57px 15px 50px 15px;

        padding: 34px 0px 54px;

        /* box-sizing: border-box; */
    }
    .statya_comments_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Secondary */
        
        color: #0a3a52;

        margin-bottom: -25px;
    }
    .statya_comments_section_content {
        display: flex;
        flex-direction: column;
    
        width: 100%;
    }
    
    
    
    .cont_statya_comments_section_single {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    
        width: 100%;
    
        margin-top: 50px;
    }
    
    
    .statya_comments_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        padding: 16px 13px 10px 21px;
        box-sizing: border-box;
    
        background-color: #eef0f2;
    }
    .statya_comments_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 100%;
        left: 0;
    
        height: 28px;
        width: 32px;
    
        background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
    }
    .statya_comments_section_single_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .statya_comments_section_single_header_name {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_header_date {
        display: flex;
        align-items: center;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        
        color: #C4CAD4;
    }
    .statya_comments_section_single_body {
        position: relative;
    
        width: 100%;
        margin-top: 15px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_body::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -9px;
        left: 0;
    
        width: 100%;
        height: 1px;
    
        background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);
    
        color: #cdd2d9;
    }
    .statya_comments_section_single_footer {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 22px;
        /* or 183% */
        
        text-align: right;
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
    
        margin-top: 5px;
    
        transition: color .1s;
    }
    .statya_comments_section_single_footer:hover {
        color: #1e7b84;
    }
    
    
    .statya_comments_section_single_responce .statya_comments_section_single {
        background-color: #f8f8f9;
    }
    
    .statya_comments_section_single_responce .statya_comments_section_single::before {
        background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
    }
    .statya_comments_section_single_responce {
        width: calc(100% - 19px);
    }
    
    
    
    .statya_comments_section_add_comment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
        width: 100%;
        padding: 26px 15px 36px;
    
        margin-top: 60px;
    
        box-sizing: border-box;
        
        background: #fafafb;
    }
    .statya_comments_section_add_comment_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
    
        margin-bottom: 25px;
    }
    
    .statya_comments_section_add_comment_name {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    
        margin-bottom: 30px;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    }
    .statya_comments_section_add_comment_name::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        height: 140px;
        margin-bottom: 30px;
        padding: 24px 20px;
        box-sizing: border-box;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    
        resize: none;
    }
    .statya_comments_section_add_comment_text::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_submit {
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        width: 100%;
        height: 64px;
        
        background: #1e7b84;
        border-radius: 4px;
    
        transition: background .1s;
    }
    .statya_comments_section_add_comment_submit:hover {
        background: #d69240;
    }
    .statya_comments_section_add_comment_submit:active {
        background: #645f58;
    }
    
    




    .sidebar_block {
        display: none;
    }

    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
        background: #0a3a52;
    
        overflow: hidden;
    }
    .footer .container_block {
        display: flex;
        justify-content: center;
        position: relative;
    
    
        width: 390px;
    }
    .container_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 40px 5px 0;
    
        box-sizing: border-box;
    }
    .footer .container_block:before {
        content: '';
    }
    .footer_logo_block-container_logo {
        width: 238px;
        height: 36px;
    }
    .footer_logo_block-container_logo img {
        height: 100%;
        width: 100%;
        
        object-fit: contain;
    }
    .footer_logo_block-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 17px;
        
        color: #1e7b84;
    
        margin-top: 30px;
        margin-bottom: 0;
    }
    .footer_logo_block-text_2 {
		
        width: 100%;
        text-align: center;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 22px;
        
        color: #C4CAD4;
		
		margin-top: 20px;
    }
    .footer_link_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    
        position: relative;
    
        width: 100%;
    
        z-index: 1;

        margin-bottom: 40px;
    }
    .footer_link_block::before {
        content: '';
        display: none;
        position: absolute;
    
        bottom: -25px;
        left: calc(50% - 161px);
    
        width: 385px;
        height: 123px;
    
        background: url(../img/castle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .footer_link_block_left_links {
        text-align: center;
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 41px;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;

        margin-bottom: 40px;
    }
    .footer_link_block_left_links > * {
        transition: color .1s;
        margin-bottom: 10px;
    }
    .footer_link_block_left_links > *:hover {
        color: #1e7b84;
    }
    .footer_link_block_right_links {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
        
        text-align: right;
        text-decoration-line: underline;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_right_links > * {
        transition: color .1s;
    }
    .footer_link_block_right_links > *:hover {
        color: #1e7b84;
    }
    
    
    
    
    




    
    /*==============================
    ==========RUBRIC PAGE===========
    ===============================*/
    .rubric_section {
        display: flex;
        flex-direction: column;
    
        padding: 0 15px;
    }
    .rubric_name {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 36px;
        line-height: 49px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    .rubric_text {
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 30px;
        
        color: #0a3a52;
    
        padding: 12px 0 12px 31px;
    
        /* border: 9px solid #000000;
        border-image: url(../img/vertical_orange_border.svg) 9 repeat repeat; */
    
        margin-top: 27px;
    }
    .rubric_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 9px;
    
       /* background-image: url(../img/vertical_orange_border.svg);
        background-position: top;
        background-repeat: repeat-y;
        background-size: contain;*/
    }
}











@media screen and (max-width: 320px) {
    .container_block {
        display: flex;
        justify-content: center;
        width: 100%;
    
        box-sizing: border-box;
    }
    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ffffff;
    }
    .header_search_button {
        display: block;
        position: absolute;

        top: 28px;
        right: 62px;

        width: 24px;
        height: 24px;

        background: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }
    .header_menu_button {
        display: block;
        position: absolute;

        top: 28px;
        right: 25px;

        width: 28px;
        height: 28px;

        background: url(../img/menu_button.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        cursor: pointer;

        z-index: 1;
    }


    /*====================================
    ============SEARCH BLOCK==============
    =====================================*/
    .search_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: unset;
        
        background: url(../img/bg_header_mobile.svg), #eef0f2;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: auto;
    
        height: max-content;
    
        padding: 20px 15px 11px;
        box-sizing: border-box;
    }
    .search_block_logo_section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
    
        height: 100%;
        width: 200px;
    }
    .search_block_logo_section-container_logo {
        width: 100%;
        height: 37px;
    
        margin-bottom: 5px;
    }
    .search_block_logo_section-container_logo img {
        height: 100%;
        width: 100%;
    
        object-fit: contain;
    }
    .search_block_logo_section-text {
        font-family: "Nunito-Regular";
        font-size: 15px;
        line-height: 15px;
        color: #1e7b84;
    
        margin-bottom: 0;
    }
    .search_block_search_section {
        display: none;
        position: absolute;

        top: 13px;

        height: 71px;
        width: calc(100% - 30px);
    
        border: 2px solid #cacbcb;
    border-radius: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .cont_search_block_search_section {
        width: 100%;
        height: 100%;
    
        position: relative;
        display: flex;
        align-items: center;
    }
    .search_block_search_section .search_line {
        position: relative;
    
        box-sizing: border-box;
        width: 100%;
        padding: 10px 50px 10px 55px;
    
        font-family: "Nunito-Regular";
        font-size: 20px;
        color: black;
    
        border: none;
        outline: none;
    
        background: none;
    }
    .search_block_search_section .search_img {
        position: absolute;
    
        height: 20px;
        width: 20px;
    
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        right: 21.5px;
        top: 29px;
    
        cursor: pointer;
    }
    
    
    
    
    /*====================================
    =============HEADER NAV===============
    =====================================*/
    .header_navigation {
        display: none;
        justify-content: center;
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        background-color: #0a3a52;
        border-left: 6px solid #1e7b84;

        box-sizing: border-box;


        z-index: 10;
    }
    .header_navigation.active {
        display: flex;
        opacity: 1;
    }
    .header_navigation_cross {
        display: block;
        position: absolute;

        top: 16px;
        right: 16px;

        width: 32px;
        height: 32px;

        background: url(../img/white_cross.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        z-index: 11;

        cursor: pointer;
    }
    .header_navigation .container_block {
        display: flex;
        justify-content: center;
        
    
        background-color: #0a3a52;
    
        height: unset;
        width: 100%;
    }
    .container_nav {
        width: 100%;
        height: unset;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }
    .container_nav_link {
        display: flex;
        position: relative;
    
        font-family: "Nunito-SemiBold";
        font-size: 16px;
        color: #ffffff;
    
        height: 110px;
        width: 100%;
    
        background: transparent;
    
        transition: background .1s;
    }
    .container_nav_link:hover {
        background: #1e7b84;
    }

    .container_nav_link a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    
        white-space: nowrap;
    
        padding: 0 110px;
    }
    .container_nav_link a::before {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 1;
        transition: opacity .1s;

        transform: scale(.8);
    }
    .container_nav_link a::after {
        position: absolute;
        left: 50px;
        margin-right: 5px;
        opacity: 0;
        transition: opacity .1s;

        transform: scale(.8);
    }


    .container_nav_link:nth-of-type(1) a::before {
        content: url(../img/icon_nav_1.svg);
    }
    .container_nav_link:nth-of-type(2) a::before {
        content: url(../img/icon_nav_2.svg);
    }
    .container_nav_link:nth-of-type(3) a::before {
        content: url(../img/icon_nav_3.svg);
    }
    .container_nav_link:nth-of-type(4) a::before {
        content: url(../img/icon_nav_4.svg);
    }
    .container_nav_link:nth-of-type(5) a::before {
        content: url(../img/icon_nav_5.svg);
    }
    .container_nav_link:nth-of-type(6) a::before {
        content: url(../img/icon_nav_6.svg);
    }
    
    
    .container_nav_link:nth-of-type(1) a::after {
        content: url(../img/icon_nav_1_transparent.svg);
    }
    .container_nav_link:nth-of-type(2) a::after {
        content: url(../img/icon_nav_2_transparent.svg);
    }
    .container_nav_link:nth-of-type(3) a::after {
        content: url(../img/icon_nav_3_transparent.svg);
    }
    .container_nav_link:nth-of-type(4) a::after {
        content: url(../img/icon_nav_4_transparent.svg);
    }
    .container_nav_link:nth-of-type(5) a::after {
        content: url(../img/icon_nav_5_transparent.svg);
    }
    .container_nav_link:nth-of-type(6) a::after {
        content: url(../img/icon_nav_6_transparent.svg);
    }



    


    .container_nav_link::after {
        content: '';
        display: block;
        position: absolute;

        bottom: -1px;
        left: 0;

        width: calc(100% - 104px);

        margin: 0 52px;

        box-sizing: border-box;

        height: 2px;

        background: repeat-x url(../img/nav_border.svg);
        z-index: 10000;
    }
    /* .container_nav_link a::after {
        content: '';
        display: block;
        position: absolute;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 10px;

        background-image: repeating-radial-gradient(90deg, black, black 10px, transparent 10px, transparent);
        

        z-index: 10000;
    } */
    
    
    
    
    
    
    
    
    /*====================================
    ==========NAVIGATION CHAIN============
    =====================================*/
    .navigation_chain {
        display: flex;
        flex-direction: row;
        justify-content: left;
        flex-wrap: wrap;
    
        padding-left: 15px;
        padding-right: 15px;
    
        margin-top: 15.5px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 17px;
        
        color: #0a3a52;
    }
    .navigation_chain_single {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    .navigation_chain_single:last-of-type {   
        color: #C4CAD4;
    }
    .navigation_chain_single:not(:last-of-type)::after {
        content: '';
        display: block;
    
        height: 100%;
        width: 7px;
    
        background:url(../img/navigation_chain_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        margin: 0 8px 0 8px;
    }
    
    
    
    
    
    
    
    /*====================================
    ================MAIN==================
    =====================================*/
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-image: url(../img/main_bg.svg);
        background-position: left top;
        background-repeat: repeat;
        background-size: auto;
        overflow: hidden;
    }
    .main .container_block {
        display: flex;
        flex-direction: column;
    
        background-color: #ffffff;
        box-shadow: 0px 0px 20px rgba(74, 91, 116, 0.2);
    }
    .main_header_section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 20px;

        padding-left: 15px;
        padding-right: 15px;
    }
    .main_header_section_container_img {
        position: relative;
    
        height: 220px;
        width: 100%;
        padding-top: 14px;
        margin-right: 20px;
    
        box-sizing: border-box;
        overflow: hidden;

        margin-bottom: 20px;
    }
    .main_header_section_container_img::before {
        content: '';
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
    
        left: 0;
        top: 0;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat;
        background-size: contain;
    }
    .main_header_section_container_img::after {
        content: '';
        display: block;
        position: absolute;
        height: 7px;
        width: 100%;
    
        left: 0;
        bottom: 0;
    
        background:linear-gradient(#ffffff 40%,#1e7b84 40%, #1e7b84 100%);
    }
    .main_header_section_container_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .main_header_section_container_text {
        position: relative;
        width: 100%;
    
        padding: 31px 20px 23px 20px;
        box-sizing: border-box;
    
        min-height: unset;
    
        background: #e8eaee;
    }
    .main_header_section_container_text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(45deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .main_header_section_container_text-header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 27px;
        line-height: 39px;
        
        text-transform: uppercase;
    
        color: #0a3a52;
    
        padding-bottom: 10px;
    }
    .main_header_section_container_text-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 27px;
    
        text-align: left;
        
        color: #0a3a52;
    }
    
    
    
    
    
    
    .epoch_ul_section {
       display: flex; 
       flex-direction: column;
    
       padding-top: 51px;
        
       padding-left: 0;
       padding-right: 0;
    }
    .epoch_ul_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        padding: 0;
        margin: 0;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 48px;
        line-height: 58px;
        
        color: #0a3a52;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .epoch_ul_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .epoch_ul_section_container_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    
        margin-top: 20px;

        margin-bottom: -50px;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .epoch_ul_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        background-color: #f3f4f6;
    
        width: 100%;
    
        box-sizing: border-box;
        min-height: 503px;

        margin-bottom: 50px;
    }
    .epoch_ul_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 39px;
        width: 39px;
    
        background: linear-gradient(135deg, #C4CAD4 50%, #ffffff 50%, #ffffff 100%);
    }
    .epoch_ul_section_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 100%;
        width: 6px;
    
        background: linear-gradient(90deg, #1e7b84 4px, #ffffff 4px, #ffffff 5px, #1e7b84 5px, #1e7b84 6px);
    }
    .epoch_ul_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
    
        min-height: 69px;
        box-sizing: border-box;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 16px;
        line-height: 24px;
    
        padding: 19px 10px 14px 95px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    
        background: linear-gradient(92.61deg, rgba(255, 255, 255, 0) 45.65%, #D9DDE4 99.39%);
    }
    .epoch_ul_section_single-caption::before {
        display: flex;
        position: absolute;
        left: 40px;
    
        padding-right: 8px;

        transform: scale(.9);
    }
    .epoch_ul_section_single:nth-of-type(1) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_1.svg);
    }
    .epoch_ul_section_single:nth-of-type(2) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_2.svg);
    }
    .epoch_ul_section_single:nth-of-type(3) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_3.svg);
    }
    .epoch_ul_section_single:nth-of-type(4) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_4.svg);
    }
    .epoch_ul_section_single:nth-of-type(5) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_5.svg);
    }
    .epoch_ul_section_single:nth-of-type(6) .epoch_ul_section_single-caption::before {
        content: url(../img/icon_main_6.svg);
    }
    .epoch_ul_section-ul {
    
        list-style: none;
        padding-left: 40px;
        padding-top: 11px;
    }
    .epoch_ul_section-li {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #000000;
    
        margin-bottom: 15px;
    
        transition: color .1s, text-decoration .1s;
    }
    .epoch_ul_section-li a {
        text-decoration: underline;
        text-decoration-color: inherit;
        transition: color .1s, text-decoration-color .1s;
    }
    .epoch_ul_section-li a:hover {
        text-decoration-color: transparent;
        
        color: #2A6C96;
    }
    
    
    
    
    
    
    
    
    .interesting_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 57px;
        
        padding-left: 0;
        padding-right: 0;
    }
    .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 29px;
        line-height: 49px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
        
        padding-left: 15px;
        padding-right: 15px;
    }
    .interesting_section_caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: -45px;
    }
    .cont_interesting_section_single {
        margin-bottom: 45px;

        width: 100%;
    }
    .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
       
        z-index: 1;
    }
    .interesting_section_single-conteiner_img {
        position: relative;
        height: 186px;
        width: 100%;
    
        /* border-bottom: 5px solid #1e7b84; */
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .interesting_section_single-text {
            font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: #0a3a52;
    background-color: #e8eaee;
    cursor: pointer;
    position: relative;
    padding: 9px 18px 14px;
    box-sizing: border-box;
    transition: color .2s, background .2s;
    border: 5px solid #0a3a52;
    text-align: center;
    }
    .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
       /* background-image: url(../img/blue_arrow.svg);*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    .epoch_figures_section {
        display: flex;
        flex-direction: column;
    
        margin-top: 96px;
    }
    .epoch_figures_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 37px 15px 9px;
    
        z-index: 2;
    }
    .epoch_figures_section_single:not(:nth-of-type(1)) {
        margin-top: 100px;
    }
    .epoch_figures_section_single:nth-of-type(odd) {
        background-color: #f9efe3;
    }
    .epoch_figures_section_single:nth-of-type(odd):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0px;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#1e7b84 4px, transparent 4px, transparent 6px, #1e7b84 6px, #1e7b84 7px);
    }
    .epoch_figures_section_single:nth-of-type(even) {
        background-color: #ebedf0;
    }
    .epoch_figures_section_single:nth-of-type(even):before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 7px;
    
        background: linear-gradient(#C4CAD4 4px, transparent 4px, transparent 6px, #C4CAD4 6px, #C4CAD4 7px);
    }
    .epoch_figures_section_single-caption {
        display: flex;
        align-items: center;
    
        position: relative;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 21px;
        line-height: 29px;
        
        text-transform: uppercase;
        
        color: #0a3a52;
    
        margin-bottom: 34px;
    
        padding-left: 75px;
    }
    .epoch_figures_section_single-caption::before {
        display: flex;
        position: absolute;
    
        left: 0;
    
        padding-right: 10px;

        transform: scale(.7);
    }
    .epoch_figures_section_single:nth-of-type(1) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_1.svg);
    }
    .epoch_figures_section_single:nth-of-type(2) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_2.svg);
    }
    .epoch_figures_section_single:nth-of-type(3) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_3.svg);
    }
    .epoch_figures_section_single:nth-of-type(4) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_4.svg);
    }
    .epoch_figures_section_single:nth-of-type(5) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_5.svg);
    }
    .epoch_figures_section_single:nth-of-type(6) .epoch_figures_section_single-caption::before {
        content: url(../img/icon_epoch_article_6.svg);
    }
    .epoch_figures_section_single-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
    }
    .cont_epoch_figures_section_single-content_single {
        position: relative;
        margin-bottom: 27px;

        width: 100%;
        min-height: 111px;
    }
    .cont_epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: linear-gradient(281.05deg, rgba(0, 0, 0, 0.2) 0%, rgba(232, 234, 238, 0.2) 50.7%), #0a3a52;
        
        opacity: 1;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover::after {
        opacity: .7;
    }
    .epoch_figures_section_single-content_single {
        display: flex;
        flex-direction: row;
        position: relative;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single-content_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 25px;
        width: 25px;
    
        z-index: 1;
    }
    .epoch_figures_section_single-content_single::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        right: 0;
    
        height: 25px;
        width: 25px;
    
        z-index: 1;
    }
    
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(odd) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #f9efe3 50%, transparent 50%, transparent 100%);
    }
    
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::before {
        background: linear-gradient(135deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    .epoch_figures_section_single:nth-of-type(even) .epoch_figures_section_single-content_single::after {
        background: linear-gradient(-45deg, #ebedf0 50%, transparent 50%, transparent 100%);
    }
    
    
    
    .epoch_figures_section_single-content_single-cont_img {
        display: flex;
        position: relative;
    
        /* height: 100%; */
        width: unset;
        flex-basis: 140px;
    
        overflow: hidden;
    
        box-sizing: border-box;
    
        transition: border .1s;
    }
    .epoch_figures_section_single-content_single-cont_img::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 3px;
    
        background: #1e7b84;
    
        transition: height .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::after {
        height: 9px;
    }
    .epoch_figures_section_single-content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #363636;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .cont_epoch_figures_section_single-content_single:hover .epoch_figures_section_single-content_single-cont_img::before {
        opacity: .3;
    }
    .epoch_figures_section_single-content_single-cont_img img {
    
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .epoch_figures_section_single-content_single-text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        
        /* White */
        
        color: #FFFFFF;
    
        padding: 14px 23px 9px 9px;
    
        width: 100%;
    
        cursor: pointer;
    }
    .epoch_figures_section_single-content_single-text a {
        height: 100%;
        display: block;
    }
    
    
    
    
    
    
    
    
    .author_section {
        display: flex;
        flex-direction: column;
    
        margin: 74px 0 115px;
        padding: 26px 15px 50px;
    
        background: no-repeat right 42px bottom 22px url(../img/feather.svg), #f3f4f6;
    }
    .author_section_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    
        position: relative;
    }
    .author_section_header::before {
        content: '';
        display: none;
        position: absolute;
    
        height: 3px;
        width: 100%;
    
        background-image: url(../img/dotted.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
        /* background-image: linear-gradient(90deg, #C4CAD4 9px, transparent 9px, transparent 13px, #c4cad4 13px, #C4CAD4 16px);
        background-size: 10px 10px;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .author_section_header-caption {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 60px;
        line-height: 73px;
    
        padding-left: 14px;
        padding-right: 10px;
        
        color: #0a3a52;
    
        background-color: #f3f4f6;
    }
    .author_section_header-caption::before {
        content: '';
        display: block;
        position: absolute;
    
        right: calc(100%);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .author_section_header-see_more {
        display: flex;
        align-items: center;
        position: relative;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        
        color: #2A6C96;
    
        padding-right: 16px;
        padding-left: 0;
    
        background-color: #f3f4f6;
    
        cursor: pointer;
    
        transition: color .1s;
    }
    .author_section_header-see_more:hover {
        color: #1e7b84
    }
    .author_section_header-see_more::before {
        content: '';
        display: block;
        position: absolute;
    
        right: -14px;
    
        height: 24px;
        width: 24px;
    
        background: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        transition: background .1s;
    }
    .author_section_header-see_more:hover::before {
        background: url(../img/orange_arrow.svg);
    }
    
    .author_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    
        margin-top: 32px;
        margin-bottom: -40px;
    }
    .author_section_content_single {
        display: flex;
        flex-direction: row;
        align-items: center;
    
        flex-basis: 100%;

        margin-bottom: 40px;
    }
    .author_section_content_single-cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    
        height: 97px;
        width: 97px;
    
        border-radius: 50px;
    
        overflow: hidden;
    
        margin-right: 12px;
    }
    .author_section_content_single-cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background: #000000;
    
        opacity: 0;
    
        transition: opacity .1s;
    }
    .author_section_content_single:hover .author_section_content_single-cont_img::before {
        opacity: .3;
    }
    .author_section_content_single-cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .author_section_content_single-author_data {
        display: flex;
        flex-direction: column;

        width: 100%;
    }
    .author_section_content_single-author_data-name {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 17px;
        line-height: 23px;
        
        color: #0a3a52;
    
        margin-bottom: 2px;
    
        transition: color .1s;
    }
    .author_section_content_single:hover .author_section_content_single-author_data-name {
        color: #1e7b84;
    }
    .author_section_content_single-author_data-profession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-bottom: 11px;
    }
    .author_section_content_single-author_data-author_articls {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
        /* identical to box height */
        
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
        transition: color .1s;
    }    
    .author_section_content_single-author_data-author_articls:hover {
        color: #1e7b84;
    }





    





    /*=======================================
    ============STATYA PAGE==================
    ======================================*/
    .statya_page_cont_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        padding: 0;
        box-sizing: border-box;
    
        width: 100%;
    }
    
    .statya_block {
        margin-right: 0;
        width: 100%;
    }
    .statya_header {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 32px;
        line-height: 45px;
        
        color: #0a3a52;
    
        margin-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .switch_version {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .switch_version_single {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 32px;
        /* or 250% */
        
        text-align: center;
        
        text-align: center;
        height: max-content;
        
        /* Secondary */
        
        color: #0a3a52;
    
        padding: 5px 0;

        /* width: 50%; */
        background: #C4CAD4;
    
        cursor: pointer;
    }
    .switch_version_single.active { 
        color: #ffffff;
    
        padding: 9px 0;
        background: #0a3a52;
    }
    
    
    
    
    .table_contents {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 34px 15px 17px;
        box-sizing: border-box;
    
        border-top: 6px solid #1e7b84;
        background: #f3f4f6;
    
        margin-top: 25px;
    
        width: 100%;
    }
    .table_contents::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#C4CAD4 1px, #ffffff 1px, #ffffff 3px, #C4CAD4 3px, #C4CAD4 6px);
    }
    .table_contents_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        color: #1e7b84;
    
    }
    .table_contents ol {
        counter-reset: li;
    }
    .table_contents_ol {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .table_contents_li {
        margin-bottom: 20px;
    }
    .table_contents_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .table_contents_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #c4cad4;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        /* height: 100%; */
    
        border-bottom: 2px solid #1e7b84;
    }
    .table_contents_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    .statya_subtitle_1 {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 28px;
        line-height: 38px;
        
        color: #0a3a52;
    
        margin-top: 49px;

        padding-left: 15px;
        padding-right: 15px;

        box-sizing: border-box;

        width: 100%;
    }
    .statya_subtitle_1::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0px;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    
    .statya_text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 30px;
        
        color: #0a3a52;
    
        margin-top: 20px;
        
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;

        width: 100%;
    }
    .statya_text_link {
    
        color: #2a6c96;
        text-decoration: underline;
    }
    
    
    
    
    .statya_figure_1 {
        display: flex;
        flex-direction: column;
        border-top: 4px solid #0a3a52;
        width: 100%;
    
        margin: 30px auto 0;
        /* margin-top: 30px; */
    }
    .statya_figure_1_cont_img {
        width: 100%;
        height: 195.5px;
        padding: 2px 0 3px;
    }
    .statya_figure_1_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_figure_1_text {
        padding: 12px 15px;
        text-align: left;

        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 12px;
        line-height: 18px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    }
    
    
    
    .blockquote_style_1 {
        position: relative;

        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 26px;
        /* or 186% */
        
        color: #FFFFFF;
    
        padding: 38px 15px 23px 18px;
        margin-bottom: 50px;
        margin-top: 40px;
    
        background: no-repeat left 15px top 13px url(../img/article_icon.svg), #0a3a52;
        background-size: 17px 18px;
    }
    .blockquote_style_1::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        height: 6px;
        width: 100%;
    
        background: linear-gradient(#1e7b84 1px, transparent 1px, transparent 3px, #1e7b84 3px, #1e7b84 6px);
    }
    .blockquote_style_1::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: -14px;
        left: 0;
    
        height: 14px;
        width: 14px;
    
        background: linear-gradient(135deg, #1e7b84 50%, #ffffff 50%, #ffffff 100%);
    }
    
    
    
    .cont_statya_ol_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 36px 15px 20px 20px;
        width: 100%;
        box-sizing: border-box;
    
        margin-top: 20px;
    
        background: #f3f4f6;

        border-left: 4px solid #0a3a52;
    }
    .cont_statya_ol_1 ol {   
        counter-reset: li;
    }
    .statya_ol_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        /* or 150% */
        
        color: #0a3a52;
        margin-top: 24px;
    }
    .statya_ol_1 .statya_li {
        margin-bottom: 20px;
    }
    .statya_ol_1 .statya_li span {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .statya_ol_1 .statya_li span::before {
        height: 100%;
        counter-increment: li;
        content: counters(li, ".");
    
        background: #0a3a52;
        margin-right: 18px;
        padding: 1px 6px 0 6px;
    
        border-bottom: 2px solid #1e7b84;
        color: #ffffff;
    }
    .statya_ol_1 .statya_subol {
        margin-left: 39px;
        margin-top: 20px;
    }
    
    
    
    
    
    
    .statya_read_also {
        position: relative;
    
        padding: 69px 14px 12px 15px;
        width: 100%;
        box-sizing: border-box;
    
        border-left: 3px solid #c4cad4;
    
        background: #eef0f2;
    
        margin-top: 30px;
    }
    .statya_read_also_cont_img {
        position: relative;
        height: 228px;
        width: 100%;
    
        overflow: hidden;
    
        border-bottom: none;
        
        float: unset;
        margin-left: 0;
    }
    .statya_read_also_cont_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_read_also_cont_img::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        height: 49px;
        width: 49px;
    
        background: linear-gradient(135deg, #eef0f2 50%, transparent 50%, transparent 100%);
    }
    .statya_read_also_text_header {
        position: absolute;

        top: 23px;
        left: 15px;

        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 33px;
        
        text-transform: uppercase;
        
        /* Primary */
        
        color: #1e7b84;
    }
    .statya_read_also_text_p_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        margin-top: 15px;
    }
    .statya_read_also_text_p_2 {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        margin-top: 8px;
    }
    
    
    
    .cont_statya_ul_1 {
        display: flex;
        flex-direction: column;
        position: relative;
    
        padding: 31px 15px 14px 40px;
        width: 100%;
        box-sizing: border-box;
    
        border-left: 4px solid #0a3a52;
    
        margin-top: 20px;
    
        background: #f3f4f6;
    }
    .cont_statya_ul_1 ul {
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_ul_1 {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        
        color: #0a3a52;
        margin-top: 0;
    }
    .statya_ul_1 .statya_li {
        margin-bottom: 20px;
    }
    
    
    
    
    .statya_subtitle_2 {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        
        color: #0a3a52;
    
        margin-top: 36px;
        padding: 0 15px;
        box-sizing: border-box;

        width: 100%;
        text-align: left;
    }
    .statya_subtitle_2::before {
        content: '';
        display: block;
        position: absolute;
    
        right: unset;
        left: 0;
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }

    
    /*==============================
    =============TABLE==============
    ===============================*/
    .statya_block .table_1 {
        margin-top: 37px;
        padding-left: 0;
        padding-right: 0;

        box-sizing: border-box;

        width: 100%;
    }
    .statya_block .table_1 table {
        width: 100%;
        max-width: 100%;

        table-layout: fixed;

        word-wrap: break-word;
    }
    .statya_block .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 21px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px;
        border: 2px solid #ffffff;
    
        text-align: center;
        vertical-align: middle;
        
        white-space: unset;
    }
    .statya_block .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 21px;
        
        color: #0a3a52;
    
        padding: 10px;
        border: 2px solid #ffffff;
    
        vertical-align: text-top;
    }
    .statya_block .table_1 table tr {
        background-color: #dcdfe5;
    }
    .statya_block .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .statya_block .last_section {
        margin-bottom: 40px;
    }
    
    
    
    
    
    .blockquote_style_2 {
        display: flex;
        flex-direction: column;
        position: relative;
        
        padding: 39px 15px 10px 17px;
        background: no-repeat left 16px top 20px url(../img/feather_2.svg), #1e7b84;
        background-size: 17px 74px;
    
        margin-top: 40px;
    }
    .blockquote_style_2::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -12px;
        left: 0;
    
        width: 100%;
        height: 20px;
    
        background: url(../img/img_border.svg);
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    
    .blockquote_style_2_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 66px;
        line-height: 71px;
        
        color: #FFFFFF;

        margin-left: 38px;
    }
    .blockquote_style_2_text {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 26px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    .statya_references_list {
        display: flex;
        flex-direction: column;
        padding: 35px 15px 38px;
        background:#F3F4F6;
    
        margin-top: 32px;
    }
    .statya_references_list_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 55px;
        line-height: 70px;
        
        color: #0a3a52;
    }
    .statya_references_ul {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 23px;
        
        color: #0a3a52;
        margin-left: 30px;
        margin-top: 11px;
        
        list-style-image: url(../img/ul_list_style_1.svg);
    }
    .statya_references_li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    
    
    
    


    .statya_media_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        margin-top: 77px;
    
        padding: 17px 15px 40px;
    
        background: #0a3a52;
    }
    .statya_media_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -3px;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .cont_stastya_share {
        display: flex;
        flex-direction: column;

        width: 100%;
    }
    .stastya_share_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        
        text-transform: uppercase;
        
        color: #FFFFFF;
    }
    .cont_stastya_share_content {
        display: flex;
        flex-direction: column;
    }
    .stastya_share_top_block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 27px;
    }
    .stastya_share_social {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        width: 100%;
    }
    .cont_social_icon {
        width: 53px;
        height: 53px;
    }
    .cont_social_icon:not(:last-of-type) {
        margin-right: 23px;
    }
    .cont_social_icon img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
    }
    .stastya_share_discuss {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;
    
        padding: 19px 21px;
    
        width: 100%;
        height: 64px;

        margin-top: 33px;
    
        box-sizing: border-box;
    
        background: #1e7b84;
    
        transition: background .1s;
    }
    .stastya_share_discuss:hover {
        background: #d69240;
    }
    .stastya_share_discuss::before {
        content: '';
        display: block;
        position: absolute;
    
        left: 65px;
    
        width: 24px;
        height: 24px;
    
        background: url(../img/discuss_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_discuss::after {
        content: '';
        display: block;
        position: absolute;
    
        left: 0;
        top: 0;
    
        width: 15px;
        height: 15px;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
        
        transition: background .1s;
    }
    .stastya_share_discuss span {
        position: absolute;
    
        right: 60px;
    
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        text-align: center;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-left: 0;
    }
    
    .stastya_share_bottom_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    
        margin-top: 60px;
    }
    .stastya_share_polezna {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: center;
    
        width: 474px;
    }
    .stastya_share_polezna_caption {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        
        /* White */
        
        color: #FFFFFF;
    
        margin-bottom: 5px;
    }
    .stastya_share_polezna_cont_da_net {
        display: flex;
        flex-direction: row;
    }
    .stastya_share_polezna_cont_da_net > * {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        background: #1e7b84;
    
        height: 40px;
        width: 72px;
    
        cursor: pointer;
    
        transition: background .1s;
    }
    .stastya_share_polezna_cont_da_net > *:hover {
        background: #d69240;
    }
    .stastya_share_polezna_cont_da_net > *::before {
        content: '';
        display: block;
        position: absolute;
    
        width: 15px;
        height: 15px;
    
        transition: background .1s;
    }
    .stastya_share_polezna_da {
        margin-right: 25px;
    }
    .stastya_share_polezna_da::before {
        left: 0;
        top: 0;
    
        background: linear-gradient(-45deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    .stastya_share_polezna_net::before {
        right: 0;
        bottom: 0;
    
        background: linear-gradient(135deg, transparent 50%, #0a3a52 50%, #0a3a52 100%);
    }
    
    .stastya_share_raiting {
        display: none;
        flex-direction: column;
        position: relative;
    
        width: 235px;
    }
    .stastya_share_raiting_caption {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        /* Primary */
        
        color: #1e7b84;
    
        width: 100%;
    }
    .stastya_share_raiting_cont_button {
        display: flex;
        flex-direction: row;
    
        margin-left: 17px;
        margin-top: 3px;
    }
    .stastya_share_raiting_likes,
    .stastya_share_raiting_dislikes {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        position: relative;
        
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        border-radius: 50px;
    
        background: #1e7b84;
        cursor: pointer;
        transition: background .1s;
    
        width: 43px;
        height: 43px;
    
        padding-left: 7px;
        box-sizing: border-box;
    }
    .stastya_share_raiting_likes {
        margin-right: 61px;
    }
    .stastya_share_raiting_likes:hover,
    .stastya_share_raiting_dislikes:hover {
        background: #d69240;
    }
    .stastya_share_raiting_likes::before,
    .stastya_share_raiting_dislikes::before {
        content: '';
        display: block;
        position: absolute;
    
        left: -14px;
    
        width: 24px;
        height: 24px;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .stastya_share_raiting_likes::before {
        background: url(../img/like_icon.svg);
    }
    .stastya_share_raiting_dislikes::before {
        background: url(../img/dislike_icon.svg);
    }
    
    
    
    
    
    .cont_statya_author {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-top: 51px;
    }
    .cont_statya_author::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -10px;
    
        width: 100%;
        height: 5px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_author_header {
        font-family: 'Moniqa-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 70px;
        line-height: 73px;
        
        color: #FFFFFF;
    
        margin-bottom: 19px;
    }
    .statya_author_data {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .statya_author_cont_img {
        display: flex;
        justify-content: center;
        align-items: center;
    
        height: 140px;
        width: 140px;
    
        border-radius: 100px;
    
        overflow: hidden;
    
        margin-right: 0;
        margin-bottom: 18px;
    }
    .statya_author_cont_img img {
        height: 100%;
        width: 100%;
    
        object-fit: cover;
    }
    .statya_author_info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .statya_author_name {
        text-align: center;
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 22px;
        line-height: 30px;
        
        color: #FFFFFF;
    
        margin-bottom: 9px;
    }
    .statya_author_proffession {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        margin-bottom: 11px;
    }
    .statya_author_date_release,
    .statya_author_date_modified {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 19px;
        
        color: #FFFFFF;
    }
    
    
    
    
    
    
    .statya_page_cont_content .interesting_section {
        display: flex;
        flex-direction: column;

        width: 100%;
        box-sizing: border-box;
    
        margin-top: 57px;
    
        padding: 0 15px;
    }
    .statya_page_cont_content .interesting_section_caption {
        display: flex;
        align-items: center;
        position: relative;

        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 28px;
        line-height: 38px;
        
        color: #0a3a52;
    
        margin: 0;
        padding: 0;
    }
    .statya_page_cont_content .interesting_section_caption::before {
        content: '';
        display: none;
        position: absolute;
    
        right: calc(100% + 14px);
    
        height: 25px;
        width: 4px;
    
        background-color: #1e7b84;
    }
    .statya_page_cont_content .interesting_section_content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .statya_page_cont_content .cont_interesting_section_single {
        margin-bottom: 40px;

        width: unset;
    }
    .statya_page_cont_content .interesting_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
    }
    .statya_page_cont_content .interesting_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: -.5px;
    
        
        z-index: 1;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img {
        position: relative;
        height: 227px;
        width: 100%;
    
        overflow: hidden;
    
        transition: border .2s;
    
        background-color: #000000;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img::before {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 5px;
    
        background-color: #1e7b84;
    
        transition: height .2s;
        z-index: 1;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-conteiner_img::before {
        height: 14px;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img img {
        position: relative;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .statya_page_cont_content .interesting_section_single-conteiner_img::after {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    
        background-color: #000000;
    
        opacity: 0;
    
        transition: opacity .2s;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-conteiner_img::after {
        opacity: .4;
    }
    .statya_page_cont_content .interesting_section_single-text {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
        
        background-color: #e8eaee;
    
        cursor: pointer;
    
        position: relative;
        padding: 10px 34px 10px 10px;
        box-sizing: border-box;
    
        transition: color .2s, background .2s;
    }
    .statya_page_cont_content .interesting_section_single:hover .interesting_section_single-text {
        color:  #2A6C96;
        background-color: #c4cad41a;
    }
    .statya_page_cont_content .interesting_section_single-text::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 10px;
        right: 1px;
    
        height: 24px;
        width: 24px;
    
        background-image: url(../img/blue_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    
        cursor: pointer;
    }




    
    
    
    /* COMMENTS */ 
    
    .statya_comments_section {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: calc(100% - 30px);

        margin: 57px 15px 50px 15px;

        padding: 34px 0px 54px;

        /* box-sizing: border-box; */
    }
    .statya_comments_section::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section::after {
        content: '';
        display: block;
        position: absolute;
    
        bottom: 0;
        left: 0;
    
        width: 100%;
        height: 9px;
    
        background: #fd9726;
        background-position: left;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .statya_comments_section_header {
        font-family: 'Nunito-ExtraBold';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 41px;
        /* identical to box height */
        
        text-transform: uppercase;
        
        /* Secondary */
        
        color: #0a3a52;

        margin-bottom: -25px;
    }
    .statya_comments_section_content {
        display: flex;
        flex-direction: column;
    
        width: 100%;
    }
    
    
    
    .cont_statya_comments_section_single {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    
        width: 100%;
    
        margin-top: 50px;
    }
    
    
    .statya_comments_section_single {
        display: flex;
        flex-direction: column;
        position: relative;
    
        width: 100%;
        padding: 16px 13px 10px 21px;
        box-sizing: border-box;
    
        background-color: #eef0f2;
    }
    .statya_comments_section_single::before {
        content: '';
        display: block;
        position: absolute;
    
        top: 100%;
        left: 0;
    
        height: 28px;
        width: 32px;
    
        background: linear-gradient(-45deg, #ffffff 50%, #eef0f2 50%, #eef0f2 100%);
    }
    .statya_comments_section_single_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .statya_comments_section_single_header_name {
        font-family: 'Nunito-Black';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 25px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_header_date {
        display: flex;
        align-items: center;
    
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        
        color: #C4CAD4;
    }
    .statya_comments_section_single_body {
        position: relative;
    
        width: 100%;
        margin-top: 15px;
    
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        
        color: #0a3a52;
    }
    .statya_comments_section_single_body::before {
        content: '';
        display: block;
        position: absolute;
    
        top: -9px;
        left: 0;
    
        width: 100%;
        height: 1px;
    
        background: repeating-linear-gradient(90deg, #cdd2d9, #cdd2d9 2px, transparent 2px, transparent 6px);
    
        color: #cdd2d9;
    }
    .statya_comments_section_single_footer {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 12px;
        line-height: 22px;
        /* or 183% */
        
        text-align: right;
        text-decoration-line: underline;
        
        /* Tertiary */
        
        color: #2A6C96;
    
        cursor: pointer;
    
        margin-top: 5px;
    
        transition: color .1s;
    }
    .statya_comments_section_single_footer:hover {
        color: #1e7b84;
    }
    
    
    .statya_comments_section_single_responce .statya_comments_section_single {
        background-color: #f8f8f9;
    }
    
    .statya_comments_section_single_responce .statya_comments_section_single::before {
        background: linear-gradient(-45deg, #ffffff 50%, #f8f8f9 50%, #f8f8f9 100%);
    }
    .statya_comments_section_single_responce {
        width: calc(100% - 19px);
    }
    
    
    
    .statya_comments_section_add_comment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
        width: 100%;
        padding: 26px 15px 36px;
    
        margin-top: 60px;
    
        box-sizing: border-box;
        
        background: #fafafb;
    }
    .statya_comments_section_add_comment_header {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        
        color: #0a3a52;
    
        margin-bottom: 25px;
    }
    
    .statya_comments_section_add_comment_name {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    
        margin-bottom: 30px;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    }
    .statya_comments_section_add_comment_name::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_text {
        font-family: 'Nunito-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        
        color: #0a3a52;
    
        width: 100%;
        height: 140px;
        margin-bottom: 30px;
        padding: 24px 20px;
        box-sizing: border-box;
    
        border: 1px solid #C4CAD4;
        box-sizing: border-box;
    
        resize: none;
    }
    .statya_comments_section_add_comment_text::placeholder {
        color: #C4CAD4;
        text-transform: uppercase;
    }
    .statya_comments_section_add_comment_submit {
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 20px;
        line-height: 27px;
        
        color: #FFFFFF;
    
        width: 100%;
        height: 64px;
        
        background: #1e7b84;
        border-radius: 4px;
    
        transition: background .1s;
    }
    .statya_comments_section_add_comment_submit:hover {
        background: #d69240;
    }
    .statya_comments_section_add_comment_submit:active {
        background: #645f58;
    }
    
    




    .sidebar_block {
        display: none;
    }




    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
        background: #0a3a52;
    
        overflow: hidden;
    }
    .footer .container_block {
        display: flex;
        justify-content: center;
        position: relative;
    
    
        width: 390px;
    }

    .footer .container_block::after {
        content: '';
        display: none;
        position: absolute;
    
        top: 20px;
        height: 92px;
        width: 390px;
    
        background-color: #0a3a52;
    }
    .container_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 40px 5px 0;
    
        box-sizing: border-box;
    }
    .footer .container_block:before {
        content: '';
    }
    .footer_logo_block-container_logo {
        width: 238px;
        height: 36px;
    }
    .footer_logo_block-container_logo img {
        height: 100%;
        width: 100%;
        
        object-fit: contain;
    }
    .footer_logo_block-text {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 17px;
        
        color: #1e7b84;
    
        margin-bottom: 0;
    }
    .footer_link_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    
        position: relative;
    
        width: 100%;
    
        z-index: 1;

        margin-bottom: 40px;
    }
    .footer_link_block::before {
        content: '';
        display: none;
        position: absolute;
    
        bottom: -25px;
        left: calc(50% - 161px);
    
        width: 385px;
        height: 123px;
    
        background: url(../img/castle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .footer_link_block_left_links {
        text-align: center;
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 41px;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;

        margin-bottom: 20px;
    }
    .footer_link_block_left_links > * {
        transition: color .1s;
        margin-bottom: 10px;
    }
    .footer_link_block_left_links > *:hover {
        color: #1e7b84;
    }
    .footer_link_block_right_links {
        font-family: 'Nunito-Light';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
        
        text-align: right;
        text-decoration-line: underline;
        
        color: #FFFFFF;
    
        list-style: none;
    
        cursor: pointer;
    }
    .footer_link_block_right_links > * {
        transition: color .1s;
    }
    .footer_link_block_right_links > *:hover {
        color: #1e7b84;
    }
    
    
    
    
    
    
    
    /*==============================
    =============TABLE==============
    ===============================*/
    .table_1 {
        margin-top: 37px;
    }
    .table_1 table {
        width: 100%;
        max-width: 100%;
    }
    .table_1 table th {
        font-family: 'Nunito-Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        
        color: #FFFFFF;
        background: #0a3a52;
    
        padding: 10px;
        border: 2px solid #ffffff;
    
        text-align: left;
        
        white-space: nowrap;
    }
    .table_1 table td {
        font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        
        color: #0a3a52;
    
        padding: 10px;
        border: 2px solid #ffffff;
    
        vertical-align: middle;
    }
    .table_1 table tr {
    
        background-color: #dcdfe5;
    }
    .table_1 table tr:nth-of-type(odd) {
        background-color: #eef0f2;
    }
    .last_section {
        margin-bottom: 72px;
    }
	
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
	
    margin: 0 auto 0 auto;
	
	position: relative;
    z-index: 99;
}

.nav-links a, .nav-links span {
	display: block;
	padding: 10px;
	
	font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: #0a3a52;
	
	transition: all .5s;
}

.nav-links span.current {
	color: #1e7b84;
}

.nav-links a:hover {
    color: #1e7b84;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border-top: 4px solid #0a3a52;
    max-width: 100%; /* Image does not overflow the content area */
    padding: 3px 0 0 0;
    text-align: center;
	
	margin: 20px 0 !important;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0 !important;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0 !important;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px !important;
}

.wp-caption.aligncenter {
    margin: 20px auto !important;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.wp-caption p.wp-caption-text {
	display: block;
    box-sizing: border-box;
    padding: 12px 38px;
    text-align: left;
    font-family: 'Nunito-Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    background: #1e7b84;
	
	margin-top: 5px;
}

.statya_block iframe {
	display: block;
	max-width: auto;
	margin: 0 auto;
}

.comment-reply-title {
	display: none !important;
}

.statya_block p.logged-in-as {
	margin: 0 0 30px 0; 
}

.comment-form-cookies-consent {
    margin: 0 0 30px 0 !important;
}

.comments__title {
    width: 100%;
    margin-top: 15px;
    font-family: 'Nunito-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #0a3a52;
}

.comment .comment-respond {
	margin: 40px;
}

.statya_block_single {
	margin-bottom: 40px;
}

.author_archive {
	margin-bottom: 50px !important;
}

#tab-2 {
	display: none;
}


/* boxes  ad*/
.attention {
	transition: transform .3s ease,opacity 0s ease;
	transition-delay: 0s,.3s;
	position: fixed;
	z-index: 9999;
	opacity: 0;
	-webkit-backface-visibility: hidden;
}
.attention img {display: block;}
.attention.bottom {bottom: 0; left: 50%; transform: translateY(100%) translateX(-50%);}
.attention.left, .attention.right {bottom: 0;transform: translateX(0);}
.attention.left {right: 100%;}
.attention.right {left: 100%;}
.attention.show {
	transition-delay: 0s,0s;
	opacity: 1;
}
.attention.show.bottom {width:320px; max-height:320px; transform: translateY(0) translateX(-50%);}
.attention.show.left {max-height:600px; transform: translateX(100%);}
.attention.show.right {max-height:600px; transform: translateX(-100%);}

/* close btn */
.aclose{position:absolute;top:0;right:0;width:34px;height:34px;background:#000;display:block;cursor:pointer;z-index:99999;border:none;padding:0;}
.right .aclose {right: auto; right:0;}
.aclose:hover{background:#777}
.aclose:after,.aclose:before{transition:transform .3s ease;content:'';display:block;position:absolute;top:0;left:0;right:0;bottom:0;width:16px;height:4px;background:#fff;transform-origin:center;transform:rotate(45deg);margin:auto}
.aclose:before{transform:rotate(-45deg)}

/* boxes  ad*/

@media screen and (max-width: 320px) {   
	   iframe {width: 100%;
       height:auto;
       }
}	  



.statya_block .variant-n {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    transform-style: preserve-3d;
    border: 5px solid !important;
    border-color: #1e7b84!important;
	margin: 60px 0 !important;
    padding: 10px 20px 40px;
}
.variant-n::before,
.variant-n::after {
    position: absolute;
}
.variant-n::before {
    content: url(../img/variant_3_1.svg);
    top: -32px;
    left: 49px;
}
.variant-n::after {
    content: url(../img/variant_3_2.svg);
    bottom: -56px;
    right: 49px;
}

/***Стили для CF7 вариант2***/
.wpcf7 {
border:1px dashed #225384;  /*цвет границы*/
padding:20px 20px 20px 0px!important;
text-transform:uppercase;
}
.cf-left, .cf-right{
float:left;
margin-bottom:15px;
}
.clear{
clear:both;
}
/*Стилти для блока с заголовками полей*/
.cf-left{
width:50%;
padding-left:20px;
max-width:120px;
font-size:1.1em;
}
/*Стилти для блока полей формы*/
.cf-right{
width:60%;
}
.cf-right input, .cf-right textarea{
width: 100%;
max-width:300px;
padding:4px;
background:#d4d4d4; /*фон полей формы*/
border:1px solid #8a8a8a;
}
.wpcf7-submit{
background: linear-gradient(#2F73B6, #399ADF), #2F73B6!important; /*фон кнопки*/
color:#fff!important;  /*цвет шрифта кнопки*/
text-transform:uppercase;
float:right;
margin-left: 20px!important;
border-radius:5px!important;
text-shadow:none!important;
}
.wpcf7-submit:hover{
-moz-box-shadow: 0 0 6px #000;
-webkit-box-shadow: 0 0 6px #000;
box-shadow:0 0 6px #000;  
background-image: linear-gradient( #399ADF, #2F73B6), #399ADF!important; /*фон кнопки при наведении*/
}


.statya_block .cf-left p, .statya_block .cf-right p
{
    font-family: 'Nunito-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 15px;
        color: #3e3d3d;
    padding: 20px;
        
}