.bldcProductLstItems {
  margin: 20px 0;

  .bldcProductLstInner {
    position: relative;

    .bldcProductLstImg {
      border-radius: 20px 20px 10px 10px;
      overflow: hidden;
      width: 100%;
      height: 450px;

      a {
        width: 100%;
        height: 100%;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }

    .bldcProductLstInfo {
      display: flex;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      justify-content: space-between;
      padding: 0 20px;

      .bldcProductLstName {
        width: calc(100% - 90px);
        padding: 10px 20px 5px;
        background-color: #FFF5EE;
        border-radius: 20px 20px 0 0;
        position: relative;

        &::before {
          width: 16px;
          height: 37px;
          background: url(../images/about-us/cornerIcon.png) no-repeat;
          background-size: 100%;
          position: absolute;
          left: -16px;
          content: "";
          bottom: -21px;
        }

        &::after {
          width: 20px;
          height: 34px;
          background: url(../images/about-us/cornerIcon.png) no-repeat;
          background-size: 100%;
          position: absolute;
          right: -13px;
          content: "";
          bottom: -7px;
          transform: rotate(90deg);
        }

        .bldcProductName {
          h5 {
            font-family: 'Unbounded';
            color: #000;
            transition: 0.5s;
            font-size: 18px;
            margin: 0 0 7px;
          }
        }

        p {}
      }

      .bldcProductLstArrow {
        width: 74px;
        height: auto;
        border-radius: 35px 35px 0 0;
        background-color: #FFF5EE;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;

        &::before {
          width: 16px;
          height: 37px;
          background: url(../images/about-us/cornerIcon.png) no-repeat;
          background-size: 100%;
          position: absolute;
          left: -16px;
          content: "";
          bottom: -21px;
        }

        &::after {
          width: 20px;
          height: 34px;
          background: url(../images/about-us/cornerIcon.png) no-repeat;
          background-size: 100%;
          position: absolute;
          right: -13px;
          content: "";
          bottom: -7px;
          transform: rotate(90deg);
        }

        a {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px;
          background-color: #fff;
          transition: 0.5s;
        }
      }
    }
  }

  &:hover {
    & .bldcProductLstInner {
      & .bldcProductLstInfo {
        & .bldcProductLstName {
          & .bldcProductName {
            h5 {
              color: var(--green-color);
            }
          }
        }

        & .bldcProductLstArrow {
          a {
            background-color: var(--orange-color);

            img {
              filter: brightness(0) invert(1);
            }
          }
        }
      }
    }
  }
}

/* product details */
.bldcGalSlider {
  padding-bottom: 86px;

  .slick-arrow {
    top: auto;
    transform: none;
    bottom: 0;

    &.slick-prev {
      left: calc(50% - 50px);
    }

    &.slick-next {
      right: calc(50% - 60px);
    }
  }
}

/* product tab */
.productTabWrap {
  .prodTabLst {
    position: sticky;
    top: 100px;

    li {
      background-color: #656565;
      color: #fff;
      padding: 15px 10px;
      border-radius: 0 10px 10px 0;
      margin: 7px 0 0 7px;
      cursor: pointer;
      position: relative;
      font-size: 20px;
      transition: .4s;

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -7px;
        width: 5px;
        height: 100%;
        background-color: #656565;
        border-radius: 10px 0 0 10px;
        transition: .4s;
      }

      &.active,
      &:hover {
        background-color: #00532e;
      }

      &.active::before,
      &:hover::before {
        background-color: #00532e;
      }
    }
  }

  .prodTabCont {
    display: none;

    .specificationTable {
      overflow: auto;
      overflow-y: hidden;
    }

    &.active {
      display: inherit;
    }
  }
}

.bldcDtlFeatures {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 15px;

  .chooseContentWrap {
    margin-top: 0;
  }
}

/* related product */
.bldcProductRelSec {
  .productSlider {
    .productItemImg {
      height: 400px;
      width: 100%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

/* start responsive */
@media(max-width: 1600px) {
  .bldcProductRelSec {
    & .productSlider {
      .productItemImg {
        height: 340px;
        width: 100%;
      }
    }

    &.productCommon {
      & .productItem {
        & .productBottom {
          & .productTitle {
            a {
              font-size: 20px;
            }
          }
        }
      }
    }


  }
}

@media(max-width: 1440px) {
  .bldcProductLstItems {
    & .bldcProductLstInner {
      .bldcProductLstImg {
        height: 330px;
      }

      & .bldcProductLstInfo {
        .bldcProductLstName {
          width: calc(100% - 77px);
          padding: 10px 14px 5px;

          & .bldcProductName {
            h5 {
              font-size: 16px;
            }
          }

          p {
            line-height: 1.3rem;
            font-size: 14px;

          }
        }

        .bldcProductLstArrow {
          width: 60px;

          a {
            width: 40px;
            height: 40px;
          }
        }
      }
    }
  }
}

@media(max-width: 1366px) {
  .bldcProductLstItems {
    & .bldcProductLstInner {
      .bldcProductLstInfo {
        padding: 0 18px;

        .bldcProductLstName {
          width: calc(100% - 70px);
        }

        .bldcProductLstArrow {
          width: 54px;

          a {
            width: 37px;
            height: 37px;
            padding: 8px;
          }
        }
      }
    }
  }

  .bldcProdSec2 {
    .chooseContentWrap {
      & .chooseItem {
        .chooseInner {
          padding: 15px;
        }
      }
    }
  }
  .bldcProductRelSec {
    &.productCommon {
      & .productItem {
        & .productBottom {
          & .productTitle {
            a {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
}