.project-list-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #1d1d1d;
  transition: background-color 0.3s ease;
}

.project-list-item-text {
  width: 40%;
}

.project-list-item-text h4 {
  margin-top: 0;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.project-list-item-img {
  position: relative;
  width: 40%;
}

.project-list-item-types {
  display: flex;
}

.project-list-item-types > span {
  display: flex;
}

.project-list-item-types > span:not(:last-of-type)::after {
  content: "|";
  display: block;
  padding: 0 0.5em;
}

.project-list-item-img img {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  user-select: none;
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.3s ease !important;
  max-width: calc(100% - 30px);
}

.project-list-item-btn {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: "Saira Condensed";
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-list-item:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.project-list-item:hover .project-list-item-img img {
  opacity: 1 !important;
}

.project-list-item:hover h4 {
  color: white;
}

.project-list-item:hover .project-list-item-btn {
  opacity: 1;
}

.project-list-wrap {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .project-list-item-img {
    display: none;
  }

  .project-list-item-text {
    width: 75%;
  }

  .project-list-item-btn {
    width: 25%;
  }
}

@media screen and (max-width: 585px) {
  .project-list-item-text {
    width: 100%;
  }

  .project-list-item-btn {
    display: none;
  }
}
/**
SM
**/
.projects-list-sm {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.project-list-item-sm {
  display: flex;
  gap: 30px;
  padding: 25px 15px;
  background-color: #d3d5d9;
  transition: background-color 0.3s ease;
}
.project-list-item-sm-img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.project-list-item-sm-text > h4 {
  margin-top: 0;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.project-list-item-sm:hover {
  background-color: var(--color-primary);
}
.project-list-item-sm:hover .project-list-item-sm-text > h4 {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
    .projects-list-sm{
      gap: 20px;
    }
    .project-list-item-sm{
    padding: 17px 12px;
    gap: 15px;

    }
    .project-list-item-sm-img img{
      width: 66px;
      height: 66px;
    }
    .project-list-item-sm-text > h4{
      font-size: 26px;
    }
    .projects-list-sm .project-list-item-types{
      font-size: 13px;
      line-height: 1em;
    }
}
/** single **/
.single #lqd-contents-wrap {
        margin: 0 !important;
        padding: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }

    #single-banner {
        background-color: #1d1d1d;
        background-image: var(--thumbnail);
        background-size: cover;
        background-position: center;
        position: relative;
    }

    #single-banner::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(29, 29, 29, 0.4);
    }

    #single-banner .col-sm-12 {
        min-height: 45vh;
        display: flex;
        align-items: end;
        margin-top: 170px;

    }

    .single-project-general-info {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 8vh;
        display: flex;


    }

    .single-project-general-info i {
        color: var(--color-primary);
        margin-right: 0.6em;
        font-size: 22px;
    }

    .single-project-types {
        display: flex;

    }

    .banner-col-inner h1 {
        color: white;
    }

    .single-project-types>span {
        display: flex;
    }

    .single-project-location {
        display: flex;
        align-items: center;

    }

    .single-project-types>span:not(:last-of-type)::after {
        content: "|";
        display: block;
        padding: 0 0.5em;
    }

    .other-projects {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .project-grid-item {
        display: block;
        padding: 15px;
    width: 33.3333333%;
    }

    .project-grid-item-inner {
        display: flex;
        flex-direction: column;
        padding: 25px 15px;
        background: #d3d5d9;
        transition: 0.3s ease background-color;
    }

    .project-grid-item:hover>.project-grid-item-inner {
        background-color: var(--color-primary);
    }

    .project-grid-item:hover .project-grid-item-text>h4 {
        color: white;
    }

    .project-grid-item-img img {
        aspect-ratio: 1 / 1;
        width: 100%;
        object-fit: cover;
    }

    .project-grid-item-text>h4 {
        margin-top: 25px;
        transition: 0.3s ease background-color;
    }

    .project-grid-item-types {
        display: flex;
    }

    .project-grid-item-types>span {
        display: flex;
    }

    .project-grid-item-btn {
        margin-top: 15px;

    }

    .project-grid-item-types>span:not(:last-of-type)::after {
        content: "|";
        display: block;
        padding: 0 0.5em;
    }

    @media screen and (max-width: 1200px) {
        .project-grid-item {
            width: 50%;
        }
    }

    @media screen and (max-width: 768px) {
        .project-grid-item {
            width: 100%;
        }
    }
.archive #lqd-contents-wrap {
        margin: 0 !important;
        padding: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }

    #archive-banner {
        background-color: #1d1d1d;
        background-image: var(--thumbnail);
        background-size: cover;
        background-position: center;
        position: relative;
    }

    #archive-banner::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(29, 29, 29, 0.4);
    }

    #archive-banner .col-sm-12 {
        min-height: 45vh;
        display: flex;
        align-items: end;
        margin-top: 170px;

    }

    #archive-banner h1 {
        color: white;
    }

    .project-loop {
        display: flex;
        flex-wrap: wrap;
        margin: 8vh -15px;
    }

    /**
    Topions
     */
    #project-loop-filters {
        display: flex;
        gap: 20px;
        align-items: end;
        flex-wrap: wrap;


    }

    .filter-select {
        position: relative;

    }

    .clear-filter {
        position: absolute;
        left: -37px;
        user-select: none;
        z-index: -1;
        opacity: 0;
        height: 100%;
        background: none;
        color: white;
        border: none;
        font-size: 25px;
    }

    .filter-wrap {
        min-width: 270px;

    }

    .nondefault .clear-filter {
        user-select: initial;
        z-index: 1;
        opacity: 1;

    }

    .filter-select-status {
        height: 60px;
        padding: 0 25px;
        display: flex;
        align-items: center;
        border: 2px solid white;
        color: white;
        margin-right: 50px;
        transition: border-bottom-color 0.2s ease;
        position: relative;
    }

    .filter-select-status::after {
        content: "\f282";
        font-family: bootstrap-icons !important;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 22px;
        transition: transform 0.2s ease;
    }

    .filter-wrap:hover .filter-select-status::after {
        transform: translateY(-50%) rotateX(180deg);

    }

    .filter-options {
        position: absolute;
        top: 60px;
        max-height: 0;
        overflow: hidden;
        width: calc(100% - 50px);
        background-color: #1d1d1d;
        transition: max-height 0.2s ease;
    }

    .filter-options-inner {
        border: 2px solid white;
        max-height: 100%;
        padding: 10px;
        padding-left: 20px;
        overflow-y: scroll;
        overflow-x: hidden;
        border-top: none;
        display: flex;
        flex-direction: column;
    }

    .filter-options-inner>span {
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        color: white;
        padding: 12px 5px;
    }

    .filter-options-inner>span:not(:last-of-type) {
        border-bottom: 1px solid white;

    }

    .filter-options-inner>span:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .filter-select:hover .filter-options,
    .filter-options:hover,
    .filter-options:focus-within {
        max-height: 500px;
    }

    .filter-select:hover {
        z-index: 10;
    }

    .filter-wrap>p {
        color: white;
        margin-bottom: 10px;
    }

    .filter-wrap>p i {
        color: var(--color-primary);
        font-size: 20px;
        margin-right: 0.4em;
    }

    #project-loop-section {

        background: #1d1d1d;
        padding: 8vh 0;
    }

    @media screen and (max-width: 560px) {
        .filter-wrap {
            width: 100%;
        }

        .filter-select-status {
            margin-right: 0;

        }

        .filter-options {
            width: 100%;
        }
        #project-loop-filters{
          padding: 0 20px;
        }
    }

    .filter-options-inner {
        scrollbar-width: thin;
        /* Firefox */
        scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
    }

    /* Chrome, Edge en Safari */
    .filter-options-inner::-webkit-scrollbar {
        width: 5px;
    }

    .filter-options-inner::-webkit-scrollbar-track {
        background: transparent;
    }

    .filter-options-inner::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.25);
        border-radius: 10px;
    }

    .filter-options-inner::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .project-skeleton {
        display: contents;

        /* Define the colors as css custom props */
        --_default-color: #e5e5e5;
        --_shimmer-color: #e2e2e2;

        * {
            /* Apply the animation that moves the background */
            animation: skeleton-shimmer 3s ease-out infinite;

            /* Create a background that has a small shimmer "stripe"
      and tilt it 100 degrees. */
            background: linear-gradient(100deg,
                    var(--_default-color),
                    var(--_default-color) 45%,
                    var(--_shimmer-color) 60%,
                    var(--_default-color) 75%);

            /* Make the background twice the width so we can offset it. */
            background-size: 200% 100%;
        }
    }


    .project-skeleton-item {
        width: calc(33.3333% - 30px) !important;
        aspect-ratio: 8/11;
        margin: 0 15px;
    }

    @media screen and (max-width: 1200px) {
        .project-skeleton-item {
            width: calc(50% - 30px) !important;
        }

    }

    @media screen and (max-width: 768px) {
        .project-skeleton-item {
            width: 100% !important;
        }


    }

    @keyframes skeleton-shimmer {
        0% {
            background-position-x: 200%;
        }

        100% {
            background-position-x: 0%;
        }
    }