* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 400px;
    
}

body {
    min-width: 900px;
}

.clear {
    clear: both;
}

.container {
    background: rgb(56, 130, 194);
    min-height: 300px;
    padding: 0 10px 15px 10px;
}
.container .headerpad {
    padding-top: 100px;
}

.left {
    float: left;
}
.right {
    float: right;
}

header {
    height: 100px;
    background: white;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 999;
}
.inner {
    width: 1500px;
    margin: 0 auto;
}
header .logo {
    float: left;
    width: 200px;
    height: 200px;
    background-image: url('images/logo.png');
    background-size: cover;
    background-position: center;
}
header ul {
}
header li {
    float: left;
    list-style: none;
    position: relative;
}
header li a {
    color: rgb(65, 175, 59);
    text-decoration: none;
    font-family: "Oswald Bold";
    font-size: 22px;
    margin: 0 15px 0 15px;
    padding-top: 5px;
    line-height: 100px;
}

header li .submenu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 210px;
    background-color: white;
    display: none;
}
header li.active .submenu {
    display: block;
}
header li .submenu a {
    line-height: 40px;
}

@font-face {
    font-family: "Oswald Bold";
    src: url("font/Oswald-Bold.ttf");
}
@font-face {
    font-family: "Oswald DemiBold";
    src: url("font/Oswald-DemiBold.ttf");
}
@font-face {
    font-family: "Oswald ExtraLight";
    src: url("font/Oswald-ExtraLight.ttf");
}

.bigquote {
    font-family: "Oswald ExtraLight";
    color: #fff;
    font-size: 48px !important;
    padding: 15px 0;
}
.bigquote span.credit {
    font-size: 32px;
}
.outline-right {
    text-align: right;
}
.relativebox {
    position: relative;
    width: 100%;
    height: 100%;
}
.bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}

.logopadding {
    height: 100px;
}

.container.fullscreen > .inner {
    min-height: calc(100vh - 45px);
}
.container.fullscreen .leftcol, .container.fullscreen .rightcol {
    min-height: calc(100% - 100px);
    height: auto;
}
.container .leftcol, .container .rightcol {
    height: 100%;
}
.width40 {
    width: 40%;
}
.width60 {
    width: 60%;
}
.width50 {
    width: 50%;
}
.container .leftcol {
    float:left;
}
.container .rightcol {
    float:right;
}
.container h2, .container h3 {
    color: #fff;
    font-family: "Oswald DemiBold";
    font-size: 50px;
}
.container h3 {
    padding: 10px 0;
    font-size: 28px;
}
.container p, .container ul > li {
    font-family: "Oswald ExtraLight";
    letter-spacing: 0.5px;
    font-size: 17px;
    color: #fff;
}
.container p {
    padding-bottom: 14px;
}

.container ul {
    margin: 0;
    list-style-type: none;
}
.container ul > li {
    padding-left: 10px;
    text-indent: 10px;
}
.container ul > li:before {
    content: "-";
    margin-left: -10px;
    margin-right: 10px;
    text-indent: 0px;
}


.image {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.leftcol.image, .rightcol.image {
    height: calc(100vh - 180px) !important;
    margin-top: 40px;
}


.mobile, .smallscreen {
    display: none;
}
.bigscreen {
    display: block;
}

footer {
    height: 30px;
    width: 100%;
    background: rgb(65, 175, 59);
    
}
footer p {
    color: #fff;
    font-family: "Oswald ExtraLight";
    font-size: 18px;
    line-height: 30px;
}

.workflow, .container .inner {
    position: relative;
}
.workflow ul li p, .workflow ul li h3 {
    padding-right: 60px;
}
.workflow ul li {
    list-style-type: none;
    width: calc(100% / 6);
    float: left;
    padding: 15px 0;
    box-sizing: border-box;
}
.workflow ul h3 {
    height: 80px;
}

.container .workflow ul > li {
    position: relative;
}

.container .workflow ul > li .arrowright {
    position: absolute;
    top: 45px;
    right: 20px;
}
.container .workflow ul > li:last-child .arrowright {
    display: none;
}

.container .workflow ul > li {
    padding-left: 0;
    text-indent: 0;
}
.container .workflow ul > li:before {
    content: "";
    margin: 0;
    text-indent: 0;
}

.arrowright {
    width: 0px;
    height: 0px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid rgb(65, 175, 59);
}

.theguys {
    margin-top: 30px;
    margin-right: 100px;
}
.theguys img {
    height: 130px;
}

/* small screen adjustments */

@media screen and (max-width: 1500px) {
    
    header li a {
        font-size: 20px;
        margin: 5px 10px 0 10px;
    }
    .inner {
        width: 1300px;
    }
}

@media screen and (max-width: 1300px) {
    .bigscreen, .mobile {
        display: none;
    }
    .smallscreen {
        display: block;
    }
    
    header li a {
        font-size: 20px;
        margin: 5px 10px 0 10px;
    }
    .inner {
        width: 900px;
    }

    .workflow ul li {
        width: calc(100% / 3);
    }
}

/* @media screen and (max-width: 900px) {
    
    .bigscreen, .smallscreen {
        display: none;
    }
    .mobile {
        display: block;
    }
} */