.tt-gray {
    color: #334155 !important;
}
.gray-bg {
    background-color: #f5f5f5;
}
.w-60 {
    width: 60%;
}
.mb-80 {
    margin-bottom: 80px;
}
.main-service-hero-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.hero-content-area {
    max-width: 750px;
    margin-left: 50px;
    padding-right: 30px;
    z-index: 1;
}
.main-headline-h1 {
    color: #334155;
    font-weight: 400;
    font-size: 50px;
    line-height: 70px;
}
.paragraph {
    color: #334155;
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
}
.sub-headline-h2 {
    color: #03030f;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}
.w-80 {
    width: 80%;
}
.service-hero-tag {
    position: absolute;
    left: -30px;
    bottom: 10%;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 18px 50px -10px #00000033;
    border-radius: 6px;

    width: 90px;          /* 👈 only ONE logo visible */
    height: 70px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-tag .slider-track {
    display: flex;
    gap: 10px;
}

.service-hero-tag .slider-track img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

/* STEP BY STEP SLIDE */
.service-hero-tag .slider-track {
    animation: slide 10s infinite;
}

@keyframes slide {
    0%, 20%   {transform: translateX(160px);}
    25%, 40%  {transform: translateX(80px);}
    45%, 60%  {transform: translateX(0px);}
    65%, 80%  {transform: translateX(-80px);}
    85%, 100% {transform: translateX(-160px);}
}


.hero-img-magic {
    position: relative;
}
.tag-logo {
    width: 80px;
}

.page-template-sub-service-detail .service-hero-tag {
    display: none;
}

/* Service About section */
.service-about-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.service-about-left {
    flex: 1;
    max-width: 60%;
}

.service-about-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.service-cover-title {
    font-size: 38px;
    font-weight: 400;
    color: #03030f;
    margin-bottom: 25px;
}

.service-cover-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-cover-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: #334155;
}

.service-cover-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
}

/* Responsive */

@media (max-width: 1024px) {
    .service-about-wrapper {
        gap: 50px;
    }

    .service-about-left {
        max-width: 100%;
    }

    .service-about-right {
        max-width: 100%;
    }
    .main-service-hero-sec {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .service-about-wrapper {
        flex-direction: column;
    }
}

/* web solutions css */
.web-solutions {
    background: #f5f5f5;
}
.web-solutions-image-sm {
    display: none;
}
.web-solutions-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.web-solutions-left {
    width: 45%;
}

.web-solutions-image img,
.web-solutions-image-sm img {
    width: 100%;
    margin-top: 40px;
}

.web-solutions-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    height: -webkit-fill-available;
}

.solution-item {
    padding-left: 25px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.35s ease;
    margin-left: 30px;
}

.solution-title {
    font-size: 20px;
    color: #03030f;
    font-weight: 500;
    display: flex;
    gap: 25px;
    align-items: center;
}

.solution-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.solution-item.active {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 20px 25px;
    margin-left: 0;
    box-shadow: 72px 36px 104px 0px #0000000f;
}

.solution-item.active .solution-title {
    color: #4192d1;
}

.solution-item.active .solution-content {
    max-height: 200px;
    opacity: 1;
    width: 60%;
}

.solution-content .paragraph {
    margin-bottom: 0;
}

.web-solutions-title-tag {
    font-weight: 600;
    font-size: 100px;
    line-height: 1.2;
    text-transform: lowercase;
    color: #eeeeee;
}

@media (max-width: 1024px) {
    .web-solutions-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .web-solutions-left,
    .web-solutions-right {
        width: 100%;
    }
}

.solution-title::before {
    content: '';
    background: #d9d9d9;
    height: 30px;
    width: 2px;
    display: block;
    border-radius: 8px;
}

.solution-item.active .solution-title::before {
    background: #4192d1;
}

/* success stories css */

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1920px;
    margin: 60px auto 0;
}

/* Card */

.story-card {
    display: block;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Image */

.story-img {
    position: relative;
    overflow: hidden;
}

/* odd cards */

.success-stories-grid .story-card:nth-child(odd) .story-img {
    height: 350px;
}

/* even cards */

.success-stories-grid .story-card:nth-child(even) .story-img {
    height: 450px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}


/* Hover image */

.story-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Overlay */

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.story-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hover show title */

.story-card:hover .story-overlay {
    opacity: 1;
}

/* Stats */

.story-stats {
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 18px 20px;
}

.stat h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #03030f;
}

.stat span {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    color: #7a7a7a;
}

/* Staggered layout */

.success-stories-grid .story-card:nth-child(5),
.success-stories-grid .story-card:nth-child(7) {
    margin-top: -100px;
}

/* Responsive */

@media (max-width: 1200px) {
    .success-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .main-service-hero-sec {
        margin-top: 50px;
    }
}

@media (max-width: 900px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-img {
        height: 300px !important;
    }

    .success-stories-grid .story-card {
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .story-img {
        height: 280px !important;
    }
}

/* Service development process section  */

.development-process-wrapper {
    margin-top: 80px;
}

/* ===== STEPS ===== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 40px;
    align-items: start;
}

/* ===== STEP ===== */

.process-step {
    position: relative;
}

/* ===== RIBBON ===== */

.process-ribbon {
    background: linear-gradient(90deg, #5fa2d8db, #4a8fc9);
    padding: 34px 40px;
    color: #fff;
    font-weight: 600;
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
}

.process-ribbon h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

/* ===== STEP SHAPES ===== */

/* first ribbon */

.step-1 .process-ribbon {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 5% 50%);
}

/* middle ribbons */

.step-2 .process-ribbon,
.step-3 .process-ribbon {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* last ribbon */

.step-4 .process-ribbon {
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

/* ===== RIBBON OVERLAP ===== */

.step-2 {
    margin-left: -60px;
    margin-top: 20px;
}

.step-3 {
    margin-left: -60px;
    margin-top: 40px;
}

.step-4 {
    margin-left: -60px;
    padding-top: 60px;
}

/* ===== FOLD EFFECT ===== */

.process-ribbon::after {
    content: '';
    position: absolute;
    right: -16px;
    top: -16px;
    border-width: 18px;
    border-style: solid;
    border-color: #00000000 transparent rgba(255, 255, 255, 0.35) transparent;
}

/* ===== LIST ===== */

.process-list {
    list-style: none;
    padding: 0;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 35px;
}

/* ===== LIST ITEM ===== */

.process-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: #5f6c7b;
    line-height: 1.6;
}

/* blue line */

.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 22px;
    background: #4a8fc9;
    border-radius: 2px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .process-steps {
        column-gap: 30px;
    }

    .process-ribbon {
        padding: 28px 30px;
    }

    .process-ribbon h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .step-2,
    .step-3,
    .step-4 {
        margin-left: 0;
    }

    .process-ribbon {
        clip-path: none !important;
        border-radius: 6px;
    }

    .process-ribbon::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-list li {
        font-size: 13px;
    }
}

/* development plateforms */
/* platforms grid */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* card */

.platform-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    min-height: 350px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* hover */

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* intro card */

.platform-heading {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.platform-desc {
    color: #6b7785;
    font-size: 15px;
    line-height: 1.7;
}

/* icon */

.platform-icon {
    width: 50px;
    height: 50px;
    background: #020617;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.platform-icon img {
    width: 24px;
}

/* empty card */

.empty-card {
    background: #fafafa;
}

/* responsive */

@media (max-width: 992px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

.platform-card.intro-card {
    display: block !important;
    padding: 40px 20px;
}

.platform-card-title {
    font-weight: 300;
    font-size: 28px;
    line-height: 42px;
    color: #334155;
}

/* service-cta css */
.service-cta {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* CTA wrapper */

.service-cta {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* content */

.service-cta-content {
    max-width: 60%;
}

.service-cta-content .paragraph {
    margin: 20px 0 30px;
}

/* arrow area */

.service-cta-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* outer button */

.cta-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    text-decoration: none;
}

/* inner box */

.cta-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 12px;
    font-size: 26px;
    color: #4192d1;
    transition: 0.3s;
}

/* hover */

.cta-arrow-btn:hover .cta-arrow-box {
    transform: translateX(4px);
}

/* responsive */

@media (max-width: 992px) {
    .service-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cta-action {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .cta-arrow-btn {
        width: 90px;
        height: 90px;
    }

    .cta-arrow-box {
        width: 70px;
        height: 70px;
    }
}

/* why-choose-us section */
/* layout */

.why-choose-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}

/* content */

.why-choose-content {
    max-width: 60%;
}

.why-choose-content .paragraph {
    margin-top: 20px;
}

/* image */

.why-choose-image {
    display: flex;
    justify-content: flex-end;
}

.why-image-wrapper {
    position: relative;
    width: 420px;
}

.why-image-wrapper img {
    max-width: 300px;
}

/* features */

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.feature-item h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #334155;
}

/* button */

.why-choose-btn {
    text-align: center;
    margin-top: 10px;
}

/* responsive */

@media (max-width: 992px) {
    .why-choose-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-image-wrapper {
        width: 100%;
        max-width: 420px;
    }

    .why-choose-features {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .why-choose-features {
        grid-template-columns: 1fr;
    }

    .image-shape {
        display: none;
    }
}

/* indus we serve */
/* industries grid */

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

/* card */

.industry-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f3f3f3;
    padding: 22px 30px;
    border-radius: 6px;
    width: 305px;
}

/* icon */

.industry-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* text */

.industry-item span {
    font-size: 18px;
    font-weight: 300;
    color: #03030f;
}

/* responsive */

@media (max-width: 1200px) {
    .industry-item {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .industries-grid {
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
    }

    .industry-item {
        width: 100%;
        padding: 18px 20px;
    }

    .industry-item span {
        white-space: nowrap;
    }
}

/* our-trusted-brands css */
.trusted-brands-container {
    display: flex;
    gap: 50px;
}

.trusted-brands-image {
    width: 50%;
}

.trusted-brands-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Extra */
.page-template-sub-service-detail .development-process {
    margin-bottom: 80px;
}



/* tech & tools css */
.tech-slider {
    overflow: hidden;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
    gap: 40px;
}

.slider-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.tech-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #eee;
    min-width: 150px;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 4px;
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* responsive css */
@media(max-width: 991px) {
    .main-service-hero-sec {
        margin-top: 100px;
    }
    .py-80 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .pt-80 {
        padding-top: 50px !important;
    }
    .pb-80 {
        padding-bottom: 50px !important;
    }
    .mt-80 {
        margin-top: 50px !important;
    }
    .mb-80 {
        margin-bottom: 50px !important;
    }
    .web-solutions-image img,
    .web-solutions-image-sm img {
        margin-top: 0px;
    }
    .success-stories-grid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media(max-width: 767px) {

    .brand-item img{
        max-width: 100px !important;
    }

    .story-img img {
        filter: unset !important;
    }

    body .section-space {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .main-service-hero-sec {
        margin-top: 0px;
    }
    .main-service-hero-sec > .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .main-headline-h1 {
        font-size: 28px !important;
        line-height: 1.4 !important;
    }
    .paragraph {
        font-size: 14px;
        line-height: 1.5;
    }
    .primary-btn {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
    }
    .hero-content-area {
        margin-top: 50px;
        max-width: unset !important;
        margin-left: unset;
        padding-right: 20px;
        padding-left: 20px;
    }
    .service-hero-tag {
        left: 50% !important;
        transform: translate(-50%) !important;
        bottom: -30px !important;
        padding: 10px 30px !important;
    }
    .service-hero-tag .tag-logo {
        width: 50px;
    }
    .sub-headline-h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    .service-about-section .sub-headline-h2.w-80 {
        width: 100%;
    }
    .service-about-section .paragraph.w-80 {
        width: 100%;
    }
    .service-cover-title {
        font-size: 22px;
    }

    .service-cover-list li {
        font-size: 14px;
    }

    .service-about-section,
    .web-solutions,
    .service-cta,
    .why-choose-us,
    .development-plateforms {
        padding-left: 10px;
        padding-right: 10px;
    }

    .web-solutions-title-tag {
        font-size: 40px;
    }

    .solution-item {
        padding-left: 25px;
        margin-bottom: 30px;
        cursor: pointer;
        transition: all 0.35s ease;
        margin-left: 0;
    }

    .solution-item.active {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: start;
        padding: 15px 20px;
        flex-direction: column;
    }

    .solution-title {
        font-size: 18px;
        gap: 0;
        padding-left: 0;
    }

    .solution-title::before {
        height: 20px;
        display: none;
    }

    .solution-item.active .solution-content {
        max-height: unset;
        opacity: 1;
        width: 100%;
    }
    .web-solutions-right {
        width: 100%;
        gap: 30px;
    }
    .web-solutions-image {
        display: none;
    }
    .web-solutions-image-sm {
        display: block;
    }
    .page-template-sub-service-detail .development-process {
        margin-bottom: 50px;
    }
    .trusted-brands-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .development-process-wrapper {
        margin-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .process-steps {
        row-gap: 20px !important;
    }

    .process-list {
        gap: 18px;
        padding-right: 10px;
        padding-left: 15px;
    }

    .process-ribbon {
        padding: 12px 15px;
        font-weight: 400;
        height: unset;
    }

    .process-step.step-2,
    .process-step.step-3,
    .process-step.step-4 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .process-ribbon h3 {
        font-size: 16px;
    }

    .platforms-grid {
        margin-top: 0px;
    }

    .platform-card {
        background: #fff;
        padding: 20px;
        border: 1px solid #eee;
        min-height: 250px;
    }

    .platform-card-title {
        font-size: 20px;
    }

    .service-cta-content {
        max-width: 100%;
    }

    .service-cta-action {
        display: none;
    }

    .why-choose-top {
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }

    .why-image-wrapper img {
        width: 100%;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .sub-headline-h2.w-60 {
        width: 100%;
    }

    .feature-item h3 {
        font-size: 20px;
    }

    .why-choose-features {
        gap: 10px;
        margin-bottom: 15px;
    }

    .why-choose-btn {
        text-align: left;
        margin-top: 0;
    }

    .trusted-brands-content {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .trusted-brands-image {
        width: 100%;
    }

    .trusted-brands-wrapper img {
        width: 100%;
    }

    .slider-track img {
        height: 50px;
    }

    .web-solutions-wrapper {
        gap: 30px;
    }
    .platforms-grid{
        display:flex;
        overflow-x:auto;
        gap:20px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
    }

    .platforms-grid > *{
        width: 100%;
        flex:0 0 auto;
        scroll-snap-align:start;
    }
}

@media(max-width: 1440px) {
    .main-headline-h1 {
        font-weight: 400;
        font-size: 38px;
        line-height: 60px;
    }
    .main-service-hero-sec {
        min-height: unset;
    }
    .primary-btn {
        padding: 14px 26px;
    }
    .service-hero-tag {
        position: absolute;
        left: -35px;
        bottom: 60px;
        padding: 10px 30px;
        background: #fff;
        box-shadow: 0px 18px 50px -10px #00000033;
        border-radius: 4px;
    }
    .sub-headline-h2 {
        font-size: 32px;
        line-height: normal;
    }
    .service-cover-title {
        font-size: 30px;
    }
    .service-cover-list li {
        font-weight: 300;
    }
    .web-solutions-title-tag {
        font-size: 60px;
    }
    .solution-title {
        font-size: 18px;
    }
    .solution-item {
        margin-left: 0px;
    }
    .solution-item.active .solution-content {
        width: 80%;
    }
    .solution-content .paragraph{
        font-size: 14px;
    }
    .process-list li {
        font-size: 13px;
    }
    .platforms-grid {
        gap: 20px;
        margin-top: 0px;
    }
    .platform-card {
        padding: 30px;
        min-height: 250px;
    }
    .cta-arrow-btn {
        width: 120px;
        height: 120px;
    }
    .cta-arrow-box {
        width: 100px;
        height: 100px;
    }
    .sub-headline-h2.w-60 {
        width: 100%;
    }
    .why-image-wrapper img {
        max-width: 300px;
        width: 100%;
    }
    .why-image-wrapper {
        text-align: right;
    }
    .feature-item h3 {
        font-size: 24px;
    }
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }
    .service-about-wrapper {
        gap: 60px;
    }
    .success-stories-grid .story-card:nth-child(5),
    .success-stories-grid .story-card:nth-child(7) {
        margin-top: -70px;
    }
    .process-ribbon {
        padding: 25px 30px;
        font-weight: 400;
        height: 120px;
    }
    .process-ribbon h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }
    .process-step.step-1 {
        min-width: 280px;
    }
}

@media(max-width: 1200px) {
    .success-stories-grid .story-card:nth-child(5),
    .success-stories-grid .story-card:nth-child(7) {
        margin-top: 0px;
    }
    .success-stories-grid .story-card:nth-child(odd) .story-img {
        height: 350px;
    }
    .success-stories-grid .story-card:nth-child(even) .story-img {
        height: 350px;
    }
    .section-space {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

.success-stories-grid .story-card:nth-child(9), .success-stories-grid .story-card:nth-child(11) {
    margin-top: -200px;
}

@media (max-width: 1200px) {
    .success-stories-grid .story-card:nth-child(odd) .story-img {
        height: auto !important;
    }
    .success-stories-grid .story-card:nth-child(5), .success-stories-grid .story-card:nth-child(7) {
        margin-top: 0 !important;
    }
    .success-stories-grid .story-card:nth-child(9), .success-stories-grid .story-card:nth-child(11) {
        margin-top: 0 !important;
    }
    .success-stories-grid .story-card:nth-child(even) .story-img {
        height: auto !important;
    }
}