/* Interclamp style sheet */


/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-efx {
    opacity: 0;
    /* make thins invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade-in-1 {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.fade-in-2 {
    -webkit-animation-delay: 0.15s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 0.15s;
}

.fade-in-3 {
    -webkit-animation-delay: 0.25s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 0.25s;
}

.fade-in-4 {
    -webkit-animation-delay: 0.35s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 0.35s;
}

.fade-in-5 {
    -webkit-animation-delay: 0.45s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 0.45s;
}

.fade-in-6 {
    -webkit-animation-delay: 0.65s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 0.65s;
}

.fade-in-7 {
    -webkit-animation-delay: 1.5s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 1.5s;
}

.fade-in-8 {
    -webkit-animation-delay: 1.75s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 1.75s;
}

.fade-in-9 {
    -webkit-animation-delay: 2s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2s;
}

.fade-in-10 {
    -webkit-animation-delay: 2.25s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.25s;
}

.fade-in-11 {
    -webkit-animation-delay: 2.5s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.5s;
}

.fade-in-12 {
    -webkit-animation-delay: 2.75s -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.75s;
}


/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.ease-in {
    -moz-transition: opacity 2.75s ease-in-out;
    -webkit-transition: opacity 2.75s ease-in-out;
    -ms-transition: opacity 2.75s ease-in-out;
    transition: opacity 2.75s ease-in-out;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol {
    list-style: none;
}

.indentedlist {
    margin-left: 2em;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}


/* Box Model */

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* Containers */

.container {
    margin-left: auto;
    margin-right: auto;
}

.container.\31 25\25 {
    width: 100%;
    max-width: 1200px;
    min-width: 960px;
}

.container.\37 5\25 {
    width: 720px;
}

.container.\35 0\25 {
    width: 480px;
}

.container.\32 5\25 {
    width: 240px;
}

.container {
    width: 960px;
}

@media screen and (min-width: 737px) {
    .container.\31 25\25 {
        width: 100%;
        max-width: 1500px;
        min-width: 1200px;
    }
    .container.\37 5\25 {
        width: 900px;
    }
    .container.\35 0\25 {
        width: 600px;
    }
    .container.\32 5\25 {
        width: 300px;
    }
    .container {
        width: 1200px;
    }
}

@media screen and (min-width: 737px) and (max-width: 1200px) {
    .container.\31 25\25 {
        width: 100%;
        max-width: 1200px;
        min-width: 960px;
    }
    .container.\37 5\25 {
        width: 720px;
    }
    .container.\35 0\25 {
        width: 480px;
    }
    .container.\32 5\25 {
        width: 240px;
    }
    .container {
        width: 960px;
    }
}

@media screen and (max-width: 736px) {
    .container.\31 25\25 {
        width: 100%;
        max-width: 125%;
        min-width: 100%;
    }
    .container.\37 5\25 {
        width: 75%;
    }
    .container.\35 0\25 {
        width: 50%;
    }
    .container.\32 5\25 {
        width: 25%;
    }
    .container {
        width: 100% !important;
    }
}


/* Grid */

.row {
    border-bottom: solid 1px transparent;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row > * {
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row:after,
.row:before {
    content: '';
    display: block;
    clear: both;
    height: 0;
}

.row.uniform > * >:first-child {
    margin-top: 0;
}

.row.uniform > * >:last-child {
    margin-bottom: 0;
}

.row.\30 \25 > * {
    padding: 0 0 0 0px;
}

.row.\30 \25 {
    margin: 0 0 -1px 0px;
}

.row.uniform.\30 \25 > * {
    padding: 0px 0 0 0px;
}

.row.uniform.\30 \25 {
    margin: 0px 0 -1px 0px;
}

.row > * {
    padding: 0 0 0 40px;
}

.row {
    margin: 0 0 -1px -40px;
}

.row.uniform > * {
    padding: 40px 0 0 40px;
}

.row.uniform {
    margin: -40px 0 -1px -40px;
}

.row.\32 00\25 > * {
    padding: 0 0 0 80px;
}

.row.\32 00\25 {
    margin: 0 0 -1px -80px;
}

.row.uniform.\32 00\25 > * {
    padding: 80px 0 0 80px;
}

.row.uniform.\32 00\25 {
    margin: -80px 0 -1px -80px;
}

.row.\31 50\25 > * {
    padding: 0 0 0 60px;
}

.row.\31 50\25 {
    margin: 0 0 -1px -60px;
}

.row.uniform.\31 50\25 > * {
    padding: 60px 0 0 60px;
}

.row.uniform.\31 50\25 {
    margin: -60px 0 -1px -60px;
}

.row.\35 0\25 > * {
    padding: 0 0 0 20px;
}

.row.\35 0\25 {
    margin: 0 0 -1px -20px;
}

.row.uniform.\35 0\25 > * {
    padding: 20px 0 0 20px;
}

.row.uniform.\35 0\25 {
    margin: -20px 0 -1px -20px;
}

.row.\32 5\25 > * {
    padding: 0 0 0 10px;
}

.row.\32 5\25 {
    margin: 0 0 -1px -10px;
}

.row.uniform.\32 5\25 > * {
    padding: 10px 0 0 10px;
}

.row.uniform.\32 5\25 {
    margin: -10px 0 -1px -10px;
}

.\31 2u,
.\31 2u\24 {
    width: 100%;
    clear: none;
    margin-left: 0;
}

.\31 1u,
.\31 1u\24 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
}

.\31 0u,
.\31 0u\24 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
}

.\39 u,
.\39 u\24 {
    width: 75%;
    clear: none;
    margin-left: 0;
}

.\38 u,
.\38 u\24 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
}

.\37 u,
.\37 u\24 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
}

.\36 u,
.\36 u\24 {
    width: 50%;
    clear: none;
    margin-left: 0;
}

.\35 u,
.\35 u\24 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
}

.\34 u,
.\34 u\24 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
}

.\33 u,
.\33 u\24 {
    width: 25%;
    clear: none;
    margin-left: 0;
}

.\32 u,
.\32 u\24 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
}

.\31 u,
.\31 u\24 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
}

.\31 2u\24 + *,
.\31 1u\24 + *,
.\31 0u\24 + *,
.\39 u\24 + *,
.\38 u\24 + *,
.\37 u\24 + *,
.\36 u\24 + *,
.\35 u\24 + *,
.\34 u\24 + *,
.\33 u\24 + *,
.\32 u\24 + *,
.\31 u\24 + * {
    clear: left;
}

.\-11u {
    margin-left: 91.66667%;
}

.\-10u {
    margin-left: 83.33333%;
}

.\-9u {
    margin-left: 75%;
}

.\-8u {
    margin-left: 66.66667%;
}

.\-7u {
    margin-left: 58.33333%;
}

.\-6u {
    margin-left: 50%;
}

.\-5u {
    margin-left: 41.66667%;
}

.\-4u {
    margin-left: 33.33333%;
}

.\-3u {
    margin-left: 25%;
}

.\-2u {
    margin-left: 16.66667%;
}

.\-1u {
    margin-left: 8.33333%;
}

@media screen and (min-width: 737px) {
    .row > * {
        padding: 50px 0 0 50px;
    }
    .row {
        margin: -50px 0 -1px -50px;
    }
    .row.uniform > * {
        padding: 50px 0 0 50px;
    }
    .row.uniform {
        margin: -50px 0 -1px -50px;
    }
    .row.\32 00\25 > * {
        padding: 100px 0 0 100px;
    }
    .row.\32 00\25 {
        margin: -100px 0 -1px -100px;
    }
    .row.uniform.\32 00\25 > * {
        padding: 100px 0 0 100px;
    }
    .row.uniform.\32 00\25 {
        margin: -100px 0 -1px -100px;
    }
    .row.\31 50\25 > * {
        padding: 75px 0 0 75px;
    }
    .row.\31 50\25 {
        margin: -75px 0 -1px -75px;
    }
    .row.uniform.\31 50\25 > * {
        padding: 75px 0 0 75px;
    }
    .row.uniform.\31 50\25 {
        margin: -75px 0 -1px -75px;
    }
    .row.\35 0\25 > * {
        padding: 25px 0 0 25px;
    }
    .row.\35 0\25 {
        margin: -25px 0 -1px -25px;
    }
    .row.uniform.\35 0\25 > * {
        padding: 25px 0 0 25px;
    }
    .row.uniform.\35 0\25 {
        margin: -25px 0 -1px -25px;
    }
    .row.\32 5\25 > * {
        padding: 12.5px 0 0 12.5px;
    }
    .row.\32 5\25 {
        margin: -12.5px 0 -1px -12.5px;
    }
    .row.uniform.\32 5\25 > * {
        padding: 12.5px 0 0 12.5px;
    }
    .row.uniform.\32 5\25 {
        margin: -12.5px 0 -1px -12.5px;
    }
    .\31 2u\28desktop\29,
    .\31 2u\24\28desktop\29 {
        width: 100%;
        clear: none;
        margin-left: 0;
    }
    .\31 1u\28desktop\29,
    .\31 1u\24\28desktop\29 {
        width: 91.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 0u\28desktop\29,
    .\31 0u\24\28desktop\29 {
        width: 83.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\39 u\28desktop\29,
    .\39 u\24\28desktop\29 {
        width: 75%;
        clear: none;
        margin-left: 0;
    }
    .\38 u\28desktop\29,
    .\38 u\24\28desktop\29 {
        width: 66.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\37 u\28desktop\29,
    .\37 u\24\28desktop\29 {
        width: 58.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\36 u\28desktop\29,
    .\36 u\24\28desktop\29 {
        width: 50%;
        clear: none;
        margin-left: 0;
    }
    .\35 u\28desktop\29,
    .\35 u\24\28desktop\29 {
        width: 41.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\34 u\28desktop\29,
    .\34 u\24\28desktop\29 {
        width: 33.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\33 u\28desktop\29,
    .\33 u\24\28desktop\29 {
        width: 25%;
        clear: none;
        margin-left: 0;
    }
    .\32 u\28desktop\29,
    .\32 u\24\28desktop\29 {
        width: 16.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 u\28desktop\29,
    .\31 u\24\28desktop\29 {
        width: 8.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\31 2u\24\28desktop\29 + *,
    .\31 1u\24\28desktop\29 + *,
    .\31 0u\24\28desktop\29 + *,
    .\39 u\24\28desktop\29 + *,
    .\38 u\24\28desktop\29 + *,
    .\37 u\24\28desktop\29 + *,
    .\36 u\24\28desktop\29 + *,
    .\35 u\24\28desktop\29 + *,
    .\34 u\24\28desktop\29 + *,
    .\33 u\24\28desktop\29 + *,
    .\32 u\24\28desktop\29 + *,
    .\31 u\24\28desktop\29 + * {
        clear: left;
    }
    .\-11u\28desktop\29 {
        margin-left: 91.66667%;
    }
    .\-10u\28desktop\29 {
        margin-left: 83.33333%;
    }
    .\-9u\28desktop\29 {
        margin-left: 75%;
    }
    .\-8u\28desktop\29 {
        margin-left: 66.66667%;
    }
    .\-7u\28desktop\29 {
        margin-left: 58.33333%;
    }
    .\-6u\28desktop\29 {
        margin-left: 50%;
    }
    .\-5u\28desktop\29 {
        margin-left: 41.66667%;
    }
    .\-4u\28desktop\29 {
        margin-left: 33.33333%;
    }
    .\-3u\28desktop\29 {
        margin-left: 25%;
    }
    .\-2u\28desktop\29 {
        margin-left: 16.66667%;
    }
    .\-1u\28desktop\29 {
        margin-left: 8.33333%;
    }
}

@media screen and (min-width: 737px) and (max-width: 1200px) {
    .row > * {
        padding: 25px 0 0 25px;
    }
    .row {
        margin: -25px 0 -1px -25px;
    }
    .row.uniform > * {
        padding: 25px 0 0 25px;
    }
    .row.uniform {
        margin: -25px 0 -1px -25px;
    }
    .row.\32 00\25 > * {
        padding: 50px 0 0 50px;
    }
    .row.\32 00\25 {
        margin: -50px 0 -1px -50px;
    }
    .row.uniform.\32 00\25 > * {
        padding: 50px 0 0 50px;
    }
    .row.uniform.\32 00\25 {
        margin: -50px 0 -1px -50px;
    }
    .row.\31 50\25 > * {
        padding: 37.5px 0 0 37.5px;
    }
    .row.\31 50\25 {
        margin: -37.5px 0 -1px -37.5px;
    }
    .row.uniform.\31 50\25 > * {
        padding: 37.5px 0 0 37.5px;
    }
    .row.uniform.\31 50\25 {
        margin: -37.5px 0 -1px -37.5px;
    }
    .row.\35 0\25 > * {
        padding: 12.5px 0 0 12.5px;
    }
    .row.\35 0\25 {
        margin: -12.5px 0 -1px -12.5px;
    }
    .row.uniform.\35 0\25 > * {
        padding: 12.5px 0 0 12.5px;
    }
    .row.uniform.\35 0\25 {
        margin: -12.5px 0 -1px -12.5px;
    }
    .row.\32 5\25 > * {
        padding: 6.25px 0 0 6.25px;
    }
    .row.\32 5\25 {
        margin: -6.25px 0 -1px -6.25px;
    }
    .row.uniform.\32 5\25 > * {
        padding: 6.25px 0 0 6.25px;
    }
    .row.uniform.\32 5\25 {
        margin: -6.25px 0 -1px -6.25px;
    }
    .\31 2u\28tablet\29,
    .\31 2u\24\28tablet\29 {
        width: 100%;
        clear: none;
        margin-left: 0;
    }
    .\31 1u\28tablet\29,
    .\31 1u\24\28tablet\29 {
        width: 91.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 0u\28tablet\29,
    .\31 0u\24\28tablet\29 {
        width: 83.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\39 u\28tablet\29,
    .\39 u\24\28tablet\29 {
        width: 75%;
        clear: none;
        margin-left: 0;
    }
    .\38 u\28tablet\29,
    .\38 u\24\28tablet\29 {
        width: 66.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\37 u\28tablet\29,
    .\37 u\24\28tablet\29 {
        width: 58.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\36 u\28tablet\29,
    .\36 u\24\28tablet\29 {
        width: 50%;
        clear: none;
        margin-left: 0;
    }
    .\35 u\28tablet\29,
    .\35 u\24\28tablet\29 {
        width: 41.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\34 u\28tablet\29,
    .\34 u\24\28tablet\29 {
        width: 33.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\33 u\28tablet\29,
    .\33 u\24\28tablet\29 {
        width: 25%;
        clear: none;
        margin-left: 0;
    }
    .\32 u\28tablet\29,
    .\32 u\24\28tablet\29 {
        width: 16.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 u\28tablet\29,
    .\31 u\24\28tablet\29 {
        width: 8.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\31 2u\24\28tablet\29 + *,
    .\31 1u\24\28tablet\29 + *,
    .\31 0u\24\28tablet\29 + *,
    .\39 u\24\28tablet\29 + *,
    .\38 u\24\28tablet\29 + *,
    .\37 u\24\28tablet\29 + *,
    .\36 u\24\28tablet\29 + *,
    .\35 u\24\28tablet\29 + *,
    .\34 u\24\28tablet\29 + *,
    .\33 u\24\28tablet\29 + *,
    .\32 u\24\28tablet\29 + *,
    .\31 u\24\28tablet\29 + * {
        clear: left;
    }
    .\-11u\28tablet\29 {
        margin-left: 91.66667%;
    }
    .\-10u\28tablet\29 {
        margin-left: 83.33333%;
    }
    .\-9u\28tablet\29 {
        margin-left: 75%;
    }
    .\-8u\28tablet\29 {
        margin-left: 66.66667%;
    }
    .\-7u\28tablet\29 {
        margin-left: 58.33333%;
    }
    .\-6u\28tablet\29 {
        margin-left: 50%;
    }
    .\-5u\28tablet\29 {
        margin-left: 41.66667%;
    }
    .\-4u\28tablet\29 {
        margin-left: 33.33333%;
    }
    .\-3u\28tablet\29 {
        margin-left: 25%;
    }
    .\-2u\28tablet\29 {
        margin-left: 16.66667%;
    }
    .\-1u\28tablet\29 {
        margin-left: 8.33333%;
    }
}

@media screen and (max-width: 736px) {
    .row > * {
        padding: 20px 0 0 20px;
    }
    .row {
        margin: -20px 0 -1px -20px;
    }
    .row.uniform > * {
        padding: 20px 0 0 20px;
    }
    .row.uniform {
        margin: -20px 0 -1px -20px;
    }
    .row.\32 00\25 > * {
        padding: 40px 0 0 40px;
    }
    .row.\32 00\25 {
        margin: -40px 0 -1px -40px;
    }
    .row.uniform.\32 00\25 > * {
        padding: 40px 0 0 40px;
    }
    .row.uniform.\32 00\25 {
        margin: -40px 0 -1px -40px;
    }
    .row.\31 50\25 > * {
        padding: 30px 0 0 30px;
    }
    .row.\31 50\25 {
        margin: -30px 0 -1px -30px;
    }
    .row.uniform.\31 50\25 > * {
        padding: 30px 0 0 30px;
    }
    .row.uniform.\31 50\25 {
        margin: -30px 0 -1px -30px;
    }
    .row.\35 0\25 > * {
        padding: 10px 0 0 10px;
    }
    .row.\35 0\25 {
        margin: -10px 0 -1px -10px;
    }
    .row.uniform.\35 0\25 > * {
        padding: 10px 0 0 10px;
    }
    .row.uniform.\35 0\25 {
        margin: -10px 0 -1px -10px;
    }
    .row.\32 5\25 > * {
        padding: 5px 0 0 5px;
    }
    .row.\32 5\25 {
        margin: -5px 0 -1px -5px;
    }
    .row.uniform.\32 5\25 > * {
        padding: 5px 0 0 5px;
    }
    .row.uniform.\32 5\25 {
        margin: -5px 0 -1px -5px;
    }
    .\31 2u\28mobile\29,
    .\31 2u\24\28mobile\29 {
        width: 100%;
        clear: none;
        margin-left: 0;
    }
    .\31 1u\28mobile\29,
    .\31 1u\24\28mobile\29 {
        width: 91.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 0u\28mobile\29,
    .\31 0u\24\28mobile\29 {
        width: 83.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\39 u\28mobile\29,
    .\39 u\24\28mobile\29 {
        width: 75%;
        clear: none;
        margin-left: 0;
    }
    .\38 u\28mobile\29,
    .\38 u\24\28mobile\29 {
        width: 66.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\37 u\28mobile\29,
    .\37 u\24\28mobile\29 {
        width: 58.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\36 u\28mobile\29,
    .\36 u\24\28mobile\29 {
        width: 50%;
        clear: none;
        margin-left: 0;
    }
    .\35 u\28mobile\29,
    .\35 u\24\28mobile\29 {
        width: 41.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\34 u\28mobile\29,
    .\34 u\24\28mobile\29 {
        width: 33.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\33 u\28mobile\29,
    .\33 u\24\28mobile\29 {
        width: 25%;
        clear: none;
        margin-left: 0;
    }
    .\32 u\28mobile\29,
    .\32 u\24\28mobile\29 {
        width: 16.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 u\28mobile\29,
    .\31 u\24\28mobile\29 {
        width: 8.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\31 2u\24\28mobile\29 + *,
    .\31 1u\24\28mobile\29 + *,
    .\31 0u\24\28mobile\29 + *,
    .\39 u\24\28mobile\29 + *,
    .\38 u\24\28mobile\29 + *,
    .\37 u\24\28mobile\29 + *,
    .\36 u\24\28mobile\29 + *,
    .\35 u\24\28mobile\29 + *,
    .\34 u\24\28mobile\29 + *,
    .\33 u\24\28mobile\29 + *,
    .\32 u\24\28mobile\29 + *,
    .\31 u\24\28mobile\29 + * {
        clear: left;
    }
    .\-11u\28mobile\29 {
        margin-left: 91.66667%;
    }
    .\-10u\28mobile\29 {
        margin-left: 83.33333%;
    }
    .\-9u\28mobile\29 {
        margin-left: 75%;
    }
    .\-8u\28mobile\29 {
        margin-left: 66.66667%;
    }
    .\-7u\28mobile\29 {
        margin-left: 58.33333%;
    }
    .\-6u\28mobile\29 {
        margin-left: 50%;
    }
    .\-5u\28mobile\29 {
        margin-left: 41.66667%;
    }
    .\-4u\28mobile\29 {
        margin-left: 33.33333%;
    }
    .\-3u\28mobile\29 {
        margin-left: 25%;
    }
    .\-2u\28mobile\29 {
        margin-left: 16.66667%;
    }
    .\-1u\28mobile\29 {
        margin-left: 8.33333%;
    }
}


/* ************************************************************************** */


/* Basic */

body.is-loading * {
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

.language-select-flag {
    width: 20px;
    margin-top: 5px;
}

.newsbody ul {
    list-style-type: disc;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 1.1em;
    line-height: 1.6em;
}

.social-icon {
    float: left;
    margin-top: -35px;
    margin-left: 5px;
}

.section-box {
    height: 100%;
}

.section-box-left {
    float: right;
    max-width: 600px;
    text-align: right;
    margin-right: 6em;
}

.section-box-right {
    float: left;
    max-width: 600px;
    text-align: left;
    padding-left: 3em;
}

.NexGalleryThumb {
    float: left;
    width: 100%;
    height: 250px;
    display: block;
    background-size: 100% auto;
    background-position: center center;
    background-color: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
    /* -webkit-box-shadow:0 1px 3px rgba(0,0,0,0.6);	-moz-box-shadow:1px 2px 3px rgba(0,0,0,0.6);	box-shadow:1px 2px 3px rgba(0,0,0,0.6); */
}

.NexGalleryThumb:hover {
    opacity: 0.8;
}


/*********************************************************************************/


/* Basic                                                                         */


/*********************************************************************************/

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200!important;
    background: #fff;
    color: #000037;
    font-size: 12pt;
    line-height: 17.5pt;
    width: 100%;
    padding: 0px;
    margin: 0px;
    top: 0;
}

.why-inter-text {
    margin-top: 0%;
}

.product-box {
    height: 440px;
    margin-top: -30px;
    text-decoration: none;
    text-align: center;
}

.product-box-title {
    width: 100%;
    height: 30px;
    background-color: #122f54;
    color: #fff;
    font-size: 1em;
    line-height: 30px;
}

.product-box-inner {
    border: 1px solid #eeeeee;
    min-height: 350px;
    width: 100%;
}

.filter-by-size {
    float: right;
    margin-top: 0px;
}

.why-inter-text p {
    line-height: 2.8em!important;
}

.why-inter-box {
    display: block;
    width: 100%;
    height: 400px;
    border: 1px solid #4d91cd;
}

.why-inter-box-inner {
    margin-top: -25px;
    padding: 20px;
    text-align: center;
}

.why-inter-box-inner p {
    font-size: 0.9em!important;
}

.number-circle {
    position: relative;
    z-index: 9999999999999999999999999;
    height: 60px;
    width: 60px;
    border-radius: 60px;
    border: 3px solid #4d91cd;
    left: 50%;
    margin-left: -30px;
    top: -30px;
    color: #fff;
    background: #4d91cd;
    text-align: center;
    line-height: 54px;
    font-size: 20px;
}

.top-section-text li {
    line-height: 2em;
}

.textpage tr:nth-child(odd) {
    background-color: #efefef;
    line-height: 37px;
}

.textpage th {
    background-color: #122f54;
    color: #fff;
}

.textpage tr:nth-child(even) {
    line-height: 37px;
}

.textpage td,
th {
    padding: 5px;
}

.textpage strong {
    font-weight: 600;
}

.no-bg {
    background-color: #fff;
}

#product-type-header {
    width: 100%;
    padding: 0px;
    margin: 0px;
    margin-top: 140px;
    background-color: #122f54;
    /* 000037; */
}

.product-type-header-content {
    color: #eeeeee;
    max-width: 90%;
}

.product-type-header-content h1 {
    margin-top: -30px;
    padding-top: 0px;
}

.product-type-header-content li {
    color: #fff;
    margin-left: 20px;
}

.product-features {
    padding: 2em;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #4d91cd;
    color: #ffffff;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 1.5em;
    line-height: 1.6em!important;
    font-weight: 600!important;
}

.dimension-disclaimer {
    font-size: 0.6em;
}

.features-section {
    padding: 2em;
    padding-left: 2em;
    padding-right: 2em;
    background-color: #4d91cd;
    color: #122f54;
    margin-bottom: 2em;
}

.features-section h3 {
    line-height: 1em!important;
    font-weight: 600!important;
}

.products-section {
    padding: 2em;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #fff;
    color: #4d91cd;
}

.products-section p {
    line-height: 2em!important;
    font-weight: 600!important;
}

.projects-section {
    padding: 2em;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #122f54;
    color: #fff;
}

.projects-section p {
    color: #5e79a6;
}

.section-intro p {
    line-height: 2.7em!important;
    font-weight: 600;
}

.section-project p {
    line-height: 2.7em!important;
    font-weight: 600;
    color: #fff!important;
}

.white {
    color: #fff;
}

p {
    font-family: 'Open Sans'!important;
    font-weight: 200!important;
}

.no-header-spacer {
    width: 100%;
    height: 97px;
}

.page-title {
    color: #122f54!important;
    margin-top: 30px;
    font-weight: 600;
}

.headerImage {
    border-bottom: 0px solid #ea2f2c;
    min-height: 115px;
    width: 100%;
    padding: 0px!important;
    margin: 0px1important;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    color: #407392;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h7 a {
    text-decoration: none;
    color: inherit;
}

a {
    color: #5578a6;
    text-decoration: none;
}

a:hover {
    color: #1f1f50;
    text-decoration: underline;
}

form {}

form input,
form textarea {}

br.clear {
    clear: both;
}

p,
ul,
ol,
dl,
table {
    margin-bottom: 0.5em;
}

.textpage ul {
    margin-left: 30px;
}

.image {
    position: relative;
    display: inline-block;
    /*  border-radius: 8px; */
}

.image img {
    display: block;
    width: 100%;
    /* border-radius: 8px; */
}

.image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: url('images/overlay.png');			opacity: 0.2; */
    border-radius: 8px;
}

.image-full {
    display: block;
    width: 100%;
    margin: 0 0 2em 0;
}

.image-left {
    float: left;
    margin: 0 2em 2em 0;
}

.image-centered {
    display: block;
    margin: 0 0 2em 0;
}

.image-centered img {
    margin: 0 auto;
    width: auto;
}

.button {
    display: inline-block;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
    outline: 0;
    margin-top: 15px;
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.button:hover {
    background: #03023b;
    color: #fff;
}

.button:active {
    margin-top: 20px;
}

.button-alt {
    display: inline-block;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0px;
    outline: 0;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #122f54;
    color: #122f54;
    padding: 0.70em!important;
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease
}

.button-alt:hover {
    background: #03023b;
    color: #fff;
}

.button-alt:active {
    margin-top: 20px;
}

.button-alt2 {
    display: inline-block;
    font-family: 'Open Sans';
	font-weight: 600;
	font-size: 14px;
    text-transform: uppercase;
	text-decoration: none;
	border-radius: 0px;
    outline: 0;
    margin-top: 15px;
	background: #03023b;
	border: 1px solid #03023b;
    color: #fff;
    padding: 0.70em;
	-webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease
}

.button-alt2:hover {
    background: #fff;
    color: #03023b;
}


/*********************************************************************************/


/* Wrappers                                                                      */


/*********************************************************************************/

#banner-wrapper {
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
    width: 100%;
    overflow: hidden;
    /*margin-top: 90px;*/
}

.active {
    display: none;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade-in_1 {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.fade-in_2 {
    -webkit-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

.fade-in_3 {
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    animation-delay: 8s;
}

.fade-in_4 {
    -webkit-animation-delay: 10.2s;
    -moz-animation-delay: 10.2s;
    animation-delay: 10.2s;
}

.fade-in_5 {
    -webkit-animation-delay: 14s;
    -moz-animation-delay: 14s;
    animation-delay: 14s;
}

.fade-in_6 {
    -webkit-animation-delay: 16.2s;
    -moz-animation-delay: 16.2s;
    animation-delay: 16.2s;
}


/* *********************** */

.textpage p {
    font-size: 14pt;
    line-height: 20pt;
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    margin-bottom: 1em;
}


/*********************************************************************************/


/* Header                                                                        */


/*********************************************************************************/

#header {}

.header-image {
    margin-top: 90px;
    width: 100%;
}


/*********************************************************************************/


/* Nav                                                                           */


/*********************************************************************************/

#nav {}


/*********************************************************************************/


/* Banner                                                                        */


/*********************************************************************************/

#banner {
    position: relative;
    text-align: center;
    z-index: 2;
}

#banner > * {
    position: relative;
    z-index: 3;
}


/*********************************************************************************/


/* Main                                                                          */


/*********************************************************************************/

#main {
    margin-top: 10px;
}


/*********************************************************************************/


/* Footer                                                                        */


/*********************************************************************************/

#footer {
    background-color: #4d91cd;
    background-size: 100%;
    font-family: 'Aller_Std_Lt', 'Open Sans';
    font-size: 12px;
    color: #fff;
}

#footer h2 {
    color: #fff;
    font-family: 'Aller_Std_Lt', 'Open Sans';
    font-weight: lighter;
    margin-top: 1em;
}

#footer a {
    color: inherit;
}

#footer-links p {
    font-size: 13pt;
    line-height: 15pt!important;
}


/*********************************************************************************/


/* Copyright                                                                     */


/*********************************************************************************/

#copyright {
    display: inline-block;
    background: #e7eae8;
    padding: 0.75em 2em 0.75em 2em;
    border-radius: 8px;
    font-size: 0.85em;
    color: #8b9790;
}

#copyright a {
    color: inherit;
}


/* **************************************************************************** * Carousel Controls here                                                     * * ***************************************************************************/

.captioncontainer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
}


/* Carousel */

.carousel {
    position: relative;
    overflow: hidden;
    padding: 1em 0 1em 0;
    margin-bottom: 0;
    background-color: #efefef;
}

.carousel .forward,
.carousel .backward {
    position: absolute;
    top: 50%;
    width: 6em;
    height: 12em;
    margin-top: -6em;
    /*cursor: pointer;*/
}

.carousel .forward:before,
.carousel .backward:before {
    content: '';
    display: block;
    width: 6em;
    height: 6em;
    border-radius: 100%;
    background-color: #122f54;
    position: absolute;
    top: 50%;
    margin-top: -3em;
    -moz-transition: background-color 0.35s ease-in-out;
    -webkit-transition: background-color 0.35s ease-in-out;
    -o-transition: background-color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out;
    transition: background-color 0.35s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.carousel .forward:after,
.carousel .backward:after {
    content: '';
    width: 3em;
    height: 3em;
    position: absolute;
    top: 50%;
    margin: -1.5em 0 0 0;
    background: url("/images/arrow.svg") no-repeat center center;
}

.carousel .forward:hover:before,
.carousel .backward:hover:before {
    background-color: #4d91cd;
}

.carousel .forward {
    right: 0;
}

.carousel .forward:before {
    right: -2.5em;
}

.carousel .forward:after {
    right: -0.25em;
}

.carousel .backward {
    left: 0;
}

.carousel .backward:before {
    left: -2.5em;
}

.carousel .backward:after {
    left: -0.25em;
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.carousel .reel {
    white-space: nowrap;
    position: relative;
    -webkit-overflow-scrolling: touch;
    padding: 0 2em 0 2em;
}

.carousel article {
    display: inline-block;
    vertical-align: top;
    width: 22.5em;
    background: #fff;
    text-align: center;
    padding: 0 2em 3em 2em;
    margin: 0em 2em 0 0;
    white-space: normal;
    opacity: 1.0;
    height: 100%;
    min-height: 350px;
    -moz-transition: opacity 0.75s ease-in-out;
    -webkit-transition: opacity 0.75s ease-in-out;
    -ms-transition: opacity 0.75s ease-in-out;
    transition: opacity 0.75s ease-in-out;
}

.blank {
    width: 30em!important;
}

.carousel article.loading {
    opacity: 0;
}

.carousel article .image {
    position: relative;
    left: -1em;
    top: 0;
    width: auto;
    margin-right: -2em;
    margin-bottom: 1em;
}

.carousel article p {
    text-align: center;
}

strong {
    font-weight: 700;
}

a:hover img {
    opacity: 0.8;
}

.GalleryThumb:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.small_hr {
    border-bottom: 2px solid #fff;
    max-width: 130px;
    width: 80%;
}

.small_hr_blue {
    border-bottom: 2px solid #3a6f8f;
    max-width: 130px;
    width: 80%;
}

.main-logo {
    margin-top: 15px;
    width: 300px;
    width: 100%;
}

.aus-logo {
    margin-top: 15px;
    width: 400px;
    width: 100%;
}


/* ***************************** END BASIC **************************************** */


/* ******************************************************************************** */


/* Desktop */

@media screen and (min-width: 737px) {
    /*****************************/
    /* Desktop Basic             */
    /*****************************/
    body {
        min-width: 1200px;
        z-index: -1;
    }
    .main-logo {}
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    h7 {
        margin: 0 0 0.5em 0;
    }
    h1 {
        font-size: 2.75em;
        line-height: 1.6em;
        font-weight: 600;
    }
    h2 {
        font-size: 1.85em;
        line-height: 1.45em;
    }
    .section-header {
        font-size: 2.75em;
        line-height: 1.6em;
        font-weight: 600;
    }
    h3 {
        font-size: 1.4em;
        font-weight: 600;
        line-height: 1.15em;
    }
    h4 {
        font-size: 1.25em;
    }
    .button {
        font-size: 0.9em;
        padding: 0.55em 0.55em 0.55em 0.55em;
    }
    .button-alt {
        font-size: 0.9em;
        padding: 0.55em 0.55em 0.55em 0.55em;
    }
    /*********************************************************************************/
    /* Nav                                                                           */
    /*********************************************************************************/
    #btm_nav {
        top: 0px;
        left: 0px;
        margin: 0px;
        padding: 0px;
        width: 100%;
        height: 50px;
    }
    #nav {
        position: fixed;
        background-color: #fff;
        opacity: 0.9;
        top: 0;
        left: 0;
        margin-top: 0px;
        padding: 0px;
        width: 100%;
        height: 90px;
        font-weight: light;
        z-index: 1000000;
    }
    #btm_nav ul {
        float: left;
        margin-top: 5px;
    }
    #nav ul {
        margin-top: -10px;
        float: right;
    }
    #btm_nav li {
        display: inline-block;
        margin: 0 0 0 0;
        position: relative;
        margin-top: 0px;
    }
    #nav li {
        display: inline-block;
        margin: 0 0 0 0;
        position: relative;
        margin-top: 0px;
        height: 90px;
        opacity: 1;
    }
    #btm_nav li a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #2e2f44;
        font-family: 'Open Sans', sans-serif;
        padding: 0px 1.0em 0em 1.0em;
        line-height: 40px;
        font-weight: bold;
    }
    #nav li a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #2e2f44;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.9em;
        padding: 0px 0.65em 0em 0.65em;
        line-height: 90px;
        font-weight: bold;
        opacity: 1;
    }
    #nav li:hover {
        background-color: #122f54;
    }
    #btm_nav li:hover a {
        color: #fff;
    }
    #nav li:hover a {
        color: #fff;
    }
    #nav ul li ul {
        display: none;
    }
    #nav ul li:hover {}
    #nav ul li ul {
        padding: 0;
        z-index: 999999;
        position: absolute;
        width: 600px;
        top: 95px;
        left: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        display: none;
        opacity: 0;
        visibility: hidden;
        -webkit-transiton: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        -ms-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        -transition: opacity 0.2s;
        -webkit-box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.49);
        -moz-box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.49);
        box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.49);
    }
    #nav ul li:last-child ul {
        left: -99px!important;
        width: 140px;
    }
    #nav ul li ul li {
        background: #122f54;
        display: block;
        color: #fff;
        height: 35px;
        border-bottom: 1px solid #27456b;
        /* cdcdcd; */
    }
    #nav ul li ul li:last-child {
        border-bottom: 0px;
        height: 37px;
    }
    #nav ul li ul li a {
        line-height: 35px;
        font-size: 0.9em;
        padding-left: 1em;
        padding-right: 1em;
    }
    #nav ul li ul li:hover {
        background-color: #4f6f9e;
    }
    #nav ul li:hover ul {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    /*********************************************************************************/
    /* Banner                                                                        */
    /*********************************************************************************/
    #banner {
        padding: 0;
        margin: 0;
    }
    /*********************************************************************************/
    /* Main                                                                          */
    /*********************************************************************************/
    #main {
        padding: 1em 0 2em 0;
    }
    #main > .row {
        padding: 1em 0 1em 0;
    }
    /*********************************************************************************/
    /* Footer                                                                        */
    /*********************************************************************************/
    #footer {
        text-align: center;
        padding: 2em 0 2em 0;
    }
    /*********************************************************************************/
    /* Copyright                                                                     */
    /*********************************************************************************/
    #copyright {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        background-color: #252729;
        border: 2px solid #b74e0f;
        color: #fff;
        border-radius: 0px!important;
    }
}


/* Mid Resolution*/

@media screen and (min-width: 700px) and (max-width: 1200px) {
    /*********************************************************************************/
    /* Basic                                                                         */
    /*********************************************************************************/
    body {
        min-width: 100%;
        width: 100%;
        z-index: -1;
    }
    #nav {
        height: 80px!important;
    }
    #nav li a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #2e2f44;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.8em;
        padding: 0px 0.35em 0em 0.35em;
        line-height: 90px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .main-logo {
        margin-top: 20px;
        margin-left: 10px;
        width: 97%;
    }
    #product-type-header {
        width: 100%;
        padding: 0px;
        margin: 0px;
        margin-top: 90px;
        background-color: #122f54;
        /* 000037; */
    }
    .product-type-header-content {
        color: #eeeeee;
        max-width: 90%;
    }
    .product-type-header-content h1 {
        margin-top: 15px;
        padding-top: 0px;
    }
}

@media screen and (min-width:800px) and (max-width:1024px) {
    .social-icon {
        margin-top: -8px;
        width: 35px;
    }
}


/* Tablet portrait */

@media screen and (min-width: 767px) and (max-width:800px) {
    body {
        width: 100%;
        line-height: 1.75em;
        font-size: 10pt;
        letter-spacing: 0;
    }
    .container {
        max-width: 95%!important;
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%:
    }
    .social-icon {
        margin-top: -8px;
        width: 35px;
    }
    #product-type-header {
        margin-top: 72px;
    }
    .product-box-inner {
        border: 1px solid #eeeeee;
        min-height: 270px;
        width: 100%;
    }
    .product-box {
        height: 300px;
    }
    #nav {
        height: 70px!important;
        border: 1px solid #cdcdcd;
    }
    #nav li a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #2e2f44;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.8em;
        padding: 0px 0.3em 0em 0.3em;
        line-height: 75px;
        text-transform: uppercase;
        font-weight: bold;
    }
    #btm_nav li a {
        padding: 0px 0.3em 0em 0.3em;
    }
    #banner-wrapper {
        margin-top: 65px;
    }
}


/* Mobile */

#navPanel,
#titleBar {
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        width: 100%;
        line-height: 1.75em;
        font-size: 10pt;
        letter-spacing: 0;
    }
    .why-inter-box {
        margin-top: 4em;
    }
    .container {
        max-width: 100%!important;
        width: 100%;
    }
    .product-box {
        height: auto;
        margin-top: 0px!important;
        text-decoration: none;
        text-align: center;
    }
    .product-box-inner {
        border: 1px solid #eeeeee;
        min-height: 270px;
        width: 100%;
    }
    .product-box-title {
        float: left;
        width: 100%;
        height: 40px;
        background-color: #122f54;
        color: #fff;
        font-size: 20px!important;
        line-height: 40px!important;
    }
    .filter-by-size {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
    }
    .why-inter-text {
        float: left;
        width: 100%;
        margin-top: 200px;
    }
    #nav-padding-content {
        margin-top: 60px;
    }
    #product-type-header {
        width: 100%;
        padding: 0px;
        margin: 0px;
        margin-top: 59px;
        background-color: #122f54;
        margin-bottom: 10px;
        border-top: 2px solid #fff;
    }
    .product-type-header-content {
        color: #eeeeee;
        max-width: 100%;
        text-align: left;
    }
    .product-type-header-content h1 {
        padding-top: 0px;
        line-height: 35px!important;
        font-size: 20px;
        padding-bottom: 0px;
        margin-left: 20px;
    }
    .mobile-hide {
        display: none;
        visibility: hidden;
        width: 0px;
        height: 0px;
    }
    .blank {
        display: none;
        width: 0em!important;
    }
    .carousel article {
        width: 100%;
    }
    .carousel article:last-child {
        width: 2em;
        background-color: #efefef;
    }
    .top-section-block {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding-bottom: 0px;
    }
    .top-noimage-spacer {
        width: 100%;
        height: 50px;
    }
    .project-box {
        width: 100%;
        min-height: 10em;
        margin-top: 0.25em;
        background-color: #efefef;
    }
    .project-box-inner {
        width: 100%;
        min-height: 5em;
    }
    .service-box {
        width: 100%;
        margin-bottom: 4em;
        margin-top: 0.25em;
    }
    .service-box-inner {
        width: 100%;
        min-height: 8em;
    }
    .services-mobile-pad {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 3em;
    }
    .section-box {
        float: left;
        width: 90%;
        padding: 0px;
        margin-left: 5%;
        margin-right: 5%;
    }
    .section-box h2 {
        line-height: 1.4em;
    }
    .section-box-left {
        float: none;
        width: 95%;
        text-align: left;
        margin-right: 0.5em;
        margin-left: 0.5em;
        padding: 0px;
        padding-left: 0.5em;
    }
    .section-box-right {
        float: none;
        width: 95%;
        text-align: left;
        margin-right: 0.5em;
        margin-left: 0.5em;
        padding: 0px;
        padding-right0.5em;
    }
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 1.5em;
        margin: 0 0 0.5em 0;
    }
    h1 {
        font-size: 1.8em;
        line-height: 2.2em;
    }
    h3 {
        font-size: 1.25em;
    }
    .headerImage {
        width: 100%;
        padding: 0px;
        margin-top: 50px;
    }
    .no-header-spacer {
        width: 100%;
        height: 50px;
    }
    .title-block {
        position: relative;
        margin-left: auto;
        margin-top: -10px;
        margin-right: auto;
        padding: 5px;
    }
    .button {
        font-size: 1.3em;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 0.75em 0 0.75em 0;
        margin-top: 0.5em;
        text-align: center;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .button-alt {
        float: center;
        width: 80%;
        font-size: 1.2em;
        padding: 0.75em 0 0.75em 0;
        margin-top: 0.5em;
        text-align: center;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    /*********************************************************************************/
    /* Wrappers                                                                      */
    /*********************************************************************************/
    #banner-wrapper {
        padding: 0px;
        margin-top: 60px;
        border: 0px;
    }
    #main-wrapper {
        border-top-width: 0px;
        border-bottom-width: 5px;
    }
    .homepage #main-wrapper {
        border-top-width: 0px;
    }
    /*********************************************************************************/
    /* Header                                                                        */
    /*********************************************************************************/
    #header {
        /* display: none; */
    }
    /*********************************************************************************/
    /* Nav                                                                           */
    /*********************************************************************************/
    #nav {
        display: none;
    }
    /*********************************************************************************/
    /* Main                                                                          */
    /*********************************************************************************/
    #main {
        padding: 1em 20px 1em 20px;
        border-top: 0px;
    }
    #main > .row {
        padding: 0.1em 0 0.1em 0;
    }
    /*********************************************************************************/
    /* Footer                                                                        */
    /*********************************************************************************/
    #footer {
        padding: 2em 20px 2em 20px;
        text-align: center;
    }
    #footer > .row {
        padding: 1em 0 1em 0;
        text-align: center;
    }
    /*********************************************************************************/
    /* Mobile UI                                                                     */
    /*********************************************************************************/
    /* Off-Canvas Navigation */
    #page-wrapper {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        padding-bottom: 1px;
    }
    #navButton {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        display: block;
        height: 60px;
        left: 0;
        position: fixed;
        top: 0px!important;
        width: 100%;
        background-color: #fff;
        border-bottom: 1px solid #cdcdcd;
        opacity: 1;
        z-index: 99999999999999999999999999999999999999999999999;
    }
    #navButton .toggle {
        position: absolute;
        position: fixed;
        left: 0;
        top: 0;
        /* width: 100%;
        height: 100%; */
        border: 0;
        outline: 0;
        z-index:999999999999999999999;
    }
    
    #navButton .toggle:before {
        font-family: FontAwesome;
        text-decoration: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\f0c9';
        color: #fff;
        background-color: #122f54;
        text-align: center;
        display: block;
        font-size: 28px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        position: absolute;
        left: 0px;
        border-top: 0;
        border-radius: 0;
        opacity: 1;
        z-index:1;
    }
    #navButton .toggle:after {
        background-image: url(/media/1817/logo.jpg);
        background-size: 150px auto;
        background-repeat: no-repeat;
        display: inline-block;
        margin-left: 70px;
        margin-top: 15px;
        width: 150px;
        height: 50px;
        content: "";
    }
    #navPanel {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transform: translateY(-100vh);
        -webkit-transform: translateY(-100vh);
        -ms-transform: translateY(-100vh);
        transform: translateY(-100vh);
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        display: block;
        height: 100vh;
        left: 0;
        overflow-y: auto;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10002;
        background: #122f54;
        /* box-shadow: inset 0px -2px 5px 0px rgba(0, 0, 0, 0.25); */
        font-size: 1em;
    }
    #navPanel:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    #navPanel .link {
        position: relative;
        z-index: 1;
        display: block;
        text-decoration: none;
        padding: 0.75em;
        color: #ddd;
        border: 0;
        border-top: dotted 1px rgba(255, 255, 255, 0.05);
        font-size: 1.2em;
        margin-left: 5px;
    }
    #navPanel .link:first-child {
        border-top: 0;
        margin-top:38px;
    }
    #navPanel .link.depth-0 {
        color: #fff;
        font-weight: 400;
        /* display: none; */
    }
    #navPanel .link.depth-1 {
        color: #fff;
        font-weight: 600;
        display:none;
    }    
    #navPanel .link.depth-0:first {
        display: block;
    }
    #navPanel .indent-1 {
        display: none;
        /* inline-block; */
        width: 1em;
    }
    #navPanel .indent-2 {
        display: inline-block;
        width: 2em;
    }
    #navPanel .indent-3 {
        display: inline-block;
        width: 3em;
    }
    #navPanel .indent-4 {
        display: inline-block;
        width: 4em;
    }
    #navPanel .indent-5 {
        display: inline-block;
        width: 5em;
    }
    #navPanel .depth-0 {
        color: #fff;
    }
    body.navPanel-visible #page-wrapper {
        /*
        -moz-transform: translateY(50vh);
        -webkit-transform: translateY(50vh);
        -ms-transform: translateY(50vh);
        transform: translateY(50vh);
        */
    }
    body.navPanel-visible #navButton {
        /* 
        -moz-transform: translateY(50vh);
        -webkit-transform: translateY(50vh);
        -ms-transform: translateY(50vh);
        transform: translateY(50vh);
        */
    }
    body.navPanel-visible #navPanel {
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

#banner-text {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    z-index: 9999999999;
}

#banner-text h1 {
    font-family: 'Aller_Std_Lt';
    font-weight: 200;
    font-size: 3em;
}

#banner-text h2 {
    font-family: 'Aller_Std_Lt';
    font-weight: 200;
    font-size: 2.25em;
}

.single-item img:hover {
    opacity: 1;
}

.u-inner {
    padding: 7%;
    background-color: #efefef;
}

.u-inner p {
    font-size: 1.40em;
    color: #407392;
}

.u-inner p:before {
    color: #407392;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.15em;
    vertical-align: -0.4em;
    quotes: "\201C""\201D""\2018""\2019"
}

.u-inner p:after {
    color: #407392;
    content: close-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-left: 0.1em;
    vertical-align: -0.4em;
    quotes: "\201C""\201D""\2018""\2019"
}

.services-info ul {
    list-style-type: circle;
    font-family: 'Aller_Std_Lt';
    font-size: 1.1em;
    line-height: 1.4em;
    margin-left: 20px;
    padding-left: 8px;
    text-indent: 0px;
    list-style: none;
    list-style-position: outside;
}

.services-info ul li {
    margin-top: 1em;
    margin-bottom: 1em;
}

.services-info ul li:before {
    content: "\2713\0020";
    color: #407392;
    margin-left: -1.1em;
    margin-right: .100em;
}

.services-info p {
    line-height: 2.2em;
}

.grey-box {
    float: left;
    width: 100%;
    background-color: #efefef;
    padding: 50px;
}

.services_link {
    color: #3a6e8f;
    padding: 0px!important;
    margin: 0px!important;
    line-height: 0.5em;
    font-size: 70%;
}

.services_link br {
    padding: 0px!important;
    margin: 0px!important;
    line-height: 0.5em;
}

.services_image {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

@media screen and (max-width: 767px) {
    .button-alt {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 2em;
    }
    .button {
        float: center;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 2em;
    }
    #product-type-header {
        width: 100%;
        padding: 0px;
        margin: 0px;
        margin-top: 59px;
        height: 50px;
        background-color: #122f54;
        margin-bottom: 10px;
        border-top: 2px solid #fff;
    }
    .product-type-header-content {
        color: #eeeeee;
        max-width: 100%;
        text-align: left;
    }
    .product-type-header-content h1 {
        padding-top: 0px;
        line-height: 48px!important;
        font-size: 20px;
        padding-bottom: 0px;
        margin-left: 20px;
        margin-top: 0px;
    }
    .12u {
        margin-bottom: 1em!important;
    }
}

@media print {
    #btm_nav,
    #nav {
        display: none;
    }
    body {
        font-size: 14px;
        color: #000;
        border: 1px solid #fff;
    }
    h1 {
        color: #000!important;
        font-size: 30px;
        margin-bottom: 1.5em;
    }
    .button,
    .button-alt {
        display: none;
    }
    #footer,
    .terms,
    .copyright {
        display: none;
    }
}

#covid19banner {
    width: 100%;
    padding: 0px;
    margin: 0px;
    margin-top: 100px;
    background-color:#1a1a4b;
}

.covid19banner-content {
    color: #ffffff;
    max-width:100%;
	padding-bottom:15px;
}

.covidmessage{
	font-size: 20px;
}

figcaption {
    font: italic smaller sans-serif;
    text-align: left;
}







