/* ================================================
   SECTION: DECORATED TEXT
   ================================================ */

.section-decorated-text {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: lightgray;
    padding: 90px 0 100px;
    overflow: hidden;
    margin-top: 100px;
}

.section-decorated-text__decoration-1 {
    position: absolute;
    top: -40px;
    left: -18px;
}

.section-decorated-text__decoration-2 {
    right: 0;
    position: absolute;
    top: 0;
}

.section-decorated-text__decoration-3 {
    position: absolute;
    top: 0;
    left: -15px;
}

.section-decorated-text__inner {
    position: relative;
    z-index: 2;
}

.section-decorated-text__title {
    color: var(--aniro-color-white);
}

.section-decorated-text__content {
    color: #FFF;
    font-family: "Exo 2", var(--aniro-font-body);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    max-width: 1088px;
    margin: 0 auto;
}

.section-decorated-text__content p {
    margin-bottom: 1em;
}

.section-decorated-text__content p:last-child {
    margin-bottom: 0;
}

.section-decorated-text__content a {
    color: var(--aniro-color-white);
    text-decoration: underline;
}

@media (max-width: 1919px) {
    .section-decorated-text__decoration {
        display: none;
    }
}

@media (max-width: 1024px) {
    .section-decorated-text {
        margin-top: 60px;
        padding: 70px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-decorated-text {
        padding: 50px 0 40px;
    }

    .section-decorated-text__content ul{
        padding-left: 1em;
    }
}

