#projects {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 50px;
    align-items: center;

    .d-none {
        visibility: hidden !important;
        height: 0 !important;
    }
    .sp-w-100 {
        position: relative;
        @media screen and (max-width: 1180px) {
            width: 100%;
        }
    }

    ul {
        width: 1100px;
        height: 40px;
        margin-bottom: 0;
        border-radius: 50px;
        background: #FFFFFF;

        li {
            cursor: pointer;
            border-radius: 50px;
            background: #FFFFFF;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
        }
        li:hover {
            opacity: 0.8;
        }
        @media screen and (max-width: 1180px) {
            li {
                margin: 0;
            }
        }

        .active {
            background: #1E82DB;
            color: #FFFFFF;
        }
    }
    @media screen and (max-width: 1180px) {
        ul {
            width: 98%;
            display: flex;
            margin: 0;
        }
    }

    .splide__track {
        width: 1100px;
        padding: 0 55px;
    }
    @media screen and (max-width: 1180px) {
        .splide__track {
            width: 98%;
            padding: 0;
        }
    }
    .splide__list {
        width: 100%;

        .splide__slide {
            width: 400px;
            height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;
            padding: 20px;
            border-radius: 10px;
            background: #FFFFFF;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);

            .slider-card-header {
                height: 30%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                padding-bottom: 5px;
                border-bottom: 1px solid #CDD6EA;
                .title-area {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    .labels {
                        display: flex;
                        gap: 10px;
                    }
                }
            }

            .slider-card-body {
                height: 30%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .slider-card-footer {
                display: flex;
                flex-direction: row;
                align-items: flex-end;
                gap: 10px;

                img {
                    width: 100px;
                }

                .text-area {
                    width: 100%;
                    height: 120px;
                    background-color: #E8F2FB;
                    padding: 10px;

                    .title {
                        text-align: start;
                        font-size: 10px;
                        font-weight: 600;
                    }

                    .detail {
                        padding-left: 5px;
                        font-size: 10px;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 6;
                        text-align: start;
                    }
                }
            }

            .slider-card-project-label {
                text-align: center;
                padding: 2px 10px;
                font-size: 10px;
                background: #FDF3F3;
                color: #CD3535;
            }
            .engineer-label {
                background: #E0EDF5;
                color: #5B84D4;
            }
            .marketer-label {
                background: #E4F0E0;
                color: #57AE65;
            }
            .designer-label {
                background: #F1E6F4;
                color: #C278EA;
            }
            .other-label {
                background: #F5F6D4;
                color: #E8B84B;
            }

            .slider-card-project-title {
                padding-bottom: 0;
                text-align: start;
                -webkit-text-size-adjust: none;
                font-size: 16px;
                color: #1D82DA;
            }

            .slider-card-wage {
                font-size: 12px;
                font-weight: 600;

                .highlight-text {
                    font-size: 16px;
                    color: #E56868;
                }
            }

            .slider-card-detail {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                line-height: 1;
                gap: 5px;
                font-size: 10px;
            }
            .slider-card-detail:before {
                display: block;
                content: '';
                width: 20px;
                height: 20px;
            }
            @media screen and (max-width: 1180px) {
                .slider-card-detail {
                    gap: 2px;
                }
            }
            .icon-rule:before {
                background:url(/imgs/top/icon-role-blue.svg) no-repeat;
                background-size: 20px 20px;
            }
            .icon-develop:before {
                background:url(/imgs/top/icon-develop-blue.svg) no-repeat;
                background-size: 20px 20px;
            }
            .icon-work:before {
                background:url(/imgs/top/icon-work-blue.svg) no-repeat;
                background-size: 20px 20px;
            }
            .icon-contract:before {
                background:url(/imgs/top/icon-contract-blue.svg) no-repeat;
                background-size: 20px 20px;
            }

            .slider-card-tag {
                display: inline-block;
                color: #5d7cba;
                padding: 2px 5px;
                border: 1px solid #5d7cba;
                border-radius: 20px;
                text-decoration: none;
                transition: all .2s ease;
                font-size: 10px;
            }
        }
        @media screen and (max-width: 1180px) {
            .swiper-slide {
                height: 500px;
            }
        }
    }

    .splide__arrows {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }
    .splide__arrow--prev:before,
    .splide__arrow--next:before {
        content: '';
    }
    .splide__arrow--prev,
    .splide__arrow--next {
        z-index: 1;
        width: 36px;
        height: 42px;
        cursor: pointer;
    }
    .ssplide__arrow--prev:hover,
    .splide__arrow--next:hover {
        opacity: 0.8;
    }
    .splide__arrow--prev:after,
    .splide__arrow--next:after {
        content: '';
    }
    .splide__arrow--prev {
        position: absolute;
        left: -45px;
        background: url(/imgs/top/icon-side-left-button.svg) no-repeat;
        background-size: 100%;
    }
    .splide__arrow--next {
        position: absolute;
        right: -45px;
        background: url(/imgs/top/icon-side-right-button.svg) no-repeat;
        background-size: 100%;
    }
    @media screen and (max-width: 1180px) {
        .splide__arrow--prev {
            left: 0;
        }
        .splide__arrow--next {
            right: 0;
        }
    }
}

.loader-wrapper {
    position: absolute;
    left: 48%;
    top: 38%;
}
.loader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%,#575757) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
        radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation:l4 1s infinite steps(10);
}
@keyframes l4 {to{transform: rotate(1turn)}}
