html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
    line-height: 1.5em;
    color: #545454;
    background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
	color: #222;
    font-weight: 600;
    line-height: 1.3em;
	
}

h2 {
    margin-top: 1.3em;
}

b,
strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    -webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    /*    border: 10px solid rgba(0, 0, 0, 0.12); 
    border-radius: 4px;  */
    display: block;
    margin: auto; /* hkk */
    /* margin: 1.3em auto; /* hkk */
    max-width: 95%;
}

@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}

.hdr {
    color: #fff;
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    line-height: 1.3em;
    margin-top: 1.3em;
    background-color: transparent
}

.container1 {
    height: 897px;
    left: auto;
    position: absolute;
    top: 967px;
    width: 980px;
}

.bckgrnd {
    background-color: #fff;
    clip: rect(0px, 1940px, 800px, 0px);
    height: 100%;
    left: -480px;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 1940px;
    z-index: 1;
}

.cntnt {
    color: black;
    background-color: transparent;
    position: absolute;
    z-index: 2;
}


/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
}

.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}


/* -------------------------------- 

Main components 

-------------------------------- */

.cd-main-content {
    /* you need to assign a min-height to the main content so that the children can inherit it*/
    height: 100%;
    position: relative;
    z-index: 1;
}

.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.cd-fixed-bg.cd-bg-1 {
    position: fixed; /* hkk */
	min-width: 100%; /* hkk */
    background-image: url("images/bg_sap.jpg");
}

.cd-fixed-bg.cd-bg-2 {
    background-image: url("images/qfbg1_1440.jpg");
}

.cd-fixed-bg.cd-bg-3 {
    background-image: url("images/qfbg1_1440.jpg");
}

.cd-fixed-bg.cd-bg-4 {
    background-image: url("images/qfbg1_1440.jpg");
}

@media only screen and (min-width: 768px) {
    .cd-fixed-bg h1,
    .cd-fixed-bg h2 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-fixed-bg {
        background-attachment: fixed;
    }
    .cd-fixed-bg h1,
    .cd-fixed-bg h2 {
        font-size: 48px;
        font-weight: 300;
    }
}

.cd-scrolling-bg {
    position: relative;
    min-height: 100%;
    padding: 4em 0;
    line-height: 1.6;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cd-scrolling-bg.cd-color-1 {
    background-color: #3d3536;
    color: #a6989a;
}

.cd-scrolling-bg.cd-color-2 {
    background-color: #99a478;
    color: #3d3536;
}

.cd-scrolling-bg.cd-color-3 {
    background-color: #b4d7a8;
    color: #3d3536;
}

@media only screen and (min-width: 768px) {
    .cd-scrolling-bg {
        padding: 8em 0;
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 2;
        font-weight: 300;
    }
}