.txt-content {
    --flex-direction: row;
}

.txt-content.reverse {
    --flex-direction: row-reverse;
}

.txt-content.blue {
    background-color: var(--medium-blue);
}

.txt-content.blue .number-container .mask {
    background-color: var(--medium-blue);
}

.txt-content.column .txt-content--container {
    justify-content: space-between;
}

@media screen and (min-width: 1024px) {
    .txt-content.column .txt-content--content {
        max-width: 680px;
    }
}

.txt-content.column .txt-content--content h2 {
    margin-bottom: 32px;
}

.txt-content.column .txt-content--content p:not(:last-child) {
    margin-bottom: 32px;
}

.txt-content--container {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

@media screen and (min-width: 1024px) {
    .txt-content--container {
        flex-direction: var(--flex-direction);
        justify-content: center;
        gap: 80px;
    }
}

.txt-content--content {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .txt-content--content {
        max-width: 980px;
    }
}

.txt-content--content h2 {
    font-size: 1.875rem;
    color: var(--accent-1);
    margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .txt-content--content h2 {
        font-size: 2.25rem;
    }
}

.txt-content--content h3 {
    font-size: 1.5rem;
    color: var(--accent-1);
    margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
    .txt-content--content h3 {
        font-size: 1.75rem;
    }
}

.txt-content--content p a{
    text-decoration: underline;
}

.txt-content--content p {
    color: var(--accent-3);
}

.txt-content--content p strong {
    font-weight: 700;
}

.txt-content--content p:not(:last-child) {
    margin-bottom: 16px;
}

.txt-content--content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    padding-left: 32px;
}

.txt-content--content ul li {
    list-style-type: disc;
}

.txt-content--content ul li::marker {
    color: var(--primary-green);
}

.txt-content--content ul li ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.txt-content--content ul li ul li {
    list-style-type: circle;
}

.txt-content--content ul li ul li::marker {
    color: var(--accent-2);
}

.txt-content--content ul+h2,
.txt-content--content p+h2 {
    margin-top: 56px;
}

@media screen and (min-width: 1024px) {

    .txt-content--content ul+h2,
    .txt-content--content p+h2 {
        margin-top: 80px;
    }
}

.txt-content--content ul+h3,
.txt-content--content p+h3 {
    margin-top: 32px;
}

@media screen and (min-width: 1024px) {

    .txt-content--content ul+h3,
    .txt-content--content p+h3 {
        margin-top: 40px;
    }
}

.txt-content--content h3+ul {
    margin-top: 16px;
}

.txt-content--content ul+p {
    margin-top: 24px;
}

.txt-content--keynumbers {
    display: flex;
    gap: 48px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 400px;
}

.txt-content--keynumbers .keynumbers--item {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 0 328px;
}

.txt-content--keynumbers .keynumbers--item.active .number {
    transform: translateY(0);
}

.txt-content--keynumbers .number-container {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    overflow-y: clip;
}

.txt-content--keynumbers .number-container .number {
    font-size: 72px;
    font-family: var(--aileron);
    font-weight: 300;
    color: var(--accent-1);
    display: inline-block;
    line-height: 60px;
    position: relative;
    transform: translateY(100%);
    transition: transform .6s ease;
}

.txt-content--keynumbers .number-container .suffix {
    color: var(--primary-green);
    opacity: .4;
    font-size: 40px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(calc(100% + 8px), -50%);
}

.txt-content--keynumbers .number-container .mask {
    height: 8px;
    width: 100%;
    background: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--accent-2);
}