@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-ExtraLight.ttf');
    font-weight: 200;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-DemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Black.ttf');
    font-weight: 900;
}

/* <================ Default Styles =================> */

*,
*:after,
*:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: "TT";
    font-weight: 400;
    font-size: 16px;
    background: #ffffff;
    min-height: 100vh;
    scrollbar-gutter: stable both-edges;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-style: normal;
    margin: 0;
}

img {
    width: 100%;
}

body, html {
    overflow-x: hidden;
}

.header__logo {
    width: 200px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

nav.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 85vw;
}

a.fb__link--btn {
    padding: 6px 26px;
    font-family: "TT";
    font-weight: 500;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: .3s all;
    -webkit-transition: .3s all;
    font-size: 24px;
}

a.fb__link--btn:hover {
    background: #f0f0f0;
}

a.fb__link--btn.active {
    background: #30b564;
    color: white;
    font-weight: 600;
}

a.fb__link--btn.second {
    background: #e3f0e3;
    width: 200px;
    display: block;
    text-align: center;
}

a.fb__link--btn.second:hover {
    background: #f0f0f0;
}

button.fb__links--btn {
    font-weight: 500;
    transition: .3s;
    color: black;
    outline: none;
    border: 0;
    padding: 6px 18px;
    font-family: "TT";
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 24px;
    background: transparent;
    gap: 15px;
    position: relative;
    z-index: 4;
}

button.fb__links--btn:hover {
    background: #f0f0f0;
}

button.fb__links--btn > img {
    width: 10px;
    transform: rotate(90deg);
    margin-top: 5px;
}

.fb--links {
    position: relative;
}

.fb__links--block {
    position: absolute;
    top: 100%;
    margin: 0;
    left: 0;
    list-style: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 5px;
    transition: .3s;
    transform: translateY(-20px);
    opacity: 0;
    z-index: -2;
    background: white;
}

.fb__links--block li a {
    font-size: 20px;
    color: black;
    font-weight: 400;
    transition: .3s;
    text-decoration: none;
}

.fb__links--block li a:hover {
    color: #30b564;
}

.fb__links--block li:nth-child(2) a {
    margin: 15px 0;
    display: block;
}

button.fb__links--btn:hover + ol.fb__links--block , ol.fb__links--block:hover {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

header {
    border-bottom: 1px solid #dddddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
}

@media screen and (max-width: 1460px) {
    a.fb__link--btn {
        font-size: 22px;
    }

    button.fb__links--btn {
        font-size: 22px;
    }

    button.fb__links--btn > img {
        width: 8px;
        transform: rotate(90deg);
        margin-top: 0;
    }

    .fb__links--block li a {
        font-size: 14px;
    }

    a.fb__link--btn.second {
        width: 180px;
        border-radius: 10px;
    }

    .header__logo {
        width: 150px;
    }

    .header__inner {
        height: 76px;
    }
}

@media screen and (max-width: 920px) {
    .container {
        max-width: 95vw;
    }
}

.sidebar-toggle {
    display: none;
}

@media screen and (max-width: 850px) {
    header aside {
        display: block;
    }
    .sidebar-toggle {
        position: relative;
        border-radius: 5px;
        background: rgb(242, 242, 242);
        height: 40px;
        width: 40px;
        z-index: 25;
        display: block;
        transition: 0.5s;
        cursor: pointer;
    }

    nav.nav {
        display: none;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 180px;
        font-size: 20px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .sidebar-toggle span, .sidebar-toggle:after, .sidebar-toggle:before{
        height: 4px;
        width: 100%;
        position: absolute;
        background: #000000;
        margin: 0 auto;
        width: 25px;
        border-radius: 6px;
        margin-left: 6px;
        transition: 0.5s; 
    }
    .sidebar-toggle span{
        top: 18px;
    }
    .sidebar-toggle:after, .sidebar-toggle:before{
        content: '';
    }
    .sidebar-toggle:after{
        bottom: 9px;
        width: 20px;
    }
    .sidebar-toggle:before{
        top: 9px;
        width: 28px;
    }

    .sidebar-toggle.open-menu span {
        opacity:0; 
        transition: 0.5s; 
    }
    .sidebar-toggle.open-menu:before {
        transform: rotate(45deg);
        top: 18px;
        transition: 0.4s;
        width: 28px;
    }
    .sidebar-toggle.open-menu:after {
        transform: rotate(-45deg);
        bottom: 18px;
        transition: 0.4s;
        width: 28px;
    }
}

@media screen and (max-width: 600px) {
    nav + a.fb__link--btn.second {
        display: none;
    }
}

aside.mobile--sidebar {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 12;
    top: 0;
    left: 0;
    transition: .3s;
    transform: translateX(100%);
}

.aside--content {
    margin-top: 90px;
    margin-left: 30px;
}

.aside--content img {
    width: 150px;
}

.aside--content nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.aside--content nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    max-width: 180px;
    font-size: 18px;
}

a.sidebar--enter {
    margin-top: 60px;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: #30b564;
    font-size: 14px;
}

aside.mobile--sidebar.open {
    transform: translateX(0);
}

/* Intro */

header {
    background: white;
}

section.section--intro {
    margin-top: 150px;
}

section.section--intro .container {
    max-width: 70vw;
}

.intro--img picture {
    width: 850px;
    display: block;
}

.section--intro .section__inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.intro--content h1 {
    font-size: 78px;
    font-weight: 700;
    margin-top: 40px;
    max-width: 100%;
}

.intro--content h1 span {
    color: rgb(48, 181, 100);
}

p.intro--desc {
    font-size: 28px;
    margin: 0;
    margin-top: 30px;
}

a.intro--btn {
    font-weight: 600;
    font-size: 28px;
    background: rgb(48, 181, 100);
    padding: 20px 50px;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

a.intro--btn:hover {
    background: #8a00ff;
}


article.sticker {
    width: 270px;
    min-height: 270px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    padding: 20px;
    height: auto;
}

article.sticker img {
    width: 70px;
    height: 60px;
    display: block;
}

article.sticker:first-child img {
    width: 50px;
    height: 50px;
}

article.sticker .sticker--title {
    font-weight: 700;
    font-style: normal;
    color: black;
    margin-top: 10px;
    font-size: 26px;
    display: block;
}

article.sticker p {
    font-weight: 400;
    color: #4f4f4f;
    margin: 0;
    margin-top: 20px;
}

article.sticker p b {
    font-style: normal;
    font-weight: 500;
}

.intro--stickers {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    gap: 30px;
}

article.sticker picture {
    height: 60px;
    display: flex;
    align-items: end;
}

.intro--stickers.mobile {
    display: none;
}

@media screen and (max-width: 2500px) {
    .intro--img picture {
        width: 700px;
    }

    .intro--content h1 {
        font-size: 64px;
    }

    p.intro--desc {
        font-size: 22px;
        margin: 0;
        margin-top: 30px;
    }

    a.intro--btn {
        font-weight: 700;
        font-size: 20px;
        background: rgb(48, 181, 100);
        padding: 16px 40px;
        color: white;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
        margin-top: 30px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    section.section--intro .container {
        max-width: 80vw;
    }

    .intro--img picture {
        width: 750px;
    }

    .intro--stickers {
        margin-top: 36px;
    }

    .intro--content h1 {
        max-width: 80%;
    }
}

@media screen and (max-width: 1990px) {
    .intro--img picture {
        width: 700px;
    }

    .intro--content h1 {
        font-size: 58px;
        max-width: 80%;
    }

    p.intro--desc {
        font-size: 20px;
        margin-top: 20px;
    }

    article.sticker {
        width: 240px;
        height: 240px;
    }

    article.sticker .sticker--title {
        font-size: 20px;
        margin-top: 10px;

        
    }

    article.sticker p {
        margin-top: 10px;
        font-size: 16px;
    }

    section.section--intro {
        margin-top: 90px;
    }

    .intro--content h1 {
        margin-top: 42px;
    }
}

@media screen and (max-width: 1850px) {
    section.section--intro .container {
        max-width: 85vw;
    }
}

@media screen and (max-width: 1730px) {
    .intro--content h1 {
        max-width: 100%;
        font-size: 48px;
    }

    p.intro--desc {
        font-size: 18px;
        margin-top: 25px;
    }

    a.intro--btn {
        border-radius: 7px;
        font-size: 16px;
        padding: 12px 28px;
        margin-top: 20px;
    }

    .intro--img picture {
        width: 520px;
    }

    article.sticker {
        width: 180px;
        min-height: 180px;
        height: auto;
        padding: 10px;
    }

    article.sticker img {
        width: 50px;
        height: 40px;
    }

    article.sticker .sticker--title {
        font-size: 18px;
    }

    article.sticker p {
        font-size: 12px;
        margin-top: 4px;
    }

    article.sticker:first-child img {
        width: 40px;
        height: 40px;
    }

    article.sticker:last-child img {
        width: 50px;
        height: 46px;
    }

    article.sticker picture {
        height: 44px;
    }

    .intro--stickers {
        margin-top: 52px;
        gap: 20px;
    }

    article.sticker {
        border-radius: 8px;
    }

    .section--partners .container {
        max-width: 85vw;
    }
}

@media screen and (max-width: 1200px) {
    .intro--img picture {
        width: 410px;
    }

    .intro--content h1 {
        margin-top: 42px;
        font-size: 38px;
        max-width: 100%;
    }

    p.intro--desc {
        margin-top: 30px;
        font-size: 14px;
    }

    article.sticker .sticker--title {
        font-size: 14px;
    }

    article.sticker p {
        font-size: 10px;
    }

    article.sticker {
        width: 140px;
        min-height: 140px;
    }

    .section--intro .section__inner {
        gap: 0;
    }

    .intro--content a.intro--btn {
        font-size: 14px;
    }

        article.sticker:first-child img {
        width: 30px;
        height: 30px;
    }

        article.sticker img {
        width: 40px;
        height: 30px;
    }

    article.sticker:last-child img {
        width: 40px;
        height: 36px;
    }

    article.sticker picture {
        height: 32px;
    }

    article.sticker p {
        font-size: 9px;
    }

        article.sticker {
        width: 144px;
        min-height: 130px;
    }
}

p.intro--desc b{
        font-weight: 400;
        font-style: normal;
    }

@media screen and (max-width: 900px) {
    .section--intro .section__inner {
        flex-direction: column-reverse;
        align-items: center;
    }

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

    .intro--content h1 {
        margin-top: 0px;
        font-size: 60px;
        max-width: 100%;
    }

    p.intro--desc {
        font-size: 44px;
    }

    .intro--stickers {
        display: none;
    }

    .intro--stickers.mobile {
        display: flex;
        gap: 20px;
    }

    a.intro--btn {
        border-radius: 8px;
        font-size: 28px;
        padding: 16px 58px;
        margin-top: 40px;
    }

    .intro--img picture {
        width: 100%;
        margin-top: 20px;
    }

    p.intro--desc b{
        font-weight: 600;
        font-style: normal;
    }

    .intro--stickers.mobile {
        overflow-x: scroll;
        width: 100vw;
        display: flex;
        gap: 50px;
        padding: 0 20px;
        padding-bottom: 20px;
    }

    article.sticker {
        min-width: 400px;
        min-height: 400px;
        padding: 30px;
    }

    article.sticker img {
        width: 100px;
        height: 100px;
    }

    article.sticker .sticker--title {
        font-size: 36px;
    }

    article.sticker p {
        font-size: 24px;
        margin-top: 10px;
    }
    
}

.mobile--swipers {
    display: none;
}

@media screen and (max-width: 600px) {
    .intro--content h1 {
        font-size: 28px;
    }

    p.intro--desc {
        font-size: 20px;
    }

        a.intro--btn {
            border-radius: 8px;
            font-size: 16px;
            padding: 12px 28px;
            margin-top: 30px;
        }

            article.sticker {
        min-width: 180px;
        min-height: 180px;
        padding: 10px;
    }

        article.sticker img {
        width: 30px;
        height: 30px;
    }

    article.sticker .sticker--title {
        font-size: 16px;
    }

    article.sticker p {
        font-size: 11px;
    }

    .intro--stickers.mobile {
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .intro--stickers.mobile > article {
        border-radius: 5px;
    }

    .mobile--swipers {
        display: block;
        width: 100px;
        margin: 0 auto;
    }
}

/* Partners */

picture.img--mob {
    display: none;
}

.section--partners {
    background: rgb(227, 240, 227);
    padding: 70px 0;
    margin-top: 200px;
    padding-top: 20px;
}

.section--partners .container {
    max-width: 70vw;
}

.partners--content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 1980px) {
    .partners--content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section--partners {
        padding: 20px 0;
        padding-bottom: 60px;
    }

}

@media (max-width: 1850px) {
        .section--partners .container {
        max-width: 85vw;
    }
}

@media (max-width: 1280px) {
    

    .section--partners {
        padding: 20px 0;
        padding-bottom: 60px;
    }

    .section--partners .container {
        max-width: 95vw;
    }

    .partners--content h2 {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .partners--content h2 {
        font-size: 28px;
        text-align: center;
        max-width: 300px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    picture.img--fhd {
        display: none;
    }

    picture.img--mob {
        display: block;
    }

    .partners--content h2 span {
        display: none;
    }

    
}

@media screen and (max-width: 600px) {
        .partners--content h2 {
            font-size: 20px;
            text-align: center;
            max-width: 200px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
}

.intro--stickers.mobile::-webkit-scrollbar {
    display: none;
}

.section--testimonials .testimonials--content h2 {
    font-size: 72px;
    text-align: center;
    margin-top: 150px;
    font-weight: 700;
    margin-bottom: 50px;
}

.section--testimonials .container {
    max-width: 70vw;
}

.tm--buttons button {
    padding: 20px 0px;
    width: 300px;
    font-size: 36px;
    font-weight: 700;
    border: 1px solid rgb(168, 169, 173);
    background: transparent;
    border-radius: 80px;
    cursor: pointer;
    transition: .3s background;
    -webkit-transition: .3s background;
}

.tm--buttons {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 90px;
}

.tm--buttons button.active:last-child {
    background: rgb(118, 176, 255);
    color: white;
    border: 0;
}

.tm--buttons button.active:first-child {
    background: #edf6ed;
    color: #316931;
    border: 0;
}

.tm--blocks {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 60px;
}

.tm--blocks article {
    border: 1px solid rgb(221, 221, 221);
    padding: 20px;
    border-radius: 20px;
    width: 420px;
}

.tm--blocks article figure {
    margin: 0;
    padding: 0;
}

.tm--blocks article strong {
    padding: 0 12px;
    font-size: 40px;
    display: block;
}

.tm--blocks article p {
    color: rgb(125, 125, 125);
    text-align: center;
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 10px;
}

.testimonials--content a.intro--btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 700px;
    text-align: center;
    font-size: 36px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 150px;
    margin-top: 120px;
}

@media screen and (max-width: 2000px) {
    .section--testimonials .testimonials--content h2 {
        font-size: 56px;
        margin-top: 60px;
        margin-bottom: 0;
    }

    .tm--blocks article strong {
        font-size: 34px;
        
    }

    .tm--blocks article p {
        margin: 0;
        margin-top: 10px;
        font-size: 18px;
    }

    .tm--blocks article {
        width: 340px;
        padding: 20px;
    }

    .tm--buttons {
        margin-top: 60px;
    }

    .testimonials--content a.intro--btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 560px;
    text-align: center;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 300px;
    border-radius: 10px;
    margin-top: 80px;
}
}

@media screen and (max-width: 1630px) {
    .section--testimonials .container {
        max-width: 85vw;
    }

    .section--testimonials .testimonials--content h2 {
        font-size: 44px;
        margin-top: 90px;
    }

    

    .tm--buttons {
        margin-top: 40px;
        gap: 40px;
    }

    .tm--buttons button {
    padding: 12px 40px;
    font-size: 24px;
    font-weight: 700;
    border: 1px solid rgb(168, 169, 173);
    background: transparent;
    border-radius: 80px;
}

.tm--blocks article strong {
    font-size: 24px;
}

.tm--blocks article p {
    font-size: 14px;
}

.tm--blocks article {
        width: 260px;
        padding: 15px;
    }

    .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 400px;
        text-align: center;
        font-size: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
        margin-bottom: 300px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 1240px) {
    .section--testimonials .container {
        max-width: 95vw;
    }

        .section--testimonials .testimonials--content h2 {
        font-size: 36px;
        margin-top: 90px;
    }

    .tm--buttons {
        margin-top: 30px;
        gap: 30px;
    }

        .tm--buttons button {
        padding: 10px 30px;
        font-size: 20px;
    }

    .tm--blocks {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 20px;
}

.tm--blocks article {
        width: 220px;
        padding: 10px;
    }

    .tm--blocks article strong {
        padding: 0 10px;
        font-size: 20px;
    }

    .tm--blocks article p {
        font-size: 12px;
    }

    .section--testimonials .container {
        max-width: 95vw;
    }

        .tm--blocks article {
        padding: 15px;
        width: 210px;
    }

    .tm--blocks article p {
        font-size: 10px;
    }

        .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 320px;
        text-align: center;
        font-size: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 300px;
        border-radius: 10px;
    }
}


@media screen and (max-width: 930px) {
    .tm--blocks {
        gap: 20px;
        overflow-x: scroll;
        width: 100%;
    }

    .tm--blocks::-webkit-scrollbar {
        display: none;
    }

    .bt--blocks::-webkit-scrollbar {
        display: none;
    }

    .tm--blocks article {
        width: 400px;
        min-width: 400px;
        min-height: 400px;
        height: 400px;
        padding: 20px;
    }

    .tm--blocks article strong {
        font-size: 32px;
    }

    .tm--blocks article p {
        font-size: 20px;
    }

    .section--testimonials .testimonials--content h2 {
        font-size: 36px;
        font-weight: 500;
    }

    .tm--buttons button {
        padding: 12px 40px;
    }

    .testimonials--content a.intro--btn {
        font-weight: 600;
        width: 80vw;
    }
}

@media screen and (max-width: 600px) {
    .tm--blocks article strong {
        font-size: 28px;
    }

    .tm--blocks article p {
        font-size: 14px;
    }

    .tm--blocks article {
        width: 300px;
        height: 300px;
        min-height: 300px;
        min-width: 300px;
    }

    .section--testimonials .testimonials--content h2 {
        font-size: 32px;
    }

    .tm--buttons button {
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 700;
        border: 1px solid rgb(168, 169, 173);
        background: transparent;
        border-radius: 80px;
    }

    .testimonials--content a.intro--btn {
        font-size: 18px;
        border-radius: 7px;
    }

    figure.stage.two.four img.preview {
        border-radius: 24px;
    }
}

article[data-target="seller"] {
    display: none;
}


.fb__links--block {
    height: 0;
    overflow: hidden;
}

button.fb__links--btn:hover + ol.fb__links--block, ol.fb__links--block:hover {
    height: auto;
}

/* Roadmap */

h2.rm--title {
    text-align: center;
    font-weight: 700;
    font-size: 72px;
}

p.rm--subtitle {
    text-align: center;
    font-size: 28px;
}

figure.stage .stage--desc {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 360px;
    min-width: 360px;
}

figure.stage b {
    color: rgb(48, 181, 100);
    font-size: 42px;
    font-weight: 700;
    font-style: normal;
}

figure.stage strong {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 52px;
    display: block;
}

figure.stage p {
    color: rgb(117, 117, 117);
    font-size: 26px;
	font-weight: 500;
}

figure.stage {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

figure.stage.one picture:has(img.arrow--rm) {
    position: absolute;
    width: 260px;
    left: 430px;
    top: 50px;
}

.section--roadmap .container {
    max-width: 70vw;
}

figure.stage.one {
    gap: 380px;
    margin-top: 200px;
}

figure.stage img.preview {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    width: 1000px;
    transform: rotate(4deg);
}

figure.stage.two img.preview {
    transform: rotate(-3deg);
    width: 1100px;
}

figure.stage.two {
    margin-top: 120px;
    align-items: end;
    margin-bottom: 350px;
}

figure.stage picture:has(img.arrow--rm) {
    position: absolute;
}

figure.stage.two picture:has(img.arrow--rm) {
    width: 260px;
    left: 62%;
    bottom: -100px;
}

figure.stage.two + figure.stage.one .stage--desc {
    max-width: 600px;
    margin-left: 60px;
}

figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
    left: 700px;
    top: 0px;
}

figure.stage.two + figure.stage.one img.preview {
    border-radius: 50px;
    width: 440px;
    margin-right: 200px;
}

figure.stage.two.four img.preview {
    transform: none;
    width: 600px;
    margin-left: 0px;
    border-radius: 40px;
}

figure.stage.two.four .stage--desc{
    min-width: 500px;
    max-width: 500px;
}

figure.stage.two.four picture:has(img.arrow--rm) {
    left: 45%;
    bottom: 80px;
}

figure.stage.two.four {
    margin-bottom: 150px;
    padding: 0 90px;
}


a.intro--btn.center {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    max-width: 750px;
    margin-top: 0;
    margin-bottom: 90px;
    padding-left: 0;
    padding-right: 0;
    padding: 30px 0;
    font-size: 42px;
}


@media screen and (max-width: 2430px) {
    figure.stage.one {
        padding: 0;
    }
}

@media screen and (max-width: 2280px) {
    figure.stage.one picture:has(img.arrow--rm) {
        left: 360px;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        left: 600px;
    }

    figure.stage.two img.preview {
        width: 900px;
    }

    figure.stage.two {
        padding-right: 220px;
        padding: 0;
    }
}

@media screen and (max-width: 1980px) {
    figure.stage img.preview {
        width: 700px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 280px;
        top: 0;
        left: 450px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 280px;
    }

    figure.stage.one {
        padding:  0 120px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 46%;
    }

    figure.stage.two + figure.stage.one img.preview {
        margin-right: 0;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        left: 700px;
    }
}

@media screen and (max-width: 1800px) {
    h2.rm--title {
        font-size: 48px;
    }

    p.rm--subtitle {
        font-size: 18px;
        margin-top: 0;
    }

    figure.stage b {
        font-size: 20px;
    }

    figure.stage strong {
        font-size: 36px;
        margin: 0;
    }

    figure.stage p {
        font-size: 18px;
        margin: 0;
        margin-top: 10px;
    }

    figure.stage .stage--desc {
        max-width: 300px;
        min-width: 300px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 150px;
        left: 380px;
    }

    figure.stage.one {
        gap: 0;
        padding: 0 60px;
    }

    figure.stage img.preview {
        width: 500px;
    }

    figure.stage.two img.preview {
        width: 600px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 180px;
        left: 55%;
        bottom: -60px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        width: 400px;
        max-width: 400px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        margin-top: 90px;
    }

    figure.stage.two + figure.stage.one img.preview {
    border-radius: 35px;
    width: 300px;
    margin-right: 0px;
}

figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
    left: 500px;
    top: 20%;
}

figure.stage.two.four img.preview {
    width: 400px;
    margin-left: 0;
}

figure.stage.two.four .stage--desc {
    max-width: 300px;
    min-width: 300px;
}
}


@media screen and (max-width: 1100px) {
    h2.rm--title {
        font-size: 40px;
    }

    p.rm--subtitle {
        font-size: 16px;
    }

    figure.stage strong {
        font-size: 28px;
    }

    figure.stage p {
        font-size: 14px;
    }

    figure.stage .stage--desc {
        min-width: 220px;
        max-width: 220px;
    }

    figure.stage.one {
        padding-right: 0;
        padding-left: 30px;
    }

    figure.stage img.preview {
        width: 480px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        left: 250px;
        width: 100px;
    }

    figure.stage.one {
        margin-top: 90px;
    }

    figure.stage.two img.preview {
        width: 500px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 100px;
        left: 60%;
        bottom: -40px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        max-width: 320px;
        width: 320px;
    }

        figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        left: 350px;
        top: 15%;
    }

        figure.stage.two + figure.stage.one img.preview {
        border-radius: 25px;
        width: 200px;
        margin-right: 0px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        margin-top: 60px;
    }

    figure.stage.two + figure.stage.one img.preview {
        margin-right: 90px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 50%;
    }

    figure.stage.two {
        margin-bottom: 150px;
    }

    a.intro--btn.center {
        max-width: 300px;
    }

    figure.stage.two.four {
        margin-bottom: 90px;
        margin-top: 90px;
    }
}

@media screen and (max-width: 940px) {
    figure.stage {
        flex-direction: column;
    }

    figure.stage.two {
        flex-direction: column-reverse;
    }

    figure.stage strong {
        font-size: 36px;
    }

    figure.stage .stage--desc {
        max-width: 300px;
        min-width: 300px;
    }

    figure.stage img.preview {
        width: 80vw;
        display: block;

        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
        border-radius: 15px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        transform: rotate(30deg);
        left: 50%;
        top: 120px;
    }

    figure.stage.two .stage--desc {
        width: 55vw;
        max-width: 55vw;

    }

    figure.stage.two img.preview {
        width: 90vw;
    }

    figure.stage p {
        font-size: 20px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        left: 18%;
        width: 160px;
        top: 100px;
        transform: rotateX(180deg) rotate(50deg);
    }

    figure.stage.two {
        margin-bottom: 60px;
    }

        figure.stage.two + figure.stage.one .stage--desc {
        max-width: 400px;
        width: 400px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 180px;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        transform: rotate(69deg);
        right: 15%;
        left: unset;
        top: 350px;
    }

    figure.stage.two + figure.stage.one img.preview {
        margin: 0;
        width: 50vw;
        border-radius: 44px;
        margin-top: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 30%;
        top: 30%;
        transform: rotateX(180deg) rotate(65deg);
    }
    figure.stage.two.four img.preview {
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px;
    }

    a.intro--btn.center {
        max-width: 80vw;
    }

        p.rm--subtitle {
        font-size: 28px;
        max-width: 60vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }

    .testimonials--content a.intro--btn {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 680px) {
    h2.rm--title {
        font-size: 24px;
    }

        p.rm--subtitle {
        font-size: 18px;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }

    figure.stage b {
        font-size: 14px;
    }

    figure.stage strong {
        font-size: 20px;
    }

    figure.stage p {
        font-size: 12px;
    }

    figure.stage .stage--desc {
        max-width: 200px;
        min-width: 200px;
    }

    figure.stage img.preview {
        margin: 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    figure.stage {
        padding: 0 !important;
    }

    figure.stage .stage--desc {
        padding-left: 30px;
        margin-bottom: 30px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 100px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        transform: rotate(34deg);
        left: 50%;
        top: 20%;
    }

        figure.stage.two picture:has(img.arrow--rm) {
        left: 10%;
        width: 120px;
        top: 90px;
        transform: rotateX(180deg) rotate(50deg);
    }

    figure.stage.two {
        margin-top: 60px;
        margin-bottom: 0;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        margin-top: 0;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        max-width: 250px;
        width: 250px;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 220px;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        right: 5%;
    }

    figure.stage.two + figure.stage.one img.preview {
        margin: 0;
        width: 60vw;
        border-radius: 25px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    figure.stage.two.four .stage--desc {
        max-width: 200px;
        min-width: 200px;
    }

        figure.stage.two.four picture:has(img.arrow--rm) {
        left: 10%;
        top: 40%;
        transform: rotateX(180deg) rotate(65deg);
    }

    figure.stage.two.four {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    a.intro--btn.center {
        font-size: 14px;
    }
}

section.section--roadmap {
    background: #fafafa;
    padding: 20px 0;
    padding-top: 170px;
}






.ln--title {
    font-size: 76px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 90px;
    font-weight: 700;
}

.ln--flex {
    display: flex;
    flex-wrap: wrap;
    padding: 0 60px;
    justify-content: space-between;
    gap: 60px;
    margin-top: 30px;
}

.ln--flex article {
    width: 31%;
    border: 1px solid rgb(155, 155, 155);
    border-radius: 20px;
}

.ln--flex article span {
    text-align: center;
    display: block;
    
    font-size: 28px;
    background: rgb(48, 181, 100);
    width: 33%;
    padding: 15px 0;
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: white;
}

.ln--flex article.bloger span {
    background: rgb(118, 176, 255);
}

.ln--block__header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section--link a.intro--btn {
    font-weight: 700;
    font-size: 40px;
    background: rgb(48, 181, 100);
    padding: 28px 60px;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: 90px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.ln--block__header img {
    width: 60px;
    margin-right: 20px;
}

.ln--block__header strong {
    font-size: 40px;
    margin: 0;
}

.ln--flex article p {
    color: rgb(136, 136, 136);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
}

.ln--buttons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 90px;
}

.ln--buttons a:last-child {
    background: rgb(118, 176, 255);
}

@media screen and (max-width: 2000px) {
    .ln--block__header strong {
        font-size: 28px;
    }

    .ln--flex article span {
    text-align: center;
    display: block;
    font-size: 20px;
    background: rgb(48, 181, 100);
    width: 33%;
    padding: 10px 0;
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: white;
}

.section--link a.intro--btn {
    font-weight: 700;
    font-size: 30px;
    padding: 24px 50px;
    margin-top: 60px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.ln--flex article p {
    font-size: 20px;
}
}

@media screen and (max-width: 1800px) {
    .ln--flex {
        padding: 0;
        gap: 20px;
    }

    .ln--flex article {
        width: 32%;
    }

    .ln--block__header strong {
        font-size: 24px;
    }

    .ln--block__header {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .ln--block__header img {
        width: 40px;
        margin-right: 10px;
    }

    .ln--flex article p {
        font-size: 16px;
        margin-top: 0px;
    }

    .ln--title {
    font-size: 48px;
    text-align: center;
    margin-top: 40px;
}

.ln--buttons {
    margin-top: 60px;
}
}

@media screen and (max-width: 1180px) {
    .ln--title {
        font-size: 40px;
    }

    .ln--flex article span {
        font-size: 16px;
    }

    .ln--block__header strong {
        font-size: 18px;
    }

    .ln--flex article p {
        font-size: 14px;
    }

    .ln--flex article {
        width: 31%;
    }

    .section--link .container {
        max-width: 95vw;
    }
}

@media screen and (max-width: 950px) {
    .ln--flex {
        justify-content: center;
    }

    .ln--flex article {
        width: 80%;
    }

    .ln--block__header strong {
        font-size: 28px;
    }

    .ln--flex article span {
        font-size: 20px;
    }

    .ln--flex article p {
        font-size: 28px;
    }

    .ln--buttons {
        flex-direction: column;
        align-items: center;
    }

    a.intro--btn {
        font-size: 16px;
        text-align: center;
        width: 300px;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }

    .section--link a.intro--btn {
    width: unset;
}
}

@media screen and (max-width: 600px) {
    .ln--flex article p {
        font-size: 18px;
    }

    .ln--block__header strong {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .ln--flex article {
        width: 90%;
    }
}

.section--barter {
    background: rgb(216, 245, 255);
    padding-top: 60px;
    padding-bottom: 90px;
}


h2.bt--title {
    font-size: 68px;
    text-align: center;
    font-weight: 700;
}

.bt--blocks {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    margin-top: 60px;
}

.bt--blocks article {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    width: 32%;
    padding: 30px;
    max-width: 535px;
}

.bt--blocks article figure {
    margin: 0;
    padding: 0 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt--blocks article strong {
    text-align: center;
    margin-top: 10px;
    display: block;
    font-size: 34px;
}

.bt--blocks article p {
    color: rgb(113, 113, 113);
    font-size: 24px;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}

@media screen and (max-width: 2100px) {
    h2.bt--title {
    font-size: 48px;
}

.bt--blocks article strong {
    font-size: 24px;
}

.bt--blocks article figure {
    height: 60px;
    padding: 0 10px;
}

.bt--blocks article p {
    font-size: 18px;
}
}

@media screen and (max-width: 1480px) {
    h2.bt--title {
        font-size: 36px;
    }

    .section--barter {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .bt--blocks {
        padding: 0;
        margin-top: 30px;
    }

    .bt--blocks article {
        padding: 20px;
    }

    .bt--blocks article strong {
        font-size: 18px;
    }

    .bt--blocks article p {
        font-size: 16px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 1200px) {
    .section--barter .container {
        max-width: 95vw;
    }
    .bt--blocks article figure {
        height: 40px;
    }

    .bt--blocks article {
        padding: 12px;
    }

    .bt--blocks article {
        width: 32%;
    }
}

@media screen and (max-width: 950px) {
    h2.bt--title {
        font-size: 28px;
    }

    .bt--blocks {
        overflow-x: scroll;
        width: 100%;
        display: flex;
        gap: 30px;
    }

    .bt--blocks article {
        width: 500px;
        min-width: 500px;
        height: auto;
        padding-top: 30px;
    }

    .bt--blocks article strong {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .bt--blocks article p {
        font-size: 24px;
    }

    h2.bt--title {
        font-size: 40px;
    }

    .section--barter .mobile--swipers {
        margin-top: 20px;
    }
}


@media screen and (max-width: 600px) {
    h2.bt--title {
        font-size: 28px;
    }
    .bt--blocks article {
        width: 340px;
        min-width: 340px;
    }

    .bt--blocks article strong {
        font-size: 18px;
    }

    .bt--blocks article p {
        font-size: 16px;
    }
}


h2.op--title {
    text-align: center;
    font-weight: 700;
    font-size: 64px;
    margin-top: 30px;
}

p.op--subtitle {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 60px;
}

article.bloger-card {
    width: 550px;
    padding: 20px;
    box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.36);
    background: rgb(255, 255, 255);
    border-radius: 25px;
    display: flex;
    height: 360px;
}

img.bloger--avatar {
    width: 160px;
    height: 160px;
    margin-right: 20px;
}

.bloger--desc strong {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 10px;
}

.bloger--desc strong span {
    color: rgb(118, 176, 255);
}

.bloger--desc {
    display: flex;
    flex-direction: column;
}

.bloger--desc p {
    color: rgb(113, 113, 113);
    margin: 0;
}

.stars {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
    justify-self: end;
    margin-top: auto;
}

.stars img {
    width: 140px;
}

.swiper--opinions {
    position: relative;
    padding-bottom: 150px;
}

.swiper-slide {
    opacity: 0;
    transition: .3s opacity;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-slide.swiper-slide-active + .swiper-slide {
    opacity: 1;
}

.swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 1;
}

.swiper--opinions {
    overflow: hidden;
    padding-left: 160px;
    padding-right: 20px;
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center; 
}

.swiper--opinions .swiper-wrapper .swiper-slide {
    margin: 0 auto;
    width: auto;
    flex-shrink: 0;
}

.swiper {
    overflow: hidden;
}

.swiper--opinions .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    min-width: 50px;
    min-height: 50px;
    background: none;
    color: black !important;
    font-size: 28px;
    padding: 0;
    margin: 0;
    top: unset;
    bottom: 30px;
    left: 50%;
    transform: translateX(50px);
    padding-bottom: 2px;
    padding-left: 2px;
    z-index: 0;
}

.swiper--opinions .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    min-width: 50px;
    min-height: 50px;
    background: none;
    color: black !important;
    font-size: 28px;
    margin: 0;
    top: unset;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50px);
    padding: 0 2px 2px 0;
    z-index: 0;
}

.swiper-button-next:after ,.swiper-button-prev:after {
    background: none;
    display: none;
}

span.gr {
    color: rgb(48, 181, 100) !important;
}

.opinions--text {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    max-width: 40vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.opinions--buttons {
    justify-content: center;
    display: flex;
    gap: 60px;
    margin-bottom: 180px;
}

.opinions--buttons > a:first-child {
    background: rgb(118, 176, 255);
}

.swiper--opinions .swiper-button-prev {
    transform: translateX(-75px);
}

.swiper--opinions {
    padding-left: 20px;
}

@media screen and (max-width: 2100px) {
    img.bloger--avatar {
        width: 120px;
        height: 120px;
    }

    .bloger--desc strong {
        font-size: 20px;
    }

    .bloger--desc p {
        font-size: 16px;
    }

    article.bloger-card {
        width: 450px;
        height: 450px;
    }

    
}


@media screen and (max-width: 1660px) {
    h2.op--title {
        font-size: 48px;
    }

.opinions--text {
    font-size: 36px;
    max-width: 50vw;
}

.section--opinions a.intro--btn {
        border-radius: 5px;
        font-size: 28px;
        padding: 16px 28px;
        margin-top: 20px;
    }
}

.op--list {
    display: none;
}

@media screen and (max-width: 1160px) {
    .section--opinions .container {
        max-width: 95vw;
    }
}


@media screen and (max-width: 980px) {
    .swiper--opinions {
        display: none;
    }

    .op--list {
        display: flex;
        overflow-x: scroll;
        gap: 60px;
    }

    article.bloger-card {
        height: unset;
        width: 70vw;
        min-width: 70vw;
        box-shadow: none;
        border: 1px solid #dfdfdf;
    }

    h2.op--title {
        font-size: 48px;
    }

    p.op--subtitle {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .opinions--text {
        max-width: unset;
        margin-top: 90px;
    }
    
    .opinions--buttons {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 60px;
        gap: 30px;
    }

    .section--opinions a.intro--btn {
        border-radius: 15px;
        font-size: 32px;
    }

    .opinions--buttons a {
        width: 70vw;
        border-radius: 20px;
    }
}


@media screen and (max-width: 600px) {
    h2.op--title {
        font-size: 28px;
    }

    p.op--subtitle {
        font-size: 24px;
    }

    article.bloger-card {
        width: 90vw;
        min-width: 90vw;
        padding: 12px;
    }

    img.bloger--avatar {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }

    .bloger--desc strong {
        font-size: 14px;
    }

    .bloger--desc p {
        font-size: 14px;
    }

    .stars img {
        width: 100px;
    }

    .section--opinions .mobile--swipers {
        margin-top: 20px;
    }

    .opinions--text {
        font-size: 18px;
        margin-top: 60px;
    }

    .opinions--buttons {
        margin-top: 30px;
        gap: 10px;
    }

    .section--opinions a.intro--btn {
        font-size: 18px;
        padding-left: 0;
        padding-right: 0;
        width: 90vw;
    }
}



footer {
    background: rgb(57, 57, 57);
    padding-bottom: 10px;
}

footer .container {
    max-width: 70vw;
}

.footer__head {
    display: flex;
    color: white;
    padding-top: 90px;
    justify-content: space-between;
    gap: 20px;
}

.footer--col h3 {
    color: white;
    font-weight: 500;
    font-size: 40px;
}

.footer--col p {
    font-weight: 300;
    font-size: 28px;
    margin-top: 40px;
}


.footer--col img {
    width: 200px;
    margin-top: 20px;
}

.footer--col {
    flex-direction: column;
}

.footer--col a {
    display: block;
    margin-top: 40px;
    color: rgb(200, 231, 203);
    text-decoration: none;
    font-size: 28px;
}

.footer--col a:hover {
    color: rgb(100, 242, 255);
}

.footer__info p:nth-child(2) {
    color: rgb(155, 195, 158);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 10px;
}

.footer__info p:nth-child(3) {
    color: rgb(150, 150, 150);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    font-size: 16px;
}

.footer__info p:nth-child(4) {
    text-align: center;
    color: white;
    margin-top: 20px;
    padding-bottom: 10px;
}

@media screen and (max-width: 1600px) {
    .footer--col h3 {
        font-size: 24px;
    }

    .footer--col p {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer--col a {
        margin-top: 10px;
        font-size: 20px;
    }

    .footer__head {
        gap: 60px;
    }

    .footer__info p:nth-child(1) {
        font-size: 20px;
    }
}

@media screen and (max-width: 1080px) {
    footer .container {
        max-width: 95vw;
    }
}

.footer__info img {
    display: none;
}

@media screen and (max-width: 900px) {
    .footer--col:nth-child(2) {
        order: 1;
    }

    .footer__head {
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    .footer__head img {
        display: none;
    }

    .footer__info img {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.footer__info p:nth-child(2) {
    margin-top: 10px;
}

.footer__info p:nth-child(3) {
    order: 4;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.footer__info p:nth-child(4) {
    order: 3;
    margin-bottom: 0;
    margin-top: 5px;
}
}


    .intro--img picture {
        margin-top: 52px;
        padding-right: 120px;
    }

    article.sticker img {
        object-fit: contain;
    }

    @media (max-width: 900px) {
        .intro--img picture {
            padding: 0 30px;
        }

        p.intro--desc {
            margin-bottom: 20px;
        }
        
    }

    @media (max-width: 450px) {
        .intro--img picture {
            padding: 0 30px;
        }
    }
    

.partners--content img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.section--barter .container {
    max-width: 70vw;
}

.swiper-slide {
    display: flex !important;
    justify-content: center;
}

.section--opinions .container {
    max-width: 70vw;
}

.footer--col a {
    margin-top: 20px;
}

.footer--col a:nth-child(2) {
    margin-top: 40px;
}

@media (max-width: 2300px) {
    .intro--img picture {
        padding-right: 90px;
        width: 678px;
    }

    .section--partners {
        margin-top: 100px;
    }

    .section--partners .container {
        max-width: 80vw;
    }

    .tm--buttons button {
        padding: 14px 0px;
        font-size: 32px;
        width: 240px;
    }

    .section--testimonials .container {
        max-width: 80vw;
    }

    .testimonials--content a.intro--btn {
        margin-bottom: 150px;
    }

    section.section--roadmap {
        padding-top: 90px;
    }

    h2.rm--title {
        font-size: 64px;
    }

    p.rm--subtitle {
        font-size: 24px;
    }

    .section--roadmap .container {
        max-width: 80vw;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 180px;
    }
    figure.stage.one {
        gap: 220px;
    }

    figure.stage.two img.preview {
        width: 800px;
    }

    figure.stage.two .stage--desc {
        margin-right: 180px;
        min-width: unset;
        max-width: 400px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
    width: 180px;
    left: 50%;
    bottom: -40px;
}

figure.stage.two + figure.stage.one .stage--desc {
    margin-left: 0;
    max-width: 500px;
    margin-top: 60px;
}

figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
    top: 80px;
    left: 650px;
    width: 220px;
}
figure.stage.two + figure.stage.one img.preview {
    width: 340px;
    border-radius: 40px;
}

figure.stage.two + figure.stage.one {
    padding-right: 240px;
}

figure.stage.two.four .stage--desc {
    max-width: 400px;
    min-width: 400px;
    margin-right: 0;
    margin-bottom: 90px;
}

figure.stage.two.four picture:has(img.arrow--rm) {
    left: 50%;
    bottom: 150px;
}
a.intro--btn.center {
    max-width: 550px;
    padding: 18px 0;
    font-size: 28px;
    margin-bottom: 60px;
}

figure.stage.two.four {
    margin-bottom: 90px;
}

.ln--title {
    font-size: 56px;
}

.ln--flex {
    padding: 0;
    gap: 30px;
}

.section--link .container {
    max-width: 80vw;
}

h2.op--title {
        font-size: 56px;
    }


        img.bloger--avatar {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }

    .bloger--desc strong {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .bloger--desc p {
        font-size: 14px;
    }
    .stars img {
        width: 100px;
    }

    article.bloger-card {
        padding: 15px;
        width: 450px;
        height: 290px;
    }

    .section--barter .container {
        max-width: 80vw;
    }

    .bt--blocks article figure {
        padding: 0 30px;
    }

    .bt--blocks article strong {
        font-size: 28px;
    }

    .bt--blocks article p {
        font-size: 22px;
        margin-top: 10px;
    }

    .section--opinions .container {
        max-width: 78vw;
    }

    .opinions--text {
        font-size: 32px;
    }

    .section--opinions a.intro--btn {
        font-size: 28px;
    }

    footer .container {
        max-width: 80vw;
    }

    .footer--col h3 {
        font-size: 24px;
    }

    .footer--col p {
        font-size: 20px;
    }

    .footer--col a {
        font-size: 20px;
    }

    .footer__info p:nth-child(2) {
    color: rgb(155, 195, 158);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 10px;
}

.footer__info p:nth-child(3) {
    color: rgb(150, 150, 150);
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    font-size: 11px;
}

.footer__info p:nth-child(4) {
    font-size: 14px;
}
}

@media (max-width: 2000px) {
    .testimonials--content a.intro--btn {
        margin-bottom: 150px;
    }

    figure.stage strong {
        margin-top: 0;
        font-size: 44px;
    }

    figure.stage b {
        font-size: 36px;
    }

    figure.stage p {
        font-size: 22px;
    }

        .section--link a.intro--btn {
        font-weight: 700;
        font-size: 28px;
        padding: 18px 50px;
        margin-top: 60px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

}

@media (max-width: 1800px) {
    .intro--img picture {
        width: 480px;
        padding-right: 0;
    }
}



@media screen and (max-width: 1630px) {
        .tm--buttons button {
        padding: 12px 0px;
        font-size: 24px;
        width: 200px;
    }

    .tm--blocks article {
        width: 240px;
    }

    .tm--blocks article strong {
        padding: 0;
        text-align: center;
    }

    .tm--blocks article p {
        font-size: 12px;
    }

    .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 420px;
        text-align: center;
        font-size: 22px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 300px;
        border-radius: 10px;
    }

    .testimonials--content a.intro--btn {
        margin-top: 60px;
    }

    h2.rm--title {
        font-size: 44px;
    }

    p.rm--subtitle {
        font-size: 16px;
    }

    figure.stage b {
        font-size: 32px;
    }

    figure.stage strong {
        font-size: 32px;
    }

    figure.stage p {
        font-size: 18px;
    }

    figure.stage .stage--desc {
        max-width: 260px;
        min-width: 260px;
    }

    .section--roadmap .container {
        max-width: 85vw;
    }

    figure.stage.one {
        gap: 0;
        margin-top: 100px;
    }

    figure.stage.one {
        padding-left: 120px;
        padding-right: 0;
    }

    figure.stage img.preview {
        width: 640px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        width: 140px;
        left: 350px;
    }

    figure.stage.two img.preview {
        width: 700px;
    }

    figure.stage.two .stage--desc {
        max-width: 290px;
        margin-bottom: 40px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        left: 60%;
    }

    figure.stage.two + figure.stage.one img.preview {
        width: 280px;
        border-radius: 30px;
    }

    figure.stage.two + figure.stage.one {
        padding-right: 140px;
    }

        figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 80px;
        left: 490px;
        width: 160px;
    }

    figure.stage.two {
        margin-bottom: 180px;
    }

    figure.stage.two.four img.preview {
        border-radius: 20px;
    }

        figure.stage.two.four .stage--desc {
        max-width: 300px;
        min-width: 300px;
        margin-right: 0;
        margin-bottom: 60px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 46%;
        bottom: 120px;
    }

        a.intro--btn.center {
        max-width: 450px;
        padding: 18px 0;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .ln--title {
        font-size: 46px;
        margin-bottom: 60px;
    }

    .section--link .container {
        max-width: 85vw;
    }

    .ln--flex article {
        width: 31%;
    }

    .ln--block__header strong {
        font-size: 22px;
    }

    .ln--block__header img {
        width: 36px;
    }

    .ln--flex {
        gap: 25px;
    }

    .section--link a.intro--btn {
        font-weight: 700;
        font-size: 22px;
        padding: 18px 50px;
        margin-top: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    h2.bt--title {
        font-size: 48px;
    }


    .bt--blocks article {
        padding: 15px;
    }

    .bt--blocks article strong {
        font-size: 22px;
    }

    .bt--blocks article p {
        font-size: 16px;
    }

    .section--barter .container {
        max-width: 85vw;
    }

    .bt--blocks article {
        width: 31%;
    }

    h2.op--title {
        font-size: 48px;
    }

    p.op--subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }

    article.bloger-card {
        height: 270px;
        border-radius: 15px;
    }

    .section--opinions .container {
        max-width: 85vw;
    }

    img.bloger--avatar {
        width: 100px;
        height: 100px;
    }

    article.bloger-card {
        width: 350px;
        height: 250px;
    }

    .bloger--desc p {
        font-size: 11px;
    }

    .swiper--opinions .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    min-width: 40px;
    min-height: 40px;
    background: none;
    color: black !important;
    font-size: 28px;
    padding: 0;
    margin: 0;
    top: unset;
    bottom: 30px;
    left: 50%;
    transform: translateX(40px);
}

.swiper--opinions .swiper-button-prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    transform: translateX(-40px);
}

.swiper--opinions {
    padding-bottom: 120px;
}

.section--opinions a.intro--btn {
        font-size: 24px;
        border-radius: 8px;
        padding: 16px 28px;
    }

    footer .container {
        max-width: 85vw;
    }

    .footer__head {
        padding-top: 60px;
    }

    .footer--col h3 {
        font-size: 20px;
    }

    .footer--col p {
        font-size: 16px;
        margin-top: 20px;
    }

    .footer--col a:nth-child(2) {
        margin-top: 20px;
    }

    .footer--col a {
        font-size: 16px;
        margin-top: 15px;
    }

    .footer__info p:nth-child(2) {
        font-size: 16px;
    }

        .footer__info p:nth-child(3) {
        color: rgb(150, 150, 150);
        text-align: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        font-size: 10px;
    }

    .footer__info p:nth-child(4) {
        font-size: 12px;
    }

    .testimonials--content a.intro--btn {
        margin-bottom: 120px;
    }

    figure.stage.two .stage--desc {
        margin-right: 0;
    }
}


@media screen and (max-width: 1290px) {
    header aside {
        display: block;
    }
    .sidebar-toggle {
        position: relative;
        border-radius: 5px;
        background: rgb(242, 242, 242);
        height: 40px;
        width: 40px;
        z-index: 25;
        display: block;
        transition: 0.5s;
        cursor: pointer;
    }

    nav.nav {
        display: none;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 180px;
        font-size: 20px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .sidebar-toggle span, .sidebar-toggle:after, .sidebar-toggle:before{
        height: 4px;
        width: 100%;
        position: absolute;
        background: #000000;
        margin: 0 auto;
        width: 25px;
        border-radius: 6px;
        margin-left: 6px;
        transition: 0.5s; 
    }
    .sidebar-toggle span{
        top: 18px;
    }
    .sidebar-toggle:after, .sidebar-toggle:before{
        content: '';
    }
    .sidebar-toggle:after{
        bottom: 9px;
        width: 20px;
    }
    .sidebar-toggle:before{
        top: 9px;
        width: 28px;
    }

    .sidebar-toggle.open-menu span {
        opacity:0; 
        transition: 0.5s; 
    }
    .sidebar-toggle.open-menu:before {
        transform: rotate(45deg);
        top: 18px;
        transition: 0.4s;
        width: 28px;
    }
    .sidebar-toggle.open-menu:after {
        transform: rotate(-45deg);
        bottom: 18px;
        transition: 0.4s;
        width: 28px;
    }

    header .container {
        max-width: 95vw;
    }

    .header__logo {
        width: 220px;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 220px;
        font-size: 24px;
        height: 50px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    
}


@media screen and (max-width: 1290px) {
    section.section--intro .container {
        max-width: 95vw;
    }

    .intro--img picture {
        width: 430px;
    }
}

@media screen and (max-width: 1240px) {
    .section--testimonials .container {
        max-width: 95vw;
    }

        .section--testimonials .testimonials--content h2 {
        font-size: 36px;
        margin-top: 90px;
    }

    .tm--buttons {
        margin-top: 30px;
        gap: 30px;
    }

            .tm--buttons button {
        padding: 10px 0px;
        font-size: 20px;
        width: 160px;
    }

    .tm--blocks {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 20px;
}

.tm--blocks article {
        width: 220px;
        padding: 10px;
    }

    .tm--blocks article strong {
        padding: 0 10px;
        font-size: 20px;
    }

    .tm--blocks article p {
        font-size: 12px;
    }

    .section--testimonials .container {
        max-width: 95vw;
    }

        .tm--blocks article {
        padding: 15px;
        width: 210px;
    }

    .tm--blocks article p {
        font-size: 10px;
    }

        .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 320px;
        text-align: center;
        font-size: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 100px;
        border-radius: 10px;
    }

    h2.rm--title {
        font-size: 34px;
    }

    p.rm--subtitle {
        font-size: 13px;
    }

    .section--roadmap .container {
        max-width: 90vw;
    }

    figure.stage p {
        font-size: 16px;
    }

    figure.stage img.preview {
        width: 480px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        left: 250px;
    }

    figure.stage b {
        font-size: 24px;
    }

    figure.stage strong {
        font-size: 28px;
    }

    figure.stage.two img.preview {
        width: 550px;
    }

    figure.stage.two .stage--desc {
        max-width: 270px;
        margin-bottom: 20px;
    }

        figure.stage.two picture:has(img.arrow--rm) {
        left: 56%;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 140px;
    }

    figure.stage.one {
        padding-left: 30px;
    }

    figure.stage.two + figure.stage.one img.preview {
        margin-right: 0;
    }

    figure.stage.two.four img.preview {
        width: 320px;
    }


    figure.stage.two + figure.stage.one img.preview {
        width: 220px;
    }

    figure.stage.two + figure.stage.one {
        padding-right: 160px;
    }

        figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 80px;
        left: 360px;
        width: 140px;
    }

    figure.stage.two.four {
        padding: 0 30px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 42%;
    }

    figure.stage.two.four .stage--desc {
        min-width: 280px;
        max-width: 280px;
    }

    figure.stage.two.four .stage--desc {
        margin-bottom: 20px;
    }

    a.intro--btn.center {
        max-width: 350px;
        padding: 16px 0;
        font-size: 20px;
        margin-bottom: 40px;
    }

    .ln--title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .section--link .container {
        max-width: 95vw;
    }

    .ln--block__header {
        padding: 015px;
    }

    .ln--block__header strong {
        font-size: 18px;
    }

    .ln--flex article p {
        padding-left: 15px;
        padding-right: 15px;
    }

        .section--link a.intro--btn {
        font-weight: 700;
        font-size: 16px;
        padding: 14px 40px;
        margin-top: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    h2.bt--title {
        font-size: 32px;
    }

    .section--barter .container {
        max-width: 95vw;
    }

    .bt--blocks article strong {
        font-size: 18px;
    }

    .bt--blocks article p {
        font-size: 14px;
    }

    h2.op--title {
        font-size: 36px;
    }

        p.op--subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .section--opinions .container {
        max-width: 95vw;
    }

    img.bloger--avatar {
        width: 80px;
        height: 80px;
    }

    .bloger--desc strong {
        font-size: 16px;
    }

    .bloger--desc p {
        font-size: 9px;
    }

    article.bloger-card {
        width: 290px;
        height: 210px;
        border-radius: 10px;
        padding: 10px;
    }

        .swiper--opinions .swiper-button-next {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid black;
        position: absolute;
        min-width: 30px;
        min-height: 30px;
        background: none;
        color: black !important;
        font-size: 20px;
        padding: 0;
        margin: 0;
        top: unset;
        bottom: 30px;
        left: 50%;
        transform: translateX(30px);
    }

    .swiper--opinions .swiper-button-prev {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid black;
        position: absolute;
        min-width: 30px;
        min-height: 30px;
        background: none;
        color: black !important;
        font-size: 20px;
        padding: 0;
        margin: 0;
        top: unset;
        bottom: 30px;
        left: 50%;
        transform: translateX(-30px);
    }

    .swiper--opinions {
        padding-bottom: 90px;
    }

    .bloger--desc strong {
        margin-bottom: 0;
    }

    .opinions--text {
        font-size: 22px;
    }

    .section--opinions a.intro--btn {
        font-size: 20px;
    }

    footer .container {
        max-width: 95vw;
    }

    .intro--img picture {
        width: 410px;
    }
}

@media screen and (max-width: 850px) {
    nav + a.fb__link--btn.second {
        width: 180px;
        font-size: 20px;
        height: 40px;
    }

    .intro--content a.intro--btn {
        font-size: 20px;
        width: 360px;
    }

    .intro--img picture {
        width: 100%;
        padding: 0 5vw;
    }

    article.sticker picture {
        padding: 0;
        height: unset;
    }

    article.sticker:first-child img {
        height: 100px;
        width: 90px;
    }

    article.sticker:last-child img {
        width: 90px;
        height: 100px;
    }

    .intro--stickers {
        margin-top: 82px;
    }

        .section--testimonials .testimonials--content h2 {
        font-size: 42px;
        margin-top: 60px;
    }

        .tm--buttons button {
        padding: 10px 0px;
        font-size: 28px;
        width: 220px;
    }

        .tm--blocks article strong {
        padding: 0;
        font-size: 40px;
    }

    .tm--blocks article p {
        font-size: 22px;
    }

    .section--testimonials .mobile--swipers {
        display: block;
        width: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    
    .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 500px;
        text-align: center;
        font-size: 28px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 100px;
        border-radius: 10px;
    }

    h2.rm--title {
        font-size: 40px;
    }

    p.rm--subtitle {
        font-size: 24px;
    }

    figure.stage b {
        margin-bottom: 10px;
    }

    figure.stage .stage--desc {
        min-width: 50vw;
        max-width: 50vw;
    }

    figure.stage strong {
        font-size: 38px;
    }

    figure.stage p {
        font-size: 24px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        left: 370px;
        top: 180px;
    }

    figure.stage img.preview {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 60px;
    }

    figure.stage.two .stage--desc {
        max-width: 50vw;
        min-width: 50vw;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        left: 18%;
    }

    figure.stage.two img.preview {
        width: 100%;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 490px;
        left: 420px;
        width: 180px;
    }

    figure.stage.two + figure.stage.one {
        padding-right: 60px;
    }

    figure.stage.two + figure.stage.one img.preview {
        width: 420px;
        border-radius: 46px;
    }

    figure.stage.two.four .stage--desc {
        max-width: 50vw;
        min-width: 50vw;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 180px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        top: 33%;
        left: 18%;
    }

    figure.stage.two.four img.preview {
        width: 100%;
    }


    a.intro--btn.center {
        max-width: 700px;
        width: 60vw;
        font-size: 28px;
    }

    figure.stage.two.four img.preview {
        border-radius: 42px;
    }


    .ln--title {
        font-size: 56px;
    }

    .ln--flex {
        flex-direction: column;

    }

    .ln--flex article {
        width: 100%;
        padding: 0 10px;
    }

    .ln--flex article span {
        width: 120px;
    }

    .ln--block__header img {
        width: 50px;
        margin-right: 20px;
    }

    .ln--flex article span {
        font-size: 40px;
    }

    .ln--flex article span {
        width: 240px;
    }

    .ln--block__header img {
        width: 80px;
    }

    .ln--block__header strong {
        font-size: 48px;
    }

    .ln--flex article p {
        font-size: 34px;
    }

        .section--link a.intro--btn {
        font-weight: 700;
        font-size: 36px;
        padding: 18px 50px;
        margin-top: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    h2.bt--title {
        font-size: 52px;
    }

    .bt--blocks article strong {
        font-size: 28px;
    }

    .bt--blocks article p {
        font-size: 20px;
    }

    .bt--blocks article figure {
        padding:  0 50px;
    }

    .bt--blocks article {
        min-width: 450px;
    }

    .section--barter .mobile--swipers {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100px;
    }

    .section--barter {
        padding-bottom: 30px;
    }

    h2.op--title {
        margin-top: 60px;
        font-size: 48px;
    }

    p.op--subtitle {
        font-size: 32px;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;

    }

    article.bloger-card {
        max-width: 95vw;
        width: 95vw;
        min-width: 95vw;
    }

    img.bloger--avatar {
        width: 200px;
        height: 200px;
        margin-right: 20px;
    }

    .bloger--desc strong {
        font-size: 28px;
    }

    .bloger--desc p {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    article.bloger-card {
        height: auto;
        border-radius: 20px;
        padding: 20px;
    }

    .stars img {
        width: 200px;
    }

    .section--opinions .mobile--swipers {
        display: block;
        margin-left: auto;margin-right: auto;width: 100px;
        margin-top: 20px;
    }

    .opinions--text {
        max-width: 500px;
    }

    .opinions--buttons {
        margin-top: 30px;
    }

    .section--opinions a.intro--btn {
        font-size: 28px;
    }

    .footer__info p:nth-child(2) {
        margin-top: 0;
    }

    .footer--col h3 {
        font-size: 36px;
    }

    .footer--col a {
        font-size: 28px;
        margin-top: 25px;
    }
}


@media screen and (max-width: 600px) {

    .footer--col h3 {
        font-size: 20px;
    }

    .footer--col a {
        font-size: 16px;
        margin-top: 15px;
    }

    .intro--content h1 {
        font-size: 38px;
    }

    p.intro--desc {
        font-size: 28px;
    }

    article.sticker:first-child img {
        width: 40px;
        height: 40px;
    }

    article.sticker img {
        height: 40px;
        width: 60px;
    }

    article.sticker:last-child img {
        width: 44px;
        height: 40px;
    }

    article.sticker {
        width: 180px;
    }

    article.sticker p {
        font-size: 13px;
    }

    .section--testimonials .testimonials--content h2 {
        font-size: 32px;
    }

            .tm--buttons button {
        padding: 10px 0px;
        font-size: 24px;
        width: 180px;
    }

    .tm--blocks article strong {
        font-size: 32px;
        text-align: left;
    }

    .tm--blocks article p {
        font-size: 16px;
    }

        .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 400px;
        text-align: center;
        font-size: 24px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 100px;
        border-radius: 10px;
    }

    h2.rm--title {
        font-size: 32px;
    }

    p.rm--subtitle {
        font-size: 20px;
        max-width: 80vw;
    }

    figure.stage strong {
        font-size: 32px;
    }

    figure.stage p {
        font-size: 18px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        left: 270px;
    }

    figure.stage.two .stage--desc {
        max-width: 60vw;
        min-width: 60vw;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 140px;
        left: 5%;
        top: 120px;
    }

    figure.stage img.preview {
        margin-top: 30px;
    }

    figure.stage.one {
        margin-top: 30px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        min-width: 60vw;
        max-width: 60vw;

    }

    figure.stage.two + figure.stage.one strong {
        font-size: 24px;
    }

    figure.stage b {
        font-size: 20px;
    }

        figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 350px;
        left: 300px;
        width: 140px;
    }

        figure.stage.two + figure.stage.one img.preview {
        width: 250px;
        border-radius: 30px;
        margin-right: auto;
        margin-left: auto;
    }

    figure.stage.two.four .stage--desc {
        max-width: 60vw;
        min-width: 60vw;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        left: 5%;
    }

        a.intro--btn.center {
        max-width: 700px;
        width: 80vw;
        font-size: 20px;
    }

    .ln--title {
        font-size: 36px;
        max-width: 80vw;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .ln--flex article span {
        font-size: 28px;
        width: 180px;
    }

    .ln--block__header img {
        width: 60px;
    }

    .ln--block__header strong {
        font-size: 28px;
    }

    .ln--flex article p {
        font-size: 20px;
    }

        .section--link a.intro--btn {
        font-weight: 700;
        font-size: 24px;
        padding: 14px 30px;
        margin-top: 0px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    h2.bt--title {
        font-size: 28px;
    }

    .bt--blocks article strong {
        font-size: 20px;
    }

    .bt--blocks article p {
        font-size: 20px;
        margin-top: 0;
    }

    .bt--blocks article {
        min-width: 360px;
    }

    h2.op--title {
        max-width: 80vw;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    p.op--subtitle {
        font-size: 22px;
    }

    img.bloger--avatar {
        width: 140px;
        height: 140px;
        margin-right: 10px;
    }

    .bloger--desc strong {
        font-size: 24px;
    }

    .bloger--desc p {
        font-size: 16px;
    }

    .stars img {
        width: 150px;
    }

    .section--opinions a.intro--btn {
        width: 70vw;
        font-size: 24px;
    }

    .opinions--buttons {
        margin-bottom: 90px;
    }

    .footer__info img {
        margin-bottom: 10px;
    }

    nav + a.fb__link--btn.second {
        display: none;
    }

    article.sticker picture {
        padding: 0;
        display: block;
        margin: 0;
    }
}


@media screen and (max-width: 500px) {
    .section--testimonials .testimonials--content h2 {
        font-size: 28px;
    }

    figure.stage.two {
        margin-bottom: 90px;
    }

    figure.stage strong {
        font-size: 26px;
    }

    .ln--block__header strong {
        font-size: 24px;
    }

    h2.op--title {
        font-size: 28px;
    }

    .section--opinions a.intro--btn {
        font-size: 20px;
        width: 80vw;
    }

    footer .container {
        max-width: 90vw;
    }


}


@media screen and (max-width: 440px) {
img.bloger--avatar {
    width: 120px;
    height: 120px;
}

.bloger--desc p {
    font-size: 14px;
}

.intro--content h1 {
    font-size: 32px;
}

p.intro--desc {
    font-size: 24px;
}

    .intro--content a.intro--btn {
        font-size: 16px;
        width: 320px;
    }


    .intro--stickers {
        margin-top: 50px;
    }

    .section--partners {
        margin-top: 60px;
    }

    .tm--buttons button {
        padding: 10px 0px;
        font-size: 18px;
        width: 140px;
    }

        .testimonials--content a.intro--btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 320px;
        text-align: center;
        font-size: 18px;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 100px;
        border-radius: 10px;
    }

    h2.rm--title {
        font-size: 28px;
    }

        figure.stage .stage--desc {
        min-width: 60vw;
        max-width: 60vw;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        left: 250px;
    }

        figure.stage.two picture:has(img.arrow--rm) {
        width: 140px;
        left: 0%;
        top: 160px;
    }

    figure.stage.two + figure.stage.one .stage--desc {
        min-width: 70vw;
        max-width: 70vw;
    }

        figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 390px;
        left: 260px;
        width: 140px;
    }

    .ln--block__header img {
        width: 40px;
        margin-right: 15px;
    }

    .ln--title {
        font-size: 28px;
    }

        .ln--flex article span {
        font-size: 20px;
        width: 130px;
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .bloger--desc .stars p {
        margin-top: 0;
    }

    .stars {
        padding-top: 10px;
    }

    figure.stage.two.four img.preview {
        border-radius: 24px;
    }

    .ln--flex article p {
        font-size: 16px;
    }

    .section--link a.intro--btn {
        font-weight: 700;
        font-size: 18px;
        padding: 14px 30px;
        margin-top: 0px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    .ln--buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.bt--blocks article p {
    font-size: 16px;
}

img.bloger--avatar {
        width: 100px;
        height: 100px;
        margin-right: 10px;
    }

    .bloger--desc strong {
        font-size: 20px;
    }

    .bloger--desc p {
        font-size: 12px;
        margin-bottom: 0;
    }

    .stars img {
        width: 100px;
    }

    .opinions--text {
        font-size: 16px;
    }

    .footer__info p:nth-child(2) {
        font-size: 12px;
    }

    .footer__info p:nth-child(4) {
        font-size: 12px;
    }

    .footer__info p:nth-child(3) {
        font-size: 12px;
    }

    .intro--content h1 {
        margin-top: 30px;
    }
}


@media screen and (max-width: 385px) {
    .section--opinions a.intro--btn {
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    h2.op--title {
        max-width: unset;
    }

    .ln--block__header strong {
        font-size: 20px;
    }

    a.intro--btn.center {
        font-size: 16px;
    }

    figure.stage strong {
        font-size: 20px;
    }

    figure.stage p {
        font-size: 12px;
    }

    figure.stage.two.four picture:has(img.arrow--rm) {
        top: 25%;
        left: 0;
    }

    figure.stage.two + figure.stage.one picture:has(img.arrow--rm) {
        top: 290px;
        left: 260px;
        width: 100px;
    }

    figure.stage.two picture:has(img.arrow--rm) {
        width: 120px;
        left: 0%;
        top: 100px;
    }

    figure.stage.one picture:has(img.arrow--rm) {
        top: 100px;
        left: 220px;
        width: 100px;
    }

    figure.stage.two.four img.preview {
        border-radius: 22px;
    }

    .ln--flex article {
        padding: 0;
    }
}

@media screen and (max-width: 365px) {

}

picture:has(img.arrow--rm) {
    height: min-content;
}


a.fb__link--btn.second {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.fb__link--btn.second img {
    max-width: 20%;
    display: block;
}

a.sidebar--enter img{
    max-width: 10%;
    display: block;
}

a.sidebar--enter {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 70vw;
    justify-content: center;
}

/* Селлерам */

.blogers__slide a picture {
	display: block;
}

.section--blogers {
	margin-top: 289px;
}

.blogers__slide {
	display: flex;
	flex-direction: column;
}

.swiper-slide.blogers__slide {
    opacity: 1;
}

.blogers__title {
	font-family: "TT";
	font-weight: 700;
	font-size: 72px;
	text-align: center;
}

.blogers__subtitle {
	margin-top: 30px;
	font-family: "TT";
	font-weight: 400;
	font-size: 48px;
	text-align: center;
}

.blogers__slider {
	margin: 60px 380px 0;
	padding-bottom: 50px;
}

.blogers__slide {
	width: 20%;
}

.blogers__slide-img-wrapper {
	width: 100%;
}

.blogers__slide-img-avif {
	height: 350px;
	width: auto;
}

.blogers__slide-img-webp {
	height: 350px;
	width: auto;
}

.blogers__slide-img-png {
	height: 350px;
	width: auto;
}

.blogers__slide-name {
	font-family: "TT";
	font-weight: 500;
	font-size: 22px;
}

.blogers__slide-city {
	color: rgb(149, 149, 149);
	font-family: "TT";
	font-weight: 500;
	font-size: 24px;
	margin: 0;
	line-height: 0.9;
}

.blogers__slide-stars {
	width: 55%;
	margin-top: 5px;
}

.blogers__slide-subscribers-wrapper {
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.blogers__slide-subscribers-img {
	width: 30px;
	height: 30px;
	align-items: center;
}

.blogers__slide-subscribers {
	margin: 0;
	font-family: "TT";
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 5px;
	color: rgb(149, 149, 149);
}

.blogers__slider-btns {
	display: flex;
	justify-content: center;
	position: relative;
	margin-top: 60px;
	gap: 90px;
}

.section--blogers .mobile--swipers {
	display: none;
}

.blogers__slider-btn {
	color: #000000;
	display: flex;
	justify-content: center;
	position: absolute;
	font-family: "TT";
	font-weight: 400;
	font-size: 28px;
	left: 50%;
	top: 10%;
	width: 50px;
	height: 50px;
	padding: 10px;
	border-radius: 50%;
	border: 2px solid black;
	user-select: none;
	line-height: 0.1;
	z-index: 0;
}

.blogers__slider-btn-left {
	left: 44%;
}

.blogers__slider-btn-right {
	left: 52%;
}

.blogers__description {
	margin: 55px 200px 20px;
	font-family: "TT";
	font-weight: 400;
	font-size: 36px;
	color: rgb(128, 128, 128);
	text-align: center;
}

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

.blogers__link {
	margin: 30px auto;
	font-family: "TT";
	color: white;
	background-color: rgb(48, 181, 100);
	font-weight: 700;
	font-size: 36px;
	padding: 30px 50px;
	border-radius: 12px;
	text-decoration: none;
}

.blogers__link:hover {
    background: #8a00ff;
}

.bt--blocks.wrap {
	display: grid;
	gap: 4%;
	grid-template-columns: repeat(3, 1fr);
}

.bt--blocks.wrap article {
	width: 100%;
}

.bt--subtitle {
	font-weight: 400;
	font-size: 54px;
	text-align: center;
	margin-top: 30px;
}

@media (max-width: 2100px) {
	.bt--subtitle {
		font-size: 40px;
	}
}

@media (max-width: 600px) {
	.bt--subtitle {
		font-size: 20px;
	}
}

.section--connect {
	background-color: rgb(50, 50, 50);
	padding-top: 70px;
}

.section--connect .container {
	display: flex;
}

.connect__info {
	width: 45%;
}

.connect__title {
	color: white;
	font-weight: 700;
	font-size: 60px;
}

.connect__text-green {
	color: rgb(157, 255, 157);
}

.connect__text:first-child {
	margin-top: 60px;
}

.connect__text {
	font-weight: 400;
	font-size: 26px;
	margin-top: 30px;
	color: white;
}

.connect__blocks {
	margin-right: 80px;
	display: flex;
	margin-top: 60px;
	gap: 40px;
}

.connect__block {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 15px 20px 15px 20px;
	border: 1px solid white;
	border-radius: 25px;
}

.connect__block-img {
	width: auto;
	height: 80px;
}

.connect__block-text {
	font-weight: 700;
	font-size: 18px;
	color: white;
}

.connect__image {
	width: 47%;
	position: relative;
}

.connect__image-img {
	margin-top: 55px;
	width: 600px;
	margin-left: 180px;
}

.connect__image-sign {
	position: absolute;
	right: 2%;
	top: 35%;
}

.connect__image-sign-text {
	font-size: 30px;
}

.connect__image-text {
	width: 70%;
}

.connect__button {
	display: inline-block;
	text-decoration: none;
	color: white;
	margin-top: 60px;
	margin-bottom: 96px;
	padding: 30px 60px;
	font-weight: 700;
	font-size: 32px;
	border-radius: 12px;
	background-color: rgb(48, 181, 100);
}

.connect__button:hover {
	background: #8a00ff
}
	
.connect__arrow {
	width: 70%;
}

/* intro */

.section--intro.sellers .intro-img-h {
	position: relative;
}

.section--intro.sellers .intro-img-h img {
	width: auto;
	max-height: 840px;
}

.section--intro.sellers .intro--img picture {
	width: auto;
	margin-right: 90px;
	padding-right: 0;
}

.section--intro.sellers .intro--content h1 {
	font-size: 84px;
}

.section--intro.sellers .section__inner {
	margin-left: 130px;
}

.intro__wb {
	color: rgb(138, 0, 255) !important;
}

.intro__ozon {
	color: rgb(0, 108, 255) !important;
}

.section--intro.sellers .intro--stickers {
	margin-top: 0;
	gap: 30px;
	font-family: "TT";
}

.section--intro.sellers .sticker {
	width: auto;
}

.section--intro.sellers p.intro--desc {
	font-size: 36px;
}

.section--intro.sellers p.intro--desc b {
	font-weight: 700;
}

.section--intro.sellers a.intro--btn {
	margin-bottom: 80px;
}

.intro__arrow {
	text-align: right;
	position: absolute;
	top: 9%;
	left: -150px;
}

.section--intro.sellers .intro-arrow-item:first-child {
	position: absolute;
	height: 130px;
	top: 120px;
	left: 50px;
}

.section--intro.sellers .intro-arrow-item:last-child {
	position: absolute;
	width: 130px;
	top: -35px;
	left: 275px;
	height: auto;
}

.section--intro.sellers .intro-arrow-text {
	position: absolute;
	top: 0;
	width: 250px;
	font-weight: 600;
	transform: rotate(-3deg);
	font-size: 26px;
}

/* advantages */

.section--advantages {
	background-color: rgb(255, 249, 249);
	padding: 120px 0;
}

.section--advantages .mobile--swipers {
	display: none;
}

.advantages__title {
	text-align: center;
	font-weight: 700;
	font-family: "TT";
	font-size: 72px;
}

.advantages__blocks {
	margin: 124px 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10%;
}

.advantages__block {
	width: 100%;
}

.advantages__block-img {
	height: 70px;
	width: auto;
}

.advantages__block-title {
	margin-top: 43px;
	font-weight: 700;
	font-size: 38px;
}

.advantages__block-description {
	margin-top: 54px;
	font-size: 26px;
	font-weight: 500;
	color: rgb(114, 114, 114);
}

.advantages__block-description b {
	font-weight: 700;
}

/* differences */

.section--differences {
	background-color: white;
	padding-top: 213px;
	padding-bottom: 0;
}

.differences__title {
	font-size: 72px;
	font-weight: 700;
	text-align: center;
}

.differences__step {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.differences__step-1 {
	margin: 250px 100px 0;
}

.differences__step-2 {
	margin: 200px 100px 0;
}

.differences__step-3 {
	margin: 200px 100px 0;
}

.differences__step-4 {
	margin: 430px 100px 200px;
}

.differences__step-text {
	align-self: center;
	width: 40%;
}

.differences__step-title {
	font-weight: 700;
	color: rgb(33, 160, 33);
	font-size: 56px;
}

.differences__step-description {
	font-size: 30px;
	font-weight: 500;
	color: rgb(117, 117, 117);
	margin-top: 10px;
	width: 85%;
}

.differences__step-description b {
	font-weight: 700;
}

.differences__step-description:nth-child(2) {
	margin-top: 70px;
}

.differences__step-arrow {
	position: absolute;
	width: 350px;
}

.differences__step-picture {
	background: transparent;
}

.differences__step-picture img {
	box-shadow: none;
	border-radius: 30px;
}

.differences__step-picture#differences__step-picture1 {
	transform: rotate(3deg);
	width: 40%;
	height: 450px;
}

.differences__step-picture#differences__step-picture2 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
	margin-left: 50px;
	border-radius: 100px;
	transform: rotate(-8deg);
}

.differences__step-picture#differences__step-picture2 img {
	height: 70%;
	width: auto;
	box-shadow: none;
	border-radius: 70px;
}

.differences__step-picture#differences__step-picture3 {
	background-color: white;
	box-shadow: none;
	width: 50%;
	height: 100%;
}

.differences__step-picture#differences__step-picture3 img {
	box-shadow: none;
}

.differences__step-picture#differences__step-picture4 {
	align-self: center;
	box-shadow: none;
	width: 50%;
	height: 100%;
	transform: rotate(-5deg);
	border-radius: 30px;
}

.differences__step-arrow1 {
	left: 38%;
	top: 33%;
}

.differences__step-arrow2 {
	left: 38%;
	top: 33%;
}

.differences__step-arrow3 {
	width: 300px;
	left: 33%;
	top: 90%;
}

.differences__step-arrow4 {
	width: 320px;
	left: 42%;
	top: 0;
}

/* opinions */

.section--opinions.sellers .opinions--buttons > a:first-child {
	background: rgb(48, 181, 100);
}

.section--opinions.sellers .opinions--buttons > a:first-child:hover {
	background: #8a00ff
}

/* results */

.section--results {
	padding-top: 200px;
	padding-bottom: 100px;
}

.section--results .container {
	position: relative;
}

.results__title {
	text-align: center;
	font-weight: 700;
	font-size: 64px;
}

.results__subtitle {
	text-align: center;
	font-size: 48px;
	margin-top: 5px;
}

.results__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 50px 20px 50px 45px;
	background: rgb(246, 255, 246);
	border-radius: 30px;
	margin: 117px 400px 0;
	list-style-position: inside;
	counter-reset: counter;
}

.results__list-item {
	list-style-type: none;
	counter-increment: counter;
	font-weight: 400;
	font-size: 33px;
}

.results__list-item::before {
	content: counter(counter);
	font-weight: 700;
	margin-right: 0.5em;
}

.results__text {
	text-align: center;
	margin-top: 100px;
	font-size: 50px;
	font-weight: 400;
}

.results__arrow {
	position: absolute;
	width: auto;
	right: 20%;
    bottom: -18.5%;
    height: 250px;
}

/* prices */

.section--prices {
	padding-top: 80px;
	padding-bottom: 200px;
	background-color: rgb(247, 249, 255);
}

.section--prices .container {
	position: relative;
}

.section--prices p {
	margin: 0;
}

.prices__title {
	text-align: center;
	font-size: 70px;
	font-weight: 700;
}

.prices__subtitle {
	margin-top: 1em !important;
	text-align: center;
	font-size: 30px;
}

.prices__subtitle b {
	font-weight: 700;
}

.prices__blocks {
	margin-top: 130px;
	display: flex;
	justify-content: center;
	gap: 65px;
}

.prices__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 22px 35px;
	background-color: rgb(240, 255, 240);
	border: 1px solid rgb(105, 105, 105);
	border-radius: 30px;
	position: relative;
}

.prices__block-title {
	font-size: 40px;
}

.prices__block-count-integration {
	margin-top: 20px !important;
	font-weight: 700;
	font-size: 72px;
	color: rgb(48, 181, 100);
}

.prices__block-text {
	font-size: 24px;
	line-height: 1;
	font-weight: 400;
}

.prices__block-price-full {
	margin-top: 22px !important;
	font-weight: 500;
	color: rgb(157, 157, 157);
	font-size: 20px;
}

.prices__block-price-full span {
	text-decoration: line-through;
}

.prices__block-price-wrapper {
	line-height: 0.9;
	display: flex;
	gap: 10px;
}

.prices__block-price {
	align-self: center;
	font-size: 48px;
	font-weight: 700;
}

.prices__block-price-after {
	align-self: center;
}

.prices__block-price-currency {
	font-weight: 700;
	font-size: 28px;
}

.prices__block-price-time {
	font-size: 24px;
	line-height: 0.4;
	font-weight: 500;
	margin-top: 3px !important;
}

.prices__block-price-eco-wrapper {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.prices__block-price-eco-percents {
	font-weight: 700;
	padding: 20px 10px;
	font-size: 24px;
	color: white;
	border-radius: 50%;
	border-bottom-right-radius: 0;
	background-color: rgb(74, 168, 255);
}

.prices__block-price-eco-text {
	color: rgb(74, 168, 255);
	font-size: 28px;
	font-weight: 700;
}

.prices__block-price-eco-count {
	color: rgb(74, 168, 255);
	font-size: 32px;
	font-weight: 700;
}

.prices__block-price-eco-count span {
	font-weight: 400;
	font-size: 24px;
}

.prices__block-price-one {
	margin-top: 20px !important;
	margin-bottom: 10px !important;
	font-size: 16px;
}

.prices__block-connect {
	background-color: rgb(48, 181, 100);
	font-size: 28px;
	font-family: "TT";
	font-weight: 700;
	padding: 14px 70px;
	color: white;
	margin-top: auto;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 10px 6px rgba(0, 0, 0, 0.22);
}

.prices__block-connect:hover {
	background: #8a00ff
}

.prices__block#prices__block3 {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.prices__block-main {
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;
	border: 1px solid rgb(74, 168, 255);
	border-bottom: 0;
	font-weight: 500;
	text-align: center;
	color: white;
	font-size: 24px;
	top: -50px;
	position: absolute;
	background-color: rgb(74, 168, 255);
	width: calc(100% + 2px);
	padding: 10px 0;
}

.prices__block#prices__block1 .prices__block-price-wrapper {
	margin-top: 50px !important;
}

.prices__text {
	margin-top: 60px !important;
	text-align: center;
	font-size: 48px;
}

.prices__link {
	display: inline-block;
	font-family: "TT";
	font-weight: 700;
	font-size: 36px;
	text-decoration: none;
	margin: 0 auto;
	color: white;
	background-color: rgb(48, 181, 100);
	margin-top: 60px !important;
	padding: 30px 120px;
	border-radius: 12px;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.22);
}

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

.prices__arrow {
	position: absolute;
	right: 20%;
	bottom: 2%;
	width: 190px;
}

/* barter */

.bt--blocks.wrap {
	column-gap: 5%;
}

.bt--blocks.wrap article {
	width: 100%;
}

.section--barter.sellers h2.bt--title {
	font-size: 64px;
}

.section--barter.sellers .bt--blocks article strong {
	margin-top: 0;
}

.section--barter.sellers .bt--blocks article figure {
	max-width: 100%;
}

.section--barter.sellers .bt--blocks article figure img {
	height: auto;
	width: auto;
	max-width: 100% !important;
}

@media (max-width: 1920px) {
	/* opinions */

	.section--opinions.sellers .opinions--text br {
		display: none;
	}

	/* connect */

	.section--connect {
		padding-top: 100px;
	}

	.connect__image-img {
		max-width: 600px;
		transform: translateY(3px);
		margin-left: 0;
	}

	.connect__title {
		font-size: 48px;
	}

	.connect__text {
		font-size: 24px;
	}

	.connect__blocks {
		margin-right: 0;
		margin-top: 40px;
		gap: 20px;
	}
	
	.connect__block-img {
		height: 80px;
	}

	.connect__block-text {
		font-size: 16px;
	}

	.connect__button {
		margin-top: 40px;
		padding: 25px 50px;
		font-size: 30px;
		border-radius: 12px;
	}

	.connect__image-sign {
		top: 30%;
		right: 4%;
	}

	.connect__arrow {
		width: 150px;
	}

	/* intro */

	.section--intro.sellers .sticker--title {
		font-size: 18px;
	}
	
	.section--intro.sellers article.sticker img {
		width: 50px;
		height: 50px;
	}

	.section--intro.sellers .intro-img-h img {
		height: 700px;
	}

	.section--intro.sellers .intro--content h1 {
		font-size: 64px;
	}

	.section--intro.sellers p.intro--desc {
		font-size: 27px;
	}

	.section--intro.sellers .intro--stickers {
		gap: 10px;
		justify-content: start;
	}

	.section--intro.sellers .sticker {
		width: 260px;
		height: auto;
		min-height: 0;
		padding-top: 10px;
		padding-bottom: 20px;
	}

	.section--intro.sellers article.sticker p {
		font-size: 15px;
	}

	.section--intro.sellers .intro-arrow-text {
		font-size: 20px;
		left: -40px;
		top: 5px;
	}

	.section--intro.sellers .intro-arrow-item:first-child {
		top: 100px;
	}

	.section--intro.sellers .intro-arrow-item:last-child {
		left: 225px;
	}

	.section--intro.sellers .intro--stickers {
		margin-top: 0;
	}

	/* advantages */

	.section--advantages {
		padding: 150px 0 100px;
	}

	.advantages__title {
		font-size: 56px;
	}

	.advantages__block-img {
		width: 65%;
		height: auto;
	}

	.advantages__block-title {
		margin-top: 20px;
		font-size: 31px;
	}

	.advantages__block-description {
		font-size: 24px;
		margin-top: 30px;
	}

	.advantages__blocks {
		gap: 5%;
	}

	/* blogers */

	.section--blogers {
		margin-top: 200px;
	}

	.blogers__title {
		font-size: 48px;
	}

	.blogers__subtitle {
		margin-top: 20px;
		font-size: 36px;
	}

	.blogers__slider {
		margin: 50px 380px 0;
	}

	.blogers__slide {
		max-width: 150px;
	}

	.blogers__slide-name {
		font-size: 14px;
	}

	.blogers__slide-city {
		font-size: 16px;
	}

	.blogers__slide-stars {
		width: 60%;
	}

	.blogers__slide-img-png {
		height: auto;
		width: 150px;
	}

	.blogers__slide-img-avif {
		height: auto;
		width: 150px;
	}

	.blogers__slide-img-webp {
		height: auto;
		width: 150px;
	}

	.blogers__slide-subscribers-wrapper {
		gap: 8px;
	}

	.blogers__slide-subscribers {
		font-size: 14px;
		margin-bottom: 0;
	}

	.blogers__slide-subscribers-img {
		width: 20px;
		height: 20px;
	}

	.blogers__description {
		width: 70%;
		margin: 0 auto 50px;
		font-size: 24px;
	}

	.blogers__link {
		margin-top: 0;
		font-size: 24px;
		padding: 20px 30px;
		border-radius: 12px;
		margin-bottom: 90px;
	}

	.blogers__slider-btn {
		width: 20px;
		height: 20px;
		font-size: 24px;
		padding: 20px;
	}

	.blogers__slider-btn-left {
		left: 42%;
	}

	.blogers__slider-btn-right {
		right: 57%;
	}

	/* differences */

	.section--differences {
		padding-bottom: 150px;
	}

	.differences__title {
		font-size: 56px;
	}

	.differences__step-title {
		font-size: 40px;
	}

	.differences__step-description {
		font-size: 24px;
		width: 100%;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 35px;
	}

	.differences__step {
		width: 80%;
		margin: 0 auto;
	}

	.differences__step-1 {
		margin-top: 150px;
	}

	.differences__step-2 {
		margin-top: 0;
	}

	.differences__step-3 {
		margin-top: 0;
	}

	.differences__step-4 {
		margin-top: 200px;
	}

	.differences__step-picture#differences__step-picture4 img {
		border-radius: 20px;
	}

	.differences__step-picture#differences__step-picture1 {
		align-self: center;
		height: 95%;
		width: 42%;
	}

	.differences__step-picture#differences__step-picture2 {
		width: 30%;
	}

	.differences__step-picture#differences__step-picture2 img {
		border-radius: 55px;
		height: 60%;
	}

	.differences__step-picture#differences__step-picture4 {
		border-radius: 30px;
	}

	.differences__step-arrow1 {
		width: 200px;
		left: 40%;
		top: 37%;
	}

	.differences__step-arrow2 {
		width: 250px;
		top: 35%;
		left: 38%;
	}

	.differences__step-arrow3 {
		width: 300px;
		left: 30%;
	}

	.differences__step-arrow4 {
		width: 270px;
		left: 36%;
		top: 2%;
	}

	/* results */

	.results__title {
		font-size: 56px;
	}

	.results__subtitle {
		font-size: 42px;
	}

	.results__list {
		margin-top: 70px;
		padding-top: 70px;
		padding-bottom: 70px;
		margin-left: 130px;
		margin-right: 130px;
	}

	.results__list-item {
		font-size: 32px;
	}

	.results__text {
		margin-top: 50px;
		font-size: 36px;
	}

	.results__arrow {
		right: 15%;
        height: 200px;
        bottom: -18%;
	}

	/* prices */

	.prices__blocks {
		gap: 30px;
	}

	.prices__block {
		padding: 30px 22px 22px;
	}

	.prices__block-title {
		font-size: 32px;
	}

	.prices__block-count-integration {
		font-size: 60px;
		line-height: 0.9;
	}

	.prices__block-text {
		font-size: 16px;
		line-height: 1.15;
	}

	.prices__block-price-full {
		font-size: 18px;
	}
	
	.prices__block-price-wrapper {
		margin-top: 0 !important;
	}

	.prices__block-price {
		font-size: 48px;
	}

	.prices__block-connect {
		font-size: 24px;
		padding: 14px 50px;
		box-shadow: 0 5px 6px rgba(0, 0, 0, 0.22);
	}

	.prices__block-price-eco-wrapper {
		gap: 10px;
	}

	.prices__block-price-eco-percents {
		padding: 15px 5px;
		font-size: 18px;
	}

	.prices__block-price-eco-text {
		font-size: 24px;
	}

	.prices__block-price-eco-count {
		line-height: 0.9;
		font-size: 32px;
	}

	.prices__block-price-eco-count span {
		font-size: 24px;
	}

	.prices__block-price-one {
		font-size: 12px;
	}

	.prices__text {
		font-size: 40px;
	}

	.prices__link {
		padding: 25px 70px;
		font-size: 24px;
		border-radius: 10px;
	}

	.prices__arrow {
		width: 150px;
		right: 18%;
		bottom: 2%;
	}

	.prices__block#prices__block1 .prices__block-price-wrapper {
		margin-top: 48px !important;
	}

	.prices__block-main {
		font-size: 16px;
		top: -40px;
	}

	/* barter */

	.section--barter.sellers {
		padding-top: 40px;
	}

	.section--barter.sellers h2.bt--title {
		font-size: 40px;
	}

	.section--barter.sellers .bt--subtitle {
		font-size: 28px;
	}

	.section--barter.sellers .bt--subtitle {
		margin-top: 5px;
		margin-bottom: 15px;
	}
}

@media (max-width: 1366px) {
	/* connect */

	.connect__image {
		width: 50%;
	}

	.connect__info {
		width: 50%;
	}

	.connect__image-img {
		margin-left: 0;
		max-width: 400px;
		transform: translateY(3px);
	}

	.connect__title {
		font-size: 32px;
	}

	.connect__text {
		margin-top: 15px;
		margin-bottom: 10px;
		font-size: 20px;
	}

	.connect__blocks {
		margin-top: 20px;
		gap: 10px;
	}

	.connect__block {
		gap: 5px;
		padding: 15px 3px 15px 8px;
		border-radius: 15px;
	}
	
	.connect__block-img {
		height: 60px;
	}

	.connect__block-text {
		margin: 0;
		font-size: 16px;
	}

	.connect__button {
		margin-top: 20px;
		margin-bottom: 10px;
		padding: 20px 40px;
		font-size: 24px;
		border-radius: 12px;
	}

	.connect__image-sign {
		top: 18%;
		right: 30px;
	}

	.connect__arrow {
		width: 150px;
	}

	.section--connect {
		padding-top: 80px;
	}

	/* intro */

	.section--intro.sellers article.sticker img {
		width: 35px;
		height: 35px;
	}

	.section--intro.sellers .sticker--title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.section--intro.sellers .section__inner {
		justify-content: start;
	}

	.section--intro.sellers .intro--img picture {
		margin-right: 60px;
	}

	.section--intro.sellers .intro-img-h img {
		max-height: 500px;
	}
	
	.section--intro.sellers .intro--content h1 {
		font-size: 48px;
	}

	.section--intro.sellers .intro--content h1 br {
		display: block !important;
	}

	.section--intro.sellers p.intro--desc {
		font-size: 22px;
	}

	.section--intro.sellers a.intro--btn {
		padding: 15px 30px;
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.section--intro.sellers .intro--stickers {
		margin-top: 0;
		gap: 15px;
	}

	.section--intro.sellers .sticker {
		width: 200px;
	}

	article.sticker .sticker--title {
		font-size: 16px;
	}

	.section--intro.sellers article.sticker p {
		font-size: 10px;
	}

	.intro__arrow {
		top: 7%;
		left: -180px;
	}

	.section--intro.sellers .intro-arrow-text {
		font-size: 18px;
	}

	.section--intro.sellers .intro-arrow-item:first-child {
		top: 90px;
		left: 120px;
		height: 90px;
	}

	.section--intro.sellers .intro-arrow-item:last-child {
		width: 90px;
		top: -10px;
		left: 230px;
	}

	/* advantages */

	.section--advantages {
		padding: 100px 0 50px;
	}

	.advantages__title {
		font-size: 44px;
	}

	.advantages__blocks {
		margin: 75px 0;
		gap: 7%;
	}

	.advantages__block-title {
		margin-top: 10px;
		font-size: 24px;
	}
	
	.advantages__block-description {
		margin-top: 20px;
		font-size: 16px;
	}

	/* blogers */

	.section--blogers {
		margin-top: 180px;
	}

	.blogers__title {
		font-size: 40px;
	}

	.blogers__subtitle {
		font-size: 30px;
	}

	.blogers__slider {
		margin: 50px 200px 0;
	}

	.blogers__slider-btns {
		margin-top: 50px;
	}

	.blogers__slider-btn {
		width: 20px;
		height: 20px;
		padding: 15px;
		font-size: 20px;
	}

	.blogers__slide-img-png {
		width: 130px;
	}

	.blogers__slide-img-avif {
		width: 130px;
	}

	.blogers__slide-img-webp {
		width: 130px;
	}

	.blogers__slide-subscribers-wrapper {
		gap: 5px;
	}

	.blogers__slide-subscribers {
		font-size: 12px;
	}

	.blogers__description {
		font-size: 18px;
		margin-top: 0;
		margin-left: auto;
		margin-left: auto;
		margin-bottom: 30px;
	}

	.blogers__link {
		font-size: 20px;
		padding: 15px 40px;
		margin-top: 0;
		border-radius: 8px;
	}

	/* differences */

	.section--differences {
		padding-top: 100px;
		padding-bottom: 200px;
	}

	.differences__title {
		font-size: 40px;
	}

	.differences__step-1 {
		margin-top: 100px;
	}

	.differences__step-2 {
		margin-top: -180px;
	}

	.differences__step-3 {
		margin-top: -180px;
	}

	.differences__step-4 {
		margin-top: 200px;
	}

	.differences__step-title {
		font-size: 30px;
	}

	.differences__step-description {
		font-size: 16px;
		width: 90%;
	}

	.differences__step-picture img {
		border-radius: 20px;
	}

	.differences__step-picture#differences__step-picture2 img {
		height: 40%;
		border-radius: 40px;
	}

	.differences__step-picture#differences__step-picture4 img {
		border-radius: 15px;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 30px;
	}

	.differences__step-arrow1 {
		width: 150px;
		left: 37%;
	}

	.differences__step-arrow2 {
		width: 140px;
		top: 40%;
		left: 40%;
	}

	.differences__step-arrow3 {
		width: 150px;
		top: 85%;
		left: 37%;
	}

	.differences__step-arrow4 {
		width: 150px;
		left: 40%;
	}

	/* results */

	.section--results {
		padding-top: 0;
		padding-bottom: 100px;
	}

	.results__title {
		margin-top: 80px;
		font-size: 40px;
	}

	.results__subtitle {
		font-size: 28px;
	}

	.results__list {
		gap: 5px;
		margin-top: 60px;
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 40px;
	}

	.results__text {
		margin-top: 40px;
		font-size: 30px;
	}

	.results__list-item {
		font-size: 22px;
	}

	.results__arrow {
		right: 12%;
        bottom: -20%;
        height: 150px;
	}

	/* prices */

	.section--prices {
		padding-bottom: 100px;
	}

	.prices__blocks {
		margin-top: 80px;
	}

	.prices__title {
		font-size: 40px;
	}

	.prices__subtitle {
		font-size: 24px;
	}

	.prices__block {
		border-radius: 15px;
		padding: 20px 11px 15px;
	}

	.prices__block-title {
		font-size: 20px;
	}

	.prices__block-count-integration {
		margin-top: 10px !important;
		font-size: 40px;
	}

	.prices__block-text {
		font-size: 12px;
		line-height: 1;
	}

	.prices__block-price-full {
		margin-top: 10px !important;
		font-size: 12px;
	}
	
	.prices__block-price-wrapper {
		margin-top: 0 !important;
		gap: 5px;
	}

	.prices__block-price {
		font-size: 32px;
	}

	.prices__block-price-currency {
		font-size: 16px;
	}

	.prices__block-price-time {
		font-size: 12px;
		margin-bottom: 0 !important;
	}

	.prices__block-connect {
		font-size: 16px;
		padding: 10px 30px;
		border-radius: 8px;
	}

	.prices__block-price-eco-wrapper {
		margin-top: 10px;
		gap: 5px;
	}

	.prices__block-price-eco-percents {
		padding: 10px 5px;
		font-size: 12px;
	}

	.prices__block-price-eco-text {
		font-size: 16px;
	}

	.prices__block-price-eco-count {
		font-size: 16px;
		line-height: 0.9;
	}

	.prices__block-price-eco-count span {
		font-size: 14px;
	}

	.prices__block-price-one {
		font-size: 10px;
		margin-top: 10px !important;
		margin-bottom: 5px !important;
	}

	.prices__text {
		font-size: 30px;
	}

	.prices__link {
		margin-top: 30px;
		padding: 15px 40px;
		font-size: 24px;
		border-radius: 5px;
	}

	.prices__arrow {
		width: 100px;
		right: 15%;
	}

	.prices__block#prices__block1 .prices__block-price-wrapper {
		margin-top: 27px !important;
	}

	.prices__block-main {
		font-size: 12px;
		top: -36px;
	}

	/* opinions */

	.section--opinions.sellers .opinions--buttons > a:first-child {
		margin-top: 50px;
	}
}

@media (max-width: 1024px) {
	/* connect */

	.connect__title {
		font-size: 28px;
	}

	.connect__text {
		margin-top: 25px;
		font-size: 16px;
	}

	.connect__blocks {
		margin-top: 40px;
		gap: 10px;
	}

	.connect__block {
		gap: 5px;
		padding: 10px 5px;
		border-radius: 10px;
	}
	
	.connect__block-img {
		height: 40px;
	}

	.connect__block-text {
		margin: 0;
		font-size: 10px;
	}

	.connect__button {
		margin-top: 40px;
		margin-bottom: 10px;
		padding: 15px 25px;
		font-size: 18px;
		border-radius: 12px;
	}

	.connect__image-img {
		max-width: 350px;
		transform: translateY(3px);
	}

	.connect__image-sign {
		top: 23%;
		right: 18px;
	}

	.connect__arrow {
		width: 90px;
	}
	
	.section--connect {
		padding-top: 40px;
	}

	/* intro */

	.section--intro.sellers .section__inner {
		margin-left: 80px;
		gap: 20px;
	}

	.section--intro.sellers .sticker--title {
		font-size: 12px;
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.section--intro.sellers article.sticker img {
		width: 30px;
		height: 30px;
	}

	.section--intro.sellers .intro--img picture {
		margin-left: 30px;
		margin-right: 20px;
	}

	.section--intro.sellers .intro-img-h img {
		max-height: 430px;
	}

	.section--intro.sellers .intro--content h1 {
		font-size: 40px;
	}

	.section--intro.sellers p.intro--desc {
		margin-top: 15px;
		font-size: 16px;
	}

	.section--intro.sellers .intro--stickers {
		margin-top: 0;
		gap: 5px;
	}

	.section--intro.sellers .sticker {
		width: 170px;
		padding-bottom: 10px;
	}

	article.sticker .sticker--title {
		font-size: 12px;
	}

	.section--intro.sellers a.intro--btn {
		padding: 10px 30px;
		margin-bottom: 40px;
		font-size: 12px;
	}

	.section--intro.sellers .intro-arrow-text {
		font-size: 14px;
	}

	.intro__arrow {
		top: 10%;
		left: -130px;
	}

	.section--intro.sellers .intro-arrow-item:first-child {
		top: 70px;
		left: 110px;
		height: 75px;
	}

	.section--intro.sellers .intro-arrow-item:last-child {
		width: 75px;
		left: 200px;
		top: -20px;
	}

	/* advantages */

	.section--advantages {
		padding: 50px 0 50px;
	}

	.advantages__title {
		font-size: 32px;
	}

	.advantages__blocks {
		margin-top: 50px;
		margin-bottom: 30px;
		gap: 8%;
	}

	.advantages__block-title {
		margin-top: 5px;
		font-size: 18px;
	}
	
	.advantages__block-description {
		margin-top: 15px;
		font-size: 14px;
	}

	/* barter */

	.bt--subtitle {
		font-size: 30px;
	}

	/* blogers */

	.section--blogers {
		margin-top: 100px;
	}

	.blogers__title {
		font-size: 44px;
	}

	.blogers__subtitle {
		margin-top: 5px;
		font-size: 28px;
	}

	.blogers__slider {
		margin: 30px 50px 0;
		padding-bottom: 30px;
	}

	.blogers__slide-name {
		font-size: 12px;
	}

	.blogers__slide-city {
		font-size: 14px;
	}

	.blogers__slide-img-png {
		width: 120px;
	}

	.blogers__slide-stars {
		width: 50%;
	}

	.blogers__slide-subscribers-wrapper {
		margin-top: 5px;
		gap: 5px;
	}

	.blogers__slide-subscribers-img {
		width: 20px;
		height: 20px;
	}

	.blogers__slide-subscribers {
		font-size: 12px;
	}

	.blogers__description {
		font-size: 16px;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.blogers__link {
		font-size: 18px;
		padding: 10px 30px;
		border-radius: 6px;
	}

	/* differences */

	.section--differences {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.differences__title {
		font-size: 32px;
	}

	.differences__step {
		width: 90%;
	}

	.differences__step-2 {
		margin-top: -250px;
	}

	.differences__step-3 {
		margin-top: -250px;
	}

	.differences__step-4 {
		margin-top: 100px;
	}

	.differences__step-picture img {
		border-radius: 15px;
	}

	.differences__step-title {
		font-size: 24px;
	}

	.differences__step-description {
		width: 95%;
		font-size: 14px;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 10px;
	}

	.differences__step-arrow1 {
		width: 120px;
		left: 40%;
	}

	.differences__step-arrow2 {
		width: 120px;
		left: 41%;
	}

	.differences__step-arrow3 {
		width: 120px;
		top: 90%;
		left: 30%;
	}

	.differences__step-arrow4 {
		width: 120px;
		top: 5%;
		left: 42%;
	}

	.differences__step-picture#differences__step-picture2 {
		width: 25%;
	}

	.differences__step-picture#differences__step-picture3 {
		width: 55%;
	}

	.differences__step-picture#differences__step-picture4 img {
		border-radius: 10px;
	}

	/* results */

	.section--results {
		padding-top: 0;
		padding-bottom: 50px;
	}

	.results__title {
		font-size: 30px;
	}

	.results__subtitle {
		font-size: 22px;
	}

	.results__list {
		gap: 3px;
		margin-left: 40px;
		margin-right: 40px;
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 40px;
	}

	.results__list-item {
		font-size: 16px;
	}

	.results__text {
		margin-top: 20px;
		font-size: 24px;
	}

	.results__arrow {
		height: 120px;
        bottom: -20%;
        right: 10%;
	}

	/* prices */

	.section--prices {
		padding-top: 40px;
		padding-bottom: 100px;
	}

	.prices__title {
		font-size: 48px;
	}

	.prices__subtitle {
		margin-top: 0.5em !important;
	}

	.prices__blocks {
		margin-top: 70px;
	}

	.prices__block {
		padding: 15px 11px 12px;
		border-radius: 15px;
	}

	.prices__block-title {
		font-size: 16px;
	}

	.prices__subtitle {
		font-size: 20px;
	}

	.prices__block-count-integration {
		margin-top: 10px !important;
		font-size: 40px;
	}

	.prices__block-text {
		font-size: 12px;
		line-height: 1;
	}

	.prices__block-price-full {
		margin-top: 10px !important;
		font-size: 10px;
	}
	
	.prices__block-price-wrapper {
		gap: 5px;
	}

	.prices__block-price {
		font-size: 24px;
	}

	.prices__block-price-currency {
		font-size: 12px;
	}

	.prices__block-price-time {
		font-size: 12px;
		margin-bottom: 0 !important;
		margin-top: 2px !important;
	}

	.prices__block-connect {
		font-size: 12px;
		padding: 10px 30px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.22);
	}

	.prices__block-price-eco-wrapper {
		margin-top: 10px;
	}

	.prices__block-price-eco-percents {
		padding: 10px 5px;
		font-size: 12px;
	}

	.prices__block-price-eco-text {
		font-size: 16px;
	}

	.prices__block-price-eco-count {
		font-size: 20px;
		line-height: 0.9;
	}

	.prices__block-price-eco-count span {
		font-size: 14px;
	}

	.prices__block-price-one {
		font-size: 8px;
		margin-top: 15px !important;
		margin-bottom: 5px !important;
	}

	.prices__text {
		font-size: 24px;
	}

	.prices__link {
		margin-top: 40px !important;
		padding: 12px 36px;
		font-size: 18px;
		border-radius: 5px;
	}

	.prices__arrow {
		width: 100px;
		right: 14%;
	}

	.prices__block#prices__block1 .prices__block-price-wrapper {
		margin-top: 20px !important;
	}

	.prices__block-main {
		font-size: 12px;
		top: -25px;
		border-top-right-radius: 15px;
		border-top-left-radius: 15px;
		padding: 5px 0;
	}
}

@media (max-width: 950px) {
	.bt--blocks.wrap {
		grid-template-columns: repeat(6, 1fr);
	}

	.bt--blocks.wrap::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 768px) {
	/* connect */

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

	.section--connect .container {
		flex-direction: column;
		align-items: center;
	}

	.connect__info {
		width: 100%;
		order: 1;
	}

	.connect__image {
		width: 100%;
		order: 2;
	}
	
	.connect__blocks {
		margin: 50px auto 50px;
        width: 55%;
        gap: 20px;
        flex-direction: column;
        align-items: center;
	}

	.connect__block {
		gap: 20px;
		border-radius: 20px;
		padding: 20px 30px 20px 20px;
	}

	.connect__block:first-child {
		width: 90%;
	}

	.connect__block-text {
		text-align: left;
		font-size: 18px;
	}

	.connect__block-img {
		height: 60px;
	}

	.connect__title {
		font-size: 56px;
		margin-bottom: 40px;
	}

	.connect__title br {
		display: none;
	}

	.connect__text {
		margin: 0 auto;
        width: 90%;
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: 24px;
	}

	.connect__button {
		margin-top: 30px;
        margin-bottom: 30px;
        border-radius: 12px;
        font-size: 32px;
		padding: 20px 50px;
	}

	.connect__image-sign {
		position: absolute;
		top: 8%;
		right: 3%;
	}

	.connect__arrow {
		width: 60%;
	}

	.connect__image-img {
		max-width: 500px;
		transform: translate(-60px, 3px);
	}

	/* intro */

	.section--intro.sellers .section__inner {
		margin-left: 0;
	}
	
	.section--intro.sellers .section--intro .section__inner {
		align-items: center;
	}

	.section--intro.sellers .intro--content h1 {
		font-size: 64px;
	}

	.section--intro.sellers p.intro--desc {
		font-size: 36px;
		margin-right: 50px;
		margin-left: 50px;
	}

	.intro-br-768 {
		display: block !important;
	}

	.section--intro.sellers article.sticker img {
		width: 50px;
		height: 50px;
	}

	.section--intro.sellers .mobile--swipers img {
		width: 12% !important;
	}

	.section--intro.sellers .intro--img picture {
		display: flex;
		align-items: center;
		margin-top: 0;
	}

	.section--intro.sellers .intro--img picture img {
		margin: 0 auto;
		max-height: 700px;
	}

	.section--intro.sellers .intro-arrow-text {
		font-size: 20px;
	}

	.section--intro.sellers .intro-arrow-item:first-child {
		top: 100px;
        left: 55px;
        height: 120px;
	}

	.section--intro.sellers .intro-arrow-item:last-child {
		width: 120px;
        left: 217px;
        top: -25px;
	}

	.section--intro.sellers a.intro--btn {
		width: auto;
		padding: 15px 40px;
		font-size: 28px;
	}

	.intro__big {
		text-transform: uppercase;
	}

	.intro__arrow {
        top: 2.5%;
        left: 5%;
    }

	.section--intro.sellers .intro--stickers {
		margin-top: 100px;
		gap: 30px;
	}

	.section--intro.sellers .sticker {
		min-width: 500px;
		min-height: auto;
		width: auto;
		padding-bottom: 20px;
	}

	.section--intro.sellers article.sticker .sticker--title {
		font-size: 28px;
	}
	
	.section--intro.sellers article.sticker p {
		font-size: 18px;
	}

	.section--intro .mobile--swipers {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.section--intro .mobile--swipers img {
		width: 20%;
	}

	.section--intro.sellers .intro-img-h img {
		height: auto;
	}

	.section--intro .mobile--swipers img {
		width: 20% !important;
	}

	/* advantages */

	.advantages__title {
		font-size: 48px;
	}

	.advantages__blocks {
		padding-right: 30px;
		display: flex;
        width: 100vw;
		overflow-x: scroll;
	}

	.advantages__block {
		min-width: 450px;
	}

	.advantages__block-img {
		width: auto;
		height: 60px;
	}

	.advantages__block-title {
		font-size: 25px;
	}

	.advantages__block-description {
		font-size: 18px;
	}

	.section--advantages .mobile--swipers {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.advantages__blocks::-webkit-scrollbar {
		display: none;
	}

	.section--advantages .mobile--swipers img {
		width: 12%;
	}

	/* blogers */

	.blogers__title {
		font-size: 50px;
	}

	.blogers__subtitle {
		margin-top: 10px;
		font-size: 30px;
	}

	.blogers__subtitle br {
		display: none;
	}

	.blogers-br-768 {
		display: block !important;
	}

	.blogers__slider {
		margin-top: 70px;
		margin-left: 13px;
		margin-right: 0;
		padding-bottom: 30px;
	}

	.blogers__slide-name {
		font-size: 18px;
	}

	.blogers__slide-city {
		font-size: 20px;
	}

	.blogers__slide-stars {
		width: 80%;
	}

	.blogers__slide-subscribers-wrapper {
		margin-top: 10px;
		width: 135%;
		gap: 10px;
	}

	.blogers__slide-subscribers-img {
		width: 25px;
		height: 25px;
	}

	.blogers__slide-subscribers {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.blogers__slide-img-png {
		width: 200px;
	}

	.blogers__slide-img-avif {
		width: 140px;
	}

	.blogers__slide-img-webp {
		width: 140px;
	}

	.blogers__slider-btns {
		display: none;
	}

	.section--blogers .mobile--swipers {
		display: flex;
		justify-content: center;
	}

	.section--blogers .mobile--swipers img {
		margin-top: 5px;
		width: 12%;
	}

	.blogers__description {
		font-size: 21px;
	}

	.blogers__link {
		padding: 20px 50px;
		font-size: 28px;
	}

	/* roadmap */

	.section--roadmap.sellers h2.rm--title {
		font-size: 50px;
	}

	.section--roadmap.sellers figure.stage.one picture:has(img.arrow--rm) {
		left: 420px;
	}

	/* differences */

	.differences__title {
		font-size: 56px;
	}

	.differences__title br {
		display: none;
	}

	.differences__step {
		flex-direction: column;
		justify-content: start;
	}

	.differences__step-picture img {
		border-radius: 23px;
	}

	.differences__step-2 {
		margin-top: 150px;
	}

	.differences__step-3 {
		margin-top: 150px;
	}

	.differences__step-text {
		align-self: start;
		width: 80%;
		margin-left: 30px;
	}

	.differences__step-picture#differences__step-picture1 {
		margin-top: 150px;
		align-self: center;
		width: 90%;
	}

	.differences__step-arrow1 {
		transform: rotate(90deg) scaleY(-1);
		left: 60%;
		top: 50%;
	}

	.differences__step-arrow2 {
		width: 200px;
		transform: rotate(-90deg);
		left: 1%;
		top: 36%;
	}

	.differences__step-description {
		width: 100%;
		font-size: 24px;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 70px;
	}

	.differences__step-title {
		font-size: 36px;
	}

	.differences__step-picture#differences__step-picture2 {
		align-self: center;
		width: 70%;
		margin-top: 240px;
		margin-left: 0;
		order: 2;
	}

	.differences__step-picture#differences__step-picture2 img {
		width: 100%;
		border-radius: 60px;
	}

	.differences__step-picture#differences__step-picture2 + .differences__step-text {
		align-self: end;
		order: 1;
	}

	.differences__step-picture#differences__step-picture3 {
		margin-top: 200px;
		align-self: center;
		width: 80%;
	}

	.differences__step-arrow3 {
		transform: scaleY(-1) rotate(-90deg);
		top: 55%;
		left: 70%;
		width: 180px;
	}

	.differences__step-picture#differences__step-picture4 {
		margin-top: 200px;
		width: 80%;
		order: 2;
	}

	.differences__step-picture#differences__step-picture4 + .differences__step-text {
		align-self: end;
		order: 1;
	}

	.differences__step-arrow4 {
		width: 280px;
		transform: rotate(-90deg);
		top: 55%;
		left: -3%;
	}

	/* results */

	.section--results {
		padding-bottom: 0;
	}

	.section--results .container {
		max-width: 100vw;
		width: 100%;
		margin: 0;
	}

	.results__title {
		margin-top: 50px;
		font-size: 48px;
	}

	.results__subtitle {
		margin-top: 20px;
		margin-left: 30px;
		margin-right: 30px;
		font-size: 30px;
	}

	.results__list {
		margin-left: 0;
		margin-right: 0;
		margin-top: 40px;
		border-radius: 0;
		gap: 20px;
	}

	.results__list-item {
		font-size: 24px;
	}

	.results__list-item::before {
		margin-right: 30px;
	}

	.results__text {
		font-size: 24px;
		margin-top: 20px;
	}

	.results__arrow {
		display: none;
		transform: rotate(20deg);
		height: 220px;
		bottom: -30%;
		right: 5%;
	}

	/* prices */

	.section--prices {
		padding-top: 50px;
		padding-bottom: 100px;
	}

	.prices__blocks {
		margin-top: 30px;
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 46px;
		row-gap: 40px;
	}

	.prices__title {
		font-size: 48px;
	}

	.prices__subtitle {
		margin-top: 5px !important;
		font-size: 22px;
	}

	.prices__block-title {
		font-size: 24px;
	}

	.prices__block-text {
		font-size: 14px;
	}

	.prices__block-count-integration {
		font-size: 60px;
	}

	.prices__block-connect {
		font-size: 18px;
		padding: 10px 40px;
	}

	.prices__block-price-one {
		font-size: 12px;
	}

	.prices__text {
		margin-top: 50px !important;
		font-size: 32px;
	}

	.prices__text br {
		display: none;
	}

	.prices__link {
		font-size: 28px;
		padding: 18px 54px;
		margin-top: 50px !important;
		border-radius: 10px;
	}

	.prices__arrow {
		display: none;
		width: 120px;
		right: 6%;
		bottom: 1%;
	}

	.prices__block-main {
		font-size: 14px;
		top: -29px;
	}

	/* barter */

	.section--barter.sellers h2.bt--title {
		font-size: 48px;
	}

	.section--barter.sellers h2.bt--title br {
		display: none;
	}

	.section--barter.sellers .bt--subtitle {
		margin-top: 30px;
		font-size: 30px;
	}

	.section--barter.sellers .bt--blocks.wrap {
		margin-top: 50px;
	}

	/* opinions */

	.section--opinions.sellers .opinions--buttons > a:first-child {
		margin-top: 20px;
	}
	
	.section--opinions.sellers .opinions--text {
		font-size: 28px;
	}

	.section--opinions.sellers .opinions--text br {
		display: block;
	}

	.opinions-br-768 {
		display: block !important;
	}
}

@media (max-width: 650px) {
	/* advantages */

	.advantages__title {
		font-size: 28px;
	}

	.prices__blocks {
		flex-wrap: wrap;
		row-gap: 50px;
	}

	.prices__text {
		font-size: 21px;
	}

	.prices__block {
		width: 40%;
	}

	.prices__link {
		margin-top: 35px !important;
	}

	.prices__arrow {
		width: 60px;
		right: 8%;
		bottom: 1%;
	}

	.prices__title {
		font-size: 36px;
	}
}

@media (max-width: 600px) {
	/* connect */

	.connect__image-sign {
		right: 50px;
	}

	.connect__blocks {
		width: 50%;
	}

	.connect__title {
		font-size: 32px;
	}

	.connect__image-sign {
		right: -3%;
	}

	/* intro */

	.intro__arrow {
		left: 2%;
		top: 1%;
	}

	/* advantages */

	.advantages__block {
		min-width: 350px;
	}

	.section--advantages .mobile--swipers img {
		width: 100%;
	}

	/* blogers */

	.blogers__title {
		font-size: 28px;
	}

	.section--blogers .mobile--swipers img {
		width: 100%;
	}

	.blogers__subtitle {
		font-size: 24px;
	}

	.blogers__slide-img-png {
		width: 100px;
	}

	.blogers__slider {
		margin: 30px 80px 0;
	}

	.blogers__slide-name {
		font-size: 14px;
	}

	.blogers__slide-city {
		font-size: 16px;
	}

	.blogers__slide-subscribers-img {
		width: 15px;
		height: 15px;
	}

	.blogers__slide-subscribers {
		font-size: 9px;
	}

	.blogers__slide-subscribers-wrapper {
		margin-top: 5px;
	}

	.blogers__description {
		font-size: 16px;
	}

	.blogers__link {
		font-size: 20px;
		padding: 10px 25px;
		margin-bottom: 40px;
	}

	.differences__step-arrow1 {
		top: 55%;
	}

	.differences__step-arrow2 {
		top: 45%;
		left: 0;
	}

	.differences__step-arrow3 {
		top: 57%;
		left: 57%;
	}

	.differences__step-arrow4 {
		left: -6%;
		top: 60%;
	}

	/* results */

	.section--results {
		padding-top: 50px;
	}

	.results__title {
		font-size: 30px;
	}

	.results__subtitle {
		margin-top: 30px;
		font-size: 28px;
	}

	.results__text {
		font-size: 24px;
	}

	.results__arrow {
		height: 200px;
		bottom: -23%;
	}

	/* prices */

	.prices__arrow {
		right: 3%;
		bottom: 2%;
	}

	/* barter */

	.section--barter.sellers h2.bt--title {
		font-size: 24px;
	}

	.section--barter.sellers .bt--subtitle {
		font-size: 16px;
	}
}

@media (max-width: 580px) {
	.intro__arrow {
		left: 0%;
		top: 1%;
	}

	.differences__step-arrow1 {
		top: 60%;
	}

	.differences__step-arrow1 {
		top: 63%;
		width: 120px;
	}

	.differences__step-arrow4 {
		left: -10%;
	}
}

@media (max-width: 550px) {
	/* connect */

	.connect__image-sign {
		right: -6%;
	}

	.differences__step-arrow2 {
		top: 50%;
		left: -3%;
	}

	.differences__step-arrow3 {
		top: 60%;
	}

	.differences__step-arrow4 {
		top: 67%;
	}

	/* prices */

	.prices__title {
		font-size: 30px;
	}

	.prices__subtitle {
		font-size: 16px;
	}

	.prices__arrow {
		right: 1%;
	}
}

@media (max-width: 530px) {
	/* connect */

	.connect__image-sign {
		right: -15%;
	}

	/* intro */

	.section--intro.sellers .intro--content h1 {
		font-size: 36px;
	}

	.section--intro.sellers p.intro--desc {
		font-size: 16px;
	}

	.section--intro.sellers a.intro--btn {
		font-size: 16px;
	}

	.intro__arrow {
		left: -15%;
		top: 0%;
	}

	/* blogers */

	.blogers__slider {
		margin: 30px 50px 0;
	}

	/* differences */

	.differences__title {
		font-size: 32px;
	}

	.differences__step-title {
		font-size: 28px;
	}

	.differences__step-description {
		font-size: 18px;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 10px;
	}

	.differences__step-1 {
		margin-top: 50px;
	}

	.differences__step-picture#differences__step-picture1 {
		margin-top: 120px;
	}

	.differences__step-arrow1 {
		width: 100px;
		top: 56%;
	}

	.differences__step-2 {
		margin-top: 100px;
	}

	.differences__step-picture#differences__step-picture2 img {
		border-radius: 30px;
	}

	.differences__step-arrow2 {
		width: 120px;
		top: 45%;
		left: 3%;
	}

	.differences__step-3 {
		margin-top: 100px;
	}

	.differences__step-picture#differences__step-picture3 {
		margin-top: 100px;
	}

	.differences__step-arrow3 {
		width: 100px;
		top: 58%;
	}

	.differences__step-picture#differences__step-picture4 {
		margin-top: 100px;
	}

	.differences__step-picture#differences__step-picture4 img {
		border-radius: 11px;
	}

	.differences__step-arrow4 {
		width: 100px;
		top: 70%;
		left: -5%;
	}

	/* results */

	.section--results {
		padding-top: 50px;
		padding-bottom: 25px;
	}

	.results__text {
		font-size: 18px;
	}

	.results__subtitle {
		font-size: 24px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.results__list {
		gap: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.results__list-item {
		font-size: 14px;
	}

	.results__arrow {
		height: 210px;
		bottom: -24%;
		transform: rotate(25deg);
	}

	/* prices */

	.prices__blocks {
		gap: 20px;
		row-gap: 50px;
	}

	.prices__text {
		font-size: 18px;
	}

	.prices__arrow {
		width: 50px;
		right: 2%;
	}

	.prices__block-price-one {
		font-size: 10px;
	}

	.prices__block-connect {
		padding: 10px 30px;
	}

	/* barter */

	.section--barter.sellers h2.bt--title br {
		display: none;
	}
}

@media (max-width: 450px) {
	/* connect */

	.section--connect {
		padding-top: 60px;
	}

	.connect__blocks {
		width: 80%;
	}

	.connect__block {
		gap: 10px;
	}

	.connect__block-img {
		height: 50px;
	}

	.connect__block-text {
		font-size: 14px;
	}

	.connect__button {
		font-size: 20px;
		padding: 20px 30px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.connect__text {
		font-size: 14px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.connect__image-img {
		max-width: 350px;
		transform: translate(-25px, 3px);
	}

	.connect__image-sign {
		top: 5%;
		right: -18%;
	}

	.connect__arrow {
		width: 35%;
	}

	/* intro */

	.section--intro.sellers .intro--img picture img {
		max-height: 400px;
	}

	.intro__arrow {
		left: -16%;
        top: 0.5%;
	}

	.section--intro.sellers p.intro--desc {
		font-size: 22px;
	}

	.section--intro.sellers .sticker {
		min-width: 300px;
	}

	.section--intro.sellers article.sticker .sticker--title {
		font-size: 24px;
	}

	.section--intro.sellers article.sticker p {
		font-size: 16px;
	}

	.section--intro.sellers .mobile--swipers img {
		width: 18% !important;
	}

	.section--intro.sellers .intro-arrow-text {
		font-size: 14px;
	}

	.section--intro.sellers .intro-arrow-item:first-child {
		top: 70px;
        left: 110px;
        height: 80px;
	}

	.section--intro.sellers .intro-arrow-item:last-child {
		width: 80px;
		left: 200px;
        top: -20px;
	}

	/* blogers */

	.blogers__title {
		font-size: 32px;
	}

	.blogers__subtitle {
		font-size: 18px;
	}

	.blogers__slide-stars {
		width: 60%;
	}

	.blogers__slide-subscribers-wrapper {
		gap: 5px;
	}

	.blogers__slide-subscribers-img {
		width: 20px;
		height: 20px;
	}

	.blogers__slide-subscribers {
		font-size: 10px;
	}

	.blogers__description {
		font-size: 12px;
	}

	.blogers__link {
		font-size: 18px;
		padding: 15px 18px;
	}

	.section--blogers .mobile--swipers img {
		width: 80%;
	}

	.blogers__slider {
		margin-left: 20px;
		margin-right: 10px;
	}

	/* roadmap */

	.section--roadmap.sellers h2.rm--title {
		font-size: 32px;
		margin-bottom: 80px;
	}

	/* barter */

	.section--barter.sellers {
		padding-bottom: 100px;
	}

	.section--barter.sellers h2.bt--title {
		font-size: 30px;
	}

	.section--barter.sellers .bt--subtitle {
		margin-left: 23px;
		margin-right: 23px;
		font-size: 20px;
	}

	/* differences */

	.differences__title {
		font-size: 30px;
	}

	.differences__step-title {
		font-size: 24px;
	}

	.differences__step-description {
		font-size: 14px;
	}

	.differences__step-description:nth-child(2) {
		margin-top: 30px;
	}

	.differences__step-arrow1 {
		top: 52%;
	}

	.differences__step-picture#differences__step-picture1 {
		margin-top: 100px;
	}

	.differences__step-2 {
		margin-top: 80px;
	}

	.differences__step-arrow2 {
		top: 33%;
		left: -2%;
	}

	.differences__step-picture#differences__step-picture2 {
		margin-top: 80px;
	}

	.differences__step-arrow3 {
		top: 56%;
	}

	.differences__step-picture#differences__step-picture3 {
		margin-top: 100px;
	}

	.differences__step-arrow4 {
		top: 65%;
		left: -2%;
	}

	.differences__step-picture#differences__step-picture4 {
		width: 100%;
	}
	
	/* results */

	.section--results {
		padding-top: 0;
	}

	.results__title {
		font-size: 28px;
	}

	.results__subtitle {
		margin-top: 15px;
		font-size: 20px;
	}

	.results__list-item::before {
		margin-right: 15px;
	}

	/* prices */

	.prices__subtitle br {
		display: none;
	}

	.prices__subtitle {
		font-size: 14px;
	}

	.prices__blocks {
		justify-content: space-between;
		gap: 0;
		row-gap: 40px;
	}

	.prices__block {
		width: auto;
	}

	.prices__text br {
		display: none;
	}

	.prices__link {
		font-size: 18px;
		padding: 15px 35px;
	}

	/* advantages */

	.advantages__blocks {
		margin-bottom: 10px;
	}

	.advantages__block-img {
		height: 40px;
	}

	.section--advantages .mobile--swipers {
		margin-top: 0;
	}

	/* opinions */

	.section--opinions.sellers h2.op--title {
		font-size: 35px;
	}

	.section--opinions.sellers p.op--subtitle {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		font-size: 20px;
	}

	.section--opinions.sellers .mobile--swipers {
		width: 80px;
	}

	.section--opinions.sellers .opinions--text {
		font-size: 20px;
	}
}

/* new blogers */

/* header */

.header.blogers a.fb__link--btn.active {
	background: rgb(118, 176, 255);
}

/* intro */

.section--intro.blogers p.intro--desc {
	font-size: 32px;
}

.section--intro.blogers a.intro--btn {
	background: rgb(118, 176, 255);
}

.section--intro.blogers .intro-arrow-text {
	font-size: 24px;
}

.section--intro.blogers .intro__arrow {
	top: 6%;
	left: -170px;
}

.section--intro.blogers .intro-arrow-item:first-child {
	top: 145px;
	left: 100px;
}

.section--intro.blogers .intro-arrow-item:last-child {
	top: -5px;
	left: 285px;
}

/* partners */

.section--partners.blogers {
	background-color: #f1fcff;
}

/* roadmap */

section.section--roadmap.blogers {
	padding-bottom: 50px;
}

.section--roadmap.blogers figure.stage b {
	color: rgb(118, 176, 255);
}

.section--roadmap.blogers figure.stage.two {
	align-items: center;
}

.section--roadmap.blogers figure.stage .stage--desc {
	min-width: 500px;
	max-width: 500px;
}

.section--roadmap.blogers figure.stage.two img.preview {
	width: 550px;
	border-radius: 90px;
	transform: rotate(-3deg);
}

.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
	width: 300px;
    left: 46%;
    bottom: 30%;
}

figure.stage.three {
	gap: 250px;
}

.section--roadmap.blogers .stage.three figure.stage strong {
	font-size: 64px;
}

.section--roadmap.blogers .stage.three p {
	font-size: 36px;
}

.section--roadmap.blogers .stage.three img.preview {
	margin-right: 0 !important;
}

.section--roadmap.blogers .stage.three .img-2 {
	position: absolute;
    left: 25%;
    top: 50%;
    width: 700px;
}

.section--roadmap.blogers .stage.three picture#first {
	position: absolute;
    left: 7%;
    top: 50%;
    width: 250px;
}

.section--roadmap.blogers .stage.three picture#second {
	position: absolute;
    left: 60%;
    top: 30%;
    width: 250px;
}

figure.stage.three img.preview {
	border-radius: 60px !important;
}

.section--roadmap.blogers figure.stage.four .stage--desc {
	min-width: 600px;
    max-width: 600px;
}

.section--roadmap.blogers figure.stage.four picture {
	left: 40% !important;
}

.section--roadmap.blogers .roadmap-btn {
	font-size: 36px;
	max-width: 900px;
	background-color: rgb(118, 176, 255);
}

/* blogers */

.section--blogers.blogers {
	margin-top: 100px;
	padding-bottom: 200px;
}

.section--blogers.blogers .blogers__title {
	font-size: 80px;
}

.section--blogers.blogers .blogers__slider {
	margin: 60px 200px 0;
	padding-bottom: 60px;
}

.section--blogers.blogers .blogers__slide-img-png {
	height: 600px;
    width: auto;
}

.section--blogers.blogers .blogers__slider-btns {
	margin-top: 100px;
}

.section--blogers.blogers .blogers__slider-btn {
	font-size: 48px;
	width: 75px;
    height: 75px;
}

/* connect */

.connect__text-blue {
	color: #9de9ff;
}

.section--connect.blogers .connect__blocks {
	margin-right: 0;
}

.section--connect.blogers .connect__title {
	font-size: 72px;
}

.section--connect.blogers .connect__image-img {
	transform: translateY(4px);
	width: 630px;
}

.section--connect.blogers .connect__image-sign {
	right: -4%;
    top: 14%;
}

.section--connect.blogers .connect__block {
	display: block;
	padding-left: 40px;
	padding-top: 30px;
	padding-bottom: 0;
}

.section--connect.blogers .connect__block-top {
	display: flex;
}

.section--connect.blogers .connect__block-img {
	margin-right: 25px;
	height: auto;
}

.section--connect.blogers .connect__block-title {
	font-size: 26px;
	font-weight: 700;
	color: white;
}

.section--connect.blogers .connect__block-text {
	font-weight: 400;
}

.section--connect.blogers .connect__button {
	background-color: rgb(118, 176, 255);
	margin-top: 120px;
	margin-bottom: 0;
}

/* barter */

.section--barter.blogers .bt--blocks article strong {
	font-size: 32px;
}

.section--barter.blogers .bt--blocks article p {
	margin-top: 20px;
}

/* differences */

.differences__subtitle {
	font-size: 54px;
	margin-top: 10px;
	text-align: center;
}

.section--differences.blogers .differences__step-1 {
	padding-bottom: 300px;
}

.section--differences.blogers .differences__step-title {
	color: rgb(118, 176, 255);
}

.section--differences.blogers .differences__step-1 .differences__step-title {
	font-size: 60px;
}

.section--differences.blogers .differences__step-1 .differences__step-description {
	width: 100%;
}

.section--differences.blogers .differences__step-picture#differences__step-picture1 {
	transform: rotate(0) translateY(-100px);
}

.section--differences.blogers .differences__step-picture#differences__step-picture1 .differences__step-img {
	width: 60%;
}

.section--differences.blogers .differences__step-img-before {
	position: absolute;
	left: 49%;
    top: 55%;
    width: 200px;
}

.section--differences.blogers .differences__step-img-after {
	position: absolute;
	left: 85%;
    top: -17%;
    width: 200px;
}

.section--differences.blogers .differences__step-arrow1 {
	left: 43%;
    top: 0;
	width: 250px;
}

.section--differences.blogers .differences__step-picture#differences__step-picture2 {
	transform: rotate(0);
	width: 45%;
	margin-left: 0;
}

.section--differences.blogers .differences__step-picture#differences__step-picture2 img {
	border-radius: 0;
	height: 60%;
}

.section--differences.blogers .differences__step-arrow2 {
	left: 50%;
    top: 83%;
	width: 250px;
}

.section--differences.blogers .differences__step-3 .differences__step-arrow3 {
	width: 15%;
	left: 24%;
    top: 8%;
}

.section--differences.blogers .differences__step-3 .differences__step-text {
	width: 40%;
}

.section--differences.blogers .differences__step-picture#differences__step-picture3 {
	width: 57%;
}

.section--differences.blogers .differences__step-picture#differences__step-picture4 {
	transform: rotate(0);
}

.section--differences.blogers .differences__step-4 .differences__step-text {
	align-self: start;
}

.section--differences.blogers .differences__step-arrow4 {
	width: 270px;
    left: 52%;
    top: 72%;
}

.differences__step-5 {
	margin-top: 300px;
	margin-bottom: 500px;
}

.differences__step-picture#differences__step-picture5 {
	width: 55%;
}

.differences__step-arrow5 {
	width: 270px;
	left: 29%;
    top: 78%;
}

/* templates */

.templates {
	background-color: #f1fcff;
	padding: 200px 0;
}

.template-author {
	color: rgb(118, 176, 255);
	font-weight: 700;
}

.templates__title {
	font-size: 64px;
	text-align: center;
}

.templates__subtitle {
	font-size: 48px;
	text-align: center;
}

.templates__slider {
	margin: 50px 250px;
}

.templates__slider .swiper-wrapper {
	align-items: stretch;
}

.templates__slide {
	height: auto;
	background-color: white;
	padding: 50px 70px;
	flex-direction: column;
}

.templates__slide-top {
	display: flex;
	gap: 60px;
	align-items: center;
}

.templates__img {
	width: 300px;
}

.templates__slide-name {
	font-size: 40px;
	font-weight: 700;
}

.templates__description {
	margin: 0;
	margin-top: 20px;
	color: rgb(114, 114, 114);
	font-size: 24px;
	font-weight: 500;
}

.template__question {
	margin-top: 50px;
	font-size: 24px;
	font-weight: 700;
}

.question2 {
	margin-top: auto;
}

.template__answer {
	margin-top: 30px;
	font-size: 20px;
}

.templates__slider-child {
	display: flex;
	max-width: 100%;
	overflow: hidden;
	overflow-x: scroll;
}

.templates-child__slide {
	min-width: 200px;
}

/* opinions */

.section--opinions.blogers .opinions--buttons > a:first-child {
	background: rgb(118, 176, 255);
}

.section--opinions.blogers .opinions--text {
	max-width: 50vw;
}

/* more */

.section--more {
	background-image: image-set(
		"/img/4KB-sozdavay-kontent.avif" type("image/avif"),
		"/img/4KB-sozdavay-kontent.webp" type("image/webp"),
		"/img/4KB-sozdavay-kontent.png" type("image/png")
	);
	background-repeat: no-repeat;
  	background-size: contain;
  	background-position: right;
	padding: 200px 0 177px;
}

.more__content {
	width: 26%;
}

.more__title {
	color: white;
	font-size: 64px;
	font-weight: 700;
}

.more__text {
	color: white;
	margin-top: 30px;
	font-size: 30px;
	font-weight: 400;
}

.more__connect {
	display: block;
	margin-top: 50px;
	background-color: rgb(118, 176, 255);
	color: white;
	text-decoration: none;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	padding: 30px 50px;
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1920px) {
	/* intro */

	.section--intro.blogers .intro-arrow-text {
		left: -20px;
        top: 5px;
		font-size: 20px;
	}

	.section--intro.blogers .intro-arrow-item:first-child {
		top: 115px;
		left: 95px;
	}

	.section--intro.blogers .intro-arrow-item:last-child {
		width: 130px;
        top: -5px;
        left: 245px;
	}

	.section--intro.blogers article.sticker p {
		font-size: 14px;
	}

	.section--intro.blogers .intro--content h1 {
		font-size: 60px;
	}

	.section--intro.blogers p.intro--desc {
		font-size: 28px;
	}

	/* barter */

	.section--barter.blogers .bt--blocks article strong {
		font-size: 26px;
	}

	.section--barter.blogers .bt--blocks article p {
		font-size: 20px;
		margin-top: 10px;
	}

	/* roadmap */

	.section--roadmap.blogers figure.stage.one p {
		font-size: 30px;
	}

	.section--roadmap.blogers figure.stage.one picture:has(img.arrow--rm) {
		width: 280px;
		left: 500px;
	}
	
	.section--roadmap.blogers figure.stage.two .stage--desc {
		margin-right: 0;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 450px;
		border-radius: 65px;
	}

	.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
		left: 39%;
	}

	.section--roadmap.blogers .stage.three picture#first {
		left: 11%;
		top: 54%;
		width: 180px;
	}

	.section--roadmap.blogers .stage.three .img-2 {
		top: 55%;
    	width: 600px;
	}

	.section--roadmap.blogers .stage.three picture#second {
		top: 38%;
    	width: 180px;
	}

	.section--roadmap.blogers figure.stage.four picture {
		width: 240px !important;
        left: 36% !important;
	}

	.section--roadmap.blogers figure.stage.four img.preview {
		width: 400px;
	}

	/* blogers */

	.section--blogers.blogers .blogers__slide {
		max-width: none;
	}

	.section--blogers.blogers .blogers__slider {
		margin-top: 100px;
	}

	.section--blogers.blogers .blogers__slide-img-png {
		height: 400px;
	}

	.section--blogers.blogers .blogers__title {
		font-size: 64px;
	}

	.section--blogers.blogers .blogers__slider-btn {
		font-size: 32px;
		width: 50px;
		height: 50px;
	}

	.section--blogers.blogers .blogers__slider-btns {
		margin-top: 70px;
	}

	.blogers__slider-btn-left {
		left: 43%;
	}

	.section--blogers.blogers .blogers__slider-btn-right {
		right: 60%;
	}

	/* connect */

	.section--connect.blogers .connect__blocks {
		margin-top: 80px;
	}

	.section--connect.blogers .connect__title {
		font-size: 60px;
	}

	.section--connect.blogers .connect__image-img {
		width: 550px;
		margin-left: 50px;
	}

	.section--connect.blogers .connect__image-sign {
		right: 4%;
    	top: 13%;
	}

	.section--connect.blogers .connect__block {
		padding-top: 25px;
		padding-left: 30px;
	}

	.section--connect.blogers .connect__block-img {
		width: 60px;
		height: 60px;
	}

	.section--connect.blogers .connect__block-title {
		font-size: 20px;
	}

	.section--connect.blogers .connect__block-text {
		font-size: 14px;
	}

	/* differences */

	.differences__subtitle {
		font-size: 44px;
	}

	.section--differences.blogers .differences__step-1 {
		padding-bottom: 0;
	}

	.section--differences.blogers .differences__step-1 .differences__step-title {
		font-size: 40px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-description {
		font-size: 24px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 {
		transform: translateY(0);
	}

	.section--differences.blogers .differences__step-1 .differences__step-text {
		align-self: start;
		margin-top: 50px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 .differences__step-img {
		margin-left: 100px;
	}

	.section--differences.blogers .differences__step-img-before {
		left: 53%;
		top: 35%;
		width: 150px;
	}

	.section--differences.blogers .differences__step-img-after {
		left: 92%;
		top: 0;
		width: 150px;
	}

	.section--differences.blogers .differences__step-arrow1 {
		left: 45%;
		top: 0;
		width: 200px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture2 img {
		height: 50%;
	}

	.section--differences.blogers .differences__step-arrow2 {
		left: 55%;
		top: 75%;
		width: 200px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture3 {
		width: 50%;
	}

	.section--differences.blogers .differences__step-3 .differences__step-arrow3 {
		width: 16%;
		left: 27%;
		top: 0;
	}

	.section--differences.blogers .differences__step-arrow4 {
		width: 200px;
		left: 52%;
		top: 78%;
	}

	.differences__step-5 {
		margin-top: 200px;
		margin-bottom: 0;
	}

	.differences__step-arrow5 {
		width: 200px;
		left: 27%;
		top: 82%;
	}

	.differences__step-picture#differences__step-picture5 {
		width: 55%;
	}

	/* more */

	.section--more {
		padding: 100px 0 153px;
	}

	.more__title {
		font-size: 48px;
	}

	.more__text {
		font-size: 24px;
	}

	.more__connect {
		padding: 20px 10px;
		border-radius: 10px;
		font-size: 24px;
	}
}

@media (max-width: 1366px) {
	.section--intro.blogers .intro-arrow-text {
		left: -30px;
        top: 15px;
		font-size: 16px;
	}

	.section--intro.blogers .intro-arrow-item:first-child {
		top: 105px;
        left: 120px;
	}

	.section--intro.blogers .intro-arrow-item:last-child {
		width: 90px;
        top: 5px;
        left: 230px;
	}

	.section--intro.blogers .intro--content h1 {
		font-size: 50px;
	}

	.section--intro.blogers p.intro--desc {
		font-size: 20px;
	}

	.section--intro.blogers article.sticker p {
		font-size: 10px;
	}

	/* barter */

	.section--barter.blogers .bt--blocks article strong {
		font-size: 22px;
	}

	.section--barter.blogers .bt--blocks article p {
		font-size: 18px;
	}

	/* roadmap */

	.section--roadmap.blogers figure.stage b {
		font-size: 30px;
	}

	.section--roadmap.blogers figure.stage strong {
		font-size: 30px;
	}

	.section--roadmap.blogers figure.stage.one p {
		font-size: 20px;
        width: 60%;
	}

	.section--roadmap.blogers figure.stage.one picture:has(img.arrow--rm) {
		width: 200px;
        left: 370px;
        top: -4%;
	}

	.section--roadmap.blogers figure.stage img.preview {
		width: 550px;
	}

	.section--roadmap.blogers figure.stage.two {
		margin-top: 50px;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 300px;
		margin-left: 40px;
		border-radius: 46px;
	}
	
	.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
		left: 35%;
		width: 200px;
	}

	.section--roadmap.blogers .stage.three picture#first {
		left: 13%;
        top: 44%;
        width: 130px;
	}

	.section--roadmap.blogers .stage.three .img-2 {
		top: 52%;
        width: 450px;
	}

	.section--roadmap.blogers .stage.three picture#second {
		top: 38%;
        width: 130px;
	}

	.section--roadmap.blogers figure.stage.three {
		gap: 110px;
	}

	.section--roadmap.blogers figure.stage.three img.preview {
		border-radius: 40px !important;
		width: 330px;
		margin-top: 50px;
	}

	.section--roadmap.blogers figure.stage.three {
		margin-top: 0;
	}

	.section--roadmap.blogers figure.stage.four img.preview {
		margin-left: 0;
	}

	figure.stage p {
		font-size: 16px;
	}

	.section--roadmap.blogers figure.stage.four .stage--desc {
		min-width: 400px;
    	max-width: 400px;
	}

	.section--roadmap.blogers figure.stage.four picture {
		width: 150px !important;
        left: 40% !important;
		bottom: 26%;
	}

	.section--roadmap.blogers .roadmap-btn {
		padding: 12px 0;
        font-size: 20px;
        max-width: 500px;
	}

	/* blogers */

	.section--blogers.blogers .blogers__title {
		font-size: 48px;
	}

	.section--blogers.blogers .blogers__slide-img-png {
		height: 300px;
	}

	.section--blogers.blogers .blogers__slider {
		margin: 60px 100px 0;
	}

	.section--blogers.blogers .blogers__slider-btn {
		font-size: 20px;
        width: 40px;
        height: 40px;
	}

	.section--blogers.blogers .blogers__slider-btn-right {
		left: 51%;
	}

	/* connect */

	.section--connect.blogers {
		padding-top: 50px;
	}

	.section--connect.blogers .connect__title {
		font-size: 40px;
	}

	.section--connect.blogers .connect__block {
		padding-top: 15px;
		padding-left: 20px;
		padding-right: 10px;
		padding-bottom: 10px;
	}

	.section--connect.blogers .connect__block-img {
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.section--connect.blogers .connect__block-title {
		font-size: 16px;
	}

	.section--connect.blogers .connect__block-text {
		margin-top: 10px;
		font-size: 12px;
	}

	.section--connect.blogers .connect__button {
		margin-top: 80px;
		border-radius: 8px;
	}

	.section--connect.blogers .connect__image-sign {
		right: 3%;
        top: 11.5%;
	}

	.section--connect.blogers .connect__arrow {
		width: 120px;
	}

	.section--connect.blogers .connect__image-img {
		margin-top: 30px;
	}

	/* differences */

	.section--differences.blogers {
		padding-bottom: 100px;
	}

	.differences__subtitle {
		font-size: 30px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-title {
		font-size: 28px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-description {
		font-size: 18px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 .differences__step-img {
		margin-left: 50px;
	}

	.section--differences.blogers .differences__step-arrow1 {
		left: 42%;
        top: 9%;
        width: 150px;
	}

	.section--differences.blogers .differences__step-img-before {
		left: 52%;
        top: 50%;
        width: 100px;
	}

	.section--differences.blogers .differences__step-img-after {
		left: 90%;
        width: 100px;
	}

	.section--differences.blogers .differences__step-description:nth-child(2) {
		margin-top: 10px;
	}

	.section--differences.blogers .differences__step-2 .differences__step-description {
		width: 120%;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture2 img {
		height: 30%;
	}

	.section--differences.blogers .differences__step-arrow2 {
		left: 50%;
        top: 63%;
        width: 150px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture3 {
		width: 55%;
	}

	.section--differences.blogers .differences__step-3 .differences__step-arrow3 {
        top: 3%;
	}

	.section--differences.blogers .differences__step-4 {
		margin-top: 100px;
	}

	.section--differences.blogers .differences__step-arrow4 {
		width: 150px;
        left: 52%;
        top: 72%;
	}

	.differences__step-5 {
		margin-top: 100px;
	}

	.differences__step-arrow5 {
		width: 150px;
	}

	/* more */

	.section--more {
		padding: 100px 0 98px;
	}

	.more__title {
		font-size: 32px;
	}

	.more__text {
		margin-top: 20px;
		font-size: 17px;
	}

	.more__connect {
		margin-top: 30px;
		font-size: 16px;
		border-radius: 8px;
		padding: 15px 5px;
	}
}

@media (max-width: 1024px) {
	/* intro */

	.section--intro.blogers .intro-arrow-text {
		left: -15px;
        top: 15px;
        font-size: 14px;
	}

	.section--intro.blogers .intro-arrow-item:first-child {
		top: 95px;
        left: 155px;
	}

	.section--intro.blogers .intro-arrow-item:last-child {
		width: 75px;
		top: 10px;
		left: 250px;
	}

	.section--intro.blogers .intro--content h1 {
		font-size: 40px;
	}

	.section--intro.blogers p.intro--desc {
		font-size: 18px;
	}

	.section--intro.blogers article.sticker p {
		font-size: 9px;
	}

	/* barter */

	.section--barter.blogers .bt--blocks article strong {
		font-size: 18px;
	}

	.section--barter.blogers .bt--blocks article p {
		font-size: 16px;
	}

	/* roadmap */

	.section--roadmap.blogers figure.stage.one picture:has(img.arrow--rm) {
		width: 150px;
        left: 270px;
        top: -4%;
	}

	.section--roadmap.blogers figure.stage img.preview {
		width: 450px;
		border-radius: 10px;
	}

	.section--roadmap.blogers figure.stage .stage--desc {
		min-width: 350px;
		max-width: 350px;
	}

	.section--roadmap.blogers figure.stage.two {
		margin-bottom: 30px;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 250px;
		border-radius: 35px;
	}

	.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
		bottom: 20%;
        left: 34%;
        width: 200px;
	}

	.section--roadmap.blogers figure.stage.one p {
		font-size: 14px;
	}

	.section--roadmap.blogers figure.stage.three p {
		font-size: 16px;
	}

	.section--roadmap.blogers .stage.three picture#first {
		left: 12%;
        top: 50%;
        width: 100px;
	}

	.section--roadmap.blogers .stage.three .img-2 {
		top: 57%;
        width: 300px;
		left: 25%;
	}

	.section--roadmap.blogers .stage.three picture#second {
		top: 44%;
        width: 100px;
		left: 53%;
	}

	.section--roadmap.blogers figure.stage.three img.preview {
		border-radius: 30px !important;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 200px;
        border-radius: 30px;
	}

	.section--roadmap.blogers figure.stage.four picture {
		bottom: 14% !important;
		left: 32% !important;
	}

	.section--roadmap.blogers .roadmap-btn {
		margin-top: 50px;
	}

	/* blogers */

	.section--blogers.blogers {
		margin-top: 50px;
		padding-bottom: 50px;
	}

	.section--blogers.blogers .blogers__title {
		font-size: 36px;
	}

	.section--blogers.blogers .blogers__slider {
		margin: 40px 60px 0;
	}

	.section--blogers.blogers .blogers__slide-img-png {
		height: 250px;
	}

	.section--blogers.blogers .blogers__slider-btns {
		margin-top: 50px;
	}

	.blogers__slider-btn-left {
		left: 42%;
	}

	/* connect */

	.section--connect.blogers .connect__image-img {
		margin-left: 0;
	}

	.section--connect.blogers .connect__title {
		font-size: 36px;
	}

	.section--connect.blogers .connect__blocks {
		margin-top: 40px;
	}

	.section--connect.blogers .connect__block:last-child {
		padding-right: 20px;
	}

	.section--connect.blogers .connect__block-img {
		width: 35px;
		height: 35px;
	}

	.section--connect.blogers .connect__block-title {
		font-size: 12px;
	}

	.section--connect.blogers .connect__block-text {
		font-size: 8px;
	}

	.section--connect.blogers .connect__button {
		margin-top: 40px;
	}

	.section--connect.blogers .connect__arrow {
		width: 85px;
	}

	.section--connect.blogers .connect__image-sign {
		top: 12%;
	}

	/* differences */

	.differences__subtitle {
		font-size: 24px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-title {
		font-size: 24px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-description {
		font-size: 16px;
	}

	.section--differences.blogers .differences__step-1 {
		margin-bottom: 30px;
	}

	.section--differences.blogers .differences__step-img-before {
		left: 53%;
        top: 55%;
		width: 80px;
	}

	.section--differences.blogers .differences__step-img-after {
		left: 91%;
        width: 80px;
		top: -3%;
	}

	.section--differences.blogers .differences__step-arrow1 {
		width: 140px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture2 img {
		height: 25%;
	}

	.section--differences.blogers .differences__step-arrow2 {
		top: 61%;
        width: 140px;
	}

	.section--differences.blogers .differences__step-3 {
		margin-top: -200px;
	}

	.differences__step-arrow5 {
		width: 140px;
		left: 25%;
	}

	/* opinions */

	.section--opinions.blogers .opinions--text {
		max-width: 70vw;
	}

	/* more */

	.section--more {
		padding: 60px 0 97px;
	}

	.more__title {
		font-size: 24px;
	}

	.more__text {
		font-size: 13px;
		margin-top: 10px;
	}

	.more__connect {
		margin-top: 20px;
		font-size: 14px;
		padding: 10px 5px;
		border-radius: 6px;
	}
}

@media (max-width: 768px) {
	/* intro */

	.section--intro.blogers .intro--content h1 {
		font-size: 56px;
		margin-top: 40px;
		margin-bottom: 50px;
	}

	.section--intro.blogers p.intro--desc {
		font-size: 36px;
		margin-bottom: 50px;
	}

	.section--intro.blogers article.sticker .sticker--title {
		font-size: 24px;
	}

	.section--intro.blogers article.sticker p {
		font-size: 20px;
	}

	.section--intro.blogers .intro__arrow {
		top: 2.5%;
        left: 5%;
	}

	.section--intro.blogers .intro-arrow-text {
		left: -65px;
        top: -10px;
        font-size: 18px;
	}

	.section--intro.blogers .intro-arrow-item:first-child {
		height: 100px;
		top: 85px;
        left: 75px;
	}

	.section--intro.blogers .intro-arrow-item:last-child {
		width: 120px;
        top: -30px;
        left: 205px;
	}

	/* partners */

	.section--partners.blogers .partners--content h2 {
		max-width: 350px;
	}

	/* roadmap */

	.section--roadmap.blogers figure.stage img.preview {
		width: 600px;
        margin-left: 30px;
		margin-top: 120px;
	}

	.section--roadmap.blogers figure.stage strong {
		font-size: 40px;
		width: 200px;
	}

	.section--roadmap.blogers figure.stage.one p {
		font-size: 25px;
		width: 100%;
	}

	.section--roadmap.blogers figure.stage.one picture:has(img.arrow--rm) {
		width: 180px;
        left: 370px;
		top: 35%;
	}

	.section--roadmap.blogers figure.stage.two strong {
		font-size: 32px;
		width: auto;
	}

	.section--roadmap.blogers figure.stage.two {
		align-items: end;
	}

	.section--roadmap.blogers figure.stage.two p {
		font-size: 22px;
	}

	.section--roadmap.blogers figure.stage.two picture {
		align-self: flex-start;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 300px;
        border-radius: 40px;
	}

	.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
		left: 15%;
		top: 22%;
	}

	.section--roadmap.blogers figure.stage.three strong {
		width: auto;
	}

	figure.stage.two + figure.stage.three img.preview {
		width: 370px !important;
		border-radius: 50px !important;
	}

	.section--roadmap.blogers .stage.three picture#first {
		left: 17%;
        top: 40%;
        width: 150px;
        transform: rotate(35deg);
	}

	.section--roadmap.blogers .stage.three .img-2 {
		transform: rotate(-4deg);
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
		top: 27%;
		width: 400px;
        left: 20%;
		border-radius: 15px;
	}

	.section--roadmap.blogers .stage.three picture#second {
		top: 15%;
        width: 150px;
        left: 53%;
        transform: rotate(90deg);
	}

	.section--roadmap.blogers figure.stage.four picture:has(img.arrow--rm) {
		left: 5% !important;
		width: 200px !important;
		top: 28%;
	}

	.section--roadmap.blogers .roadmap-btn {
		padding: 18px 0;
        font-size: 24px;
        max-width: 550px;
	}

	/* blogers */

	.section--blogers.blogers .blogers__slide-img-png {
		height: 350px;
	}

	.section--blogers.blogers .mobile--swipers img {
		margin-top: 30px;
        width: 18%;
	}

	/* connect */

	.section--connect.blogers br {
		display: block;
	}

	.section--connect.blogers .connect__image-sign {
		display: none;
	}

	.section--connect.blogers .connect__image-img {
		margin-top: 70px;
	}

	.section--connect.blogers .connect__title {
		font-size: 48px;
	}

	.section--connect.blogers .connect__blocks {
		width: 60%;
		margin-left: auto;
		margin-right: auto;
	}

	.section--connect.blogers .connect__block {
		width: 100%;
		padding: 20px 20px 20px 20px;
	}

	.section--connect.blogers .connect__block:last-child {
		padding-right: 10px;
		width: 100%;
	}

	.section--connect.blogers .connect__block-top {
		width: 70%;
		margin: 0 auto;
	}

	.section--connect.blogers .connect__block-title {
		text-align-last: left;
		font-size: 18px;
	}

	.section--connect.blogers .connect__block-text {
		font-size: 12px;
		width: 90%;
		flex: 1;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.section--connect.blogers .connect__block-title br {
		display: block !important;
	}

	.section--connect.blogers .connect__block-img {
		width: 40px;
		height: auto;
	}

	/* barter */

	.section--barter.blogers .bt--blocks article strong {
        font-size: 28px;
	}

	.section--barter.blogers .bt--blocks article p {
		font-size: 22px;
	}

	/* opinions */

	.section--opinions.blogers h2.op--title {
		font-size: 48px;
	}

	.section--opinions.blogers p.op--subtitle {
		font-size: 27px;
	}

	.section--opinions.blogers .opinions--buttons > a:first-child {
		font-size: 22px;
	}

	/* differences */

	.differences__subtitle {
		font-size: 32px;
        width: 80%;
        margin: 20px auto;
	}

	.section--differences.blogers .differences__step-arrow1 {
		display: none;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 {
		margin-top: 20px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 .differences__step-img {
		margin-left: 120px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-text {
		width: 100%;
	}

	.section--differences.blogers .differences__step-1 .differences__step-title {
		width: 90%;
		font-size: 36px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-description {
		width: 70%;
		font-size: 20px;
	}

	.section--differences.blogers .differences__step-description:nth-child(2) {
		margin-top: 50px;
	}

	.section--differences.blogers .differences__step-img-before {
		left: 3%;
        top: 53%;
        width: 120px;
	}

	.section--differences.blogers .differences__step-img-after {
		left: 80%;
        width: 120px;
        top: 40%;
	}

	.section--differences.blogers .differences__step-2 {
		margin-bottom: 350px;
	}

	.section--differences.blogers .differences__step-arrow2 {
		display: none;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture2 {
		width: 100%;
		margin-top: 50px;
	}

	.section--differences.blogers .differences__step-2 .differences__step-description {
		width: 100%;
	}

	.section--differences.blogers .differences__step-3 .differences__step-arrow3 {
		display: none;
	}

	.section--differences.blogers .differences__step-3 .differences__step-text {
		width: 80%;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture3 {
		width: 100%;
		margin-top: 20px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture4 {
		margin-top: 20px;
        width: 100%;
	}

	.differences__step-arrow5 {
		display: none;
	}

	.differences__step-5 .differences__step-description {
		font-size: 22px;
	}

	.differences__step-picture#differences__step-picture5 {
		width: 100%;
	}

	/* more */

	.section--more {
		background-image: image-set(
			"/img/MOBB-sozdavay-kontent.avif" type("image/avif"),
			"/img/MOBB-sozdavay-kontent.webp" type("image/webp"),
			"/img/MOBB-sozdavay-kontent.png" type("image/png")
		);
		background-size: 100% auto;
		padding-top: 50px;
        padding-bottom: 350px;
	}

	.more__content {
		text-align: center;
		margin: 0 auto;
		width: 70%;
	}

	.more__title {
		font-size: 36px;
	}

	.more__text {
		font-size: 23px;
		margin: 20px auto 10px;
	}

	.more__text:nth-child(2) {
		margin-top: 20px;
	}

	.more__connect {
		margin: 0 auto;
		margin-top: 40px;
		font-size: 24px;
		width: 90%;
	}
}

@media (max-width: 450px) {
	.section--intro.blogers .intro--content h1 {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.section--intro.blogers p.intro--desc {
		font-size: 25px;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		margin-bottom: 30px;
	}

	.section--intro.blogers article.sticker .sticker--title {
		font-size: 26px;
	}

	.section--intro.blogers article.sticker p {
		font-size: 18px;
	}

	.section--intro.blogers .intro__arrow {
		left: -12%;
        top: -0%;
	}

	.section--intro.blogers .intro-arrow-text {
		font-size: 14px;
	}

	.section--intro.blogers .intro-arrow-item:first-child {
		height: 80px;
        top: 65px;
        left: 95px;
	}

	.section--intro.blogers .intro-arrow-item:last-child {
		width: 70px;
        top: -20px;
        left: 190px;
	}

	/* barter */

	.section--barter.blogers {
		padding-bottom: 50px;
	}

	.section--barter.blogers h2.bt--title {
		font-size: 28px;
	}

	.section--barter.blogers .bt--blocks article strong {
		font-size: 22px;
	}

	.section--barter.blogers .bt--blocks article p {
		font-size: 18px;
	}

	/* roadmap */

	.section--roadmap.blogers figure.stage strong {
		font-size: 30px;
        width: 200px;
	}

	.section--roadmap.blogers figure.stage.one p {
		font-size: 16px;
        width: 70%;
	}

	.section--roadmap.blogers figure.stage b {
		font-size: 24px;
	}

	.section--roadmap.blogers figure.stage img.preview {
		width: 350px;
        margin-left: 15px;
        margin-top: 60px;
	}

	.section--roadmap.blogers figure.stage.one picture:has(img.arrow--rm) {
		width: 110px;
        left: 240px;
        top: 40.5%;
	}

	.section--roadmap.blogers figure.stage.two .stage--desc {
		min-width: 250px;
        max-width: 250px;
	}

	.section--roadmap.blogers figure.stage.two strong {
		font-size: 23px;
	}

	.section--roadmap.blogers figure.stage.two p {
		font-size: 14px;
	}

	.section--roadmap.blogers figure.stage.two picture:has(img.arrow--rm) {
		left: 8%;
		top: 20.5%;
		width: 130px;
	}

	.section--roadmap.blogers figure.stage.two img.preview {
		width: 250px;
	}

	.section--roadmap.blogers figure.stage.three p {
        width: 80%;
	}

	.section--roadmap.blogers .stage.three picture#first {
		left: 6%;
        top: 45%;
        width: 130px;
	}

	.section--roadmap.blogers .stage.three .img-2 {
		top: 30%;
        width: 320px;
        left: 10%;
	}

	.section--roadmap.blogers .stage.three picture#second {
		top: 17%;
        width: 130px;
        left: 55%;
        transform: rotate(90deg);
	}

	figure.stage.two + figure.stage.three img.preview {
		width: 250px !important;
        border-radius: 32px !important;
		margin-top: 0 !important;
	}

	.section--roadmap.blogers figure.stage.three {
		gap: 110px;
	}
	
	.section--roadmap.blogers figure.stage.four picture:has(img.arrow--rm) {
		top: 24%;
		left: 0 !important;
        width: 130px !important;
	}

	.section--roadmap.blogers figure.stage.four strong {
		font-size: 18px;
	}

	.section--roadmap.blogers .roadmap-btn {
		font-size: 20px;
	}

	/* blogers */

	.section--blogers.blogers .blogers__slide-img-png {
		height: 200px;
	}

	.section--blogers.blogers .blogers__title {
		font-size: 30px;
	}

	.section--blogers.blogers .blogers__slider {
		margin: 20px 20px 0;
	}

	.section--blogers.blogers .mobile--swipers img {
		width: 90%;
	}

	/* connect */

	.section--connect.blogers .connect__title {
		font-size: 32px;
	}

	.section--connect.blogers .connect__blocks {
		width: 90%;
	}

	.section--connect.blogers .connect__block-top {
		width: 80%;
	}

	.section--connect.blogers .connect__block-img {
		width: 38px;
	}

	.section--connect.blogers .connect__block-title {
		font-size: 16px;
	}

	.section--connect.blogers .connect__block-text {
		width: 100%;
	}

	.section--connect.blogers .connect__button {
		margin-top: 0;
	}

	/* opinions */

	.section--opinions.blogers h2.op--title {
		font-size: 40px;
	}

	.section--opinions.blogers p.op--subtitle {
		font-size: 20px;
	}

	.section--opinions.blogers .opinions--buttons > a:first-child {
		margin-top: 0;
	}

	/* differences */

	.section--differences.blogers {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.differences__subtitle {
		font-size: 22px;
		margin-top: 10px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-title {
		font-size: 25px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-text {
		margin-top: 20px;
		margin-left: 10px;
	}

	.section--differences.blogers .differences__step-1 .differences__step-description {
		font-size: 14px;
	}

	.section--differences.blogers .differences__step-description:nth-child(2) {
		margin-top: 20px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture1 .differences__step-img {
		margin-left: 60px;
	}

	.section--differences.blogers .differences__step-img-before {
		top: 56%;
        width: 60px;
		left: 4%;
	}

	.section--differences.blogers .differences__step-img-after {
		left: 78%;
        width: 60px;
        top: 45%;
	}

	.section--differences.blogers .differences__step-2 {
		margin-bottom: 300px;
	}

	.section--differences.blogers .differences__step-picture#differences__step-picture2 {
		margin-top: 10px;
	}

	.section--differences.blogers .differences__step-2 .differences__step-title {
		font-size: 26px;
	}

	.section--differences.blogers .differences__step-3 .differences__step-text {
		margin-left: 20px;
	}

	.differences__step-5 {
		margin-top: 70px;
	}

	.section--differences.blogers .differences__step-5 .differences__step-title {
		font-size: 22px;
	}

	.differences__step-5 .differences__step-description {
		font-size: 14px;
	}

	.section--differences.blogers .differences__step-5 .differences__step-text {
		margin-left: 20px;
	}

	/* more */

	.section--more {
		background-position: center;
		background-size: auto 100%;
		padding-top: 25px;
	}

	.more__content {
		width: 100%;
	}

	.more__title {
		font-size: 28px;
	}

	.more__text {
		font-size: 20px;
        margin: 20px auto 10px;
        width: 85%;
	}

	.more__connect {
		font-size: 22px;
		padding: 15px 5px;
	}
}