Bootstrap snippet and html example. services section

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: services

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 4.4.1 included, to get the result that you can see in the preview selection

<section class="service-section overlay-bg bg-light sp-100-70">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title title-left text-center text-lg-left">
                    <h3 class="top-sep">Our services</h3>
                    <p>Lorem ipsum dolor sit amet, consectadetudzdae rcquisc adipiscing elit. Aenean socada commodo
                        ligaui egets dolor. Nullam quis ante tiam sit ame orci eget erovtiu faucid.</p>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-consultation"></i>
                    </div>
                    <h5 class="btm-sep">Market Research</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-search-engine"></i>
                    </div>
                    <h5 class="btm-sep">Growth Strategy</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-computer"></i>
                    </div>
                    <h5 class="btm-sep">Software Design</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-seo"></i>
                    </div>
                    <h5 class="btm-sep">Seo Optimize</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-management"></i>
                    </div>
                    <h5 class="btm-sep">Digital Marketing</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
            <div class="col-xl-4 col-md-6 col-12 mb-30">
                <div class="service-box">
                    <div class="icon-box">
                        <i class="flaticon-deal"></i>
                    </div>
                    <h5 class="btm-sep">Investment Plan</h5>
                    <p>Quae ab illo inventore veritatis et quasi architecto quis ante beatae vitae dicta sunt
                        explicabo ligaui.</p>
                </div>
            </div>
        </div>
    </div>
</section>

CSS code

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 4.4.1 included, to get the result that you can see in the preview selection

body{margin-top:20px;}
/* ===== Service Section ===== */
.service-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.service-box {
  padding: 35px 35px 20px;
  margin-right: 30px;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px dashed #4e63d7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.service-box:hover {
  -webkit-box-shadow: 0 5px 30px 0 rgba(16, 31, 65, 0.12);
          box-shadow: 0 5px 30px 0 rgba(16, 31, 65, 0.12);
  border-color: transparent;
}

.service-box .icon-box {
  position: absolute;
  right: -20px;
  top: -20px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  color: #fff;
  background-color: #4e63d7;
  text-align: center;
  z-index: 2;
}

.service-box .icon-box:after, .service-box .icon-box:before {
  opacity: 0.1;
  position: absolute;
  top: -10px;
  left: -10px;
  right: 0;
  bottom: 0;
  content: '';
  height: 100px;
  width: 100px;
  border: 10px solid #4e63d7;
  border-radius: 100%;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-box .icon-box i {
  font-size: 45px;
  line-height: 80px;
}

.service-box .btm-sep {
  padding-bottom: 15px;
}

.service-box .btm-sep::after {
  width: 40px;
}

.service-box:hover .icon-box:after {
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
}

.service-box:hover .icon-box:before {
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
}

Similar snippets

Bootstrap example and template. Services

Services

Bootstrap example and template. services wrapper

services wrapper

Bootstrap example and template. services section page

services section page

Bootstrap example and template. about us page section

about us page section

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. profile followers with search input

profile followers with search input

Bootstrap example and template. chat app

chat app

Bootstrap example and template. bs4 cart

bs4 cart

Bootstrap example and template. services section

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 531 views, Using this bootstrap snippet you have the following benefits:

Bootstrap 4.4.1

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.4.1 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working