/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

  .features .nav-link {
    padding: 15px 0;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid #e2e4e6;
  }
  
  .features .nav-link i {
    padding-right: 15px;
    font-size: 4.8rem;
  }
  
  .features .nav-link h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
  }
  
  @media (max-width: 575px) {
    .features .nav-link h4 {
      font-size: 1.6rem;
    }
  }
  
  .features .nav-link:hover {
    color: #005BB4;
  }
  
  .features .nav-link.active {
    color: #005BB4;
    background-color: transparent;
    border-color: #005BB4;
  }
  
  .features .tab-content {
    margin-top: 30px;
  }
  
  .features .tab-pane h3 {
    font-weight: 700;
    font-size: 3.2rem;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #005BB4;
    left: 0;
    bottom: 0;
  }
  
  .features .tab-pane p{
    font-size:1.7rem;
  }

  .features .tab-pane ul {
    list-style: none;
    padding: 0;
  }
  
  .features .tab-pane ul li,
  .features .tab-pane ul li a{
    padding-top: 10px;
    font-size: 1.7rem;
    color:#000;
  }

  .features .tab-pane ul li a{
    padding-left:6px;
  }
  
  .features .tab-pane ul i {
    padding-right: 4px;
    color: #005BB4;
  }
  
  .features .tab-pane p:last-child {
    margin-bottom: 0;
  }