:root {
    --red: #BF0413;
}

.list-dot {
    list-style-type: disc;
}

.cards {
    /* background-color: #aaaa; */
    border-radius: 20px;
    box-shadow: 5px 5px 15px #000a;
}

.titles {
    font-weight: bolder;
    text-align: center;
    margin: 50px 0;
    /* padding: 20px 0; */
    background-color: #fff;
    /* color: #fff; */
    width: fit-content;
    z-index: 1;
    /* align-items: center; */
}

.titles_header {
    position: relative;
    z-index: 5;
    background-color: #fff;
    padding: 20px 50px 12px;
    width: fit-content;

}



.titles::before {
    content: '';
    width: 40px;
    height: 40px;
    /* margin-top: 20px; */
    display: inline-flex;
    /* background-color: var(--red); */
    border: 5px solid var(--red);
    position: absolute;
    top: -5px;
    left: 10px;

}

.border_bottom {
    border-bottom: 5px solid var(--red);
}