<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

section .title {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color);
    width: 400px;
    margin: 0 auto;
}

section .title h1 {
    font-family: Avengero;
    font-size: 36px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #07409C 40%, #000 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}




@media (max-width: 1200px) {
    section {
        padding: 90px 0;
    }
}

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }

    section .title {
        width: 300px;
        padding-bottom: 15px;
    }

    section .title h1 {
        font-size: 28px;
    }
}
</pre></body></html>