.tabbing {
    width: 100%;
    position: relative;
}

.tabbing-wrap {
    margin-bottom: 42px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tabbing-wrap:after {
    position: absolute;
    top: 100%;
    left: 50%;
    height: 2px;
    width: 100vw;
    background-color: var(--color-border);
    transform: translateX(-50%);
    content: '';
}

.tabbing-title {
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    max-width: 145px;
    font-family: var(--heading-font-family);
    color: var(--color-black);
}

.tabbing-title.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    content: '';
    margin-top: 5px;
}

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

.tabbing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabbing-inner {
    display: none;
}

.tabbing-inner.active {
    display: block;
}

.tabbing-title {
    cursor: pointer;
}

.tabbing-title.active {
    font-weight: bold;
}

@media (min-width: 480px) {
    .tabbing-title {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .tabbing-wrap {
        margin-bottom: 62px;
        justify-content: inherit;
    }

    .tabbing-wrap:after {
        height: 4px;
    }

    .tabbing-title {
        padding: 0 10px 47px 10px;
        font-size: 22px;
        width: 50%;
    }

    .tabbing-title.active:after {
        width: 100%;
        height: 5px;
    }
}
@media (min-width: 1200px) {
    .tabbing-title.active:after {
        left: -17px;
        width: calc(45% + 50px);
    }
}
