.vs .article-wrapper {
    width: 85%;
}

.vs-title {
    width: 100%;
    margin-bottom: 50rem;
}

.vs-title h6 {
    color: var(--main-color);
    font-size: 20rem;
    font-family: 'Montserrat';
    margin-bottom: 20rem;
}

.vs-title h5 {
    font-size: 50rem;
}

.vs-title p {
    color: #777;
    font-size: 20rem;
    font-weight: 500;
    line-height: 1.65;
    margin-top: 20rem;
}

.vs-roadmap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15rem;
    margin-bottom: 50rem;
}

.vs-box {
    flex: 1;
    padding: 40rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 12rem 30rem 0 rgba(80, 86, 131, .12);
}
.vs-box:last-child {
    flex: 2;
}

.vs-arrow i {
    font-size: 20rem;
}

.vs-box h6 {
    color: #fff;
    width: fit-content;
    padding: 4px 6px;
    font-size: 15rem;
    font-weight: 700;
    border-radius: 3px;
    background-color: var(--main-color);
    margin-bottom: 20rem;
}

.vs-box h5 {
    font-size: 30rem;
}

.vs-box p {
    color: #555;
    font-size: 16rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 15rem;
}

.vs-bottom {
    position: relative;
    color: #222;
    padding: 30rem 40rem;
    font-size: 19rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    border-radius: 50rem;
    border: 1px solid #ccc;
    background-color: #eee;
    margin-top: 30rem;
}
.vs-bottom::before {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
    width: 20px;
    height: 20px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    background-color: #eee;
}

.vs-bottom span {
    color: var(--main-color);
    font-weight: 700;
}


/*==================================================*/
@media (max-width: 1650px) {
    .vs-box p {
        height: 70rem;
    }
}


@media (max-width: 768px) {
    .vs-title p br {
        display: none;
    }

    .vs-roadmap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-arrow {
        display: none;
    }

    .vs-box:last-child p br {
        display: none;
    }
}


@media (max-width: 550px) {
    .vs-title h6 {
        font-size: 24rem;
    }

    .vs-title h5 {
        font-size: 60rem;
    }

    .vs-title p {
        font-size: 24rem;
    }

    .vs-roadmap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .vs-arrow {
        display: flex;
    }

    .vs-arrow i {
        font-size: 40rem;
        transform: rotate(90deg);
    }
    
    .vs-box {
        width: 100%;
    }
    
    .vs-box h6 {
        font-size: 18rem;
    }

    .vs-box h5 {
        font-size: 36rem;
    }

    .vs-box p {
        height: auto;
        font-size: 22rem;
    }

    .vs-box:last-child p br {
        display: block;
    }

    .vs-bottom {
        font-size: 24rem;
    }
}