.portfolio-details-item {
  .thumbnail {
    margin-bottom: 40px;

    img {
      width: 100%;
    }
  }

  .portfolio-gallery {
    margin-top: 50px;

    ul {
      width: 100%;
    }
  }

  .project-head {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 1px 10px 0 #00000017;
    margin-left: 60px;
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -50px;
    position: relative;
    z-index: 0;

    .custom-flex {
      display: flex;

      .content {
        margin-right: 30px;

        ul {
          padding: 0;
          margin: 0;
          list-style: none;

          li {
            display: inline-block;
            font-size: 14px;
            font-weight: 400;

            i {
              color: var(--main-color-one);
              margin-right: 5px;
            }
          }
        }
      }

      .post-by,
      .post-date {
        font-size: 14px;
        font-weight: 400;
        i{
          color: var(--main-color-one);
          margin-right: 5px;
        }
      }

      .title {
        font-size: 22px;
        line-height: 32px;
        font-weight: 700;
      }
    }
  }

  .quote-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    line-height: 1;
    padding-bottom: 15px;
    margin-bottom: 20px;
    margin-right: 20px;
    float: left;
    color: $white;
    background-color: var(--main-color-one);
  }

  .subtitle {
    font-size: 30px;
    font-weight: 700;
  }

  .portfolio-inner-div {
    background: #f3f5f7;
    padding: 30px 30px 20px;
    margin-top: 35px;

    p {
      font-size: 14px;
      margin-bottom: 0;
    }
  }

  p {
    font-size: 16px;
    line-height: 1.8;
  }

  .case-details-img {
    margin-bottom: 0;

    ul {
      width: 100%;

      li {
        margin-bottom: 0;
      }
    }
  }

  .portfolio-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 20px;

    li {
      padding-left: 40px;
      padding-bottom: 10px;
      position: relative;

      + li {
        margin-top: 20px;
      }

      &:after {
        content: '\f00c';
        position: absolute;
        color: var(--main-color-one);
        left: 0;
        top: 0;
        width: 30px;
        font-weight: 700;
        font-family: "fontawesome";
        transition: all 0.3s ease-in;
        height: 30px;
        background: #f3f5f7;
        border-radius: 50%;
        line-height: 30px;
        text-align: center;
        font-size: 12px;
      }
    }
  }
}