/* fonts */
@font-face {
    font-family: CeraPro;
    font-weight: 500;

    src: url('fonts/CeraPro/CeraPro-Regular.ttf');
}

@font-face {
    font-family: CeraPro;
    font-weight: 700;

    src: url('fonts/CeraPro/CeraPro-Medium.ttf');
}

@font-face {
    font-family: CeraPro;
    font-weight: 900;

    src: url('fonts/CeraPro/CeraPro-Bold.ttf');
}

@font-face {
    font-family: CeraPro;
    font-weight: 500;
    font-style: italic;

    src: url('fonts/CeraPro/CeraPro-Italic.ttf');
}

@font-face {
    font-family: Georgia;
    font-weight: 500;
    font-style: italic;

    src: url('fonts/Georgia/georgiai.ttf');
}

/* fonts end */
/* main */
body {
    font-family: CeraPro;
    font-size: 19px;
    line-height: 1.2;
    overflow-x: hidden;

    margin: 0;
}

.body-hidden {
    overflow: hidden;
}

/* scrollbar */

::-webkit-scrollbar-thumb {
    padding-right: 100px;

    background-color: #868585;
    background-repeat: repeat-y;
}

::-webkit-resizer {
    width: 7px;
    height: 0;

    background-image: url('');
    background-repeat: no-repeat;
    ;
}

::-webkit-scrollbar {
    width: 9px;
}

/* scrollbar end */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;

    margin-block-start: 0;
}

h1,
#news_title {
    font-size: 60px;
    line-height: 1;

    max-width: 700px;
    margin-bottom: 30px;
}

h3 {
    font-size: 20px;
}

.section_heading {
    font-size: 40px;
}

img {
    display: block;

    max-width: 100%;

    object-fit: cover;
    -o-object-fit: cover;
}

a {
    cursor: pointer;
    transition: .3s;
    text-decoration: none;

    color: #ed1d24;
}

a:not([href]):not([tabindex]) {
    cursor: pointer;
    transition: .3s;

    color: #000;
}

/*
a:not([href]):not([tabindex]):hover {
  color: #ED1D24;
}
*/

a:hover,
a:focus,
a:active {
    text-decoration: none;

    color: #000;
}

p {
    margin: 0;
}

button {
    border: none;
    background: transparent;
}

button,
input,
textarea {
    font-family: CeraPro;

    outline: none;
}

button:hover {
    cursor: pointer;

    color: #ed1d24;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

input[type='search']::-webkit-search-cancel-button {
    /* без сброса оформление не применится */
    width: 17px;
    /* размеры кастомного крестика */
    height: 16px;

    background: url(/static/img/search_close.svg);
    background-size: cover;
    /* псевдо что-то, что отвечает за кнопку очистки */

    -webkit-appearance: none;
    /* без сброса оформление не применится */
    -webkit-appearance: none;
}

/* удалить, когда закончится тестовый режим */
.attention_txt {
    font-size: 16px;

    display: flex;

    height: 50px;
    margin-left: 10px;
    padding: 10px;

    text-transform: uppercase;

    color: #fff;
    background: #ed1d24;

    align-items: center;
}

/* удалить, когда закончится тестовый режим */

/* кнопка наверх */

#top {
    position: fixed;
    right: 10px;
    bottom: 10px;

    display: none;

    padding: 20px;

    cursor: pointer;

    color: #fff;
    border-radius: 0;
    background: #666;
}

#top:hover {
    transition: .2s;

    background: #ed1d24;
}

.up_angle {
    width: 10px;
    height: 10px;

    transition: transform .2s linear;
    transform: rotate(-45deg);
    transform-origin: 80% 50%;

    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

/* кнопка наверх end */

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

    /*max-width: 1245px;*/
    max-width: calc(1245px + 10%);
    margin: 35px auto;
    padding: 0 5%;
}

.page_container {
    margin: 60px auto 120px;
}

.heading_block_triangle {
    font-size: 18px;
    font-weight: 900;
    line-height: 2;

    position: relative;

    display: inline-flex;

    margin: 0 0 20px;

    color: #ed1d24;

    align-items: center;
}

.heading_block_triangle:after {
    position: absolute;
    top: calc(50% - 5.6px);
    right: -12px;

    content: '';

    border-top: 7px solid transparent;
    border-right: 6px solid #131211;
    border-bottom: 7px solid transparent;
}

.link_triangle,
.link_triangle_bottom {
    font-size: 16px;
    font-weight: 700;

    position: relative;

    margin-right: 15px;

    transition: .3s;
    text-decoration: none;

    color: #000;
}

.link_triangle:after {
    position: absolute;
    top: calc(50% - 5.5px);

    margin-left: 5px;

    content: '';

    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 6px solid #131211;
    transition: .3s;
}

.link_triangle:hover {
    color: #ed1d24;
}

.link_triangle:hover:after {
    border-left: 6px solid #ed1d24;
}

.line_link {
    display: inline-flex;

    margin-bottom: 30px;

    text-transform: lowercase;

    color: #000;

    align-items: center;
}

.line_link:hover {
    color: #ed1d24;
}

.line_link:before {
    display: block;

    width: 28px;
    height: 1px;
    margin-right: 10px;

    content: '';

    background: #ed1d24;
}

.hamburger_box {
    display: none;
}

/* main end */
/* header */
.ad_header {
    display: flex;

    justify-content: center;
}

.ad_header img,
.ad_long img,
.ad_short_sidebar img {
    height: auto;
}

.logo_block {
    height: 50px;

    background: #000;
}

.nav_menu {
    position: relative;
    z-index: 1020;

    height: 50px;
}

.nav_menu_box {
    display: flex;

    height: 50px;
    margin: 1px 0;

    background: #000;

    align-items: center;
}

/* выпадаюее горизонтальное меню */
.menu_item.menu_item_more {
    padding: 0 15px 0 0;
}

.menu_item.menu_item_more:before {
    position: absolute;
    top: 20px;
    right: 0;
    left: unset;

    width: 6px;
    height: 6px;
    margin: 4px 0 0 10px;

    content: '';
    transition: transform .2s linear;
    transform: rotate(135deg);
    transform-origin: 70% 30%;

    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    background: none;
}

.submenu_more {
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    min-width: 80%;

    background: #555;
}

.more_dropdown_second:hover .submenu_more {
    display: block;
}

.menu_item_more_drop_down .menu_item_more a {
    text-transform: none;

    color: #fff;
}

/* выпадающее горизонтальное меню end */

.main_section_list {
    display: flex;

    height: 100%;
    width: 100%;
    padding: 0;

    align-items: center;
    overflow-x:hidden; 
}

.humburger_all_item {
    display: flex;

    height: 50px;

    /*flex: .5;*/
    align-items: center;
}

/* общий вид */
.main_section_list,
.main_section_list ul {
    padding: 0 15px;

    list-style-type: none;
}

.main_section_list ul {
    width: auto;
    min-width: 200px;

    background: #333;
}

.main_section_list ul>li {
    border-bottom: 1px solid #dad5d5;
}

.main_section_list ul>li:last-child {
    border: none;
}

.main_section_list ul>li a:hover {
    color: #b6b0ad;
}

.subsection_list li {
    position: relative;

    display: flex;

    min-height: 50px;
    padding-right: 10px;
    padding-left: 10px;

    justify-content: center;
    align-items: center;
}

.article_item {
    background: #555;
}

.main_section_list a {
    display: flex;

    min-height: 50px;

    color: white;

    align-items: center;
}

.main_section_back_box a::before,
.main_section_list a::after {
    font-size: 0;

    min-height: inherit;

    content: '';
}

.subsection_list,
.article_list {
    background: black;
}

.main_section_item {
    position: relative;

    display: flex;

    height: 50px;
    margin: 0 25px 0 0;

    align-items: center;
}

.main_section_item>a {
    font-size: 13px;
    z-index: 5;
    text-transform: uppercase;
    white-space: nowrap;
}

.subsection_list a {
    display: flex;

    width: 100%;

    text-transform: none;
}

/* общий вид end */

/* стрелочки */
.main_section_item.item_arrow:after {
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    left: unset;

    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    margin: 4px -10px 0 0;

    content: '';
    transition: transform .2s linear;
    transform: rotate(135deg);
    transform-origin: 70% 30%;

    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    background: none;
}

.main_section_item.item_arrow:hover:after {
    /*transition-delay: .3s;*/
    transform: rotate(-40deg);
    ;
}

/* стрелочки end */

/* показать подраздел */
.subsection_list {
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;

    visibility: hidden;

    width: 100%;

    transition: 0s, 0s, .3s;
    transition-property: visibility, opacity, translateY;
    transform: translateY(-2em);

    opacity: 0;
}

.main_section_item:focus .subsection_list,
.main_section_item:focus-within .subsection_list,
.main_section_item:hover .subsection_list {
    z-index: 1;

    visibility: visible;

    transition-delay: 0s, 0s, .3s;
    /* this removes the transition delay so the menu will be visible while the other styles transition */
    transform: translateY(0%);

    opacity: 1;
}

/* показать подраздел end */

/* показать список статей */
.article_list {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;

    display: none;
    visibility: hidden;

    width: 100%;

    transition: all .3s ease-in-out 0s, visibility 0s linear .3s, z-index 0s linear .01s;
    transform: translateY(-2em);

    opacity: 0;
}

.subsection_item:focus .article_list,
.subsection_item:focus-within .article_list,
.subsection_item:hover .article_list {
    z-index: 1;

    display: block;
    visibility: visible;

    transition-delay: 0s, 0s, .3s;
    /* this removes the transition delay so the menu will be visible while the other styles transition */
    transform: translateY(0%);

    opacity: 1;
}

/* показать список статей end */


/* хлебные крошки в меню */
.main_section_back_box {
    position: relative;

    display: flex;

    height: 50px;
    margin-right: 30px;
    margin-left: -15px;

    justify-content: center;
    align-items: center;
}

.main_section_back {
    font-size: 13px;

    z-index: 5;

    display: flex;

    min-height: 50px;

    color: white;

    align-items: center;
    white-space: nowrap;
}

.main_section_back:hover,
.main_section_back:focus {
    color: white;
}

.main_section_back:after {
    position: absolute;
    z-index: 50;
    top: calc(50% - 8px);
    right: 0;

    margin-right: -12px;

    content: '»';

    color: white;
}

/* хлебные крошки в меню end */

/* анимация подчёркивания */
.main_section_item:before,
.main_section_back_box:before {
    content: ' ';

    opacity: 0;
}

.main_section_item:hover:before,
.main_section_back_box:hover:before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;

    width: 100%;
    height: 10px;

    content: ' ';
    transition-delay: .3s;
    -webkit-animation: strike .8s ease-in-out forwards;
    animation: strike .8s ease-in-out forwards;
    animation-delay: .3s;

    opacity: 1;
    background: #ed1c24;
}

@-webkit-keyframes strike {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }

    50% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }

    50.01% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
}

@keyframes strike {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }

    50% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
    }

    50.01% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
}

.activelink:before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;

    width: 100%;
    height: 10px;

    content: ' ';

    background: #ed1c24;
}

.activelink:hover:after {
    content: ' ';
}

/* анимация подчёркивания end */
.menu_box {
    font-size: 13px;
    font-weight: 900;
    display: flex;
    width: 90%;
    max-width: 1245px;
    height: 100%;
    margin: auto;

    text-transform: uppercase;
}

.stickytop {
    position: fixed;
    z-index: 1010;
    top: 0;
    top: -150px;

    width: 100%;
    margin: 0;

    transition: .2s;
    transform: translateY(150px);
}

.menu_block_ul {
    display: flex;

    width: 78%;
    height: 100%;
    margin: auto;
    padding: 0;

    align-items: center;
}

.search_box {
    position: relative;
    display: flex;
    width: 50px;
    height: 100%;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.search_box i {
    font-size: 15px;

    color: white;
}

.search_box svg {
    position: relative;

    transition: .1s;
}

.search_box_close {
    transition: .3s;

    background: #fdfafa;
}

.search_box_close svg {
    transform: scaley(0);
}

.search_box:after {
    position: absolute;

    display: block;

    width: 20px;
    height: 2px;

    content: '';
    transition: .1s;
    transform: rotate(90deg);

    opacity: 0;
    background: black;
}

.search_box:before {
    position: absolute;

    display: block;

    width: 20px;
    height: 2px;

    content: '';
    transition: .3s;
    transition: .1s;
    transform: rotate(90deg);

    opacity: 0;
    background: black;
}

.search_box:after,
.search_box:before {
    right: 0;
    left: 0;

    margin: auto;
}

.search_box_close:after {
    transition: .3s;
    transform: rotate(45deg);

    opacity: 1;
}

.search_box_close:before {
    transition: .3s;
    transform: rotate(135deg);

    opacity: 1;
}

.magazine_link_box {
    position: relative;
    display: flex;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    background: #e3e3e3;
    justify-content: center;
    align-items: center;
}

.magazine_link_box a {
    color: black;
}

.magazine_box_drop_down {
    position: absolute;
    z-index: 6;
    top: 50px;
    left: 0;

    display: none;

    min-width: 200px;
    padding: 40px 20px 30px;

    background-color: #e3e3e3;
}

.magazine_box_drop_down a {
    font-size: 16px;
    font-weight: 500;

    display: block;

    margin-bottom: 10px;

    text-transform: lowercase;
}

.magazine_box_drop_down a:before {
    margin-right: 5px;

    content: '»';
}

.magazine_box_drop_down a:hover,
.subscription_box a:hover {
    color: #ed1d24;
}

.subscription_box {
    display: flex;
    padding: 0 20px;
    height: 100%;
    transition: .3s;
    background: #231f20;
    justify-content: center;
    align-items: center;
}

.subscription_box a {
    color: white;
}

.menu_block_ul li {
    margin: 0 30px 0 0;

    list-style-type: none;
}

.menu_block_ul li a {
    text-decoration: none;

    color: white;
}

.second_menu_item {
    position: relative;
    z-index: 5;

    margin-left: 5px;

    color: #fff;
}

.menu_item_more {
    position: relative;

    display: flex;

    min-height: 50px;
    padding-right: 50px;

    cursor: pointer;
    user-select: none;

    color: #fff;

    justify-content: center;
    align-items: center;
}

.menu_item:not(.menu_item_more) .menu_home_sub:after {
    position: absolute;
    z-index: 50;
    top: 0;
    right: -15px;

    content: '»';

    color: white;
}

.menu_item_more_drop_down {
    position: absolute;
    top: 50px;
    left: 0;

    visibility: hidden;

    min-width: 200px;

    transition: 0s, 0s, .3s;
    transition-property: visibility, opacity, translateY;
    transform: translateY(-2em);

    opacity: 0;
    background-color: #000;
}

.menu_item_more li {
    margin: 0;
}

.menu_item_more li:last-child {
    border: none;
}

.menu_item_more_angle {
    width: 6px;
    height: 6px;
    margin: 4px 0 0 10px;

    transition: transform .2s linear;
    transform: rotate(135deg);
    transform-origin: 70% 30%;

    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

.logo_box {
    display: flex;

    width: 100%;
    max-width: 1245px;
    height: 50px;
    margin: auto;

    align-items: center;
}

.logo_img_box {
    padding-top: 5px;
}

.logo_text {
    font-size: 28px;
    line-height: 1;

    margin: 0;
    padding: 0;

    color: white;
}

.menu_block_ul_more {
    margin: 0;
    padding-left: 0;
}

.menu_block_ul_more li {
    padding: 10px;

    text-align: center;
}

.menu_block_ul li a {
    position: relative;
    z-index: 5;

    transition: .3s;
}

.menu_item_more li a:hover {
    color: #ababab;
}

.menu_block_ul li {
    position: relative;
}

.nav_bar_col {
    position: relative;
    display: flex;
}

.search_cont {
    display: flex;
    background: black;
    align-items: center;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50px;
    z-index: 1;
    transition: .3s;
}

.search_cont_on {
    width: 100%;
    padding-left: 20px;
}


.search_cont .search_input {
    width: calc(90% - 20px);
    padding: 5px 0;

    transition: .3s;

    color: #ffd595;
    border-bottom: 1px solid white;
    background: none;
}

.search_cont .search_input::placeholder {
    color: #ffd595;
}

.search_cont_on .search_input {
    padding: 5px 10px 5px 10px;
}

.menu_home_sub {
    position: relative;
}




/* новое выпадающее меню */
.menu_box{
    position: relative;
}
.main_section_item{
    position:static;
}
.main_section_list ul{
    width: 100%;
    left:0;
    display: grid;
    /*grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-wrap:wrap;*/
    padding:10px 20px;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-gap: 15px 6px;
}
.main_section_list ul>li {
    border-bottom: none;
    /* background: #46b590; */
    margin: 0px;
    font-size: 14px;
    padding-top: 5px;
    /*width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;*/
}
.subsection_item{
    /* flex-basis: 170px; */
    /*white-space: nowrap;*/
    /* flex: 1; */
    /* border:1px solid black; */
    border-radius:12px;
}

.main_section_item:hover{
    background: #333;
}


.main_section_item.item_arrow:after {
    position: relative;
    margin: 0 0 0 5px;
    top: 1px;
    right: 0;
    left: unset;
    width: 6px;
    height: 6px;
    margin: 0 0 0 5px;
    content: '';
    transition: transform .2s linear;
    transform: rotate(135deg);
    transform-origin: 70% 30%;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    background: none;
}

.main_section_item:hover:before,
.main_section_back_box:hover:before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;

    width: 100%;
    height: 10px;

    content: none;
    transition-delay: .3s;
    -webkit-animation: strike .8s ease-in-out forwards;
    animation: strike .8s ease-in-out forwards;
    animation-delay: .3s;

    opacity: 1;
    background: #ed1c24;
}
.main_section_back_box {
    position: relative;
    display: flex;
    height: 50px;
    margin-right: 10px;
    margin-left: 15px;
    justify-content: center;
    align-items: center;
}
/* новое выпадающее меню end */


/* more horizontal */
.more_horizonmenu{
    /*position: relative;*/
}
.more_horizonmenu{
    display: none;
}
li.more_horizonmenu:hover{
    background:#333;
}
.more_horizonmenu-list .main_section_item {
    align-items: start;
    margin:15px;
}
.more_horizonmenu-list .main_section_item.item_arrow:after{
    /*top: 47%;*/
    top:6px;
}
.main_section_list ul.more_horizonmenu-list{
  display: none;
  padding: 20px 15px;
  position:absolute;
  top:100%;
  width: 100%;
}
.more_horizonmenu:hover .more_horizonmenu-list{
  display: grid;
  justify-items: start;
}
.main_section_list ul.more_horizonmenu-list>li>a {
    height: auto;
    min-height: auto;
}

.humburger_all_item{
    width: 25px;
}
/*.nav_bar_col{
    width: 260px;
}*/
.main_section_list{
    width: calc(100% - 285px)!important;
}
.main_section_item, li.more_horizonmenu{
    margin:0 10px;
    padding: 0 10px;
}




.more_horizonmenu-list>.main_section_item.item_arrow>.subsection_list{
    position: absolute;
    width: 100%;
    background: #525050;
    top: inherit;
    transform: translateY(44px);
    z-index: 10;
}

.more_horizonmenu-list .main_section_item:hover {
    background: #525050;
}
.more_horizonmenu-list a{
    white-space: unset;
}

/* more horizontal end */


/** menu hamburger all **/
.menu_all_ul {
    padding: 0 0 0 10px;

    transition: .2s;
    transform: translateX(-100%);

    color: #fff;
}

.menu_all_ul_on {
    transition: .3s;
    transition-delay: .3s;
    transform: translateX(0);
}

.humburger_all_item_box {
    cursor: pointer;
}

.humburger_all_item_line1,
.humburger_all_item_line2,
.humburger_all_item_line3 {
    display: block;

    width: 25px;
    height: 2px;
    margin: 5px 0;

    transition: .3s;

    background: white;
}

.humburger_all_item_box:hover .humburger_all_item_line1 {
    transition: .3s;
    transform: rotate(15deg);
}

.humburger_all_item_box:hover .humburger_all_item_line2 {
    transition: .3s;
    transform: translateX(-10px);
}

.menu_all_block {
    position: fixed;
    z-index: 999;
    top: 0;
    left: -150vw;

    overflow-x: hidden;

    width: 350px;
    height: 100vh;

    transition: .5s;

    background: black;
}

.menu_all_block_on {
    left: 0;
}

.close_menu_all_block {
    position: absolute;
    top: 20px;
    right: 20px;

    display: inline-block;
    display: flex;

    width: 26px;
    height: 26px;
    padding: 2px 15px;

    cursor: pointer;

    color: white;

    justify-content: center;
    align-items: center;
}

.close_menu_all_block_line_1,
.close_menu_all_block_line_2 {
    position: absolute;

    display: block;

    width: 20px;
    height: 2px;

    transition: .3s;
    transition-delay: 0s, .3s;
    transition-property: height, transform;

    background: #e4d7d4;
}

.close_menu_all_block_line_1 {
    transform: rotate(45deg);
}

.close_menu_all_block_line_2 {
    transform: rotate(-45deg);
}

.close_menu_all_block:hover .close_menu_all_block_line_1,
.close_menu_all_block:hover .close_menu_all_block_line_2 {
    height: 20px;

    transition-delay: 0s, .3s;
    transition-property: transform, height;
    transform: rotate(0deg);
}

.menu_all_box {
    font-size: 19px;
    font-weight: normal;

    padding-top: 100px;
}

.menu_all_ul li {
    position: relative;

    list-style-type: none;
}

.menu_all_ul li p {
    cursor: pointer;
}

.menu_all_box .menu_all_ul a {
    display: block;

    color: #afacac;
}

.menu_all_ul .menu_first_item {
    margin: 20px 10px;

    text-transform: uppercase;
}

.menu_all_ul .menu_second_item,
.menu_all_ul .menu_third_item {
    margin: 7px 0 0 0;

    text-transform: lowercase;
}

.menu_second_item {
    padding: 10px;
}

.menu_second_item a,
.menu_second_item p {
    padding-right: 20px;
}

.menu_second_item.item_arrow p {
    font-weight: bold;
}

.menu_third_item {
    padding: 5px 25px;
}

.menu_third_item a,
.menu_third_item p {
    display: block;

    max-width: 80%;
}

.menu_second_ul,
.menu_third_ul {
    display: none;

    padding: 0 0 0 10px;

    color: #afacac;
}

.menu_first_item:after,
.menu_second_item.item_arrow:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;

    position: absolute;
    z-index: -1;
    top: 0;
    right: 20px;

    width: 10px;
    height: 20px;

    content: '\f0da';
    transition: .4s;

    opacity: 1;
}

.menu_second_item.item_arrow:after {
    top: 11px;
}

.menu_first_item.submenu-open:after {
    transform: rotate(90deg) translate(4px, 2px);
}

.menu_second_item.item_arrow.submenu-open:after {
    transform: rotate(90deg) translate(3px, 2px);
}

.activelink_hamburger>a,
.activelink_hamburger>p {
    position: relative;
}

.activelink_hamburger>a:before,
.activelink_hamburger>p:before {
    position: absolute;
    bottom: -5px;
    left: 0;

    display: block;

    width: 20px;
    height: 1px;

    content: '';

    background: white;
}

/** menu hamburger all end**/

.active_subsection_item a {
    color: #b6b0ad;
}


/* header end */
/* footer */
footer {
    font-size: 16px;

    padding-top: 50px;

    color: #fff;
    background: #231f20;
}

footer h4 {
    font-size: 17px;
    font-weight: 600;

    margin: 0 0 10px 0;
}

.wrap_footer {
    max-width: 1245px;
    margin: auto;
}

.logo_box_footer {
    display: flex;

    margin-bottom: 50px;

    justify-content: center;
    align-items: center;
}

.logo_footer {
    display: flex;

    width: 45%;
    margin-right: 15px;

    align-items: center;
}

.logo_footer:before {
    display: block;

    width: 100%;
    height: 1px;
    margin-right: 10px;

    content: '';

    background: #fff;
}

.logo_footer img {
    width: 130px;
    min-width: 130px;
    max-width: 158px;
}

.quote_footer {
    font-family: Georgia;
    font-size: 18px;

    display: flex;

    width: 55%;

    align-items: center;
    justify-content: space-between;
}

.quote_footer:after {
    display: block;

    width: 60%;
    height: 1px;

    content: '';

    background: #fff;
}

.row_footer {
    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

.column_footer {
    width: 25%;
    margin-bottom: 50px;
}

.simple_link {
    display: table;

    margin-bottom: 5px;

    transition: .3s;

    color: #ddd;
}

.simple_link:hover {
    color: #ed1d24;
}

.underline_link {
    transition: .3s;
    text-decoration: underline;

    color: #ddd;
}

.underline_link:hover {
    text-decoration: none;

    color: #ed1d24;
}

.privacy_policy_footer {
    display: table;

    max-width: 200px;
}

.social_icon {
    display: inline-flex;

    width: 35px;
    height: 35px;

    transition: .3s;

    color: #000;
    background: #fff;

    justify-content: center;
    align-items: center;
}

.social_icon:hover {
    color: red;
}

.address_raex_footer {
    max-width: 230px;
}

.column_footer_contacts p {
    margin-bottom: 10px;
}

.column_footer_contacts a {
    color: #fff;
}

.column_footer_contacts a:hover {
    color: #ed1d24;
}

/* footer end */
/* news on section page */
.block_newsbox {
    font-size: 16px;

    margin-bottom: 20px;
}

.block_newsbox_ad_row {
    display: flex;

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

    border-top: 1px solid #c4c4c4;
}

.block_newsbox_ad_col {
    max-width: 70%;
    margin-right: 20px;
}

.ul_newsbox {
    display: flex;

    margin: 0 0 10px;
    padding: 0;

    list-style-type: none;
}

.all_news_box {
    flex-wrap: wrap;
}

#li_all_news_box {
    position: relative;

    width: calc(20% - 20px);
    margin-bottom: 20px;
}

.li_newsbox {
    margin-right: 20px;
}

#box_last_add {
    position: relative;

    width: 25%;
}

.label_rub {
    font-size: 13px;

    position: absolute;
    top: 0;
    right: 0;

    display: block;

    padding: 10px;

    text-align: right;

    color: #fff;
    background: #ed1d24;
}

.partner_rub:after {
    content: 'рекламный материал';
}

.news_rub:after {
    content: 'новость';
}

.ranking_rub:after {
    content: 'рэнкинг';
}

.link_newsbox {
    display: block;

    transition: .3s;

    color: #000;
}

.link_newsbox:hover {
    color: #ed1d24;
}

.img_newsbox {
    margin-bottom: 10px;
}

.heading_newsbox {
    margin: 0 0 10px;
}

.decoration_box {
    padding-top: 20px;

    border-top: 1px solid #c4c4c4;
}

/** main theme **/
.block_main_theme {
    display: flex;

    margin-bottom: 20px;
}

.box_main_theme {
    width: 65%;
    margin-right: 20px;
}

.box_main_theme h2 {
    font-size: 22px;
}

.row_main_theme a {
    display: flex;
}

.row_main_theme img {
    width: 40%;
    height: 230px;
}

.annotation_main_theme {
    width: 45%;
    padding-left: 20px;
}

.heading_annotation_main_theme {
    font-size: 34px;
    line-height: 1;

    margin: 0 0 15px;

    color: #212529;
}

.subheading_annotation_main_theme {
    font-size: 20px;

    margin: 0 0 10px;

    color: #212529;
}

.excerpt_main_theme {
    font-size: 16px;

    margin-bottom: 10px;

    color: #6c6c6c;
}

.link_triangle_box {
    text-align: right;
}

.link_triangle_box_show_more {
    text-align: center;
}

.link_triangle_bottom:after {
    position: absolute;
    top: 9px;
    margin-left: 5px;
    content: '';
    border-top: 7px solid;
    border-bottom: 7px solid transparent;
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
}

/** main theme end **/
/** advertisment **/
.ad_short {
    width: 30%;
}

.ad_long {
    margin-bottom: 20px;

    text-align: center;
}

.ad_long iframe {
    width: 100%;
    height: 100%;
}

.ad_short_sidebar {
    display: flex;

    margin-bottom: 10px;
}

/** advertisment end **/
/** news and sidebar **/
.news_and_sidebar_row {
    display: flex;
}

.block_newsbox_col {
    width: 70%;
    min-height: 500px;
    margin-right: 40px;
}

.li_newsbox img {
    width: 100%;
    max-width: 406px;
    height: 140px;
}

.link_advice img {
    width: 60px;
    height: 60px;
}

#row_popular,
#row_last_news {
    justify-content: space-between;
}

#row_popular li,
#row_last_news li {
    width: 30%;
}

.sidebar_col {
    width: 30%;
}

.link_advice {
    display: flex;
}

.ul_advice {
    flex-direction: column;

    margin-right: 20px;
}

.link_advice img {
    margin-right: 20px;
}

.txt_advice {
    flex: 1;
}

.block_advice {
    width: 35%;
    padding: 20px;
}

#row_advice li {
    margin: 0 0 20px 0;
}

.block_advice h3 {
    font-size: 16px;
}

.block_advice p {
    font-size: 14px;
}

/** news and sidebar end **/
/** index **/
.block_index {
    display: flex;
    flex-direction: column;
}

.img_index {
    width: 100%;
    margin-bottom: 20px;
}

/** index end **/
/** editor choise **/
.block_row_editor_choice {
    margin-bottom: 20px;
}

.block_editor_choice {
    max-width: 70%;
    padding-top: 20px;

    border-top: 1px solid #c4c4c4;
}

.row_editor_choice {
    display: flex;

    margin: 0;
    padding: 0;

    list-style-type: none;

    flex-wrap: wrap;
    justify-content: space-between;
}

.box_editor_choice {
    width: 32%;
    margin-bottom: 20px;
    margin-right: 15px;

    background: #e5e5e5;
}

.box_editor_choice:nth-child(3n+3) {
    margin-right: 0;
}

.link_editor_choice {
    display: block;

    padding: 25px;
}

/** editor choise end **/
.block_last_news {
    max-width: 70%;
    margin-right: 40px;
    padding-top: 20px;

    border-top: 1px solid #c4c4c4;
}

.box_last_news {
    margin-right: 20px;
}

.row_last_news {
    display: flex;

    max-width: 60%;
    margin-bottom: 50px;

    justify-content: space-between;
}

/* news on section page end */
/* contact form */
.page_container_form_raex {
    display: flex;
    flex-direction: row;

    max-width: 1245px;
    margin: 60px auto 120px;

    justify-content: space-between;
}

.form_raex_description {
    font-size: 22px;

    max-width: 600px;
    margin-bottom: 60px;
}

.body_form_raex {
    font-size: 16px;

    display: flex;
    flex-direction: column;

    width: 100%;
}

.input_form_raex {
    font-size: 16px;

    margin-bottom: 30px;
    padding: 10px 10px 10px 25px;

    border: none;
    border-bottom: 1px solid;
}

.textarea_raex {
    min-height: 200px;
    margin-bottom: 15px;

    border: 1px solid;
}

.form_button_raex {
    font-size: 19px;

    cursor: pointer;
    transition: .3s;
    text-transform: lowercase;

    border: none;
    background: transparent;
}

.form_button_raex:hover {
    color: #ed1d24;
}

.thank_you_box,
.error_comment_box {
    margin-bottom: 30px;
    padding: 20px;

    border-top: 2px solid #c5c5c5;
    border-bottom: 2px solid #c5c5c5;
}

.thank_you_box p,
.error_comment_box p {
    margin-bottom: 10px;
}

.acceptance_box {
    margin: 10px 0 30px;
}

.select_reason {
    margin: 15px 0 40px 0;
    padding: 10px 0 10px 25px;

    border: none;
    border-bottom: 1px solid;
}

.select_reason {
    outline: none;
}

select:required:invalid {
    color: gray;
    border-color: #000;
}

option[value=''][disabled] {
    display: none;
}

option {
    color: black;
}

/* contact form */
/* news page */
/* карта */
.map_view #carouselExampleIndicators {
    display: none;
}

#view_block_rating {
    position: relative;
}

.map_box {
    position: absolute;

    transform: scale(0);
}

.map_view .map_box {
    position: static;

    transform: scale(1);
}

.map_box,
.map_box iframe,
.map_box #map {
    width: 100%;
    min-height: 100%;

    border: none;
}

/* карта end */

/* слайдер */
.card_view .table_header,
.slide_view .table_header {
    display: none;
}

.carousel-control-prev {
    right: 70px;
    left: auto;

    display: none;

    width: 70px;
    height: 70px;

    opacity: 1;
    background: #fc161f;
}

.carousel-control-next {
    display: none;

    width: 70px;
    height: 70px;

    opacity: 1;
    background: #fc161f;
}

.slide_view .carousel-control-prev,
.slide_view .carousel-control-next {
    display: flex;
}

/*слайдер end */

/* таблица */

.table_view .table_display_none p {
    display: none;
}

.table_view .table_display_none {
    display: none;
}

.table_view .number_ranking.table_display_none {
    display: none;
}

.table_view .table_display .table_display_none {
    display: none;
}

.table_display,
.table_display h3 {
    font-size: 16px;
}

.table_view .table_display {
    display: flex;

    margin: 0;
    padding: 4px;

    background: 0;

    align-items: baseline;
}

.table_view .member_link i {
    transition: 0s;

    color: #877f7f;
    background: none;
}

.table_view .number_tag {
    font-size: 18px;
    font-weight: 100;

    display: flex;

    color: black;

    justify-content: center;
}


.table_view .rating_tag {
    flex-direction: row;

    width: auto;
    margin: 0;
    padding: 0;

    color: #000;
    background: none;

    flex: 1;
}

.table_view .member_name {
    padding-right: 20px;
    padding-left: 10px;
}

.member_name_row {
    display: flex;

    align-items: center;
}

.member_name h3 {
    font-weight: 100;

    margin: 0;
    flex: 1;
}

.card_view .member_name h3,
.slide_view .member_name h3 {
    font-weight: 900;
}

.member_name img:not(.priority_client_info_icon) {
    display: none;
    float: left;

    width: 60px;
    height: auto;
    margin-right: 15px;
}

.table_view .member_name img {
    display: block;
}

.table_view .member_metric {
    margin-right: 15px;
}

.table_view .member_tags_container {
    display: flex;

    margin: 0;

    flex: 1;
    align-items: center;
    justify-content: center;
}

.table_view .member_link {
    display: flex;

    width: 10%;

    align-items: center;
    justify-content: center;
}

.table_view .tag_img {
    margin-right: 0;
}

.table_view .card_news_body>div,
.table_view .card_news_body>h3,
.table_view .card_news_body>p {
    margin: 0;
    padding: 7px 10px;

    border-right: 1px solid #cacaca;
    border-bottom: 1px solid #cacaca;

    justify-content: unset;
    flex: 1;
}

.table_view .card_news_body>div:nth-child(1) {
    border-left: 1px solid #cacaca;
}

.table_view .card_news_body>h3 {
    min-width: 200px;
}

.table_view .card_news_body {
    padding: 0;

    align-items: unset;
}

.table_view .table_header>span,
.table_view .card_news_body>div,
.table_view .member_name,
.table_view .card_news_body>p {
    display: table-cell;

    vertical-align: middle;
}

.table_view .display_other {
    display: none;
}


.table_view .carousel {
    display: table;
}

.table_view .carousel .carousel-inner {
    display: table-row-group;
}

.table_view .carousel .table_header,
.table_view .carousel .card_news_body.card_sl {
    display: table-row;
}


.table_view .r_cell {
    text-align: right;
}

.table_view .c_cell {
    text-align: center;
}

/* таблица end*/

.news_body {
    margin-bottom: 30px;
}

.txt_body_nav {
    display: flex;
    width: 60%;
    margin-bottom: 40px;
    color: #fff;
    justify-content: space-between;
}

.txt_body_name {
    margin-right: 20px;
    padding: 12px;

    cursor: pointer;
    transition: .3s;

    background: #fc171f;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px;
}

.txt_body_name:hover {
    background: #ca0000;
}

/*.article_name:after {
    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 4px 0 0 10px;

    content: '';
    transform: rotate(-45deg);
    transform-origin: 70% 30%;

    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}*/

/*.ranking_name:after {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    top: 0;
    margin: 4px 0 0 10px;
    content: '';
    transition: transform .2s linear;
    transform: rotate(135deg);
    transform-origin: 70% 30%;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}*/

.article_name:after {
    content: "\f107";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

.ranking_name:after {
    content: "\f103";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

.cards_container {
    width: 100%;
    margin: auto;
}

.timestamp {
    font-size: 19px;

    display: flex;

    color: #666;

    align-items: center;
}

.timestamp i {
    margin-right: 10px;
}

.timestamp .date_data {
    margin-bottom: 0;
}

.table_subhd {
    font-size: 22px;
    font-weight: 600;
    margin: 60px 0 40px 0;
}

.news_page_container {
    display: flex;

    border-bottom: 2px solid #c4c4c4;

    justify-content: space-between;
}

.news_page_container p,
.news_lead {
    line-height: 1.4;

    margin-bottom: 30px;
}

.news_preview {
    max-width: 70%;
}

.tag_box {
    font-weight: 600;

    display: flex;

    color: #7a7a7a;

    flex-wrap: wrap;
}

.tag_box h3 {
    font-size: 16px;
    font-weight: 600;

    display: flex;

    margin-right: 10px;
    margin-bottom: 10px;

    align-items: center;
}

.tag_box h3:after {
    display: block;

    width: 2px;
    height: 100%;
    margin-left: 10px;

    content: '';

    background: #7a7a7a;
}

.tag_box h3:last-child:after {
    content: none;
}

.news_lead {
    font-size: 30px;
    font-weight: 600;
}

.news_description {
    font-size: 25px;
}

.tab_catalog_news {
    display: flex;
    align-items: center;
}

.tab_catalog_news p {
    margin-left: 10px;
}

.tab_catalog_news a {
    transition: 0s;
    opacity: .6;
}

.tab_catalog_news a:hover {
    opacity: 1;
}

.tab_catalog_news .active {
    opacity: 1;
    background: #fff;
}

.svg_tab_icon {
    width: 33px;
    height: 30px;
    margin-right: 3px;
}

.card_tablink .svg_tab_icon {
    width: 33px;
    height: 25px;
}

.tab_catalog_news a {
    font-size: 16px;
    display: flex;
    transition: .3s;
    text-transform: lowercase;
    color: #000;
    align-items: center;
    justify-content: space-around;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    border: 1px solid #bebebe;
    background: #e4e4e4;
}

.tab_catalog_news svg {
    margin: 3px 0;
    height: 11px;
}

.icon_tab:hover p,
.icon_tab:hover svg path,
.icon_tab:hover svg rect {
    transition: .2s;

    color: #ed1d24;

    fill: #ed1d24;
}

.tab_catalog_news a:last-child {
    margin-right: 0;
}

.toolbar_newspage {
    margin: 10px auto 50px auto;
}

.card_view .card_news_body {
    position: relative;
}

.card_news_body {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 50px 50px;

    background: #e9e9e9;
}

.card_news_body a {
    transition: 0s;
}

.rating_tag {
    font-weight: bold;

    display: flex;
    flex-direction: column;

    width: 100px;
    margin-bottom: 20px;
    padding: 10px;

    color: #fff;
    background: #fc171f;

    align-items: center;
    justify-content: center;
}

.good_tag {
    background: #fc171f;
}

.neutral_tag {
    background: #f8335a;
}

.bad_tag {
    background: #211ed4;
}

.number_tag {
    font-size: 24px;
}

.rating_tag p {
    font-size: 14px;

    margin: 0;
}

.member_logo {
    max-width: 80px;
    margin-bottom: 20px;
}

.card_view .member_name,
.slide_view .member_name {
    font-size: 22px;
}

.member_description {
    max-width: 800px;
    margin-bottom: 20px;
}

.member_indicator {
    display: flex;

    margin-bottom: 10px;

    flex: 1;
}

.member_indicator_txt {
    margin-right: 15px;
}

.card_view .member_indicator_number,
.slide_view .member_indicator_number {
    font-weight: 900;
}

.member_position {
    display: flex;

    margin-bottom: 15px;
}

.member_position_number {
    font-weight: 900;

    margin-left: 5px;
}

.col_table_other {
    flex: 1;
}

.member_tags_container {
    display: flex;

    margin-bottom: 30px;
}

.card_news_graph {
    margin-top: 30px;
}

.tag_img {
    margin-right: 20px;
}

.tag_img_table {
    margin-right: 0;
}

.member_link i {
    display: inline-flex;

    width: 35px;
    height: 35px;

    color: #fff;
    background: #ed1d24;

    align-items: center;
    justify-content: center;
    border-radius: 300px;
}

.member_link i:hover {
    transition: .3s;

    color: #ed1d24;
    background: #fff;
}

.toolbar_list_newspage {
    display: flex;

    padding-left: 0;

    list-style-type: none;

    justify-content: center;
    align-items: center;
}

.toolbar_button_newspage {
    font-size: 22px;

    display: flex;

    align-items: center;
}

.toolbar_item_newspage button {
    color: #ed1d24;
    border: none;
    background: transparent;
}

.toolbar_item_newspage {
    margin-right: 15px;
}

.toolbar_item_newspage:last-child {
    margin-right: 0;
}

.toolbar_button_text_newspage {
    margin-left: 5px;

    color: #7a7a7a;
}

.body_fast_form_raex {
    max-width: 80%;
    margin: auto auto 50px;
}

.fields_form_raex {
    display: flex;

    margin-bottom: 20px;

    justify-content: center;
    align-items: baseline;
}

.acception_text {
    font-size: 16px;

    margin-top: 0;

    text-align: center;
}

.input_fast_form_raex {
    width: 30%;
    margin: 0 40px 0;
    padding: 10px;

    text-align: center;
}

.comments_news_container {
    display: flex;

    justify-content: center;
}

.comments_box,
.comments_news_box {
    width: 50%;
    padding: 20px;
}

/** tab **/
.carousel {
    width: 100%;
}

/* выделение цветом */
.carousel_table .carousel-inner .priority_client:nth-child(even) {
    background: #ffebdc;
}

.priority_client_info_box h3 {
    display: inline-block;
    font-size: 20px;
}

.priority_client h3,
.table_view .priority_client {
    font-weight: 900;
}

.carousel_table .carousel-inner .priority_client:nth-child(odd) {
    background: #ffd8bb;
}

/* выделение цветом end */

.slide_view .carousel-control-prev:hover,
.slide_view .carousel-control-next:hover {
    background: #da0009;
}

.slide_view .carousel-control-prev:focus,
.slide_view .carousel-control-next:focus {
    opacity: 1;
}

.slide_view .carousel-control-prev-icon,
.slide_view .carousel-control-next-icon {
    position: relative;

    background-image: none;
}

.slide_view .carousel-control-prev-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: 0 0;

    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
}

.slide_view .carousel-control-next-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: 0 0;

    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
}


.card_news_display .carousel-control-prev-icon,
.card_news_display .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

.carousel .carousel-indicators {
    bottom: 30px;
}

.carousel-indicators li {
    background: black;
}

.carousel-indicators .active {
    background: #ed1d24;
}

.comments_news_box h3,
.comments_box h3 {
    font-size: 25px;

    margin-bottom: 30px;
}

.comments_news_box h4 {
    font-size: 20px;
}

.member_metric {
    display: flex;

    margin-bottom: 5px;

    flex: 2;
}



.member_metric_txt {
    font-weight: bold;

    margin-right: 15px;
}

.member_metric_number {
    text-transform: lowercase;
}



.tag_img img {
    width: 80%;
}

.table_header {
    font-size: 15px;

    display: flex;

    width: 100%;

    color: white;
    background: black;

    align-items: center;
}

.table_header_off {
    display: none;
}

.table_header_number {
    text-align: center;

    flex: 1;
}

.table_header_name {
    min-width: 420px;
}

.table_header_indicator {
    flex: 1;
}

.table_header_metric {
    margin-right: 15px;

    flex: 2;
}

.table_header_other {
    padding: 10px;

    flex: 1;
}

.table_header_awards {
    width: 20%;

    text-align: center;
}

.table_header_web {
    width: 10%;

    text-align: center;
}

#view_block_rating {
    display: flex;

    flex-wrap: wrap;
}

#view_block_rating.table_view {
    overflow-x: auto;
}

.table_header span {
    padding: 5px 10px;

    border: 1px solid #2f2e2e;

    flex: 1;
}

.table_header {
    width: auto;

    align-items: unset;
}




.block_advice_end .ul_newsbox.ul_advice {
    display: flex;
    flex-direction: row;
}

.block_advice_end h2 {
    margin: 0 0 10px 10px;
}

.block_advice_end .link_advice {
    flex-direction: column;
}

.block_advice_end .block_advice {
    width: 100%;
    margin-top: 50px;

    border-top: 1px solid;
}

.block_advice_end .block_advice img {
    width: 100%;
    height: 150px;
}

.block_advice_end .li_newsbox {
    padding: 10px 20px 10px 10px;

    flex: 1;
}









.display_other {
    font-weight: 100;

    margin-right: 5px;
}

.card_view .col_table_other,
.slide_view .col_table_other {
    font-weight: 600;

    margin-bottom: 15px;
}

/** tab end **/
.social_enter {
    display: flex;

    margin-bottom: 20px;

    align-items: center;
}

.social_enter .toolbar_list_newspage {
    margin-bottom: 0;
    margin-left: 15px;
}

.social_enter .toolbar_button_newspage {
    font-size: 16px;

    width: 35px;
    height: 35px;
    margin-right: 10px;
    padding: 5px;

    transition: .3s;

    border: 1px solid;

    justify-content: center;
}

.social_enter .toolbar_button_newspage:hover {
    color: #fff;
    background: #ed1d24;
}

.comments_box h4 {
    font-size: 19px;

    margin-bottom: 20px;
}

.no_robot_box {
    display: flex;

    margin-bottom: 20px;

    align-items: center;
}

.no_robot_box span {
    margin-left: 10px;
}

.human_comment_box {
    margin-bottom: 40px;
}

.human_name {
    text-transform: capitalize;
}

.human_text {
    font-size: 17px;

    margin-bottom: 10px;
}

.responce_button {
    font-size: 18px;

    text-transform: lowercase;
}

.human_responce_box {
    margin-left: 30px;
    padding-left: 20px;

    border-left: 5px solid #e7e7e7;
}

/* news page end */
/* contacts */
.department_row_contacts {
    display: flex;

    max-width: 70%;
    margin-bottom: 50px;

    justify-content: space-between;
}

.department_column_contacts p {
    margin: 0 0 10px;
}

.address_box_contacts {
    margin-bottom: 55px;
}

.map_contacts iframe {
    width: 100%;
}

/* contacts end */
/* database */
.search_content_database {
    width: 70%;
    margin-bottom: 30px;
}

.tabcontent p {
    margin-bottom: 15px;
}

.database_container button {
    border: none;
    background: transparent;
}

.tab_catalog_main {
    margin-bottom: 30px;
}

.tab_catalog_main button {
    font-size: 20px;

    margin: 0 15px 10px 0;
    padding: 10px 0;

    border-bottom: 1px solid black;
}

.tab_catalog_ru button,
.tab_catalog_en button {
    font-size: 18px;

    width: 30px;
    margin: 5px 0;
}

.tab_catalog_ru {
    margin-bottom: 10px;
}

.tab_catalog_en {
    margin-bottom: 40px;
}

.database_ad_row {
    display: flex;

    justify-content: space-between;
}

.search_field_database {
    display: flex;

    width: 250px;
    margin-bottom: 50px;

    border-bottom: 1px solid;

    align-items: center;
}

.search_input {
    font-size: 18px;

    padding: 5px 5px 10px 15px;

    border: none;
}

.pagination {
    display: block;

    padding: 0;

    list-style-type: none;

    text-align: center;
}

.pagination li {
    display: inline-block;

    padding: 0 10px;
}

.pagination li a {
    color: #000;
}

.pagination li a:active,
.pagination li a:hover {
    color: #ed1d24;
}

.name_rating_card {
    color: #000;
}

.body_card_database .widget_link {
    opacity: 0;
    height: 0;
    visibility: hidden;
    display: block;

}

.modal_widget {
    position: fixed;
    background: #0000006b;
    width: 100vw;
    min-width: 280px;
    height: 100vh;
    padding: 10px;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.box_widget_main {
    width: 50vw;
    height: auto;
    background: #fff;
    padding: 15px;
}

.close_widget_box {
    width: 40px;
    height: 40px;
    position: relative;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: right;
    cursor: pointer;
}

.close_widget_line {
    background-color: #333;
    width: 20px;
    height: 2px;
    display: flex;
}

.close_widget_line:first-child {
    transform: rotate(45deg) translateX(1px);
}

.close_widget_line:last-child {
    transform: rotate(-45deg) translateX(1px);
}

.heading_widget {
    font-size: 16px;
    padding: 10px;
}

/* database end */

/* database card */
.card_database_container h1 {
    font-size: 36px;

    margin-bottom: 40px;
}

.txt_card_database {
    font-size: 16px;
}

.img_card_database {
    height: auto;
    max-width: 150px;
}

.database_company_main_info {
    display: flex;
    padding: 10px 0 20px;
    border-bottom: 1px solid #a0a0a0;
    align-items: center;
}

.database_company_main_info h3 {
    width: 25%;
    margin-right: 10px;
    font-size: 16px;
}

.database_company_main_info p,
.database_company_main_info a {
    width: 75%;
}

.org_descr_card_database {
    font-size: 17px;
}

.body_card_database {
    margin-top: 100px;
    font-size: 16px;
}

.body_card_database h2,
.desc_card_database h2 {
    margin-bottom: 30px;
    font-size: 25px;
}

.body_card_database table {
    overflow-y: hidden;
}

.desc_card_database {
    font-size: 16px;
    margin: 40px 0 100px;
}

.desc_card_database h3 {
    margin-bottom: 50px;
}

.raiting_card_tizer {
    max-width: 350px;
    display: inline-flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 24px;
    margin-right: 40px;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 80px 0px;
}

.raiting_card_tizer p {
    margin-bottom: 20px;
}

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

.start_raiting_info {
    background: #f4f4f4;
    padding: 20px;
    border-left: 4px solid #4921d6;
    margin: 20px;
}

.description_card_database {
    align-items: baseline;
}

.description_info {
    line-height: 1.5;
    width: 75%;
}

.description_content {
    margin-bottom: 20px;
    max-width: 90%;
}

/* database card end */

/* personal data */
.personal_data_container p {
    margin-bottom: 30px;
}

/* personal data end */

/* gallery */
.container_gallery {
    margin: 50px 0;
    padding-right: 10px;
}

.swiper-container {
    width: 100%;
    height: 300px;
    margin-right: auto;
    margin-left: auto;
}

/*
.gallery-top img {
    height: 470px;
}
*/

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.gallery-top {
    width: 100%;
    height: 80%;

    cursor: w-resize;
}

.gallery-thumbs {
    box-sizing: border-box;
    height: 20%;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    opacity: .7;
}

.gallery-thumbs .swiper-wrapper {
    flex-wrap: wrap;
}

.gallery-thumbs .swiper-wrapper .swiper-slide {
    width: 12.5% !important;
    height: 80px;
    padding: 0 4px 4px 0;
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;

    cursor: pointer;

    object-fit: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    width: 100%;

    object-fit: cover;
}

.gallery_descr {
    font-style: italic;

    padding: 10px 0 20px 10px;

    color: #4c4c4c;
}

.swiper-button-next,
.swiper-button-prev {
    top: 0;

    height: 470px;
    margin-top: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0;

    box-sizing: content-box;
    padding-left: 30px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0;

    box-sizing: content-box;
    padding-right: 30px;
}

.gallery_descr p {
    margin: 0;
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    outline: none;
    background: none;
}

.swiper-button-next.swiper-button-white:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 16px;
    height: 16px;

    content: '';
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: 0 0;

    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
}

.swiper-button-prev.swiper-button-white:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 16px;
    height: 16px;

    content: '';
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: 0 0;

    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
}

/* gallery end */

/* news bar */
.bar_news {
    padding: 15px 0 0 15px;
}

.bar_news {
    display: flex;

    justify-content: space-between;
}

.bar_news>* {
    font-size: 18px;

    color: #666;
}

.source_link {
    display: block;

    margin-bottom: 10px;
}

.bar_news .date_data {
    margin-bottom: 20px;
}

.bar_news i {
    width: 15px;
    margin-right: 10px;
}

.timestamp {
    margin-bottom: 20px;
}

.more_info_analytics a {
    display: flex;

    align-items: center;
}

.more_info_analytics i {
    font-size: 17px;
}

.source_link_box a {
    font-size: 14px;

    display: flex;

    color: #666;
}

.source_link_box a:hover {
    color: #000;
}

/* news bar end */

/* news other */
.ad_short .block_advice {
    width: 100%;
}

/* news other end*/

/* comment in news */
.row_comment {
    display: flex;

    max-width: 90%;
    margin: 0 auto 30px;
    padding: 20px 0;

    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
}

.col_comment_img {
    display: flex;

    flex: 1;
}

.comment_img_box img {
    cursor: pointer;
}

.col_comment_text {
    flex: 5;
}

.comment_img_box {
    overflow: hidden;

    width: 100px;
    height: 100px;

    border-radius: 100%;
    background: url('img_css/comment_img_bg.svg') center;
    -webkit-background-size: cover;
    background-size: cover;
}

.comment_img_box img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

p.name_comment {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;

    margin-bottom: 12px;
}

.col_comment_text {
    font-size: 18px;
}

p.text_comment {
    margin: 0;
}

/** more text comment end **/
.morecontent span {
    display: none;
}

.morelink {
    font-size: 14px;
    font-weight: 600;

    display: inline-block;

    margin-left: 5px;

    color: grey;
}

.morelink:focus,
.morelink:active {
    color: grey;
}

.morelink:hover {
    color: #000;
}

/* more text comment end end */

/** modal **/
.modal {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100vh;
    padding: 20px;

    background: rgba(0, 0, 0, .7);

    justify-content: center;
    align-items: center;
}

.modal__img {
    width: 70%;
    max-width: 700px;
}

.modal__boton {
    font-family: monospace;
    font-size: 25px;
    font-weight: bold;
    line-height: 50px;

    position: absolute;
    top: 30px;
    right: 30px;

    display: flex;

    width: 50px;
    height: 50px;

    cursor: pointer;
    text-align: center;

    color: #fff;

    align-items: center;
    justify-content: center;
}

.modal__boton img {
    width: 44px;
}

.img_zoom {
    animation-name: zoom-in;
    animation-duration: .3s;
    max-width: 80%;
    max-height: 80%;
}

@keyframes zoom-in {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/** modal end **/

.priority_client_info_icon {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 7px;

    cursor: pointer;
    transition: .3s;

    color: white;
    border-radius: 300px;
    background: rgba(156, 172, 190, .71);
}

.priority_client_info_icon:hover {
    transition: .3s;

    background: #9cacbe;
}

.card_view .priority_client_info_icon,
.slide_view .priority_client_info_icon {
    display: none;
}

.table_view .card_news_body .priority_client_info_block {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    display: flex;
    display: none;

    width: 100%;
    height: 100%;

    background: rgba(47, 47, 47, .9);

    justify-content: center;
    align-items: center;
    font-weight: 300;
}

.priority_client_info_box {
    position: relative;
    top: 50%;
    left: 50%;

    overflow: hidden;

    width: 42%;
    min-width: 300px;
    height: 65vh;
    padding: 50px 5% 30px;

    transform: translate(-50%, -50%);

    border-radius: 20px;
    background: #e8e8e8;
}

.priority_client_info_cont h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.priority_client_info_box svg {
    margin: 5px 10px 15px;
    display: inline-block;
    width: 10px;
}

.card_view .priority_client_info_box svg path,
.slide_view .priority_client_info_box svg path {
    fill: #fff;
}

.priority_client_info_cont {
    overflow-y: auto;

    box-sizing: border-box;
    /*max-width: 420px;*/
    height: 70%;
    padding: 5px 10px;
    line-height: 1.5;
}

.priority_client_info_close {
    position: absolute;
    top: 15px;
    right: 15px;

    display: flex;
    flex-direction: column;

    width: 40px;
    height: 40px;

    cursor: pointer;

    justify-content: center;
    align-items: center;
}

.priority_client_info_close span {
    display: block;

    width: 20px;
    height: 2px;

    background: #000;
}

.priority_client_info_close span:nth-child(1) {
    transform: rotate(45deg);
}

.priority_client_info_close span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -2px);
}

.card_view .card_news_body.priority_client>div:nth-child(n+3),
.slide_view .card_news_body.priority_client>div:nth-child(n+3) {
    width: 50%;
}

.card_view .priority_client_info_block,
.slide_view .priority_client_info_block {
    position: absolute;
    top: 0;
    right: 0;

    height: 100%;
    margin-bottom: 30px;
}

.card_view .priority_client_info_box,
.slide_view .priority_client_info_box {
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    transform: translate(0, 0);

    border-radius: 0;
    background: #2F2F2F;
    color: #fff;
}

.card_view .priority_client_info_cont,
.slide_view .priority_client_info_cont {
    max-width: 100%;
}

.card_view .priority_client_info_close,
.slide_view .priority_client_info_close {
    display: none;
}

/* widget */

.widget_container {
    margin: 50px 0;
}

.btn_view_widget:after {
    content: "\f06e";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 14px;
    margin-top: 3px;
    margin-left: 5px;
}

.btn_view_widget {
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    color: #673AB7;
}

.box_widget {
    display: none;
    margin: 20px auto 100px;
}

.box_widget_row {
    display: flex;
    width: 100%;
}

.col_widget {
    padding: 0 12px;
}

.col_code_widget {
    flex: 1;
    padding: 0 10px;
    font-size: 14px;
}

.col_code_widget textarea {
    width: 100%;
    padding: 15px;
}

/* widget end */

/* 404 */
.page_404_container {
    display: flex;

    min-height: 100vh;
    margin: 0;

    align-items: center;
    justify-content: center;
}

/* 404 end */




/* pagination */
.paginator_container_database {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin: auto;
    position: relative;
}
.paginator_block_database {
    box-sizing: border-box;
    overflow: hidden;
    width: 611px;
}
.paginator_block_database ul {
    list-style-type: none;
    padding: 0;
}
.paginator_block_database li {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.paginator_block_database li a {
    color: #333;
    opacity: .5;
}
.paginator_block_database li.activepagin a {
    color: #000;
    opacity: 1;
}
.paginator_block_database li.activepagin:after {
    content: '';
    width: 10px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
}
.paginator-button-next,
.paginator-button-prev {
    padding: 0;
    width: 43px;
    height: 43px;
    box-sizing: border-box;
    position: static;
    margin: 0 4px;
    outline: none;
    cursor: pointer;
}
.paginator-button-next:after {
    content: "\f054";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    color: #333;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.paginator-button-prev:after {
    content: "\f053";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    color: #333;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* pagination end */




/* media */
@media (min-width: 1920px) {
    .priority_client_info_box {
        width: 32%;
        height: 50vh;
        padding: 50px 3% 30px;
    }
}

@media (min-width: 1025px) {

    .card_view .priority_client_info_block,
    .slide_view .priority_client_info_block {
        display: block !important;
    }
}

@media (min-width:992px) {
    .magazine_link_box:hover .magazine_box_drop_down {
        display: block;
    }


    .menu_item_more:focus .menu_item_more_drop_down,
    .menu_item_more:focus-within .menu_item_more_drop_down,
    .menu_item_more:hover .menu_item_more_drop_down {
        visibility: visible;

        transform: translateY(0);

        opacity: 1;
    }
}

@media  only screen and (max-width: 1024px) {
    .heading_block_triangle:after {
        top: calc(50% - 7.5px);
    }

    .link_triangle:after {
        top: calc(50% - 7px);
    }

    .logo_block,
    .menu_box {
        padding: 0 5%;
    }

    .menu_box {
        font-size: 12px;
    }

    .menu_block_ul li {
        margin-right: 15px;
    }

    .menu_home_sub:after {
        right: -10px;
    }

    .menu_block_ul_more li {
        margin-right: 0;
    }

    .main_raex_container {
        padding: 0 5%;
    }

    footer {
        padding: 50px 5% 0;
    }

    .quote_footer:after {
        width: 80%;
    }

    .callback_info {
        max-width: 150px;
    }

    .annotation_main_theme .link_triangle_box {
        margin: unset;
    }

    .annotation_main_theme {
        width: 60%;
    }

    .ad_main_page {
        display: inline-flex;

        width: 100%;

        justify-content: center;
    }

    .ad_header img,
    .ad_long img,
    .ad_short_sidebar img,
    .ad_short p img {
        object-fit: contain;
    }

    .search_box {
        width: 50%;
    }

    .magazine_link_box,
    .subscription_box {
        width: 100%;
    }

    .txt_body_nav {
        width: 100%;
    }

    .toolbar_item_newspage button {
        font-size: 18px;
    }

    .ul_advice {
        display: flex;

        flex-wrap: wrap;
    }

    /** menu **/
    .menu_box {
        position: fixed;
        z-index: 990;
        top: 0;
        left: -120vw;

        display: block;
        overflow: scroll;

        box-sizing: border-box;
        max-width: 100vw;
        width: 100%;
        height: 100vh;
        padding: 15% 0 15% 15%;

        transition: .3s;

        background: white;
    }

    .menu_box_mobile {
        left: 0;
    }

    .menu_block_ul {
        flex-direction: column;

        height: auto;
        margin: 0;

        align-items: unset;
    }

    .menu_block_ul_more li {
        text-align: left;
    }

    .search_box,
    .magazine_link_box,
    .subscription_box {
        width: 150px;
        height: auto;
        margin: 10px 0;

        justify-content: unset;
    }

    .search_box {
        display: none;
    }

    .search_cont {
        position: static;

        display: block;

        width: 40%;
        margin: 0 0 10px;
        padding: 0 5px;

        background: black;
    }

    .search_cont .search_input::placeholder {
        color: #a5a5a5;
    }

    .search_cont .search_input {
        width: 100%;
        padding: 12px 5px;

        border: none;
    }

    .search_box:after {
        padding-left: 10px;

        content: 'Поиск';

        color: #a6a6a6;
    }

    .menu_item_more:first-child {
        border-top: 1px solid;
    }

    .menu_block_ul li {
        width: 150px;

        border-bottom: 1px solid black;
    }

    .menu_block_ul li a {
        font-size: 17px;

        color: black;
    }

    .subscription_box {
        background: none;
    }

    .subscription_box a,
    .magazine_link_box {
        font-size: 17px;

        color: #000;
    }

    .menu_block_ul li {
        margin: 5px 0;
    }

    .magazine_box_drop_down,
    .magazine_link_box {
        background: none;
    }

    .menu_box .menu_block_ul,
    .menu_box .search_box,
    .menu_box .magazine_link_box,
    .menu_box .subscription_box,
    .menu_box .search_cont {
        position: relative;
        left: -100vw;
        transition:0s;
        /*transition: .3s cubic-bezier(.18, .89, .32, 1.28);
        */
        /*transition-delay: .2s;*/
    }

    .menu_box_mobile .menu_block_ul,
    .menu_box_mobile .search_box,
    .menu_box_mobile .magazine_link_box,
    .menu_box_mobile .subscription_box,
    .menu_box_mobile .search_cont {
        left: 0;
    }

    .menu_item_more {
        font-size: 17px;

        display: none;

        width: 150px;
        height: auto;
        padding-right: 0;

        color: #000;
    }

    .menu_item_more_angle {
        display: inline-flex;

        margin: 2px;

        border-top: solid 1px #343a40;
        border-right: solid 1px #343a40;
    }

    .menu_item_more_drop_down {
        position: static;

        background: #fff;
    }

    .menu_item_more_drop_down_mobile {
        display: block;
    }

    .menu_item_more_txt {
        display: inline;
    }

    .nav_menu_box {
        padding: 0;
    }

    .nav_bar_col {
        flex-direction: column;

        margin-top: 30px;
    }

    .nav_menu_box.stickytop .hamburger_box_on {
        /*top: 15px;*/
        top: 10px;
    }
    .hamburger_box.hamburger_box_on{
    top:-30px
}

    .activelink:before {
        background: rgba(255, 73, 80, .3803921568627451);
    }

    .menu_block_ul li:hover:after {
        content: unsert;
    }

    .menu_home_sub:after {
        display: none;
    }

    .main_section_list {
        display: none;
    }

    .humburger_all_item {
        height: auto;
        width: 100%;
    }

    .humburger_all_item_box {
        display: none;
    }

    .menu_all_ul .menu_first_item {
        padding: 10px 0;
    }

    /** menu end **/
    /** drop menu **/
    .magazine_box_drop_down {
        padding: 10px 0;
    }

    .magazine_link_box {
        display: block;
    }
    .magazine_link_box,
    .subscription_box{
        padding:0;
    }

    .magazine_box_drop_down_mobile {
        position: static;

        display: block;
    }

    .magazine_box_drop_down a {
        font-size: 15px;

        margin: 5px 0;
        padding: 0 0 0 10px;
    }

    .menu_item_more.activelink>a {
        color: #ababab;
    }

    /** drop menu end**/
    /** hamburger **/
    .hamburger_box {
        position: absolute;
        z-index: 999;
        /*right: 15px;*/
        left: 15px;

        display: block;
    }

    .line_hamburger_1 {
        position: relative;

        width: 30px;
        height: 2px;
        margin-bottom: 3px;

        /*transition: .3s;*/

        background: white;
    }

    .line_hamburger_2 {
        position: relative;

        width: 30px;
        height: 3px;
        margin-bottom: 3px;

        /*transition: .3s;*/

        background: white;
    }

    .line_hamburger_3 {
        position: relative;

        width: 30px;
        height: 4px;

        /*transition: .3s;*/

        background: white;
    }

    .line_hamburger_1_close {
       /* position: absolute;
        top: 0;
        left: 0;*/
        width: 0;
        /*width: 4px;*/
        height: 3px;

        transform: translateX(25px);

        border-radius: 80px;
        background: black;
    }

    .line_hamburger_2_close {
       /* position: absolute;
        top: 5px;
        left: 0;*/
        width: 0;
        /*width: 4px;*/
        height: 3px;

        /*transform: translateX(25px);*/

        border-radius: 80px;
        background: black;
    }

    .line_hamburger_3_close {
        /*position: absolute;
        top: 11px;
        left: 0;*/
        width: 0;
        /*width: 4px;*/
        height: 3px;

        transform: translateX(25px);

        border-radius: 80px;
        background: black;
    }

    /*     .hamburger:before {
        font-size: 14px;

        position: absolute;
        z-index: 2;

        content: 'close';
        transition: .3s;
        transform: translateX(-100vw);

        color: white;
    } */

     .hamburger:before {
        content: '';
        position: absolute;
        z-index: 2;
        /*transition: .3s;*/
        transform: translateX(-100vw) rotate(45deg);
        width: 18px;
        height:2px;
        background:black;
        opacity: 0;
        transition: opacity 0s, transform 0.3s;
    }

    .hamburger_close:before {
/*         transition-delay: .3s; */
        /*transition-delay: .05s;*/
        transform: translateX(-1px) rotate(45deg);
        opacity: 1;
    }

    /*     .hamburger {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 15px;
        justify-content: center;
    } */
    .hamburger {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 30px;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }

    /*     .hamburger:after {
        position: absolute;
        z-index: 1;
        top: -5px;

        width: 42px;
        height: 30px;

        content: '';
        transition: .1s;
        transform: translateX(-100vw);

        background: #ed1c24;
    } */

    .hamburger:after{
        content: '';
        position: absolute;
        z-index: 2;
        /*transition: .3s;*/
        transform: translateX(-100vw) rotate(45deg);
        width: 18px;
        height:2px;
        background:black;
        opacity: 0;
        transition: opacity 0s, transform 0.3s;
    }

    .hamburger_close:after {
        transition: .3s;
/*         transition-delay: .1s; */
        /*transition-delay: .05s;*/
        transform: translateX(-1px) rotate(-45deg);
        opacity: 1;
    }

    .menu_item {
        display: none;
    }

    .close_menu_all_block {
        display: none;
    }

    .menu_all_block {
        position: relative;
        left: 0;

        height: auto;

        background: none;
    }

    .menu_all_ul {
        padding: 0;

        transform: translateX(0);

        color: black;
    }

    .menu_first_item:after,
    .menu_second_item.item_arrow:after {
        top: 10px;
        right: 0;
    }

    .menu_all_box {
        padding: 0;
    }

    .menu_block_ul li {
        width: auto;

        border-bottom: none;
    }

    .nav_bar_col {
        width: 100%;
        padding-right: 30px;
    }

    .menu_block_ul {
        width: 80%;
    }

    .menu_second_ul,
    .menu_third_ul,
    .menu_all_box .menu_all_ul a {
        color: #000;
    }

    .menu_first_item,
    .menu_second_item,
    .menu_third_item {
        padding: 10px 0;
    }

    .activelink_hamburger>a:before,
    .activelink_hamburger>p:before {
        bottom: -6px;

        background: #000;
    }

    /** hamburger end **/

    .main_section_back_box {
        display: none;
    }

    .gallery-top img,
    .swiper-button-next,
    .swiper-button-prev {
        height: 420px;
    }

    .gallery-thumbs .swiper-wrapper .swiper-slide {
        height: 60px;
    }

    /* комментарии */
    .row_comment {
        max-width: 100%;
    }

    .comment_img_box {
        width: 80px;
        height: 80px;
    }

    p.name_comment {
        font-size: 14px;
    }

    p.text_comment {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .priority_client_info_box {
        width: 60%;
        height: 40vh;
    }

    .priority_client_info_cont {
        max-width: 100%;
    }

    .card_news_body {
        -webkit-perspective: none;
        perspective: none;
    }

    .card_view .priority_client_info_block,
    .slide_view .priority_client_info_block {
        display: none;
        position: fixed;
        z-index: 9999;
        background: rgba(47, 47, 47, .9);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 7px 10px;
    }

    .card_view .priority_client_info_close,
    .slide_view .priority_client_info_close {
        display: flex;
    }

    .card_view .priority_client_info_icon,
    .slide_view .priority_client_info_icon {
        display: block;
        margin-bottom: 10px;
    }

    .card_view .priority_client_info_box,
    .slide_view .priority_client_info_box {
        width: 70%;
        height: 50vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 90px 5% 30px;
        border-radius: 20px;
        background: #e8e8e8;
        color: #000;
    }

    .card_view .priority_client_info_box svg path,
    .slide_view .priority_client_info_box svg path {
        fill: rgb(252, 23, 31);
    }

    .priority_client_info_icon {
        transition: 0s;
    }

    .card_view .card_news_body.priority_client>div:nth-child(n+3),
    .slide_view .card_news_body.priority_client>div:nth-child(n+3) {
        width: 100%;
    }

    .card_view .member_name_row,
    .slide_view .member_name_row {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .box_editor_choice {
        width: 47%;
    }

    .box_editor_choice:nth-child(3n+3) {
        margin-right: 15px;
    }

    .raiting_card_tizer {
        max-width: 410px;
    }
}

@media (max-width: 991px) {
    .menu_all_box {
        margin-right: 30px;
    }

    .block_newsbox {
        order: 2;
    }

    .block_main_theme {
        order: 1;
    }

    .ad_long {
        order: 3;
    }

    .news_and_sidebar_row {
        order: 4;
    }

    .block_all_news {
        order: 5;
    }

    .box_main_theme {
        width: 100%;
        margin: 0 0 20px;
        margin-left: 0;
    }

    .box_main_theme h2:after {
        top: calc(50% - 6px);
    }

    .block_advice {
        width: 100%;
        padding: 20px 0;
    }

    .ul_advice {
        display: flex;
        flex-direction: row;

        flex-wrap: wrap;
    }

    .li_newsbox {
        width: 33%;
        margin: 0 10px 20px 20px;
    }

    .link_advice img {
        height: 140px;
    }

    .link_advice {
        flex-direction: column;

        margin: 0 0 10px;
    }

    .block_main_theme {
        flex-direction: column;
    }

    .li_newsbox .link_advice img {
        width: 100%;
    }

    .more_articles_box {
        flex-direction: column;

        align-items: center;
    }

    .more_articles_box .block_advice img {
        display: none;
    }

    .more_articles_ul li {
        width: 40%;
    }

    .block_advice_end .block_advice h2 {
        margin: 0 0 10px 30px;
    }

    .more_articles_box .block_advice h2 {
        margin-left: 20px;
    }

    #row_advice.more_articles_ul {
        justify-content: flex-start;
    }

    #row_advice li {
        margin: 0 10px 20px 0;
    }

    #box_last_add,
    #row_popular li,
    #row_last_news li,
    #li_all_news_box {
        width: calc(33% - 30px);
    }

    #row_advice {
        display: flex;

        justify-content: space-between;
    }

    #row_advice li {
        margin: 0 10px 20px 20px;
    }

    .ul_newsbox {
        flex-wrap: wrap;
    }

    .link_triangle_box {
        margin-left: 20px;

        text-align: left;
    }

    .news_and_sidebar_row {
        flex-direction: column;
    }

    .block_newsbox_col,
    .sidebar_col {
        width: 100%;
    }

    .li_newsbox {
        width: 25%;
    }

    .ad_short {
        display: inline-flex;

        width: 100%;

        justify-content: center;
    }

    .ad_short_sidebar {
        justify-content: center;
    }

    .row_footer {
        flex-direction: row-reverse;

        justify-content: inherit;
    }

    .column_footer {
        width: 40%;
        margin-right: 25px;
    }

    .department_row_contacts {
        max-width: 100%;
    }

    .database_ad_row {
        flex-direction: column-reverse;
    }

    .search_field_database {
        margin-top: 50px;
    }

    .tab_catalog_ru {
        margin-bottom: 30px;
    }

    .page_container_form_raex {
        flex-direction: column;
    }

    .body_form_raex {
        margin: auto auto 40px;
    }

    .news_page_container {
        flex-direction: column;
    }

    .news_page_container li {
        margin: 25px 0;
    }

    .news_preview {
        max-width: 100%;
    }

    .tab_catalog_news a {
        font-size: 20px;
    }

    .input_fast_form_raex {
        width: auto;
    }

    .comments_news_box h3,
    .comments_box h3 {
        font-size: 22px;

        margin-bottom: 10px;
    }

    .comments_news_box h4 {
        font-size: 17px;
    }

    .rss_news p {
        font-size: 16px;
    }

    .comments_news_box .heading_block_triangle {
        margin: 0 0 15px;
    }

    .bar_news {
        flex-direction: column;
    }

    .priority_client_info_box {
        width: 80%;
        height: 50vh;
    }

    .raiting_card_tizer {
        max-width: 100%;
    }

    .database_company_main_info {
        align-items: flex-start;
        flex-direction: column;
    }

    .description_info,
    .description_content,
    .database_company_main_info p,
    .database_company_main_info a,
    .database_company_main_info h3 {
        max-width: 100%;
        width: 100%;
    }

    .box_widget_main {
        width: 100vw;
    }
}

@media screen and (max-height: 430px) and (max-width: 991px) and (orientation: landscape),
(max-width: 768px) and (orientation: portrait) {
    .row_comment {
        max-width: 90%;
    }
}

@media (max-width: 640px) {

    h1,
    #news_title {
        font-size: 40px;
    }

    #box_last_add,
    .li_newsbox,
    #row_popular li,
    #row_last_news li,
    #li_all_news_box {
        width: calc(50% - 30px);
    }

    .fields_form_raex {
        flex-direction: column;

        align-items: center;
    }

    .org_name_card_database,
    .org_descr_card_database {
        flex-direction: column;
    }

    .card_database_container h1 {
        font-size: 33px;
    }

    .table_header_number,
    .rating_tag.table_display {
        min-width: 60px;
    }

    .table_header_awards,
    .member_tags_container.table_display {
        min-width: 80px;
    }

    .table_header_indicator,
    .member_indicator.table_display,
    .table_header_metric,
    .member_metric.table_display {
        min-width: 100px;
    }

    .table_header_web,
    .member_link.table_display {
        min-width: 50px;
    }

    .table_header {
        width: auto;
    }

    .txt_body_nav {
        font-size: 16px;
    }

    .article_name:after,
    .ranking_name:after {
        width: 7px;
        height: 7px;
        margin: 4px 0 0 5px;
    }

    .ranking_name:after {
        top: -3px;
    }

    .menu_all_block {
        width: 100%;
    }

    .tab_catalog_news a p {
        display: none;
    }

    .row_comment {
        max-width: 100%;
    }
}

@media (max-width: 440px) {
    body {
        font-size: 16px;
    }

    h1,
    #news_title {
        font-size: 40px;
    }

    h3 {
        font-size: 18px;
    }

    /* удалить, когда закончится тестовый режим */
    .logo_block {
        height: auto;
    }

    .logo_box {
        flex-direction: column;

        height: auto;
    }

    .attention_txt {
        height: auto;
        margin-bottom: 10px;
        padding: 5px;
    }

    /* удалить, когда закончится тестовый режим */

    .search_cont {
        width: 100%;
    }

    .section_heading {
        font-size: 30px;
    }

    .main_raex_container {
        padding: 0 6%;
    }

    .page_container {
        margin-bottom: 35px;
    }

    #row_popular li,
    #row_last_news li,
    #li_all_news_box,
    #box_last_add {
        width: 100%;
        margin: 0 0 30px;
    }

    .row_main_theme a {
        flex-direction: column;
    }

    .row_main_theme img,
    .annotation_main_theme {
        width: 100%;
    }

    .annotation_main_theme {
        padding: 20px 0;
    }

    .box_editor_choice,
    .li_newsbox {
        width: 100%;
    }

    .ul_newsbox li:first-child {
        margin-top: 0;
    }

    .li_newsbox {
        margin: 20px 20px 0;
    }

    .link_advice img {
        margin-right: 0;
    }

    #row_advice li {
        margin: 0 0 30px 0;
    }

    .ul_advice {
        margin-right: 0;
    }

    .logo_box_footer {
        flex-direction: column;

        border-bottom: 1px #fff solid;
    }

    .logo_footer,
    .quote_footer {
        width: 100%;
        margin: 0 0 10px 0;

        justify-content: center;
    }

    .logo_footer:before,
    .quote_footer:after {
        display: none;
    }

    .row_footer {
        justify-content: center;
    }

    .column_footer {
        width: 60%;
        margin-bottom: 30px;
    }

    .department_row_contacts {
        flex-direction: column;
    }

    .tab_catalog_ru {
        margin-bottom: 20px;
    }

    .body_form_raex {
        width: 100%;
    }

    .timestamp {
        font-size: 16px;
    }

    .news_lead {
        font-size: 26px;
    }

    .news_description {
        font-size: 18px;
    }

    .card_news_body {
        padding: 0 30px 30px;
    }

    .input_fast_form_raex {
        margin-bottom: 20px;
    }

    .card_news_display .carousel-control-prev {
        right: 50px;

        width: 50px;
        height: 50px;
    }

    .card_news_display .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .card_news_display .carousel-control-prev-icon,
    .card_news_display .carousel-control-next-icon {
        width: 10px;
        height: 10px;
    }

    .comments_news_container {
        flex-direction: column;
    }

    .comments_box,
    .comments_news_box {
        width: 100%;
    }

    .carousel-inner {
        width: auto;
    }

    .news_page_container ul,
    .news_page_container ol {
        padding: 0 20px;
    }

    .card_tablink .svg_tab_icon {
        width: 17px;
    }

    .svg_tab_icon {
        width: 23px;
    }

    .org_name_card_database h3,
    .org_descr_card_database h3,
    .org_name_card_database p,
    .org_descr_card_database p {
        width: 100%;
    }

    .org_link_card_database h3 {
        width: 20%;
    }

    .org_link_card_database a {
        width: 80%;
    }

    .txt_body_name {
        margin-right: 0;
        padding: 12px;
    }

    .social_enter {
        flex-direction: column;

        margin-bottom: 30px;
    }

    .social_enter .toolbar_list_newspage {
        margin-left: 0;
    }

    .social_enter p {
        margin-bottom: 10px;
    }

    .gallery-top img,
    .swiper-button-next,
    .swiper-button-prev {
        height: 200px;
    }

    .gallery-thumbs .swiper-wrapper .swiper-slide {
        width: 32.5% !important;
    }

    .container_gallery {
        margin-bottom: 30px;
    }

    .swiper-button-next.swiper-button-white:after,
    .swiper-button-prev.swiper-button-white:after {
        width: 10px;
        height: 10px;
    }

    .carousel-control-prev {
        right: 55px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 55px;
        height: 55px;
    }

    .card_view .member_indicator,
    .slide_view .member_indicator,
    .card_view .member_position,
    .slide_view .member_position,
    .card_view .col_table_other,
    .card_view .col_table_other {
        flex-direction: column;

        margin-bottom: 30px;
    }

    .card_view .member_indicator_txt,
    .slide_view .member_indicator_txt,
    .card_view .member_position_txt,
    .slide_view .member_position_txt {
        margin-bottom: 5px;
    }

    .member_indicator_txt {
        margin-right: 0;
    }

    .member_position_number {
        margin-left: 0;
    }

    .more_articles_ul li,
    .block_advice li {
        width: 100%;
    }

    #row_advice.more_articles_ul li {
        margin: 0;
    }

    .block_advice_end #row_advice {
        flex-direction: column;
    }

    .block_advice_end #row_advice li {
        margin: 0;
    }

    /* комментарий */
    .row_comment {
        flex-direction: column;
    }

    .col_comment_img {
        margin-bottom: 10px;
    }

    .priority_client_info_box,
    .card_view .priority_client_info_box,
    .slide_view .priority_client_info_box {
        width: 100%;
        height: 80vh;
    }

    .box_editor_choice,
    .box_editor_choice:nth-child(3n+3) {
        margin-right: 0;
    }

    .raiting_card_tizer {
        margin-right: 0;
    }

    .box_widget_row {
        flex-direction: column;
    }

    .col_widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .main_raex_container {
        padding: 0 7%;
    }

    .heading_block_triangle {
        font-size: 16px;
    }

    .box_main_theme h2 {
        font-size: 20px;
    }

    .card_news_body {
        padding: 0 20px 20px;
    }

    .form_button_raex {
        font-size: 17px;
    }

    .line_link {
        margin-bottom: 5px;
    }

    .menu_all_ul .menu_first_item {
        margin: 20px 0;
    }

    .menu_block_ul {
        width: 75%;
    }
}


@media (max-width: 320px) {
    .txt_body_name {
        padding: 10px;
    }
}

@media (max-height: 416px) {

    .gallery-top img,
    .swiper-button-next,
    .swiper-button-prev {
        height: 260px;
    }

    .block_advice_end .block_advice img {
        height: 100px;
    }

    .img_zoom {
        width: 60%;
    }

    .priority_client_info_box,
    .card_view .priority_client_info_box,
    .slide_view .priority_client_info_box {
        width: 70%;
        height: 90vh;
        padding: 30px;
    }

    .priority_client_info_box img {
        width: 40px;
    }

    .priority_client_info_cont {
        height: 80%;
    }

    .box_editor_choice:nth-child(2n+2) {
        margin-right: 0;
    }
}



@media(max-width: 768px) {

    .tab_catalog_news a:nth-child(1) {
        order: 3;
        margin-right: 0;
    }

    .tab_catalog_news a:nth-child(2) {
        order: 2;
    }

    .tab_catalog_news a:nth-child(3) {
        order: 1;
    }

}


/* database */
.description_content + .description_content{
    border-top:1px solid #dee2e6;
    padding-top:16px;
}
.description_info_title{
 font-weight: 600;
 color:#212529;
 margin-bottom:16px;
 display:block;
}

/* database table */
.description_info_title{
 font-weight: 600;
 color:#212529;
 margin-bottom:16px;
 display:block;
}
.description_content table{
    width:100%;
    margin-top:16px;
}
.description_content th{
    padding: 12px 6px;
    background:#222222;
    color:#ffffff;
    font-weight:100;
    border:1px solid #eaeaea;
}
.description_content td{
    padding: 12px 6px;
    border:1px solid #eaeaea;
}

.description_content table:last-child{
    margin-bottom:-21px;
}
.database_btn_table{
  cursor:pointer;
  text-decoration: underline;
  margin: 20px 0 10px;
  display: inline-block;
}
.description_content table{
  display: none;
}


.rrp_header_logo {
    display: flex;
    align-items: center;
}
.rrp_header_logo:before {
    content: "";
    display: block;
    width: 1px;
    height: 25px;
    background: #c4c4c4;
    margin-right: 16px;
}
.rrp_header_logo:after {
    content: "";
    display: block;
    width: 1px;
    height: 25px;
    background: #c4c4c4;
    margin-left: 16px;
}
.logo_box {
    display: flex;
    width: 100%;
    max-width: 1245px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

