/* Heading and content */
.element-01 {
    line-height: 1.5;
    color: var(--wpt-text-colour);
}
.element-01 a {
    color:var(--wpt-primary-colour);
    text-decoration:none;
}

.element-01 .title {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    font-family: var(--wpt-headings-secondary-font);
    color: var(--wpt-primary-colour);
}

.element-01 *.left {
    text-align: left;
}

.element-01 *.right {
    text-align: right;
}

.element-01 *.center {
    text-align: center;
}

.element-01 h1 {
    font-size: 2.5em;
}

.element-01 h2 {
    font-size: 2em;
}

.element-01 h3 {
    font-size: 1.75em;
}

.element-01 h4 {
    font-size: 1.5em;
}

.element-01 h5 {
    font-size: 1.25em;
}

.element-01 h6 {
    font-size: 1em;
}

.element-01 *.center:not(.innercontent)::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--wpt-primary-colour)
}

.element-01 *.left:not(.innercontent)::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(0%);
    width: 60px;
    height: 4px;
}

.element-01 *.right:not(.innercontent)::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0%;
    transform: translateX(0%);
    width: 60px;
    height: 4px;
}
.element-01 .wpt-container {
}

.element-01 .wpt-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .element-01 .wpt-container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .element-01 .wpt-container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .element-01 .wpt-container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .element-01 .wpt-container {
        max-width:1140px
    }
}

.element-01 .wpt-row {
    width:100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.element-01 .wpt-row .wpt-contents {
    width:100%;
}