@charset "UTF-8";
@font-face {
    font-family: 'Roboto';
    src:  url('../fonts/Roboto-Light.woff2') format('woff2'),
    url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src:  url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src:  url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src:  url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/*Обнуление*/
*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;max-width:100%;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
/* body */
body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
    color: #212121;
    background: #fffffe;
}
@media (max-width:991px) {
    body.lock-scroll {
        overflow: hidden;
    }
}
@media (max-width:767px) {
    body {
        font-size: 16px;
        line-height: 25px;
    }
}
/* main */
main {
    flex-grow: 1;
}
section {
    padding: 60px 0;
}
@media (max-width:991px) {
    section {
        padding: 45px 0;
    }
}
@media (max-width:767px) {
    section {
        padding: 30px 0;
    }
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.style-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.title-h1 {
    font-weight: 500;
    font-size: 46px;
    line-height: 57px;
    margin-bottom: 40px;
}
.title-h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 25px;
}
.title-h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 35px;
}
.title-h4 {
    font-weight: 500;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 30px;
}
@media (max-width:991px) {
    .title-h1 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 20px;
    }
    .title-h2 {
        font-size: 34px;
        margin-bottom: 25px;
    }
    .title-h3 {
        font-size: 30px;
        margin-bottom: 35px;
    }
}
@media (max-width:767px) {
    .title-h1 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    .title-h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .title-h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 25px;
    }
}
/* button */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 70px;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 80px 10px 50px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    outline: none;
    background: #DE4A4A;
    border-radius: 4px;
}
.button span{
    position: relative;
    z-index: 1;
}
@media (max-width:767px) {
    .button {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 45px 10px 20px;
        min-height: 50px;
    }
}
.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    background: #F14D4D;
    opacity: 0;
    transition: opacity 0.5s;
}
.button:hover:after {
    opacity: 1;
}
.button:active:after {
    opacity: 1;
    background: #F14D4D;
}
.button .btn__icon {
    z-index: 1;
    margin: 0;
    position: absolute;
    right: 30px;
}
@media (max-width:767px) {
    .button .btn__icon {
        width: 16px;
        height: 18px;
        right: 16px;
    }
}
.button.btn-buy {
    background: linear-gradient(180deg, #5692FF 0%, #3E80F7 100%);
}
.button.btn-buy:after {
    background: linear-gradient(180deg, #96BAFD 0%, #4C84EA 100%);
}
.button.btn-buy:active:after {
    background: linear-gradient(180deg, #89B3FF 0%, #6C9AEF 100%);
    box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.button-arrow {
    position: absolute;
    pointer-events: none;
    right: -95px;
    top: -38px;
}
.button.button-transparent {
    border: 1px solid #AAAAAA;
    border-radius: 57px;
    color: #212121;
    font-weight: normal;
    font-size: 17px;
    padding: 4px 16px 4px 16px;
    background: transparent;
    text-transform: none;
    min-height: 44px;
    transition: ease .3s;
}
.button.button-transparent:hover {
    border: 1px solid #DE4A4A;
    color: #DE4A4A;
}
.button.button-transparent:after {
    text-transform: none;
    background: transparent;
}
.btn-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}
.btn-block__text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
/* list */
.list {
    margin-bottom: 30px;
}
.list li {
    background: url(../img/check.svg) no-repeat 0px 5px;
    line-height: 25px;
    padding-left: 28px;
    padding-bottom: 15px;
}
.list-title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}
.list-plus,
.list-minus,
.list-triangle {
    position: relative;
    margin-bottom: 30px;
}
.list-triangle {
    margin-left: 35px;
}
@media (max-width:767px) {
    .list-triangle {
        margin-left: 0px;
    }
}
ul.list-plus li,
ul.list-minus li,
ul.list-triangle li {
    position: relative;
    padding-left: 30px;
    line-height: 25px;
    margin-bottom: 13px;
}
.list-plus li:before,
.list-minus li:before,
.list-triangle li:before {
    position: absolute;
    display: inline-block;
    content: '';
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: url("../img/pluse.webp") center no-repeat;
}
.list-minus li:before {
    background: url("../img/minus.webp") center no-repeat;
}
.list-triangle li:before {
    background: url("../img/program/triangle.svg") center no-repeat;
}
.list-triangle.list-triangle__long {
    margin-left: 0;
}
.list-triangle.list-triangle__long li {
    line-height: 32px;
    margin-bottom: 25px;
}
.list-triangle.list-triangle__long li:before {
    top: 7px;
}
.list-number {
    margin-left: 55px;
    margin-bottom: 30px;
}
@media (max-width:767px) {
    .list-number {
        margin-left: 20px;
    }
}
.list-number a {
    color: #212121;
    text-decoration: underline;
    transition: ease .3s;
}
.list-number li ul.list-number,
.list-number li ol.list-number {
    list-style: disc;
    padding-left: 25px;
    margin-top: 3px;
    margin-bottom: 15px;
}
.list-number li ul.list-number li,
.list-number li ol.list-number li {
    list-style: disc;
    font-size: 16px;
    margin-bottom: 5px;
}
.list-number li ol li,
ul.list-number li ul li {
    font-size: 16px;
}
.list-number li {
    margin-bottom: 15px;
    padding-left: 10px;
}
ol.list-number > li::marker {
    transition: ease .3s;
    color: #f14d4d;
    font-weight: bold;
}
.list-number li > .list-triangle {
    margin-top: 20px;
}
/* link */
.link {
    color: #de494a;
    text-decoration: underline;
    transition: ease .1s;
}
.link:hover {
    color: #f14d4d;
    text-decoration: none;
}
/* header */
.header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F1F1F1;
    border-radius: 2px;
    z-index: 2;
}
.header.header-no-fixed {
    position: relative;
}
.header.header-no-fixed + main {
    padding-top: 0;
}
.header__body {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
}
@media (max-width:767px) {
    .header__body {
        height: 70px;
    }
}
.header__logo {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__logo-title {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: #212121;
}
.header__logo-subtitle {
    font-size: 12px;
    line-height: 18px;
    color: #3A3F53;
    letter-spacing: -0.6px;
}
.header__burger {
    display: none;
}
.header__menu {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
@media (max-width:991px) {
    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }
    .header__burger span {
        background: #3A3F53;
        position: absolute;
        left: 0;
        top: 9px;
        width: 100%;
        height: 2px;
        transition: all 0.3s ease 0s;
    }
    .header__burger.active span {
        transform: scale(0);
    }
    .header__burger:before,
    .header__burger:after {
        content: '';
        background: #3A3F53;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.2s ease 0s;
    }
    .header__burger:before {
        top: 0;
    }
    .header__burger:hover:before {
        top: -2px;
    }
    .header__burger.active:before {
        transform: rotate(45deg);
        top: 9px;
    }
    .header__burger:after {
        bottom: 0;
    }
    .header__burger:hover:after {
        bottom: -2px;
    }
    .header__burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header__menu {
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #fff;
        padding: 100px 10px 20px 10px;
        transition: all 0.3s ease 0s;
    }
    .header__menu.active {
        top: 0;
    }
    .header__menu .header__list {
        height: auto;
    }
}
@media (max-width:767px) {
    .header__menu {
        padding-top: 60px;
    }
}
.header__list {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
    margin: 0 85px 0 15px;
}
@media (max-width:991px) {
    .header__list {
        display: block;
        margin: 0;
    }
}
.header__list li {
    display: flex;
    align-items: center;
    text-align: center;
    height: 100%;
    margin: 0 20px;
}
@media (max-width:1199px) {
    .header__list {
        margin: 0 15px;
    }
    .header__list li {
        margin: 0 10px;
    }
    .header__list li a {
        font-size: 16px;
    }
}
@media (max-width:991px) {
    .header__list li {
        margin: 0;
        margin-bottom: 0px;
        height: auto;
    }
}
.header__list > li:first-child {
    margin-left: 0px;
}
.header__list > li:last-child {
    margin-right: 0px;
}
.header__link,
.header__menu-text,
.header__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #212121;
    transition: ease 0.3s;
}
@media (max-width:991px) {
    .header__link,
    .header__menu-text {
        padding: 20px;
        margin: 0 auto;
    }
    .header__link:active,
    .header__menu-text:active {
        color: #DE4A4A;
    }
}
.header__menu-text {
    padding-right: 20px;
}
@media (min-width:992px) {
    .header__link:hover,
    .header__menu-text:hover {
        color: #DE4A4A;
        text-decoration: underline;
    }
    .header__sub-menu .header__link:hover .header__arrow:before,
    .header__sub-menu .header__link:hover .header__arrow:after {
        background: #DE4A4A;
    }
}
.header__sub-menu {
    display: none;
    position: absolute;
    min-width: 480px;
    left: -34px;
    top: 100%;
    padding: 20px 30px 25px;
    background: #fff;
    box-shadow: 0px 15px 14px rgba(0, 0, 0, 0.2);
}
@media (max-width:991px) {
    .header__sub-menu {
        position: relative;
        min-width: initial;
        left: 0;
        margin-top: 15px;
        padding: 0px;
    }
}
.header__sub-menu .header__link {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    padding-left: 3px;
    margin-left: 20px;
}
@media (min-width:992px) {
    .header__open-menu:hover .header__menu-text {
        color: #DE4A4A;
    }
    .header__open-menu:hover .header__sub-menu .header__arrow {
        left: -20px;
    }
    .header__open-menu:hover > .header__arrow:before,
    .header__open-menu:hover > .header__arrow:after {
        background: #DE4A4A;;
    }
    .header__open-menu:hover .header__sub-menu .header__arrow:before,
    .header__open-menu:hover .header__sub-menu .header__arrow:after {
        transform: rotate(135deg);
        left: 0;
        top: 5px;
    }
    .header__open-menu:hover .header__sub-menu .header__arrow:before {
        transform: rotate(-135deg);
        left: 0;
        top: 9px;
    }
}
.header__sub-menu li {
    padding-bottom: 18px;
    transition: ease 0.2s;
    margin-right: 0;
    padding-bottom: 0;
}

.header__sub-menu li a {
    padding: 9px 0;
}
@media (min-width:992px) {
    .header__sub-menu .header__link:hover {
        margin-left: 35px;
    }
}
.header__sub-menu li:last-child {
    padding-bottom: 0;
}
.header__open-menu {
    cursor: default;
}
@media (max-width:991px) {
    .header__open-menu {
        display: flex;
        flex-direction: column;
    }
    .header__open-menu > .header__arrow {
        top: -9px;
        right: 5px;
    }
}
@media (min-width:992px) {
    .header__open-menu:hover .header__sub-menu {
        display: block;
        cursor: default;
    }
}
@media (max-width:991px) {
    .sub-menu-active {
        display: block;
    }
    .header__menu-text.sub-menu-active {
        color: #DE4A4A;
    }
    .sub-menu-active + .header__arrow:before,
    .sub-menu-active + .header__arrow:after {
        background: #DE4A4A;
    }
    .sub-menu-active + .header__arrow:before {
        left: 3px;
    }
    .sub-menu-active + .header__arrow:after {
        left: 6px;
    }
    .header__sub-menu.sub-menu-active .header__arrow:before,
    .header__sub-menu.sub-menu-active .header__arrow:after {
        transform: rotate(135deg);
        left: 0;
        top: 5px;
    }
    .header__sub-menu.sub-menu-active .header__arrow:before {
        transform: rotate(-135deg);
        left: 0;
        top: 9px;
    }
    .header__sub-menu li {
        padding-bottom: 0;
    }
    .header__sub-menu li a {
        padding: 15px;
    }
}
.header__arrow {
    position: relative;
    top: -1px;
    right: 11px;
}
.header__arrow:before,
.header__arrow:after {
    position: absolute;
    top: 0px;
    left: 3px;
    width: 2px;
    height: 6px;
    z-index: 1;
    content: "";
    -webkit-transition: all .23s;
    transition: all .23s;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #3A3F53;
}
.header__arrow:before {
    left: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (min-width:992px) {
    .header__open-menu:hover .header__arrow:before {
        left: 3px;
    }
    .header__open-menu:hover .header__arrow:after {
        left: 6px;
    }
}
.header__button {
    display: flex;
    align-items: center;
    z-index: 2;
}
@media (max-width:991px) {
    .header__button {
        margin-top: 20px;
    }
}
.header__button .button {
    min-height: 46px;
    font-size: 14px;
    padding: 3px 52px 3px 38px;
}
.header__button .button.btn-buy {
    margin-left: 12px;
}
.header__button .button:before {
    display: none;
}
.header__button .button .btn__icon {
    width: 10px;
    height: 13px;
    right: 16px;
    margin: 0px;
}
/* header-fixed */
.header-fixed {
    background-color: rgb(34, 34, 34);
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.1);
    min-height: 90px;
    padding: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}
@media (max-width: 991px) {
    .header-fixed {
        display: none !important;
    }
}

/* section-hero */
.section-hero {
    padding: 60px 0;
}
@media (max-width:991px) {
    .section-hero {
        padding: 45px 0;
    }
}
@media (max-width:767px) {
    .section-hero {
        padding: 30px 0;
    }
}
.section-hero__block {
    display: flex;
    flex-wrap: wrap;
}
.section-hero__block-left {
    width: 57.7%;
    padding-right: 10px;
}
@media (max-width:767px) {
    .section-hero__block-left {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }
}
.section-hero__text {
    font-size: 19px;
    line-height: 36px;
    max-width: 420px;
}
@media (max-width:767px) {
    .section-hero__text {
        font-size: 18px;
        line-height: 30px;
    }
}
.section-hero__block-right {
    width: 42.3%;
}
@media (max-width:767px) {
    .section-hero__block-right {
        width: 100%;
    }
}
.video-popup {
    display: block;
    position: relative;
    padding-bottom: 66.6%;
    margin-bottom: 40px;
}
.video-popup__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video-popup__text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #212121;
    position: absolute;
    bottom: -22px;
    left: 60px;
}
@media (max-width: 991px) {
    .video-popup__text {
        bottom: -30px;
        left: 30px;
    }
}
.video-popup__btn {
    background: #DE4A4A;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    transition: ease .3s;
    margin-right: 15px;
}
.video-popup__btn::after {
    content: '';
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid transparent;
    border-left: 13px solid #fff;
    top: 14px;
    left: 17px;
}
.video-popup:hover .video-popup__btn {
    background: #F14D4D;
}
/* section-articles */
.section-articles {
}
.section-articles__block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 0px;
}
.section-articles__block.section-articles__block-article {
    margin-top: 60px;
}
.section-articles__item {
    width: 29.333%;
    padding: 0 15px;
    display: flex;
    margin-bottom: 20px;
}
.section-articles__block-article .section-articles__item {
    width: 33.333%;
    margin-bottom: 60px;
}
.section-articles__item-img {
    margin-right: 20px;
    max-width: 100px;
    min-width: 100px;
}
.section-articles__item-data {
    font-size: 12px;
    line-height: 12px;
    color: #878787;
    margin-bottom: 10px;
    display: block;
}
.section-articles__item-data img {
    margin-right: 5px;
}
.section-articles__item-link {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
    text-decoration: underline;
    transition: ease .3s;
}
.section-articles__item:hover .section-articles__item-link {
    color: #DE4A4A;
    text-decoration: none;
}
.section-articles__block-article .section-articles__item-link {
    padding-top: 8px;
}
.section-articles__item.section-articles__item-social {
    width: 12%;
}
.social__text {
    font-size: 13px;
    margin-bottom: 10px;
}
.social .ya-share2__badge {
    border-radius: 50%;
}
.social .ya-share2__list.ya-share2__list_direction_horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 1199px) {
    .section-articles__item {
        width: 33.333%;
    }
    .section-articles__item.section-articles__item-social {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .social__text {
        text-align: center;
    }
    .social .ya-share2__list.ya-share2__list_direction_horizontal {
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .section-articles__item {
        width: 50%;
    }
    .section-articles__item.section-articles__item-social {
        width: 50%;
        justify-content: flex-start;
        margin-top: 0px;
    }
    .section-articles__block-article .section-articles__item {
        width: 50%;
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .section-articles__item {
        width: 100%;
    }
    .section-articles__item.section-articles__item-social {
        width: 100%;
        justify-content: flex-start;
    }
    .section-articles__block-article .section-articles__item {
        width: 100%;
    }
}
.social .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
    margin: 0 5px 5px;
}
.ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item:first-child {
    margin-left: 0;
}
.social .ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
    height: 28px;
    width: 28px;
    background-size: 28px 28px;
}
/* toTop */
#toTop {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 10;
    top: auto;
    right: 7%;
    bottom: 100px;
    left: auto;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: ease .3s;
}
#toTop.show {
    opacity: 1;
    visibility: visible;
}
#toTop:hover {
    filter: grayscale(1);
}
@media (max-width:1500px) {
    #toTop {
        right: 15px;
        bottom: 50px;
    }
}
@media (max-width:767px) {
    #toTop {
        width: 32px;
        height: 32px;
    }
}
#toTop img {
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 0px;
}

/* spoiler */
.spoiler-block {
    background: #F6F6F6;
    border-radius: 7px;
    padding: 50px;
    margin: 40px 0;
}
@media (max-width: 991px) {
    .spoiler-block {
        padding: 25px;
    }
}
@media (max-width: 767px) {
    .spoiler-block {
        padding: 15px 15px 30px;
        margin: 30px 0;
    }
}
.spoiler {
    position: relative;
}
@keyframes showDiv {
    0%, 50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.spoiler-title {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    width: 150px;
    height: 30px;
    bottom: -35px;
    right: -40px;
    position: absolute;
    cursor: pointer;
}
.spoiler-title.opened {
    animation: showDiv .6s ease;
}
.spoiler-title.closed {
    border: 0;
    left: initial;
    animation: showDiv .6s ease;
}
@media (max-width: 991px) {
    .spoiler-title {
        bottom: -15px;
        right: -20px;
    }
}
@media (max-width: 767px) {
    .spoiler-title {
        bottom: -25px;
        right: -20px;
    }
}
.spoiler-text {
    font-weight: 500;
    font-size: 30px;
}
@media (max-width: 767px) {
    .spoiler-text {
        font-size: 25px;
    }
}
.spoiler-hide-open {
    color: #212121;
    padding-right: 15px;
    transition: ease .3s;
}
.spoiler-title:hover .spoiler-hide-open {
    color: #DE4A4A;
}
.spoiler-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 30px 0 0 20px;
}
@media (max-width: 767px) {
    .spoiler-body {
        padding: 20px 0 0 20px;
    }
}
.spoiler-body-title {
    width: 100%;
    transition: ease .3s;
    margin-bottom: 30px;
}
.spoiler-body-title__text {
    text-decoration: underline;
    color: #212121;
    transition: ease .3s;
}

.spoiler-body-list {
    width: 100%;
}
.spoiler-body__article .spoiler-body-list {
    columns: 2;
}
.spoiler-body-link__top {
    margin-left: 10px;
}
.spoiler-body-link {
    color: #212121;
    margin-bottom: 20px;
    padding-right: 20px;
    text-decoration: underline;
    transition: ease .3s;
    position: relative;
}
.spoiler-body-list a {
    font-size: 18px;
    color: rgb(34, 34, 34);
    text-decoration: underline;
    transition: ease .3s;
}
.spoiler-body-link a:hover {
    color: #DE4A4A;
    text-decoration: none;
}
.spoiler-body-list a:hover {
    color: #DE4A4A;
    text-decoration: none;
}
.spoiler-body-list__ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    columns: 3;
}
.spoiler-body__article .spoiler-body-list__ul {
    columns: 1;
}
.spoiler-body-list__ul li {
    list-style: disc;
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .spoiler-body-list__ul  {
        columns: 2;
        padding-left: 10px;
    }
    .spoiler-body__article .spoiler-body-list,
    .spoiler-body__article .spoiler-body-list__ul {
        columns: 1;
    }
}
@media (max-width: 499px) {
    .spoiler-body-list__ul  {
        columns: 1;
    }
}
.spoiler-body-list li {
    width: 100%;
    margin-bottom: 10px;
}
.spoiler-body-list > li::marker,
.spoiler-body-list ul > li::marker {
    transition: ease .3s;
}
.spoiler-body-list > li::marker {
    font-weight: 700;
    color: #DE4A4A;
}
.spoiler-body-list ul > li::marker {
    font-size: 16px;
}

.spoiler-arrow {
    position: relative;
}
.spoiler .spoiler-arrow:before,
.spoiler .spoiler-arrow:after {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 2px;
    height: 8px;
    z-index: 1;
    content: "";
    -webkit-transition: all .23s;
    transition: all .23s;
    transform: rotate(135deg);
    background:#DE4A4A;
}
.spoiler .spoiler-arrow:before {
    top: -2px;
    left: 3px;
    transform: rotate(225deg);
}
.spoiler-title:hover .spoiler-arrow:before,
.spoiler-title:hover .spoiler-arrow:after {
    background: #DE4A4A;
}
.spoiler-title.closed .spoiler-arrow:before {
    top: -2px;
    left: 7px;
}
.spoiler-title.closed .spoiler-arrow:after {
    top: -2px;
    left: 3px;
}

.spoiler-link {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.spoiler-link-title {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #212121;
    border-radius: 4px;
    min-height: 54px;
    padding: 5px 45px 5px 15px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    min-width: 206px;
    text-align: center;
}
.spoiler-link-title .spoiler-arrow {
    position: absolute;
    right: 32px;
    display: block;
    top: 32%;
}
.spoiler-link-title .spoiler-arrow:before,
.spoiler-link-title .spoiler-arrow:after {
    position: absolute;
    top: 7px;
    left: -2px;
    width: 2px;
    height: 8px;
    z-index: 1;
    content: "";
    -webkit-transition: all .23s;
    transition: all .23s;
    transform: rotate(135deg);
    background:#212121;
}
.spoiler-link-title .spoiler-arrow:before {
    left: 3px;
    transform: rotate(225deg);
}
.spoiler-link-title .spoiler-arrow:after {
    left: 8px;
}
.spoiler-link-title:hover .spoiler-arrow:before,
.spoiler-link-title:hover .spoiler-arrow:after {
    background: #DE4A4A;
}
.spoiler-link-title.closed .spoiler-arrow:before {
    left: 8px;
}
.spoiler-link-title.closed .spoiler-arrow:after {
    left: 3px;
}
.spoiler-link-body {
}
.spoiler-link-body ul {
    width: 100%;
    padding: 25px 0;
    columns: 2;
}
.spoiler-link-body li {
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .spoiler-link-body ul {
        columns: 1;
    }
}
/* accordion */
.accordion-block {
}
.accordion {
    margin-bottom: 30px;
}
.accordion-heading,
.accordion-heading__open {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 45px 10px 48px;
    background: #F8F8F8;
    min-height: 91px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    position: relative;
    transition: ease .3s;
}
.accordion-heading__open {
    pointer-events: none;
    color: #DE4A4A;
}
@media (max-width:767px) {
    .accordion-heading,
    .accordion-heading__open {
        font-size: 18px;
        padding: 5px 30px 5px 15px;
    }
}
.accordion-heading.in {
    color: #DE4A4A;
}
.accordion .spoiler-arrow {
    position: relative;
    margin-left: 14px;
    top: -3px;
}
.accordion .spoiler-arrow:before,
.accordion .spoiler-arrow:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 9px;
    z-index: 1;
    content: "";
    -webkit-transition: all .23s;
    transition: all .23s;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #000000;
}
.accordion .spoiler-arrow:before {
    left: 9px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.spoiler-title.closed .spoiler-arrow:before {
    left: 3px;
}
.spoiler-title.closed .spoiler-arrow:after {
    left: 8px;
}
.accordion-heading .spoiler-arrow {
    top: -5px;
    right: 0px;
}
.accordion-heading .spoiler-arrow:before,
.accordion-heading .spoiler-arrow:after {
    background: #B0B0B0;
    width: 2px;
    height: 14px;
    transition: ease .3s;
}
.accordion-heading:hover .spoiler-arrow:before,
.accordion-heading:hover .spoiler-arrow:after {
    background: #D32800;
}
.accordion-heading.in .spoiler-arrow:before {
    background: #D32800;
    left: 0px;
}
.accordion-heading.in .spoiler-arrow:after {
    background: #D32800;
    left: 9px;
}
.accordion-heading:hover {
    color: #D32800;
}
.accordion-collapse {
    display: none;
    background: #F8F8F8;
    padding: 0px 30px 15px 48px;
}
@media (max-width:767px) {
    .accordion-collapse {
        padding: 15px;
    }
}
.accordion-collapse p:last-child {
    margin-bottom: 5px;
}
.accordion-collapse.accordion-collapse__open {
    display: block;
}
/* slick-slider */
.slick-slider{
    min-width: 0;
}
.slick-list {
    overflow: hidden;
}
.slick-track{
    display: flex;
    align-items: flex-start;
}
/* slick-dots */
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.slick-dots li {
    display: none;
    list-style: none;
    margin: 0px 7px;
}
/* only displaying the active bullets and the 2 bullets next to it */
.slick-dots li.slick-active,
.slick-dots li.slick-active + li,
.slick-dots li.slick-active + li + li {
    display: block;
}
/* displaying the last three bullets when slick-active class isn't applied to any li before them  */
.slick-dots li:nth-last-child(1),
.slick-dots li:nth-last-child(2),
.slick-dots li:nth-last-child(3) {
    display: block;
}
/* hiding the last three bullets if slick-active exist before them */
.slick-dots li.slick-active ~ li:nth-last-child(1),
.slick-dots li.slick-active ~ li:nth-last-child(2),
.slick-dots li.slick-active ~ li:nth-last-child(3) {
    display: none;
}
/* specific conditions to always display the last three bullets */
.slick-dots li.slick-active + li + li:nth-last-child(3),
.slick-dots li.slick-active + li + li:nth-last-child(2),
.slick-dots li.slick-active + li + li:nth-last-child(1),
.slick-dots li.slick-active + li:nth-last-child(3),
.slick-dots li.slick-active + li:nth-last-child(2),
.slick-dots li.slick-active + li:nth-last-child(1){
    display: block;
}
.slick-dots button{
    font-size: 0;
    width: 10px;
    height: 10px;
    background-color: #B9B8B8;
    transition: ease .3s;
}
.slick-dots button:hover ,
.slick-dots li.slick-active button{
    background-color: #DE4A4A;
}

/* slick-arrow */
.slick-arrow {
    position: absolute;
    top: 45%;
    margin: -30px 0px 0px 0px;
    z-index: 10;
    font-size: 0;
    width: 62px;
    height: 62px;
    background: #FAFAFA;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
}
@media (max-width:991px){
    .slick-arrow {
        cursor: default;
    }
}
.slick-arrow.slick-disabled{
    opacity: 0.2;
}
.slider__arrow-prev:hover .slider-arrow:before,
.slider__arrow-prev:hover .slider-arrow:after,
.slider__arrow-next:hover .slider-arrow:before,
.slider__arrow-next:hover .slider-arrow:after {
    background: #fff;
}
.slider__arrow-prev {
    left: -18%;
}
@media (max-width:1199px){
    .slider__arrow-prev {
        left: -4%;
    }
}
@media (max-width:991px){
    .slider__arrow-prev {
        left: -2%;
    }
}
.slider__arrow-prev .slider-arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.slider__arrow-next {
    right: -18%;
}
@media (max-width:1199px){
    .slider__arrow-next {
        right: -4%;
    }
}
@media (max-width:991px){
    .slider__arrow-next {
        right: -2%;
    }
}
.slider__arrow-next .slider-arrow {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.slider-arrow {
    position: relative;
    top: 30px;
    width: 28px;
    height: 4px;
    z-index: 1;
    left: 16px;
}
.slider-arrow:before,
.slider-arrow:after {
    position: absolute;
    top: 0;
    display: block;
    width: 50%;
    height: 100%;
    content: ' ';
    background: #FF9202;
}
.slider-arrow:before {
    left: 0;
    -webkit-transform: skew(0deg, 45deg);
    -ms-transform: skew(0deg, 45deg);
    transform: skew(0deg, 45deg);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 2px;
}
.slider-arrow:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -45deg);
    -ms-transform: skew(0deg, -45deg);
    transform: skew(0deg, -45deg);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 2px;
}
.slick-arrow.blue-arrow {
    top: 35%;
    background: transparent;
}
.slick-arrow.blue-arrow:hover:after {
    opacity: 0;
}
.slider__arrow-prev.blue-arrow {
    left: -5%;
}
.slider__arrow-next.blue-arrow {
    right: -5%;
}
@media (max-width:1300px){
    .slider__arrow-prev.blue-arrow {
        left: -3%;
    }
    .slider__arrow-next.blue-arrow {
        right: -3%;
    }
}
@media (max-width:500px){
    .slider__arrow-prev.blue-arrow {
        left: -7%;
    }
    .slider__arrow-next.blue-arrow {
        right: -7%;
    }
}
.blue-arrow .slider-arrow {
    width: 23px;
    height: 5px;
}
.slider__arrow-prev.blue-arrow .slider-arrow:before, .slider__arrow-prev.blue-arrow .slider-arrow:after,
.slider__arrow-next.blue-arrow .slider-arrow:before, .slider__arrow-next.blue-arrow .slider-arrow:after {
    background: #484c54;
    transition: ease .3s;
}
.slider__arrow-prev.blue-arrow:hover .slider-arrow:before, .slider__arrow-prev.blue-arrow:hover .slider-arrow:after,
.slider__arrow-next.blue-arrow:hover .slider-arrow:before, .slider__arrow-next.blue-arrow:hover .slider-arrow:after {
    background: #4785f6;
}
/* spoiler-section */
.spoiler-section {
    padding: 25px 0 30px;
}
/* table */
.table-section {
    padding: 25px 0 40px;
}
@media (max-width: 767px) {
    .table-section {
        padding: 25px 0 30px;
    }
}
.table-section__desctription {
    margin-bottom: 35px;
    text-align: center;
}
.table {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 25px;
    border-bottom: none;
    text-align: left;
    width: calc(100% - 1px);
}
.table.table-three {
    max-width: 700px;
    margin: 0 auto 25px;
}
.table__head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 137px;
}
.table__th.table__th-1 {
    justify-content: center;
    align-items: flex-start;
    font-size: 15px;
    line-height: 21px;
    padding-left: 28px;
    color: #000000;
    background: #fcfcfb;
    position: relative;
    margin-top: 15px;
}
.table__th.table__th-1::after {
    content: '';
    position: absolute;
    left: 199px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #f0f0ef;
}
.table__btn {
    background-color: #2198e3;
    box-shadow: none;
    padding: 0 70px;
    box-shadow: 0px 12px 22px 0px rgba(33, 152, 227, 0.35);
    margin-top: 45px;
}
.table__btn:hover {
    background-color: #0b7ac0;
}
.table__btn:hover:after {
    border-color: transparent;
}
.table__btn:after {
    position: absolute;
    content: '';
    bottom: 19px;
    left: 70px;
    right: 70px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    -webkit-transition: border-color .3s;
    transition: border-color .3s;
}
.table__link {
    display: flex;
    position: relative;
    border: 1px solid #DE4A4A;
    border-radius: 4px;
    color: #DE4A4A;
    font-weight: 500;
    font-size: 11px;
    padding: 4px 24px;
    background: transparent;
    text-transform: none;
    min-height: 32px;
    transition: ease .3s;
}
.table__link span {
    z-index: 2;
}
.table__link:hover {
    color: #fff;
}
.table__link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-transform: none;
    background: transparent;
    transition: ease .3s;
    z-index: 1;
}
.table__link:hover:after {
    background: #DE4A4A;
}
.table__th-recommended .table__link {
    text-transform: uppercase;
    color: #fff;
}
.table__th-recommended .table__link .btn__icon {
    position: relative;
    width: 8.5px;
    height: 10.5px;
    top: 5px;
    left: 5px;
    z-index: 2;
}
.table__th-recommended .table__link:after {
    background: #DE4A4A;
}
.table__th-recommended .table__link:hover:after {
    background: #F14D4D;
}

.table .slick-disabled {
    display: none !important; }
.table__th-slide {
    background-color: #fafaf9;
}
/* .table__th-slide:nth-child(2n) {
	background-color: #fff;
} */
.table__body {
    margin-top: 137px;
    display: flex;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}
.table__programs {
    display: inline-block;
    width: 200px;
    flex-shrink: 0;
}
.table__programs .table__td {
    text-align: left;
    justify-content: start;
    padding-left: 28px;
    padding-right: 5px;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    background-color: #fefdfe;
}
.table__programs .table__td:nth-child(2n) {
    background-color: #fcfcfb;
}
.table__th-slider,
.table__th-slider-three,
.table__info,
.table__info-three {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 200px);
    padding: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.table__th-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    margin-bottom: 5px;
}
.table__th-slider .slick-track,
.table__th-slider-three .slick-track {
    background: #fff;
}
.table__th-slider .table__th-slide,
.table__th-slider-three .table__th-slide {
    margin-top: 15px;
}
.table__info,
.table__info-three {
    bottom: auto;
}
.table__slide {
    background-color: #fefdfe;
}
.table__slide .table__td:nth-child(2n) {
    background-color: #fcfcfb;
}
.table__slide:nth-child(2n) .table__td {
    background-color: #fefdfe;
}
.table__slide:nth-child(2n) .table__td:nth-child(2n) {
    background-color: #fcfcfb;
}
.table__slide.slick-slide {
    width: 162px;
}
.table.table-three .table__slide.slick-slide  {
    width: 167px;
}
.table__th, .table__td {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px 20px;
    border-right: 1px solid #f0f0ef;
    width: 100%;
    text-align: center;
    color: #000;
    line-height: 1;
}
.table__th {
    font-size: 14px;
    color: rgb(34, 34, 34);
    height: 137px;
    display: flex;
    flex-direction: column;
    line-height: 1.571;
}
.table__th p {
    min-height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table__th-recommended,
.table__body .table__col .table__td.table__th-recommended {
    position: relative;
    background: #f8eae9;
}
.table__info .table__col .table__td.table__th-recommended-gray,
.table__info-three .table__col .table__td.table__th-recommended-gray {
    position: relative;
    background: #f5e7e7;
}
.table__th-recommended-gray-top {
    position: relative;
    background: #f1e4e4;
}
.table__th-recommended-item {
    position: absolute;
    left: auto;
    right: auto;
    top: -15px;
    background: #8BB677;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    color: #FFFFFF;
    padding: 4px 16px;
}
.table__button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-decoration-line: underline;
    color: #000000;
    min-height: 26px;
    padding: 1px 10px;
    min-width: 120px;
    transition: ease .3s;
    margin-bottom: 3px;
}
.table__button:hover {
    color: #fd5457;
}
.table__button img {
    padding-right: 6px;
    filter: invert(1);
}
.table__button:hover img {
    filter: invert(0);
}
.table__td {
    font-size: 14px;
    padding: 10px;
    line-height: 21px;
    height: 63px;
}
@media (max-width: 767px) {
    .table__td {
        padding: 2px;
    }
}
.table__td.table__td-big {
    height: 90px;
}
.table-popup {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 152px;
    max-height: 80px;
}
.table-popup:before {
    content: url(../img/search.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 2;
    transition: ease .3s;
}
.table-popup:hover:before {
    transform: translate(-50%, -50%) scale(1);
}
.table-popup img {
    object-fit: contain;
}
.table__td_app {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 25px;
}
.table__td-gold {
    position: relative;
}
.table__td-gold .app {
    color: #f1a80a;
}
.table__td-white {
    background-color: #fff;
}
.table__td-gold:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #f1a80a;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.table-rating {
    display: flex;
}
.table-rating span {
    padding-left: 5px;
    padding-top: 2px;
    font-size: 14px;
    color: rgb(34, 34, 34);
}
.table__arrow {
    display: inline-block;
    width: 34px;
    height: 34px;
    border: 1px solid #DADADA;
    border-radius: 2px;
    transition: ease .3s;
    position: absolute;
    top: 0;
    filter: grayscale(0.9);
    z-index: 2;
}
.table__arrow.prev {
    transform: rotate(180deg);
    background: url("../img/table-arrow.svg") no-repeat center,#fff;
    left: 175px;
    top: 85px;
}
.table__arrow.next {
    background: url("../img/table-arrow.svg") no-repeat center,#fff;
    right: -15px;
    top: 85px;
}
.table__arrow.slick-arrow:after {
    display: none;
}
.table__arrow:hover {
    filter: grayscale(0);
}
.table__arrow.slick-hidden {
    display: none;
}
@media (max-width: 992px) {
    .table__arrow {
        filter: grayscale(0);
    }
}
@media (max-width: 767px) {
    .table__programs {
        width: 170px;
    }
    .table__programs .table__td {
        padding: 10px 2px 10px 7px;
    }
    .table__th-slider,
    .table__th-slider-three,
    .table__info,
    .table__info-three {
        width: calc(100% - 170px);
    }
    .table__th.table__th-1::after {
        left: 169px;
    }
    .table__arrow.prev {
        left: 145px;
    }
    .table__th.table__th-1 {
        padding-left: 7px;
    }
}
@media (max-width: 399px) {
    .table__th-slider,
    .table__th-slider-three,
    .table__info,
    .table__info-three {
        width: calc(100% - 140px);
    }
    .table__th.table__th-1::after {
        left: 139px;
    }
    .table__programs {
        width: 140px;
    }
    .table__arrow.prev {
        left: 125px;
    }
}
.table__td-hide {
    opacity: 0;
    height: 0;
    padding: 0px;
    visibility: hidden;
    transition: ease .7s;
}
.table__td-hide.table__td-active {
    opacity: 1;
    height: 63px;
    visibility: visible;
}
.btn-table {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D6D6D6;
    border-radius: 2px;
    min-height: 56px;
    padding: 10px 18px;
    cursor: pointer;
    transition: ease .3s;
    max-width: 257px;
    margin: 55px auto 20px;
}
.btn-table:hover {
    box-shadow: 0px 2px 4px rgb(17 46 60 / 8%);
}
.btn-table__text {
    position: relative;
}
.btn-table__text:before,
.btn-table__text:after {
    position: absolute;
    top: 13px;
    right: -23px;
    width: 1px;
    height: 9px;
    z-index: 1;
    content: "";
    transition: all .23s;
    transform: rotate(-45deg);
    background: #212121;
}
.btn-table__text:before {
    right: -17px;
    transform: rotate(45deg);
}
.btn-table__text.btn-table__text-hide:before {
    right: -23px;
}
.btn-table__text.btn-table__text-hide:after {
    right: -17px;
}
@media (max-width: 992px) {
    .btn-table {
        margin: 45px auto 20px;
    }
}
@media (max-width: 767px) {
    .btn-table {
        margin: 20px auto 20px;
    }
}
/* section-program */
.section-program {
    padding: 30px 0;
}
@media (max-width: 767px) {
    .section-program {
        padding: 20px 0;
    }
}
/* breadcrumbs */
#breadcrumbs {
    font-size: 14px;
    color: #9D9D9D;
    margin: 35px 0 35px;
}
@media (max-width: 991px) {
    #breadcrumbs {
        margin: 30px 0 30px;
    }
}
@media (max-width: 767px) {
    #breadcrumbs {
        margin: 20px 0 20px;
    }
}
#breadcrumbs span {
    margin-right: 10px;
}
#breadcrumbs a {
    color: #9D9D9D;
    transition: ease .3s;
}
#breadcrumbs a:hover {
    color: #de494a;
    text-decoration: underline;
}
#breadcrumbs > span:last-child {
    color: #f14d4d;
}
.program__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.program__block-img {
    max-width: 60px;
    max-height: 60px;
    min-height: 60px;
    object-fit: contain;
    margin-right: 20px;
    margin-bottom: 5px;
}
.program__block .title-h3 {
    margin-bottom: 5px;
}
.program__block-link {
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: #DE4A4A;
    transition: ease .2s;
    margin-right: 15px;
    margin-bottom: 5px;
}
.program__block-link:hover {
    color: #F14D4D;
}
.program__block-link span {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    transition: ease .2s;
}
.program__block-link:hover span {
    background-size: 100% 0px;
}
.program-platform {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 25px;
}
.program-section {
    padding: 20px 0;
}
@media (max-width:767px) {
    .program-section {
        padding: 15px 0;
    }
}
.tag-cloud__article {
    max-width: 900px;
}
.tag-cloud .button.button-transparent {
    margin-right: 17px;
    margin-bottom: 25px;
}
.text {
    margin-bottom: 20px;
}
.program-purpose {
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width:767px) {
    .program-purpose {
        margin-bottom: 20px;
    }
}
.list-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px 0;
}
.list-block-item {
    padding: 0 15px;
    width: 50%;
}
@media (max-width:767px) {
    .list-block {
        margin: 0px -15px;
    }
    .list-block-item {
        width: 100%;
    }
}
.button-mb {
    margin-bottom: 20px;
}
.program-article {
    display: flex;
    flex-wrap: wrap;
    margin: 20px -15px 0;
}
.program-article__title {
    width: 100%;
    font-weight: 500;
    font-size: 22px;
    padding: 0 15px;
    margin-bottom: 40px;
}
.program-article .section-articles__item {
    width: 33.333%;
}
.program-article .section-articles__item-data {
    line-height: 14px;
}
.program-article .section-articles__item-link {
    font-size: 17px;
    font-weight: 400;
}
@media (max-width:991px) {
    .program-article .section-articles__item {
        width: 50%;
    }
}
@media (max-width:767px) {
    .program-article .section-articles__item {
        width: 100%;
    }
}
/* section-read */
.section-read {
    overflow-x: hidden;
    padding: 30px 0 40px;
}
@media (max-width:991px) {
    .section-read {
        padding: 30px 0 20px;
    }
}
@media (max-width:767px) {
    .section-read {
        padding: 30px 0 10px;
    }
}
.section-read__block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
}
.section-read__block.section-read__block-margin {
    margin: 60px -40px;
}
@media (max-width:991px) {
    .section-read__block.section-read__block-margin {
        margin: 60px -40px 20px;
    }
}
@media (max-width:767px) {
    .section-read__block.section-read__block-margin {
        margin: 40px -40px 0px;
    }
}
.section-read__item {
    width: 25%;
    padding: 0 40px;
    margin-bottom: 20px;
}
@media (max-width:991px) {
    .section-read__item {
        width: 50%;
        margin-bottom: 40px;
    }
}
@media (max-width:499px) {
    .section-read__item {
        width: 100%;
    }
}
.section-read__img {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 68%;
}
.section-read__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: auto;
    right: auto;
    border-radius: 3px;
}
.section-read__text {
    font-size: 18px;
    line-height: 30px;
    text-decoration: underline;
    color: #212121;
    transition: ease .3s;
}
.section-read__item:hover .section-read__text {
    text-decoration: none;
    color: #DE4A4A;
}
/* section-create */
.section-create {
    padding: 10px 0;
    background: #f6f6f5;
    border-radius: 2px;
}
@media (max-width:1199px) {
    .section-create {
        padding: 30px 0;
    }
}
.section-create__block {
    display: flex;
    flex-wrap: wrap;
}
.section-create__block-left {
    width: 41%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-create__block-left p {
    margin-bottom: 50px;
}
.section-create__block-left .button {
    align-self: flex-start;
}
.section-create__block-right {
    width: 59%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: relative;
    padding-bottom: 38%;
}
.section-create__block-right img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: auto;
    right: auto;
}
.section-create__block-inversion .section-create__block-right {
    padding-left: 0;
}
.section-create__block-inversion .section-create__block-left {
    padding-left: 50px;
}
@media (max-width:767px) {
    .section-create__block-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .section-create__block-right {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 20px;
    }
}
/* footer */
.footer {
    padding: 60px 0 0;
    max-width: 1025px;
    width: 100%;
    margin: 0 auto;
}
.footer-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-block__link {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}
.footer-link-title {
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-link {
    display: block;
    color: #212121;
    transition: ease .3s;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}
.footer-link:hover {
    color: #fd5457;
    text-decoration: underline;
}
.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/footer-link.svg) no-repeat;
    width: 12px;
    height: 12px;
    transition: ease .1s;
}
.footer-link:hover::after {
    background: url(../img/footer-link-red.svg) no-repeat;
    left: 7px;
}
.copyright {
    padding: 26px 0;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    border-top: 1px solid #C4C4C4;
}
@media (max-width:767px) {
    .copyright {
        padding: 30px 0;
    }
}
.footer-page {
    background: #FAFAFA;
}
.footer-page .copyright {
    border-top: none;
    padding: 35px 0;
}
/* .article-hero */
.article-hero {
    padding: 50px 0 0;
}
#breadcrumbs.breadcrumbs-article {
    margin-top: 0;
}
.article-hero__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-hero__block-autor {
    display: flex;
    justify-content: space-between;
}
.article-hero__block-autor-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}
.article-hero__block-autor-right {
    display: flex;
}
.article-hero__data {
    margin-right: 40px;
    margin-bottom: 20px;
}
.article-hero__author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 40px;
    margin-bottom: 20px;
}
.article-hero__author img {
    margin-right: 13px;
}
.article-hero__author-strong {
    margin-left: 5px;
}
.article-hero__ratings {
    margin-bottom: 20px;
}
.article-hero__time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}
.article-hero__time img {
    margin-right: 5px;
}
.article-hero__time span {
    margin-left: 5px;
    font-weight: 700;
}
.article-hero__block-center {
    margin: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
}
.article-hero__block-left {
    display: flex;
    width: 50%;
    flex-direction: column;
}
.article-hero__block-right {
    display: flex;
    width: 50%;
}
.title-h1-article {
    font-weight: 500;
    font-size: 46px;
    line-height: 57px;
    margin-bottom: 20px;
}
.article-hero__text {
    font-weight: 500;
    font-size: 20px;
}
.article-hero__text.article-hero__text-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
@media (max-width:991px) {
    .article-hero {
        padding: 30px 0 0;
    }
    .article-hero__block-center {
        margin: 40px 0;
    }
    .title-h1-article {
        font-size: 40px;
        line-height: 46px;
    }
}
@media (max-width:767px) {
    .article-hero__block-autor {
        flex-direction: column;
    }
    .article-hero__block-center {
        margin: 20px 0;
    }
    .article-hero__block-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .article-hero__block-right {
        width: 100%;
    }
    .title-h1-article {
        font-size: 40px;
        line-height: 46px;
    }
}
@media (max-width:499px) {
    .title-h1-article {
        font-size: 28px;
        line-height: 38px;
    }
}
/* ratings */
.rating {
    display: flex;
    align-items: flex-end;
    font-size: 40px;
    line-height: 0.75;
}
.rating.rating_sending {
    opacity: 0.2;
}
.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
    cursor: pointer;
}
.rating__body {
    position: relative;
}
.rating__body::before {
    content: '★★★★★';
    display: block;
    color: #C5C5C5;
}
.rating__active {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.rating__active::before {
    content: '★★★★★';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #ffd300;
}
.rating__items {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.rating__item {
    flex: 0 0 20%;
    height: 100%;
    opacity: 0;
}
.rating__value {
    font-size: 50%;
    line-height: 1;
    padding-left: 10px;
}
/* blockquote */
.blockquote {
    background: #F6F6F6;
    border-radius: 7px;
    padding: 36px 85px 35px 70px;
    margin: 40px 0 40px 35px;
    font-style: italic;
    line-height: 28px;
    position: relative;
}
.blockquote::before,
.blockquote::after {
    content: url(../img/program/quotes.svg);
    position: absolute;
    width: 30px;
    height: 30px;
    left: 13px;
    top: 13px;
    text-align: center;
    color: #DE4A4A;
}
.blockquote::after {
    content: url(../img/program/quotes.svg);
    left: initial;
    top: initial;
    right: 13px;
    bottom: 13px;
    transform: rotate(180deg);
}
@media (max-width:991px) {
    .blockquote {
        padding: 35px 15px 25px 40px;
    }
}
@media (max-width:767px) {
    .blockquote {
        margin-left: 0;
    }
}
.youtube-popup-block {
    max-width: 800px;
    margin: 0 auto 30px;
}
.youtube-popup {
    display: block;
    position: relative;
    padding-bottom: 54.4%;
    transition: ease .2s;
}
.youtube-popup::before {
    content: '';
    position: absolute;
    background: #000000;
    border-radius: 4px;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: ease .7s;
}
.youtube-popup:hover::before {
    opacity: 0;
}
.youtube-popup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 49px;
    background: url(../img/rutube.webp) no-repeat;
    transition: ease .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0.75;
}
.youtube-popup:hover::after {
    /* background: url(../img/program/youtybe-btn-hover.webp) no-repeat; */
    opacity: 1;
}
.youtube-popup__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.advantages {
    display: flex;
    flex-wrap: wrap;
}
.advantages__item {
    display: flex;
    align-items: center;
    width: 33.333%;
    padding-right: 20px;
    margin-bottom: 20px;
}
@media (max-width:991px) {
    .advantages__item {
        width: 50%;
    }
}
@media (max-width:767px) {
    .advantages__item {
        width: 100%;
    }
}
.advantages__img {
    max-width: 72px;
    margin-right: 40px;
}
@media (max-width:767px) {
    .advantages__img {
        margin-right: 20px;
    }
}
.advantages__text {
    line-height: 32px;
}
/* program */
.program-hero {
    overflow: hidden;
    padding: 0px;
}
.program-hero__wrap {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0 100px;
}
@media (max-width:1199px) {
    .program-hero__wrap {
        padding: 60px 0 60px;
    }
}
@media (max-width:991px) {
    .program-hero__wrap {
        padding: 45px 0 45px;
    }
}
@media (max-width:767px) {
    .program-hero__wrap {
        padding: 30px 0 30px;
    }
}
.program-hero__wrap .container {
    position: relative;
    z-index: 2;
}
.program-hero__block {
    display: flex;
    flex-wrap: wrap;
    max-width: 730px;
    margin: 0 auto;
}
.program-hero__block-item {
    width: 50%;
    padding: 0 15px;
}
@media (max-width:767px) {
    .program-hero__block-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
.text-center {
    text-align: center;
}
.program-hero__img1 {
    position: absolute;
    left: 9.8%;
    top: 44px;
}
.program-hero__img2 {
    position: absolute;
    left: 3.7%;
    top: 204px;
}
.program-hero__img3 {
    position: absolute;
    left: 18.5%;
    top: 251px;
}
.program-hero__img4 {
    position: absolute;
    left: 5.8%;
    top: 107px;
}
.program-hero__img5 {
    position: absolute;
    left: 11.1%;
    top: 233px;
}
.program-hero__img6 {
    position: absolute;
    left: 9.1%;
    top: 354px;
}
.program-hero__img7 {
    position: absolute;
    right: 5.7%;
    top: 39px;
}
.program-hero__img8 {
    position: absolute;
    right: 16.2%;
    top: 128px;
}
.program-hero__img9 {
    position: absolute;
    right: 7.3%;
    top: 206px;
}
.program-hero__img10 {
    position: absolute;
    right: 16.7%;
    top: 287px;
}
.program-hero__img11 {
    position: absolute;
    right: 1.4%;
    top: 154px;
}
.program-hero__img12 {
    position: absolute;
    right: 2%;
    top: 182px;
}
.program-hero__img13 {
    position: absolute;
    right: 3.7%;
    top: 295px;
}
.program-hero__img14 {
    position: absolute;
    right: 13.1%;
    top: 314px;
}
@media (max-width:1599px) {
    .program-hero__img1 {
        left: 3.8%;
    }
    .program-hero__img2 {
        left: -3.3%;
    }
    .program-hero__img3 {
        left: 11.5%;
    }
    .program-hero__img4 {
        left: -0.2%;
    }
    .program-hero__img5 {
        left: 4.1%;
    }
    .program-hero__img6 {
        left: 1.1%;
    }
    .program-hero__img7 {
        right: -4.3%;
    }
    .program-hero__img8 {
        right: 9.2%;
    }
    .program-hero__img9 {
        right: 0.3%;
    }
    .program-hero__img10 {
        right: 10.7%;
    }
    .program-hero__img11 {
        right: -1.6%;
    }
    .program-hero__img12 {
        right: -6%;
    }
    .program-hero__img13 {
        right: 0.7%;
    }
    .program-hero__img14 {
        right: 5.1%;
    }
}
@media (max-width:1299px) {
    .program-hero__img1,
    .program-hero__img2,
    .program-hero__img3,
    .program-hero__img4,
    .program-hero__img5,
    .program-hero__img6,
    .program-hero__img7,
    .program-hero__img8,
    .program-hero__img9,
    .program-hero__img10,
    .program-hero__img11,
    .program-hero__img12,
    .program-hero__img13,
    .program-hero__img14 {
        display: none;
    }
}
/* screenshots */
.screenshots {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 0px;
}
.screenshots__item {
    display: flex;
    align-items: center;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
@media (max-width:991px) {
    .screenshots__item {
        width: 50%;
    }
}
@media (max-width:499px) {
    .screenshots__item {
        width: 100%;
    }
}
.screenshots-popup {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 66%;
}
.screenshots-popup::before,
.screenshots-popup::after {
    content: url(../img/program/search-white.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 35px;
    height: 46px;
    transition: ease .3s;
}
.screenshots-popup:hover:before {
    opacity: 0;
}
.screenshots-popup::after {
    content: url(../img/program/search.svg);
    opacity: 0;
    transition: ease .3s;
}
.screenshots-popup:hover::after {
    opacity: 1;
}
.screenshots-popup img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: auto;
    right: auto;
}
.specifications {
    margin: 35px 0 30px;
}
.specifications__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.specifications__img {
    display: flex;
    max-width: 35px;
    width: 35px;
    margin-right: 20px;
}
.specifications__text {
    font-size: 17px;
}
.specifications__text span {
    font-weight: 500;
}
.title-support {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.title-support .title-h2 {
    margin-right: 70px;
    margin-bottom: 0;
}
.support-block {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8F8F8;
    border-radius: 24px;
    padding: 14px 44px;
    margin: 10px 0;
}
.support-block img {
    margin-right: 10px;
}
/* download */
.download {
    margin: 60px 0 30px;
}
.download .sect-header {
    margin-bottom: 17px;
}
.download-item,
.download-item-main {
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 70px;
    background: #fcfbfc;
}
.download-item:nth-child(2n) {
    background: #f8f7f6;
}
.download-item-main {

}
.download-item-main .download-item-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 30px 10px 20px;
    flex: 0 0 28%;
    font-weight: 500;
    font-size: 22px;
}
.download-analog {
    font-size: 15px;
    line-height: 28px;
}
.download-item-main .download-item-left .download-recommend {
    position: absolute;
    right: auto;
    left: auto;
    top: -18px;
    background-color: #8BB677;
    border-radius: 2px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 19px;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .download-item-main .download-item-left .download-recommend {
        padding: 0px 5px;
        right: -35%;
    }
}
.download-item-main .download-item-left img {
    max-width: 64px;
    max-height: 64px;
    min-height: 64px;
    object-fit: contain;
    margin-bottom: 15px;
}
.download-item-main .download-item-center {
    font-size: 22px;
    color: rgba(33, 33, 41, 0.2);
    flex: 0 0 28%;
}
.download-item-main .download-item-right {
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 10px 20px;
    flex: 0 0 28%;
    font-weight: 500;
    font-size: 22px;
}
.download-item-main .download-item-right img {
    max-width: 64px;
    max-height: 64px;
    min-height: 64px;
    object-fit: contain;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .download-item-main .download-item-left,
    .download-item-main .download-item-center,
    .download-item-main .download-item-right {
        flex-shrink: 1;
        font-size: 18px;
    }
}
.download-item-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 28%;
    font-size: 22px;
    color: rgb(33, 33, 41);
    padding: 3px;
}
@media (max-width: 767px) {
    .download-item-main .download-item-left {
        flex: 0 0 50%;
    }
    .download-item-left {
        flex: 0 0 25%;
    }
}
.download-item-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 28%;
    text-align: center;
    padding: 3px 5px;
}
@media (max-width: 767px) {
    .download-item-main .download-item-center {
        flex: 0 0 0%;
    }
    .download-item-center {
        flex: 0 0 50%;
    }
}
.download-item-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 28%;
    font-size: 22px;
    color: rgb(33, 33, 41);
    padding: 3px;
}
@media (max-width: 767px) {
    .download-item-main .download-item-right {
        flex: 0 0 50%;
    }
    .download-item-right {
        flex: 0 0 25%;
    }
}
.download-check {
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-cross {
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-bottom {
    justify-content: space-between;
    align-items: center;
    padding: 40px 18% 40px 7%;
}
.download-bottom .link {
    font-weight: 500;
}
@media (max-width: 767px) {
    .download-bottom {
        padding: 30px 6% 30px 3%;
    }
    .download-bottom .button {
        margin-right: 15px;
    }
}
/* applications-section */
.applications-section {
    padding: 40px 0;
}
.applications-slider {
    position: relative;
}
.applications-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 55px -15px 40px;
}
.applications-block {
    width: 25%;
    display: flex;
    justify-content: center;
    padding: 0px 15px;
    margin-bottom: 30px;
}
.applications-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: ease .3s;
}
.applications-recommend {
    position: absolute;
    right: 0;
    top: 0px;
    background-color: #8BB677;
    border-radius: 2px;
    font-weight: 500;
    font-size: 12px;
    line-height: 13px;
    padding: 3px 5px;
    color: #FFFFFF;
}
.applications-img {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.applications-img img {
    max-width: 80px;
    max-height: 75px;
    min-height: 75px;
    object-fit: contain;
}
.applications-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5px 15px 5px 20px;
}
.applications-title {
    font-weight: 500;
    color: #212121;
    transition: ease .3s;
}
.applications-item:hover .applications-title {
    color: #D32800;
    text-decoration: underline;
}
.applications-slider .arrow-slider {
    display: inline-block;
    width: 34px;
    height: 34px;
    border: 1px solid #DADADA;
    border-radius: 2px;
    transition: ease .3s;
    position: absolute;
    top: 40%;
    z-index: 2;
    border-radius: 0;
}
.applications-slider .arrow-slider:hover {
    filter: grayscale(1);
}
.applications-slider .arrow-slider-prev {
    transform: rotate(180deg);
    background: url(../img/table-arrow.svg) no-repeat center;
    left: 15px;
}
.applications-slider .arrow-slider-next {
    background: url(../img/table-arrow.svg) no-repeat center;
    right: 15px;
}
.title-img {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.title-img img {
    max-width: 40px;
    max-height: 40px;
    min-height: 40px;
    object-fit: contain;
    margin-right: 20px;
    margin-bottom: 5px;
}
.title-img .title-h2 {
    margin-bottom: 5px;
}
.img-article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 45px;
}
.img-block {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 45%;
    max-width: 770px;
    width: 100%;
}
.img-block.img-block1 {
    padding-bottom: 20%;
}
.img-block.img-block2 {
    padding-bottom: 25%;
}
.img-block.img-block3 {
    padding-bottom: 30%;
}
.img-block.img-block4 {
    padding-bottom: 35%;
}
.img-block.img-block5 {
    padding-bottom: 40%;
}
.img-block.img-block6 {
    padding-bottom: 50%;
}
.img-block.img-block7 {
    padding-bottom: 55%;
}
.img-block.img-block8 {
    padding-bottom: 60%;
}
.img-block.img-block9 {
    padding-bottom: 65%;
}
.img-block img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: auto;
    right: auto;
    border-radius: 3px;
}
.img-article__text {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
@media (max-width:991px) {
    .img-article {
        margin-bottom: 30px;
    }
    .img-block {
        padding-bottom: 65%;
        margin-bottom: 10px;
    }
}

.inform-block {
    display: flex;
    flex-wrap: wrap;
    border-radius: 7px;
    margin: 60px 0;
}
.inform-block.inform-block__gray {
    background: #F7F7F7;
}
.inform-block.inform-block__dashed {
    border: 1.5px dashed #CBCBCB;
}
.inform-block__item {
    width: 50%;
}
.inform-block__text {
    padding: 55px 85px 70px;
}
.inform-block__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 40px;
}
.button.button-inform {
    min-height: 53px;
    font-size: 14px;
    padding: 3px 54px 3px 22px;
}
.button.button-inform .btn__icon {
    width: 10px;
    height: 13px;
    right: 20px;
}
.inform-block__img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding-bottom: 55%;
}
.inform-block__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: auto;
    right: auto;
}
@media (max-width:991px) {
    .inform-block__text {
        padding: 20px;
    }
}
@media (max-width:767px) {
    .inform-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .inform-block__item {
        width: 100%;
    }
    .inform-block__title {
        font-weight: 500;
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 15px;
    }
}

.download-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 7px;
    padding: 10px 50px 15px 55px;
    margin: 60px 0;
}
.download-block.download-block__red {
    background: #FFE8EE;
}
.download-block.download-block__blue {
    background: #DEEBED;
}
.download-block.download-block__create {
    padding: 17px 50px 0px 80px;
    border: 1px solid #CBCBCB;
}
.download-block__img {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding-bottom: 31%;
}
.download-block__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: auto;
    right: auto;
}
.download-block__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
}
.download-block__text {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0px 0px 60px;
}
.download-block__subtitle {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 35px;
}
.download-block .btn-block {
    margin: 0;
}
.download-block.download-block__create .download-block__img {
    width: 35.5%;
    padding-bottom: 32%;
}
.download-block.download-block__create .download-block__text {
    width: 64.5%;
    padding: 0 0 10px 100px;
}
@media (max-width:767px) {
    .download-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .download-block__img {
        width: 100%;
        padding-bottom: 55%;
    }
    .download-block__text {
        width: 100%;
        padding: 20px 0 0;
    }
    .download-block__title {
        font-weight: 500;
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 15px;
    }
    .download-block.download-block__create {
        padding: 10px;
    }
    .download-block.download-block__create .download-block__img {
        width: 100%;
        padding-bottom: 45%;
    }
    .download-block.download-block__create .download-block__text {
        width: 100%;
        padding: 10px 10px 20px;
    }
}
.read-block {
    display: flex;
    flex-wrap: wrap;
    border-radius: 7px;
    align-items: center;
    margin: 60px 0;
    padding: 8px 50px 0;
    border: 1px solid #CBCBCB;
}
.read-block__grey {
    background: #F7F7F7;
    border: none;
}
.read-block__dashed {
    border: 1px dashed #CBCBCB;
}
.read-block__img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding-bottom: 20.3%;
    width: 38.5%;
}
.read-block__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: auto;
    right: auto;
}
.read-block__text {
    width: 51.5%;
    padding: 0px 10px 10px 100px;
}
.read-block__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 13px;
}
.read-block .link {
    font-size: 17px;
    line-height: 32px;
}
@media (max-width:767px) {
    .read-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px 0px 0;
    }
    .read-block__img {
        width: 100%;
        padding-bottom: 40%;
    }
    .read-block__text {
        width: 100%;
        padding: 20px;
    }
}
.read-block.read-block__team {
    align-items: flex-start;
    padding: 0;
}
.read-block.read-block__team.read-block__padding {
    padding: 10px 10px 0;
}
.read-block.read-block__team .read-block__img {
    padding-bottom: 0;
    width: 20%;
}
.read-block.read-block__team .read-block__img img {
    position: relative;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.read-block.read-block__team .read-block__text {
    width: 80%;
    align-self: center;
}
@media (max-width:767px) {
    .read-block.read-block__team {
        justify-content: center;
        align-items: center;
        padding: 8px 0px 0;
    }
    .read-block.read-block__team .read-block__img {
        padding-bottom: 0;
        width: 60%;
    }
    .read-block.read-block__team .read-block__img img {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .read-block.read-block__team .read-block__text {
        width: 100%;
        align-self: center;
    }
}

.article-program {
    background: #F7F7F7;
    padding: 0;
}
.article-program .container {
    position: relative;
    background-image: url(../img/article/bg1.webp);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    padding: 84px 15px 54px;
}
.article-program__recommend {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    background: #8BB677;
    border-radius: 2px;
    padding: 6px 13px;
}
@media (max-width:991px) {
    .article-program .container {
        background-image: none;
        padding: 40px 15px 40px;
    }
}
.article-program .title-h2 {
    margin-bottom: 40px;
    line-height: 57px;
}
.article-program__check {
    max-width: 760px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}
.article-program__item {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 20px;
}
@media (max-width:767px) {
    .article-program .title-h2 {
        line-height: 40px;
    }
    .article-program__item {
        width: 50%;
    }
}
@media (max-width:499px) {
    .article-program__item {
        width: 100%;
    }
}
.article-program__text {
    position: relative;
    padding-left: 30px;
}
.article-program__text::before {
    content: url(../img/article/check.svg);
    position: absolute;
    left: 0;
    top: 0;
}
.article-program .btn-block {
    margin: 0;
    align-items: flex-start;
}
.article-program .btn-block__text {
    padding-left: 15px;
}
/* share-fixed */
.share-fixed {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: auto;
    right: 7.25%;
    bottom: 180px;
    left: auto;
    z-index: 5;
    transition: ease .3s;
}
@media (max-width:1500px) {
    .share-fixed {
        right: 19px;
        bottom: 125px;
    }
}
@media (max-width:767px) {
    #toTop {
        width: 32px;
        height: 32px;
    }
    .share-fixed {
        right: 12px;
        bottom: 105px;
    }
}
.share-fixed.show {
    opacity: 1;
    visibility: visible;
}
.share-fixed .ya-share2__popup {
    background-color: #fffffe;
    opacity: 0;
    transition: ease .3s;
}
.share-fixed .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__badge_more {
    filter: invert(0.5);
    transition: ease .3s;
}
.share-fixed .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
    padding: 8px;
}
.share-fixed .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short:hover .ya-share2__badge_more {
    filter: invert(0);
}
.share-fixed .ya-share2__popup.ya-share2__popup_visible {
    opacity: 1;
}
.share-fixed .ya-share2__title {
    display: none;
}
.share-fixed .ya-share2__container_size_m .ya-share2__popup:not(.ya-share2__popup_mobile) .ya-share2__item {
    padding: 2px 3px;
}
.share-fixed .ya-share2__list.ya-share2__list_direction_vertical > .ya-share2__item:hover {
    background: transparent;
}
.share-fixed .ya-share2__container.ya-share2__container_color-scheme_whiteblack .ya-share2__badge {
    background-color: transparent;
}
.share-fixed .ya-share2__container_shape_round.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(.ya-share2__icon_more):not(.ya-share2__icon_copy) {
    background-size: 28px 28px;
    height: 28px;
    width: 28px;
    filter: invert(0.5);
    transition: ease .3s;
}
.share-fixed .ya-share2__container_shape_round.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(.ya-share2__icon_more):not(.ya-share2__icon_copy):hover {
    filter: invert(0);
}
.share-fixed .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__popup_direction_top {
    box-shadow: none;
    bottom: 44px;
    right: 3px;
    left: initial;
}
.share-fixed .ya-share2__container_size_m .ya-share2__popup:not(.ya-share2__popup_mobile) {
    padding: 3px 0;
}
.share-fixed .ya-share2__container_size_m .ya-share2__popup:not(.ya-share2__popup_mobile) > :last-child:not(:empty):not(.ya-share2__copied-tooltip) {
    padding-top: 0;
}
.share-fixed .ya-share2__container_size_m .ya-share2__popup:not(.ya-share2__popup_mobile) > :last-child:not(:empty):not(.ya-share2__copied-tooltip) {
    padding-bottom: 0;
}
/* rating */
#page-rating-block {
    height: 24px;
    line-height: 24px;
    cursor: default;
}
#page-rating-block .hidden {
    visibility: hidden;
}
.rating-img {
    cursor: pointer;
    vertical-align: middle;
    margin: 0 -3px;
    border-left : 3px solid transparent;
    border-right: 3px solid transparent;
    margin-top: -3px;
}
.rating-img.hover {
    padding: 16px 16px 0 0;
    width  : 0;
    height : 0;
    background: url('../img/ratingStarHover.webp');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.rating-img.nocursor {
    cursor: default;
}
#page-rating-value {
    vertical-align: top;
    font-size: 14px;
    color: #545861;
    font-weight: 500;
}
#page-rating-info {
    vertical-align: middle;
    margin-left: 10px;
    color: #7f7f7f;
}
#page-rating-uservalue {
    display: inline-block;
    min-width: 8ch;
}
#page-rating-block {
    position: relative;
    display: flex;
    align-items: center;
    height: 16px;
    line-height: 16px;
    font-size: inherit;
}
#page-rating-block .hidden {
    visibility: visible;
    display: none;
}
#page-rating-block .rating-img {
    margin: -3px -2px 0 -2px;
}
#page-rating-value {
    margin: 0 7px;
}
#page-rating-info  {
    position: absolute; top: 0;
    width: 8rem; height: 1rem;
    transform: translateY(1rem);
    margin: 0 0 0 0.1rem;
    font-size: 0.8em;
    transition: opacity 0.1s ease-out;
    opacity: 0;
}
#page-rating-block:hover #page-rating-info {
    opacity: 1;
}
@media (max-width: 767px) {
    #page-rating-info {
        opacity: 1; transition: none;
    }
}
.rating-hide {
    display: none;
}
.section-comments #comments-form-name,
.section-comments #comments-form-email,
.section-comments #comments-form-textarea,
.section-comments #comments-captcha {
    border: 1px solid #CBCBCB;
    border-radius: 7px;
}
.section-comments .comments-btn {
    background: #DE4A4A;
    font-family: 'Roboto', sans-serif;
    min-height: 45px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 4px;
}
.section-comments .comments-btn:hover {
    background: #F14D4D;
}
/* yandex-dzen */
.yandex-dzen {
    margin: 15px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.yandex-dzen__subscribe {
    font-weight: 500;
    font-size: 18px;
    line-height: 33px;
    margin: 5px 15px 5px 0;
}
.yandex-dzen__link {
    padding: 0 19px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 15px 5px 0;
    border: 1px solid #A0A0A0;
    border-radius: 5px;
    color: #212121;
    text-decoration: none;
    transition: ease .3s
}
.yandex-dzen__link:hover {
    border: 1px solid #DE4A4A;
}
.yandex-dzen__text {
    font-weight: 500;
    font-size: 20px;
}
.yandex-dzen__text-normal {
    font-weight: 400;
    font-size: 16px;
}
.yandex-dzen__red {
    color: #de494a;
}
.yandex-dzen__link.yandex-dzen__link-red {
    border: 1px solid #DE4A4A;
}
.yandex-dzen__link.yandex-dzen__link-red:hover {
    border: 1px solid #A0A0A0;
}
.subtitle-text {
    font-size: 19px;
    line-height: 36px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .subtitle-text {
        font-size: 16px;
        line-height: 28px;
    }
}
/* section-presentation */
.section-presentation {
    padding: 60px 0 30px;
}
.presentation {
    display: flex;
    flex-wrap: wrap;
    margin: 80px -15px 40px;
}
.presentation__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    padding: 0 15px;
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .presentation {
        margin: 60px -15px 30px;
    }
    .presentation__item {
        width: 25%;
    }
}
@media (max-width: 767px) {
    .presentation {
        margin: 40px -15px 20px;
    }
    .presentation__item {
        width: 33.333%;
        margin-bottom: 30px;
    }
}
@media (max-width: 499px) {
    .presentation__item {
        width: 50%;
    }
}
.presentation__img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    margin-bottom: 15px;
}
.presentation__text {
    font-weight: 500;
    text-align: center;
}
/* audio */
.audio-block{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.audio {
    width: calc(50% - 20px);
    margin: 0 10px;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.audio-grey {
    background: #F7F7F7;
}
.audio-title {
    display: block;
    margin: 16px 0;
}
.audio .audio-title {
    margin: 0;
}
audio[controls] {
    width: calc(100% - 40px);
    vertical-align: middle;
}
.btn-audio-download {
    width: 24px;
    height: 24px;
    margin: 0 0 0 10px;
    padding: 0;
    vertical-align: middle;
    border: 2px solid #808080;
    background-color: #e1e2e4;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMAgMAAAArG7R0AAAADFBMVEUAAAAAAAAAAAAAAAA16TeWAAAAA3RSTlMAgD93k3GoAAAAJUlEQVQI12Ng+t+AFdf//8sg//8LA/v/CwyM/x0YGGoZGBhEGADE6BE7BUmsSQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    transition: 0.2s ease-out;
    transition-property: background-color, box-shadow;
    cursor: pointer;
}
.btn-audio-download:hover {
    background-color: #f1f2f4;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .audio {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 15px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .audio:nth-child(2n) {
        background: #F7F7F7;
    }
    .audio-grey {
        background: transparent;
    }
}