/* START TXT-IMG.SCSS */
.txt-img {
    /* background: url("../images/noise.png"); */
    padding-top: 32px;
    padding-bottom: 32px;
    text-align: center;
    position: relative;
}

@media screen and (min-width: 992px) {
    .txt-img {
        padding-top: 64px;
        padding-bottom: 64px;
        text-align: initial;
    }
}

.txt-img.bg-color {
    background: url("../images/noise.png");
}

.txt-img.-white {
    background: none;
}

@media screen and (min-width: 992px) {
    .txt-img.-reverse .container {
        flex-direction: row-reverse;
    }
}

.txt-img.presentation {
    padding-top: 48px;
}

.txt-img .uptitle {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:992px) {
    .txt-img .uptitle {
        justify-content: start;
    }
}

.txt-img .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .txt-img .container {
        flex-direction: row;
        align-items: center;
    }
}

.txt-img .container.small {
    align-items: flex-start;
}

.txt-img .container.small.alt {
    align-items: center;
}

.txt-img .container.small.alt .txt-img__left p {
    font-size: 0.875rem;
}

.txt-img .container.small.alt .txt-img__left p strong {
    font-size: 1rem;
}

.txt-img__left {
    flex-basis: 488px;
    text-align: left;
    padding: 48px 0;
}

.txt-img__left h2 {
    margin: 8px 0 24px 0;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
}

@media screen and (min-width:992px) {
    .txt-img h2 {
        text-align: left;
    }
}

.txt-img__left h2 strong {
    font-weight: 700;
}

.txt-img__left .more-btn {
    margin: 48px auto 14px auto;
}

@media screen and (min-width: 992px) {
    .txt-img__left .more-btn {
        margin: 62px 0 14px 0;
    }
}

.txt-img__left .more-btn p {
    margin: 0;
}

.txt-img__left .small-btn {
    justify-content: initial;
}

.txt-img__left p {
    font-weight: 400;
    line-height: 160%;
    text-align: center;
}

@media screen and (min-width:992px) {
    .txt-img p {
        text-align: left;
    }
}

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

.txt-img__left ul {
    margin-bottom: 24px;
    line-height: 150%;
}

.txt-img__right {
    flex-basis: 592px;
}

.txt-img__right img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 380px;
}

.txt-img.pres .txt-img__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txt-img.pres .txt-img__left .uptitle {
    text-align: left;
}

/* END TXT-IMG.SCSS */