#book-section {
    margin: 140px 0;
    position: relative;
}

#book-section .content {
    background: #EFEFFB;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    gap: 15px;
    z-index: 1000;
}

#book-section .content h5 {
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: 16px 0 16px;
}

#book-section .elipse-1 {
    position: absolute;
    z-index: 0;
    right: 0;
    top: -250px;
}

@media (max-width: 768px) {
    #book-section {
        margin: 0;
        background: #EFEFFB;
        z-index: 1000;
    }
    #book-section .elipse-1 {
        display: none;
    }
    #book-section .content {
        padding: 80px 0;
    }
    #book-section .content h5 {
        max-width: 381px;
        width: 100%;
    }
}