/* 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: 40px;
        line-height: 115%;
    }
}

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: #390FFF;
}

#wrapper {
    overflow: hidden;
}

.main {
    margin: 0 auto 80px;
}

.row {
    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;
}

.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;
}
.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: #390FFF;
}
/* 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 .row {
    width: 100%;
    -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 .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;
    }

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

    .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;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.8);
    }

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

    .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);
    }

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

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

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

    .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: #390FFF;
    padding: 32px 20px 0;
}

@media (min-width: 992px) {
    .start__inside-l {
        width: 60%;
        max-width: 704px;
        min-height: 576px;
        position: relative;
        background: #390FFF url('../img/patterns/start_2.svg') no-repeat right bottom;
        padding: 72px 64px 64px 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: #390FFF;
}

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

.start__inside-r:before {
    content: url("../img/patterns/start_2m.svg");
    position: absolute;
    right: inherit;
    bottom: 64px;
    left: 0;
}

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

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

.start__inside-r:after {
    content: url("../img/patterns/start_3m.svg");
    position: absolute;
    right: 0;
    bottom: -5px;
}

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

.start__inside-r img {
    position: relative;
    left: inherit;
    z-index: 1;
    display: block;
    height: auto;
    max-width: 180%;
    margin: -70px -45% -170px;
}

@media (min-width: 411px) {
    .start__inside-r img {
        max-width: 100%;
        margin: -23px -1px -47px auto;
    }
}

@media (min-width: 992px) {
    .start__inside-r img {
        position: absolute;
        top: 30px;
        right: -180px;
        width: inherit;
        max-width: 200%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .start__inside-r img {
        top: -140px;
        right: -122px;
        max-width: 175%;
    }
}

.start__content {
    position: relative;
    z-index: 2;
}

.start .row-logs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
}

.start .row-logs img {
    height: 40px;
}

.start .row-logs .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__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .start__list {
        gap: 4px;
    }
}

.start__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: #fff;
}

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

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

.start .mark span {
    font-weight: 900;
}

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

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

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

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

.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 46px;
    border-radius: 24px;
    padding: 24px;
    background: #f4f7f9;
    color: #000;
}

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

.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;
    gap: 4px;
}

@media (min-width: 992px) {
    .features__item {
        gap: 8px;
    }
}

.features__item h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
}

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

.features__item p {
    font-size: 14px;
    line-height: 143%;
    text-align: center;
}

@media (min-width: 992px) {
    .features__item p {
        font-size: 16px;
        line-height: 150%;
    }
}

.features hr {
    margin: 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
/* END features */

/* BEGIN advertisers */
.advertisers {
    padding: 60px 0;
}

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

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

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

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

.advertisers__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0 0;
}

@media (min-width: 992px) {
    .advertisers__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 40px 0 0;
    }
}

.advertisers__item {
    position: relative;
    z-index: 1;
    padding: 24px;
    border-radius: 24px;
    background: #f4f7f9;
}

@media (min-width: 992px) {
    .advertisers__item {
        padding: 32px 32px 40px;
    }
}

.advertisers__item:last-child {
    z-index: 0;
    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;
    min-height: 304px;
    padding: 24px 24px 40px;
    gap: 16px;
    background: #390FFF;
}

@media (min-width: 992px) {
    .advertisers__item:last-child {
        min-height: auto;
        padding: 32px 32px 40px;
    }
}

.advertisers__item:last-child:before,
.advertisers__item:last-child:after {
    content: "";
    position: absolute;
}

.advertisers__item:last-child:before {
    left: -48px;
    bottom: -76px;
    width: 207px;
    height: 232px;
    background: url(../img/elements/advert_elm_1.png) no-repeat center;
    background-size: contain;
}

.advertisers__item:last-child:after {
    top: -76px;
    right: -48px;
    width: 224px;
    height: 199px;
    background: url(../img/elements/advert_elm_2.png) no-repeat center;
    background-size: contain;
}

.advertisers__item:last-child svg {
    position: relative;
    z-index: 1;
}

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

.advertisers__head {
    margin: 32px 0 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}

.advertisers__text {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 150%;
}

.advertisers .button {
    width: 100%;
    height: 64px;
    line-height: 32px;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.advertisers .button:after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -84px;
    width: 151px;
    height: 115px;
    background: url(../img/elements/advert_elm_3.png) no-repeat center;
    background-size: contain;
}
/* END advertisers */

/* BEGIN worldwide */
.worldwide {
    padding: 60px 0;
}

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

.worldwide__wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 40px 20px 20px;
    border-radius: 24px;
    background: #390FFF;
}

@media (min-width: 992px) {
    .worldwide__wrapper {
        position: relative;
        margin: 0;
        padding: 72px 80px 80px;
        border-radius: 64px;
    }
}

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

.worldwide__title {
    color: #fff;
}

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

.worldwide__table {
    margin: 32px 0 0;
    padding: 24px 20px;
    background: #F4F7F9;
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .worldwide__table {
        margin: 40px 0 0;
        background: none;
    }
}

.worldwide__table.active .worldwide__toggler {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.worldwide__table.active .worldwide__countries {
    max-height: 1000px;
}

.worldwide__countries {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 220px;
    overflow: hidden;
    -webkit-transition: max-height .3s ease-in-out;
    -o-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out;
}

@media (min-width: 992px) {
    .worldwide__countries {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-height: none;
    }
}

@media (min-width: 992px) {
    .worldwide__col {
        padding: 32px;
        border-radius: 24px;
        background: #F4F7F9;
    }
}

.worldwide__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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4px 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
    .worldwide__col:first-child .worldwide__item:first-child {
        padding: 0 0 20px;
        border: none;
    }

    .worldwide__col:last-child .worldwide__item:last-child {
        padding: 20px 0 0;
    }
}

@media (min-width: 992px) {
    .worldwide__item:first-child {
        padding: 0 0 20px;
        border: none;
    }

    .worldwide__item:last-child {
        padding: 20px 0 0;
    }
}

.worldwide__geo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 133%
}

.worldwide__val {
    padding: 0 0 0 36px;
    font-size: 18px;
    line-height: 133%
}

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

.worldwide__geo .flag {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.worldwide__geo .flag[data-geo="IND"] {
    background: url(../img/flags/ind.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="IDN"] {
    background: url(../img/flags/idn.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="BGD"] {
    background: url(../img/flags/bgd.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="BRA"] {
    background: url(../img/flags/bra.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="USA"] {
    background: url(../img/flags/usa.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="THA"] {
    background: url(../img/flags/tha.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="EGY"] {
    background: url(../img/flags/egy.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="MEX"] {
    background: url(../img/flags/mex.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="PHL"] {
    background: url(../img/flags/phl.png) no-repeat center;
    background-size: contain;
}

.worldwide__geo .flag[data-geo="ARG"] {
    background: url(../img/flags/arg.png) no-repeat center;
    background-size: contain;
}

.worldwide__toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 32px 0 0;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

@media (min-width: 992px) {
    .worldwide__toggler {
        display: none;
        margin: 0;
    }
}
/* END worldwide */

/* BEGIN growth */
.growth {
    padding: 60px 0;
}

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

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

.growth__wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0 0;
}

@media (min-width: 992px) {
    .growth__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 48px 0 0;
    }
}

.growth__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: #F4F7F9;
}

@media (min-width: 992px) {
    .growth__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 0;
    }
}

.growth__num {
    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: 56px;
    height: 56px;
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #390fff;
    background: #fff;
    border-radius: 8px;
}

@media (min-width: 992px) {
    .growth__num {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 24px;
        width: 88px;
        height: 88px;
        margin: auto;
        font-size: 56px;
    }
}

.growth__head {
    width: calc(100% - 72px);
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
}

@media (min-width: 992px) {
    .growth__head {
        width: auto;
        padding: 0 0 0 104px;
        font-size: 20px;
        line-height: 120%;
    }
}

.growth__text {
    width: 100%;
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 150%;
}

@media (min-width: 992px) {
    .growth__text {
        width: auto;
        padding: 0 0 0 104px;
    }
}

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

.growth__button {
    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%;
    height: 104px;
    margin: 16px 0 0;
    padding: 40px 32px;
    background: #390FFF;
    border-radius: 16px;
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}

@media (min-width: 992px) {
    .growth__button {
        height: 144px;
        margin: 24px 0 0;
        font-size: 32px;
        line-height: 100%;
        border-radius: 24px;
    }
}

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

.growth__button-elm[data-elm="1"] {
    max-width: 128px;
    bottom: -54px;
    left: -38px;
}

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

.growth__button-elm[data-elm="2"] {
    max-width: 51px;
    top: -22px;
    left: 76px;
}

@media (min-width: 992px) {
    .growth__button-elm[data-elm="2"] {
        max-width: 72px;
        top: -30px;
        left: 140px;
    }
}

.growth__button-elm[data-elm="3"] {
    max-width: 147px;
    top: -58px;
    right: -32px;
}

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

.growth__button-elm[data-elm="4"] {
    max-width: 90px;
    right: 24px;
    bottom: -42px;
}

@media (min-width: 992px) {
    .growth__button-elm[data-elm="4"] {
        max-width: 107px;
        right: 25%;
        bottom: -52px;
    }
}

.growth__button-text {
    position: relative;
}
/* END growth */

/* BEGIN boost */
.boost {
    padding: 60px 0;
}

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

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

.boost mark:before {
    background: #390FFF;
}

.boost mark span {
    color: #fff;
}

.boost__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) {
    .boost__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;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .boost__wrapper > * {
        width: 100%;
        max-width: calc(100% / 2 - 12px);
    }
}

.boost__title {
    margin: 0 0 16px;
}

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .study {
        padding: 80px 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 (min-width: 992px) {
    .study__title {
        max-width: 600px;
    }
}

.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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .study__list {
        gap: 16px;
    }
}

.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 {
        font-size: 20px;
        line-height: 120%;
    }
}

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

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

@media (min-width: 992px) {
    .driving {
        padding: 80px 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: 32px 20px;
    border-radius: 24px;
    background: #390FFF;
}

@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;
    right: 0;
    bottom: -5px;
}

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

.driving__info {
    position: relative;
    z-index: 1;
}

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

.driving__title {
    color: #fff;
}

@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%;
    margin: 40px 0 0;
}

@media (min-width: 992px) {
    .driving .button {
        max-width: 232px;
    }
}

.driving img {
    position: relative;
    left: inherit;
    display: block;
    height: auto;
    max-width: 170%;
    margin: -86px -35% -190px;
}

@media (min-width: 411px) {
    .driving img {
        max-width: 100%;
        margin: -23px -1px -47px auto;
    }
}

@media (min-width: 992px) {
    .driving img {
        position: absolute;
        right: -160px;
        top: -114px;
    }
}
/* END driving */

/* BEGIN footer */
.footer-row-cont {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.footer-column {
    max-width: 300px;
}

.footer-column .headinger {
    font-weight: bold;
    font-size: 13px;
    line-height: 145%;
    margin-bottom: 18px;
}

.footer-column .descr {
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
}

.footer-column svg:nth-child(1) {
    fill: #DEE2E8;
}

.footer-column svg:hover {
    fill: #FF3C32;
}

.footer {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
    background: #F4F7F9;
    padding-top: 57px;
}

.footer .footer-column:nth-child(1) {
    margin-right: 75px;
}

.crown-foo {
    margin-bottom: 70px;
}

.mail {
    display: inline-block;
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #FF3C32;
}

.social-link {
    margin-right: 28px;
}

.footer hr {
    border: 1px solid #F3F3F3;
    margin: 40px 0 32px;
}

@media (max-width: 768px) {

    .footer-column_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .footer hr {
        display: none;
    }

    .bottom-footer {
        background: #F4F7F9;
        padding-top: 36px;
        margin-top: 48px;
    }

    .footer .footer-column:nth-child(1) {
        margin-right: 0;
    }

    .footer .footer-column {
        margin-top: 24px;
    }

    .footer-row-cont_2 {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .footer-row-cont_2 {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .footer-column {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer .footer-column:nth-child(1) {
        margin-right: 60px;
    }
}

.footer-row-cont_3 {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 210px;
}

.footer-row-cont_3>div img {
    width: 33px;
    height: 33px;
}

.footer-row-cont_3>div .ae,
.footer-row-cont_3>div .wt {
    width: 45px;
    height: 25px;
}

.footer-row-cont_3>div {
    margin: 0 0 25px 19px;
}

@media (max-width: 904px) {
    .footer-row-cont_3 {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        max-width: none;
        margin-bottom: 25px;
    }

    .footer-row-cont_3>div {
        margin: 25px 19px 0 0;
    }
}

@media (max-width: 767.9px) {

    .footer-column_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

}

@media (max-width: 576px) {
    .footer {
        padding-top: 0;
    }

    .crown-foo {
        margin-bottom: 10px;
    }

}

.footer__bottom .bottom__grid {
    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;
    gap: 148px;
}

.footer__bottom .bottom__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    width: 160px;
}

.footer__bottom .bottom__item:nth-child(3) {
    width: 180px;
}

.footer__bottom a.bottom__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: rgba(0, 0, 0, 0.54);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
}

.footer__bottom .footer__copyright {
    color: rgba(0, 0, 0, 0.54);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-top: 20px;
}

@media (max-width:767px) {
    .footer__bottom {
        padding-top: 34px;
        border-top: 1px solid rgba(0, 0, 0, 0.10);
    }

    .footer__bottom .bottom__grid {
        gap: 22px;
        -webkit-column-gap: 2px;
           -moz-column-gap: 2px;
                column-gap: 2px;
    }

    .footer__bottom .bottom__item {
        width: 138px;
    }

    .footer__bottom .bottom__item:nth-child(3) {
        width: 180px;
    }

    .footer__bottom .footer__copyright {
        margin-top: 44px;
    }
}
/* END footer */