/* Base styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-orange: #FA6334;
    --sub-orange: #FF8A65;
    --dark-bg: #041A23;
    --dark-sub-bg: #1B2F37;
    --green: #25C1A4;
    --light-gray: #E0E0E0;
    --blue: #6899D8;
    --dark-blue: #0056B3;
}

body {
    font-family: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-repeat: no-repeat !important;
}
.fa-at:before {
    content: "\f1fa";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-telegram:before {
     content: "\f2c6";
 }

a:hover {
    text-decoration: none;
}

footer {
    margin-top: 0;
}
input {
    width: 100%;
}

button:focus {
    outline: transparent;
}

button,
input,
textarea,
select,
option {
    outline: none;
    border: none;
    cursor: pointer;
    background: none;
    transition: .4s all;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    transition: .4s all;
}

p a {
    display: inline;
}

li {
    list-style: none;
}

span {
    font-family: inherit;
}

img,
video {
    max-width: 100%;
    display: block;
}

*::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: calc(1380px + 60px);
    margin: 0 auto;
    padding: 0 30px;
}

@media(max-width: 479px) {
    .container {
        padding: 0 20px;
    }
}

.swiper-slide {
    height: auto !important;
}

/* TITLES */

.title {
    font-weight: 600;
    line-height: 110.00000000000001%;
}

.title span {
    color: var(--primary-orange);
}

.title--center {
    text-align: center;
}

.title--page {
    font-size: 75px;
}

.title--block {
    font-size: 50px;
}

.title--white {
    color: #fff;
}

.title--black {
    color: #000;
}

@media(max-width: 1439px) {
    .title--page {
        font-size: 56px;
    }

    .title--block {
        font-size: 36px;
    }
}

@media(max-width: 767px) {
    .title--page {
        font-size: 34px;
    }

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

@media(max-width: 479px) {
    .title--page {
        font-size: 28px;
    }

    .title--block {
        font-size: 25px;
    }
}

/* TYPOGRAPHY */

.sub-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
    color: #fff;
}

.plate-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
}

/* ACCEPT */

.accept {
    font-weight: 400;
    font-size: 14px;
    line-height: calc(19.5 / 14 * 100%);
    color: #fff;
}

.accept a {
    color: var(--primary-orange);
}

/* LINKS */

.more-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 1%;
    color: var(--blue);
    transition: .4s all;
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
}

.more-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    height: 1px;
    width: calc(100% - 24px);
    background: var(--dark-blue);
    opacity: 0;
}

.more-link::after {
    content: "";
    width: 10px;
    height: 15px;
    background: url('/tpls/images/program/eco-system/icons/chevron-right.svg') center / contain no-repeat;
}

@media (any-hover: hover) {
    .more-link:hover {
        color: var(--dark-blue);
        gap: 14px;
    }

    .more-link:hover::before {
        opacity: 1;
    }
}

/* BEFORE PLATE */

.before-plate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    background: var(--dark-sub-bg);
    white-space: nowrap;
}

.before-plate__icon {
    width: 26px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2.83px 7.28px 0 #0000001A;
    background: #fff;
    border-radius: 8px;
    display: flex;
}

.before-plate__icon img {
    margin: auto;
}

.before-plate__title {
    color: #fff;
}

/* BUTTONS */

.primary-btn {
    height: 70px;
    border-radius: 4px;
    background: var(--primary-orange);

    font-weight: 700;
    font-size: 18px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
    color: #fff;

    max-width: 345px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media(any-hover: hover) {
    .primary-btn:hover {
        background: var(--sub-orange);
        color: white;
    }
}

.slider-btn {
    width: 60px;
    aspect-ratio: 1 / 1;
    display: flex;
    border-radius: 50%;
    box-shadow: 0 0 8px 0 #00000024;
    background-color: rgba(104, 153, 216, .3);
    background-image: url(/tpls/images/program/eco-system/icons/slider-chevron.svg);
    background-size: 13px;
    background-position: center;
}

.slider-btn[data-slide="next"] {
    transform: rotate(180deg);
}

@media(any-hover: hover) {
    .slider-btn:hover {
        background-color: var(--dark-blue);
        background-color: rgba(104, 153, 216, 1);
    }
}

/* LINE TABS */

.line-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.line-tabs--green {
    --tabs-color: var(--green);
}

.line-tabs--blue {
    --tabs-color: var(--blue);
}

.line-tabs__item {
    border-radius: 45px;
    padding: 12.5px 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
    color: var(--tabs-color);
    border: 2px solid var(--tabs-color);
    white-space: nowrap;
}

.line-tabs__item.active {
    background: var(--tabs-color);
    color: #fff;
}

@media(any-hover: hover) and (min-width: 768px) {
    .line-tabs__item:hover {
        background: var(--tabs-color);
        color: #fff;
    }
}

@media(max-width: 1439px) {
    .line-tabs__item {
        font-size: 14px;
        padding: 14px 10px;
    }
}

@media(max-width: 767px) {
    .line-tabs__item {
        padding: 0;
        background: none !important;
        color: var(--tabs-color) !important;
        border: none;
        pointer-events: none;
        white-space: wrap;
        text-align: left;
    }

    .line-tabs__item:not(.line-tabs__item.active) {
        display: none;
    }
}

/* PAG */

.pag {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
}

.pag__item {
    height: 3px;
    border-radius: 2px;
    background: #C2C2C2;
    width: 100%;
    transition: .4s all;
}

.pag__item.active {
    background: var(--step-color);
}

/* CITY BG */

.city-bg {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 700px;
    background: url(/tpls/images/program/eco-system/city-bg.jpg) center / cover no-repeat;
    filter: blur(6px);
}

@media(max-width: 1023px) {
    .city-bg {
        filter: blur(3px);
    }
}

@media(max-width: 767px) {
    .city-bg {
        height: 449px;
        filter: blur(1px);
    }
}

/* PROMO */

.promo {
    padding: 149px 0 207px;
    background: url(/tpls/images/program/eco-system/promo/bg.jpg) center / cover no-repeat;
    position: relative;
}

.promo__wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo__wrapper > * {
    position: relative;
    z-index: 2;
}

.promo__descr {
    margin-top: 15px;
}

.promo__btn {
    margin-top: 370px;
}

.promo__images > * {
    position: absolute;
}

.promo__radius {
    left: calc(111 / 1920 * 100%);
    top: calc(348 / 1010 * 100%);
}

.promo__radius-rotate {
    right: calc(93 / 1920 * 100%);
    bottom: calc(71 / 1010 * 100%);
    width: 161px;
    transform: rotate(180deg);
}

.promo__diagram-mini {
    left: calc(482 / 1920 * 100%);
    top: calc(33 / 1010 * 100%);
}

.promo__diagram-big {
    right: calc(155 / 1920 * 100%);
    top: calc(217 / 1010 * 100%);
}

.promo__images-left {
    left: calc(135 / 1920 * 100%);
    bottom: calc(226 / 1010 * 100%);
    display: flex;
    flex-direction: column;
    gap: 51px;
    align-items: flex-end;
}

.images-left__bottom {
    margin-right: 45px;
}

.images-left__dotted {
    position: absolute;
    content: url(/tpls/images/program/eco-system/promo/absolute/dotted-top.svg);
    right: -30px;
    top: 95px;
}

.promo__images-right {
    right: calc(67 / 1920 * 100%);
    bottom: calc(180 / 1010 * 100%);
    display: flex;
    flex-direction: column;
    gap: 81px;
    align-items: flex-end;
}

.images-right__bottom {
    margin-right: 218px;
}

.images-right__dotted {
    position: absolute;
    content: url(/tpls/images/program/eco-system/promo/absolute/dotted-right.svg);
    left: 90px;
    top: 50px;
}

.images-left__bottom--mobile {
    display: none;
}

@media(max-width: 1919px) {
    .promo {
        padding: 123px 0 207px;
    }

    .promo__title {
        max-width: 1245px;
    }

    .promo__title br {
        display: none;
    }

    .promo__descr {
        font-size: 30px;
    }

    .promo__btn {
        margin-top: 313px;
    }

    .promo__diagram-mini {
        left: calc(125 / 1440 * 100%);
        top: calc(75 / 1010 * 100%);
    }

    .promo__diagram-big {
        right: calc(34 / 1440 * 100%);
        top: calc(51 / 1010 * 100%);
        height: 140px;
    }

    .promo__radius {
        left: calc(48 / 1440 * 100%);
        top: calc(469 / 1010 * 100%);
    }

    .promo__images-left {
        left: calc(72 / 1440 * 100%);
        bottom: calc(105 / 1010 * 100%);
    }

    .promo__images-right {
        gap: 58px;
        bottom: auto;
        top: calc(403 / 1010 * 100%);
        right: calc(77 / 1440 * 100%);
    }

    .images-right__top,
    .images-right__bottom {
        width: 174px;
    }

    .images-right__dotted {
        width: 86px;
        top: 35px;
        left: 125px;
    }

    .promo__radius-rotate {
        right: calc(58 / 1440 * 100%);
        bottom: calc(59 / 1010 * 100%);
        width: 161px;
        transform: rotate(180deg);
    }
}

@media(max-width: 1439px) {
    .promo {
        padding: 88px 0 117px;
    }

    .promo__title {
        max-width: 964px;
    }

    .promo__btn {
        margin-top: 353px;
    }

    .promo__diagram-mini {
        left: 49px;
        top: 25px;
    }

    .promo__diagram-big {
        top: auto;
        right: 129px;
        bottom: 119px;
    }

    .promo__radius {
        width: 124px;
        top: auto;
        left: calc(124 / 1024 * 100%);
        bottom: calc(50 / 866 * 100%);
    }

    .promo__radius-rotate {
        transform: none;
        width: 125px;
        bottom: auto;
        top: 16px;
        right: 27px;
    }

    .promo__images-left {
        gap: 52px;
        left: calc(44 / 1024 * 100%);
        bottom: calc(237 / 866 * 100%);
    }

    .images-left__top {
        width: 76px;
    }

    .images-left__dotted {
        width: 86px;
        top: 35px;
        right: 92px;
        content: url(/tpls/images/program/eco-system/promo/absolute/dotted-right.svg);
    }

    .images-left__bottom {
        display: none;
    }

    .images-left__bottom--mobile {
        display: block;
        margin-right: 100px;
        width: 173px;
    }

    .promo__images-right {
        right: calc(45 / 1024 * 100%);
        top: calc(391 / 866 * 100%);
    }

    .images-right__top,
    .images-right__dotted {
        display: none;
    }

    .images-right__bottom {
        margin: 0;
    }
}

@media(max-width: 1023px) {
    .promo {
        padding: 50px 0 75px;
    }

    .promo__descr {
        font-size: 28px;
        margin-top: 38px;
    }

    .promo__btn {
        margin-top: 318px;
    }

    .promo__diagram-mini,
    .promo__radius,
    .promo__images-right {
        display: none;
    }

    .promo__radius-rotate {
        right: 20px;
        top: calc(197 / 830 * 100%);
    }

    .promo__diagram-big {
        right: 31px;
        bottom: 75px;
    }

    .promo__images-left {
        left: 30px;
        bottom: calc(204 / 830 * 100%);
    }
}

@media(max-width: 767px) {
    .promo {
        padding: 86px 0 77px;
    }

    .promo__wrapper {
        align-items: flex-start;
    }

    .promo__images {
        display: none;
    }

    .promo__title {
        text-align: left;
    }

    .promo__descr {
        margin-top: 28px;
        font-size: 24px;
    }

    .promo__btn {
        max-width: 100%;
        margin-top: 319px;
    }
}

@media(max-width: 479px) {
    .promo {
        padding: 85px 0 64px;
    }

    .promo__descr {
        margin-top: 14px;
        font-size: 18px;
        max-width: 268px;
    }

    .promo__btn {
        margin-top: 286px;
    }
}

/* CONTROL */

.control {
    padding: 100px 0 137px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.control::before,
.control::after {
    position: absolute;
    overflow: hidden;
}

.control::before {
    content: url(/tpls/images/program/eco-system/control/bg-dots/left.svg);
    bottom: 61px;
    left: 73px;
}

.control::after {
    content: url(/tpls/images/program/eco-system/control/bg-dots/right.svg);
    bottom: -8px;
    right: 205px;
}

.control__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control__wrapper > * {
    position: relative;
    z-index: 1;
}

.control__title {
    max-width: 1055px;
}

.control__descr {
    margin-top: 20px;
}

.control__items {
    margin-top: 152px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.control-card a {
    display: flex;
    flex-direction: column;
}
.control-card {
    background: var(--dark-sub-bg);
    border-radius: 16px;
    padding: 20px 15px;
    position: relative;
}

.control-card:last-child {
    background: var(--green);
}

.control-card__header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.control-card__icon {
    background: #fff;
    min-width: 45px;
    max-width: 45px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4.9px 12.6px 0 #0000001A;
    border-radius: 14px;
    display: flex;
}

.control-card__icon img {
    margin: auto;
}

.control-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #fff;
}

.control-card__descr {
    margin-top: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 1%;
    color: var(--light-gray);
}

.control-card__line {
    height: 27px;
    border: 3px solid var(--green);
    position: absolute;
}

.control-card__line--top {
    bottom: 100%;
    left: 268px;
    width: 363px;
    border-radius: 8px 8px 0 0;
    border-bottom-width: 0;
}

.control-card__line--bottom {
    top: 100%;
    left: 282px;
    width: 359px;
    border-radius: 0 0 8px 8px;
    border-top-width: 0;
}

@media(max-width: 1919px) {
    .control {
        padding: 102px 0 236px;
    }

    .control::before {
        height: 399px;
        bottom: 109px;
        left: -62px;
    }

    .control::after {
        bottom: 12px;
        right: 110px;
    }

    .control__items {
        margin-top: 82px;
    }
}

@media(max-width: 1439px) {
    .control {
        padding: 90px 0 194px;
    }

    .control::before {
        rotate: 90deg;
        width: 478px;
        height: 278px;
        bottom: 250px;
        left: -118px;
    }

    .control::after {
        width: 434px;
        height: 274px;
        bottom: 94px;
        right: -7px;
    }

    .control__title {
        max-width: 773px;
    }

    .control__descr {
        margin-top: 24px;
    }

    .control__items {
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
    }

    .control-card__line {
        display: none;
    }
}

@media(max-width: 1023px) {
    .control {
        padding: 90px 0 100px;
    }

    .control__title {
        max-width: 700px;
    }

    .control::before,
    .control::after {
        content: none;
    }
}

@media(max-width: 767px) {
    .control {
        padding: 100px 0 50px;
    }

    .control__descr {
        margin-top: 15px;
    }

    .control__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width: 479px) {
    .control {
        padding: 50px 0;
    }

    .control__descr {
        margin-top: 18px;
        font-size: 16px;
        text-align: center;
        font-weight: 400;
    }

    .control__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* MANAGE */

.manage {
    padding: 108px 0 135px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.manage__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.manage__items,
.manage__directions {
    max-width: 1183px;
    width: 100%;
}

.manage__items {
    margin-top: 68px;
    display: flex;
    gap: 35px;
    padding: 35px 20px;
    border-radius: 16px;
    border: 2px dashed #000;
    position: relative;
}

.manage__items-before {
    position: absolute;
    left: 20px;
    top: -23px;
}

.manage__item {
    height: 58px;
    width: 259.5px;
    border-radius: 16px;
    background: var(--green);
    font-weight: 600;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 1%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manage__directions {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.direction-card {
    height: fit-content;
    padding: 20px;
    border-radius: 16px;
    border: 2px dashed #C2C2C2;
}

.direction-card__title {
    height: 58px;
    background: var(--primary-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.direction-card__items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction-card__item {
    padding: 20px 20.5px;
    background: transparent;
    border: 1px solid var(--dark-sub-bg);
    color: var(--dark-sub-bg);
    border-radius: 16px;
}

@media(any-hover: hover) {
    .direction-card__item:hover {
        background: #000;
        color: #fff;
    }
}

@media(max-width: 1919px) {
    .manage {
        padding: 100px 0 145px;
    }
}

@media(max-width: 1023px) {
    .manage {
        padding: 60px 0 100px;
    }

    .manage__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 25px;
    }

    .manage__item {
        width: 100%;
    }

    .manage__directions {
        gap: 24px;
    }

    .direction-card {
        padding: 15px;
    }

    .direction-card__title {
        height: 76px;
    }

    .direction-card__items {
        margin-top: 30px;
    }

    .direction-card__item {
        padding: 20px 9.5px;
    }
}

@media(max-width: 767px) {
    .manage__items {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .manage__directions {
        margin-top: 45px;
        grid-template-columns: repeat(1, 1fr);
    }

    .direction-card__title {
        height: 50px;
    }

    .direction-card__item {
        font-size: 14px;
    }
}

@media(max-width: 479px) {
    .manage {
        padding: 50px 0 142px;
    }

    .manage__items {
        margin-top: 58px;
    }
}

/* SOLUTION */

.solution {
    padding: 84px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

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

.solution__img {
    display: block;
    margin: 44px auto 0 auto;
}

.solution__dotts {
    position: absolute;
}

.solution__dotts:first-child {
    left: calc(222 / 1920 * 100%);
    top: 279px;
}
.solution__dotts:nth-child(2) {
    bottom: 0;
    right: calc(515 / 1920 * 100%);
}
.solution__dotts:nth-child(3) {
    right: calc(159 / 1920 * 100%);
    top: 200px;
}

.solution__items {
    display: none;
}

@media(max-width: 1919px) {
    .solution__img {
        margin-top: 30px;
    }

    .solution__dotts:first-child {
        left: calc(30 / 1440 * 100%);
        top: 295px;
    }
    .solution__dotts:nth-child(2) {
        right: calc(257 / 1440 * 100%);
    }
    .solution__dotts:nth-child(3) {
        right: -189px;
        top: 216px;
    }
}

@media(max-width: 1439px) {
    .solution__img {
        margin-top: 45px;
    }

    .solution__dotts {
        object-fit: cover;
    }

    .solution__dotts:first-child {
        left: 0;
        top: 202px;
        height: 403px;
        width: 533px;
    }
    .solution__dotts:nth-child(2) {
        right: auto;
        width: 471px;
        left: calc(113 / 1024 * 100%);
    }
    .solution__dotts:nth-child(3) {
        right: 0;
        top: 172px;
        width: 338px;
        height: 669px;
    }
}

@media(max-width: 1023px) {
    .solution {
        padding: 90px 0 70px;
    }

    .solution__title {
        max-width: 708px;
    }

    .solution__title br {
        display: none;
    }

    .solution__dotts {
        display: none;
    }

    .solution__img {
        margin-top: 35px;
    }
}

@media(max-width: 767px) {
    .solution {
        padding: 50px 0;
    }

    .solution__title {
        text-align: left;
    }

    .solution__img {
        margin-top: 40px;
    }

    .solution__items {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .solution__item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 10px;
        background: var(--dark-sub-bg);
        border-radius: 16px;
    }

    .solution__item-icon {
        width: 45px;
        height: 45px;
        display: flex;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 4.9px 12.6px 0 rgba(0, 0, 0, 0.1);
    }

    .solution__item-icon img {
        margin: auto;
        width: 26px;
    }

    .solution__item-text {
        width: calc(100% - 61px);
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 1%;
        color: #fff;
    }
}

@media(max-width: 479px) {
    .solution__img {
        margin-top: 35px;
    }
}

/* BANNER */

.banner {
    padding: 160px 0 90px;
    background: var(--dark-bg);
}

.banner__wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.banner__title {
    max-width: 790px;
}

.banner__btn {
    margin-top: 55px;
}

.banner__btn::after {
    content: url(/tpls/images/program/eco-system/icons/pdf.svg);
    width: 24px;
    height: 24px;
}

.banner__img {
    width: 560px;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.banner__img--mobile {
    display: none;
}

@media(max-width: 1919px) {
    .banner {
        padding: 150px 0 75px;
    }
}

@media(max-width: 1439px) {
    .banner {
        padding: 100px 0 75px;
    }

    .banner__wrapper {
        padding: 52px 20px;
    }

    .banner__title {
        max-width: 630px;
    }

    .banner__img {
        right: -166px;
    }
}

@media(max-width: 1023px) {
    .banner {
        padding: 70px 0;
    }

    .banner__img {
        right: -377px;
    }
}

@media(max-width: 767px) {
    .banner {
        padding: 50px 0;
    }

    .banner__wrapper {
        padding: 0 20px 52px 20px;
    }

    .banner__title {
        margin-top: 18px;
        max-width: 350px;
    }

    .banner__btn {
        margin-top: 24px;
        max-width: 100%;
    }

    .banner__img {
        display: none;
    }

    .banner__img--mobile {
        display: block;
        position: static;
        transform: none;
        width: 560px;
        margin-left: -44px;
        margin-top: -96px;
        max-width: none;
    }
}

@media(max-width: 479px) {
    .banner__wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* STEPS */

.steps {
    padding: 90px 0 104px;
    background: var(--dark-bg);
}

.steps__items {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    width: 100%;
    border-radius: 25px;
    padding: 33px 55px 29px 55px;
    overflow: hidden;
}

.step--dark {
    background: var(--dark-sub-bg);
    --step-color: var(--green);
}
.step--dark .step__title {
    color: #fff;
}

.step--white {
    background: #fff;
    --step-color: var(--blue);
}
.step--white .step__title {
    color: #000;
}

.step__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: 1%;
}

.step__tabs {
    margin-top: 30px;
}

.step__slides {
    margin-top: 20px;
}

.step__slide:not(.step__slide.active) {
    display: none;
}

.step__nav {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

.step__nav-btn {
    box-shadow: none;
    width: 51px;
    background-color: var(--step-color);
}

.slide-step {
    border-radius: 17px;
    padding: 40px 50px 40px 67px;
    display: flex;
    align-items: flex-start;
    aspect-ratio: 1269 / 714;
    position: relative;
    overflow: hidden;
}

.slide-step >*:not(.slide-step__bg) {
    position: relative;
    z-index: 2;
}

.slide-step::before {
    position: absolute;
    z-index: 1;
}
.slide-step--gradient::before {
    content: url(/tpls/images/program/eco-system/steps/bg/gradient.svg);
    transform: rotate(-105deg);
    top: -493px;
    right: -500px;
}
.slide-step--lines-right::before {
    content: url(/tpls/images/program/eco-system/steps/bg/lines.svg);
    transform: rotate(-105deg);
    top: -250px;
    right: -250px;
}
.slide-step--lines-left::before {
    content: url(/tpls/images/program/eco-system/steps/bg/lines.svg);
    transform: rotate(-60deg);
    top: -270px;
    right: -350px;
}
.slide-step--lines-bottom::before {
    content: url(/tpls/images/program/eco-system/steps/bg/lines.svg);
    left: -15px;
    bottom: -450px;
}

.slide-step--horizontal {
    justify-content: space-between;
    flex-direction: row;
    gap: 22px;
}
.slide-step--vertical {
    flex-direction: column;
    gap: 55px;
}

/* WHITE */
.slide-step--white {
    background: #F8F8F8;
}
.slide-step--white > * {
    color: var(--dark-sub-bg);
}

/* DARK */
.slide-step--dark {
    background: #051E25;
}
.slide-step--dark > *:not(li) {
    color: #fff;
}
.slide-step--dark li {
    color: #14F1C4;
}

.slide-step__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.slide-step__content:not(.slide-step__content--full) {
    max-width: 650px;
}

.slide-step__content-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.slide-step span {
    padding: 15px;
    border-radius: 15px;
    background: var(--dark-sub-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: calc(20 / 16 * 100%);
    color: #14F1C4;
}

/* ELEMS */
.slide-step h3,
.slide-step h4,
.slide-step h5 {
    font-weight: 900;
    line-height: calc(43 / 35 * 100%);
    letter-spacing: 0%;
}

.slide-step h3 {
    font-size: 35px;
}

.slide-step h4 {
    font-size: 19px;
}

.slide-step h5 {
    font-size: 17px;
}

.slide-step ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slide-step li {
    padding-left: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: calc(20 / 16 * 100%);
    letter-spacing: 1%;
    position: relative;
}

.slide-step li::before {
    content: "";
    position: absolute;
    left: 10.5px;
    top: 10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.slide-step__images {
    display: flex;
}
.slide-step img {
    max-width: none;
}

.slide-step__images--vertical {
    flex-direction: column;
    align-items: flex-start;
}
.slide-step__images--horizontal {
    margin-top: auto;
    flex-direction: row;
}

.slide-step--horizontal .slide-step__images {
    padding-top: 73px;
    gap: 12px;
}
.slide-step--horizontal .slide-step__images--horizontal {
    gap: 26px;
    margin-top: 0;
}
.slide-step--vertical .slide-step__images {
    gap: 20px;
}

.slide-step p {
    font-weight: 600;
    font-size: 14px;
    line-height: calc(17 / 14 * 100%);
}

@media(max-width: 1919px) {
    .steps {
        padding: 75px 0 100px;
    }
}

@media(max-width: 1439px) {
    .step {
        padding: 30px 30px 34px 30px;
    }

    .step__title {
        font-size: 36px;
    }

    .step__tabs {
        margin-top: 40px;
    }

    .step__slides {
        margin-top: 25px;
    }


    .slide-step {
        padding: 40px 30px 30px 25px;
        aspect-ratio: 904 / 509;
    }

    .slide-step--vertical {
        gap: 25px;
    }

    .slide-step__content {
        gap: 25px;
    }

    .slide-step h3 {
        font-size: 28px;
    }

    .slide-step h4 {
        font-size: 16px;
    }

    .slide-step span {
        width: 650px;
    }

    .slide-step p,
    .slide-step li,
    .slide-step span {
        font-size: 14px;
    }

    .slide-step li {
        padding-left: 15.5px;
    }

    .slide-step li::before {
        top: 5.5px;
        left: 6.5px;
        width: 2px;
        height: 2px;
    }

    .slide-step__content:not(.slide-step__content--full) {
        max-width: 470px;
    }

    .slide-step--horizontal .slide-step__content + .slide-step__images--vertical img {
        width: 354px;
    }

    .step:first-child .slide-step:nth-child(3) .slide-step__images img {
        width: 624px;
    }
    .step:first-child .slide-step:nth-child(6) img {
        width: 494px;
    }
    .step:first-child .slide-step:nth-child(7) img {
        width: 751px;
    }

    .step:nth-child(2) .slide-step:nth-child(2) .slide-step__images {
        padding-top: 59px;
    }
    .step:nth-child(2) .slide-step:nth-child(2) img:first-child {
        width: 253px;
    }
    .step:nth-child(2) .slide-step:nth-child(2) img:last-child {
        width: 338px;
    }
    .step:nth-child(2) .slide-step:nth-child(4) img {
        width: 427px;
    }
    .step:nth-child(2) .slide-step:nth-child(3) img {
        width: 624px;
    }
    .step:nth-child(2) .slide-step:nth-child(5) img {
        width: 722px;
    }
    .step:nth-child(2) .slide-step:nth-child(6) img {
        width: 453px;
    }
    .step:nth-child(2) .slide-step:nth-child(7) img {
        width: 251px;
    }
    .step:nth-child(2) .slide-step:nth-child(8) .slide-step__content {
        max-width: 581px !important;
    }
    .step:nth-child(2) .slide-step:nth-child(8) img {
        width: 600px;
    }

    .step:nth-child(3) .slide-step:nth-child(1) .slide-step__images {
        padding-top: 93px;
        padding-right: 80px;
    }
    .step:nth-child(3) .slide-step:nth-child(1) img {
        width: 226px;
    }
    .step:nth-child(3) .slide-step:nth-child(5) img {
        width: 526px;
    }
    .step:nth-child(3) .slide-step:nth-child(6) img {
        width: 468px;
    }
    .step:nth-child(3) .slide-step:nth-child(7) img {
        width: 171px;
    }
    .step:nth-child(3) .slide-step:nth-child(8) img {
        height: 243px;
    }

    .step:nth-child(4) .slide-step:nth-child(2) img {
        width: 442px;
    }
    .step:nth-child(4) .slide-step:nth-child(3) .slide-step__images {
        padding-top: 59px;
    }
    .step:nth-child(4) .slide-step:nth-child(4) img {
        width: 458px;
    }
    .step:nth-child(4) .slide-step:nth-child(5) img {
        width: 455px;
    }
    .step:nth-child(4) .slide-step:nth-child(6) .slide-step__images {
        margin-top: 10px;
    }
    .step:nth-child(4) .slide-step:nth-child(6) img {
        height: 180px;
    }

    .slide-step--horizontal .slide-step__images {
        gap: 10px;
        padding-top: 17px;
    }

    .slide-step--gradient::before {
        width: 520px;
        top: -493px;
        right: -500px;
    }
    .slide-step--lines-right::before {
        width: 1200px;
        top: -300px;
        right: -400px;
    }
    .slide-step--lines-left::before {
        width: 1200px;
        top: -70px;
        right: -190px;
    }
    .slide-step--lines-bottom::before {
        width: calc(960 / 904 * 100%);
        left: -16%;
    }

    .slide-step__images {
        max-height: 100%;
    }
    .slide-step__images img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

@media(max-width: 1023px) {
    .steps {
        padding: 70px 0 75px;
    }

    .steps__items {
        gap: 30px;
    }

    .step__slides {
        margin-top: 30px;
    }

    .slide-step {
        padding: 40px;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 30px !important;
        aspect-ratio: 648 / 650;
    }

    .slide-step__content {
        gap: 15px;
        max-width: 100% !important;
    }

    .slide-step__content img:not(.slide-step__images img) {
        margin-top: 15px;
    }

    .slide-step__content-block {
        flex-direction: column;
        gap: 30px;
    }

    .slide-step h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .slide-step h4 {
        font-size: 12px;
    }

    .slide-step span {
        width: 100%;
    }

    .slide-step__images {
        padding: 0 !important;
        width: 100%;
    }

    .step .slide-step .slide-step__images img,
    .step .slide-step .slide-step__content img {
        width: calc(100% - 15px);
        height: auto !important;
        max-width: 100% !important;
    }

    .step:first-child .slide-step:first-child img:last-child {
        display: none;
    }
    .step:first-child .slide-step:nth-child(2) img {
        width: 462px;
    }
    .step:first-child .slide-step:nth-child(4) img {
        width: 450px;
    }
    .step:first-child .slide-step:nth-child(5) img:last-child {
        display: none;
    }
    .step:first-child .slide-step:nth-child(5) img {
        width: 540px;
    }

    .step:nth-child(2) .slide-step:first-child img:last-child {
        display: none;
    }
    .step:nth-child(2) .slide-step:nth-child(2) .slide-step__images {
        margin-top: 34px;
    }
    .step:nth-child(2) .slide-step:nth-child(2) img:first-child {
        height: 203px !important;
        object-position: center top;
        border-radius: 10px;
        object-fit: cover;
    }
    .step:nth-child(2) .slide-step:nth-child(2) img:last-child {
        display: none;
    }
    .step:nth-child(2) .slide-step:nth-child(3) .slide-step__images {
        margin-top: 48px;
    }
    .step:nth-child(2) .slide-step:nth-child(6) img {
        margin-top: -10px;
    }
    .step:nth-child(2) .slide-step:nth-child(7) .slide-step__images {
        margin-top: 70px;
    }
    .step:nth-child(2) .slide-step:nth-child(7) img {
        width: calc(50% - 10px);
    }
    .step:nth-child(2) .slide-step:nth-child(7) img:nth-child(3) {
        display: none;
    }

    .step:nth-child(3) .slide-step:nth-child(1) .slide-step__images {
        margin-top: -10px;
    }
    .step:nth-child(3) .slide-step:nth-child(1) img {
        width: 283px;
    }
    .step:nth-child(3) .slide-step:nth-child(3) .slide-step__images {
        justify-content: flex-end;
        margin-top: -10px;
    }
    .step:nth-child(3) .slide-step:nth-child(3) img {
        width: 187px;
    }
    .step:nth-child(3) .slide-step:nth-child(4) img {
        width: 423px;
    }
    .step:nth-child(3) .slide-step:nth-child(6) img {
        width: 468px;
    }
    .step:nth-child(3) .slide-step:nth-child(7) .slide-step__images {
        margin-top: 13px;
    }
    .step:nth-child(3) .slide-step:nth-child(7) img {
        width: 171px;
    }
    .step:nth-child(3) .slide-step:nth-child(8) .slide-step__images {
        margin-top: 40px;
    }

    .step:nth-child(4) .slide-step:first-child img {
        width: 480px;
    }
    .step:nth-child(4) .slide-step:first-child img:last-child {
        display: none;
    }
    .step:nth-child(4) .slide-step:nth-child(2) img {
        margin-top: 10px;
    }
    .step:nth-child(4) .slide-step:nth-child(3) .slide-step__images {
        margin-top: 10px;
    }
    .step:nth-child(4) .slide-step:nth-child(5) img:last-child {
        display: none;
    }
    .step:nth-child(4) .slide-step:nth-child(6) .slide-step__images {
        flex-direction: column;
    }
    .step:nth-child(4) .slide-step:nth-child(6) img {
        width: 466px;
    }

    .slide-step--gradient::before {
        top: 205px;
        right: 0;
        transform: none;
    }
    .slide-step--lines-right::before,
    .slide-step--lines-left::before,
    .slide-step--lines-bottom::before  {
        inset: auto;
        transform: rotate(-29deg);
        bottom: -490px;
        left: -355px;
    }
}

@media(min-width: 768px) {
    .step__nav,
    .step__pagination {
        display: none;
    }
}

@media(max-width: 767px) {
    .steps {
        padding: 50px 0 80px;
    }

    .step {
        padding: 25px 15px;
    }

    .step__title {
        font-size: 28px;
    }

    .step__tabs {
        margin-top: 25px;
    }

    .step__pagination {
        margin-top: 21px;
    }

    .step__slides {
        margin-top: 12px;
    }


    .slide-step {
        padding: 20px;
        aspect-ratio: 390 / 524;
        gap: 20px !important;
    }

    .slide-step::before {
        content: none;
    }

    .slide-step ul {
        gap: 5px;
    }

    .step .slide-step img {
        width: 100% !important;
    }

    .slide-step__content img:not(.slide-step__images img) {
        margin-top: 0;
    }

    .slide-step__content-block {
        gap: 20px;
    }

    .step:first-child .slide-step:nth-child(3) .slide-step__images {
        margin-top: 45px;
    }
    .step:first-child .slide-step:nth-child(6) h3 {
        margin-bottom: 22px;
    }
    .step:first-child .slide-step:nth-child(7) img {
        margin-top: 52px;
    }

    .step:nth-child(2) .slide-step:first-child .slide-step__images {
        display: none;
    }
    .step:nth-child(2) .slide-step:nth-child(2) .slide-step__images {
        margin-top: 19px;
    }
    .step:nth-child(2) .slide-step:nth-child(2) img:first-child {
        height: 131px !important;
        border-radius: 5px;
    }
    .step:nth-child(2) .slide-step:nth-child(3) .slide-step__images {
        margin-top: 10px;
    }
    .step:nth-child(2) .slide-step:nth-child(4) .slide-step__images {
        margin-top: 30px;
    }
    .step:nth-child(2) .slide-step:nth-child(5) .slide-step__images {
        margin-top: 20px;
    }
    .step:nth-child(2) .slide-step:nth-child(6) img {
        display: none;
    }
    .step:nth-child(2) .slide-step:nth-child(7) .slide-step__images {
        margin-top: 5px;
    }
    .step:nth-child(2) .slide-step:nth-child(7) img:nth-child(2) {
        display: none;
    }
    .step:nth-child(2) .slide-step:nth-child(7) img {
        width: 100%;
    }
    .step:nth-child(2) .slide-step:nth-child(8) img {
        margin-top: 43px;
    }

    .step:nth-child(3) .slide-step:nth-child(1) img {
        width: 212px !important;
    }
    .step:nth-child(3) .slide-step:nth-child(3) .slide-step__images {
        margin-top: 10px;
        justify-content: center;
    }
    .step:nth-child(3) .slide-step:nth-child(3) img {
        width: 187px !important;
    }
    .step:nth-child(3) .slide-step:nth-child(4) img:last-child {
        display: none;
    }
    .step:nth-child(3) .slide-step:nth-child(5) img {
        margin-top: 30px;
    }
    .slide-step--horizontal .slide-step__images {
        margin-top: 15px;
    }
    .step:nth-child(3) .slide-step:nth-child(7) .slide-step__images {
        margin-top: 0;
        justify-content: center;
        gap: 18px;
        padding: 0 10px !important;
    }
    .step:nth-child(3) .slide-step:nth-child(7) img {
        width: calc(50% - 9px) !important;
    }
    .step:nth-child(3) .slide-step:nth-child(8) .slide-step__images {
        margin-top: 33px;
    }
    .step:nth-child(3) .slide-step:nth-child(8) img:first-child {
        display: none;
    }

    .slide-step--horizontal .slide-step__images {
        margin-top: 0;
    }

    .step:nth-child(4) .slide-step:nth-child(2) img {
        margin-top: 20px;
    }
    .step:nth-child(4) .slide-step:nth-child(6) .slide-step__images {
        margin-top: 0;
    }
}

@media(max-width: 479px) {
    .steps {
        padding: 50px 0;
    }

    .step {
        padding: 20px 10px;
    }

    .step__title {
        font-size: 25px;
    }

    .slide-step {
        padding: 15px 10px;
        aspect-ratio: 300 / 498;
    }

    .step .slide-step .slide-step__images,
    .step .slide-step img {
        margin-top: 0 !important;
    }

    .step:first-child .slide-step:nth-child(5) .slide-step__images,
    .step:first-child .slide-step:nth-child(7) img {
        display: none;
    }

    .step:nth-child(2) .slide-step:nth-child(3) .slide-step__images {
        display: none;
    }

    .step:nth-child(3) .slide-step:nth-child(1) img {
        width: 186px !important;
        margin: 0 auto;
    }
    .step:nth-child(3) .slide-step:nth-child(7) .slide-step__images {
        padding: 0 !important;
    }

    .step:nth-child(4) .slide-step:first-child .slide-step__images {
        display: none;
    }
    .step:nth-child(4) .slide-step:nth-child(2) img {
        margin-top: 45px !important;
    }
    .step:nth-child(4) .slide-step:nth-child(3) .slide-step__images {
        margin-top: 25px !important;
    }
    .step:nth-child(4) .slide-step:nth-child(4) .slide-step__images {
        margin-top: 18px !important;
    }
}

/* VIDEO */

.video {
    padding: 100px 0 80px;
}

.video__wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 590px;
    background: var(--dark-bg);
}

.video__player {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.video__control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 61px;

    width: 100%;
    padding: 0 89.5px 0 32px;

    position: absolute;
    bottom: 31px;
    left: 0;
    z-index: 4;
}

.video__play {
    width: 36px;
    height: 36px;
    display: flex;
}

.video__play.active [data-action="pause"] {
    display: block;
}

.video__play [data-action="pause"],
.video__play.active [data-action="play"] {
    display: none;
}

.video__play img {
    margin: auto;
    max-height: 100%;
}

.video__input {
    height: 5px;
    border-radius: 5px;
    background: #FFFFFF;
    opacity: 0.2;
}

@media(max-width: 1439px) {
    .video {
        padding: 100px 0 50px;
    }

    .video__wrapper {
        height: 412px;
    }
}

@media(max-width: 1023px) {
    .video {
        padding: 70px 0 45px;
    }
}

@media(max-width: 767px) {
    .video {
        padding: 80px 0 45px;
    }

    .video__wrapper {
        height: 367px;
    }

    .video__control {
        gap: 23px;
        padding: 0 23px 0 13px;
    }
}

@media(max-width: 479px) {
    .video {
        padding: 70px 0 45px;
    }

    .video__wrapper {
        height: 280px;
    }

    .video__control {
        gap: 17px;
        padding: 0 18px 0 10px;
    }

    .video__play {
        width: 19px;
        height: 19px;
    }
}

/* BIG BANNER */

.big-banner {
    padding-top: 80px;
}

.big-banner__wrapper {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 40px 48px;
    background: linear-gradient(270deg, #031F29 0%, #02303D 100%);
}

.big-banner__wrapper > *:not(.big-banner__img) {
    position: relative;
    z-index: 2;
}

.big-banner__img {
    position: absolute;
    right: -222px;
    top: -77px;
    width: 819px;
}

.big-banner__title {
    max-width: 955px;
}

.big-banner__descr {
    margin-top: 22px;
    max-width: 612px;
}

.big-banner__btn {
    margin-top: 40px;
}

.big-banner__accept {
    margin-top: 16px;
    max-width: 401px;
}

@media(max-width: 1439px) {
    .big-banner {
        padding-top: 50px;
    }

    .big-banner__wrapper {
        padding: 35px 20px;
    }

    .big-banner__img {
        width: 795px;
        right: -313px;
    }

    .big-banner__title {
        max-width: 752px;
    }

    .big-banner__descr {
        margin-top: 37px;
    }
}

@media(max-width: 1023px) {
    .big-banner__img {
        width: 560px;
        top: 98px;
        right: -201px;
    }
}

@media(max-width: 767px) {
    .big-banner {
        padding-top: 185px;
        overflow: hidden;
    }

    .big-banner__wrapper {
        overflow: visible;
        padding: 205px 20px 30px 20px;
    }

    .big-banner__descr {
        margin-top: 19px;
        font-size: 16px;
    }

    .big-banner__btn {
        margin-top: 50px;
        max-width: 100%;
    }

    .big-banner__img {
        top: -168px;
        right: 50%;
        transform: translate(50%);
        max-width: none;
    }
}

@media(max-width: 479px) {
    .big-banner {
        padding-top: 127px;
    }

    .big-banner__wrapper {
        padding: 181px 10px 20px 10px;
    }

    .big-banner__descr {
        margin-top: 15px;
    }

    .big-banner__btn {
        margin-top: 30px;
    }

    .big-banner__img {
        width: 457px;
        top: -124px;
    }
}

/* CASES */

.cases {
    padding: 154px 0 160px;
    position: relative;
    overflow: hidden;
}

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

.cases .container > * {
    position: relative;
    z-index: 2;
}

.cases__wrapper {
    margin-top: 50px;
}

.swiper-cases__btn {
    position: absolute;
    z-index: 2;
    top: 50%;
}

.swiper-cases__btn[data-slide="prev"] {
    right: calc(100% + 25px);
    transform: translateY(-50%);
}

.swiper-cases__btn[data-slide="next"] {
    left: calc(100% + 25px);
    transform: translateY(-50%) rotate(180deg);
}

@media(max-width: 1919px) {
    .swiper-cases__btn[data-slide="prev"] {
        right: auto;
        left: 5px;
    }

    .swiper-cases__btn[data-slide="next"] {
        left: auto;
        right: 5px;
    }
}

@media(max-width: 1439px) {
    .cases {
        padding: 100px 0 150px;
    }

    .swiper-cases {
        width: calc(100% + 60px);
        margin-left: -30px;
        padding-left: 30px;
    }

    .swiper-cases .swiper-slide {
        width: fit-content;
    }

    .swiper-cases__nav {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }

    .swiper-cases__btn {
        position: static;
        transform: none !important;
    }

    .swiper-cases__btn[data-slide="next"] {
        transform: rotate(180deg) !important;
    }
}

@media(max-width: 1023px) {
    .cases {
        padding: 95px 0 130px;
    }
}

@media(max-width: 767px) {
    .cases {
        padding: 130px 0 135px;
    }

    .cases__wrapper {
        margin-top: 40px;
    }
}

@media(max-width: 479px) {
    .cases {
        padding: 100px 0 130px;
    }
}

/* CASE CARD */

.case-card {
    padding: 20px 15px;
    background: var(--dark-sub-bg);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.case-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-card__logo {
    width: 61px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4.9px 12.6px 0 #0000001A;
    display: flex;
    padding: 5px 6px;
}

.case-card__logo img {
    margin: auto;
    max-height: 100%;
}

.case-card__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    max-width: calc(100% - 77px);
}

.case-card__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--light-gray);
}

.case-card__link {
    margin-top: auto;
}

@media(max-width: 1439px) {
    .case-card {
        width: 330px;
    }
}

@media(max-width: 479px) {
    .case-card {
        width: 270px;
    }
}