.section-title2 {
    text-align: center;
    padding-bottom: 30px;
  }
  .section-title2 h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: #213b52;
  }
  .section-title2 h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  .section-title2 h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #0A81D5;
    bottom: 0;
    left: calc(50% - 20px);
  }
  .section-title2 p {
    margin-bottom: 0;
  }


  /*--------
  services--*/
  .services2 {
  padding-bottom: 40px;
}
.services2 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}
.services2 .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
.services2 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.services2 .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -60px;
  margin-left: 30px;
  width: calc(100% - 60px);
}
@media (max-width: 640px) {
  .services2 .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}
.services2 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.services2 .card-title a {
  color: #213b52;
  transition: 0.3s;
}
.services2 .card-text {
  color: #5e5e5e;
}
.services2 .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}
.services2 .read-more a:hover {
  color: #0A81D5;
}
.services2 .card:hover img {
  transform: scale(1.1);
}
.services2 .card:hover .card-body {
  border-color: #0A81D5;
}
.services2 .card:hover .card-body .card-title a {
  color: #0A81D5;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .content + .content {
  margin-top: 100px;
}
.features .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #213b52;
}
.features .content ul {
  list-style: none;
  padding: 0;
}
.features .content ul li {
  padding-bottom: 10px;
}
.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fdc134;
}
.features .content p:last-child {
  margin-bottom: 0;
}


/*nav*/
.navbar div, .navbar a:focus {
  align-items: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #28292C;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar div i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0A81D5;
}
.navbar div:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > div {
  color: #0A81D5;
}
