.carousel .main-title {
    margin-bottom: 24px;
}

.projectSwiper {
    padding-top: 62px;
}

.projectSwiper .swiper-slide img {
    width: 100%;
    height: 448px;
    object-fit: cover;
    border-radius: 24px;
}

.projectSwiper .swiper-slide .number {
    color: #48788c;
}

.projectSwiper .swiper-slide .title {
    font-size: 32px;
    font-weight: 500;
}

.project-prev,
.project-next {
    position: absolute;
    top: 0;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 10;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-prev {
    left: 0;
}

.project-next {
    right: 0;
}

.project-pagination {
    display: flex;
    gap: 4px;
    margin-top: 60px;
    justify-content: center;
}

.project-bullet {
    width: 24px;
    height: 2px;
    background: #F4EEE7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-bullet-active {
    background: #48788c;
    width: 48px;
}

.inner-swiper .inner-pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 16px 0;
}

.inner-swiper .inner-pagination .inner-bullet {
    width: 24px;
    height: 2px;
    background: #F4EEE7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inner-swiper .inner-pagination .inner-bullet-active {
    background: #48788c;
    width: 48px;
}

.inner-prev,
.inner-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 1;
    background: #48788c;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.inner-prev {
    left: 15px;
}

.inner-next {
    right: 15px;
}

@media screen and (max-width: 992px) {
    .projectSwiper .swiper-slide img {
        height: 300px;
    }

    .projectSwiper .swiper-slide .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .carousel .main-title {
        margin-bottom: 16px;
    }

    .projectSwiper {
        padding-top: 49px;
    }

    .projectSwiper .swiper-slide img {
        height: 216px;
    }

    .projectSwiper .swiper-slide .title {
        font-size: 18px;
    }

    .projectSwiper .swiper-slide .number,
    .projectSwiper .swiper-slide .description {
        font-size: 12px;
    }

    .project-prev, .project-next {
        font-size: 12px;
        padding: 12px;
        bottom: unset;
    }

    .project-pagination {
        margin-top: 40px;
    }

    .project-bullet {
        width: 12px;
    }

    .project-bullet-active {
        width: 24px;
    }
}