Bootstrap About - Component Snippets
The About Us Page is the heart of any website. It’s your chance to introduce your company or brand to potential customers or visitors in a captivating way. Your About Us Page needs to convince people that they should give your business a chance. So it’s important to make sure you get it right!
About Style 1
<!--====== ABOUT ONE PART START ======-->
<section class="about-area about-one">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="about-title text-center">
<h2 class="title fw-bold">Why Choose Us</h2>
</div>
</div>
</div>
<!-- row -->
<div class="row justify-content-center">
<div class="col-md-4 col-sm-8">
<div class="single-about-items">
<div class="items-icon">
<i class="lni lni-bullhorn"></i>
</div>
<div class="items-content">
<h4 class="items-title">Digital Marketing</h4>
<p class="text">
Short description for the ones who look for something new
</p>
</div>
</div>
<!-- single about items -->
</div>
<div class="col-md-4 col-sm-8">
<div class="single-about-items">
<div class="items-icon">
<i class="lni lni-investment"></i>
</div>
<div class="items-content">
<h4 class="items-title">Consulting Services</h4>
<p class="text">
Short description for the ones who look for something new
</p>
</div>
</div>
<!-- single about items -->
</div>
<div class="col-md-4 col-sm-8">
<div class="single-about-items">
<div class="items-icon">
<i class="lni lni-handshake"></i>
</div>
<div class="items-content">
<h4 class="items-title">Business Solutions</h4>
<p class="text">
Short description for the ones who look for something new
</p>
</div>
</div>
<!-- single about items -->
</div>
</div>
<!-- row -->
</div>
<!-- container -->
</section>
<!--====== ABOUT ONE PART ENDS ======-->
/*===========================
about-01 css
===========================*/
.about-one {
background-color: var(--light-3);
padding-top: 120px;
padding-bottom: 120px;
}
.about-one .about-title {
margin-bottom: 20px;
}
.about-one .single-about-items {
margin-top: 30px;
padding: 35px;
background-color: var(--white);
border-radius: 10px;
box-shadow: var(--shadow-2);
position: relative;
overflow: hidden;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}
.about-one .single-about-items:hover {
box-shadow: var(--shadow-4);
}
.about-one .single-about-items::before {
position: absolute;
content: "";
right: 0;
top: 0;
height: 80px;
width: 50px;
border: 1px solid var(--primary);
border-radius: 0 0 0 30px;
right: -1px;
top: -1px;
opacity: 0.1;
}
.about-one .single-about-items::after {
position: absolute;
content: "";
right: 0;
top: 0;
height: 40px;
width: 40px;
border: 1px solid var(--primary);
border-radius: 50px;
right: 60px;
top: 10px;
opacity: 0.1;
}
.about-one .single-about-items .items-icon {
width: 70px;
height: 70px;
line-height: 85px;
text-align: center;
border-radius: 10px;
background-color: var(--white);
color: var(--primary);
box-shadow: var(--shadow-2);
}
.about-one .single-about-items .items-icon i {
font-size: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.about-one .single-about-items .items-icon {
max-width: 90px;
}
}
@media (max-width: 767px) {
.about-one .single-about-items .items-icon {
max-width: 80px;
}
}
.about-one .single-about-items .items-content {
margin-top: 32px;
}
@media only screen and (min-width: 1400px) {
.about-one .single-about-items .items-content {
padding-right: 45px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.about-one .single-about-items .items-content {
padding-right: 35px;
}
}
.about-one .single-about-items .items-content .items-title {
color: var(--black);
margin-bottom: 15px;
font-weight: 600;
}
.about-one .single-about-items .items-content .text {
color: var(--dark-3);
}
About Style 2
About Style 3
About Style 4
About Style 5
About Style 6
About Style 7
About Style 8
About Style 9