/* BEGIN general */
*, :after, :before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

body {
    position: relative;
    font-family: Montserrat, sans-serif;
    color: #000;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none
}

h1, h2, h3, h4, p {
    margin: 0;
}

h1 {
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
}

@media (min-width: 992px) {
  h1 {
        font-size: 48px;
        line-height: 117%;
    }
}

h2 {
    font-weight: 800;
    font-size: 28px;
    line-height: 129%;
    color: #000;
}

@media (min-width: 992px) {
  h2 {
        font-size: 40px;
        line-height: 120%;
    }
}

h2 span {
    color: #F20C00;
}

#wrapper {
    min-width: 320px;
    overflow: hidden;
}

.main {
    margin: 0 auto 80px;
}

.container {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    min-width: 280px;
    max-width: 1360px;
    padding: 0 20px;
    margin: 0 auto;
}
/* END general */

/* BEGIN elements */
.button {
    position: relative;
    top: 0;
    display: inline-block;
    background: none;
    border-radius: 8px;
    padding: 16px 48px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

@media (min-width: 576px) {
    .button:hover {
        top: -3px;
        -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0);
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0);
    }
}

.button-white {
    background: #fff;
    color: #000;
}

.button-black {
    background: #000;
    color: #fff;
}

.mark {
    position: relative;
    background: transparent;
    padding: 0 5px;
    white-space: nowrap;
}
.mark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: rotate(-1deg);
        -ms-transform: rotate(-1deg);
            transform: rotate(-1deg);
}
.mark span {
    position: relative;
    color: #F20C00;
}
/* END elements */

/* BEGIN header */
.header {
    position: relative;
    z-index: 99;
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 16px;
    height: 70px;
}

@media (min-width: 992px) {
    .header__wrapper {
        height: inherit;
        padding: 64px 80px 28px;
    }
}

.header__nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header .desktop-links a {
    position: relative;
    top: 0;
    padding: 8px 32px;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    border-radius: 8px;
    display: inline-block;
    -webkit-transition: top .3s ease-in-out;
    -o-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
}

@media (min-width: 576px) {
    .header .desktop-links a:hover {
        top: -3px;
    }
}

.header img {
    width: 190px;
}

@media (min-width: 992px) {
    .header img {
        width: auto;
    }
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin: 0 auto 0 20px;
}

@media (min-width: 576px) {
    .header__logo {
        margin: 0 auto 0 0;
    }
}

.signin {
    color: black;
}

.signup {
    background: #F20C00;
    color: white;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .signin {
        color: black;
    }
}

@media (max-width: 576px) {
    .header__nav {
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .header img {
        margin-top: 28px;
    }

    .header .desktop-links a {
        display: inline-block;
    }
}

@media (min-width: 576px) {
    .hamburger-lines, .menu-items, .checkbox {
        display: none;
    }
}

@media (max-width: 576px) {

    .checkbox {
        position: absolute;
        display: block;
        height: 37px;
        width: 37px;
        top: 15px;
        right: 8px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .checkbox:hover + .hamburger-lines .line {
        background: #F20C00;
    }

    .hamburger-lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 24px;
        width: 24px;
        position: absolute;
        top: 29px;
        right: 14px;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .hamburger-lines .line {
        display: block;
        height: 2px;
        width: 24px;
        background: #111111;
        -webkit-transition: background 1s ease-in-out;
        -o-transition: background 1s ease-in-out;
        transition: background 1s ease-in-out;
    }

    .hamburger-lines .line1 {
        -webkit-transform-origin: 10% 0%;
            -ms-transform-origin: 10% 0%;
                transform-origin: 10% 0%;
        -webkit-transition: -webkit-transform 0.4s ease-in-out;
        transition: -webkit-transform 0.4s ease-in-out;
        -o-transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    }

    .hamburger-lines .line2 {
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        transition: -webkit-transform 0.2s ease-in-out;
        -o-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    }

    .hamburger-lines .line3 {
        width: 20px;
        margin: 0 0 0 auto;
        -webkit-transform-origin: 5% 100%;
            -ms-transform-origin: 5% 100%;
                transform-origin: 5% 100%;
        -webkit-transition: -webkit-transform 0.4s ease-in-out;
        transition: -webkit-transform 0.4s ease-in-out;
        -o-transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    }

    .header__nav {
        position: absolute;
        top: 0;
        width: 100%;
    }

    .header__nav .menu-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 16px;
        width: 100%;
        -webkit-transform: translateY(-200%);
            -ms-transform: translateY(-200%);
                transform: translateY(-200%);
        -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        text-align: center;
        padding: 38px 20px 20px;
        border-radius: 0 0 24px 24px;
        opacity: 0;
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.8);
    }

    .header__nav .menu-items .signin {
        border: 1px solid #000;
    }

    .header__nav .menu-items a {
        height: 60px;
        border-radius: 8px;
        padding: 18px 36px;
        font-weight: 700;
        font-size: 18px;
        line-height: 133%;
        -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    }

    .header__nav input[type="checkbox"]:checked ~ .menu-items {
        -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
                transform: translateY(0px);
        opacity: 1;
    }

    .header__nav input[type="checkbox"]:checked~.hamburger-lines .line1 {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    .header__nav input[type="checkbox"]:checked~.hamburger-lines .line2 {
        -webkit-transform: scaleY(0);
            -ms-transform: scaleY(0);
                transform: scaleY(0);
    }

    .header__nav input[type="checkbox"]:checked~.hamburger-lines .line3 {
        width: 24px;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }

    .desktop-links {
        display: none;
    }
}
/* END header */

/* BEGIN start */
.start {
    position: relative;
    padding: 64px 0 50px;
}

@media (min-width: 992px) {
    .start {
        padding: 0;
        margin: 0 auto 144px;
    }
}

.start__wrapper {
    position: relative;
    margin: 0 -20px;
}

@media (min-width: 992px) {
    .start__wrapper {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .start__wrapper:before {
        content: "";
        position: absolute;
        top: -104px;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 96px 0 74px;
        -webkit-box-sizing: content-box;
                box-sizing: content-box;
        background: #F4F7F9;
        border-radius: 70px;
    }
}

.start__inside {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media (max-width: 768px) {
    .start__inside {
        border-radius: 0;
    }
}

@media (min-width: 992px) {
    .start__inside {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        border-radius: 70px 70px 70px 0px;
    }
}

@media (min-width: 992px) {
    .start__inside:before {
        content: url("../img/patterns/start_1.svg");
        position: absolute;
        right: calc(100% - 1px);
        bottom: -5px;
    }

    .start__inside:after {
        content: url("../img/patterns/start_1.svg");
        position: absolute;
        top: 0;
        left: calc(100% - 1px);
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
    }
}

.start__inside-l {
    background: #F20C00;
    padding: 32px 20px;
}

@media (min-width: 992px) {
    .start__inside-l {
        width: 60%;
        max-width: 704px;
        min-height: 576px;
        position: relative;
        background: #F20C00 url('../img/patterns/start_2.svg') no-repeat right bottom;
        padding: 72px 64px 68px 80px;
        border-radius: 70px 0px 0px 0px;
    }
}

@media (min-width: 1200px) {
    .start__inside-l {
        width: 55%;
    }
}

.start__inside-l:before {
    content: url("../img/patterns/start_1m.svg");
    position: absolute;
    top: inherit;
    right: 0;
    bottom: calc(100% - 37px);
}

@media (min-width: 992px) {
    .start__inside-l:after {
        content: url("../img/patterns/start_3.svg");
        position: absolute;
        top: 100%;
        right: 0;
        bottom: inherit;
    }

    .start__inside-l:before {
        content: url("../img/patterns/start_4.svg");
        position: absolute;
        z-index: 1;
        top: 0;
        left: 100%;
        bottom: inherit;
    }
}

.start__inside-r {
    position: relative;
    background: #F0F0F0;
    border-radius: 0 0 32px 32px;
}

@media (min-width: 992px) {
    .start__inside-r {
        width: 40%;
        max-width: 704px;
        background: #F4F7F9;
        border-radius: 0px 70px 70px 0px;
    }
}

@media (min-width: 1200px) {
    .start__inside-r {
        width: 50%;
    }
}

.start__content-r:before {
    content: url("../img/patterns/start_4m.svg");
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
}

@media (min-width: 992px) {
    .start__content-r:before {
        content: url("../img/patterns/start_5.svg");
        position: absolute;
        top: inherit;
        right: -63px;
        bottom: -132px;
        left: inherit;
        z-index: 2;
    }
}

.start__content-r:after {
    content: url("../img/patterns/start_5m.svg");
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -4px;
}

@media (min-width: 992px) {
    .start__content-r:after {
        content: none;
    }
}

.start__img-1 {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 368px;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .start__img-1 {
        position: absolute;
        right: 0;
        bottom: -64px;
        width: auto;
        max-width: 130%;
        height: auto;
    }
}

.start__img-2 {
    position: absolute;
    top: inherit;
    bottom: -156px;
    left: 50%;
    z-index: 2;
    min-width: 574px;
    max-width: 574px;
    height: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

@media (min-width: 992px) {
    .start__img-2 {
        position: absolute;
        top: 30px;
        right: -240px;
        bottom: inherit;
        left: inherit;
        z-index: 2;
        width: inherit;
        max-width: 200%;
        margin: 0;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}

@media (min-width: 1200px) {
    .start__img-2 {
        top: -54px;
        right: -120px;
        max-width: 175%;
    }
}

.start__content-l {
    position: relative;
    z-index: 3;
}
@media (min-width: 992px) {
    .start__content-l {
        max-width: 550px;
    }
}

.start__content-r {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 0 0;
    border-radius: 0 0 32px;
    overflow: hidden;
}
@media (min-width: 992px) {
    .start__content-r {
        padding: 0;
        overflow: visible;
        border-radius: 0;
    }
}

.start__winner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
}

.start__winner img {
    height: 40px;
}

.start__winner .sf-root img {
    min-width: inherit!important;
    max-width: inherit!important;
    width: inherit!important;
}


.start__title {
    margin: 32px 0 0;
    color: #fff;
}

@media (min-width: 992px) {
    .start__title {
        margin: 48px 0 0;
    }
}

.start__text {
    margin: 16px 0 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
}

.start .button {
    width: 100%;
    margin: 48px 0 0;
}

@media (min-width: 992px) {
    .start .button {
        width: 282px;
    }
}

/* BEGIN features */
.features {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .features {
        padding: 64px 0;
    }
}

.features .container {
    max-width: 1200px;
}

.features__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    border-radius: 24px;
    color: #000;
}

@media (min-width: 992px) {
    .features__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 100%;
    height: 132px;
    padding: 32px;
    background: #f8f8f8;
    border-radius: 24px;
}

@media (min-width: 992px) {
    .features__item {
        height: 152px;
    }
}

.features__head {
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #f20c00;
}

@media (min-width: 992px) {
    .features__head {
        font-size: 56px;
        line-height: 114%;
    }
}

.features__text {
    font-size: 16px;
    line-height: 125%;
    text-align: center;
}

@media (min-width: 992px) {
    .features__text {
        font-size: 20px;
        line-height: 120%;
    }
}

.features__note {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    min-height: 160px;
    margin: 24px 0 0;
    padding: 68px 20px;
    background: #F20C00;
    border-radius: 24px;
    font-weight: 900;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    color: #fff;
}

@media (min-width: 992px) {
    .features__note {
        padding: 20px;
        font-size: 32px;
        line-height: 125%;
    }
}

.features__note-elm {
    position: absolute;
    height: auto;
}

.features__note-elm[data-elm="1"] {
    max-width: 224px;
    bottom: -102px;
    left: -52px;
}

@media (min-width: 992px) {
    .features__note-elm[data-elm="1"] {
        bottom: -76px;
        left: -50px;
    }
}

.features__note-elm[data-elm="2"] {
    max-width: 72px;
    top: inherit;
    right: 40px;
    bottom: 14px;
    left: inherit;
}

@media (min-width: 992px) {
    .features__note-elm[data-elm="2"] {
        top: -30px;
        right: inherit;
        bottom: inherit;
        left: 140px;
    }
}

.features__note-elm[data-elm="3"] {
    max-width: 265px;
    top: -120px;
    right: -60px;
}

@media (min-width: 992px) {
    .features__note-elm[data-elm="3"] {
        top: -104px;
        right: 0;
    }
}

.features__note-text {
    position: relative;
    max-width: 700px;
    margin: auto;
}

/* END features */

/* BEGIN visibility */
.visibility {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .visibility {
        padding: 64px 0;
    }
}

.visibility .container {
    max-width: 1200px;
}

.visibility__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px 48px;
}

@media (min-width: 992px) {
    .visibility__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

@media (min-width: 992px) {
    .visibility__info {
        width: 100%;
        max-width: 624px;
    }
}

.visibility__susbtitle {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 156%;
}

.visibility__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.visibility__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    font-size: 18px;
    line-height: 133%;
}

.visibility__list li svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.estimated {
    padding: 28px 20px 20px;
    margin: 0 -20px;
    border-radius: 24px;
    background: #f8f8f8;
}

@media (min-width: 992px) {
    .estimated {
        width: 100%;
        max-width: 528px;
        padding: 36px 32px 32px;
        margin: 0;
    }
}

.estimated__head {
    font-weight: 800;
    font-size: 24px;
    line-height: 117%;
}

@media (min-width: 992px) {
    .estimated__head {
        font-weight: 800;
        font-size: 24px;
        line-height: 133%;
    }
}

@media (min-width: 992px) {
    .estimated__head br {
        display: none;
    }
}

.estimated__head span {
    color: #f20c00;
}

.estimated__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin: 20px 0 0;
    border-radius: 12px;
    background: #fff;
}

@media (min-width: 992px) {
    .estimated__info {
        gap: 20px;
        padding: 32px;
    }
}

.estimated__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 16px;
    font-size: 16px;
    line-height: 150%;
    border-bottom: 1px solid #d1d7db;
}

@media (min-width: 992px) {
    .estimated__item {
        gap: 24px;
        padding: 0 0 20px;
        font-size: 18px;
        line-height: 133%;
    }
}

.estimated__item:last-child {
    padding: 0;
    border: none;
}

.estimated__item svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.estimated__item svg:nth-child(2) {
    display: none;
}

.estimated__item svg:nth-child(3) {
    display: inline-block;
}

@media (min-width: 992px) {
    .estimated__item svg:nth-child(2) {
        display: inline-block;
    }
    .estimated__item svg:nth-child(3) {
        display: none;
    }
}

.estimated__sum {
    min-width: 80px;
}

.estimated__impressions {
    margin: 0 0 0 12px;
}

@media (min-width: 992px) {
    .estimated__impressions {
        margin: 0 0 0 8px;
    }
}
/* END visibility */

/* BEGIN bot-free */
.bot-free {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .bot-free {
        padding: 64px 0;
    }
}

.bot-free .container {
    max-width: 1200px;
}

.bot-free__wrapper {
    position: relative;
    padding: 88px 20px 44px;
    margin: 0 -20px;
    border-radius: 24px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

@media (min-width: 992px) {
    .bot-free__wrapper {
        padding: 92px;
        margin: 0;
    }
}

.bot-free__wrapper:before {
    content: url("../img/patterns/bot-free_1m.svg");
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
}

@media (min-width: 992px) {
    .bot-free__wrapper:before {
        content: url("../img/patterns/bot-free_1.svg");
        position: absolute;
        top: 0;
        right: inherit;
        left: 0;
    }
}

@media (min-width: 992px) {
    .bot-free__wrapper:after {
        content: url("../img/patterns/bot-free_2.svg");
        position: absolute;
        right: 0;
        bottom: -4px;
    }
}

.bot-free__inside {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
}

@media (min-width: 992px) {
    .bot-free__inside {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        max-width: 926px;
        margin: auto;
    }
}

.bot-free__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
}

@media (min-width: 992px) {
    .bot-free__main {
        gap: 24px;
    }
}

.bot-free__main svg {
    max-width: 88px;
    max-height: 88px;
}

@media (min-width: 992px) {
    .bot-free__main svg {
        max-width: inherit;
        max-height: inherit;
    }
}

.bot-free__title {
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: #fff;
}

@media (min-width: 992px) {
    .bot-free__title {
        font-size: 48px;
        line-height: 108%;
    }
}

@media (max-width: 992px) {
    .bot-free__title br {
        display: none;
    }
}

.bot-free__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 992px) {
    .bot-free__info {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        max-width: 552px;
    }
}

.bot-free__text {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

@media (min-width: 992px) {
    .bot-free__text {
        font-size: 18px;
        line-height: 156%;
        text-align: left;
    }
}

.bot-free__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .bot-free__list {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin: 32px 0 0;
    }
}

.bot-free__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}

@media (min-width: 992px) {
    .bot-free__list li {
        gap: 8px;
        font-size: 18px;
        line-height: 156%;
    }
}

.bot-free__list li svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 20px;
    max-height: 20px;
}

@media (min-width: 992px) {
    .bot-free__list li svg {
        max-width: inherit;
        max-height: inherit;
    }
}
/* END bot-free */

/* BEGIN aab */
.aab {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .aab {
        padding: 64px 0;
    }
}

.aab .container {
    max-width: 1200px;
}

.aab__subtitle {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 133%;
}

@media (min-width: 992px) {
    .aab__subtitle {
        font-size: 18px;
        line-height: 156%;
    }
}

.aab__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.aab__items-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 0 0 24px;
    margin: 24px 0 0;
}

@media (min-width: 992px) {
    .aab__items-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0 0 64px;
        margin: 52px 0 0;
        gap: 48px;
    }
}

@media (min-width: 576px) {
    .aab__wrapper:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: -40px;
        width: calc(100% + 80px);
        height: 1px;
        background: #d1d7db;
        margin: auto;
    }
}

.aab__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 24px;
}

@media (min-width: 992px) {
    .aab__item {
        position: relative;
        z-index: 1;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 4px;
        width: calc(50% - 24px);
        max-width: 35%;
        min-height: 112px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
}

@media (min-width: 1200px) {
    .aab__item {
        max-width: 400px;
    }
}

@media (min-width: 1200px) {
    .aab__item:nth-child(1) {
        max-width: 472px;
    }
    .aab__item:nth-child(2) {
        margin: 0 56px 0 0;
    }
    .aab__item:nth-child(3) {
        margin: 0 0 0 56px;
    }
}

.aab__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
}

@media (min-width: 992px) {
    .aab__info {
        width: 100%;
    }
}

.aab__icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 9px;
    background: #fff;
}

@media (min-width: 992px) {
    .aab__icon-wrap {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 112px;
        height: 112px;
        margin: auto;
        border-radius: 16px;
        background: #f8f8f8;
    }
}

.aab__icon-wrap svg {
    max-width: 40px;
    max-height: 40px;
}

@media (min-width: 992px) {
    .aab__icon-wrap svg {
        max-width: inherit;
        max-height: inherit;
    }
}

.aab__img {
    height: auto;
    max-width: calc(100% + 40px);
    display: block;
    margin: 0 -20px;
}

@media (min-width: 992px) {
    .aab__img {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

.aab__head {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
}

@media (min-width: 992px) {
    .aab__head {
        padding: 0 0 0 128px;
        font-size: 18px;
        line-height: 133%;
    }
}

@media (min-width: 992px) {
    .aab__head br {
        display: none;
    }
}

.aab__text {
    font-size: 16px;
    line-height: 150%;
}

@media (min-width: 992px) {
    .aab__text {
        padding: 0 0 0 128px;
    }
}

.aab .button {
    position: relative;
    display: block;
    width: 320px;
    height: 72px;
    padding: 24px 48px;
    margin: -36px auto 0;
    border-radius: 100px;
}

.aab .button:after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -36px;
    width: 80px;
    height: 72px;
    background: url("../img/elements/arrow.png") no-repeat center;
    background-size: contain;
}
/* END aab */

/* BEGIN global */
.global {
    position: relative;
    padding: 48px 0 32px;
    margin: 50px 0;
    background: #f20c00;
    border-radius: 24px;
}

@media (min-width: 992px) {
    .global {
        padding: 80px 0 64px;
        margin: 30px 0;
        border-radius: 0;
    }
}

@media (min-width: 1200px) {
    .global:before {
        content: url("../img/patterns/global_1.svg");
        position: absolute;
        top: 0;
        right: 0;
    }
}

.global .container {
    max-width: 1200px;
}

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

@media (min-width: 992px) {
    .global__title {
        text-align: left;
    }
}

.global__subtitle {
    margin: 16px 0 0;
    font-weight: 600;
    
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
}

@media (min-width: 992px) {
    .global__subtitle {
        margin: 8px 0 0;
        font-size: 20px;
        line-height: 140%;
        text-align: left;
    }
}

.global__img {
    position: relative;
    left: -52px;
    display: block;
    max-width: 756px;
    height: auto;
    margin: 32px auto 0;
}

@media (min-width: 576px) {
    .global__img {
        left: inherit;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .global__img {
        max-width: inherit;
        margin: 56px 0 0; 
    }
}
/* END global */

/* BEGIN clients */
.clients {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .clients {
        padding: 64px 0;
    }
}

.clients .container {
    max-width: 1200px;
}

.clients mark:before {
    background: #F20C00;
}

.clients mark span {
    color: #fff;
}

.clients__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

@media (min-width: 992px) {
    .clients__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 24px;
    }
}

.clients__title {
    margin: 0 0 16px;
}

@media (min-width: 992px) {
    .clients__title {
        max-width: calc(100% / 3 - 16px);
        margin: auto 0;
    }
}

.clients__item {
    padding: 24px;
    border-radius: 24px;
    background: #F4F7F9;
}

@media (min-width: 992px) {
    .clients__item {
        position: relative;
        z-index: 1;
        padding: 32px;
    }
}

@media (min-width: 992px) {
    .clients__item:nth-child(2) {
        position: relative;
        z-index: 0;
        width: calc(100% / 1.5 - 8px);
        margin: 0 0 0 auto;
    }

    .clients__item:nth-child(2):before {
        content: "";
        position: absolute;
        top: -82px;
        right: -76px;
        width: 309px;
        height: 316px;
        background: url("../img/elements/clients_elm_1.png") no-repeat center;
        background-size: contain;
    }
}

@media (min-width: 992px) {
    .clients__item:nth-last-child(-n+3) {
        max-width: calc(100% / 3 - 16px);
    }
}

.clients__head {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}

.clients__text {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 150%;
}
/* END clients */

/* BEGIN study */
.study {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .study {
        padding: 64px 0;
    }
}

.study .container {
    max-width: 1200px;
}

.study__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px 48px;
}

@media (min-width: 992px) {
    .study__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.study img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

@media (min-width: 992px) {
    .study img {
        max-width: inherit;
    }
}

.study__info {
    width: 100%;
}

@media (min-width: 992px) {
    .study__info {
        width: auto;
    }
}

@media (max-width: 992px) {
    .study__title br {
        display: none;
    }
}

.study__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: 32px 0 0;
}

.study__text {
    font-size: 18px;
    line-height: 133%;
}

@media (min-width: 992px) {
    .study__text {
        font-size: 20px;
        line-height: 120%;
    }
}

.study__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .study__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

.study__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    font-size: 18px;
    line-height: 133%;
}

@media (min-width: 992px) {
    .study__list li {
        width: calc(50% - 8px);
        max-width: 50%;
        font-size: 20px;
        line-height: 120%;
    }

    .study__list li:first-child {
        width: 100%;
        max-width: 100%;
    }
}

.study__list li svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
/* END study */

/* BEGIN driving */
.driving {
    padding: 50px 0 0;
}

@media (min-width: 992px) {
    .driving {
        padding: 64px 0;
    }
}

.driving .container {
    max-width: 1200px;
}

.driving__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin: 0 -20px;
    padding: 40px 20px 0;
    border-radius: 24px;
    background: #F20C00;
}

@media (min-width: 992px) {
    .driving__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin: 0;
        padding: 72px 80px;
        border-radius: 64px;
    }
}

.driving__wrapper::before {
    content: url("../img/patterns/driving_1m.svg");
    position: absolute;
    top: inherit;
    right: 0;
    bottom: -5px;
}

@media (min-width: 992px) {
    .driving__wrapper::before {
        content: url("../img/patterns/driving_1.svg");
        position: absolute;
        top: 0;
        right: -1px;
        bottom: inherit;
    }
}

.driving__info {
    position: relative;
    z-index: 3;
    margin: 0 0 16px;
}

@media (min-width: 992px) {
    .driving__info {
        max-width: 472px;
        margin: 0;
    }
}

.driving__title {
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
    color: #fff;
}

@media (min-width: 992px) {
    .driving__title {
        font-size: 40px;
        line-height: 120%;
    }
}


@media (max-width: 992px) {
    .driving__title br {
        display: none;
    }
}

.driving__subtitle {
    margin: 16px 0 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: #fff;
}

.driving .button {
    width: 100%;
    padding: 16px 32px;
    margin: 40px 0 0;
}

@media (min-width: 992px) {
    .driving .button {
        max-width: 326px;
        padding: 16px 32px;
    }
}

.driving__img-1 {
    display: block;
    width: 100%;
    height: auto;
    max-width: 375px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .driving__img-1 {
        position: absolute;
        right: 64px;
        bottom: 0;
        width: auto;
        max-width: 45%;
    }
}

.driving__img-2 {
    position: absolute;
    right: inherit;
    bottom: -160px;
    left: 50%;
    z-index: 2;
    min-width: 574px;
    max-width: 574px;
    height: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

@media (min-width: 992px) {
    .driving__img-2 {
        position: absolute;
        right: -156px;
        bottom: -196px;
        left: inherit;
        max-width: 100%;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}
/* END driving */