.res-industry-slider {
  .container {
    gap: var(--spacing_medium);
    .industries-top {
      display: flex;
      gap: var(--spacing_medium);

      > div {
        flex: 1;
      }

      .industries-top-left {

      }

      .industries-top-right {
        height: fit-content;
        margin-top: auto;

        p {
          margin-bottom: 16px;
        }
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 16px;
      }
    }
    .slick-slide {
      margin: 0 20px;
    }

    /* the parent */
    .slick-list {
      margin: 0 -20px;
    }

    .industries-bottom {
      .tile-link {
        height: 200px;
        border-radius: var(--border_radius);
        background-size: cover;

        padding: 20px;
        position: relative;
        span {
          font-size: 21px;
          position: absolute;
          left: 20px;
          bottom: 20px;
          font-weight: 600;
          color: #fff;
          z-index: 1;
        }

        &:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          background: #7F4E2B;
          opacity: 0.53;
          border-radius: var(--border_radius);
        }
      }
    }
  }
}