.item {
    background-color: #c61c1c;
    margin: 10px;
    height: 50px;
}

h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.05em;
}

img[src*="img/beach"] {
    height: 500px;
    object-fit: cover;
}

.carousel {
    margin-bottom: 20px;
}

.h5, h5 {
    font-size: 4.25rem;
    color: rgb(60, 62, 207, 0.6);
}

p {
    margin-top: 0;
    font-size: 25px;
    color: beige;
}


.carousel-control-next-icon {
    background-image: url('img/toRight.png');
    width: 80px;
    height: 80px;
}

.carousel-control-prev-icon {
    background-image: url('img/toRight.png');
    transform: rotate(180deg);
    width: 80px;
    height: 80px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

/* Стили для индикаторов карусели */
.carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    background-color: pink !important;
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin-right: 2px;
        margin-left: 2px;
    }

    .carousel-control-next-icon {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev-icon {
        width: 50px;
        height: 50px;
    }

}
