html {
    font-size: 14px;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    margin-bottom: 60px;
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding-top:113px;

}
/*header*/

.page-head {
    text-align: center;
    margin: 22px auto 18px;
}

.page-title {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    margin: 6px 0 26px;
    color: rgba(11, 18, 32, .92);
    letter-spacing: -.2px;
    position: relative;
}

    .page-title::after {
        content: "";
        display: block;
        width: 160px;
        height: 3px;
        margin: 12px auto 0;
        background: linear-gradient( to right, transparent, #522474 20%, #7b3bb0 50%, #522474 80%, transparent );
        filter: blur(.2px);
    }



.breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    font-size: 14px;
    color: #777;
    background:none !important;
}

    .breadcrumb a {
        color: #5b2d90;
        text-decoration: none;
        transition: .3s;
    }

        .breadcrumb a:hover {
            color: #7d47c3;
        }