Titles

The .section-title class includes the style applied to title elements.

If you need to modify this element globally, use the _titles.scss file. IF NOT, overwrite styles using the stylesheet of each page.

Title Section with Icon


        
            <div class="section-title">
                <div class="icon-circle">
                    <i class="fas fa-badge-check fa-2xl"></i>
                </div>
                <h1 class="text-dark-blue-color font-weight-600">Title Section with Icon</h1>
                <div class="divide-line"></div>
            </div>

                    

Title with Right Link


        
            <div class="section-title">
                <div class="icon-circle">
                    <i class="fas fa-users fa-2xl"></i>
                </div>
                <h1 class="text-dark-blue-color font-weight-600">Title with Right Link</h1>
                <div class="divide-line has-link-options">
                    <div class="link-option">
                    <a href="#" target="_blank">Right Link</a>
                    </div>
                </div>
            </div>