/* -- sections -- */
.content .section-top {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: var(--banner-height);
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: var(--banner-color);
}
.content .section-top .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.content .section-top .title {
    font-size: var(--banner-text-size-title);
}
.content .section-top .slogan {
    font-size: var(--banner-text-size-slogan);
}
.content .section-middle {
    padding: 0 10px;
}
.content .section-middle h4 {
    margin: 7px 0;
    padding: 3px 0;
    line-height: 1.25;
    font-size: 1.3rem;
    color: #2233b2;
}
.content .section-middle p {
    margin: 5px 0;
    padding: 3px 0;
    line-height: 1.25;
}
.content .section-bottom {
    
}