.mb-wrapper {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mb-vertical,
.mbm-vertical {
    width: 1px;
    height: 60rem;
    background-color: #ccc;
}

.mb-line {
    width: calc(100% - 199rem);
    height: 1px;
    background-color: #ccc;
}

.mb-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mb-box-group {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.mb-box-group .mb-vertical {
    margin: 0 auto;
    margin-bottom: -10rem;
}

.mb-box {
    width: 200rem;
    padding: 15rem 0;
    font-size: 19rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #eee;
    background-color: #f8f8f8;
}

.mb-box.fd {
    color: #fff;
    font-weight: 600;
    background-color: #151515;
    border: none;
}

.mb-box span {
    display: block;
    color: #777;
    font-size: 15rem;
}

.ceo {
    color: #fff;
    font-size: 24rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--main-color);
}

.ceo.gd {
    background-color: #111;
}

.mb-box:hover {
    filter: brightness(98%);
}

.mb-box-mobile,
.mbm-vertical {
    display: none;
}


/*==================================================*/
@media (max-width: 1250px) {
    .mb-wrapper {
        width: 100%;
    }
}