.main-festival {
    padding-bottom: 150px;
}

.main-festival__title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}
.main-festival__title-text {
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.main-festival__slider-block {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
    align-items: center;
}

.main-festival__slider-block > div {
    flex-grow: 1;
}

.main-festival__main-text {
    width: 100%;
}

.main-festival__slider-block > .swiper {
    width: 100%;
    aspect-ratio: 1;
}

.main-festival__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 90%;
    height: 90%;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-inline: auto;
}

.main-festival__slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-festival__registration {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .main-festival__slider-block {
        flex-direction: column;
        align-items: center;
    }

    .main-festival__slider-block > .swiper {
        max-width: 600px;
    }
}