/* 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
}

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3 {
    margin: 0;
}

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

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

h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 113%;
}

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

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

.container {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1104px;
    padding: 0 20px;
    margin: 0 auto;
}

mark {
    background: none;
    color: #F20C00;
}

.button {
    position: relative;
    top: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    border-radius: 8px;
    background: #000;
    color: #FFF;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: top .3s ease;
    -o-transition: top .3s ease;
    transition: top .3s ease;
}

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

.button:hover {
    top: -3px;
}

.button-secondary {
    background: #F20C00;
}

.button-transparent {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 3px #FFF;
            box-shadow: inset 0 0 0 3px #FFF;
}

.button-hidden {
    display: none;
}

.button-desktop {
    display: none;
}

@media (min-width: 992px) {
    .button-desktop {
        display: block;
    }
}

.button-mobile {
    display: block;
}

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

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

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

.slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 48px;
    margin: 32px 0 0;
}

@media (min-width: 1200px) {
    .slider-controls {
        position: absolute;
        top: -70px;
        right: 0;
        margin: 0;
    }
}

.slider-controls .arrow-prev,
.slider-controls .arrow-next {
    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;
    cursor: pointer;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 1;
}

.slider-controls .arrow-prev svg path,
.slider-controls .arrow-next svg path {
    -webkit-transition: fill .3s ease;
    -o-transition: fill .3s ease;
    transition: fill .3s ease;
}

.slider-controls .arrow-prev:hover svg path,
.slider-controls .arrow-next:hover svg path {
    fill: #F20C00;
}

.slider-controls .swiper-button-disabled {
    pointer-events: none;
    opacity: .3;
}

.slider-controls .swiper-button-lock {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}


.power {
    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: 32px 70px;
    padding: 32px 28px 28px;
    margin-top: 16px;
    background: #f20c00;
    border-radius: 24px;
}

@media (min-width: 576px) {
    .power {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .power {
        -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;
        padding: 36px 48px;
    }
}

.power:before {
    content: "";
    position: absolute;
    top: -24px;
    right: -25px;
    width: 168px;
    height: 176px;
    background: url("../img/money_3@2x.png") no-repeat center;
    background-size: contain;
}

@media (min-width: 992px) {
    .power:before {
        content: none;
    }
}

.power__description {
    position: relative;
    z-index: 1;
    max-width: 80%;
    margin: 0;
    font-weight: 800;
    font-size: 24px;
    line-height: 129%;
    text-align: left;
    color: #fff;
}

@media (min-width: 576px) {
    .power__description {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .power__description {
        max-width: 50%;
        font-size: 28px;
        text-align: left;
    }
}

.power .button {
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 18px;
    border-radius: 8px;
}

@media (min-width: 576px) {
    .power .button {
        width: 324px;
    }
}

@media (min-width: 992px) {
    .power .button:before {
        content: "";
        width: 331px;
        height: 331px;
        position: absolute;
        bottom: -116px;
        right: calc(100% - 74px);
        background: url("../img/money_5@2x.png") no-repeat center;
        background-size: contain;
    }
}

.power .button:after {
    content: "";
    width: 76px;
    height: 72px;
    position: absolute;
    top: 40px;
    right: -50px;
    background: url("../img/arrow_2@2x.png") no-repeat center;
    background-size: contain;
}
/* END GENERAL */

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

/* start */
.start {
    color: #FFF;
    max-width: 1360px;
    margin: 72px auto 84px;
}

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

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

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

.start__winner img {
    width: auto;
    height: 32px;
}

@media (min-width: 992px) {
    .start__winner img {
        height: 40px;
    }
}

.start__title {
    margin: 32px 0 0;
}

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

@media (min-width: 992px) {
    .start__subtitle {
        max-width: 440px;
    }
}

.start__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 32px;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

@media (min-width: 992px) {
    .start__list {
        display: grid;
        grid-template-columns: 216px 1fr;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
    }
}

.start__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
}

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

.start__list li span {
    font-weight: 600;
    font-size: 18px;
    line-height: 134%;
}

.start__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin: 32px 0 0;
}

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

.start__buttons .button {
    width: 100%;
    padding: 16px 24px;
}

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

.start__wrapper {
    position: relative;
    padding: 64px 0 0;
}

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

@media (min-width: 992px) {
    .start__wrapper:before {
        content: "";
        position: absolute;
        top: -96px;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 96px 0 64px;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        background: #F8F8F8;
        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 (min-width: 992px) {
    .start__inside {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        border-radius: 70px;
    }
}

@media (min-width: 992px) {
    .start__inside:before {
        content: url("../img/patterns/mb.svg");
        position: absolute;
        right: calc(100% - 1px);
        bottom: -4px;
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    .start__inside:after {
        content: url("../img/patterns/mb.svg");
        position: absolute;
        top: 0;
        left: calc(100% - 1px);
    }
}

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

@media (min-width: 992px) {
    .start__inside-l {
        width: 60%;
        max-width: 704px;
        position: relative;
        background: #F20C00;
        padding: 72px 48px 56px 128px;
        border-radius: 70px 0px 0px 0px;
    }
}

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

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

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

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

.start__inside-r {
    position: relative;
    background: #F20C00;
}

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

.start__inside-r:before {
    content: url("../img/patterns/mbamb.svg");
    position: absolute;
    z-index: 1;
    right: inherit;
    bottom: 40px;
    left: 0;
}

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

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

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

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

.start__inside-r picture {
    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;
}

.start__inside-r img {
    position: relative;
    z-index: 1;
    left: 0;
    display: block;
    height: auto;
    margin: -260px auto -20px;
}

@media (min-width: 992px) {
    .start__inside-r img {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: -160px;
        bottom: 0;
        left: inherit;
        width: inherit;
        max-width: 300%;
        margin: auto;
    }
}

@media (min-width: 1200px) {
    .start__inside-r img {
        top: 25%;
        right: -60px;
        max-width: 226%;
    }
}

@media (min-width: 1400px) {
    .start__inside-r img {
        top: 8px;
        right: -120px;
        bottom: inherit;
        max-width: 244%;
    }
}

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

@media (min-width: 992px) {
    .start__content {
        min-height: 448px;
    }
}

/* choose */
.choose {
    margin: 0 0 84px;
}

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

.choose__title {
    max-width: 710px;
}

.choose__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;
    margin: 48px 0 0;
}

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

.choose__offers {
    width: 100%;
    background: #f8f8f8;
    border-radius: 16px;
}

.choose__geos {
    padding: 40px 24px 40px;
}

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

.choose__list {
    max-height: 144px;
    overflow: hidden;
    
}

@media (min-width: 576px) {
    .choose__list {
        max-height: 88px;
    }
}

@media (min-width: 992px) {
    .choose__list {
        max-height: none;
    }
}

@media (max-width: 992px) {
    .choose__list {
        -webkit-transition: max-height .3s ease;
        -o-transition: max-height .3s ease;
        transition: max-height .3s ease;
    }

    .choose__list.active {
        max-height: 2000px;
    }

    .choose__list.active + .choose__arrow {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }
}

.choose__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 104px;
    padding: 40px 32px;
    border-radius: 16px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    background: #f20c00;
}

[data-offers="gambling"] .choose__head {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

[data-offers="betting"] .choose__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

@media (min-width: 992px) {
    .choose__head {
        height: 128px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    [data-offers="gambling"] .choose__head,
    [data-offers="betting"] .choose__head {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.choose__head-img {
    position: absolute;
}

[data-offers="gambling"] .choose__head-img {
    max-width: 212px;
    height: auto;
    top: -36px;
    left: -46px;
}

@media (min-width: 992px) {
    [data-offers="gambling"] .choose__head-img {
        max-width: inherit;
        top: -44px;
        left: -48px;
    }
}

[data-offers="betting"] .choose__head-img {
    max-width: 203px;
    height: auto;
    top: -38px;
    right: -24px;
    left: inherit;
}

@media (min-width: 992px) {
    [data-offers="betting"] .choose__head-img {
        max-width: inherit;
        top: -60px;
        right: inherit;
        left: -44px;
    }   
}

.choose__head-text {
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
}

@media (min-width: 992px) {
    .choose__head-text {
        min-width: 128px;
        margin: 0 0 0 60px;
        font-size: 24px;
        line-height: 133%;
    }
}

.choose__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 32px;
    padding: 20px 0;
    border-top: 1px solid #D5D5D5;
}

@media (min-width: 576px) {
    .choose__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .choose__item {
        padding: 20px 8px;
    }
}

.choose__item:first-child {
    padding-top: 0;
    border: none;
}

.choose__item:last-child {
    padding-bottom: 0;
}

.choose__country {
    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%;
    color: #111;
}

.choose__country strong {
    font-weight: 700;
}

.choose__impressions {
    min-width: 232px;
    padding: 0 0 0 36px;
    font-size: 18px;
    line-height: 133%;
    color: #111;
}

@media (min-width: 576px) {
    .choose__impressions {
        padding: 0;
    }
}

.choose__impressions strong {
    font-weight: 700;
}

.choose__arrow {
    display: block;
    margin: 40px auto 0;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

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

.choose .power {
    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;
    min-height: 146px;
    padding: 92px 10px;
    margin: 24px 0 0;
    background: #111;
    border-radius: 16px;
}

@media (min-width: 992px) {
    .choose .power {
        padding: 48px;
        margin: 32px 0 0;
    }
}

.choose .power:before {
    content: none;
}

.choose .power__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.choose .power__text {
    margin: 0;
    position: relative;
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.choose .power__text span {
    color: #f00;
}

.choose .power .ellipse {
    position: absolute;
    height: 100%;
    max-width: 200px;
}

@media (min-width: 992px) {
    .choose .power .ellipse {
        max-width: inherit;
    }
}

.choose .power .ellipse-1 {
    left: 0;
    bottom: -50px;
}

@media (min-width: 992px) {
    .choose .power .ellipse-1 {
        bottom: 0;
    }
}

.choose .power .ellipse-2 {
    top: -50px;
    right: 0;
}

@media (min-width: 992px) {
    .choose .power .ellipse-2 {
        top: 0;
    }
}

.choose .power .pos-elm {
    position: absolute;
}

.choose .power .pos-elm[data-elm="1"] {
    left: -54px;
    bottom: -122px;
}

@media (min-width: 992px) {
    .choose .power .pos-elm[data-elm="1"] {
        left: -54px;
        bottom: -108px;
    }
}

.choose .power .pos-elm[data-elm="2"] {
    top: -84px;
    right: -62px;
}

.choose .power .pos-elm[data-elm="3"] {
    right: 26px;
    bottom: -30px;
}

@media (min-width: 992px) {
    .choose .power .pos-elm[data-elm="3"] {
        right: 86px;
    }
}

/* formats */
.formats {
    margin: 0 0 96px;
}

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

.formats__title {
    max-width: 600px;
}

.formats__subtitle {
    margin: 16px 0 0;
}

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

.formats__controls {
    margin: 32px 0 0;
}

.formats__controls.swiper {
    overflow: visible;
}

.formats__controls button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: auto;
    padding: 20px 24px 20px 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    border-radius: 8px;
    background: #f8f8f8;
    color: #000;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.formats__controls button .icon-figure,
.formats__controls button .icon-bg {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.formats__controls button.active {
    color: #fff
}

.formats__controls button.active[data-button="pre-roll"] {
   background: #d22e70;
}

.formats__controls button.active[data-button="pre-roll"] .icon-figure {
    fill: #D22E70;
}

.formats__controls button.active[data-button="pre-roll"] .icon-bg {
    fill: #fff;
}

.formats__controls button.active[data-button="pops"] {
   background: #390FFF;
}

.formats__controls button.active[data-button="pops"] .icon-figure {
    fill: #390FFF;
}

.formats__controls button.active[data-button="pops"] .icon-bg {
    fill: #fff;
}

.formats__controls button.active[data-button="push"] {
   background: #FFA700;
}

.formats__controls button.active[data-button="push"] .icon-figure {
    fill: #FFA700;
}

.formats__controls button.active[data-button="push"] .icon-bg {
    fill: #fff;
}

.formats__controls button.active[data-button="direct-click"] {
   background: #A100FF;
}

.formats__controls button.active[data-button="direct-click"] .icon-figure {
    fill: #A100FF;
}

.formats__controls button.active[data-button="direct-click"] .icon-bg {
    fill: #fff;
}

.formats__controls button.active[data-button="telegram"] {
   background: #2CA3DB;
}

.formats__controls button.active[data-button="telegram"] .icon-figure {
    fill: #2CA3DB;
}

.formats__controls button.active[data-button="telegram"] .icon-bg {
    fill: #fff;
}

.formats__controls button.active[data-button="native"] {
   background: #E9453E;
}

.formats__controls button.active[data-button="native"] .icon-figure {
    fill: #E9453E;
}

.formats__controls button.active[data-button="native"] .icon-bg {
    fill: #fff;
}

.formats__slider {
    margin: 16px 0 0;
    background: #f8f8f8;
}

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

.formats__slider.swiper {
    overflow: visible;
}

@media (min-width: 992px) {
    .formats__slider.swiper {
        overflow: hidden;
    }
}

.formats__slider .swiper-slide {
    height: auto;
}

.formats__slide {
    position: relative;
}

.formats__slide[data-slide="pre-roll"] .formats__text a {
    color: #d22e70;
}

.formats__slide[data-slide="pops"] .formats__text a {
    color: #390fff;
}

.formats__slide[data-slide="push"] .formats__text a {
    color: #FFA700;
}

.formats__slide[data-slide="direct-click"] .formats__text a {
    color: #A100FF;
}

.formats__slide[data-slide="telegram"] .formats__text a {
    color: #2CA3DB;
}

.formats__slide[data-slide="native"] .formats__text a {
    color: #E9453E;
}

.formats__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: 0 100px;
    max-width: 1136px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

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

.formats__content {
    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 0;
    padding: 32px 0 48px;
}

@media (min-width: 992px) {
    .formats__content {
        gap: 32px 0;
        width: 60%;
        max-width: 628px;
        padding: 72px 24px 72px 0;
    }
}

.formats__text {
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
}

.formats__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: 20px;
}

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

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

.formats__item-head {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}

.formats__item-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
}

.formats a {
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: #000;
}

.formats__visual {
    position: relative;
    padding: 24px 0;
    margin: 0 0 -12px;
}

@media (min-width: 992px) {
    .formats__visual {
        width: 40%;
        min-width: 40%;
        padding: 72px 0 72px 72px;
        margin: 0;
    }
}

.formats__visual:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100%;
    top: 0;
    right: -16px;
    bottom: 0;
    left: -16px;   
}

@media (min-width: 992px) {
    .formats__visual:before {
        height: 100vh;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;  
    }
}

.formats__visual[data-visual="pre-roll"]:before {
    background: #d22e70;
}

.formats__visual[data-visual="pops"]:before {
    background: #390fff;
}

.formats__visual[data-visual="push"]:before {
    background: #ffa700;
}

.formats__visual[data-visual="direct-click"]:before {
    background: #A100FF;
}

.formats__visual[data-visual="telegram"]:before {
    background: #2ca3db;
}

.formats__visual[data-visual="native"]:before {
    background: #E9453E;
}

.formats__head {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 992px) {
    .formats__head {
        font-size: 88px;
        line-height: 73%;
        text-align: left;
    }
}

.formats__image {
    position: relative;
    z-index: 1;
    display: block;
    width: inherit;
    max-width: 100%;
    height: auto;
    margin: -40px auto -50px;
}

@media (min-width: 992px) {
    .formats__image {
        position: absolute;
        top: 14%;
        right: 0;
        left: -62px;
        max-width: 130%;
        height: auto;
        margin: auto;
    }
}

@media (min-width: 1400px) {
    .formats__image {
        top: 80px;
        width: auto;
        max-width: inherit;
    }
}

/* sigma */
.sigma {
    margin: 0 0 84px;
}

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

.sigma__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 208px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

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

.sigma__visual {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 226px;
    margin: 0 0 -16px;
    background: url("../img/sigma/sigma-bg@2x.png") no-repeat center;
    background-size: cover;
}

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

.sigma__logo {
    margin: 0 0 0 10px;
}

.sigma__info {
    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;
    padding: 32px 28px 28px;
    background: #F20C00;
    border-radius: 16px 16px 0 0;
}

@media (min-width: 992px) {
    .sigma__info {
        padding: 54px 92px 44px 60px;
        border-radius: 0;
    }

    .sigma__info:before {
        content: "";
        position: absolute;
        left: -55px;
        top: 0;
        width: 56px;
        height: 100%;
        -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        background-color: #f20c00;
    }
}

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

.sigma__text span {
    color: #fff;
}

/* option */
.option {
    margin: 0 0 148px;
}

@media (min-width: 992px) {
    .option__title {
        max-width: 780px;
    }
}

.option__wrapper {
    margin: 32px 0 0;
}

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

@media (min-width: 992px) {
    .option__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 40px 0 44px;
    }
}

.option__item {
    position: relative;
    z-index: 1;
    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) {
    .option__item {
        max-width: 352px;
    }

    .option__item:nth-child(1) {
        max-width: 376px;
    }

    .option__item:nth-child(2) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin: 0 0 0 72px;
    }

    .option__item:nth-child(3) {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
    }

    .option__item:nth-child(4) {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
        margin: 0 -64px 0 auto;
    }

    .option__item:nth-child(5) {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        margin: 0 8px 0 auto;
    }

    .option__item:nth-child(6) {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin: 0 80px 0 auto;
    }
}

.option__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    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: 88px;
    height: 88px;
    border-radius: 16px;
    background: #f8f8f8;
}

@media (min-width: 992px) {
    .option__icon {
        width: 112px;
        height: 112px;
    }
}

.option__icon svg {
    max-width: 48px;
    height: auto;
}

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

.option__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #000;
}

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

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

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

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

.option .button {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 72px;
    padding: 24px 48px;
    margin: 0 auto -35px;
    border-radius: 100px;
    font-size: 20px;
    line-height: 120%;
}

.option .button:before {
    content: "";
    width: 72px;
    height: 76px;
    position: absolute;
    right: -30px;
    bottom: -40px;
    background: url("../img/arrow_2@2x.png") no-repeat center;
    background-size: contain;
}

/* launch */
.launch {
    position: relative;
    padding: 40px 0 20px;
    margin: 0 0 104px;
    background: #f8f8f8;
}

@media (min-width: 992px) {
    .launch {
        padding: 88px 0;
        margin: 0 0 120px;
    }
}

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

.launch__title {
    max-width: 600px;
}

.launch__wrapper {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    margin: 40px 0 0;
}

@media (min-width: 992px) {
    .launch__wrapper {
        display: grid;
        grid-template-columns: 1fr 400px;
    }
}

.launch__visual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}

.launch__visual-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid #fff;
}

.launch__tip {
    padding: 19px 23px;
    border: 1px solid #f20c00;
    border-radius: 16px;
    font-size: 14px;
    line-height: 171%;
}

@media (min-width: 992px) {
    .launch__tip {
        padding: 19px 23px;
        font-size: 16px;
        line-height: 150%;
    }
}

.launch__tip span {
    font-weight: 700;
    color: #f20c00;
}

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

.launch__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: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.launch__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

.launch__step .num {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-weight: 900;
    font-size: 12px;
    line-height: 200%;
    text-align: center;
    border-radius: 40px;
    width: 24px;
    height: 24px;
    background: #F20C00;
    color: #fff;
    -webkit-transition: background .3s ease-in-out, color .3s ease-in-out;
    -o-transition: background .3s ease-in-out, color .3s ease-in-out;
    transition: background .3s ease-in-out, color .3s ease-in-out;
}

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

.launch__head {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: #000;
}

.launch__text {
    font-size: 12px;
    line-height: 167%;
    color: #000;
}

.launch .button {
    position: relative;
    max-height: 60px;
    margin: 40px 0 0;
}

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

.launch .button:after {
    content: "";
    width: 72px;
    height: 76px;
    position: absolute;
    right: -4px;
    bottom: -42px;
    background: url("../img/arrow_2@2x.png") no-repeat center;
    background-size: contain;
}

/* case studies */
.case-studies {
    margin: 0 0 128px;
}

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

.case-studies__wrapper {
    position: relative;
}

.case-studies__subtitle {
    max-width: 730px;
}

.case-studies__slider {
    position: relative;
    margin: 32px 0 0;
}

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

.case-studies .swiper {
    overflow: visible;
}

.case-studies__slider .swiper-slide {
    height: auto;
}

.case-studies__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.case-studies__item:hover .case-studies__head {
    color: #f20c00;
}

.case-studies__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: calc(100% - 156.5px);
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
}

.case-studies__content {
    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 0;
}

.case-studies__tag {
    font-size: 12px;
    line-height: 133%;
    color: #111;
}

.case-studies__head {
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    color: #000;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.case-studies__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    margin: 16px 0 0;
}

.case-studies__date {
    font-size: 12px;
    line-height: 133%;
}

.case-studies__read {
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
}

/* faq */
.faq {
    margin: 0 0 104px;
}

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

.faq__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0 0;
}

.faq__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 24px;
    border-top: 1px solid #f20c00;
    border-radius: 16px;
}

@media (min-width: 992px) {
    .faq__item {
        padding: 40px 56px;
        border-radius: 24px;
    }
}

.faq__checkbox:checked~.faq__answer {
    max-height: 3000px;
    margin: 16px 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.faq__checkbox:checked~.faq__question h3 {
    color: #F20C00;
}

.faq__checkbox:checked~.faq__question svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.faq__checkbox:checked~.faq__question svg path {
    stroke: #F20C00;
}

.faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
    cursor: pointer;
}

.faq__question h3 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

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

.faq__question:hover h3 {
    color: #F20C00;
}

.faq__question:hover svg path {
    stroke: #F20C00;
}

.faq__question svg, 
.faq__question svg path {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.faq__question svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.faq__answer {
    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: 14px;
    max-height: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

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

.faq__answer p {
    margin: 0;
    font-size: 14px;
    line-height: 143%;
    color: #000;
}

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

.faq__answer a {
    color: #F20C00;
    text-decoration: underline;
}

.faq__answer ul {
    list-style: disc;
    margin: 0 0 0 10px;
    padding: 0 0 0 14px;
}

.faq__answer li {
    font-size: 14px;
    line-height: 143%;
    color: #000;
}

@media (min-width: 992px) {
    .faq__answer li {
        font-size: 16px;
        line-height: 175%;
    }
}

.faq__answer li::marker {
    font-size: 12px;
}

/* reviews */
.reviews {
    padding: 40px 0;
    margin: 0 0 96px;
    background: #f20c00;
}

@media (min-width: 992px) {
    .reviews {
        padding: 80px 0 64px;
        margin: 0 0 120px;
         background: url("../img/patterns/reva.svg") no-repeat top right, url("../img/patterns/revb.svg") no-repeat bottom left, #f20c00;
    }
}

@media (min-width: 992px) {
    .reviews .slider-controls {
        top: 112px;
    }
}

.reviews__head-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: 32px;
}

@media (min-width: 992px) {
    .reviews__head-wrap {
        -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;
    }
}

.reviews__title {
    color: #fff;
}

.reviews__subtitle {
    color: #fff;
}

.trustpilot {
    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;
    gap: 6px;
    width: 100%;
    height: 56px;
    padding: 16px 28px;
    border-radius: 8px;
    background: #fff;
}

@media (min-width: 992px) {
    .trustpilot {
        width: 326px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
}

.trustpilot__text {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #000;
}

.trustpilot__text span {
    font-weight: 700;
}

.trustpilot svg {
    position: relative;
    top: -2px;
}

.reviews__wrapper {
    position: relative;
}

.reviews__slider {
    margin: 32px 0 0;   
}

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

.reviews__slider.swiper {
    overflow: visible;
}

.reviews__slider .swiper-slide {
    height: auto;
}

@media (min-width: 992px) {
    .reviews__slider .swiper-slide {
        min-width: 416px;
    }
}

.reviews .slider-controls .arrow-prev:hover svg path, 
.reviews .slider-controls .arrow-next:hover svg path {
    fill: #000;
}

.review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 40px 48px 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
}

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

.review__ava {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
}

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

.review__user-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 143%;
}

.review__user-about {
    font-weight: 600;
    font-size: 12px;
    line-height: 117%;
    opacity: .3;
}

.review svg {
    display: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 0 auto auto;
}

@media (min-width: 992px) {
    .review svg {
        display: block;
    }
}

.review hr {
    margin: 24px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
}

.review__text {
    font-size: 14px;
    line-height: 143%;
}

/* cases */
.cases {
    margin: 0 0 128px;
}

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

.cases__wrapper {
    position: relative;
}

.cases__subtitle {
    max-width: 730px;
}

.cases__slider {
    position: relative;
    margin: 32px 0 0;
}

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

.cases .swiper {
    overflow: visible;
}

.cases__slider .swiper-slide {
    height: auto;
}

.cases__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.cases__item:hover .cases__head {
    color: #f20c00;
}

.cases__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: calc(100% - 156.5px);
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
}

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

.cases__head {
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    color: #000;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.cases__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}

.cases__date {
    font-size: 12px;
    line-height: 133%;
}

.cases__read {
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
}

/* conferences */
.conferences {
    margin: 0 0 96px;
}

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

.conferences__subtitle {
    max-width: 660px;
}

.conferences__slider {
    position: relative;
    margin: 32px 0 0;
}

.conferences .swiper {
    overflow: visible;
}

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

.conferences__slider .swiper-slide {
    height: auto;
}

.conferences__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    gap: 20px;
}

.conferences__item:hover .conferences__head {
    color: #f20c00;
}

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

.conferences__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

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

.conferences__location {
    font-size: 14px;
    line-height: 143%;
}

.conferences__head {
    margin: 8px 0 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-decoration: none;
    color: #000;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

.conferences__date {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 143%;
}

.conferences .button {
    width: 100%;
    margin: 24px 0 0;
    background: #F20C00;
}

/* create */
.create {
    margin: 0 0 64px;
    color: #FFF;
}

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

.create__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 36px 32px;
    border-radius: 16px;
    background: #f20c00;
}

@media (min-width: 992px) {
    .create__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        width: 100%;
        max-width: 964px;
        padding: 72px 147px;
        margin: 0 0 0 auto;
        border-radius: 24px;
    }
}

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

@media (min-width: 992px) {
    .create__content {
        max-width: 358px;
        margin: 0 0 0 auto;
    }
}

.create__title {
    font-size: 28px;
    line-height: 129%;
    text-align: center;
}

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

.create .button {
    width: 100%;
    margin: 32px 0 0;
}

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

.create img {
    display: block;
    height: auto;
    margin: 12px auto -126px;
}

@media (min-width: 992px) {
    .create img {
        position: absolute;
        top: -131px;
        left: -324px;
        width: inherit;
        max-width: 76%;
        margin: inherit;
    }
}