  .industries-section {
    margin: 100px auto 50px;
    padding: 120px 15px;
    text-align: center;
    background-color: rgba(232, 166, 34, 0.1);
  }

    .industries-section h2 {
    display: inline-block;
    color: rgb(232, 166, 34);
    padding: 0 0 20px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
    position: relative;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.44px;
    margin: 0;
  }

.industries-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 8px;
    background-color: rgb(232, 166, 34);
    margin: 18px auto 10px;
    border-radius: 2px;
  }
  .industries-section p.description {
    max-width: 900px;
    margin: 10px auto 60px;
    font-weight: 400;
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.5;
  }
  .industries-grid {
    gap: 40px 30px;
    justify-items: center;
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  .industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4c4c4c;
    cursor: default;
    border: 1px solid #f2dfaf;
    padding: 70px 15px;
    width: calc(100%/4 - 25px);
  }

.industry-item>img {
    max-width: 50px;
    max-height: 50px;
}
  .industry-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    fill: #d99e0a;
  }

  .industry-label {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    margin-top: 25px;
  }
.industry-item:hover{
      background: #fff7de;
      border: 1px solid #f2db8f;
}
.industry-item:hover .industry-label{
    color: #d99e0a;
}
