  /* ----------------- heading-styles ---------------- */

/* 1. Right Line */
.style-right-line {
    display: flex;
    align-items: center;
}
.style-right-line::after {
    content: "";
    flex: inherit;
    height: 2px;
    background: #000;
    margin-left: 15px;
    width: 120px;
    position: relative;
    display: inline-block;
    top: 6px;
}

/* 2. Both Side Line */
.style-both-line {
    display: flex;
    align-items: center;
    justify-content: center;
}
.style-both-line::before,
.style-both-line::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #000;
    position: relative;
    top: 6px;
}
.style-both-line::before {
    margin-right: 15px;
}
.style-both-line::after {
    margin-left: 15px;
}

/* 3. Underline */
.style-underline {
    border-bottom: 3px solid #000;
    padding-bottom: 5px;
}

/* 4. Background Rounded */
.style-bg-rounded {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    border: 2px solid #000;
}

/* 5. Background Square */
.style-bg-square {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

/* 5. Background Square */
.style-border-radius{
    padding: 10px 20px;
    background: #000;
    border: 2px solid #000;
    border-radius: 12px;
}

/* 6. double border corner */
.style-double-corner {
    padding: 10px 25px;
    position: relative;
    /*border: 2px solid #000;*/
}
.style-double-corner::before,
.style-double-corner::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: 3px solid #000;
}
.style-double-corner::before {
    top: -6px;
    left: -6px;
    border-right: none;
    border-bottom: none;
}
.style-double-corner::after {
    bottom: -6px;
    right: -6px;
    border-left: none;
    border-top: none;
}