@font-face {
    font-family: me;
    src: url(Poppins-Regular.ttf);
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
:root{
    --main-clr:#BC262E;
}
.tab-overall{
    /* border:1px solid green; */
    width:100%;
    min-height:100vh;
    display: flex;
    justify-content: center;
}
.tab-contain{
    /* border:1px solid red; */
    width:1440px;
    min-height:100vh;
    display: flex;
    flex-direction: column;
    padding:12px 24px;
    /* position: relative; */
}
@media (max-width:1440px){
    .tab-contain{
        width:100%;
    }
}
nav{
    width:100%;
    height:64px;
    display: flex;
    align-items: center;
    /* border: 1px solid blue; */
    color:var(--main-clr);
}
nav img{
    /* border: 1px solid green; */
    width:32px;
    height:32px;
}
nav span{
    margin-left:6px;
    font-size: 18px;
    font-family: me;
}
.tab-container-top{
    width:100%;
    height:64px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 24px; */
    list-style-type: none;
    position: sticky;
    top:0;
    background: #fff;
    z-index:1
}
.tab-control{
    padding: 10px 15px;
    /* border: 1px solid blue; */
    border-radius: 8px;
    transition: .3s ease-in-out;
    font-size: 18px;
}
.tab-for-desktop{
    font-family: me;
    display: inline-block;
}
.tab-control:hover{
    opacity:.5;
}
.tab-container-bottom{
    width:100%;
    height:auto;
    /* border:1px solid blue; */
    font-family: me;
}
section{
    height:100%;
    width:100%;
    /* border:1px solid green; */
    padding: 12px 0;
    transition: .5s ease;
}
/* section.active{
    transform:translateY(0px);
    opacity:1;
} */
.tab-header{
    /* border:1px solid green; */
    width:100%;
    height:auto;
    display: none;
    font-size: 18px;
    flex-direction: column;
}
.tab-header-underline{
    width:40px;
    height:3.5px;
    background: var(--main-clr);
    border-radius:3px ;
}
.tab-body{
    /* border: 1px solid red; */
    width:100%;
    height:auto;
    padding:24px 0;
}
.tab-accordion-header{
    text-align: center;
    margin: 12px 0 24px 0;
    font-size:24px;
}
.tab-accordion {
    width: 100%;
    height: auto;
    color: black;
    background:#EBEBEB;
    padding: 45px;
    border-radius: 18px;
}
.tab-accordion .container {
    border: 1px solid #cec8c8;

    position: relative;
    margin: 10px 0;
    padding:12px 8px;
    border-radius: 8px;
}
.tab-accordion .label {
    /* border: 1px solid red; */
    position: relative;
    padding: 10px 0;
    font-size: 24px;
    color: black;
    cursor: pointer;
}
.tab-ellipsis{
    width:95%;
    height:auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .5s ease;
}
.tab-accordion .label::before {
    content: '+';
    color: black;
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 30px;
    transform: translateY(-50%);
}
.tab-accordion .content {
    /* border: 1px solid gray; */
    position: relative;
    background: transparent;
    height: 0;
    font-size: 18px;
    text-align: justify;
    width: 100%;
    overflow: hidden;
    transition: 0.5s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 8px;
}
.tab-accordion .content::-webkit-scrollbar {
    display: none;
}
.tab-accordion hr {
    width: 100%;
    margin-left: 0;
    /* border: 1px solid grey; */
}
.tab-accordion .container.active .content {
    height: auto;
    overflow-y: auto;
}
.tab-accordion .container.active .label::before {
    content: '-';
    font-size: 30px;
}
.tab-accordion .container.active .tab-ellipsis{
    height:75px;
    overflow: visible;
    text-overflow:initial;
    white-space: normal;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tab-accordion .container.active .tab-ellipsis::-webkit-scrollbar {
    display: none;
}
@media (max-width:425px){
    .tab-header{
        display: flex;
    }
    .tab-for-desktop{
        display: none;
    }
    .tab-accordion-header{
        font-size:16px;
    }
    .tab-accordion .label{
        font-size: 16px;
        padding: 12px 0 0 0;
    }
    .tab-accordion .content{
        font-size:12px;
    }
    .tab-accordion {
        padding:12px;
    }
}
@media (max-width:768px){
    .tab-accordion {
        padding:24px;
    }
}
