/* common */
.staticTab .colorRed {
    color: #FF0000;
}

.staticTab .container{
    max-width: 100%;
    margin: 0 auto;
}

.txt-red{
    color: #ed1c24;
}
.font-weight-500{
    font-weight: 500;
}
/* wrapper */
.staticTab .nri_staticTab {
    padding: 50px 0px;
}

@media screen and(max-width:768px) {
    .staticTab .nri_staticTab {
        padding: 20px 0px;
    }
}

/* heading */
.staticTab .sec-title {
    font-size: 32px;
    font-weight: 700;
    color: #233253;
    margin-bottom: 26px;
    text-align: center;
}

/* container */
.staticTab .staticTab__container{
    border: 1px solid #B5D8F0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 30px;
}

/* left title */
.staticTab .staticTab__container--title{
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px dashed #0083C3;
    gap: 13px;
    padding-right: 20px;
    color: #454545;
}


.staticTab .staticTab__container--title .tabtitle{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

@media screen  and (max-width:767px){
    .staticTab .staticTab__container--title .tabtitle{
        font-size: 16px;
        line-height: 20px;
    }
}

/* right */
.staticTab .staticTab__container--tabsContainer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 20%);
}

/* links */
.staticTab .staticTab__container--tabs{
    display: flex;
    overflow-x: auto;
    padding: 5px 10px;
    gap: 25px;
    margin-bottom: 10px;
    align-items: center;

}


.staticTab .staticTab__container--tabs .tablink{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #454545;
    padding-right: 25px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.staticTab .staticTab__container--tabs .tablink:not(:last-child) {
    border-right: 1px dashed #0083C3;
}


@media screen and (max-width:767px){
    .staticTab .staticTab__container{
        flex-direction: column;
        gap: 10px;
    }
    .staticTab .staticTab__container--title{
        border-bottom:  1px dashed #0083C3;
        border-right: none ;
        padding-bottom: 10px;
    }
    .staticTab  .staticTab__container--tabsContainer{
        width: 100%;
    }

   
}