
.tech-content {
    float: right;
    margin-right: 5%;
  }
  
  .tech-content .color-chaning {
    color: #3498db;
    position: absolute;
  }
  
  
  
  /* Media Query for Mobile Devices */
  @media (max-width: 480px) {
    .tech-content {
      font-size: 12px;
    }
  }
  
  /* Media Query for low resolution  Tablets, Ipads */
  @media (min-width: 481px) and (max-width: 767px) {
    .tech-content {
      font-size: 12px;
    }
  }
  
  /* Media Query for Tablets Ipads portrait mode */
  @media (min-width: 768px) and (max-width: 1024px) {
    .tech-content {
      font-size: 12px;
    }
  }
  
  /* Media Query for Laptops and Desktops */
  @media (min-width: 1025px) and (max-width: 1280px) {
    .tech-content {
      font-size: 12px;
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f6f6f6;
    transition: ease-in-out 0.3s;
    height: 100%;
  }
  
  .features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
  }
  
  .features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
  }
  
  .features .icon-box h3 a {
    color: #222222;
    transition: ease-in-out 0.3s;
  }
  
  .features .icon-box h3 a:hover {
    color: #3498db;
  }
  
  .features .icon-box:hover {
    background: #e5edf5;
  }
  .features .icon-box:hover .techtools-content{
    color: #3498db;
  }
  .techtools-img{
    width: 25px;
  }
  .techtools-content{
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
  }