.app-container {
  .projects-selected {
    .projects-selected__container {
      position: relative;
      z-index: 2;
      max-width: 1192px;
      padding: 48px 100px;
      width: 100%;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 48px;
      @media (max-width: 1400px) {
        padding: 48px 50px;
      }
      @media (max-width: 1000px) {
        padding: 32px 16px;
        gap: 48px;
      }
    }
    .projects-selected__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
      .case-study-selected__header-text {
        max-width: 584px;
        p {
          margin-bottom: 0;
        }
      }
    }
    .projects-selected__item {
      width: calc(33.33% - 11px);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: 0.3s;
      @media (min-width: 768px) {
        &:hover {
transform: translateY(-6px);
        }
      }
     
     
      @media (max-width: 768px) {
        width: 100%;
        padding: 24px;
      }
     
      .projects-selected__thumb {
        width: 100%;
        display: flex;
        img {
          width: 100%;
          object-fit: cover;
          height: 200px;
          border-radius: 4px;
          @media (max-width: 768px) {
            height: 180px;

          }
        }
      }
      p.title {
        color: #191325;
        font-size: 19px;
        font-weight: 600;
        line-height: 1.2;
        font-family: var(--mainfont);
        margin-bottom: 0px;
        padding: 16px;
        @media (max-width: 1000px) {
          font-size: 16px;
        }
      }
      .projects-selected__item-text {
        p {
          font-size: 13px;
          margin-bottom: 24px;
        }
      }
      span.more {
        background-color: #7b4fff;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 360px;
        font-size: 16px;
        align-items: center;
        font-weight: 600;
        text-decoration: none;
        justify-content: center;
        padding: 12px 20px;
        transition: 0.3s;
        display: flex;
        width: fit-content;
        margin-top: auto;

        svg {
          margin-left: 12px;
          path {
            transition: 0.3s;
          }
        }
        &:hover {
          background-color: #5018bf;
        }
      }
    }
    .projects-selected__items {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
  }
}
