@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

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

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

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

article>*+* {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body,
html {
    width:100%;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 22px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

a {
    text-decoration: none;
}

a:hover {
    color: #6685ff;
}

button {
    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: 0;
    border-width: 0;
    background-color: transparent;
    outline: none;
}

.btn {
    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;
    min-height: 32px;
    min-width: 65px;
    padding: 0 5px;
    border-radius: 7px;
    background-color: #e6e6e6;
    color: #1a1a1a;
    font-size: 9px;
    line-height: 1;
    font-weight: 600;
}

@media (min-width: 360px) {
    .btn {
        padding: 0 6px;
        font-size: 12px;
    }
}

@media (min-width: 480px) {
    .btn {
        padding: 0 14px;
        font-size: 12px;
    }
}

@media (min-width: 1280px) {
    .btn {
        min-height: 50px;
        min-width: 160px;
        padding: 0 50px;
        font-size: 20px;
    }
}

.btn.btn_blue {
    background: linear-gradient(80deg, #4866db 0%, #6a85f2 100%);
    color: white;
    font-weight: bold;
    -webkit-transition: .25s;
    transition: .25s;
}

.btn.btn_blue:hover {
    background: linear-gradient(80deg, #6685ff 0%, #6685ff 100%);
}

.btn.btn_green {
    background: linear-gradient(80deg, #57c853 0%, #68d666 100%);
    color: white;
    font-weight: bold;
    -webkit-transition: .25s;
    transition: .25s;
}

.btn.btn_green:hover {
    background: linear-gradient(80deg, #6cde6a 0%, #6cde6a 100%);
}

.slick-slide {
    outline: none !important;
}

.slick-list {
    overflow: visible !important;
}

.slick-arrow {
    outline: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1420px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page {
    padding-top: 130px;
    padding-bottom: 30px;
}

.page h1 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 35px;
    text-align: center;
}

@media (min-width: 1280px) {
    .page h1 {
        margin-bottom: 30px;
        font-size: 32px;
    }
}

.price_iframe {
    overflow-x: auto;
    text-align: center;
}

.price_iframe iframe {
    width: 100%;
}

.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
    background-color: white;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header .header_logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .header_logo a svg {
    height: 25px;
}

@media (min-width: 360px) {
    .header .header_logo a svg {
        height: 35px;
    }
}

@media (min-width: 1280px) {
    .header .header_logo a svg {
        height: 60px;
    }
}

.header .header_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .header_buttons a.btn:first-of-type {
    margin-right: 10px;
}

@media (min-width: 1280px) {
    .header .header_buttons {
        min-width: 500px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 1280px) {
    .header .header_menu {
        min-width: 500px;
    }
}

.header .header_menu button#openButtonMenu {
    margin-right: 10px;
}

@media (min-width: 1280px) {
    .header .header_menu button#openButtonMenu {
        display: none;
    }
}

.header .header_menu .header_menu__button {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    -webkit-transform: translateY(calc(-100% - 42px));
    transform: translateY(calc(-100% - 42px));
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__button {
        display: none;
    }
}

.header .header_menu .header_menu__button button {
    margin-right: 10px;
}

.header .header_menu .header_menu__button button svg {
    width: 20px;
}

.header .header_menu .header_menu__button span {
    font-size: 18px;
    line-height: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.header .header_menu .header_menu__main {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 18px;
    background-color: #fff;
    -webkit-transform: translateY(calc(-100% - 42px));
    transform: translateY(calc(-100% - 42px));
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main {
        position: static;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 28px 0;
        padding-left: 40px;
        -webkit-transform: none;
        transform: none;
    }
}

.header .header_menu .header_menu__main li {
    margin-bottom: 25px;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li {
        margin-bottom: 0;
        margin-right: 35px;
    }
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li:last-of-type {
        margin-right: 0;
    }
}

.header .header_menu .header_menu__main li a {
    font-size: 22px;
    line-height: 1;
    color: #1a1a1a;
    -webkit-transition: .25s;
    transition: .25s;
}

.header .header_menu .header_menu__main li a:hover {
    color: #6685ff;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li a {
        font-size: 20px;
        line-height: 1;
        color: #141414;
    }
}

.header .header_menu .header_menu__main li ul {
    display: none;
}

.header .header_menu .header_menu__main li ul li ul {
    display: none;
}

.header .header_menu .header_menu__main li.second-menu>a:after {
    content: url("../../../img/menu-arrow.png");
    margin-left: 10px;
    -webkit-transition: .25s;
    transition: .25s;
}

.header .header_menu .header_menu__main li.second-menu>ul {
    margin-top: 25px;
    padding-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style-type: none;
}

.header .header_menu .header_menu__main li.second-menu>ul>li {
    margin-bottom: 20px;
}

.header .header_menu .header_menu__main li.second-menu>ul>li:last-of-type {
    margin-bottom: 0;
}

.header .header_menu .header_menu__main li.second-menu>ul>li a {
    font-size: 18px;
    line-height: 1;
    color: #515461;
}

.header .header_menu .header_menu__main li.second-menu>ul>li a:hover {
    color: #6685ff;
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu {
    position: fixed;
    top: 0px;
    right: 0;
    left: 20%;
    bottom: 0;
    z-index: 999;
    display: block;
    padding: 30px;
    background-color: #f7f8fd;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu>ul>li .third-menu {
        position: absolute;
        right: 0;
        top: 0;
        display: none;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
    }
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>span {
    display: block;
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 1;
    color: #97a0bd;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>span {
        margin: 0 0 -1px 0;
        padding-bottom: 15px;
        background-color: #fff;
    }
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>ul {
        position: static;
        background-color: #fff;
    }
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>ul li {
    margin-bottom: 20px;
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>ul li a {
    font-size: 18px;
    line-height: 1;
    color: #515461;
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu>ul li a:hover {
    color: #6685ff;
}

.header .header_menu .header_menu__main li.second-menu>ul>li .third-menu .header_menu__button {
    top: -42px;
    left: 0px;
    padding-left: 30px;
    background-color: #f7f8fd;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu>ul>li .third-menu .header_menu__button {
        display: none;
    }
}

.header .header_menu .header_menu__main li.second-menu.open>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu.open>ul {
        position: absolute;
        top: 85px;
        margin: 0;
        padding: 15px;
        background-color: #fff;
    }
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu.open>ul>li {
        position: relative;
    }
}

.header .header_menu .header_menu__main li.second-menu.open>ul>li .third-menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (min-width: 1280px) {
    .header .header_menu .header_menu__main li.second-menu.open>ul>li .third-menu.open {
        display: block;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.header .header_menu .header_menu__main li.second-menu.open>a:after {
    content: url("../../../img/menu-arrow2.png");
}

.header .header_menu.open .header_menu__button {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header .header_menu.open .header_menu__main {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.footer {
    padding: 50px 20px 25px;
    background-color: #1a1a1a;
}

@media (min-width: 1280px) {
    .footer {
        padding: 210px 20px 70px;
    }
}

.footer .container {
    padding: 0;
}

@media (min-width: 768px) {
    .footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

.footer .footer_logo {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer .footer_logo {
        width: 100%;
    }
}

@media (min-width: 1280px) {
    .footer .footer_logo {
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) {
    .footer .footer_contacts {
        width: 50%;
        padding-right: 15px;
    }
}

@media (min-width: 1280px) {
    .footer .footer_contacts {
        width: 33%;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
}

.footer .footer_contacts .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer .footer_contacts .item.contact-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer .footer_contacts .item p {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    color: white;
    margin-bottom: 25px;
}

.footer .footer_contacts .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 20px;
    color: white;
}

@media (min-width: 360px) {
    .footer .footer_contacts .item a {
        font-size: 20px;
        line-height: 24px;
    }
}

.footer .footer_contacts .item img {
    margin-right: 5px;
    max-height: 35px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 360px) {
    .footer .footer_contacts .item img {
        margin-right: 10px;
    }
}

@media (min-width: 1280px) {
    .footer .footer_contacts .item img {
        max-height: 42px;
    }
}

.footer .footer_contacts .item:last-of-type {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer .footer_about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .footer .footer_about {
        width: 50%;
        padding-left: 15px;
    }
}

@media (min-width: 1280px) {
    .footer .footer_about {
        width: 25%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
}

.footer .footer_about p {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    color: white;
    margin-bottom: 20px;
}

.footer .footer_about ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

@media (min-width: 1280px) {
    .footer .footer_about ul li {
        margin-bottom: 15px;
    }
}

.footer .footer_about ul li a {
    font-size: 16px;
    line-height: 36px;
    color: #cccccc;
}

@media (min-width: 360px) {
    .footer .footer_about ul li a {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .footer .footer_about ul li a {
        font-size: 18px;
        line-height: 26px;
    }
}

.footer .footer_copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 1280px) {
    .footer .footer_copy {
        width: 42%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.footer .footer_copy p {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    color: white;
    margin-bottom: 20px;
}

@media (min-width: 360px) {
    .footer .footer_copy p {
        font-size: 22px;
    }
}

.footer .footer_copy span {
    font-size: 12px;
    line-height: 23px;
    color: #cbcbcb;
}

@media (min-width: 360px) {
    .footer .footer_copy span {
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    .footer .footer_copy span {
        max-width: 450px;
        font-size: 18px;
        line-height: 26px;
    }
}

.footer .footer_copy span.copy {
    margin-top: 45px;
}

@media (min-width: 1280px) {
    .footer .footer_copy span.copy {
        margin-top: 60px;
    }
}

.banner {
    padding: 90px 20px 70px;
    background-image: url(../../../img/banner_bg.png);
    background-position: 46% 0;
    background-size: cover;
    color: white;
}

@media (min-width: 1280px) {
    .banner {
        padding: 200px 0px 150px;
    }
}

@media (min-width: 1500px) {
    .banner {
        padding: 200px 0px 150px;
        background-image: url(../../../img/banner_bg_big.png);
        background-position: right bottom;
    }
}

.banner .container {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .banner .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.banner img {
    max-height: 230px;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .banner img {
        max-height: 400px;
    }
}

@media (min-width: 1280px) {
    .banner img {
        max-height: 560px;
    }
}

.banner h1 {
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .banner h1 {
        margin-bottom: 40px;
        font-size: 36px;
        line-height: 50px;
    }
}

@media (min-width: 1280px) {
    .banner h1 {
        margin-bottom: 50px;
        font-size: 48px;
        line-height: 62px;
    }
}

.banner p {
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .banner p {
        font-size: 20px;
        line-height: 34px;
    }
}

@media (min-width: 1280px) {
    .banner p {
        margin-bottom: 60px;
        font-size: 24px;
        line-height: 38px;
    }
}

@media (min-width: 1024px) {
    .banner .text {
        max-width: 510px;
    }
}

@media (min-width: 1280px) {
    .banner .text {
        max-width: 680px;
    }
}

.banner .btn {
    padding: 21px 50px;
    margin-bottom: 30px;
    font-size: 18px;
}

@media (min-width: 360px) {
    .banner .btn {
        padding: 21px 90px;
    }
}

@media (min-width: 1024px) {
    .banner .btn {
        margin-bottom: 0;
        padding: 20px;
        max-width: 260px;
        font-size: 20px;
    }
}

@media (min-width: 1280px) {
    .banner .btn {
        margin-bottom: 0;
        padding: 30px;
        max-width: 360px;
        font-size: 24px;
    }
}

.writer {
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
}

@media (min-width: 1280px) {
    .writer {
        padding: 80px 0 120px;
    }
}

.writer h2 {
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

@media (min-width: 1280px) {
    .writer h2 {
        margin-bottom: 70px;
        font-size: 48px;
        line-height: 22px;
    }
}

.writer .container {
    padding: 0;
}

.writer .writer_decor {
    position: absolute;
    z-index: -1;
    left: 70%;
    top: 52%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 1280px) {
    .writer .writer_decor {
        left: 0;
        top: 66px;
        width: 100%;
        -webkit-transform: none;
        transform: none;
    }
}

.writer .writer_decor svg {
    max-height: 300px;
}

@media (min-width: 1280px) {
    .writer .writer_decor svg {
        width: 100%;
        max-height: none;
    }
}

@media (min-width: 1280px) {
    .writer .writer_slider .slick-list {
        overflow-x: hidden !important;
    }
}

.writer .writer_slider .slick-track {
    display: flex;
}

@media (min-width: 1280px) {
    .writer .writer_slider .slick-track {
        padding: 30px 0;
    }
}

.slick-initialized .slick-slide {
    height: inherit;
}

.writer .slick-initialized .slick-slide {
    display: flex !important;
    flex-direction: column;
}

.card_body {
	flex-grow: 1;
}

.writer .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .25s;
    transition: .25s;
}

.writer .slick-arrow:hover {
    opacity: 1;
}

@media (min-width: 1680px) {
    .writer .slick-arrow {
        left: -40px;
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }
}

.writer .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

@media (min-width: 1680px) {
    .writer .slick-arrow.slick-next {
        left: auto;
        right: -40px;
        -webkit-transform: translate(100%, -50%);
        transform: translate(100%, -50%);
    }
}

.card {
    padding: 20px;
    margin: 0 20px;
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    color: #1a1a1a;
}

@media (min-width: 1280px) {
    .card {
        padding: 35px;
        margin: 0 15px;
    }
}

.card .card_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

@media (min-width: 1280px) {
    .card .card_header {
        margin-bottom: 25px;
    }
}

.card .card_header img {
    max-width: 60px;
    margin-right: 20px;
    border-radius: 50%;
}

@media (min-width: 1280px) {
    .card .card_header img {
        max-width: 90px;
    }
}

.card .card_header .card_header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16px;
    line-height: 22px;
}

.card .card_header .card_header__title>p {
    font-weight: bold;
}

@media (min-width: 1280px) {
    .card .card_header .card_header__title>p {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 22px;
    }
}

.card .card_header .card_header__title>span {
    line-height: 24px;
}

@media (min-width: 1280px) {
    .card .card_header .card_header__title>span {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

.card .card_header .card_header__title>span.time {
    color: #969fbc;
}

.card .card_body {
    display: flex;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.card .card_body p {
    font-size: 14px;
    line-height: 23px;
}

@media (min-width: 1280px) {
    .card .card_body p {
        font-size: 16px;
        line-height: 26px;
    }
}

.card .card_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
}

.card_footer .subject {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.card_footer .subject span {
    color: #dcdcdc;
    font-size: 18px;
}

.card .card_footer .btn {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 360px) {
    .card .card_footer .btn {
        padding: 10px 28px;
    }
}

@media (min-width: 1280px) {
    .card .card_footer .btn {
        font-size: 20px;
    }
}

.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rating span {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    background-image: url(../../../img/star_deactive.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.rating span.rating_active {
    background-image: url(../../../img/star_active.png);
}

.rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    flex-direction: column;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.rate span {
    color: #dcdcdc;
    font-size: 18px;
    font-weight: normal;
}

@media (min-width: 1280px) {
    .rate {
        font-size: 20px;
    }
}

.rate b {
    margin-right: 10px;
    font-size: 38px;
    line-height: 50px;
}

@media (min-width: 1280px) {
    .rate b {
        font-size: 42px;
    }
}

.cworks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    flex-direction: column;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.cworks span {
    color: #dcdcdc;
    font-size: 18px;
    font-weight: normal;
}

@media (min-width: 1280px) {
    .cworks {
        font-size: 20px;
    }
}

.cworks b {
    margin-right: 10px;
    font-size: 38px;
    line-height: 50px;
}


@media (min-width: 1280px) {
    .cworks b {
        font-size: 42px;
    }
}

.testimonials {
    overflow: hidden;
    position: relative;
    padding: 60px 0 30px;
}

@media (min-width: 1280px) {
    .testimonials {
        margin-bottom: 140px;
    }
}

.testimonials .container {
    position: relative;
    padding: 0;
}

@media (min-width: 1280px) {
    .testimonials .container:before {
        content: '';
        position: absolute;
        right: -255px;
        top: -500px;
        z-index: -2;
        width: 850px;
        height: 862px;
        background-image: url(../../../img/testimonials_decor.png);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.testimonials h2 {
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

@media (min-width: 1280px) {
    .testimonials h2 {
        margin-bottom: 55px;
        font-size: 48px;
        line-height: 52px;
    }
}

.testimonials .testimonials_tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px 30px;
    padding-left: 0;
    list-style-type: none;
}

@media (min-width: 1280px) {
    .testimonials .testimonials_tabs ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.testimonials .testimonials_tabs ul li {
    margin-right: 2px;
    padding: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #dee4f7;
}

@media (min-width: 1280px) {
    .testimonials .testimonials_tabs ul li {
        max-width: 320px;
        padding: 20px;
    }
}

.testimonials .testimonials_tabs ul li:first-of-type {
    border-top-left-radius: 20px;
}

.testimonials .testimonials_tabs ul li:last-of-type {
    margin-right: 0;
    border-top-right-radius: 20px;
}

.testimonials .testimonials_tabs ul li img {
    max-height: 20px;
}

@media (min-width: 1280px) {
    .testimonials .testimonials_tabs ul li img {
        max-height: 45px;
    }
}

.testimonials .testimonials_tabs ul li.active {
    background-color: #6580ef;
}

.testimonials .testimonials_tabs ul li a {
    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;
}

@media (min-width: 1280px) {
    .testimonials .testimonials_slider .slick-list {
        overflow-x: hidden !important;
    }
}

@media (min-width: 1280px) {
    .testimonials .testimonials_slider .slick-track {
        padding: 30px 0;
    }
}

.testimonials .card_header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.testimonials .card_header .card_header__title>p {
    font-weight: bold;
    line-height: 18px;
    margin-bottom: 15px;
}

@media (min-width: 1280px) {
    .testimonials .card_header .card_header__title>p {
        font-size: 20px;
        line-height: 22px;
    }
}

.testimonials .card_header .card_header__title>span {
    line-height: 19px;
    margin-bottom: 15px;
    font-weight: 400;
}

@media (min-width: 1280px) {
    .testimonials .card_header .card_header__title>span {
        font-size: 20px;
        line-height: 24px;
    }
}

.testimonials .card_header .card_header__title>span.time {
    color: #969fbc;
    line-height: 24px;
    margin-bottom: 0px;
}

@media (min-width: 1280px) {
    .testimonials .card_header .card_header__title>span.time {
        font-size: 20px;
        line-height: 24px;
    }
}

.testimonials .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .25s;
    transition: .25s;
}

.testimonials .slick-arrow:hover {
    opacity: 1;
}

@media (min-width: 1680px) {
    .testimonials .slick-arrow {
        left: -40px;
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }
}

.testimonials .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

@media (min-width: 1680px) {
    .testimonials .slick-arrow.slick-next {
        left: auto;
        right: -40px;
        -webkit-transform: translate(100%, -50%);
        transform: translate(100%, -50%);
    }
}

.advantages {
    color: #1a1a1a;
}

.advantages .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
}

@media (min-width: 1280px) {
    .advantages .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.advantages h2 {
    margin: 0 auto 15px;
    text-align: center;
}

@media (min-width: 1280px) {
    .advantages h2 {
        font-size: 48px;
        line-height: 60px;
        margin: auto;
    }
}

.advantages .advantages_form {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    min-height: 880px;
    background-image: url(../../../img/advantages_form_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 0;
}

.advantages .advantages_form>div {
    position: relative;
    overflow-x: auto;
    z-index: 1;
}

@media (min-width: 1280px) {
    .advantages .advantages_form {
        position: relative;
        min-width: 500px;
        background: none;
    }
}

@media (min-width: 1280px) {
    .advantages .advantages_form:after {
        content: '';
        position: absolute;
        top: 0;
        right: -10%;
    		left: -10%;
        bottom: 0;
        background-image: url(../../../img/advantages_form_bg_big.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 100% center;
    }
} 

.advantages .advantages_list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
}

.breadcrumb-landing {
    width: 100%;
    max-width: 1420px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -80px;
    margin-bottom: 80px;
} 

@media (min-width: 360px) {
    .advantages .advantages_list {
        margin: 30px;
    }
}

@media (min-width: 1280px) {
    .advantages .advantages_list {
        max-width: 780px;
        margin: 0;
        padding: 80px 0 100px;
    }
}

.advantages .advantages_list .item {
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 360px) {
    .advantages .advantages_list .item {
    width: 50%;
    }
}

@media (min-width: 1280px) {
    .advantages .advantages_list .item {
        margin-bottom: 40px;
    }
}

.advantages .advantages_list .item .icon {
    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;
    margin-bottom: 15px;
}

.advantages .advantages_list .item .title {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (min-width: 1280px) {
    .advantages .advantages_list .item .title {
        font-size: 20px;
        line-height: 22px;
    }
}

.advantages .advantages_list .item .desc {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
}

@media (min-width: 1280px) {
    .advantages .advantages_list .item .desc {
        font-size: 16px;
        line-height: 26px;
    }
}

.sales {
    position: relative;
    padding: 60px 0;
}

@media (min-width: 1280px) {
    .sales {
        padding: 80px 0;
    }
}

.sales .sales_decor {
    position: absolute;
    z-index: -1;
    left: 70%;
    top: 52%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 1280px) {
    .sales .sales_decor {
        top: 50%;
        left: 50%;
    }
}

.sales .sales_decor svg {
    max-height: 300px;
}

@media (min-width: 1280px) {
    .sales .sales_decor svg {
        max-height: none;
    }
}

.sales .item {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 20px;
    padding: 25px 15px;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

@media (min-width: 1280px) {
    .sales .item {
        max-width: 1024px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: auto;
        padding: 32px;
    }
}

.sales .item .percent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #d75656;
    font-size: 170px;
    line-height: 150px;
    font-weight: 900;
}

@media (min-width: 360px) {
    .sales .item .percent {
        font-size: 182px;
    }
}

@media (min-width: 1280px) {
    .sales .item .percent {
        font-size: 320px;
        line-height: 286px;
    }
}

.sales .item .percent span:last-of-type {
    font-size: 70px;
    line-height: 100px;
}

@media (min-width: 1280px) {
    .sales .item .percent span:last-of-type {
        padding: 80px 0;
        font-size: 150px;
        line-height: 10px;
    }
}

.sales .item .info {
    font-size: 22px;
    line-height: 20px;
    font-weight: bold;
}

@media (min-width: 1280px) {
    .sales .item .info {
        max-width: 400px;
        padding: 0 10px;
        font-size: 32px;
        line-height: 34px;
        text-align: left;
    }
}

.sales .item .info .title {
    color: #5b77e8;
    margin-bottom: 10px;
}

@media (min-width: 1280px) {
    .sales .item .info .title {
        margin-bottom: 15px;
    }
}

.sales .item .info .text {
    margin-bottom: 20px;
}

@media (min-width: 1280px) {
    .sales .item .info .text {
        margin-bottom: 30px;
    }
}

.sales .item .info a.btn {
    font-size: 16px;
    line-height: 24px;
    padding: 18px;
}

@media (min-width: 1280px) {
    .sales .item .info a.btn {
        max-width: 360px;
        font-size: 20px;
        line-height: 24px;
    }
}

.steps {
    position: relative;
    margin-bottom: 90px;
}

@media (min-width: 1280px) {
    .steps {
        padding: 100px;
    }
}

.steps .container {
    position: relative;
    padding: 0;
}

@media (min-width: 1280px) {
    .steps .container {
        max-width: 960px;
    }
}

@media (min-width: 1280px) {
    .steps .container:before {
        content: '';
        position: absolute;
        right: -485px;
        top: -300px;
        z-index: -1;
        width: 850px;
        height: 862px;
        background-image: url(../../../img/steps_decor.png);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.steps h2 {
    margin: 0 auto 25px;
    text-align: center;
}

@media (min-width: 1280px) {
    .steps h2 {
        margin: 0 auto 45px;
        font-size: 48px;
        line-height: 52px;
    }
}

.steps .steps_dotted {
    margin: 0 10px 25px;
}

.steps .steps_slider img {
    object-fit: contain;
}

@media (min-width: 1280px) {
    .steps .steps_dotted {
        margin: 0 0 35px;
    }
}

.steps .steps_dotted .slick-track {
    -webkit-transform: none !important;
    transform: none !important;
}

.steps .steps_dotted .item {
    position: relative;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 3px;
    margin-right: 2px;
    background-color: #dee4f7;
    font-size: 11px;
    line-height: 15px;
    font-weight: bold;
    color: #515461;
}

@media (min-width: 360px) {
    .steps .steps_dotted .item {
        padding: 13px 8px;
        font-size: 12px;
    }
}

@media (min-width: 1280px) {
    .steps .steps_dotted .item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 80px;
        font-size: 20px;
        line-height: 25px;
    }
}

.steps .steps_dotted .item:first-of-type {
    border-top-left-radius: 20px;
}

.steps .steps_dotted .item:last-of-type {
    margin-right: 0;
    border-top-right-radius: 20px;
}

.steps .steps_dotted .item.slick-current {
    color: white;
    background: linear-gradient(50deg, #4866db 0%, #6a85f2 100%);
}

.steps .steps_dotted .item.slick-succses {
    color: white;
    background: linear-gradient(80deg, #57c853 0%, #68d666 100%);
}

.steps .steps_dotted .item.slick-succses:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 13px;
    height: 13px;
    background-image: url(../../../img/steps_succses.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.steps .steps_slider {
    font-size: 14px;
    line-height: 21px;
    color: #515461;
}

@media (min-width: 1280px) {
    .steps .steps_slider {
        position: relative;
    }
}

.steps .steps_slider .item {
    margin: 0 15px;
}

@media (min-width: 1280px) {
    .steps .steps_slider .item {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (min-width: 1280px) {
    .steps .steps_slider .slick-list {
        overflow-x: hidden !important;
    }
}

.steps .steps_slider .slick-arrow {
    opacity: .5;
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .steps .steps_slider .slick-arrow {
        position: absolute;
        top: 50%;
        left: -160px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.steps .steps_slider .slick-arrow:hover {
    opacity: 1;
}

@media (min-width: 1280px) {
    .steps .steps_slider .slick-arrow.slick-next {
        left: auto;
        right: -160px;
    }
}

.work {
    position: relative;
    padding: 0 10px;
    margin-bottom: 90px;
    color: #1a1a1a;
}

@media (min-width: 360px) {
    .work {
        padding: 0 30px;
    }
}

@media (min-width: 1280px) {
    .work {
        margin-bottom: 180px;
    }
}

.work .container {
    padding: 0;
}

.work h2 {
    margin: 0 auto 40px;
    text-align: center;
}

@media (min-width: 1280px) {
    .work h2 {
        font-size: 48px;
        line-height: 52px;
        margin: 0 auto 90px;
    }
}

.work .work_design {
    position: absolute;
    top: -90px;
    left: 50%;
    z-index: -1;
    display: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 1280px) {
    .work .work_design {
        top: -65px;
        display: block;
    }
}

.work .work_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.work .work_list .item {
    padding: 0 20px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .work .work_list .item {
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .work .work_list .item {
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 25%;
        margin-bottom: 50px;
    }
}

.work .work_list .item .icon {
    width: 100%;
    max-width: 100px;
    margin-bottom: 20px;
}

@media (min-width: 1280px) {
    .work .work_list .item .icon {
        max-width: 160px;
        margin-bottom: 75px;
    }
}

.work .work_list .item .text {
    position: relative;
}

.work .work_list .item .text span {
    position: absolute;
    top: -4px;
    left: -2px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #5975e5;
}

@media (min-width: 1280px) {
    .work .work_list .item .text span {
        top: 0;
        left: -10px;
        font-size: 20px;
    }
}

.work .work_list .item .text p {
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
}

@media (min-width: 360px) {
    .work .work_list .item .text p {
        font-size: 12px;
    }
}

@media (min-width: 1280px) {
    .work .work_list .item .text p {
        max-width: 220px;
        font-size: 16px;
        line-height: 26px;
    }
}

.work .work_button a.btn {
    font-size: 18px;
    line-height: 24px;
    padding: 18px;
}

@media (min-width: 1280px) {
    .work .work_button a.btn {
        margin: auto;
        padding: 23px 10px;
        max-width: 360px;
        font-size: 20px;
    }
}

.seotext {
    position: relative;
    padding: 0 20px;
    margin-bottom: 65px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1280px) {
    .seotext {
        margin-bottom: 145px;
    }
}

.seotext .container {
    position: relative;
}

@media (min-width: 1280px) {
    .seotext .container:before {
        content: '';
        position: absolute;
        left: -255px;
        top: -260px;
        z-index: -1;
        width: 914px;
        height: 927px;
        background-image: url(../../../img/seotext_decor.png);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.seotext h2 {
    margin: 0 auto 30px;
    text-align: center;
}

@media (min-width: 1280px) {
    .seotext h2 {
        margin: 0 auto 60px;
        font-size: 48px;
        line-height: 52px;
    }
}

.seotext p {
    color: #515461;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 25px;
}

@media (min-width: 1280px) {
    .seotext p {
        max-width: 980px;
        margin: 0 auto 35px;
        font-size: 16px;
        line-height: 26px;
    }
}

@media (min-width: 1280px) {
    .seotext.landing .container:before {
        top: -615px;
        left: -335px;
        z-index: -2;
    }
}

.services {
    padding: 0 20px;
    margin-bottom: 90px;
}

@media (min-width: 1280px) {
    .services {
        margin-bottom: 75px;
    }
}

.services h2 {
    margin: 0 auto 30px;
    text-align: center;
}

@media (min-width: 1280px) {
    .services h2 {
        margin: 0 auto 70px;
        font-size: 48px;
        line-height: 52px;
    }
}

.services .container {
    padding: 0;
}

.services .services_slider .item ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.services .services_slider .item ul li {
    text-align: center;
}

@media (min-width: 1280px) {
    .services .services_slider .item ul li {
        text-align: left;
        padding: 0 10px;
    }
}

.services .services_slider .item ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #515461;
}

.services .services_slider .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translate(calc(-50% - 20px), -50%);
    transform: translate(calc(-50% - 20px), -50%);
    opacity: .5;
}

.services .services_slider .slick-arrow:hover {
    opacity: 1;
}

.services .services_slider .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(calc(50% + 20px), -50%);
    transform: translate(calc(50% + 20px), -50%);
}

.order {
    position: relative;
    padding: 90px 18px;
    background-image: url(../../../img/order_bg.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

@media (min-width: 1280px) {
    .order {
        padding-top: 160px;
        margin: 0 0 -180px;
        background: none;
    }
}

.order:before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 234px;
    height: 234px;
    background-image: url(../../../img/order_bg_round.png);
}

@media (min-width: 1280px) {
    .order:before {
        display: none;
    }
}

@media (min-width: 1280px) {
    .order:after {
        content: '';
        position: absolute;
        background-image: url(../../../img/order_bg_big.png);
        top: 0;
        left: 50%;
        width: 100%;
        height: 100%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-size: cover;
        background-position: top;
        z-index: 1;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.order .container {
    position: relative;
    padding: 0;
}

@media (min-width: 1280px) {
    .order .container {
        padding: 0 10px;
        position: relative;
        z-index: 2;
        padding-bottom: 95px;
    }
}

@media (min-width: 1280px) {
    .order .container:before {
        content: '';
        position: absolute;
        bottom: -85px;
        left: -184px;
        width: 234px;
        height: 234px;
        background-image: url(../../../img/order_bg_round.png);
        z-index: 1;
    }
}

.order .order_title h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 22px;
}

@media (min-width: 1280px) {
    .order .order_title h2 {
        margin-bottom: 25px;
        font-size: 48px;
        line-height: 52px;
    }
}

.order .order_subtitle {
    margin-bottom: 30px;
}

.order .order_subtitle p {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}

@media (min-width: 1280px) {
    .order .order_subtitle p {
        font-size: 20px;
        line-height: 20px;
    }
}

.order .order_form {
        min-height: 114px;
    margin-bottom: 30px;
} 
.order .order_form input[type="submit"] {
    background: linear-gradient(80deg, #57c853 0%, #68d666 100%);
    color: white;
    border: none;
    font-size: 20px;
    line-height: 20px;
    padding: 14px 30px;
    border-radius: 10px;
    cursor: pointer;
}
.order .order_form input[type="submit"]:hover {
    background: linear-gradient(80deg, #6cde6a 0%, #6cde6a 100%);
}

.order .order_form .wpcf7-form > p {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .order .order_form .wpcf7-form > p {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
    }
}
.order .order_form .wpcf7-form > p label {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
    width: 100%;
    max-width: 250px;
}
@media (min-width: 768px) {
    .order .order_form .wpcf7-form > p label {
        margin-right: 25px;
    }
}
.order .order_form .wpcf7-form .wpcf7-form-control-wrap {
	width: 100%;
}
.order .order_form .wpcf7-form .wpcf7-form-control-wrap select,
.order .order_form .wpcf7-form .wpcf7-form-control-wrap input {
    width: 100%;
	font-size: 20px;
    line-height: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
}

.order .order_text {
    padding: 0 10px;
}

.order .order_text p {
    font-size: 16px;
    line-height: 26px;
}

@media (min-width: 1280px) {
    .order .order_text p {
        max-width: 980px;
        margin: auto;
        font-weight: 300;
        color: #dde3f6;
    }
}

.offer {
    margin-bottom: 70px;
    padding: 120px 0;
    background-image: url(../../../img/offer_bg.png);
    background-position: 35% 0;
    background-size: cover;
    color: white;
}

@media (min-width: 1280px) {
    .offer {
        margin-top: -50px;
        margin-bottom: 100px;
        padding: 160px 0;
        background-image: url(../../../img/offer_bg_big.png);
        background-position: center;
        background-size: 1920px;
        background-repeat: no-repeat;
    }
}

.offer h2 {
    margin-bottom: 50px;
    font-size: 32px;
    line-height: 52px;
    text-align: center;
}

@media (min-width: 1280px) {
    .offer h2 {
        margin-bottom: 60px;
        font-size: 48px;
    }
}

.offer .container {
    padding: 0;
}

.offer .offer_lists {
    margin-bottom: 40px;
}

.offer .offer_lists .item {
    padding-left: 20px;
    padding-right: 20px;
}

.offer .offer_lists .item p {
    margin-bottom: 23px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 1280px) {
    .offer .offer_lists .item p {
        font-size: 32px;
        line-height: 35px;
    }
}

.offer .offer_lists .item .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.offer .offer_lists .item .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 15px;
    padding-left: 0;
    list-style-type: none;
}

.offer .offer_lists .item .list ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 100;
}

.offer .offer_lists .item .list ul li a {
    color: #fff;
}

@media (min-width: 1280px) {
    .offer .offer_lists .item .list ul li {
        font-size: 20px;
    }
}

.offer .offer_lists .item .list ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 1280px) {
    .offer .offer_lists .slick-list {
        overflow-x: hidden !important;
    }
}

@media (min-width: 1280px) {
    .offer .offer_lists .slick-track {
        padding: 30px 0;
    }
}

.offer .offer_lists .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .25s;
    transition: .25s;
}

.offer .offer_lists .slick-arrow:hover {
    opacity: 1;
}

@media (min-width: 1680px) {
    .offer .offer_lists .slick-arrow {
        left: -40px;
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }
}

.offer .offer_lists .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

@media (min-width: 1680px) {
    .offer .offer_lists .slick-arrow.slick-next {
        left: auto;
        right: -40px;
        -webkit-transform: translate(100%, -50%);
        transform: translate(100%, -50%);
    }
}

.offer .btn {
    margin: 0 10px;
    font-size: 18px;
    line-height: 24px;
    padding: 18px;
}

@media (min-width: 768px) {
    .offer .btn {
        max-width: 360px;
        margin: 0 auto;
        padding: 23px;
        font-size: 20px;
    }
}

.features {
    color: #1a1a1a;
}

.features .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
}

@media (min-width: 1280px) {
    .features .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.features h2 {
    margin: 0 auto 15px;
    max-width: 240px;
    text-align: center;
}

@media (min-width: 1280px) {
    .features h2 {
        max-width: 472px;
        font-size: 48px;
        line-height: 60px;
        margin: auto;
    }
}

.features .features_list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
}

@media (min-width: 1280px) {
    .features .features_list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        padding: 70px 0 100px;
    }
}

.features .features_list .item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 1280px) {
    .features .features_list .item {
        width: 33.333%;
        max-width: 400px;
        margin-bottom: 40px;
    }
}

.features .features_list .item .icon {
    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;
    margin-bottom: 15px;
}

.features .features_list .item .title {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (min-width: 1280px) {
    .features .features_list .item .title {
        font-size: 20px;
        line-height: 22px;
    }
}

.features .features_list .item .desc {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
}

@media (min-width: 1280px) {
    .features .features_list .item .desc {
        font-size: 16px;
        line-height: 26px;
    }
}

.sample {
    position: relative;
    padding: 45px 0 95px;
}

@media (min-width: 1280px) {
    .sample {
        padding: 45px 0 180px;
    }
}

.sample h2 {
    margin-bottom: 35px;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
}

@media (min-width: 1280px) {
    .sample h2 {
        margin-bottom: 60px;
        font-size: 48px;
    }
}

.sample .container {
    position: relative;
    padding: 0;
}

@media (min-width: 1280px) {
    .sample .container:before {
        content: '';
        position: absolute;
        right: -380px;
        top: -550px;
        z-index: -2;
        width: 914px;
        height: 927px;
        background-image: url(../../../img/sample_decor.png);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.sample .sample_decor {
    position: absolute;
    z-index: -1;
    left: 70%;
    top: 52%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 1280px) {
    .sample .sample_decor {
        left: 0;
        top: 66px;
        width: 100%;
        -webkit-transform: none;
        transform: none;
    }
}

.sample .sample_decor svg {
    max-height: 300px;
}

@media (min-width: 1280px) {
    .sample .sample_decor svg {
        width: 100%;
        max-height: none;
    }
}

.sample .sample_slider .slick-list {
    overflow: hidden !important;
}

.sample .sample_slider .item {
    margin: 0 15px;
    padding: 20px 12px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

.sample .sample_slider .item .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    padding-left: 13px;
    padding-right: 13px;
}

.sample .sample_slider .item .row:nth-child(2) {
    color: #5975e6;
}

.sample .sample_slider .item .row .title {
    min-width: 80px;
    margin-right: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 1280px) {
    .sample .sample_slider .item .row .title {
        font-size: 20px;
    }
}

.sample .sample_slider .item .row .desc {
    font-size: 20px;
    line-height: 22px;
}

.sample .sample_slider .item .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 25px;
}

.sample .sample_slider .item .buttons .btn {
    width: 100%;
    max-width: 125px;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 25px;
}

@media (min-width: 360px) {
    .sample .sample_slider .item .buttons .btn {
        max-width: 135px;
    }
}

@media (min-width: 1280px) {
    .sample .sample_slider .item .buttons .btn {
        font-size: 20px;
    }
}

.sample .sample_slider .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .25s;
    transition: .25s;
}

.sample .sample_slider .slick-arrow:hover {
    opacity: 1;
}

@media (min-width: 1680px) {
    .sample .sample_slider .slick-arrow {
        left: -40px;
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }
}

.sample .sample_slider .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

@media (min-width: 1680px) {
    .sample .sample_slider .slick-arrow.slick-next {
        left: auto;
        right: -40px;
        -webkit-transform: translate(100%, -50%);
        transform: translate(100%, -50%);
    }
}

.faq {
    padding-bottom: 70px;
}

@media (min-width: 1280px) {
    .faq {
        padding-bottom: 150px;
    }
}

.faq h2 {
    margin-bottom: 35px;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
}

@media (min-width: 1280px) {
    .faq h2 {
        margin-bottom: 50px;
        font-size: 48px;
    }
}

.faq .container {
    padding: 0 10px;
    max-width: 980px;
}

.faq .faq_list .item {
    margin-bottom: 18px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

.faq .faq_list .item .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    background-color: #f6f8fe;
    transition: .25s;
}

@media (min-width: 1280px) {
    .faq .faq_list .item .head {
        padding: 30px;
    }
}

.faq .faq_list .item .head p {
    padding-right: 15px;
    font-size: 16px;
    line-height: 23px;
    font-weight: 700;
}

@media (min-width: 1280px) {
    .faq .faq_list .item .head p {
        font-size: 20px;
    }
}

.faq .faq_list .item .head button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-width: 0;
    background-image: url("../../../img/38.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq .faq_list .item .text {
    display: none;
    padding: 15px 20px 20px;
    font-size: 14px;
    line-height: 21px;
    color: #4d4d4d;
}

@media (min-width: 1280px) {
    .faq .faq_list .item .text {
        padding: 20px 30px 30px;
        font-size: 16px;
        line-height: 25px;
    }
}

.faq .faq_list .item.open .head {
    border-bottom: 1px solid #f6f8fe;
    background-color: #fff;
}

.faq .faq_list .item.open .head button {
    background-image: url("../../../img/37.png");
}

.breadcrumb {
    display: none;
}

@media (min-width: 768px) {
    .breadcrumb {
        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-top: 25px;
    }
}

.breadcrumb a {
    font-size: 16px;
    line-height: 19px;
    color: #515461;
}

.breadcrumb ul {
    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;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.breadcrumb ul li {
    position: relative;
    padding-right: 20px;
}

.breadcrumb ul li:after {
    content: '›';
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.breadcrumb ul li:last-of-type {
    padding-right: 0;
}

.breadcrumb ul li:last-of-type:after {
    display: none;
}

.how-it-works {
    padding-top: 50px;
    color: #1a1a1a;
}

@media (min-width: 1280px) {
    .how-it-works {
        padding-top: 100px;
    }
}

.how-it-works h1 {
    padding-top: 35px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
}

@media (min-width: 1280px) {
    .how-it-works h1 {
        font-size: 48px;
    }
}

.how-it-works-steps {
    margin-bottom: 100px;
}

@media (min-width: 1280px) {
    .how-it-works-steps {
        margin-bottom: 180px;
    }
}

.how-it-works-steps .item {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .how-it-works-steps .item {
        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;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item {
        margin-bottom: 0;
        padding: 110px 0;
    }
}

.how-it-works-steps .item .image {
    position: relative;
    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;
    margin-bottom: 35px;
    padding-top: 45px;
    padding-bottom: 75px;
}

@media (min-width: 768px) {
    .how-it-works-steps .item .image {
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item .image {
        padding-right: 80px;
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item .image {
        padding-right: 10%;
    }
}

.how-it-works-steps .item .image img {
    max-height: 190px;
}

@media (min-width: 1280px) {
    .how-it-works-steps .item .image img {
        max-height: 500px;
    }
}

.how-it-works-steps .item .image:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    width: 340px;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 1280px) {
    .how-it-works-steps .item .image:before {
        width: 888px;
        height: 783px;
    }
}

@media (min-width: 768px) {
    .how-it-works-steps .item .text {
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item .text {
        padding-left: 80px;
    }
}

.how-it-works-steps .item .text h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 35px;
}

@media (min-width: 1280px) {
    .how-it-works-steps .item .text h2 {
        margin-bottom: 30px;
        font-size: 32px;
    }
}

.how-it-works-steps .item .text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
}

.how-it-works-steps .item .text .tips {
    padding-left: 15px;
    border-left: 2px solid #ff7878;
}

.how-it-works-steps .item .text .tips h3 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
    color: #5975e6;
}

.how-it-works-steps .item .text .tips ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 21px;
}

.how-it-works-steps .item .text .tips ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.how-it-works-steps .item .text .tips ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5975e6;
}

@media (min-width: 400px) {
    .how-it-works-steps .item.step1 .image {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.how-it-works-steps .item.step1 .image:before {
    left: -20px;
    background-image: url("../../../img/ws1_bg.png");
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step1 .image:before {
        left: auto;
        right: -40px;
        background-image: url("../../../img/ws1_big_bg.png");
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item.step1 .image:before {
        right: 70px;
    }
}

@media (min-width: 768px) {
    .how-it-works-steps .item.step2 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 400px) {
    .how-it-works-steps .item.step2 .image {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step2 .image {
        padding-right: 0;
        padding-left: 80px;
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item.step2 .image {
        padding-left: 10%;
    }
}

.how-it-works-steps .item.step2 .image:before {
    right: -20px;
    background-image: url("../../../img/ws2_bg.png");
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step2 .image:before {
        right: auto;
        left: -40px;
        background-image: url("../../../img/ws2_big_bg.png");
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item.step2 .image:before {
        left: 70px;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step2 .text {
        padding-left: 0;
        padding-right: 80px;
    }
}

@media (min-width: 400px) {
    .how-it-works-steps .item.step3 .image {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.how-it-works-steps .item.step3 .image:before {
    left: -20px;
    background-image: url("../../../img/ws3_bg.png");
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step3 .image:before {
        left: auto;
        right: -40px;
        background-image: url("../../../img/ws3_big_bg.png");
    }
}

@media (min-width: 1280px) and (min-width: 1700px) {
    .how-it-works-steps .item.step3 .image:before {
        right: 70px;
    }
}

@media (min-width: 768px) {
    .how-it-works-steps .item.step4 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 400px) {
    .how-it-works-steps .item.step4 .image {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step4 .image {
        padding-right: 0;
        padding-left: 80px;
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item.step4 .image {
        padding-left: 10%;
    }
}

.how-it-works-steps .item.step4 .image:before {
    right: -20px;
    background-image: url("../../../img/ws4_bg.png");
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step4 .image:before {
        right: auto;
        left: -40px;
        background-image: url("../../../img/ws4_big_bg.png");
    }
}

@media (min-width: 1700px) {
    .how-it-works-steps .item.step4 .image:before {
        left: 70px;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .item.step4 .text {
        padding-left: 0;
        padding-right: 80px;
    }
}

.how-it-works-steps .btn {
    padding: 18px;
    font-size: 18px;
    line-height: 24px;
}

@media (min-width: 768px) {
    .how-it-works-steps .btn {
        max-width: 360px;
        margin: auto;
        padding: 23px;
    }
}

@media (min-width: 1280px) {
    .how-it-works-steps .btn {
        font-size: 20px;
    }
}

.blog {
    padding-top: 55px;
}

@media (min-width: 1280px) {
    .blog {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 100px;
    }
}

@media (min-width: 1280px) {
    .blog .order {
        width: 100%;
    }
}

.blog .blog-header {
    margin-bottom: 15px;
    padding-top: 30px;
    padding-bottom: 100px;
    background-image: url(../../../img/blog-header_bg.png);
    background-size: auto 488px;
    background-position: 86% bottom;
    background-repeat: no-repeat;
}

@media (min-width: 1280px) {
    .blog .blog-header {
        width: 100%;
        margin-bottom: 0;
        padding-top: 20px;
        padding-bottom: 50px;
        background-image: url(../../../img/blog-header_bg_big.png);
        background-position: center top;
        background-size: 1920px;
    }
}

@media (min-width: 1280px) {
    .blog .blog-header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 1280px) {
    .breadcrumb {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        color: #fff;
    }
}

@media (min-width: 1280px) {
    .breadcrumb a {
        font-size: 16px;
        line-height: 19px;
        color: #fff;
    }
}

.blog .blog-header .image {
    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;
    margin-bottom: 30px;
}

@media (min-width: 1280px) {
    .blog .blog-header .image {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 0;
        margin-top: -10px;
    }
}

.blog .blog-header .image img {
    max-height: 200px;
}

@media (min-width: 1280px) {
    .blog .blog-header .image img {
        max-height: 320px;
    }
}

.blog .blog-header .text {
    text-align: center;
    color: #fff;
}

@media (min-width: 1280px) {
    .blog .blog-header .text {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-top: 60px;
        text-align: left;
    }
}

.blog .blog-header .text h1 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 52px;
}

@media (min-width: 1280px) {
    .blog .blog-header .text h1 {
        margin-bottom: 30px;
        font-size: 48px;
    }
}

.blog .blog-header .text p {
    max-width: 700px;
    font-size: 20px;
    line-height: 28px;
}

@media (min-width: 1280px) {
    .blog .blog-header .text p {
        font-size: 24px;
    }
}

.blog .blog-container {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1280px) {
    .blog .blog-container {
        width: 65%;
        max-width: 910px;
        margin-bottom: 190px;
        padding-right: 30px;
    }
}

.blog .blog-tags {
    margin-bottom: 40px;
}

.blog .blog-tags ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.blog .blog-tags ul li {
    margin-right: 7px;
    margin-bottom: 10px;
    background-color: #dee4f7;
    border-radius: 10px;
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .blog .blog-tags ul li {
        margin-right: 10px;
    }
}

.blog .blog-tags ul li:last-of-type {
    margin-right: 0;
}

.blog .blog-tags ul li a {
    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: 10px 8px;
    font-size: 12px;
    line-height: 16px;
    color: #515461;
}

@media (min-width: 1280px) {
    .blog .blog-tags ul li a {
        padding: 12px 20px;
        font-size: 16px;
    }
}

.blog .blog-tags ul li.active,
.blog .blog-tags ul li:hover {
    background-color: #6783f0;
}

.blog .blog-tags ul li.active a,
.blog .blog-tags ul li:hover a {
    color: #fff;
}

.blog .blog-articles {
    margin-bottom: 40px;
}

@media (min-width: 1280px) {
    .blog .blog-articles {
        margin-bottom: 80px;
    }
}

.blog .blog-article {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1280px) {
    .blog .blog-article {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 30px;
        padding-bottom: 0;
    }
}

.blog .blog-article .image {
    margin-bottom: 20px;
}

@media (min-width: 1280px) {
    .blog .blog-article .image {
        margin-bottom: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

.blog .blog-article .image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

@media (min-width: 1280px) {
    .blog .blog-article .image img {
        max-height: none;
        max-width: 300px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 0px;
    }
}

.blog .blog-article .content {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1280px) {
    .blog .blog-article .content {
        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;
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 15px;
    }
}

.blog .blog-article .content h2 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 22px;
}

.blog .blog-article .content h2 a {
    color: #1a1a1a;
}

.blog .blog-article .content p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 23px;
    color: #515461;
}

@media (min-width: 1280px) {
    .blog .blog-article .content p {
        font-size: 16px;
        line-height: 26px;
    }
}

.blog .blog-article .content .content-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog .blog-article .content .content-footer .blog-tags {
    margin-bottom: 0;
}

.blog .blog-article .content .content-footer .blog-tags ul li {
    margin-bottom: 0;
}

.blog .blog-article .content .content-footer .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    color: #97a0bd;
}

@media (min-width: 1280px) {
    .blog .blog-article .content .content-footer .date {
        font-size: 16px;
    }
}

.blog .blog-article .content .content-footer .date svg {
    margin-right: 8px;
}

.blog .blog-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin-bottom: 90px;
}

@media (min-width: 1280px) {
    .blog .blog-pagination {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0;
    }
}

.blog .blog-pagination .btn {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}

@media (min-width: 1280px) {
    .blog .blog-pagination .btn {
        margin-bottom: 0;
        max-width: 200px;
        font-size: 20px;
    }
}

.blog .blog-pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.blog .blog-pagination ul li {
    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;
    width: 46px;
    height: 46px;
    margin-right: 15px;
    font-size: 18px;
    line-height: 20px;
    color: #515461;
    border-radius: 10px;
}

@media (min-width: 1280px) {
    .blog .blog-pagination ul li {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

.blog .blog-pagination ul li a,
.blog .blog-pagination ul li .current,
.blog .blog-pagination ul li .dots {
    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;
    width: 100%;
    height: 100%;
    color: #515461;
    border-radius: 10px;
    background-color: #dee4f7;
    -webkit-transition: .25s;
    transition: .25s;
}

.blog .blog-pagination ul li.active a,
.blog .blog-pagination ul li:hover a,
.blog .blog-pagination ul li .current {
    color: #fff;
    background-color: #637eed;
}

.blog .blog-sidebar {
    margin-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar {
        width: 35%;
        max-width: 400px;
        margin-bottom: 30px;
        padding-top: 70px;
        padding-left: 30px;
    }
}

.blog .blog-sidebar h2 {
    margin-bottom: 35px;
    font-size: 20px;
    line-height: 18px;
    text-align: center;
    color: #1a1a1a;
}

.blog .blog-sidebar ul {
    margin-top: 0;
    margin-bottom: 60px;
    padding-left: 0;
    list-style-type: none;
}

.blog .blog-sidebar ul li {
    padding: 20px 15px;
    background-color: #f6f8fe;
    margin-bottom: 2px;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar ul li {
        padding: 20px;
    }
}

.blog .blog-sidebar ul li:first-of-type {
    border-radius: 20px 20px 0 0;
}

.blog .blog-sidebar ul li:last-of-type {
    border-radius: 0 0 20px 20px;
}

.blog .blog-sidebar ul li a {
    font-size: 18px;
    line-height: 20px;
    color: #1a1a1a;
    -webkit-transition: .25s;
    transition: .25s;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar ul li a {
        font-size: 20px;
        line-height: 23px;
    }
}

.blog .blog-sidebar ul li a:hover {
    color: #637eed;
}

.blog .blog-sidebar .sidebar-banner {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(50deg, #4866db 0%, #6a85f2 100%);
    color: #fff;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar .sidebar-banner {
        padding: 30px;
    }
}

.blog .blog-sidebar .sidebar-banner .image {
    margin-bottom: 20px;
}

.blog .blog-sidebar .sidebar-banner h3 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 42px;
    text-align: center;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar .sidebar-banner h3 {
        margin-bottom: 25px;
        font-size: 32px;
    }
}

.blog .blog-sidebar .sidebar-banner p {
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar .sidebar-banner p {
        font-size: 18px;
    }
}

.blog .blog-sidebar .sidebar-banner .btn {
    padding: 18px;
    font-size: 18px;
    line-height: 24px;
}

@media (min-width: 1280px) {
    .blog .blog-sidebar .sidebar-banner .btn {
        padding: 23px;
        font-size: 20px;
    }
}

/*# sourceMappingURL=main.css.map */


.blog.article .blog-header .text h1 {
    margin-bottom: 0;
}

.blog.article .blog-header {
    margin-bottom: 40px;
}

.blog-article.inner {
    padding: 0;
    box-shadow: none;
    border-radius: 0;

}

.blog-article.inner .content {
    padding: 0;
    color: #515461;
    font-size: 20px;
    line-height: 32px;
}

.blog-article.inner .content p {
    margin-bottom: 35px;
}

.blog-article.inner .content h3 {
    margin-bottom: 35px;
    color: #1a1a1a;
    font-size: 32px;
    line-height: 38px;
}

.blog-article.inner .content blockquote {
    margin-bottom: 35px;
    padding-left: 40px;
    border-left: 2px solid #4866db;
    color: #515461;
    font-style: italic;
    font-size: 16px;
    font-weight: 100;
    line-height: 23px;
}

.blog-article.inner .content blockquote p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 23px;
}

@media (min-width: 1280px) {
    .blog-article.inner .content blockquote {
        font-size: 20px;
        font-weight: 100;
        line-height: 32px;
    }

    .blog-article.inner .content blockquote p {
        font-size: 20px;
        line-height: 32px;
    }
}

.blog-article.inner .content .image {
    margin-bottom: 40px;
}

.blog-article.inner .content .image img {
    max-width: none;
    border-radius: 0;
}

.order_now_shortcode {
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 30px;
}

.blog-article.inner .content ul {
    padding-left: 0;
    margin: 0;
    margin-bottom: 35px;
    counter-reset: myCounter;
    list-style-type: none;
    font-size: 14px;
    line-height: 23px;
}

@media (min-width: 768px) {
    .blog-article.inner .content ul {
        font-size: 20px;
        line-height: 32px;
    }

    .order_now_shortcode {
        width: max-content;
        margin-bottom: 85px;
    }
}

.blog-article.inner .content a {
    color: #5975e6;
}

.blog-article.inner .content .btn {
    color: #fff;
}

.blog-article.inner .content li {
    margin-bottom: 12px;
}

.blog-article.inner .content li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    color: white;
    background: linear-gradient(80deg, #4866db 0%, #6a85f2 100%);
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.content-order {
    margin-top: 25px;
    margin-bottom: 50px;
    padding: 15px 20px;
    background: linear-gradient(80deg, #4866db 0%, #6a85f2 100%);
    border-radius: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .content-order {
        position: relative;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        justify-content: space-between;
        margin-top: 55px;
        margin-bottom: 150px;
    }

    .content-order:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 32%;
        transform: translateY(-50%);
        width: 169px;
        height: 106px;
        opacity: .15;
        background-image: url('../../../img/content-order_bg.png');
    }
}

.blog-article.inner .content .content-order h3 {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 13px;
    color: #fff;
}

.blog-article.inner .content .content-order .btn {
    margin: auto;
}

@media (min-width: 768px) {
    .blog-article.inner .content .content-order h3 {
        max-width: 352px;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .blog-article.inner .content .content-order .btn {
        max-width: 240px;
    }
}

.blog-article-related h3 {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 38px;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .blog-article-related h3 {
        margin-bottom: 35px;
        font-size: 48px;
        line-height: 52px;
    }
}

.blog-article-slider.slick-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.blog-article-slider .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
}

.blog-article-slider .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .25s;
    transition: .25s;
}

.blog-article-slider .slick-arrow:hover {
    opacity: 1;
}

.blog-article-slider .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}
.slick-track {
    display: flex !important;
    padding-top: 20px;
    padding-bottom: 20px;
}