
.border-bottom-primary {
    position: relative;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}

.border-align-primary{
    position: relative;
}
.border-align-primary::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 8px;
    height: 100%;
    background-color: var(--primary-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 0px;
}

.border-align-primary-with-brief{
    position: relative;
}
.border-align-primary-with-brief::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 8px;
    height: 100%;
    background-color: var(--primary-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.title-b {
    background-color: var(--gray-color);
    padding: 35.4px;
    border-radius: var(--small-border-radius);
}
.dark-mode .title-b {
    background-color: var(--white-color-op-10);
}
.title-b h4 {
    color: var(--main-dark-color);
    text-align: center;
}
.title-with-icon {
    padding-block: 2.8px;
}
.title-without-border .border-align-primary::before {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
