/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/********/

* {
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background: #FAFAFA;
    color: #637381;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
}
body::before {
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 200ms;
}
body.fix {
    overflow: hidden;
}
body.fix::before {
    content: "";
    position: fixed;
    top: 80px;
    opacity: 1;
    visibility: visible;
    transition: all 200ms;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}
body.fix .header {
    background: #FAFAFA;
}

.wrap {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

.color-primary {
    color: #18C6C6;
}

.color-secondary {
    color: #768DDA;
}

.primary-link,
.primary-btn,
.secondary-link,
.secondary-btn,
.tertiary-link,
.tertiary-btn {
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    font-family: "Inter", sans-serif;
    transition: all 200ms;
}

.primary-link,
.primary-btn {
    color: #fff;
    background: #18C6C6;
    border: 2px solid transparent;
}
.primary-link:hover,
.primary-btn:hover {
    background: #768DDA;
}

.secondary-link,
.secondary-btn {
    color: #212B36;
    border: 1px solid #18C6C6;
    background: none;
}
.secondary-link:hover,
.secondary-btn:hover {
    background: #18C6C6;
    color: #fff;
}
.secondary-link--white,
.secondary-btn--white {
    color: #fff;
    border-color: #fff;
}

.tertiary-link,
.tertiary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212B36;
    border: 1px solid #C9CED3;
    background: none;
}
.tertiary-link:hover,
.tertiary-btn:hover {
    border-color: #768DDA;
}

.tertiary-link i,
.tertiary-btn i {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.icon-attention {
    background: url("../img/svg/icon-attention.svg") 50% no-repeat;
}

.icon-play {
    background: url("../img/svg/icon-play.svg") 50% no-repeat;
}

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

.content-center {
    display: flex;
    justify-content: center;
}

/* header */
.header {
    position: relative;
    padding: 20px 0;
    z-index: 99;
}
.header__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.header__nav-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #18C6C6;
    border-radius: 12px;
    cursor: pointer;
}
.header__nav-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    margin: -1px 0 0 -8px;
    border-radius: 2px;
    background: #212B36;
    transition: all 300ms;
}
.header__nav-btn span::before, .header__nav-btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 16px;
    height: 2px;
    margin: 0 0 0 -8px;
    border-radius: 2px;
    background: #212B36;
    transition: all 300ms;
}
.header__nav-btn span::before {
    bottom: 4px;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-btn span::after {
    top: 4px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-btn.active span {
    background: none;
}
.header__nav-btn.active span::before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-btn.active span::after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header__logo-link, .header__logo-img {
    display: block;
}
.header__navigation {
    position: fixed;
    width: 100%;
    max-width: 360px;
    height: 100%;
    z-index: 99;
    top: 80px;
    left: -100%;
    padding-bottom: 120px;
    transition: all 300ms;
    background: #FAFAFA;
    overflow: auto;
}
.header__navigation.active {
    left: 0;
}
.header__navigation .navigation__items {
    padding: 0 20px;
    margin-bottom: 40px;
    list-style: none;
}
.header__navigation .navigation__item {
    display: block;
}
.header__navigation .navigation__link {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    font-size: 24px;
    color: #637381;
}
.header__navigation .navigation__link--active {
    color: #18C6C6;
    border-bottom: 1px solid #C9CED3;
}
.header__languages {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
}
.header__languages .languages__dropdown {
    bottom: 100%;
    top: auto;
}
.header__support-link {
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/twentytwentyfive/assets/images/icon-support.svg) no-repeat 50%;
    border: 1px solid #18C6C6;
    border-radius: 12px;
    text-indent: -999999px;
    font-size: 0;
}

.languages__current {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #637381;
    padding: 10px 20px;
    background: #F0F3FC;
    border-radius: 100px;
    transition: all 300ms;
}
.languages__current::after {
    content: "";
    width: 9px;
    height: 5px;
    margin-top: 2px;
    margin-left: 6px;
    background: url("../img/svg/arrow-down.svg") 50% no-repeat;
}
.languages__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    z-index: 800;
    border-radius: 20px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}
.languages__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #637381;
    line-height: 15px;
    padding: 10px 20px;
    background: #F0F3FC;
    text-decoration: none;
    transition: all 200ms;
}
.languages__link:hover {
    color: #fff;
    background: #768DDA;
}
.languages.active .languages__dropdown {
    visibility: visible;
    opacity: 1;
}

/* index */
.hero {
    padding-top: 200px;
    padding-bottom: 50px;
    text-align: center;
}
.hero__animation {
    position: absolute;
    width: 100%;
    padding: 300px 20px;
    margin-top: -250px;
    top: 0;
    left: 0;
    background: url("../img/bg-animated.svg") 50% no-repeat;
    background-size: 700px 700px;
}
.hero__img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.hero__title, .hero__subtitle, .hero__btns, .hero .btc-link {
    position: relative;
    z-index: 9;
}
.hero__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}
.hero__subtitle {
    font-size: 16px;
    margin: 12px 0;
}
.hero__btns {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
}
.hero__btns a {
    margin-top: 8px;
}
.hero .btc-link {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #637381;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 24px 0;
}
.hero .btc-link .icon-bitcoin {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url("../img/svg/ico-bitcoin.svg") 50% no-repeat;
}
.hero .btc-link:hover {
    color: #768DDA;
}

.why {
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px 0;
    background: #768DDA;
    color: #fff;
}
.why__title {
    position: relative;
    z-index: 9;
    line-height: 1.1;
    font-size: 28px;
    text-align: center;
}
.why__subtitle {
    position: relative;
    z-index: 9;
    color: #D9E2FF;
    font-size: 14px;
    margin: 16px 0;
    text-align: center;
}

.benefits {
    padding-top: 460px;
}
.benefits::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 200px;
    transform: translate(-50%, 0);
    width: 650px;
    height: 650px;
    background: url("../img/bg-phone.svg") 50% no-repeat;
    background-size: 100%;
}
.benefits__items {
    position: relative;
    z-index: 9;
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 -20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.benefits__items::-webkit-scrollbar {
    display: none;
}
.benefits__row {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 10px;
}
.benefits__item {
    min-width: 260px;
    padding: 0 10px;
}
.benefits__item--active .benefits__box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}
.benefits__box {
    padding: 20px;
    border-radius: 16px;
}
.benefits__icon {
    display: block;
    width: 32px;
    height: 32px;
}
.benefits__title {
    font-size: 16px;
    line-height: 1.2;
    margin: 16px 0 12px 0;
}
.benefits__text {
    font-size: 12px;
}

.icon-anonymous {
    background: url("../img/svg/icon-anonymous.svg") 50% no-repeat;
}

.icon-btc {
    background: url("../img/svg/icon-btc.svg") 50% no-repeat;
}

.how {
    padding: 40px 0;
    background: #FAFAFA;
}
.how__btns-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how__btns-wrap a {
    margin-top: 8px;
}

.scheme__item {
    padding-bottom: 8px;
}
.scheme__item--active .scheme__box {
    background: #F3F4F8;
}
.scheme__item--active .scheme__num {
    background: #A1B0E4;
}
.scheme__item--active .scheme__title {
    color: #768DDA;
}
.scheme__item:last-child .scheme__num {
    background: #768DDA;
}
.scheme__box {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
}
.scheme__num {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #D2D9F3;
    border-radius: 10px;
}
.scheme__title {
    margin: 16px 0 12px 0;
    font-size: 16px;
    color: #212B36;
}
.scheme__text {
    font-size: 12px;
}

.guide {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.guide__row::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url("../img/bg-guide.svg") 50% no-repeat;
    background-size: 100%;
}
.guide__excerpt {
    font-size: 12px;
    padding-bottom: 450px;
}
.guide__items {
    position: relative;
    z-index: 9;
    display: flex;
    flex-wrap: nowrap;
    padding: 0 8px;
    margin: 0 -20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.guide__items::-webkit-scrollbar {
    display: none;
}
.guide__item {
    min-width: 230px;
    max-width: 392px;
    flex: 0 0 80%;
    padding: 20px;
    margin: 0 4px;
    background: rgba(118, 141, 218, 0.05);
    border-radius: 16px;
}
.guide__item--active {
    background: rgba(24, 198, 198, 0.1);
}
.guide__item--active .guide__checked {
    background: url("../img/svg/icon-checked-violet.svg") 0 0 no-repeat;
}
.guide__checked {
    font-size: 12px;
    padding-left: 28px;
    background: url("../img/svg/icon-checked-green.svg") 0 0 no-repeat;
}

.questions {
    padding: 40px 0;
    background: #F3F5F8;
}

.app {
    padding: 175px 0;
    color: #fff;
    text-align: center;
    background: #768DDA url("../img/bg-app.svg") 50% no-repeat;
    background-size: auto 1100px;
}
.app__title {
    line-height: 1.1;
    font-size: 28px;
}
.app__subtitle {
    font-size: 12px;
    margin: 12px 0;
}
.app__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app__btns a {
    margin-top: 8px;
}
.app .primary-btn:hover, .app .primary-link:hover {
    background: #fff;
    color: #768DDA;
}
.app .secondary-btn:hover, .app .secondary-link:hover {
    background: #fff;
    color: #768DDA;
}

/* main */
.main {
    flex: 1 1 auto;
}

.breadcrumbs__items {
    width: 100%;
    display: flex;
    list-style: none;
}
.breadcrumbs__item {
    display: flex;
    font-size: 10px;
    font-weight: 500;
}
.breadcrumbs__item:after {
    content: "-";
    margin: 0 4px;
}
.breadcrumbs__item:last-child {
    min-width: 0;
}
.breadcrumbs__item:last-child::after {
    content: "";
}
.breadcrumbs__link {
    color: #637381;
    text-decoration: none;
}
.breadcrumbs__link:hover {
    color: #18C6C6;
}
.breadcrumbs__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #18C6C6;
}

.main__box {
    margin: 24px 0;
    padding: 30px 20px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #EFF1F2;
}
.main__box--half {
    max-width: 660px;
    padding: 30px 45px 30px 35px;
    margin-left: -20px;
    margin-right: -20px;
}

.main__block {
    margin: 16px 0 24px;
}

.block-title {
    margin-bottom: 24px;
}
.block-title__row {
    display: flex;
}
.block-title__name {
    color: #212B36;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}
.block-title__name--tab-center, .block-title__name--mob-center {
    text-align: center;
}
.block-title__desc {
    font-size: 14px;
}
.block-title__desc--tab-center {
    text-align: center;
}
.block-title__btn {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.block-title__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin-right: 12px;
}
.block-title--alt .block-title__name {
    margin-bottom: 12px;
}

.icon-referal {
    background: url("../img/svg/icon-referal-30.svg") 50% no-repeat;
}

.icon-check {
    background: url("../img/svg/icon-check-30.svg") 50% no-repeat;
}

.programm {
    margin-top: 16px;
}
.programm__item {
    padding: 8px 0 0;
}
.programm__item:first-child .programm__block {
    background: #E0E7FF;
}
.programm__block {
    padding: 20px;
    border-radius: 14px;
    background: #F0F3FF;
}
.programm__icon {
    display: block;
    width: 34px;
    height: 34px;
}
.programm__title {
    color: #212B36;
    font-size: 16px;
    line-height: 1.2;
    margin: 16px 0 12px 0;
}
.programm__desc {
    font-size: 14px;
}
.programm__desc a {
    color: #18C6C6;
    text-decoration: none;
}
.programm__desc a:hover {
    color: #768DDA;
}

.icon-commission {
    background: url("../img/svg/icon-commission-34.svg") 50% no-repeat;
}

.icon-livetime {
    background: url("../img/svg/icon-livetime-34.svg") 50% no-repeat;
}

.icon-partner {
    background: url("../img/svg/icon-partner-34.svg") 50% no-repeat;
}

.faq__item {
    margin-bottom: 20px;
}
.faq__title {
    color: #212B36;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}
.faq__text {
    color: #637381;
    font-size: 14px;
    font-weight: 400;
}

.articles__item {
    padding-bottom: 12px;
}
.articles--similar {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -20px;
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.articles--similar::-webkit-scrollbar {
    display: none;
}
.articles--similar .articles__item {
    min-width: 230px;
    max-width: 392px;
    flex: 0 0 80%;
    padding: 0 10px;
}

.article-card {
    overflow: hidden;
    border-radius: 16px;
}
.article-card__thumb {
    position: relative;
    overflow: hidden;
    height: 160px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}
.article-card__img {
    height: 160px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 400ms;
}
.article-card__img:hover {
    transform: translate(-50%, 0) scale(1.05);
}
.article-card__body {
    border-radius: 0 0 16px 16px;
    padding: 16px 20px 30px 20px;
    background: #fff;
    border: 1px solid #EFF1F2;
    border-top: none;
}
.article-card__title {
    color: #212B36;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    transition: all 200ms;
}
.article-card__text {
    margin: 12px 0 24px 0;
    font-size: 14px;
    color: #637381;
}
.article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-card__date {
    color: #B4BCC3;
    font-size: 14px;
}
.article-card__arr {
    display: block;
    width: 8px;
    height: 14px;
    background: url("../img/svg/arrow-right-violet.svg") 50% no-repeat;
}
.article-card a {
    text-decoration: none;
}
.article-card a:hover .article-card__title {
    color: #18C6C6;
}
.article-card a:hover .article-card__arr {
    background: url("../img/svg/arrow-right-green.svg") 50% no-repeat;
}

.article {
    max-width: 1010px;
    margin: 0 -20px 40px -20px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #EFF1F2;
}
.article__content {
    padding: 24px 20px;
}
.article__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 360px;
    border-radius: 30px 30px 0 0;
}
.article__thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.article__date {
    font-size: 14px;
    color: #B4BCC3;
}
.article__title {
    margin: 10px 0 16px 0;
    line-height: 1.3;
    font-weight: 400;
    font-size: 28px;
    color: #212B36;
}
.article__excerpt {
    margin-bottom: 24px;
    line-height: 1.5;
    font-size: 18px;
}
.article__box {
    margin: 16px 0;
    padding: 20px;
    color: #fff;
    background: #768DDA;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 300;
}
.article__box p:last-child {
    margin-bottom: 0;
}
.article__boxtitle {
    font-weight: bold;
    font-size: 18px;
}
.article .content .article__box p {
    font-size: 16px;
}
.article .content .article__box p.article__boxtitle {
    font-size: 18px;
}

.content a {
    color: #768DDA;
}
.content a:hover {
    color: #18C6C6;
    text-decoration: none;
}
.content p {
    font-size: 14px;
    margin-bottom: 10px;
}
.content p b, .content p strong {
    font-weight: 600;
}
.content p:last-of-type {
    margin-bottom: 0;
}
.content h2, .content h3, .content h4 {
    margin: 24px 0 16px 0;
    line-height: 1.3;
    font-weight: 400;
    color: #212B36;
}
.content h2 {
    font-size: 21px;
}
.content h3 {
    font-size: 19px;
}
.content h4 {
    font-size: 17px;
}
.content picture {
    display: block;
    width: 100%;
    height: 320px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.content picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.content ol, .content ul {
    padding: 0 0 0 20px;
    margin-bottom: 10px;
    font-size: 14px;
}
.content ol li, .content ul li {
    margin: 2px 0;
    font-weight: 500;
}
.content ol li::marker, .content ul li::marker {
    color: #18C6C6;
}

/* forms */
.form--mixing {
    margin-top: -24px;
}
.form__input {
    margin: 10px 0 12px;
}
.form__error {
    color: #f00;
}
.form__slider {
    margin: 10px 0 16px;
    height: 10px;
    background: #EFF1F2;
    border-radius: 100px;
    border: none;
    box-shadow: none;
}
.form__slider .noUi-connect {
    background: #768DDA;
}
.form__slider .noUi-handle {
    width: 24px;
    height: 24px;
    right: -12px;
    top: -7px;
    background: #768DDA;
    border: 4px solid #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.12);
    border-radius: 100px;
}
.form__slider .noUi-handle::before, .form__slider .noUi-handle::after {
    display: none;
}
.form__slider--green .noUi-connect, .form__slider--green .noUi-handle {
    background: #18C6C6;
}
.form__slider--red .noUi-connect, .form__slider--red .noUi-handle {
    background: #DA7676;
}
.form__checkbox {
    display: block;
    margin: 20px 0;
}
.form__group {
    position: relative;
}
.form__group-delete {
    position: absolute;
    right: -30px;
    top: 54px;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #DA7676;
    background: #fff url("../img/svg/icon-failure.svg") 50% no-repeat;
    background-size: 10px;
    cursor: pointer;
}
.form__group-delete:hover {
    border-color: #768DDA;
}
.form__badge {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px;
    border-radius: 4px;
    background: #768DDA;
}
.form__badge--green {
    background: #18C6C6;
}
.form__badge--red {
    background: #DA7676;
}
.form__btn {
    display: block;
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    padding: 0 24px;
    background: #18C6C6;
    border-radius: 16px;
    transition: all 200ms;
    cursor: pointer;
}
.form__btn:hover {
    background: #768DDA;
}
.form__btn:focus {
    outline: none;
}
.form__btn--add-group {
    margin-bottom: 24px;
    height: 52px;
    background: #fff;
    font-size: 12px;
    color: #768DDA;
    border: 2px solid #768DDA;
}
.form__btn--add-group:hover {
    background: #768DDA;
    color: #fff;
}
.form__checkbox {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    cursor: pointer;
}
.form__checkbox input[type=checkbox] {
    position: absolute;
    top: 4px;
    left: 2px;
    z-index: -1;
    opacity: 0;
}
.form__checkbox input[type=checkbox]:checked + span:before {
    opacity: 1;
}
.form__checkbox .input-checkbox {
    position: absolute;
    left: 0;
    top: 3px;
}

.input-label {
    font-size: 14px;
    color: #637381;
}

.input-text {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 14px;
    padding: 0 24px;
    border: 1px solid #C9CED3;
    border-radius: 16px;
}
.input-text:focus {
    outline: 1px solid #18C6C6;
    border: 1px solid #18C6C6;
}

.input-textarea {
    display: block;
    width: 100%;
    height: 180px;
    font-size: 14px;
    padding: 0 24px;
    border: 1px solid #C9CED3;
    border-radius: 16px;
}
.input-textarea:focus {
    outline: 1px solid #18C6C6;
    border: 1px solid #18C6C6;
}

.input-text-error {
    outline: 1px solid red;
    border: 1px solid red;
}

.input-checkbox {
    display: flex;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    border: 1px solid #C9CED3;
}
.input-checkbox::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    margin: 3px;
    background: #18C6C6;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s;
}

.order-status {
    margin-top: 32px;
}
.order-status__id {
    font-size: 16px;
    border-bottom: 1px solid #C9CED3;
}
.order-status__id span {
    display: block;
    margin: 8px 0 16px 0;
    word-break: break-all;
}
.order-status__row {
    margin-top: -8px;
}
.order-status__col {
    margin-top: 24px;
}
.order-status__col--fullwidth {
    flex: 0 0 100%;
    width: 100%;
}
.order-status__label {
    display: block;
    margin-bottom: 12px;
    color: #B4BCC3;
    font-size: 14px;
}
.order-status__text {
    color: #212B36;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
}
.order-status__icon {
    display: block;
    width: 20px;
    height: 20px;
}
.order-status__column {
    color: #212B36;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background: #F0F3FF;
    padding: 16px 10px;
    border: 1px solid #fff;
}
.order-status__column span {
    font-weight: 400;
}
.order-status__column:first-child {
    border-radius: 8px 8px 0 0;
}
.order-status__column:last-child {
    border-radius: 0 0 8px 8px;
}

.icon-success {
    background: url("../img/svg/icon-success.svg") 50% no-repeat;
}

.icon-failure {
    background: url("../img/svg/icon-failure.svg") 50% no-repeat;
}

/* footer */
.footer {
    background: #fff;
    padding: 24px 0;
}
.footer__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer__logo-img {
    display: block;
    height: 20px;
}
.footer__desc {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.4;
}
.footer__desc-link {
    font-weight: 600;
    color: #18C6C6;
    text-decoration: none;
}
.footer__desc-link:hover {
    color: #768DDA;
}
.footer__desc-text {
    color: #B4BCC3;
}
.footer__navigation {
    display: none;
}
.footer__copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 8px;
}
.footer__copyright-text {
    flex: 1 1 50%;
    font-size: 10px;
    color: #C9CED3;
    margin-top: 24px;
}
.footer__copyright-text:nth-child(even) {
    display: flex;
    justify-content: flex-end;
    align-self: center;
}
.footer__copyright-link {
    font-size: 10px;
    color: #C9CED3;
    text-decoration: none;
}
.footer__copyright-link:hover {
    color: #768DDA;
}

.top-btn {
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 10px;
    border: 1px solid #B4BCC3;
    cursor: pointer;
    background: url("/wp-content/themes/twentytwentyfive/assets/images/arrow-up.svg") 50% no-repeat;
    transition: all 200ms;
}
.top-btn:hover {
    border-color: #18C6C6;
}

@keyframes spin {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 15px);
    }
}
/* adaptive */
@media screen and (min-width: 420px) {
    .hero {
        padding-top: 300px;
    }
    .hero__animation {
        background-size: 800px 800px;
    }
    .article-card__img {
        width: 100%;
    }
    .benefits::before {
        bottom: 180px;
    }
    .benefits__item {
        min-width: 300px;
    }
}
@media screen and (min-width: 480px) {
    .hero {
        padding-top: 350px;
    }
    /* footer */
    .footer {
        padding: 40px 0;
    }
    .footer__logo-img {
        height: 28px;
    }
    .footer__desc {
        margin-top: 16px;
        font-size: 14px;
    }
    .footer__copyright-text, .footer__copyright-link {
        font-size: 12px;
    }
}
@media screen and (min-width: 600px) {
    /* main */
    .articles {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .articles__item {
        flex: 0 0 50%;
        padding: 0 10px 20px 10px;
    }
    .articles--similar {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 -20px;
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .article-card__img {
        width: auto;
    }
    .main__box--half {
        margin-left: auto;
        margin-right: auto;
    }
    /* index */
    .hero {
        padding-top: 450px;
    }
    .hero__animation {
        background-size: 950px 950px;
    }
    .hero__btns {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 0;
    }
    .hero__btns a {
        margin: 12px;
    }
    .app {
        background-size: auto;
    }
    .app .container {
        max-width: 640px;
    }
    .app__title {
        font-size: 48px;
    }
    .app__subtitle {
        font-size: 18px;
        margin: 20px 0 40px;
    }
    .app__btns {
        flex-direction: row;
        justify-content: center;
    }
    .app__btns a {
        margin: 0 12px;
    }
    .scheme__items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .scheme__item {
        flex: 0 0 50%;
        padding: 0 10px 20px 10px;
    }
    .scheme__box {
        height: 100%;
    }
    .scheme__title {
        margin: 24px 0 20px 0;
        font-size: 18px;
    }
    .scheme__text {
        font-size: 14px;
    }
    .how__btns-wrap {
        margin: 0 -12px;
        flex-direction: row;
        justify-content: center;
    }
    .how__btns-wrap a {
        margin: 8px 12px 0;
    }
    /* footer */
    .footer__copyright {
        margin-top: 40px;
    }
    .footer__copyright-text {
        flex: initial;
        margin-top: 0;
    }
}
@media screen and (min-width: 768px) {
    /* header */
    .header {
        margin-bottom: 20px;
    }
    .header__container {
        justify-content: flex-start;
        align-items: center;
    }
    .header__nav-btn {
        margin-right: 20px;
    }
    .header__navigation {
        position: static;
        width: auto;
        max-width: none;
        padding-bottom: 0;
        margin-left: auto;
        margin-right: 20px;
        background: none;
        overflow: visible;
    }
    .header__navigation .navigation__items {
        position: fixed;
        width: 100%;
        max-width: 360px;
        height: 100%;
        z-index: 99;
        top: 80px;
        left: -100%;
        padding-bottom: 80px;
        transition: all 300ms;
        background: #FAFAFA;
        overflow: auto;
    }
    .header__navigation.active .navigation__items {
        left: 0;
    }
    .header__support-link {
        width: auto;
        height: 40px;
        padding: 10px 16px;
        background: none;
        border: 1px solid #18C6C6;
        border-radius: 12px;
        text-decoration: none;
        text-indent: inherit;
        font-size: 13px;
        font-weight: 500;
        color: #212B36;
        transition: all 200ms;
    }
    .header__support-link:hover {
        color: #fff;
        background: #18C6C6;
    }
    .header__languages .languages__dropdown {
        bottom: auto;
        top: 100%;
        margin-bottom: 0;
    }
    .languages__current {
        background: none;
    }
    .languages__current:hover {
        background: #F0F3FC;
    }
    .languages.active .languages__current {
        background: #F0F3FC;
    }
    /* index */
    .hero .container {
        max-width: 520px;
    }
    .hero__animation {
        background-size: 1020px 1020px;
        padding-right: 50px;
    }
    .hero__title {
        font-size: 60px;
    }
    .hero__subtitle {
        font-size: 20px;
        margin: 20px 0;
    }
    .hero__btns {
        flex-direction: row;
        justify-content: center;
    }
    .hero__btns a {
        margin: 12px;
    }
    .why, .how, .guide, .questions {
        padding: 60px 0;
    }
    .primary-link, .primary-btn, .secondary-link, .secondary-btn, .tertiary-link, .tertiary-btn {
        width: auto;
    }
    .why__title {
        line-height: 1.1;
        font-size: 48px;
    }
    .why__subtitle {
        font-size: 18px;
        margin: 20px 0;
    }
    .benefits {
        padding-top: 0px;
    }
    .benefits::before {
        bottom: 50%;
        transform: translate(-50%, 50%);
        width: 800px;
        height: 800px;
    }
    .benefits__items {
        justify-content: space-between;
    }
    .benefits__row {
        display: block;
        flex: 0 0 33.333%;
    }
    .benefits__item {
        min-width: auto;
    }
    .benefits__title {
        font-size: 18px;
        margin: 20px 0;
    }
    .benefits__text {
        font-size: 14px;
    }
    .guide__row::before {
        top: auto;
        left: auto;
        bottom: 50px;
        right: -40%;
        transform: none;
        width: 850px;
        height: 850px;
    }
    .guide__excerpt {
        font-size: 14px;
        padding-bottom: 30px;
    }
    .guide__items {
        display: block;
        width: 66%;
        padding: 0;
        margin: 0;
    }
    .guide__item {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 30px;
        margin: 10px 0 0 0;
    }
    .guide__checked {
        font-size: 14px;
        padding-left: 30px;
    }
    .scheme__items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .scheme__item {
        flex: 0 0 33.33%;
    }
    .scheme__title {
        margin: 24px 0 20px 0;
        font-size: 18px;
    }
    .scheme__text {
        font-size: 14px;
    }
    /* main */
    .main--bg-animated .container {
        position: relative;
    }
    .main--bg-animated .container .main__box {
        position: relative;
        z-index: 9;
    }
    .main--bg-animated .container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../img/bg-animated.svg") 50% no-repeat;
        background-size: 100%;
    }
    .breadcrumbs__item {
        font-size: 12px;
        font-weight: 400;
    }
    .main__box {
        padding: 60px;
        margin-bottom: 40px;
    }
    .main__block {
        margin: 24px 0 40px;
    }
    .block-title {
        margin-bottom: 32px;
    }
    .block-title__name {
        font-size: 48px;
        margin-bottom: 24px;
    }
    .block-title__name--mob-center {
        text-align: left;
    }
    .block-title__desc {
        font-size: 18px;
    }
    .block-title__btn {
        justify-content: right;
        margin-top: 0;
    }
    .block-title__icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        margin-right: 24px;
    }
    .block-title--alt {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-left: -10px;
        margin-right: -10px;
    }
    .block-title--alt .block-title__col {
        padding: 0 10px;
    }
    .block-title--alt .block-title__col--width-33 {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
    .block-title--alt .block-title__name {
        margin-bottom: 0;
    }
    .block-title--alt .block-title__desc {
        margin-bottom: 8px;
    }
    .icon-referal {
        background: url("../img/svg/icon-referal-52.svg") 50% no-repeat;
    }
    .icon-check {
        background: url("../img/svg/icon-check-52.svg") 50% no-repeat;
    }
    .programm {
        display: flex;
        flex-wrap: wrap;
        margin: 32px -8px 0 -8px;
    }
    .programm__item {
        flex: 1 1 50%;
        padding: 8px;
    }
    .programm__item:last-child {
        padding-bottom: 0;
    }
    .programm__title {
        font-size: 18px;
        margin: 24px 0 16px 0;
    }
    .order-status {
        margin-top: 40px;
    }
    .order-status__id {
        font-size: 18px;
        padding-bottom: 24px;
    }
    .order-status__id span {
        display: inline;
        margin: 0;
        word-break: break-all;
    }
    .order-status__row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px 0 -20px;
    }
    .order-status__col {
        flex: 0 0 33.333%;
        margin-top: 40px;
        padding: 0 20px;
    }
    .order-status__col--fullwidth {
        flex: 0 0 100%;
        width: 100%;
    }
    .order-status__label {
        display: block;
        margin-bottom: 12px;
        color: #B4BCC3;
        font-size: 14px;
    }
    .order-status__text {
        color: #212B36;
        font-size: 14px;
        font-weight: 600;
        word-break: break-all;
    }
    .order-status__destination {
        display: flex;
        flex-wrap: wrap;
    }
    .order-status__column {
        flex: 0 0 50%;
    }
    .order-status__column:nth-child(1) {
        border-radius: 8px 0 0 0;
    }
    .order-status__column:nth-child(2) {
        border-radius: 0 8px 0 0;
    }
    .order-status__column:nth-child(3) {
        border-radius: 0 0 0 8px;
    }
    .order-status__column:nth-child(4) {
        border-radius: 0 0 8px 0;
    }
    .form__row {
        display: flex;
        align-items: flex-end;
        width: 100%;
    }
    .form__col {
        flex: 0 0 50%;
    }
    .form__col-full {
        flex: 0 0 100%;
    }
    .form__col:first-child {
        padding-right: 20px;
    }
    .form__input {
        margin-bottom: 0;
    }
    .form--mixing .form__input, .form--mixing .form__slider {
        margin-bottom: 20px;
    }
    .faq {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .faq__item {
        flex: 0 1 33.333%;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    .faq__item:nth-child(3n+2) {
        padding: 0 30px;
    }
    .faq__title {
        font-size: 20px;
    }
    .articles {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .articles__item {
        flex: 0 0 33.3333%;
        padding: 0 10px 20px 10px;
    }
    .articles--similar {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 -20px;
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .article-card__body {
        padding: 20px 20px 30px 20px;
    }
    .article-card__title {
        font-size: 20px;
    }
    .article {
        margin: 0 0 60px 0;
    }
    .article__content {
        padding: 60px;
    }
    .article__title {
        margin: 10px 0 30px 0;
        font-size: 48px;
    }
    .article__excerpt {
        font-size: 24px;
    }
    .article__box {
        margin: 30px 0;
        padding: 30px;
    }
    .article .content .article__box p {
        font-size: 19px;
    }
    .article .content .article__box p.article__boxtitle {
        font-size: 21px;
    }
    .content p {
        line-height: 1.5;
        font-size: 19px;
    }
    .content h2, .content h3, .content h4 {
        margin: 44px 0 30px 0;
    }
    .content h2 {
        font-size: 32px;
    }
    .content h3 {
        font-size: 30px;
    }
    .content h4 {
        font-size: 28px;
    }
    .content picture {
        margin: 30px 0;
    }
    .content ol, .content ul {
        font-size: 19px;
    }
}
@media screen and (min-width: 960px) {
    /* header */
    .header__nav-btn {
        display: none;
    }
    .header__navigation {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0 20px 0 40px;
    }
    .header__navigation .navigation__items {
        position: static;
        justify-content: space-between;
        width: 100%;
        max-width: none;
        background: none;
        padding: 0;
        margin: 0 40px 0 0;
    }
    .header__navigation .navigation__item {
        margin: 2px 0 0;
    }
    .header__navigation .navigation__link {
        padding: 0;
        text-decoration: none;
        font-size: 15px;
        color: #637381;
        padding-bottom: 2px;
        border-bottom: 2px solid transparent;
    }
    .header__navigation .navigation__link--active {
        border-bottom: 2px solid transparent;
        color: #768DDA;
    }
    .navigation__items {
        display: flex;
        list-style: none;
    }
    .navigation__item {
        margin-left: 40px;
        margin-top: 2px;
    }
    .navigation__item:first-child {
        margin-left: 0;
    }
    .navigation__link {
        text-decoration: none;
        font-size: 15px;
        color: #637381;
        padding-bottom: 2px;
        border-bottom: 2px solid transparent;
        transition: all 200ms;
    }
    .navigation__link:hover {
        border-bottom: 2px solid #18C6C6;
    }
    .navigation__link--active {
        border-bottom: 2px solid transparent;
        color: #768DDA;
    }
    .navigation__link--active:hover {
        border-color: transparent;
    }
    /* index */
    .wrap {
        overflow: hidden;
    }
    .hero {
        position: relative;
        padding: 175px 0 300px;
        text-align: left;
    }
    .hero .container {
        max-width: 1220px;
    }
    .hero__animation {
        left: 350px;
    }
    .hero__img {
        margin: 10px auto 0 auto;
        animation: spin 3s infinite linear;
    }
    .hero__title, .hero__subtitle, .hero__btns {
        max-width: 500px;
    }
    .hero__btns {
        justify-content: flex-start;
        margin: 0 -12px;
    }
    .hero .btc-link {
        position: absolute;
        bottom: 60px;
        padding: 0;
    }
    .why__title, .why__subtitle {
        text-align: left;
    }
    .why__subtitle {
        max-width: 600px;
        margin-bottom: 50px;
    }
    .benefits {
        padding-top: 0px;
    }
    .benefits::before {
        bottom: 40%;
        transform: translate(-50%, 50%);
        width: 1050px;
        height: 1050px;
    }
    .benefits__row {
        display: block;
        flex: 0 0 33.333%;
    }
    .benefits__item {
        min-width: auto;
    }
    .benefits__title {
        font-size: 18px;
        margin: 20px 0;
    }
    .benefits__text {
        font-size: 14px;
    }
    .guide .container {
        position: relative;
    }
    .guide__row {
        margin: 0 -10px;
    }
    .guide__row::before {
        bottom: 50px;
        right: -300px;
        width: 1024px;
        height: 1024px;
    }
    .guide__excerpt {
        width: 50%;
        padding: 0 10px 30px 10px;
    }
    .guide__items {
        width: 50%;
        padding: 0 10px;
    }
    .scheme__title {
        font-size: 20px;
    }
    /* main */
    .main--bg-animated .container::after {
        background-size: 1020px;
    }
    .main__block, .main__box {
        margin-bottom: 60px;
    }
    .block-title {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 40px;
    }
    .block-title__col {
        padding: 0 10px;
    }
    .block-title__col--width-33 {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
    .block-title__col--width-50 {
        width: 50%;
        flex: 0 0 50%;
    }
    .block-title__name {
        margin-bottom: 0;
    }
    .block-title__name--tab-center {
        text-align: left;
    }
    .block-title__name--br span {
        display: block;
    }
    .block-title__desc {
        margin-bottom: 8px;
    }
    .block-title__desc--tab-center {
        text-align: left;
    }
    .main__box--half {
        margin-left: 0;
        margin-right: 0;
    }
    .programm {
        display: flex;
        flex-wrap: wrap;
        margin: 40px -10px 0 -10px;
    }
    .programm__item {
        display: flex;
        justify-content: stretch;
        flex: 1 1 33.333%;
        padding: 0 10px;
    }
    .programm__block {
        padding: 30px;
    }
    .programm__icon {
        width: 40px;
        height: 40px;
    }
    .programm__title {
        font-size: 20px;
        margin: 30px 0 20px 0;
    }
    .icon-commission {
        background: url("../img/svg/icon-commission-40.svg") 50% no-repeat;
    }
    .icon-livetime {
        background: url("../img/svg/icon-livetime-40.svg") 50% no-repeat;
    }
    .icon-partner {
        background: url("../img/svg/icon-partner-40.svg") 50% no-repeat;
    }
    .faq__title {
        font-size: 24px;
    }
    .faq__text {
        font-size: 16px;
    }
    .article-card__body {
        padding: 30px;
    }
    .article__content {
        padding: 70px 100px;
    }
    .article__box {
        padding: 40px;
    }
    /* form */
    .form__row {
        display: flex;
        align-items: flex-end;
        width: 100%;
    }
    .form__col {
        flex: 0 0 50%;
    }
    .form__col:first-child {
        padding-right: 20px;
    }
    .form__input {
        margin-bottom: 0;
    }
    .form--mixing {
        margin-top: 0;
    }
    /* footer */
    .footer__col--large {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .footer__navigation {
        display: block;
        margin-bottom: 24px;
    }
}
@media screen and (min-width: 1100px) {
    /* index */
    .guide__row::before {
        bottom: -35px;
        right: -250px;
    }
}
@media screen and (min-width: 1140px) {
    /* header */
    .header__navigation {
        margin: 0 20px 0 60px;
    }
    .header__navigation .navigation__items {
        justify-content: flex-start;
        margin: 0 20px 0 0;
    }
    .header__navigation .navigation__item {
        margin-left: 40px;
    }
    .header__navigation .navigation__item:first-child {
        margin-left: 0;
    }
    /* index */
    .why, .how, .guide, .questions {
        padding: 120px 0;
    }
    .how__btns {
        display: flex;
        justify-content: flex-end;
        margin: 10px -10px 0 -10px;
    }
    .how__btns-wrap {
        justify-content: space-between;
        flex: 0 0 33.333%;
        margin: 0;
        padding: 0 10px;
    }
    .how__btns-wrap a {
        margin: 0;
    }
    .order-status__column {
        flex: 0 0 25%;
    }
    .order-status__column:nth-child(1) {
        border-radius: 8px 0 0 8px;
    }
    .order-status__column:nth-child(2) {
        border-radius: 0;
    }
    .order-status__column:nth-child(3) {
        border-radius: 0;
    }
    .order-status__column:nth-child(4) {
        border-radius: 0 8px 8px 0;
    }
}
@media screen and (min-width: 1280px) {
    .main--bg-animated .container::before {
        content: "";
        position: absolute;
        top: 110px;
        left: 680px;
        width: 575px;
        height: 800px;
        background: url("../img/bg-order.svg") 50% no-repeat;
        animation: spin 3s infinite linear;
    }
    .main--bg-animated .container::after {
        background-size: 1020px;
        margin-left: 350px;
    }
    /* index */
    .guide__row::before {
        bottom: -75px;
    }
}

.info-block {
    background:#f7f9fc;
    border-left: 4px solid #cbdff6;
    padding: 12px 16px;
    margin: 16px 0;
}

.info-block ul, .info-block ol {
    margin-left: 2rem;
}
