.row {
    display: flex;
    flex-basis: 100%;
}

.column {
    flex: 1;
}

section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-box {
    position: relative;
    padding: 67px 0 30px 0;
    margin: 0 auto;
    width: 1200px;
    border-radius: 20px;
    text-align: center;
}

.content {
    padding-top: 60px;
    padding-bottom: 40px;
}

.title {
    position: relative;
    text-align: center;
}


.title h1 {
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 1;

    font-size: 45px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 60px;
    text-shadow: 0px 3px 3px rgba(1,19,152,0.34);

}




.title p{
    margin-top: 8px;



    font-size: 30px;
    font-weight: bold;
    color: #5145FF;
    line-height: 45px;

    background: linear-gradient(180deg, #7261FF 6.15234375%, #5E78FD 99.365234375%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.content h2{
    position: relative;
    padding: 30px 0;
    font-size: 25px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
}
.content h2 b{
    font-size: 30px;
    color: #E52C64;
}
.content h2:after{
    position: absolute;
    content: '';
    display: block;
    width: 1000px;
    height: 2px;
    background: #B4B4B4;
    opacity: 0.3;
    left: 50%;
    margin-left: -500px;
    bottom: 0;
}