.titleTextLayout {
    float: left;
    width: 100%;
}
.titleTextLayout .titleTextContainer {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    margin: 100px 0;
}
.titleTextLayout .titleText {
    float: left;
    width: 100%;
    max-width: 1040px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.titleTextLayout .title {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 60px;
    margin-bottom: 120px;
    line-height: 1;
}
.titleTextLayout .titleBlue {
    font-weight: 600;
    line-height: 1;
}
.titleTextLayout .titleYellow {
    font-weight: 300;
    font-style: italic;
    color: #FACE4A;
    line-height: 1;
}
.titleTextLayout .text {
    float: left;
    width: 100%;
}
.titleTextLayout .text ul {
    margin: 0 0 25px;
    list-style: none;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.titleTextLayout .text li {
    position: relative;
    float: left;
    width: calc(50% - 30px);
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 25px;
    padding-left: 30px;
    box-sizing: border-box;
}
.titleTextLayout .text li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../../../../../images/template/check.svg');
}

@media (max-width: 1200px) {
    .titleTextLayout .title {
        font-size: 50px;
        margin-bottom: 60px;
    }
}
@media (max-width: 800px) {
    .titleTextLayout .text ul {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .titleTextLayout .text li {
        width: auto;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .titleTextLayout .title {
        font-size: 40px;
    }
}