/* 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: #f20c00;
    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: #000;
    color: #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: -50px;
        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: 24px 0 0;
    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_4@2x.png") no-repeat center;
    background-size: contain;
}

@media (min-width: 992px) {
    .power:before {
        content: "";
        width: 332px;
        height: 340px;
        position: absolute;
        top: -30px;
        right: -50px;
        bottom: 0;
        left: 0;
        margin: auto;
        background: url("../img/money_1@2x.png") no-repeat center;
        background-size: contain;
    }
}

.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: 40%;
        font-size: 28px;
        text-align: left;
    }
}

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

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

.power .button-secondary:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -24px;
    width: 114px;
    height: 108px;
    background: url("../img/arrow_2@2x.png") no-repeat center;
    background-size: contain;
}

@media (min-width: 992px) {
    .power .button-secondary:before {
        top: 30px;
        right: -36px;
        width: 76px;
        height: 72px;
        background: url("../img/arrow_1@2x.png") no-repeat center;
        background-size: contain;
    }
}
/* END GENERAL */

/* header */
.header:before {
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid #eaeaea;
}

/* start */
.start {
    padding: 32px 0 0;
    margin: 72px 0 32px;
    background: -o-linear-gradient(top, #fff 0%, #f4f7f9 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f4f7f9));
    background: linear-gradient(180deg, #fff 0%, #f4f7f9 100%);
}

@media (min-width: 992px) {
    .start {
        padding: 64px 0;
        margin: 96px 0 32px;
    }
}

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

@media (min-width: 992px) {
    .start__content {
        max-width: 552px;
    }
}

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

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

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

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

.start__title {
    max-width: 460px;
    margin: 32px 0 0;
}

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

.start 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__image {
    display: block;
    width: 448px;
    height: auto;
    margin: -28px auto 0;
}

@media (min-width: 992px) {
    .start__image {
        position: absolute;
        right: -180px;
        bottom: -64px;
        width: 100%;
        max-width: 75%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .start__image {
        right: -300px;
        width: inherit;
        max-width: 100%;
    }
}

.start__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 48px;
    margin: 24px 0 0;
}

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

.start__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

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

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

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

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

/* audience */
.audience {
    padding: 72px 0;
}

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

@media (min-width: 768px) {
    .audience__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .audience__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience__card {
    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;
    padding: 32px;
    border-radius: 16px;
    background: #f4f7f9;
}

.audience__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: 8px;
    background: #fff;
}

.audience__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: 8px;
    margin: auto 0 0;
}

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

.audience__item h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%
}

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

.audience__card:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 16px 0 0;
    background: transparent;
}

@media (min-width: 768px) {
    .audience__card:last-child {
        grid-column: span 2;
    }
}
@media (min-width: 992px) {
    .audience__card:last-child {
        margin: 0;
        background: #f4f7f9 url("../img/audience_bg@2x.png") no-repeat top left;
        background-size: contain;
    }
}

.audience__card-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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 24px;
    width: 100%;
    height: 100%;
    padding: 64px 32px 32px;
    margin: 0 0 0 auto;
    border-radius: 16px;
    background: #f20c00;
}

@media (min-width: 992px) {
    .audience__card-action {
        width: calc(50% - 12px);
        padding: 32px;
    }
}

.audience__card-action h3 {
    font-weight: 800;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: #fff;
}

.audience__card-action .button {
    width: 100%;
    margin: 8px 0 0;
}

/* formats */
.formats {
    padding: 72px 0;
}

.formats__subtitle {
    max-width: 790px;
}

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

.formats .swiper {
    overflow: visible;
}

.formats__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: 16px;
    width: 100%;
    height: auto;
    max-width: 296px;
    padding: 28px;
    border-radius: 16px 16px 0 0;
    color: #FFF;
}

.formats__item[data-format="pops"] {
    background: #390FFF;
}

.formats__item[data-format="push"] {
    background: #FFA700;
}

.formats__item[data-format="pre-roll"] {
    background: #D22E70;
}

.formats__item[data-format="telegram"] {
    background: #2CA3DB;
}

.formats__item[data-format="native"] {
    background: #E9453E;
}

.formats__item[data-format="direct"] {
    background: #A100FF;
}

.formats__item h3 {
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
}

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

.formats__item img {
    display: block;
    margin: auto -40px -52px;
}

/* verticals */
.verticals {
    margin: 72px 0;
}

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

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

@media (min-width: 768px) {
    .verticals__wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .verticals__wrapper {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

.verticals__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 144px;
    padding: 36px 30px 36px 168px;
    border-radius: 16px;
    background: #F4F7F9;
}

@media (min-width: 992px) {
    .verticals__item {
        grid-column: span 2;
        padding: 44px 40px 44px 160px;
    }
}

@media (min-width: 992px) {
    .verticals__item[data-vertical="e-commerce"],
    .verticals__item[data-vertical="sports"] {
        grid-column: span 3;
    }
}

.verticals__item[data-vertical="igaming"] {
    background: url("../img/verticals/igaming@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="nutra"] {
    background: url("../img/verticals/nutra@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="food"] {
    background: url("../img/verticals/food@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="e-commerce"] {

    background: url("../img/verticals/e-commerce@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="sports"] {
    background: url("../img/verticals/sports@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="finance"] {
    background: url("../img/verticals/finance@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="sweepstakes"] {
    background: url("../img/verticals/sweepstakes@2x.png") no-repeat left center / contain #F4F7F9;
}

.verticals__item[data-vertical="dating"] {
    background: url("../img/verticals/dating@2x.png") no-repeat left center / contain #F4F7F9;
}

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

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

/* fifa */
.fifa {
    padding: 72px 0;
}

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

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

@media (min-width: 768px) {
    .fifa__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .fifa__wrapper {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.fifa__item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    padding: 32px;
    border-radius: 16px;
    background: #F4F7F9;
}

@media (min-width: 992px) {
    .fifa__item {
        grid-column: span 3;
    }

    .fifa__item:nth-child(-n+3) {
        grid-column: span 4;
    }
}

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

.fifa__type {
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    color: #000;
}

.fifa .launch-traffic {
    position: relative;
    top: 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;
    padding: 32px;
    border-radius: 16px;
    background: #F20C00;
    font-weight: 900;
    font-size: 24px;
    line-height: 117%;
    text-align: center;
    color: #FFF;
    -webkit-transition: top .3s ease;
    -o-transition: top .3s ease;
    transition: top .3s ease;
}

@media (min-width: 768px) {
    .fifa .launch-traffic {
        grid-column: span 3;
    }
}

.fifa .launch-traffic:hover {
    top: -3px;
}

.fifa .launch-traffic:before {
    content: "";
    width: 152px;
    height: 140px;
    position: absolute;
    bottom: -42px;
    left: -38px;
    background: url("../img/money_2@2x.png") no-repeat center;
    background-size: contain;
}

.fifa .launch-traffic:after {
    content: "";
    width: 154px;
    height: 166px;
    position: absolute;
    top: -58px;
    right: -42px;
    background: url("../img/money_3@2x.png") no-repeat center;
    background-size: contain;
}

.fifa .launch-traffic span {
    position: relative;
}

.fifa .launch-traffic span:before {
    content: "";
    width: 76px;
    height: 72px;
    position: absolute;
    top: 50px;
    right: -80px;
    background: url("../img/arrow_1@2x.png") no-repeat center;
    background-size: contain;
}

/* faq */
.faq {
    padding: 72px 0;
}

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

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

/* cases */
.cases {
    padding: 72px 0 120px;
}

.cases__wrapper {
    position: relative;
}

.cases__slider {
    position: relative;
    margin: 32px 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: 48px 0;
    height: 100%;
}

.cases__head {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    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;
    margin: auto 0 0;
}

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

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