Bootstrap Service Section 17

Simple service section created with bootstrap framework

by juErik

HTML

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<div class="py-5 service-17">
    <div class="container">
        <!-- Row  -->
        <div class="card-group">
            <!-- card  -->
            <div class="card mb-0">
                <div class="card-body text-center">
                    <div class="p-3">
                        <div class="my-3 display-5 text-info-gradiant">R</div>
                        <h5 class="font-weight-medium">Retargeting Market</h5>
                        <p>You can relay on our amazing features list and also our customer services will be great experience worth taking.</p>
                    </div>
                </div>
            </div>
            <!-- card  -->
            <div class="card mb-0">
                <img src="https://www.wrappixel.com/demos/ui-kit/wrapkit/assets/images/features/feature17/img1.jpg" alt="wrapkit" />
            </div>
            <!-- card  -->
            <div class="card mb-0">
                <div class="card-body text-center">
                    <div class="p-3">
                        <div class="my-3 display-5 text-info-gradiant">I</div>
                        <h5 class="font-weight-medium">Instant Solutions</h5>
                        <p>You can relay on our amazing features list and also our customer services will be great experience worth taking.</p>
                    </div>
                </div>
            </div>
            <!-- card  -->
        </div>
        <div class="card-group">
            <!-- card  -->
            <div class="card mb-0">
                <img src="https://www.wrappixel.com/demos/ui-kit/wrapkit/assets/images/features/feature17/img2.jpg" alt="wrapkit" />
            </div>
            <!-- card  -->
            <div class="card mb-0">
                <div class="card-body text-center">
                  ...

CSS

@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800);
.service-17 {
  font-family: "Montserrat", sans-serif;
	color: #8d97ad;
  font-weight: 300;
}

.service-17 h1, .service-17 h2, .service-17 h3, .service-17 h4, .service-17 h5, .service-17 h6 {
  color: #3e4555;
}

.service-17 h5 {
	  line-height: 26px;
    font-size: 21px;
}

.service-17 .font-weight-medium {
	font-weight: 500;
}

.service-17 .display-5 {
    font-size: 2.5rem;
}

.service-17 .text-info-gradiant {
		background: #188ef4;
    background: -webkit-linear-gradient(legacy-direction(to right), #188ef4 0%, #316ce8 100%);
    background: -webkit-gradient(linear, left top, right top, from(#188ef4), to(#316ce8));
    background: -webkit-linear-gradient(left, #188ef4 0%, #316ce8 100%);
    background: -o-linear-gradient(left, #188ef4 0%, #316ce8 100%);
    background: linear-gradient(to right, #188ef4 0%, #316ce8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.service-17 .btn-success-gradiant {
		background: #2cdd9b;
    background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
    background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
}

.service-17 .btn-success-gradiant:hover {
		background: #1dc8cc;
    background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cc 0%, #2cdd9b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(#2cdd9b));
    background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
    background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
    background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);	
}

.service-17...