%header {
    h1,h2,h3,h4,h5 {
        position: relative;
        width: -moz-fit-content;
        width: fit-content;
        padding-bottom: 15px;
        color:#000;
    }
    i {
        padding: 0 10px;
    }
    a {
        color:$gray;
        padding-bottom: 10px;
        display:inline-block;
        text-decoration: none;
    }
}

.header {
    @extend %header;
    h1,h2,h3,h4,h5 {
        margin: auto;
        &:before {
            content:'';
            background-color:$mainColor;
            position: absolute;
            bottom: 0px;
            height: 3px;
            right: 25%;
            border-radius: 15px 15px 0 0;
            width: 50%;
        }
    }
}
.header-right {
    @extend %header;
    h1,h2,h3,h4,h5 {
        &:before {
            content:'';
            background-color:$mainColor;
            position: absolute;
            bottom: 0px;
            height:3px;
            #{$right}: 0%;
            border-radius: 5px 5px 0 0;
            width: 50%;
        }
    }

}
.header-left {
    @extend %header;
    h1,h2,h3,h4,h5 {
        &:before {
            content:'';
            background-color:$mainColor;
            position: absolute;
            bottom: 0px;
            height:3px;
            #{$left}: 0%;
            border-radius: 5px 5px 0 0;
            width: 50%;
        }
    }
}

.header-b {
    #{$heading} {
        color:$mainColor;
    }
    p {
        line-height: 40px;
        font-size: 18px
    }
    .bold-first {
        @extend .bold;
        position: relative;
        &:before {
            content:'';
            right:-20px;
            position: absolute;
            top:0px;
            height:30px;
            width:3px;
            background-color:rgba($gray, .3);

        }
    }
}

.d-line{
    text-align:center;
    margin: auto;
    position: relative;
    width: -moz-fit-content;
    width:fit-content;
    &:after {
        content:'';
        height:2px;
        background-color:$borderColor;
        position: absolute;
        bottom:-15px;
        width:80%;
        left:10%;
    }
}
