  
@import url('https://fonts.googleapis.com/css?family=Poppins:300,500,600');

.text-sample {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    
    /* ::J:: Editable */
    --theme-color: #c6b069;
}
@media screen and (max-width: 1400px) {
    .text-sample {
        padding: 80px 5vw;
    }
}

@media screen and (min-width: 1400px) {
    .text-sample {
        padding: 120px calc( (100vw - 1200px) / 2 );
    }
}


.text-sample h2 {
    font-weight: 600;
}

.text-sample h2,
.text-sample p {
    margin: 0;
    padding: 0.5em 0 1em 0;
}

.text-sample p {
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

.text-sample b {
    font-weight: 400;
}

.text-sample b,
.text-sample sup,
.text-sample sub,
.text-sample del,
.text-sample u {
    color: var(--theme-color);
}