@charset "utf-8";
.service {
  background: #f7f7f7;
}

.service .item {
  position: relative;
  min-height: 366px;
  border-left: 1px solid #e8e8e8;
  overflow: hidden;
}
.service .item:last-child {
  border-right: 1px solid #e8e8e8;
}

.service .item .icon_box {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -39px;
}

.service .item .icon_box span {
  color: #48c7ec;
  font-size: 40px;
}

.service .item .icon_box h4 {
  font-size: 20px;
  margin-top: 12px;
}

.service .item .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0%;
    background: #48c7ec;
    transition: .5s cubic-bezier(0.4, 0, 1, 1);
    opacity: 0;
    visibility: hidden;
}
.service .item:hover .overlay-box {
    height: 100%;
    transition: .5s cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    visibility: visible;
}
.service .item .overlay-box .icon_box {
    position: relative;
    width: 100%;
    display: block;
    margin: 0;
    top: 0;
    margin-top: 70px;
    margin-bottom: 20px;
}
.service .item .overlay-box p,
.service .item .overlay-box .icon_box h4,
.service .item .overlay-box .default_link,
.service .item .overlay-box .icon_box span {
  color: #fff;
}

.service .item .overlay-box p {
  margin-bottom: 20px;
}

.sec-padd {
  padding: 20px 0;
}
.sec-padd-top {
  padding-top: 70px;
}
.sec-padd-bottom {
  padding-bottom: 70px;
}
.no-padd {
  padding: 0px;
}
 .about-faq .about-info {
	margin-bottom: 50px;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
.section-title h2 {
  position: relative;
  font-size: 32px;
  text-transform: capitalize;
}
.section-title h3 {
  position: relative;
  font-size: 24px;
  text-transform: capitalize;
}
.section-title h4 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
}
.section-title:before {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #48c7ec;
}
.section-title.center:before {
    left: 50%;
    margin-left: -25px;
}