/* common */
body {}

* {
    box-sizing: border-box;
}

.wrapper {
    width: 100%;
    max-width: 1724px;
    margin: 0 auto;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 0 20px;
    }
}

h2 {
    text-align: center;
    font-weight: normal;
}

button {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.carousel-wrapper {
    position: relative;
}

.carousel {
    margin-bottom: 3em;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 540px;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}

.item__blue {
    background: rgb(68 174 255);
}

.item__red {
    background: rgb(248 82 1);
}

.item__yellow {
    background: rgb(255 213 27);
    color: #585858;
}

.item__purple {
    background: rgb(227, 72, 255);
}

.swiper-wrapper img {
    width: 100%;
    transition: 0.3s;
}

@media screen and (min-width: 769px) {
    .swiper-wrapper img:hover {
        opacity: 0.7;
    }
}

.swiper-slide-active {
    width: 1000px;
}

.event-slide {
    max-width: 1200px;
    margin: auto;
}