.carousel {
    margin-bottom: 4rem;
}

.carousel-caption-custom-top {
    top: 30%;
}

.carousel-caption-custom-left {
    top: 30%;
    left: 350px;
}

.carousel-caption-custom-right {
    top: 20%;
    right: 350px;
}

.carousel-item {
    height: 32rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--bs-secondary-color);
    background-image: none; /* Usuń domyślne ikony */
    width: 50px;
    height: 50px;
    mask-size: cover;
}

.carousel-control-prev-icon.custom-control-color {
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M1.646 8.354a.5.5 0 0 1 0-.708l6-6a.5.5 0 1 1 .708.708L2.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon.custom-control-color {
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M14.354 7.646a.5.5 0 0 1 0 .708l-6 6a.5.5 0 1 1-.708-.708L13.293 8 7.646 2.354a.5.5 0 1 1 .708-.708l6 6z"/%3E%3C/svg%3E');
}

.carousel-indicators [data-bs-target] {
    background-color: var(--bs-secondary-color);
}

.custom-text-color {
    color: var(--bs-secondary-color) !important;
}

.carousel-cell {
    position: absolute;
    /*z-index: 5;*/
    width: 200px;
    height: 430px;
    border-radius: 10px;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-cell-1 {
    top: 8%;
    left: 15%;
    right: 10%;
}

.carousel-cell-2 {
    top: 8%;
    right: 15%;
}

.carousel-heart {
    top: 15%;
    left: 40%;
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 1px;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

}

@media (max-width: 600px) {
    .carousel-cell-1 {
        left: 30%;
    }

    .carousel-cell-2 {
        left: 30%;
    }

    .carousel-container-1 {
        display: none;
    }

    .carousel-container-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .carousel-cell-1 {
        left: 23%;
    }

    .carousel-cell-2 {
        left: 23%;
    }

    .carousel-heart {
        left: 23%;
    }

    .carousel-container-2 {
        display: none;
    }
}