.tabs-slider{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}
.ts-wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2.5vw;
}
.t-s-back{
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 2.5vw 0 0 0;
    width: fit-content;
}
.t-s-b-icon{
    cursor: pointer;
}
.t-s-b-text{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000000;
    cursor: pointer;
}
.ts-w-slider{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc((100% - 2.5vw)/2);
}
.ts-w-s-mainimg{
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 1.667vw;
    /* padding: 1.667vw; */
    overflow: hidden;
}
.ts-w-s-mi-img{
    width: 100%;
    /* position: absolute; */
    object-fit: cover;
    z-index: -1;
}
.ts-w-s-mi-wrap{
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 1.667vw;
    right: 1.667vw;
}
.ts-w-s-mi-w-meta{
    width: 3.333vw;
    height: 3.333vw;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ts-w-s-mi-w-m-title{
    color: var(--gray);
    font-family: var(--int);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4vw;
    line-height: 115%;
}
.ts-w-s-mi-w-m-desk{
    color: var(--gray);
    font-family: var(--int);
    font-style: normal;
    font-weight: 400;
    font-size: 0.625vw;
    line-height: 130%;
}
.ts-w-s-trimimgs{
    display: flex;
    gap: 8px;
}
.ts-w-s-ti-img{
    border: 0px solid var(--light-green);
    cursor: pointer;
    border-radius: 16px;
    width: calc((100% - 32px)/5);
}
[data-active-slider-img="1"]{
    border: 1px solid var(--light-green);
}
.ts-w-t-w-green-line {
    width: 48px;
    height: 4px;
    background-color: var(--green);
    border-radius: 4px;
    margin-bottom: 16px;
}
.ts-w-text{
    width: calc((100% - 2.5vw)/2);
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}
.ts-w-t-top{
    display: flex;
    flex-direction: column;
    gap:1.667vw;
}
.ts-w-t-wrap-2{
    display: flex;
    flex-direction: column;
    gap: 0.833vw;
}
.ts-w-t-tabs{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    height: 100%;
}
.ts-w-t-t-top{
    display: flex;
    padding: 8px;
    gap: 4px;
}
.ts-w-t-t-t-tab{
    width: calc((100% - 12px)/4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 1.042vw;
    line-height: 120%;
    padding: 12px 0;
    cursor: pointer;
    transition: 0.15s;
    border-radius: 8px;
}
.ts-w-t-t-t-tab:hover{
    background-color: var(--light-gray);
    opacity: 75%;
}
[data-active-desk-tab="1"]{
    background-color: var(--light-gray);
}
.ts-w-t-t-body{
    width: 100%;
    padding: 0.887vw 1.667vw 1.667vw 1.667vw;
}
.ts-w-t-t-d-item{
    display: flex;
    width: 100%;
}
.ts-w-t-t-d-item-01{
    flex-direction: column;
    gap: 24px;
}
.ts-w-t-t-d-item-02{
    gap: 16px;
}
.ts-w-t-t-d-i-column{
    width: calc((100% - 16px)/2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ts-w-t-t-d-item-04{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
}
.ts-w-t-t-d-i-img{
    width: 35%;
    border-radius: 12px;
    overflow: hidden;
    border: 0px solid var(--light-green);
    transition: 0.1s;
}
.ts-w-t-t-d-i-img:hover{
    border: 2px solid var(--light-green);
}
.ts-w-t-t-d-i-img:hover ~ .ts-w-t-t-d-i-desk{
    opacity: 75%;
}
.ts-w-t-t-d-i-img img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.ts-w-t-t-d-i-desk{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0px;
    transition: 0.1s;
}
@media (min-width: 180px) and (max-width: 768px){
    .t-s-back{
        width: 100%;
        justify-content: center;
        padding: 24px 0 16px 0; 
    }
    .t-s-b-text{
        font-size: 16px;
    }
    .ts-wrap{
        flex-direction: column;
        gap: 24px;
    }
    .ts-w-slider, .ts-w-text{
        width: 100%;
    }
    .ts-w-s-mi-w-meta{
        width: 56px;
        height: 56px;
    }
    .ts-w-s-trimimgs{
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-direction: row;
    }
    .ts-w-s-ti-img{
        width: 35%;
        flex: none;
        border-radius: 8px;
    }
    .ts-w-s-mi-w-m-title{
        font-size: 20px;
    }
    .ts-w-s-mi-w-m-desk{
        font-size: 12px;
    }
    .ts-w-t-w-btn{
        display: flex;
        justify-content: center;
    }
    .ts-w-t-w-btn img{
        width: 24px;
        height: 24px;
    }
    .ts-w-t-w-green-line{
        display: none;
    }
    .ts-w-text{
        gap: 24px;
    }
    .ts-w-t-top{
        gap: 16px;
    }
    .ts-w-t-wrap-2{
        gap: 8px;
    }
    .ts-w-t-t-top{
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-direction: row;
        padding: 12px;
    }
    .ts-w-t-t-t-tab{
        width: 40%;
        font-size: 12px;
        flex: none;
    }
    .ts-w-t-t-body{
        padding: 0px 20px 20px 20px;
    }
    .ts-w-t-t-d-i-img{
        width: 50%;
    }
}