<div class="customer pad50">
<div class="container">
<div class="row">
<div class="value col-sm-12 col-xs-12">
<div class="title-module">
<h2>Quy trình làm việc</h2>
</div>
<div class="content active">
<h5 class="more">Lưu ý <i class="fa fa-minus" aria-hidden="true"></i></h5>
<div class="details">
<img src="http://bizweb.dktcdn.net/100/226/207/themes/552753/assets/gia-tri1.png?1500967303540" alt="Giá trị cốt lõi"/>
<p>
<b>Khách hàng là ông chủ duy nhất</b>
Chỉ có duy nhất một ông chủ, đó là khách hàng. Anh ta có thể sa thải bất cứ ai, từ chủ tịch tới nhân viên của công ty, bằng cách... tiêu tiền ở nơi khác
</p>
</div>
</div>
<div class="content">
<h5>Quy trình làm việc <i class="fa fa-plus" aria-hidden="true"></i></h5>
<div class="details" style="display:none">
<p>
<b>Chuyên nghiệp, tiên tiến</b>
Với nhiều bộ phận mỗi bộ phần đảm trách một nhiệm vụ trong quy trình, đảm bảo sự chặt chẽ từ ngay khi bắt đầu cho đến khi kết thúc dự án
</p>
</div>
</div>
<div class="content">
<h5>Hệ thống <i class="fa fa-plus" aria-hidden="true"></i></h5>
<div class="details" style="display:none">
<p>
<b>Hệ thống tối ưu liên tục</b>
Hệ thống được xây dựng bởi những chuyên gia hàng đầu, đảm bảo sự hoạt động trơn chu cho sản phẩm của khách hàng.
</p>
</div>
</div>
<div class="content">
<h5>Hướng dẫn <i class="fa fa-plus" aria-hidden="true"></i></h5>
<div class="details" style="display:none">
<p>
Nhân viên hệ thống túc trực 24/7 giải đáp mọi thắc mắc, hỗ trợ khách hàng mọi lúc
</p>
</div>
</div>
</div>
</div>
</div>
</div>
.customer .title-module {
text-align: left;
margin-bottom: 25px;
}
.customer .title-module h2 {
position: relative;
padding-bottom: 15px;
}
.customer .title-module h2:after {
position: absolute;
bottom: 0;
left: 0;
content: '';
height: 3px;
width: 25px;
background: linear-gradient(to left, #2260bf, #03bcca);
}
.customer .value .content h5 {
padding: 15px;
position: relative;
border-top: 1px #dddddd solid;
transition: all .5s;
}
.customer .value .content.active h5 {
background: #f6f6f6;
border-top: 1px #f6f6f6 solid;
}
.customer .value .content h5 i {
position: absolute;
right: 15px;
top: 17px;
}
.customer .value .content h5 i:before {
content: "\f067";
}
.customer .value .content h5.more i:before {
content: "\f068";
}
.customer .value .content .details {
padding: 25px 0;
display: inline-block;
width: 100%;
}
.customer .value .content .details img {
float: left;
max-width: 160px;
margin-right: 30px;
}
.customer .value .content .details p b {
display: block;
margin-bottom: 10px;
}
$('.customer h5').click(function(){
$(this).next().toggle(500);
if ($(this).hasClass('more')) {
$(this).removeClass('more')
} else {
$(this).addClass('more')
}
if ($(this).parents('.customer .content').hasClass('active')) {
$(this).parents('.customer .content').removeClass('active')
} else {
$(this).parents('.customer .content').addClass('active')
}
});
<script src='//bizweb.dktcdn.net/100/005/795/themes/534730/assets/jquery-2.2.4.min.js?1495533194821' type='text/javascript'></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">