/*
*/
.img-txt {
    margin-top: 56px;
    margin-bottom: 56px;
}

@media screen and (min-width: 1024px) {
    .img-txt {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

/*
*/
.img-txt {
    padding: 0 16px;
}

@media screen and (min-width: 1281px) {
    .img-txt {
        padding: 0;
    }
}


.img-txt h2 {
    text-align: center;
}

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

.img-txt h2,
.img-txt h3 {
    margin-bottom: 32px;
}

.img-txt h2 strong {
    display: inline;
}

.img-txt ul {
    padding-left: 58px;
}

.img-txt li {
    list-style: none;
    position: relative;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--dark-blue);
}

.img-txt li:last-child {
    margin-bottom: 0;
}

.img-txt li::before {
    content: '';
    -webkit-mask: url("../images/icons/list.svg") no-repeat center;
    mask: url("../images/icons/list.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 24px;
    height: 34px;
    background: var(--green);
    position: absolute;
    left: -58px;
    top: calc(50% - 17px);
}

.img-txt.green-bg {
    color: var(--dark-blue);
    padding-top: 56px;
    padding-bottom: 16px;
    background: url("../images/background/pattern-background.png"), var(--green);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    box-shadow: 600px 0 0 var(--green), -600px 0 0 var(--green);
}

@media screen and (min-width: 1024px) {
    .img-txt.green-bg {
        padding-top: 104px;
        padding-bottom: 40px;
    }
}

.img-txt.green-bg h2,
.img-txt.green-bg h3 {
    color: var(--dark-blue);
    margin-bottom: 32px;
}

.img-txt.green-bg .uptitle {
    text-align: center;
}

.img-txt.green-bg li::before {
    background: white;
}

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

.img-txt--container h3 {
    margin-bottom: 24px;
}

.img-txt--container .img-txt--content p {
    margin-bottom: 16px;
}

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

    .img-txt.green-bg .uptitle,
    .img-txt--container .uptitle,
    .img-txt--container h3 {
        text-align: unset;
    }
}

@media screen and (min-width: 1024px) {
    .img-txt--container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 80px;
    }

    .img-txt--container>div {
        flex: 1;
        flex-shrink: 0;
    }

    .img-txt--container.reverse {
        flex-direction: row-reverse;
    }
}

.img-txt--heading {
    flex-basis: 100% !important;
    text-align: center;
    text-wrap: balance;
    margin-inline: auto;
}

@media screen and (min-width: 1024px) {
    .img-txt--heading {
        margin-bottom: 0;
    }
}

.img-txt--heading h1,
.img-txt--heading h2,
.img-txt--heading h3 {
    margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
    .img-txt--content {
        padding: 56px 0;
    }
}

.img-txt--content .btn {
    margin-top: 32px;
    max-width: calc(100% - 64px);
}

.img-txt--content p {
    margin-bottom: 16px;
}

.img-txt--img {
    display: flex;
}

.img-txt--img.contain img {
    object-fit: contain;
}

.img-txt--img:not(.contain) img {
    object-position: center;
}

.img-txt--img img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

@media screen and (min-width: 1024px) {
    .img-txt--img img {
        height: 100%;
    }
}

.img-txt .highlight {
    margin-top: 32px;
    padding: 24px;
    background: var(--orange);
    color: white;
}

@media screen and (min-width: 1024px) {
    .img-txt .highlight {
        margin-top: 48px;
    }
}

.img-txt .highlight .btn,
.img-txt .highlight .btn-download-full {
    margin-top: 24px;
}