#projects-section {
    width: 100%;
    height: 100vh;
    padding-top: 12vh;
    overflow: hidden;
    box-sizing: border-box;
}
.carousel-c {
    position: relative;
    max-width: 50vw;
    margin: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.carousel-track-c {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card-c {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5vh;
    height: 80vh;
    width: 100%;
}
.card-c > a {
    position: absolute;
    top: 88%;
}

.card-c > img{
    height: 70%;
    width: auto;
}
#icon-pair {
    /* font-family: "montserrat", sans-serif; */
    position: absolute;
    top: 88%;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#icon-pair h6 {
    margin: 0;
}
#ai-report-img {
    cursor: pointer;
}
#clue-img, #reg-img, #gesture-img {
    width: 80%;
    height: auto;
    margin-bottom: 3vh;
    box-shadow: 10px 5px 15px black;
}
#reg-img {
    width: 60%;
    height: auto;
}
#gesture-img {
    height: 60%;
    width: auto;
}
.carousel-indicators-c {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.carousel-indicators-c button {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
}

.carousel-indicators-c button.active {
    background-color: #333;
}
.carousel-arrow-c {
    color: black;
}

@media screen and (max-width: 1100px) {
    .carousel-c {
        max-width: 100vw;
    }
    .carousel-track-c {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    .card-c {
        height: 65vh;
    }
    .carousel-arrow-c {
        top: 85%;
        width: 60px;
        height: 60px;
        font-size: 2rem;
        filter: opacity(0.5)
    }
    #clue-img {
        width: 100%;
        height: auto;
    }
    .carousel-arrow-c:hover {
        font-size: 2rem;
    }
    .carousel-arrow-c.left {
        left: 1.5vw;
    }
    .carousel-arrow-c.right {
        right: 1.5vw;
    }
}