* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/*Common*/

body {
    background-color: rgb(242,244,246);
    padding-top: 120px;
}

.button {
    display: inline-block;
    background-color: rgb(112,128,159);
    color: rgb(242,244,246);
    padding: 10px 20px 10px 20px;
    border-radius: 4px;
}

.button.light {
    background-color: rgb(242,244,246);
    color: rgb(112,128,159);
}

/*Text*/

p, h1, h2, h3, a, span {
    font-family: segoeui;
    font-weight: normal;
    color: rgb(112,128,159);
}

p, a, span {
    font-size: 16px;
}

p {
    padding-bottom: 15px;
}

h1 {
    font-size: 30px;
    padding-bottom: 10px;
}

h3 {
    font-size: 20px;
}

a {
    text-decoration: none;
}

.icon {
    font-family: heijcon;
    font-size: 20px;
    vertical-align: bottom;
}

/*Nav*/

nav {
    position: fixed;
    top: 0;
    z-index: 5;
    height: 120px;
    width: 100%;
}

nav .left, nav .right {
    width: 50%;
}

#mainNav {
    display: flex;
    align-items: center;
    height: 70px;
    width: 100%;
    padding: 0px 50px 0px 50px;
    
    background-color: rgb(112,128,159);
}

#mainNav a {
    color: rgb(242,244,246);
}

#mainNav .navLinks {
    float: right;
}

#mainNav .navLinks a {
    margin-left: 40px;
}

#mainNav .logo {
    font-size: 30px;
}

#mainNav .logo .icon {
    font-size: 37px;
    margin-right: 15px;
    vertical-align: text-top;
    color: rgb(242,244,246);
}

#subNav {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    
    padding: 0px 50px 0px 50px;
    
    background-color: rgb(88,88,88);
}

#subNav .contactInfo {
    float: right;
}

#subNav .contactInfo a .icon {
    margin-left: 15px;
    color: rgb(180,180,180);
}

#subNav .right a {
    margin-left: 40px;
}

#subNav a {
    color: rgb(180,180,180);
}

/*Home*/

.homeSpan {
    width: 100%;
    height: 470px;
    border-bottom: 5px solid rgb(112,128,159);
}

/*slideShow*/

.slideshow {
    width: 100%;
    height: 100%;
}

.slideshow .slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
}

.slideshow .slide .message {
    position: absolute;
    max-width: 550px;
    bottom: 90px;
    left: 50px;
    padding: 25px;
    color: rgb(242,244,246);
    border: 1px solid rgb(242,244,246);
    background-color: rgba(112,128,159,0.84);
    border-radius: 4px;
}

.slideshow .slide .message h1, .slideshow .slide .message p {
    color: rgb(242,244,246);
}

.slideshow .slide .message .actions {
    float: right;
}

/*why heijcon*/

.whyHeijcon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 50px;
    margin-bottom: 40px;
    background-color: rgb(255,255,255);
}

.whyHeijcon .wrapper {
    max-width: 1000px;
}

.whyHeijcon h1 {
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

.whyHeijcon .box:first-of-type {
    border-left: none;
}

.whyHeijcon .box {
    width: 33.333333%;
    text-align: center;
    border-left: 1px solid rgb(112,128,159);
}

.whyHeijcon .box .icon {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    font-size: 60px;
}

.warning {
    padding-top: 15px;
    background-color: rgb(244,177,77);
}

.warning p {
    width: 100%;
    color: rgb(102,81,44);
    text-align: center;
    font-weight: bold;
}


footer {
    width: 100%;
    float: left;
    background-color: rgb(88,88,88);
    min-height: 40px;
    padding: 20px 50px 20px 50px;
}

footer .copyrightSpan {
    float: left;
    width: 100%;
}

footer .copyrightSpan p {
    float: left;
    color: rgb(180,180,180);
    border-top: 1px solid rgb(180,180,180);
    padding: 10px 40px 15px 10px;
}


@font-face {
  font-family: segoeui;
  src: url(../font/segoeui.woff);
}

@font-face {
  font-family: heijcon;
  src: url(../font/heijcon.woff);
}