.page-wrapper
{
    display: flex;
    width:100%;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
    height: 100%;
}

.page-content {
	position: relative;
    flex: 1;
	max-width: 80%;
	text-align: center;
}

.page-content h4 {
    text-align: justify;
    margin-left: 1rem;
}

@media screen and (max-width: 768px) 
{
    .page-wrapper {
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
        min-height: 0;
        padding: 1rem 0 2rem;
        box-sizing: border-box;
    }

    .page-content {
        max-width: 95%;
        width: 100%;
        margin: 0 auto;
        padding-top: 0.25rem;
        box-sizing: border-box;
    }

    .page-content h4 {
        text-align: left;
    }

    .page-content .box {
        width: 100%;
        box-sizing: border-box;
    }
}
