.rostselmash-container {
    overflow: hidden;
    position: relative;
}

.rostselmash-wrapper {
    display: flex;
    padding-top: 190px;
    padding-bottom: 100px;
    margin: auto 50px;
    justify-content: space-between;
}

.rostselmash-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 60%;
}

.rostselmash-img {
    align-self: start;
    flex-basis: 40%;
    max-width: 35%;
}

.rostselmash-content {
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;

    h1, h2, p, li, ul, ol {
        color: #09090A;
        margin: 0;
        font-family: PT Root UI;
    }

    p, li {
        font-size: 18px;
    }

    ol, ul {
        padding-left: 30px;
    }
}

.rostselmash-header {
    font-weight: 700;
    font-size: 48px;
    line-height: 105%;
}

.rostselmash-h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
}

.rostselmash-quote {
    padding-left: 24px;
    border-left: 4px solid #EBEBF5;
    display: flex;
    flex-direction: column;
    gap: 8px;

    p {
        font-weight: 400;
        font-style: Italic;
        font-size: 16px;
        line-height: 132%;
    }

    span {
        font-weight: 500;
        font-size: 18px;
        line-height: 132%;
        color: #15151A;
    }
}

.rostselmash-text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media screen and (max-width: 1280px) {
    .rostselmash-wrapper {
        margin-left: 16px;
        margin-right: 16px;
        flex-direction: column;
        padding-bottom: 0;
    }

    .rostselmash-img {
        align-self: center;
        max-width: 100%;
        min-width: 410px;
        max-height: 684px;
        flex-basis: auto;
    }

    .rostselmash-text-wrapper {
        flex-basis: auto;
    }
}

@media screen and (max-width: 862px) {
    .rostselmash-wrapper {
        padding-top: 150px;
    }

    .rostselmash-header {
        font-size: 32px;
    }

    .rostselmash-h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 526px) {
    .rostselmash-wrapper {
        padding-top: 120px;
    }

    .rostselmash-header {
        font-size: 28px;
    }

    .rostselmash-h2 {
        font-size: 22px;
    }

    .rostselmash-quote {
        padding-left: 16px;

        p {
            font-size: 14px;
        }

        span {
            font-size: 16px;
        }
    }

    .rostselmash-content {
        p, li {
            font-size: 16px;
        }
    }
}