.content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 80%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.slides-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    user-select: none;
    /* Убираем начальное смещение */
    transform: translateX(0%);
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.arrows {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 85%;
    top: 0;
    pointer-events: none;
}

.arrow {
    pointer-events: all;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.arrow:hover {
    opacity: 1;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 35px solid #c4311a;
}

.arrow-left {
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-right: 35px solid #c4311a;
}