:root {
    --card-height: 214px;
}

.mobile {
    display: none!important;
}

.heading-img img {
    width: 550px;
    margin-right: -50px;
}

section.text .text-container {
    max-width: 650px;
    margin: 0 auto;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing) * 2);
}

.cards-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 400px;
}

.cards-container-progress-bar {
    position: relative;
    width: 5px;
    min-width: 5px;
    height: calc((var(--card-height) * 4) + 120px);
    background-color: var(--color-snow-gray);
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-sky-blue);
}

.card {
    width: 400px;
    height: var(--card-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-color: var(--color-sky-blue);
    color: var(--color-light-blue);
    font-weight: bold;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.card-text {
    line-height: 1.5;
}

.card-img img {
    height: calc(var(--card-height) * 0.8);
    margin: calc(var(--card-height) * 0.1) 0;
}

.faq {
    background-color: var(--color-snow-gray);
}

.ready {
    background-color: #fff;
}

@media only screen and (max-width: 1050px) {
    .heading-img img {
        margin-right: 0;
    }
}

@media screen and (max-width: 1000px) {
    .cards-container.mobile {
        display: flex!important;
        justify-content: center;
        gap: 40px;
    }
    .cards-container.desktop {
        display: none;
    }
    .card {
        position: relative;
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    .card-img img {
        margin: 0;
    }
    .card-number {
        position: absolute;
        right: 0;
        top: 0;
    }
    .cards-inner {
        width: auto;
    }
    .cards-container-progress-bar {
        height: auto;
    }
}

@media screen and (max-width: 600px) {
    section.text .text-container {
        text-align: left;
    }
}