.hero-title {
    padding: 80px 0 40px;
}

.hero-title .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 70px;
    gap: 12px;
}

.hero-title .content .small-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    opacity: .4;
    text-transform: uppercase;
}

.hero-title .content .big-title,
.hero-title .content .big-title * {
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-title .content .middle-title,
.hero-title .content .middle-title * {
    font-size: 40px;
    line-height: 1.125;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-title .button-link,
.hero-title .button-link svg {
    color: white;
}


.case-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.case-info .tags {
    display: flex;
    gap: 8px;
}

.case-info .tags .tag {
    padding: 6px 12px;
    background-color: rgba(170, 199, 240, 0.25);
    border-radius: 40px;
    font-size: 14px;
    color: rgba(66, 84, 110, 0.5);
}

.case-info .case-date {
    font-size: 20px;
    line-height: 1.125;
    font-weight: 400;
}

.case-success .container .wrapper {
    background-color: rgba(170, 199, 240, 0.95);
    border-radius: 16px;
    padding: 568px 24px 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 306px;
    position: relative;
}

.case-success .archivements {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    width: 43%;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, .14);
}

.case-success .archivements .subtitle {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.case-success .archivements .title {
    font-size: 24px;
    line-height: 1.125;
    font-weight: 400;
    color: white;
    margin-bottom: 24px;
}

.case-success .growth-row {
    display: flex;
    position: relative;
    z-index: 10;
}

.case-success .growth-row .growth .icon-growth {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.case-success .growth-row .growth {
    padding: 20px;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    min-width: 224px;
}

.case-success .growth-row .growth .number {
    font-size: 40px;
    line-height: 1.125;
    font-weight: 400;
    margin-bottom: 4px;
}

.case-success .growth-row .growth .text {
    font-size: 14px;
    line-height: 1.125;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.case-success .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.case-success .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (min-width:968px) {
    .mobile-visible {
        display: none !important;
    }
}

@media (max-width:968px) {
    .mobile-hidden {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    .hero-title {
        padding: 80px 0 40px;
    }

    .hero-title .content {
        gap: 8px;
        margin-bottom: 40px;
    }

    .hero-title .content .small-title {
        display: none;
    }

    .hero-title .content .big-title,
    .hero-title .content .big-title * {
        font-size: 40px;
    }

    .hero-title .content .middle-title,
    .hero-title .content .middle-title * {
        font-size: 20px;
        opacity: .5;
    }

    .case-info {
        align-items: flex-end;
        margin-bottom: 16px;
    }

    .case-info .tags {
        flex-wrap: wrap;
    }

    .case-success .container {
        padding: 0;
    }

    .case-success .container .wrapper {
        border-radius: 0;
        padding: 334px 20px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .case-success .archivements {
        width: 100%;
    }

    .case-success .growth-row .growth {
        min-width: 160px;
    }

    .case-success .bg picture {
        height: 100%;
    }

    .case-success .archivements .title {
        font-size: 20px;
    }

    .button-link {
        font-size: 16px;
    }

    .case-success .growth-row {
        gap: 12px;
        justify-content: space-between;
    }

    .case-success .growth-row .growth {
        background-color: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, .15);
        padding: 16px;
    }

    .case-success .growth-row .growth .icon-growth {
        width: 24px;
        height: 24px;
        margin-bottom: 12px;
    }

    .case-success .growth-row .growth .number {
        font-size: 28px;
        color: white;
    }

    .case-success .growth-row .growth .text {
        font-size: 14px;
        color: white;
        opacity: 0.5;
    }
}

@media (max-width: 360px) {
    .case-success .growth-row .growth {
        min-width: 120px;
    }

    .case-success .growth-row .growth .number {
        font-size: 24px;
    }
}