.media-txt--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .media-txt--container {
        flex-direction: row;
        align-items: center;
        gap: clamp(32px, 9.16vw, 132px);
    }
}

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

.media-txt--media {
    height: 408px;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .media-txt--media {
        max-width: clamp(0px, 36.11vw, 520px);
        height: 630px;
        flex: 1;
    }
}

.media-txt--media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
}

@media screen and (min-width: 992px) {
    .media-txt--media img {
        border-radius: 32px;
    }
}

.media-txt--content {
    flex: 1;
    text-align: center;
    text-wrap: balance;
}

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

.media-txt--content h2 {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .media-txt--content h2 {
        margin-bottom: 48px;
    }
}

.media-txt--content .uptitle {
    margin-bottom: 8px;
}

.media-txt--content p+p {
    margin-top: 16px;
}

.media-txt--content .btn {
    margin-top: 24px;
}

@media screen and (min-width: 992px) {
    .media-txt--content .btn {
        margin-top: 48px;
    }
}

/*# sourceMappingURL=style.css.map */