.project-gallery-slider-section {
    position: relative;
    max-width: 1895px;
    padding: 0 20px;
    margin: 0 auto;
}

.project-gallery-slider-swiper {
    position: relative;
    overflow: hidden;
}

.project-gallery-slider-slide {
    position: relative;
}

.project-gallery-slider-lightbox {
    display: block;
    text-decoration: none;
    outline: none;
}

.project-gallery-slider-block {
    position: relative;
    margin-bottom: 32px;
    border-radius: 25px;
    overflow: hidden;
    height: 620px;
    /* background-color: #f0f2f4; */
}

.project-gallery-slider-block.custom-cursor-trigger,
.project-gallery-slider-block.custom-cursor-trigger * {
    cursor: none;
}

.project-gallery-slider-block:hover .project-gallery-slider-architecture {
    opacity: 1;
    visibility: visible;
}

.project-gallery-slider-block:hover .project-gallery-slider-block-image {
    transform: scale(1.1);
    filter: blur(4px);
}

.project-gallery-slider-block-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.project-gallery-slider-architecture {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 36px 28px 27px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    border-radius: 0 25px 0 25px;
    z-index: 3;
}

.dark-mode .project-gallery-slider-architecture {
    background-color: var(--theme-color-3);
}

.project-gallery-slider-architecture::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
    background-image: url("/images/dump/gallery-shap.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.project-gallery-slider-architecture::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-image: url("/images/dump/gallery-shap.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.dark-mode .project-gallery-slider-architecture::before,
.dark-mode .project-gallery-slider-architecture::after {
    filter: var(--dark-bg-filter);
}

.project-gallery-slider-architecture a,
.project-gallery-slider-architecture span>span {
    position: relative;
    font-size: var(--fs-20);
    line-height: 25px;
    font-weight: 400;
    color: var(--color-text);
    display: inline-block;
    z-index: 99;
    text-decoration: none;
}

.dark-mode .project-gallery-slider-architecture a,
.dark-mode .project-gallery-slider-architecture span>span {
    color: var(--color-white);
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    font-size: var(--fs-15);
    line-height: 20px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.custom-cursor.dragging {
    transform: translate(-50%, -50%) scale(0.85);
}

/** Responsive ******************************/
@media (max-width: 1650px) {}

@media (max-width: 1350px) {
    .project-gallery-slider-block {
        height: 560px;
    }
}

@media (max-width: 1200px) {
    .project-gallery-slider-block {
        height: 520px;
    }
}

@media (max-width: 1099px) {}

@media (max-width: 992px) {
    .project-gallery-slider-block {
        height: 480px;
    }

    .project-gallery-slider-architecture {
        opacity: 1;
        visibility: visible;
        padding: 28px 22px 22px 18px;
    }
}

@media (max-width: 768px) {
    .project-gallery-slider-block {
        height: 420px;
        cursor: pointer;
    }

    .project-gallery-slider-block.custom-cursor-trigger,
    .project-gallery-slider-block.custom-cursor-trigger * {
        cursor: pointer;
    }

    .custom-cursor {
        display: none !important;
    }

    .project-gallery-slider-architecture a,
    .project-gallery-slider-architecture span>span {
        font-size: var(--fs-18);
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .project-gallery-slider-block {
        height: 360px;
    }

    .project-gallery-slider-architecture {
        padding: 22px 18px 18px 16px;
    }

    .project-gallery-slider-architecture a,
    .project-gallery-slider-architecture span>span {
        font-size: var(--fs-17);
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .project-gallery-slider-block {
        height: 320px;
        border-radius: 20px;
    }

    .project-gallery-slider-architecture {
        border-radius: 0 20px 0 20px;
    }
}

@media (max-width: 363px) {}

@media (max-width: 340px) {}