/* --------------------------------------------------------------
# Services Section
-------------------------------------------------------------- */
.features {
  padding: 90px 0;
}
.features .container {
  justify-content: center;
  align-items: center;
}
.features .nav-tabs {
  border-bottom: 2px solid var(--color-primary);
}
.features .nav-tabs.equal {
  display: flex;
  flex-wrap: wrap;
}

.features .nav-tabs.equal > div[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.features .nav-item {
  transform: skewX(-15deg);
  border: solid lightgrey;
  border-width: 1px 0.5px 0px;
  padding: 0;
}

.features .nav-item h5,
.features .nav-item i {
  transform: skewX(15deg);
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: #0689ff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}
.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}
.features .nav-link h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: #0689ff;
  text-align: center;
}
.features .nav-link:hover {
  color: #0689ff;
}
.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-primary);
  border-color: #0689ff;
}
.features .nav-link.active h5 {
  color: #fff;
}
.features .nav-link.active i {
  color: #fff !important;
}
.features .tab-content {
  margin-top: 50px;
}
.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  padding-bottom: 20px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 16px;
  color: #0689ff;
}

.features .tab-pane ul i span{
  color: #000;
}

.features .tab-pane i {
  font-size: 12px;
}

.bi-check-circle::before {
  margin-right: 5px;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .features .nav-tabs {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .features .nav-item {
    border-width: 0.5px 1px;
  }
}

@media (max-width: 400px) {
  .features .nav-link h5 {
    padding: 0 10px;
  }
}
