/* Discover Notes Carousel Styles */
.discover-notes-carousel {
    padding: 4rem 0 3rem 0;
    background-color: var(--main-color);
    position: relative;
}

.discover-notes-carousel h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white-color);
}

.discover-notes-carousel .container{
    width: 100%;
    max-width: 1400px;
}

.discover-notes-carousel .swiper{
    max-width: 100% !important;
}

.notes-title{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding-left: var(--padding-horizontal);
    padding-right: var(--padding-horizontal);
}

.notes-title h2{
    color: var(--white-color);
    margin: 0;
    text-align: center;
}
.notes-title span{
    color: var(--secondary-color);
}

.notes-title p{
    color: var(--white-color);
}

.note-image{
    background-image: url("../../assets/homepage/frame2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.note-image img{
    width: 50%;
    height: 80%;
    object-fit: contain;
    height: 400px;
}

.placeholder-image {
    width: 50%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-slide{
    margin-bottom: 60px;
}

.note-slide p{
    color: var(--white-color);
    text-align: center;
}

.note-title{
    margin-bottom: 5px;
    margin-top: 15px;
}

.note-cta{
    color: var(--secondary-color) !important;
    font-weight: bold;
    margin: 0;
}


#petal1Notes{
    position: absolute;
    top: 30%;
    left: 10%;
    width: 4%;
}

#petal2Notes{
    position: absolute;
    top: 20%;
    left: 15%;
    width: 5%;
}

#petal3Notes{
    position: absolute;
    bottom: 4%;
    right: 5%;
    width: 8%;
}

@media (max-width:780px) {
    #petal1Notes{
        width: 15%;
        left: 2%;
        top:50%;
    }

    #petal2Notes{
        width: 15%;
        left: 5%;
        top:5%;
    }

    #petal3Notes{
        width: 25%;
        right: 0%;
        bottom:2%;
        left: initial;
    }
}