.simple-text--small {
    padding: 0;
}
.simple-text {
    line-height: 1.28;
}
.section.simple-text {
    padding: 0;
    margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
    .section.simple-text {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 460px) {
    .section.simple-text {
        margin-bottom: 60px;
    }
}
.section.simple-text--small {
    margin-bottom: 24px;
}
.simple-text__container {
    max-width: 1170px;
}
.simple-text p,.simple-text ul,.simple-text ol {
    margin-bottom: 24px;
}
.simple-text p:last-child,.simple-text ul:last-child,.simple-text ol:last-child {
    margin-bottom: 0;
}

.title-block {
    margin-bottom: 42px;
    text-align: center;
}

.simple-text h2 {
    font-size: 48px;
    line-height: 114%;
    text-transform: unset;
}
.simple-text h3 {
    font-size: 36px;
    line-height: 1.2;
}
.simple-text h4 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}
.simple-text h5 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}
.simple-text h6 {
    font-size: 19px;
    line-height: 1.2;
}
.simple-text h2,.simple-text h3,.simple-text h4,.simple-text h5,.simple-text h6 {
    margin: 48px 0 32px;
    color: var(--white);
}
.simple-text h2:first-child,.simple-text h3:first-child,.simple-text h4:first-child,.simple-text h5:first-child,.simple-text h6:first-child {
    margin-top: 0;
}
.default-background .simple-text__inner, .simple-text--color .simple-text__inner  {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 32px;
}
.simple-text__color-wrap {
    display: flex;
    gap: 24px;
    position: relative;
    align-items: stretch;
}
.simple-text--color .simple-text__inner {
    border-radius: 12px;
    background: rgba(66, 19, 143, 0.30);
}
.simple-text__color-wrap .simple-text__inner {
    border-radius: 12px 0px 0px 12px;
    border-right: 1px solid #9747FF;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 32px;
}
.simple-text__color-wrap .simple-text__inner, .simple-text__color-wrap .simple-text__img {
    flex-basis: calc(50% - 12px);
    max-width: calc(50% - 12px);
}
.simple-text__img {
    line-height: 0;
    position: relative;
    overflow: hidden;
}
.simple-text__img img {
    max-width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.simple-text ul {
    list-style: none;
    padding-left: 0;
}
.simple-text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.simple-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: #27F5D1;
    border-radius: 50%;
}
.simple-text ol {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}
.simple-text ol li{
    counter-increment: custom-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.simple-text ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #27F5D1;
    font-weight: bold;
    font-size: 16px;
}
@media (max-width: 1024px) {
    .title-block + .title-block {
        padding-top: 24px;
    }
    .simple-text__color-wrap {
        flex-wrap: wrap;
    }
    .simple-text__color-wrap .simple-text__inner, .simple-text__color-wrap .simple-text__img {
        flex: 0 0 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    .simple-text__color-wrap .simple-text__inner {
        order: 2;
        border-radius: 0px 0px 12px 12px;
        border-top: 1px solid #9747FF;
        background: rgba(66, 19, 143, 0.30);
        border-right:none
    }
    .simple-text__color-wrap .simple-text__img {
        order: 1
    }
    .simple-text__img img {
        position: relative;
    }
}