.tabs{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:48px;
    align-items: center;
}
.t-tabs{
    display: flex;
    flex-direction: row;
    gap:16px;
    overflow: hidden;
    height: 0px;
}
.tab{
    padding: 0.833vw;
    text-transform: uppercase;
    line-height: 120%;
    font-size: 1.25vw;
    font-weight: 600;
    border-radius: 0.625vw;
    cursor: pointer;
}
.tab:hover{
    background-color: #E6E6E6;
}
[data-tab-active="1"]{
    background-color: var(--white);
}
.t-block-wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2.5vw;
    align-items: center;
}
.t-block{
    width: calc(50% - 1.25vw);
    display: flex;
    flex-direction: column;
    gap: 1.25vw;
    align-items: flex-start;
    justify-content: center;
    /* padding: 12px 0; */
}
.t-b-image{
    border-radius: 24px;
    width: 100%;
    /* max-height: 422px; */
    transition: 0.3s;
    object-fit: cover;
}
.t-b-wrap{
    width: auto;
}
.t-b-w-green-line{
    width: 2.5vw;
    height: 4px;
    background-color: var(--green);
    border-radius: 2.5vw;
    margin-bottom: -8px;
}
.t-b-w-dots{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.t-b-w-p{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.t-b-w-dot-text{
    color: var(--gray);
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}
.t-b-w-dt-dot{
    width: 6px;
    height: 6px;
    border-radius:6px;
    background-color: var(--gray);
}
.btn{
    border-radius: 0.833vw;
    background-color: var(--btn-bg);
    padding: 0.833vw 1.042vw;
    font-size: 1.042vw;
    color: var(--white);
    line-height: 125%;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
}
.btn img{
    width: 1.25vw;
    height: 1.25vw;
}
.btn:hover{
    opacity: 90%;
}
.t-b-txt, .t-b-txt2{
    padding-right: 5vw
}
@media (max-width: 320px){
    .t-tabs{
        flex-wrap: wrap;
    }
}

@media (min-width: 180px) and (max-width: 768px){
    .tabs{
        gap: 32px;
        padding: 0 0 48px 0;
    }
    .tab{
        font-size: 14px;
        padding: 4px 8px;
        border-radius: 8px;
        flex: none;
    }
    .t-tabs{
        gap: 4px;
        overflow-y: auto;
        width: 100%;
        overflow-x: auto;
        /* -ms-overflow-style: none; */
        scrollbar-width: none;
        flex-direction: row;
        justify-content: center;
        padding: 0 16px;
        flex-wrap: wrap;
    }
    .t-block-wrap{
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }
    .t-block:first-child{
        display: none;
    }
    .t-b-wrap:first-child{
        display: none;
    }
    .t-block{
        width: 100%;
        gap: 16px;
    }
    .t-b-image{
        height: auto;
        border-radius: 0px;
    }
    /* .t-b-title{
        font-size: 24px;
    } */
    .t-b-w-green-line{
        width: 48px;
        height: 4px;
        background-color: var(--green);
        border-radius: 4px;
    }
    .t-b-wrap p{
        font-size: 12px;
    }
    .t-b-w-dots{
        display: none;
    }
    .btn{
        width: 100%;
        font-size: 16px;
        border-radius: 8px;
        padding: 8px 16px;
        justify-content: center;
    }
    .btn img{
        display: none;
    }
}
@media (max-width: 360px){
    .tab{
        font-size: 10px;
        padding: 8px 8px;
        border-radius: 8px;
    }
}
