/* ---------------------------------- */
      /* decorations - large */
/* ---------------------------------- */

.bubble-top-left, .bubble-bottom-right {
    width: min(370px, 40vw);
    height: 40%;
}

.bubble-top-left {
    border-bottom-right-radius: 150px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(308deg, #FE4443 16.46%, #6DFA3F 74.87%);

}

.bubble-bottom-right {
    border-top-left-radius: 150px;
    height: 49%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(143.77deg, #FF4343 4.59%, #DED520 88.67%);

}

/* ---------------------------------- */
            /* content - large */
/* ---------------------------------- */

section.title .layout-big .content {
    font-size: 3em;
}

.swiper-container {
    position: absolute;
    left: 0;
    bottom: 5vh;
    bottom: calc(var(--vh, 1vh) * 5);
    width: 53vw;
    height: 40vh;
    height: calc(var(--vh, 1vh) * 40);
    background-color: #fff;
    border-radius: 0 150px 150px 0;
    overflow: hidden;
    padding-right: 0.8em;
    padding-left: 0.5em;
}

.title-h1 {
    position: absolute;
    top: 31.5vh;
    top: calc(var(--vh, 1vh) * 31.5);
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.9em;
}

.year-swiper {
    width: 100%;
    height: 100%;
    
}

.year-slide {
    color: #9FA2A5;
    font-size: 0.6em;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* padding: 1em; */
}

.year-slide.swiper-slide-next {
    color: #6E7276;
}

.year-slide.swiper-slide-active {
    /* color: #1B2128; */
    color: #FC8C7D;
}

.swiper-pagination-bullet-active {
    background-color: #FC8C7D;
}

@media screen and (max-width: 720px) {
    .swiper-container {
        position: absolute;
        left: 0;
        right:0;
        width: 100%;
        bottom: 10vh;
        bottom: calc(var(--vh, 1vh) * 10);
        height: 40vh;
        height: calc(var(--vh, 1vh) * 40);
        background-color: #fff;
        border-radius: 0;
        overflow: hidden;
        padding-right: 0.8em;
        padding-left: 0.5em;
    }

    section.title .layout-small .content {
        font-size: 3em;
    }

    .title-h1 {
        top: 21.5vh;
        top: calc(var(--vh, 1vh) * 21.5);
        font-size: 0.7em;
    }
}