.buttons .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.buttons .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 32px;
    max-width: max(75%, 1100px);
}

.buttons .description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.buttons .description-wrapper ul,
.buttons .description-wrapper ol {
    margin: 8px 0;
}

@media (max-width:991px) {
    .buttons .btn-wrapper {
        gap: 16px;
    }
}

@media (max-width:479px) {
    .buttons .btn {
        width: 100%;
    }
}