.residential-construction-services {
  .fading-slider {
    position: relative;
    height: 450px;

    margin: 0px auto;

    @media(min-width:768px){
      height: 650px;
    }
    img {

      height: 450px;
      width:100%;
      object-fit: cover;
      margin: 0px auto;
      border-radius: 30px;
      transition: opacity 300ms ease;
      opacity: 1;
      position: absolute;
      top: 0px;
      left:50%;
      transform:translateX(-50%);

      @media(min-width:768px){
        height: 650px;
      }

      &:not(.active) {
        opacity: 0;
      }
    }
  }

  .inner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }
  }
  .right{
    p,li{
      color:var(--blue);
    }

    svg{
      width:30px;
      height:30px;
      margin-right:30px;
      path{
        fill: var(--blue);
      }
    }
    ul{
      padding:20px 0px 0px 0px;
      @media(min-width:768px){
        padding:50px 0px 0px 0px;
      }
      list-style: none;
      li{
        text-transform: uppercase;
        display: flex;

        padding:5px 10px;
        align-items: anchor-center;
        @media(min-width:768px){
          padding:10px;
        }
      }
    }
  }
}

