.page-background{
    background-image: url('/assets/images/pattern.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 30px 0;
    position: relative;
}

.page-background .page-container{
    text-align: right;
    padding: 0;
}

.page-container{
    width: 768px;
    display: inline-block;
    text-align: left;
    letter-spacing: 1px;
    padding: 20px 0 90px;
    max-width: calc(100% - 40px);
    position: relative;
}

.page-title-image{
    /* width: 200px; */
    height: 85px;
    max-width: 100%;
}

.page-title{
    text-align: justify;
    color: #555555;
    font-weight: 600;
    padding: 0 10px;
    margin: 25px 0 20px;
    border-left: 3px solid #009ade;
    font-size: 18px;
}

.page-title-name{
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
}

.page-content{
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}

.page-content ul{
    list-style: none;
    padding: 0;
}

.page-content ul li {
    padding-left: 1.3em;
}

.page-content ul li:before {
    content: "◎"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.3em; /* same as padding-left set on li */
}

.page-content a{
    color: #3cb4e5;
}

.page-logo{
    width: 40px;
    position: absolute;
    right: 0;
    bottom: 30px;
}

@media (max-width: 500px){
    .page-content{
        padding: 0 10px;
    }
}

@media (max-width: 400px){
    .page-content{
        font-size: 14px;
    }
    .page-title-image{
        height: 65px;
    }
}

