.text hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: rgb(208, 208, 208);
    margin: 20px 0;
}

.text p {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.text h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0 40px 0;
}

.text h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
}

.text h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
}

.text h5 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

.text h6 {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}

.text b {
    background: var(--main-color-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.text a:not(.button) {
    text-decoration: underline;
}

.text a:hover {
    text-decoration: none;
}

.text strong {
    font-weight: 700;
}

.text small {
    font-weight: 300;
    font-size: inherit;
}

.text i {
    font-style: italic;
}

.text u {
    text-decoration: underline;
}

.text ul {
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.text ul li {
    padding: 0 0 0 30px;
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.text ul li:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 4px;
    opacity: 0.75;
    z-index: 1;
    background: var(--main-color-1);
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.text ol {
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 0 0 18px;
}

.text ol li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    list-style-type: decimal;
}

.text *:first-child {
    margin-top: 0;
}

.text *:last-child {
    margin-bottom: 0;
}

.text .table {
    margin: 0 0 10px 0;
}

.table {
    overflow-x: auto;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.table thead tr {
    background-color: #e0e0e0;
}

.table thead th {
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.table tbody tr {
    position: relative;
    transition-duration: .1s;
}

.table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

.table tbody tr:hover {
    background-color: #eeeeee;
}

.table tbody td {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
}

.text mark {
    background: rgba(15, 162, 181, .35);
    position: relative;
}

/*
.text mark:before {
    content: "";
    background: var(--main-color-1);
    opacity: 0.35;
    content: "";
    position: absolute;
    top: -0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
    z-index: -1;
}
*/