:root {
    --accent: #e4a124;
    --bg-color: #4b4b92;
    --gray: #e6e6e6;
    --white-color: #ffffff;
    --text: #222222;
    --title: #222222;
    --second-color: #885ea2;
    --transition: 0.3s linear;
    --brs: 10px;
}

@font-face {
    font-family: "Museo Sans 100";
    src: url(../fonts/_src/MuseoSansCyrl-100.woff) format("woff");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans 300";
    src: url(../fonts/_src/MuseoSansCyrl-300.woff) format("woff");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans 500";
    src: url(../fonts/_src/MuseoSansCyrl-500.woff) format("woff");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans 700";
    src: url(../fonts/_src/MuseoSansCyrl-700.woff) format("woff");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans 900";
    src: url(../fonts/_src/MuseoSansCyrl-900.woff) format("woff");
    font-style: normal;
    font-display: swap;
}

.btn {
    font-family: "Museo Sans 900";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e4a124ff;
    outline: 0;
    color: var(--white-color);
    text-align: center;
    cursor: pointer;
    padding: 11px 36px;
    font-size: 14px;
    border-radius: 25px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.btn.btn--sm {
    padding: 11px 36px;
}
.btn--grey {
    color: #222222;
    background-color: #dedfe0;
}
.btn--grey:hover {
    color: #ffffff;
}

.btn--download {
    background-image: url('../img/_src/download_icon.png');
    background-position: right 30px center;
    background-repeat: no-repeat;
    padding-right: 70px;
}

@media screen and (min-width: 1024px) {
    .btn {
        padding: 16.5px 60px;
    }

    .btn--download {
        padding-right: 80px;
    }
}

.btn:hover {
    background-color: #ee7a14;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

._swiper {
    overflow: hidden;
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background-color: var(--white-color);
    z-index: 20;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1024px) {
    .header__top {
        min-height: 90px;
    }
}

.header__logo {
    max-width: 170px;
}

@media screen and (min-width: 768px) {
    .header__logo {
        max-width: unset;
    }
}

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 630px) {
    .header__actions {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.header__bottom {
    background-color: var(--bg-color);
    z-index: 15;
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px 0;
}

@media screen and (min-width: 580px) {
    .header__bottom {
        top: 60px;
    }
}

.header__bottom._active {
    display: block;
}

@media screen and (min-width: 1024px) {
    .header__bottom {
        margin-top: 90px;
        display: block;
        position: static;
        padding: 0;
        max-height: unset;
        overflow-y: unset;
    }
}

.header__right {
    padding: 10px 0;
}

@media screen and (min-width: 580px) {
    .header__right {
        padding-right: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .header__right {
        padding-right: 0;
    }
}

.header__right-link {
    font-family: "Museo Sans 700";
    position: relative;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 12px;
}

.header__right-link_search {
    background-color: var(--gray);
    color: var(--text);
}

.header__right-link_search:hover {
    color: var(--white-color);
}

@media screen and (max-width: 375px) {
    .header__right-link_search {
        padding: 8px 20px;
    }
}


.header__right-link:not(.btn) {
    padding: 0 10px;
}

@media screen and (max-width: 360px) {
    .header__right-link:not(.btn) {
        padding: 0 5px;
    }
}

@media screen and (min-width: 580px) {
    .header__right-link:not(.btn) {
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .header__right-link {
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .header__right-link {
        font-size: 16px;
    }
}

.header__right-link:not(.btn):hover {
    color: #ee7a14;
}

@media screen and (min-width: 580px) {
    .header__right-link + .header__right-link {
        margin-left: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .header__right-link + .header__right-link {
        margin-left: 68px;
    }

    .header__right-link + .header__right-link::before {
        content: "";
        width: 2px;
        height: 12px;
        position: absolute;
        border: 1px dashed rgba(204, 204, 204, 0.3);
        top: 50%;
        left: -40px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.header__submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    list-style: none;
    z-index: 5;
}

.header__submenu .dropdown__list {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .header__submenu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .header__submenu .dropdown .dropdown__list {
        position: absolute;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .header__submenu .dropdown:last-child .dropdown__list {
        left: unset;
        right: 0;
    }
}

@media screen and (min-width: 1580px) {
    .header__submenu .dropdown:last-child .dropdown__list {
        left: 0;
        right: unset;
    }
}

.header__submenu-item {
    position: relative;
}

.header__submenu-item:last-child .header__submenu-link::before {
    content: none;
}

.header__submenu-link {
    font-family: "Museo Sans 500";
    font-size: 14px;
    color: var(--white-color);
    text-transform: uppercase;
    padding: 10px;
    position: relative;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

@media screen and (min-width: 1024px) {
    .header__submenu-link {
        padding: 17px;
        font-size: 16px;
    }

    .header__submenu-link::before {
        content: "";
        width: 2px;
        height: 12px;
        border: 1px dashed rgba(204, 204, 204, 0.3);
        position: absolute;
        top: 50%;
        right: -2vw;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 1200px) {
    .header__submenu-link::before {
        right: -30px;
    }
}

.header__submenu-link::after {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    margin-top: -2px;
    display: inline-block;
    position: absolute;
    right: -7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

@media screen and (min-width: 1024px) {
    .header__submenu-link::after {
        right: 0;
    }
}

.header__burger {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: block;
    position: absolute;
    right: 8px;
    width: 40px;
    height: 40px;
    top: 0;
}

@media screen and (min-width: 630px) {
    .header__burger {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 1024px) {
    .header__burger {
        display: none;
    }
}

.line {
    fill: none;
    stroke: #000;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: stroke-dasharray 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

._active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

._active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

._active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.main-screen {
    position: relative;
    z-index: 3;
    color: var(--white-color);
    padding: 60px 0;
    margin-top: 60px;
}

.main-screen__rating span{
    display: none;
}
@media screen and (min-width: 1024px) {
    .main-screen {
        margin-top: 0;
    }
}

.main-screen::before {
    content: "";
    background-color: #363761;
    background-image: -o-linear-gradient(145deg, rgba(75, 75, 145, 0.91) 1%, rgba(143, 99, 173, 0.91) 98%);
    background-image: linear-gradient(-55deg, rgba(75, 75, 145, 0.91) 1%, rgba(143, 99, 173, 0.91) 98%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.main-screen__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.main-screen__title {
    font-family: "Museo Sans 900";
    font-size: 32px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

@media screen and (min-width: 540px) {
    .main-screen__title {
        font-size: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .main-screen__title {
        font-size: 50px;
    }
}

.main-screen__rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-screen__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 920px;
    width: 100%;
    margin: 40px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .main-screen__description {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.main-screen__info {
    font-family: "Museo Sans 100";
    line-height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-screen__info + .main-screen__info {
    margin-left: 0;
    margin-top: 20px;
}

@media screen and (min-width: 1024px) {
    .main-screen__info + .main-screen__info {
        margin-left: 70px;
        margin-top: 0;
    }
}

.main-screen__info-icon {
    margin-right: 20px;
    min-width: 45px;
    max-width: 45px;
    height: 45px;
}

@media screen and (min-width: 540px) {
    .main-screen__info-icon {
        min-width: 51px;
        max-width: 51px;
        height: 51px;
    }
}

.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: var(--bg-color);
    color: var(--white-color);
    padding: 12px;
    margin-top: 25px;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 22px;
    }
}

.footer__copy {
    text-align: center;
    font-size: 14px;
}

.cards__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 25px 25px 15px;
    -webkit-box-shadow: 0 11px 24px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 11px 24px 0 rgba(0, 0, 0, 0.1);
    border-radius: var(--brs);
    position: relative;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .cards__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 30px 45px 45px 30px;
    }
}

.cards__item:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.cards__item + .cards__item {
    margin-top: 20px;
}

.cards__info {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cards__title {
    font-family: "Museo Sans 700";
    margin-bottom: 18px;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

@media screen and (min-width: 768px) {
    .cards__title {
        padding-right: 100px;
    }
}

.cards__title:hover {
    color: #ee7a14;
}

.cards__description {
    font-family: "Museo Sans 500";
    margin-top: 20px;
    color: #666;
}

.cards__label.label {
    padding: 6.5px 20px;
}

.cards__img {
    margin-right: 40px;
    margin-bottom: 15px;
}

.cards__img img {
    min-width: 57px;
    max-width: 57px;
    height: 57px;
}

@media screen and (min-width: 768px) {
    .cards__img {
        margin-bottom: 0;
    }

    .cards__img img {
        min-width: 87px;
        max-width: 87px;
        height: 87px;
    }
}

.cards__rating {
    position: absolute;
    top: 30px;
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cloud {
    display: none;
}

#chartdiv {
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
    height: 400px;
}

[role="region"] + g {
    display: none !important;
}

.banner-slider__bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slider__title {
    font-family: "Museo Sans 700";
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
    .banner-slider__title {
        font-size: 18px;
    }
}

.banner-slider__text {
    font-family: "Museo Sans 500";
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .banner-slider__text {
        font-size: 16px;
    }
}

.banner-slider__btn {
    font-family: "Museo Sans 500";
    background-color: var(--gray);
    padding: 6px 20px;
    border-radius: 5px;
    color: var(--text);
}

.banner-slider__item {
    position: relative;
    z-index: 3;
    color: var(--white-color);
    min-height: 240px;
    border-radius: var(--brs);
    overflow: hidden;
    padding: 15px 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (min-width: 768px) {
    .banner-slider__item {
        padding: 25px 30px;
        min-height: 300px;
    }
}

.banner-slider__item::before {
    content: "";
    background-color: #363761;
    background-image: -o-linear-gradient(145deg, rgba(75, 75, 145, 0.91) 1%, rgba(143, 99, 173, 0.91) 98%);
    background-image: linear-gradient(-55deg, rgba(75, 75, 145, 0.91) 1%, rgba(143, 99, 173, 0.91) 98%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.recommended .container {
    padding: 0;
}

@media screen and (min-width: 500px) {
    .recommended .container {
        padding: 0 15px;
    }
}

@media screen and (min-width: 500px) {
    .recommended__block {
        width: calc(100% + 30px);
        margin-left: -15px;
    }
}

.recommended__block.slider {
    padding-bottom: 10px;
}

.recommended-slider._swiper {
    padding: 10px 15px 30px;
}

@media screen and (min-width: 500px) {
    .recommended-slider._swiper {
        padding: 0 20px 30px;
    }
}

.recommended-slider__img {
    background-color: #363761;
    -webkit-box-shadow: inset 0 0 250px 0 rgba(21, 22, 58, 0.64);
    box-shadow: inset 0 0 250px 0 rgba(21, 22, 58, 0.64);
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.recommended-slider__img::before {
    content: "";
    display: block;
    padding-top: 54.1%;
}

.recommended-slider__img img {
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recommended-slider__info {
    padding: 10px 15px 25px;
}

@media screen and (min-width: 768px) {
    .recommended-slider__info {
        padding: 20px 30px;
    }
}

.recommended-slider__title {
    font-family: "Museo Sans 700";
    font-size: 16px;
    margin-bottom: 18px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
    .recommended-slider__title {
        font-size: 18px;
    }
}

.recommended-slider__text {
    color: #666;
    line-height: 20px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .recommended-slider__text {
        font-size: 16px;
    }
}

.recommended-slider__item {
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: var(--brs);
    color: var(--text);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.recommended-slider__item:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.recommended-slider__item:hover .recommended-slider__title {
    color: #ee7a14;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    background-color: rgba(8, 8, 8, 0.5);
}

.modal__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.modal__content {
    max-width: 600px;
    width: 100%;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    background: var(--white-color);
    color: var(--text);
}

.modal__title {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.modal__subtitle {
    text-align: center;
    font-size: 18px;
}

.modal._visible {
    opacity: 1;
    visibility: visible;
    z-index: 22;
}

.modal._visible .modal__content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.close-btn {
    width: 22px;
    height: 22px;
    padding: 4px;
    border: none;
    background-color: transparent;
    position: absolute;
    stroke-width: 1.5px;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.close-btn svg {
    stroke: var(--text);
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[hidden] {
    display: none;
}

::-webkit-input-placeholder {
    color: var(--text);
}

::-moz-placeholder {
    color: var(--text);
}

:-ms-input-placeholder {
    color: var(--text);
}

::-ms-input-placeholder {
    color: var(--text);
}

::placeholder {
    color: var(--text);
}

::-moz-selection {
    background-color: var(--accent);
    color: #fff;
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

button,
input,
textarea {
    outline: 0;
    font-family: inherit;
    color: var(--text);
    background-color: transparent;
    border: none;
}

html {
    height: 100%;
    font-size: 16px;
    font-family: "Museo Sans 300";
    scroll-behavior: smooth;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Museo Sans 300";
    font-size: 16px;
    position: relative;
    background-color: var(--white-color);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    height: 100%;
    color: var(--text);
}

body._locked {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 75, 146, 0.5);
    display: none;
}

.overlay._visible {
    display: block;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--text);
}

b {
    font-family: "Museo Sans 700";
}

a.accent {
    color: var(--accent);
}

a.accent:hover {
    text-decoration: underline;
}

ol,
ul {
    font-family: "Museo Sans 100";
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.01em;
    padding-left: 20px;
}

@media screen and (min-width: 768px) {
    ol,
    ul {
        font-size: 18px;
    }
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    scroll-behavior: smooth;
}

.main__text {
    padding: 30px 0;
    font-size: 18px;
}

@media screen and (min-width: 1024px) {
    .main__text {
        padding: 40px 0;
    }
}

.text {
    font-size: 16px;
}

@media screen and (min-width: 1024px) {
    .text {
        font-size: 18px;
    }
}

.text a,
.description__list a,
.cards__description a {
    color: #e4a124ff;
    text-decoration: underline;
    transition: ease .3s;
}
.text a:hover,
.description__list a:hover,
.cards__description a:hover {
    color: #efb03b;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

picture {
    display: block;
}

.section {
    padding: 35px 0;
}

.section__title {
    font-family: "Museo Sans 700";
    margin-bottom: 25px;
    font-size: 20px;
    color: var(--title);
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .section__title {
        margin-bottom: 45px;
        font-size: 25px;
    }
}

.text-left {
    text-align: left;
}

.label {
    font-family: "Museo Sans 500";
    background-color: var(--gray);
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.label:hover {
    background-color: #ee7a14;
    color: var(--white-color);
}

.labels {
    padding: 20px 0;
}

.labels__list {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.labels__item {
    margin-bottom: 10px;
    margin-right: 10px;
}

.labels__item .label {
    padding: 2px 11px;
}

.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-left: 0;
}

.rating__item {
    width: 16px;
    height: 16px;
}

.rating__item + .rating__item {
    margin-left: 5px;
}

.article img {
    max-width: 370px;
    width: 100%;
    margin: 0 auto 20px;
}

@media screen and (min-width: 768px) {
    .article img {
        float: left;
        margin-right: 30px;
    }
}

.article__text {
    font-family: "Museo Sans 100";
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 22px;
}

@media screen and (min-width: 768px) {
    .article__text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 30px;
    }
}

.article__list {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .article__list {
        margin-bottom: 30px;
    }
}

.dropdown__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--white-color);
    list-style: none;
    padding: 0 20px;
    font-size: 16px;
    z-index: 5;
}

.dropdown__list._active {
    display: block;
}

.dropdown__item {
    width: 100%;
}

.dropdown__link {
    font-family: "Museo Sans 100";
    padding: 12px 0;
    width: 100%;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    border-bottom: 1px solid #e6e6e6;
}

.dropdown__item:hover .dropdown__link {
    color: var(--accent);
}

.slider {
    position: relative;
    padding-bottom: 40px;
}

.swiper-pagination {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    z-index: 2;
}

.swiper-pagination-bullet {
    background-color: #dedfe0;
    width: 9px;
    height: 9px;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
}

.swiper-pagination-bullet:hover {
    background-color: var(--accent) !important;
    opacity: 1;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 10px;
}

.description__list {
    margin-bottom: 70px;
    list-style: none;
    padding-left: 0;
}

.description__item {
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left center;
    padding-left: 40px;
    font-size: 18px;
    font-family: "Museo Sans 300";
    margin-bottom: 10px;
}

.description__list._plus .description__item {
    background-image: url('../img/_src/check_mark.png');
}

.description__list._minus .description__item {
    background-image: url('../img/_src/minus.png');
}

.accordion__item-content {
    display: none;
}

.accordion__item._active .accordion__item-content {
    display: block;
}

.screen-shot__block {
    position: relative;
    padding: 0 80px 40px;
}

.screen-shot__description {
    margin: 30px 0 10px;
}


.screen-shot__block .slider-nav {
    width: 100%;
    top: calc(50% - 40px);
    left: 0;
}

@media screen and (max-width: 768px) {
    .screen-shot__block {
        padding: 0 0 40px;
    }

    .screen-shot__block .slider-nav {
        display: none;
    }
}

@media screen and (min-width: 1300px) {
    .screen-shot__block {
        padding: 0 0 40px;
    }

    .screen-shot__block .slider-nav {
        width: calc(100% + 100px);
        left: -50px;
    }
}

.screen-shot__img {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.screen-shot__img::before {
    content: '';
    display: block;
    padding-bottom: 71%;
}

.screen-shot__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq {
    padding: 80px 0;
}

.faq .accordion__item {
    box-shadow: 0px 11px 11px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.faq .accordion__item:not(:last-child) {
    margin-bottom: 20px;
}

.faq .accordion__item-content {
    padding: 0 30px 20px;
    font-size: 18px;
}

.faq .accordion__item-trigger {
    font-family: "Museo Sans 700";
    font-size: 20px;
    color: #222222;
    cursor: pointer;
    padding: 20px 70px 20px 30px;
    position: relative;
}

.faq .accordion__item-trigger::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: right center;
    background-image: url('../img/_src/check_circle.png');
    transition: 0.4s ease;
}

.faq .accordion__item._active .accordion__item-trigger::before {
    transform: translateY(-50%) rotate(-180deg);
}

.downloads {
    padding: 30px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.downloads__wrapp {
    overflow-x: auto;
}

.downloads__scroll {
    min-width: 700px;
    width: 100%;
}

.downloads .section__title {
    margin-bottom: 30px;
}

.downloads .section__subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.downloads .section__subtitle img {
    margin-right: 15px;
    max-width: 20px;
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .downloads {
        padding: 80px 0;
    }
}

.downloads__list {
    list-style: none;
    padding-left: 0;
    max-width: 780px;
    width: 100%;
    margin: 20px auto 0;
}

.downloads__list-item {
    display: flex;
    justify-content: center;
    color: #000000;
    font-size: 18px;
    padding: 15px 120px;
    align-items: center;
    font-family: "Museo Sans 500";
    position: relative;
    text-align: center;

}

.downloads__list-text {
    flex: 1;
    padding: 0 30px;
}
.downloads__img {
    max-width: 75px;
    margin-bottom: 20px;
}

.downloads__text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
}

.downloads__title {
    font-size: 20px;
    font-family: "Museo Sans 700";
}

.downloads__label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 12px;
    background-color: #885ea2;
    font-size: 12px;
    color: #fff;
    border-bottom-right-radius: 10px;
}

.downloads__list-item._btns {
    justify-content: space-between;
    padding: 15px 100px 15px 0;
}

.downloads__list .downloads__list-item:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

.downloads__top {
    background-color: #ffffff;
    box-shadow: 0px 11px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: 270px;
    height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.downloads__block {
    display: flex;
    max-width: 780px;
    width: 100%;
    justify-content: space-between;
    margin: 40px auto 0;
}

.downloads .link {
    color: #4b4b92;
    border-bottom: 1px dashed #4b4b92;
}

.downloads .link:hover {
    border: none;
}

.app {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 35px;
}

@media screen and (min-width: 630px) {
    .app {
        padding: 100px 0 35px;
    }
}

@media screen and (min-width: 1024px) {
    .app {
        padding: 35px 0;
    }
}

.app__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.app__rating #page-rating-info{
    display: none;
}

.app__rating #page-rating-block{
   /*align-items: unset;*/
}

.app__rating #page-rating-value{
    font-family: "Museo Sans 700";
    background-color: #d9d9d9;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
    margin-left: 15px;
    height: 27px;
    line-height: 20px;
}
.app__description {
    display: flex;
    flex: 1 0 calc(100% - 350px);
}

.app__action {
    margin-top: 20px;
}

.app__title {
    font-size: 20px;
    font-family: "Museo Sans 700";
    margin-bottom: 15px;
}

.app__downloads,
.app__views {
    font-family: "Museo Sans 500";
    color: #666666;
    font-size: 14px;
}

.app__score {
    font-family: "Museo Sans 700";
    background-color: #d9d9d9;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
}

.app__info {
    padding-left: 30px;
}

.app__img {
    max-width: 70px;
    flex-shrink: 0;
}


.app__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .app__img {
        max-width: 115px;
    }

    .app__list {
        max-width: 480px;
    }
}

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

.app__stats-item:not(:first-child) {
    margin-top: 10px;
}


@media screen and (min-width: 768px) {
    .app__stats {
        align-items: baseline;
        flex-direction: row;
    }

    .app__stats-item:not(:first-child) {
        margin: 0 15px;
    }
}

._border {
    position: relative;
}

._border::before {
    content: '';
    width: 1px;
    height: 14px;
    background-color: #d9d9d9;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.app__list-item {
    font-size: 16px;
    font-family: "Museo Sans 300";
    display: flex;
    padding: 8px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    flex-direction: column;
}

.app__list-title {
    font-family: "Museo Sans 700";
    display: flex;
    align-items: center;
    max-width: 60%;
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .app__list-title {
        margin-bottom: 0;
    }

    .app__list-item {
        flex-direction: row;
    }
}

.app__list-title img {
    max-width: 20px;
    margin-right: 10px;
}

.app__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    min-width: 300px;
    background-color: #ffffff;
    box-shadow: 0px 11px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 30px;
}

.app__link {
    font-family: "Museo Sans 500";
    color: #4b4b92;
    border-bottom: 1px dashed #4b4b92;
    font-size: 18px;
}

.app__link:not(:last-child) {
    margin-bottom: 15px;
}

.app__link:hover {
    border-color: transparent;
}


@media screen and (min-width: 991px) {
    .app__block {
        flex-direction: row;
    }

    .app__links {
        margin-top: 0;
    }
}

.read__text {
    font-family: "Museo Sans 700";
    background-color: #fff;
    padding: 30px 40px;
    box-shadow: 0px 11px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
}

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

.read__btn {
    padding: 12px 30px;
}

.read__btn {
    margin: 15px 0 0;
}
@media screen and (min-width: 900px) {
    .read__text_btns {
        display: block;
    }

    .read__btn + .read__btn {
        margin: 0 0 0 30px;
    }
}


.read__text::before {
    content: '';
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #885ea2;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.read__text b {
    margin-right: 15px;
}

.read__link {
    color: #4b4b92;
    border-bottom: 1px dashed #4b4b92;
}

.read__link:hover {
    border-color: transparent;
}

.analogs__block {
    position: relative;
    padding: 0 40px 40px;
}


.analogs__block .slider-nav {
    width: 100%;
    top: calc(50% - 40px);
    left: 0;
}

.analogs__block .swiper-pagination {
    display: none;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .analogs__block {
        padding: 0 0 40px;
    }

    .analogs__block .slider-nav {
        display: none;
    }

    .analogs__block .swiper-pagination {
        display: flex;
    }
}

@media screen and (min-width: 1300px) {
    .analogs__block {
        padding: 0 0 40px;
    }

    .analogs__block .slider-nav {
        width: calc(100% + 100px);
        left: -50px;
    }
}

.analogs__block .slider-nav {
    top: calc(50% - 30px);
}

.analogs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 30px 0;
}

.analogs__img {
    margin-bottom: 30px;
}

.analogs__img img {
    margin: 0 auto;
    max-width: 90px;
}

.analogs__info {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.analogs__title {
    font-family: "Museo Sans 700";
}

.analogs__info-item {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #e6e6e6;
}

.analogs-slider {
    padding: 0 0 20px;
}

.reviews__block {
    display: grid;

    grid-gap: 30px;
    margin-bottom: 25px;
}

@media screen and (min-width: 640px) {
    .analogs-slider {
        padding: 0 20px 30px;
    }
}

@media screen and (min-width: 768px) {
    .reviews__block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 991px) {
    .reviews__block {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reviews__img {
    background-color: #363761;
    -webkit-box-shadow: inset 0 0 250px 0 rgba(21, 22, 58, 0.64);
    box-shadow: inset 0 0 250px 0 rgba(21, 22, 58, 0.64);
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.reviews__img::before {
    content: "";
    display: block;
    padding-top: 54.1%;
}

.reviews__img img {
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reviews__info {
    padding: 10px 15px 25px;
}

@media screen and (min-width: 768px) {
    .reviews__info {
        padding: 20px 30px;
    }
}

.reviews__title {
    font-family: "Museo Sans 700";
    font-size: 16px;
    margin-bottom: 18px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .reviews__title {
        font-size: 18px;
    }
}

.reviews__text {
    color: #666;
    line-height: 25px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .reviews__text {
        font-size: 16px;
    }
}

.reviews__item {
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: var(--brs);
    color: var(--text);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reviews__item:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.reviews__item:hover .reviews__title {
    color: #ee7a14;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: -50px;
    width: calc(100% + 100px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    height: 0;

}

.slider-nav__arrow {
    background-image: url('../img/_src/arrow-slider.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: .8;
}

.slider-nav__arrow:hover {
    opacity: 1;
}

.slider-nav__arrow--next {
    transform: scale(-1, -1);
}

.section-scroll {
    padding-top: 130px;
    margin-top: -130px;
}

.rating-info__table {
    border-radius: 10px;
    overflow-x: auto;
    margin-bottom: 30px;
}

@media screen and (min-width: 1200px){
    .rating-info__table {
        overflow: hidden;
    }
}
.rating-info table {
    min-width: 1170px;
    width: 100%;
    border-collapse: collapse;
}
.rating-info thead {
    background-color: #885ea2;
    color: #ffffff;
    padding: 40px 20px;
}
.rating-info th {
    padding: 30px 20px;
}

.rating-info td {
    text-align: center;
    padding: 15px 20px;
}

.rating-info tr:not(:last-child) {
    border-bottom: 2px solid #d9d9d9;
}

.rating-info__table a {
    border: 1px solid #e6e6e6;
    text-align: center;
    padding: 9px 40px;
    border-radius: 20px;
    transition: 0.2s ease;
}

.rating-info__table a:hover {
    border: 1px solid #E4A124;
    color: #E4A124;
}

.check {
    background-image: url('../img/_src/minus-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}
.check--plus {
    background-image: url('../img/_src/check_mark.png');
}

.wrapper-404 {
    height: 100%;
}

.breadcrumbs {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs a > span {
    margin-right: 5px;
    line-height: 2em;
}

.breadcrumbs a {
    text-decoration: none;
    margin-right: 5px;
    color: #1e2329;
}

.breadcrumbs a:hover {
    color: #e4a124ff;
}

.breadcrumbs span > span {
    color: #e4a124ff;
}