﻿/* This will be the ONLY CSS file added to the final site */
@import "geoitems.css";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/



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, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* Buttons */
/* Buttons */
/* Font size */
/*Desktop*/
body {
  font-size: 17px;
}
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
/*Desktop end*/
@media only screen (max-width: 1024px) {
  body {
    font-size: 17px;
  }
  .content-wrapper {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 800px) {
  body {
    font-size: 17px;
  }
  .content-wrapper {
    margin: 0 20px;
  }
}
@font-face {
  font-family: "Lato";
  src: url(/Assets/Fonts/Lato-Regular.woff);
}
@font-face {
  font-family: "Lato Black";
  src: url(/Assets/Fonts/Lato-Black.woff);
}
@font-face {
  font-family: "Lato Bold";
  src: url(/Assets/Fonts/Lato-Bold.woff);
}
html {
  overflow-y: scroll;
}
body {
  font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #2a3746;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  body {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 800px) {
  body {
    margin-top: 60px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: "Lato Black";
}
h1 {
  font-size: 2.95em;
  line-height: 52px;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 1.95em !important;
    line-height: 40px;
  }
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 35px !important;
    line-height: 38px;
  }
}
h2 {
  font-size: 2.95em;
  line-height: 52px;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 1.7em !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 800px) {
  h2 {
    font-size: 35px !important;
    line-height: 38px;
  }
}
h3 {
  font-size: 1.47em;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 1.2em !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 800px) {
  h3 {
    font-size: 17px !important;
    line-height: 28px;
  }
}
.text h3 {
  font-size: 1em;
}
h4 {
  font-size: 1em;
  font-family: "Lato Bold";
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 1em;
}
p {
  line-height: 1.6em;
  margin-bottom: 1em;
  font-size: 1em;
}
blockquote {
  color: #666;
  padding: 2em;
}
a {
  text-decoration: none;
  text-transform: uppercase;
  color: #1593c9;
}
b,
strong {
  font-weight: bold;
}
i,
em {
  font-style: italic;
}
/* Buttons */
.button,
.text a {
  background-color: #fff;
  color: #1593c9;
  font-weight: normal;
  padding: 12px 18px;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  -webkit-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
  cursor: pointer;
  border: 1px solid #1593c9;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 10px;
  margin-right: 7px;
}
@media only screen and (max-width: 1024px) {
  .button,
  .text a {
    width: 100%;
    display: block;
    text-align: center;
    margin-right: 0;
  }
}
@media only screen and (max-width: 800px) {
  .button,
  .text a {
    width: auto;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .button,
  .text a {
    width: 100%;
    margin-right: 0;
  }
}
.button:hover,
.text a:hover {
  background-color: #1593c9;
  color: #fff;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  -webkit-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}
.button.alternate,
.text a.alternate {
  background-color: #999;
  color: #000000;
}
.button.alternate:hover,
.text a.alternate:hover {
  background-color: #000000;
  color: #999;
}
.button.alternate2,
.text a.alternate2 {
  background-color: #1593c9;
  color: #000000;
}
.button.alternate2:hover,
.text a.alternate2:hover {
  background-color: #000000;
  color: #1593c9;
}
@media only screen and (max-width: 800px) {
  .bread-crumb {
    display: none;
  }
}
.bread-crumb ul {
  clear: both;
  margin-bottom: 2em;
  margin-top: 1em;
  overflow: hidden;
}
.bread-crumb ul li {
  float: left;
  margin-right: 0.4em;
  position: relative;
  list-style: none;
}
.bread-crumb ul li::after {
  content: " >";
}
.bread-crumb ul li:last-child::after {
  content: "";
}
.bread-crumb ul li a {
  color: #666;
  text-decoration: none;
  font-weight: 400;
}
ul li {
  line-height: 1.6em;
  list-style: disc;
}
ol li {
  margin: 1em 0;
  line-height: 1.6em;
  list-style: decimal;
}
table {
  margin: 1.5em 0;
}
table th,
table tfoot {
  text-align: left;
  border: 1px solid #ddd;
  padding: 0.2em;
  font-weight: 700;
}
table td {
  border: 1px solid #ddd;
  padding: 0.2em;
}
.table th,
.table td {
  padding: 0.5em;
}
.table tr:nth-child(2n) td,
.table tr:nth-child(2n) th {
  background-color: #f6f6f6;
}
s label {
  font-size: 1em;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
hr {
  background-color: #ddd;
  border: 0;
  height: 1px;
}
/* Responsive grids */
.grid-row {
  margin-bottom: 2em;
  margin: 0 auto;
}
.grid-row .col {
  padding: 0;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 800px) {
  .grid-row .col {
    float: none;
    width: 100% !important;
  }
}
.grid-row .col.w25 {
  width: 25%;
}
.grid-row .col.w33 {
  width: 33.333%;
}
.grid-row .col.w50 {
  width: 50%;
}
.grid-row .col.w66 {
  width: 66.666%;
}
.grid-row .col.w75 {
  width: 75%;
}
.grid-row:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.tabmenu {
  padding: 0;
}
.tabmenu li {
  height: 70px;
  line-height: 70px;
  list-style-type: none;
  float: left;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}
.tabmenu li.active a,
.tabmenu li:hover a {
  color: #1593c9;
}
@media only screen and (max-width: 800px) {
  .tabmenu li {
    height: 70px;
  }
}
@media only screen and (max-width: 700px) {
  .tabmenu li {
    height: 40px;
  }
}
.tabmenu li a {
  height: 70px;
  line-height: 50px;
  padding: 0 0 0 15px;
  display: block;
  cursor: pointer;
  color: #fff;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media only screen and (max-width: 800px) {
  .tabmenu li a {
    padding: 0;
    height: 40px;
  }
}
.tabmenu li a span {
  line-height: 70px;
  padding-right: 15px;
  border-right: 1px solid #555f6b;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Lato";
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .tabmenu li a span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 800px) {
  .tabmenu li a span {
    line-height: 40px;
    padding-right: 0;
    border-right: 0;
    font-size: 17px;
  }
}
.tabmenu li:last-child {
  margin-right: 0;
}
.tabmenu.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: rgba(128, 255, 255, 0.8);
}
.tabmenu:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.treemenu li {
  list-style-type: none;
  margin-bottom: 0.1em;
}
.treemenu li a {
  display: block;
  padding: 0.5em;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
  cursor: pointer;
}
.treemenu li:hover a {
  background-color: #f3f3f3;
}
.treemenu li.active > a {
  background-color: #eee;
}
.treemenu li ul {
  margin-left: 2em;
}
.outerPad {
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .outerPad {
    padding: 0 70px;
  }
}
@media only screen and (max-width: 800px) {
  .outerPad {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 700px) {
  .outerPad {
    padding: 0 20px;
  }
}
.maxwidth1400 {
  max-width: 1400px;
}
.padTop {
  padding-top: 175px;
}
@media only screen and (max-width: 1024px) {
  .padTop {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .padTop {
    padding-top: 50px;
  }
}
.padBottom {
  padding-bottom: 175px;
}
@media only screen and (max-width: 1024px) {
  .padBottom {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .padBottom {
    padding-bottom: 50px;
  }
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
  *zoom: 1;
}
@media only screen and (max-width: 800px) {
  .hidemobile {
    display: none !important;
  }
}
.showmobile {
  display: none !important;
}
@media only screen and (max-width: 800px) {
  .showmobile {
    display: block !important;
  }
}
ul {
  padding-left: 20px;
}
.button.triple {
  width: 33.333%;
  margin: 0 !important;
  text-align: center;
  float: left;
  padding-left: 0;
  padding-right: 0;
}
.button.triple:nth-child(even) {
  border-right: 0 !important;
  border-left: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .button.triple {
    width: 100%;
    margin-bottom: 10px !important;
  }
  .button.triple:nth-child(even) {
    border-right: 1px solid #1593c9 !important;
    border-left: 1px solid #1593c9 !important;
  }
}
@media only screen and (max-width: 800px) {
  .button.triple {
    width: 33.333%;
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 700px) {
  .button.triple {
    width: 100%;
    margin-bottom: 10px !important;
  }
  .button.triple:nth-child(even) {
    border-right: 1px solid #1593c9 !important;
    border-left: 1px solid #1593c9 !important;
  }
}
.languageoverlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -99999999;
  opacity: 0;
  -moz-transition: opacity ease 0.5s;
  -o-transition: opacity ease 0.5s;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
  padding: 0 40px 0 20px;
}
.languageoverlay h2 {
  position: relative;
  margin-bottom: 100px;
}
.languageoverlay h2:after {
  content: " ";
  height: 3px;
  width: 70%;
  background: #1593c9;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.languageoverlay.active {
  z-index: 99999999;
}
.languageoverlay.show {
  opacity: 1;
}
.languageoverlay .container {
  max-width: 1400px;
  position: relative;
  /*top: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);*/
  margin: 3vh auto;
  background: #fff;
  padding: 110px;
  overflow-y: scroll;
  max-height: 94vh;
}
@media only screen and (max-width: 800px) {
  .languageoverlay .container {
    padding: 20px;
  }
}
.languageoverlay .container .imageclose {
  height: 60px;
  width: 60px;
  background-color: #1593c9;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 9999;
}
.staydown {
  -moz-transform: translateY(300px);
  -ms-transform: translateY(300px);
  -o-transform: translateY(300px);
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
  opacity: 0 !important;
}
.form input[type='submit'],
form input[type='submit'] {
  cursor: pointer;
}
.form input,
form input,
.form textarea,
form textarea {
  width: 100%;
  padding: 0.5em 0.65em;
  margin: 1em 0;
  border: 2px solid #ddd;
  color: #2a3746;
  font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1em;
}
.form input[type=checkbox],
form input[type=checkbox],
.form textarea[type=checkbox],
form textarea[type=checkbox],
.form input[type=radio],
form input[type=radio],
.form textarea[type=radio],
form textarea[type=radio],
.form input[type=button],
form input[type=button],
.form textarea[type=button],
form textarea[type=button],
.form input[type=submit],
form input[type=submit],
.form textarea[type=submit],
form textarea[type=submit],
.form input[type=reset],
form input[type=reset],
.form textarea[type=reset],
form textarea[type=reset] {
  display: block;
  width: auto;
  border: 0;
}
.form input[type=image],
form input[type=image],
.form textarea[type=image],
form textarea[type=image],
.form input[type=file],
form input[type=file],
.form textarea[type=file],
form textarea[type=file] {
  padding: 0;
  border: 0;
}
.form input:focus,
form input:focus,
.form textarea:focus,
form textarea:focus {
  outline: 0;
  border: 2px solid #1593c9;
}
.form input::-webkit-input-placeholder,
form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaa;
}
.form input::-moz-placeholder,
form input::-moz-placeholder,
.form textarea::-moz-placeholder,
form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}
.form input:-ms-input-placeholder,
form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaa;
}
.form input:-moz-placeholder,
form input:-moz-placeholder,
.form textarea:-moz-placeholder,
form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}
.imagelink {
  padding: 125px 0;
  background: #f1f1f1;
}
@media only screen and (max-width: 800px) {
  .imagelink {
    padding: 50px 0 0 0;
  }
}
@media only screen and (max-width: 700px) {
  .imagelink {
    padding: 0;
  }
}
.imagelink .image {
  background-size: cover !important;
  background-position: center !important;
}
@media only screen and (max-width: 800px) {
  .imagelink .image {
    height: 45vh;
  }
}
.imagelink.layout2 .grid-row {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.imagelink .grid-row {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .imagelink .grid-row {
    display: block;
  }
}
.imagelink .grid-row .col {
  padding: 0;
  float: left !important;
}
.imagelink .text {
  background-color: #2a3746;
  color: #fff;
  padding: 110px !important;
}
@media only screen and (max-width: 1024px) {
  .imagelink .text {
    padding: 90px !important;
  }
}
@media only screen and (max-width: 800px) {
  .imagelink .text {
    padding: 50px !important;
  }
}
@media only screen and (max-width: 700px) {
  .imagelink .text {
    padding: 80px 20px !important;
  }
}
.imagelink .text h2 {
  position: relative;
  margin-bottom: 100px;
}
.imagelink .text h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #0094ff;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.imagelink .text .button {
  background-color: #2a3746;
  color: #fff;
  font-weight: 400;
  margin-top: 15px;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  -webkit-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
  cursor: pointer;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-size: 17px;
}
@media only screen and (max-width: 800px) {
  .imagelink .text .button {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
  }
}
.imagelink .text .button:hover {
  background-color: #1593c9;
  border: 2px solid #1593c9;
}
.download-documents .download-documents-item {
  width: 100%;
  height: 30px;
  padding: 5px;
  background-color: #f0f0f0;
  margin: 10px;
}
.download-documents:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.download-images .download-images-thumbnail {
  float: left;
  width: 300px;
  height: 200px;
  padding: 5px;
  background-color: #f0f0f0;
  margin: 10px;
}
.download-images .download-images-thumbnail img {
  width: 100%;
}
.download-images:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.vimeo-video {
  min-height: 300px;
}
.vimeo-video iframe {
  min-height: 300px;
}
.youtube-video {
  min-height: 300px;
}
.youtube-video iframe {
  min-height: 300px;
}
.people-list {
  background: #f1f1f1;
}
.people-list .grid-row {
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 800px) {
  .people-list .grid-row .person {
    border-bottom: 20px solid #f1f1f1 !important;
  }
  .people-list .grid-row .person:nth-child(odd) {
    border-right: 10px solid #f1f1f1;
  }
  .people-list .grid-row .person:nth-child(even) {
    border-left: 10px solid #f1f1f1;
  }
}
@media only screen and (max-width: 700px) {
  .people-list .grid-row .person {
    border-bottom: 20px solid #f1f1f1 !important;
  }
  .people-list .grid-row .person:nth-child(odd) {
    border-right: 0;
  }
  .people-list .grid-row .person:nth-child(even) {
    border-left: 0;
  }
}
@media only screen and (min-width: 769px) {
  .people-list .grid-row .person {
    border-bottom: 80px solid #f1f1f1;
  }
  .people-list .grid-row .person:nth-child(3n + 1) {
    border-right: 2px solid #f1f1f1 !important;
  }
  .people-list .grid-row .person:nth-child(3n + 2) {
    border-right: 2px solid #f1f1f1 !important;
    border-left: 2px solid #f1f1f1 !important;
  }
  .people-list .grid-row .person:nth-child(3n + 3) {
    border-left: 2px solid #f1f1f1 !important;
  }
}
.people-list .person {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  padding: 0 !important;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .people-list .person {
    width: 50% !important;
    float: left !important;
  }
}
@media only screen and (max-width: 700px) {
  .people-list .person {
    width: 100% !important;
    float: none !important;
  }
}
.people-list .person .contact {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.people-list .person .contact .container {
  max-width: 346px;
  margin: 0 auto;
  padding: 40px 20px 70px;
}
.people-list .person .contact .container .phone {
  padding-bottom: 8px;
}
.people-list .person .contact .container a {
  color: #1593c9;
}
.people-list .person .contact .container:before {
  content: " ";
  position: absolute;
  top: 0;
  height: 3px;
  width: 70px;
  background-color: #1593c9;
}
.people-list .person .text {
  margin: 0 auto;
  max-width: 346px;
  padding: 70px 20px 200px 20px;
}
.people-list .person .text .name {
  font-size: 25px;
  font-family: "Lato Black";
  text-transform: uppercase;
}
.people-list .person .text .title {
  padding-top: 5px;
}
@media only screen and (max-width: 800px) {
  .people-list .person .text {
    padding: 40px 20px 160px 20px;
  }
}
.people-list .person .image {
  height: 175px;
  width: 100%;
  background-size: cover !important;
  background-position: left;
}
@media only screen and (max-width: 700px) {
}
.projectoverview {
  background: #f1f1f1;
  text-align: center;
  overflow-x: hidden;
}
@media only screen and (max-width: 800px) {
  .projectoverview .maxwidth1400 {
    padding: 45px 0;
  }
}
.projectoverview .positioner {
  position: relative;
  display: inline;
}
.projectoverview .projectsdropdownselected {
  display: none;
}
@media only screen and (max-width: 700px) {
  .projectoverview .projectsdropdownselected {
    display: inline-block;
    background: #1593c9;
    color: #fff;
    width: 225px;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
  }
}
.projectoverview .projectsdropdownselected img {
  position: absolute;
  right: 15px;
  top: 10px;
}
.projectoverview .projectgroupmenu {
  list-style: none;
  max-width: 1400px;
  margin: 75px auto;
  /*padding: 75px 0;*/
  padding: 0;
  display: inline-block;
  width: 100%;
  /*border: 1px solid @secondaryColor;*/
}
@media only screen and (max-width: 1024px) {
  .projectoverview .projectgroupmenu {
    padding: 50px 50px;
  }
}
@media screen and (max-width: 800px) {
  .projectoverview .projectgroupmenu {
    padding: 0 50px;
    margin: 25px 0;
  }
}
@media only screen and (max-width: 600px) {
  .projectoverview .projectgroupmenu {
    margin: 0;
    position: absolute;
    left: 0;
    top: 28px;
    z-index: 99;
    padding: 0;
    overflow: hidden;
    height: 0;
    -moz-transition: height ease 0.5s;
    -o-transition: height ease 0.5s;
    -webkit-transition: height ease 0.5s;
    transition: height ease 0.5s;
  }
  .projectoverview .projectgroupmenu.active {
    height: 105px;
  }
  .projectoverview .projectgroupmenu li {
    height: 35px !important;
    line-height: 35px !important;
    background-color: #1593c9 !important;
    color: #fff !important;
    border-top: 1px solid #fff !important;
  }
}
.projectoverview .projectgroupmenu li {
  list-style: none;
  float: left;
  width: 33.333333%;
  counter-increment: section;
  /*border: 1px solid @secondaryColor;*/
  text-align: center;
  color: #1593c9;
  -moz-transition: all ease 0.7s;
  -o-transition: all ease 0.7s;
  -webkit-transition: all ease 0.7s;
  transition: all ease 0.7s;
  cursor: pointer;
  height: 43px;
  line-height: 43px;
  text-transform: uppercase;
  border-right: 1px solid #1593c9;
  border: 1px solid #1593c9;
  /*&:nth-child(even) {
                border-right: 0 !important;
                border-left: 0 !important;
            }*/
}
@media only screen and (max-width: 600px) {
  .projectoverview .projectgroupmenu li {
    width: 100% !important;
  }
}
.projectoverview .projectgroupmenu li:hover,
.projectoverview .projectgroupmenu li.active {
  color: #fff;
  background-color: #1593c9;
}
.projectoverview .projectgroupmenu li:nth-child(2n+3) {
  border-left: 0;
}
.projectoverview .projectgroupmenu li:first-child {
  border-right: 0;
}
.projectlist {
  margin-left: -2px;
  margin-right: -2px;
}
@media screen and (max-width: 800px) {
  .projectlist {
    margin-left: -1px;
    margin-right: -1px;
  }
}
.projectlist .col {
  padding: 0;
  position: relative;
  border-top: 4px solid #f1f1f1;
  opacity: 0;
  width: 0 !important;
  -moz-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 800px) {
  .projectlist .col {
    width: 50% !important;
    float: left;
  }
}
@media only screen and (max-width: 700px) {
  .projectlist .col {
    width: 100% !important;
  }
}
.projectlist .col .button {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  color: #fff;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  padding: 10px 18px;
  text-transform: uppercase;
  font-size: 17px;
  font-family: "Lato Black";
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}
.projectlist .col:hover .button {
  background-color: #1593c9;
}
.projectlist .col:hover .dimmer {
  background-color: rgba(0, 0, 0, 0);
}
.projectlist .col.visible {
  opacity: 1;
  width: 25% !important;
}
@media only screen and (min-width: 769px) {
  .projectlist .col.visible {
    /*&:nth-child(4n-3) {
                    border-right: 3px solid #f1f1f1;
                }

                &:nth-child(4n-2) {
                    border-right: 2px solid #f1f1f1;
                    border-left: 1px solid #f1f1f1;
                }

                &:nth-child(4n-1) {
                    border-right: 1px solid #f1f1f1;
                    border-left: 2px solid #f1f1f1;
                }

                &:nth-child(4n) {
                    border-left: 3px solid #f1f1f1;
                }*/
    border-left: 2px solid #f1f1f1;
    border-right: 2px solid #f1f1f1;
  }
}
@media only screen and (max-width: 800px) {
  .projectlist .col.visible {
    /*&:nth-child(odd) {
                    border-right: 2px solid #f1f1f1;
                }

                &:nth-child(even) {
                    border-left: 2px solid #f1f1f1;
                }*/
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    width: 100% !important;
  }
}
@media only screen and (max-width: 700px) {
  .projectlist .col.visible {
    /*&:nth-child(odd) {
                    border-right: 0;
                }

                &:nth-child(even) {
                    border-left: 0;
                }*/
    border: 0;
  }
}
.projectlist img {
  width: 100%;
  display: block;
}
.projectlist a {
  width: 100%;
  height: 100%;
}
.projectlist .dimmer {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  -moz-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}
.projectdetails img {
  max-width: 100%;
}
.projectdetails .lineUnder {
  position: relative;
  margin-bottom: 70px;
}
.projectdetails .lineUnder::after {
  content: " ";
  height: 3px;
  width: 80%;
  background: #1593c9;
  position: absolute;
  bottom: -27px;
  left: 0;
}
@media only screen and (max-width: 800px) {
  .projectdetails .text .col {
    padding: 0;
  }
}
.projectdetails .projectcontent {
  background-color: #f1f1f1;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .projectdetails .projectcontent {
    padding-top: 185px;
    margin-top: 130px;
  }
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .outerPad {
    padding: 0;
  }
}
.projectdetails .projectcontent .images {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .images {
    position: relative;
  }
}
.projectdetails .projectcontent .images .col {
  padding: 0;
  float: right;
}
.projectdetails .projectcontent .images .col img {
  width: 100%;
  display: block;
  float: left;
}
.projectdetails .projectcontent .images .col:first-child {
  position: absolute;
  left: 0;
  bottom: 0;
  float: none;
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .images .col:first-child {
    position: relative;
    font-size: 0;
    line-height: 0;
  }
}
.projectdetails .projectcontent .images .col:first-child img {
  width: 50%;
  /*display: inline-block;*/
}
.projectdetails .projectcontent .textboxes {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 99;
}
.projectdetails .projectcontent .textboxes .maxwidth1400 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .textboxes .maxwidth1400 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .textboxes {
    position: relative;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .projectdetails .projectcontent .textboxes {
    position: relative;
    margin-top: 20px;
  }
}
.projectdetails .projectcontent .textboxes .leaf {
  padding: 110px;
}
@media only screen and (max-width: 1024px) {
  .projectdetails .projectcontent .textboxes .leaf {
    padding: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .textboxes .leaf {
    padding: 50px 50px;
  }
}
@media only screen and (max-width: 600px) {
  .projectdetails .projectcontent .textboxes .leaf {
    padding: 50px 20px;
  }
}
.projectdetails .projectcontent .textboxes .dark {
  background-color: #2a3746;
  color: #fff;
  position: relative;
  top: -310px;
  box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .textboxes .dark {
    top: 0;
    box-shadow: none;
  }
}
.projectdetails .projectcontent .textboxes .dark .col {
  padding: 0 !important;
}
.projectdetails .projectcontent .textboxes .dark h3,
.projectdetails .projectcontent .textboxes .dark h2 {
  color: #fff;
  font-family: "Lato Black";
  font-size: 25px !important;
  position: relative;
  margin-bottom: 50px;
}
.projectdetails .projectcontent .textboxes .dark h3:after,
.projectdetails .projectcontent .textboxes .dark h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #1593c9;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.projectdetails .projectcontent .textboxes .dark h2 {
  font-size: 50px;
}
.projectdetails .projectcontent .textboxes .light {
  background-color: #fff;
  position: relative;
  top: -230px;
  overflow: hidden;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .textboxes .light {
    top: 0;
    box-shadow: none;
  }
  .projectdetails .projectcontent .textboxes .light img {
    margin: 0 auto;
    display: block;
  }
}
.projectdetails .projectcontent .factcolumns .col.w50 {
  padding-left: 6% !important;
  padding-right: 0 !important;
}
.projectdetails .projectcontent .factcolumns .col.w50:first-child {
  padding-right: 6% !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 800px) {
  .projectdetails .projectcontent .factcolumns .col.w50 {
    width: 50% !important;
    float: left !important;
  }
}
@media only screen and (max-width: 700) {
  .projectdetails .projectcontent .factcolumns .col.w50 {
    width: 100% !important;
    float: none !important;
  }
}
.projectdetails .projectcontent .factcolumns .col.w50 ul {
  /*padding-left: 0;*/
}
.projectdetails .projectcontent .factcolumns .col.w50 ul li {
  line-height: 1.2em;
  margin-bottom: 0.75em;
}
.projectdetails .projectcontent .factcolumns .col.w50 h1,
.projectdetails .projectcontent .factcolumns .col.w50 h2,
.projectdetails .projectcontent .factcolumns .col.w50 h3,
.projectdetails .projectcontent .factcolumns .col.w50 h4,
.projectdetails .projectcontent .factcolumns .col.w50 h5,
.projectdetails .projectcontent .factcolumns .col.w50 h6 {
  line-height: 1.6em;
  margin-bottom: 1em;
  font-size: 1em !important;
  font-weight: normal;
  font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-transform: none;
}
.projectdetails .projectcontent .factcolumns .col.w50 h1:after,
.projectdetails .projectcontent .factcolumns .col.w50 h2:after,
.projectdetails .projectcontent .factcolumns .col.w50 h3:after,
.projectdetails .projectcontent .factcolumns .col.w50 h4:after,
.projectdetails .projectcontent .factcolumns .col.w50 h5:after,
.projectdetails .projectcontent .factcolumns .col.w50 h6:after {
  display: none;
}
.projectdetails .projectcontent .factcolumns .col.w50 strong {
  font-family: 'Lato Black', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.news-list .news-item {
  float: left;
  width: 33%;
  height: 300px;
  border: 1px solid #666;
  padding: 1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1024px) {
  .news-list .news-item {
    height: 200px;
    width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .news-list .news-item {
    height: 100px;
    float: none;
    width: 100%;
  }
}
.news-list:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.social-media-sharer {
  background-color: #f0f0f0;
  padding: 0.5em;
}
.social-media-sharer ul li {
  list-style-type: none;
  margin: 0;
  margin-right: 1em;
  float: left;
}
.social-media-sharer ul li a {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  padding-left: 1.7em;
}
@media only screen and (max-width: 800px) {
  .social-media-sharer ul li a {
    padding-left: 0;
    display: block;
    width: 30px;
    height: 30px;
  }
  .social-media-sharer ul li a span {
    display: none;
  }
}
.social-media-sharer ul li.sms-icon-facebook a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjkwcHgiIGhlaWdodD0iOTBweCIgdmlld0JveD0iMCAwIDkwIDkwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA5MCA5MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggaWQ9IkZhY2Vib29rX194MjhfYWx0X3gyOV8iIGQ9Ik05MCwxNS4wMDFDOTAsNy4xMTksODIuODg0LDAsNzUsMEgxNUM3LjExNiwwLDAsNy4xMTksMCwxNS4wMDF2NTkuOTk4DQoJCUMwLDgyLjg4MSw3LjExNiw5MCwxNS4wMDEsOTBINDVWNTZIMzRWNDFoMTF2LTUuODQ0QzQ1LDI1LjA3Nyw1Mi41NjgsMTYsNjEuODc1LDE2SDc0djE1SDYxLjg3NUM2MC41NDgsMzEsNTksMzIuNjExLDU5LDM1LjAyNFY0MQ0KCQloMTV2MTVINTl2MzRoMTZjNy44ODQsMCwxNS03LjExOSwxNS0xNS4wMDFWMTUuMDAxeiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=') /*/Assets/social-sharing-icons/facebook29.svg*/;
}
.social-media-sharer ul li.sms-icon-twitter a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjUxMHB4IiBoZWlnaHQ9IjUxMHB4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEwIDUxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9InBvc3QtdHdpdHRlciI+DQoJCTxwYXRoIGQ9Ik00NTksMEg1MUMyMi45NSwwLDAsMjIuOTUsMCw1MXY0MDhjMCwyOC4wNSwyMi45NSw1MSw1MSw1MWg0MDhjMjguMDUsMCw1MS0yMi45NSw1MS01MVY1MUM1MTAsMjIuOTUsNDg3LjA1LDAsNDU5LDB6DQoJCQkgTTQwMC4zNSwxODYuMTVjLTIuNTUsMTE3LjMtNzYuNSwxOTguOS0xODguNywyMDRDMTY1Ljc1LDM5Mi43LDEzMi42LDM3Ny40LDEwMiwzNTkuNTVjMzMuMTUsNS4xMDEsNzYuNS03LjY0OSw5OS40NS0yOC4wNQ0KCQkJYy0zMy4xNS0yLjU1LTUzLjU1LTIwLjQtNjMuNzUtNDguNDVjMTAuMiwyLjU1LDIwLjQsMCwyOC4wNSwwYy0zMC42LTEwLjItNTEtMjguMDUtNTMuNTUtNjguODVjNy42NSw1LjEsMTcuODUsNy42NSwyOC4wNSw3LjY1DQoJCQljLTIyLjk1LTEyLjc1LTM4LjI1LTYxLjItMjAuNC05MS44YzMzLjE1LDM1LjcsNzMuOTUsNjYuMywxNDAuMjUsNzEuNGMtMTcuODUtNzEuNCw3OS4wNTEtMTA5LjY1LDExNy4zMDEtNjEuMg0KCQkJYzE3Ljg1LTIuNTUsMzAuNi0xMC4yLDQzLjM1LTE1LjNjLTUuMSwxNy44NS0xNS4zLDI4LjA1LTI4LjA1LDM4LjI1YzEyLjc1LTIuNTUsMjUuNS01LjEsMzUuNy0xMC4yDQoJCQlDNDI1Ljg1LDE2NS43NSw0MTMuMSwxNzUuOTUsNDAwLjM1LDE4Ni4xNXoiLz4NCgk8L2c+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==') /*/Assets/social-sharing-icons/twitter47.svg*/;
}
.social-media-sharer ul li.sms-icon-googleplus a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjUxMHB4IiBoZWlnaHQ9IjUxMHB4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEwIDUxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9InBvc3QtZ3BsdXMiPg0KCQk8cGF0aCBkPSJNMjM0LjYsMTc1Ljk1YzAtMjUuNS0xNS4zLTc2LjUtNTMuNTUtNzYuNWMtMTUuMywwLTMzLjE1LDEwLjItMzMuMTUsNDMuMzVjMCwzMC42LDE1LjMsNzMuOTUsNTEsNzMuOTUNCgkJCUMxOTguOSwyMTYuNzUsMjM0LjYsMjE0LjIsMjM0LjYsMTc1Ljk1eiBNMjE5LjMsMzAwLjljLTIuNTUsMC01LjEsMC03LjY1LDBsMCwwYy03LjY1LDAtMzAuNiwyLjU1LTQ1LjksNy42NDkNCgkJCUMxNDcuOSwzMTMuNjUsMTI3LjUsMzI2LjQsMTI3LjUsMzUxLjljMCwyOC4wNSwyNS41LDU2LjEsNzYuNSw1Ni4xYzM4LjI1LDAsNjEuMi0yNS41LDYxLjItNTENCgkJCUMyNjUuMiwzMzkuMTUsMjUyLjQ1LDMyNi40LDIxOS4zLDMwMC45eiBNNDU5LDBINTFDMjIuOTUsMCwwLDIyLjk1LDAsNTF2NDA4YzAsMjguMDUsMjIuOTUsNTEsNTEsNTFoNDA4YzI4LjA1LDAsNTEtMjIuOTUsNTEtNTENCgkJCVY1MUM1MTAsMjIuOTUsNDg3LjA1LDAsNDU5LDB6IE0xODEuMDUsNDM4LjZjLTcxLjQsMC0xMDQuNTUtNDAuOC0xMDQuNTUtNzYuNWMwLTEyLjc1LDIuNTUtNDAuOCwzOC4yNS02MS4xOTkNCgkJCWMyMC40LTEyLjc1LDQ1LjktMjAuNCw3OS4wNS0yMi45NWMtNS4xLTUuMTAxLTcuNjUtMTIuNzUtNy42NS0yNS41YzAtNS4xLDAtNy42NSwyLjU1LTEyLjc1aC0xMC4yYy01MSwwLTgxLjYtMzguMjUtODEuNi03Ni41DQoJCQljMC00My4zNSwzMy4xNS05MS44LDEwNC41NS05MS44aDEwNy4xbC03LjY0OSw3LjY1TDI4My4wNSw5Ni45bC0yLjU1LDIuNTVoLTE3Ljg1YzEwLjE5OSwxMC4yLDIyLjk0OSwyOC4wNSwyMi45NDksNTYuMQ0KCQkJYzAsMzUuNy0xNy44NSw1My41NS00MC44LDY4Ljg1Yy01LjEsMi41NS0xMC4yLDEwLjItMTAuMiwxNy44NXM1LjEsMTIuNzUsMTAuMiwxNS4zYzIuNTUsMi41NSw3LjY1LDUuMTAxLDEyLjc1LDcuNjUNCgkJCWMyMC40LDE1LjMsNDguNDUsMzMuMTQ5LDQ4LjQ1LDczLjk1QzMwNiwzODUuMDUsMjcyLjg1LDQzOC42LDE4MS4wNSw0MzguNnogTTQzMy41LDI1NWgtNTF2NTFIMzU3di01MWgtNTF2LTI1LjVoNTF2LTUxaDI1LjV2NTENCgkJCWg1MVYyNTV6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=') /*/Assets/social-sharing-icons/google120.svg*/;
}
.social-media-sharer ul li.sms-icon-linkedin a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjUxMHB4IiBoZWlnaHQ9IjUxMHB4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEwIDUxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9InBvc3QtbGlua2VkaW4iPg0KCQk8cGF0aCBkPSJNNDU5LDBINTFDMjIuOTUsMCwwLDIyLjk1LDAsNTF2NDA4YzAsMjguMDUsMjIuOTUsNTEsNTEsNTFoNDA4YzI4LjA1LDAsNTEtMjIuOTUsNTEtNTFWNTFDNTEwLDIyLjk1LDQ4Ny4wNSwwLDQ1OSwweg0KCQkJIE0xNTMsNDMzLjVINzYuNVYyMDRIMTUzVjQzMy41eiBNMTE0Ljc1LDE2MC42NWMtMjUuNSwwLTQ1LjktMjAuNC00NS45LTQ1LjlzMjAuNC00NS45LDQ1LjktNDUuOXM0NS45LDIwLjQsNDUuOSw0NS45DQoJCQlTMTQwLjI1LDE2MC42NSwxMTQuNzUsMTYwLjY1eiBNNDMzLjUsNDMzLjVIMzU3VjI5OC4zNWMwLTIwLjM5OS0xNy44NS0zOC4yNS0zOC4yNS0zOC4yNXMtMzguMjUsMTcuODUxLTM4LjI1LDM4LjI1VjQzMy41SDIwNA0KCQkJVjIwNGg3Ni41djMwLjZjMTIuNzUtMjAuNCw0MC44LTM1LjcsNjMuNzUtMzUuN2M0OC40NSwwLDg5LjI1LDQwLjgsODkuMjUsODkuMjVWNDMzLjV6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=') /*/Assets/social-sharing-icons/linkedin24.svg*/;
}
.social-media-sharer ul li.sms-icon-pinterest a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjUxMHB4IiBoZWlnaHQ9IjUxMHB4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEwIDUxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9InBvc3QtcGludGVyZXN0Ij4NCgkJPHBhdGggZD0iTTQ1OSwwSDUxQzIyLjk1LDAsMCwyMi45NSwwLDUxdjQwOGMwLDI4LjA1LDIyLjk1LDUxLDUxLDUxaDQwOGMyOC4wNSwwLDUxLTIyLjk1LDUxLTUxVjUxQzUxMCwyMi45NSw0ODcuMDUsMCw0NTksMHoNCgkJCSBNMjgwLjUsMzYyLjFjLTIwLjQsMC00MC44LTcuNjQ5LTUzLjU1LTIyLjk0OWwtMjUuNSw4MS42bC0yLjU1LDUuMWwwLDBjLTUuMSw3LjY1LTEyLjc1LDEyLjc1LTIyLjk1LDEyLjc1DQoJCQljLTE1LjMsMC0yOC4wNS0xMi43NS0yOC4wNS0yOC4wNWMwLTIuNTUsMC0yLjU1LDAtMi41NWwwLDBsMi41NS01LjFsNDUuOS0xNDIuODAxYzAsMC01LjEtMTUuMy01LjEtMzguMjUNCgkJCWMwLTQzLjM1LDIyLjk1LTU2LjEsNDMuMzUtNTYuMWMxNy44NSwwLDM1LjcsNy42NSwzNS43LDMzLjE1YzAsMzMuMTUtMjIuOTUsNTEtMjIuOTUsNzYuNWMwLDE3Ljg1LDE1LjMsMzMuMTQ5LDMzLjE1LDMzLjE0OQ0KCQkJYzU4LjY1LDAsODEuNi00NS44OTksODEuNi04Ni43YzAtNTYuMS00OC40NDktMTAyLTEwNy4xLTEwMmMtNTguNjUsMC0xMDcuMSw0NS45LTEwNy4xLDEwMmMwLDE3Ljg1LDUuMSwzMy4xNSwxMi43NSw0OC40NQ0KCQkJYzIuNTUsNS4xMDEsMi41NSw3LjY1LDIuNTUsMTIuNzVjMCwxNS4zLTEwLjIsMjUuNS0yNS41LDI1LjVjLTEwLjIsMC0xNy44NS01LjEtMjIuOTUtMTIuNzVjLTEyLjc1LTIyLjk1LTIwLjQtNDguNDUtMjAuNC03Ni41DQoJCQljMC04NC4xNSw3MS40LTE1MywxNTguMS0xNTNzMTU4LjEsNjguODUsMTU4LjEsMTUzQzQxMy4xLDI5MC43LDM3Mi4zLDM2Mi4xLDI4MC41LDM2Mi4xeiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K') /*/Assets/social-sharing-icons/pinterest33.svg*/;
}
.social-media-sharer ul li.sms-icon-mail a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjQ4NS4yMTFweCIgaGVpZ2h0PSI0ODUuMjExcHgiIHZpZXdCb3g9IjAgMCA0ODUuMjExIDQ4NS4yMTEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4NS4yMTEgNDg1LjIxMTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTQ4NS4yMTEsMzYzLjkwNmMwLDEwLjYzNy0yLjk5MiwyMC40OTgtNy43ODUsMjkuMTc0TDMyNC4yMjUsMjIxLjY3bDE1MS41NC0xMzIuNTg0DQoJCWM1Ljg5NSw5LjM1NSw5LjQ0NiwyMC4zNDQsOS40NDYsMzIuMjE5VjM2My45MDZ6IE0yNDIuNjA2LDI1Mi43OTNsMjEwLjg2My0xODQuNWMtOC42NTMtNC43MzctMTguMzk3LTcuNjQyLTI4LjkwOC03LjY0Mkg2MC42NTENCgkJYy0xMC41MjQsMC0yMC4yNzEsMi45MDUtMjguODg5LDcuNjQyTDI0Mi42MDYsMjUyLjc5M3ogTTMwMS4zOTMsMjQxLjYzMWwtNDguODA5LDQyLjczNGMtMi44NTUsMi40ODctNi40MSwzLjcyOS05Ljk3OCwzLjcyOQ0KCQljLTMuNTcsMC03LjEyNS0xLjI0Mi05Ljk4LTMuNzI5bC00OC44Mi00Mi43MzZMMjguNjY3LDQxNS4yM2M5LjI5OSw1LjgzNCwyMC4xOTcsOS4zMjksMzEuOTgzLDkuMzI5aDM2My45MTENCgkJYzExLjc4NCwwLDIyLjY4Ny0zLjQ5NSwzMS45ODMtOS4zMjlMMzAxLjM5MywyNDEuNjMxeiBNOS40NDgsODkuMDg1QzMuNTU0LDk4LjQ0LDAsMTA5LjQyOSwwLDEyMS4zMDV2MjQyLjYwMg0KCQljMCwxMC42MzcsMi45NzgsMjAuNDk4LDcuNzg5LDI5LjE3NGwxNTMuMTgzLTE3MS40NEw5LjQ0OCw4OS4wODV6Ii8+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==') /*/Assets/social-sharing-icons/mail59.svg*/;
}
.social-media-sharer ul:after {
  content: ' ';
  display: block;
  float: none;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.rss-feed {
  border: solid 2px #aaa;
  padding: 1em;
  margin-bottom: 1em;
}
.rss-feed .rss-feed-item {
  border: 1px solid #ccc;
  margin-bottom: 0.5em;
  padding: 0.5em;
}
.rss-feed .rss-feed-item a {
  display: block;
  margin-bottom: 0.1em;
}
.rss-feed .rss-feed-item em {
  display: block;
  margin-bottom: 0.1em;
}
.rss-feed .rss-feed-item img {
  max-width: 100%;
  max-height: 200px;
}
.cookie-usage {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5em 1em;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  z-index: 10000;
}
@media only screen and (max-width: 1024px) {
  .cookie-usage {
    padding: 1.5em;
    text-align: center;
  }
}
.cookie-usage .g-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.cookie-usage a {
  font-weight: inherit;
  text-decoration: underline;
  color: inherit;
}
.cookie-usage a.cookie-usage-dismiss-button {
  float: right;
  margin-left: 2em;
  /*position: absolute;
        right: 0;
        top: 0;*/
  display: inline-block;
  border: 1px solid #fff;
  padding: 1em 2em;
  color: #fff;
  font-weight: 100;
  font-style: italic;
  text-decoration: none;
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .cookie-usage a.cookie-usage-dismiss-button {
    float: none;
    margin-left: 0;
    text-align: center;
    margin-top: 0.5em;
  }
}
.cookie-usage .cookie-usage-info {
  float: left;
  max-width: 65%;
}
.cookie-usage .cookie-usage-info p {
  line-height: 1.2em;
  margin-bottom: 0.75em;
}
.cookie-usage .cookie-usage-info .sub {
  font-size: 11px;
}
.cookie-usage .cookie-usage-info a {
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .cookie-usage .cookie-usage-info {
    float: none;
    max-width: none;
  }
}
.slider {
  position: relative;
}
.slider .slider-sizer {
  z-index: 1;
  max-width: 100%;
  visibility: hidden;
  opacity: 0;
}
.slider .slider-view {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.slider .slider-view .slider-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 20000px;
  z-index: 2;
}
.slider .slider-view .slider-items.tweened {
  -moz-transition: left cubic-bezier(0.8, 0, 0.2, 1) 1s;
  -o-transition: left cubic-bezier(0.8, 0, 0.2, 1) 1s;
  -webkit-transition: left cubic-bezier(0.8, 0, 0.2, 1) 1s;
  transition: left cubic-bezier(0.8, 0, 0.2, 1) 1s;
}
.slider .slider-view .slider-items .slider-item {
  display: block;
  width: auto;
  height: 100%;
  float: left;
  background-color: rgba(100, 150, 200, 0.3);
  position: relative;
}
.slider .slider-view .slider-items .slider-item img {
  width: auto;
  height: 100%;
  display: block;
}
.slider .slider-view .slider-items .slider-item div {
  position: absolute;
  left: 0;
  top: 0;
}
.slider .slider-bullets {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 1px;
  margin-top: 10px;
  z-index: 4;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider .slider-bullets .slider-bullet {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  float: left;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 10px;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}
.slider .slider-bullets .slider-bullet.active {
  background-color: #0f0;
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.slider .slider-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #0f0;
  cursor: pointer;
  z-index: 3;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}
@media only screen and (max-width: 800px) {
  .slider .slider-arrow {
    display: none;
    top: 0;
    bottom: 0;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 50px;
    height: auto;
  }
}
.slider .slider-arrow.inactive {
  opacity: 0.3;
  cursor: default;
}
.slider .slider-arrow.slider-arrow-left {
  left: 0;
}
.slider .slider-arrow.slider-arrow-right {
  right: 0;
}
.slider.show-bullets {
  margin-bottom: 50px;
}
.search {
  float: right;
  padding-top: 15px;
  padding-right: 40px;
  position: relative;
  display: none;
  /* TIL FUNKTIONEN VIRKER! */
}
@media only screen and (max-width: 800px) {
  .search {
    padding: 30px 0 0 0;
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  .search:after {
    content: " ";
    position: absolute;
    height: 1px;
    background: #555f6b;
    width: 80%;
    top: 100%;
    left: 10%;
    z-index: 99999999;
  }
}
.search img {
  float: left;
  height: 40px;
}
@media only screen and (max-width: 800px) {
  .search img {
    float: none;
    display: inline-block;
    vertical-align: top;
    height: 80px;
  }
}
@media only screen and (max-width: 800px) {
  .search img {
    height: 40px;
  }
}
.search input {
  margin-top: 10px;
  float: left;
  width: 0;
  padding: 3px 0;
  border: 0;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 800px) {
  .search input {
    float: none;
    height: 40px;
    margin: 0;
    font-size: 20px;
    color: #fff;
    background-color: #2a3746;
  }
}
@media only screen and (max-width: 700px) {
  .search input {
    float: none;
    height: 40px;
    margin: 0;
    color: #fff;
    font-size: 17px;
    background-color: #2a3746;
  }
}
.search input.active {
  padding: 3px 10px;
  width: 150px;
}
.search input:focus {
  outline: none !important;
  border: 0;
}
.tabmenu {
  float: left;
}
@media only screen and (max-width: 800px) {
  .tabmenu {
    float: none;
  }
}
.tabmenu.language {
  padding-left: 0;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .tabmenu.language {
    float: none;
    width: 100px !important;
    margin: 0 auto;
  }
}
.tabmenu.language li {
  float: none;
}
@media only screen and (max-width: 800px) {
  .tabmenu.language li {
    width: auto !important;
    float: left !important;
    height: auto !important;
  }
  .tabmenu.language li a {
    padding-top: 20px;
    display: block;
    text-align: center;
    width: 50px;
    /* fixed width */
    text-decoration: none;
    height: auto;
    line-height: 1em !important;
  }
  .tabmenu.language li a span {
    line-height: 20px !important;
  }
  .tabmenu.language li a span img {
    display: none;
  }
}
.tabmenu.language li.dk a span {
  border-right: none;
}
@media only screen and (max-width: 800px) {
  .tabmenu.language li.dk a span {
    color: #1593c9;
  }
}
.tabmenu.language li.uk {
  position: absolute;
  height: 0;
  background-color: #2a3746;
  overflow: hidden;
  top: 53px;
}
@media only screen and (max-width: 800px) {
  .tabmenu.language li.uk {
    position: relative;
    height: auto;
    top: auto;
  }
}
.tabmenu.language li.uk.open {
  height: 30px;
}
.tabmenu.language li.uk a {
  line-height: 0;
  height: 100%;
}
.tabmenu.language li.uk a span {
  line-height: 30px;
}
.tabmenu.language li:last-child span {
  border-right: 0;
}
.backgroundtop {
  background: #2a3746;
  position: fixed;
  width: 100%;
  z-index: 999999;
}
.backgroundtop.light {
  background: #fff;
}
.backgroundtop.light .topbar {
  background: #fff;
}
@media only screen and (max-width: 800px) {
  .backgroundtop.light .topbar .logofloater .logo {
    background: transparent;
  }
}
.backgroundtop.light .topbar .closebutnocigar {
  background: #1593c9;
}
.topbar {
  background: #2a3746;
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 99999;
  top: 0;
  padding: 0 10px 0 20px;
}
@media only screen and (max-width: 800px) {
  .topbar {
    height: 60px;
    position: fixed;
  }
}
.topbar .w50 {
  width: 50%;
  float: left;
}
.topbar .w50:last-child {
  background: #495a6d;
}
.topbar .logofloater {
  float: left;
  height: 70px;
  z-index: 999;
  position: relative;
  /*padding-left: 50px;*/
}
@media only screen and (max-width: 1024px) {
  .topbar .logofloater {
    /*padding-left: 30px;*/
  }
}
@media only screen and (max-width: 800px) {
  .topbar .logofloater {
    height: 60px;
    /*padding-left: 20px;*/
  }
}
.topbar .logofloater .logo {
  display: table-cell;
  vertical-align: middle;
  height: 70px;
}
.topbar .logofloater .logo img {
  vertical-align: middle;
  width: 209px;
}
@media only screen and (max-width: 1024px) {
  .topbar .logofloater .logo img {
    width: 180px;
  }
}
@media only screen and (max-width: 800px) {
  .topbar .logofloater .logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 800px) {
  .topbar .logofloater .logo {
    height: 60px;
    width: 80%;
    background: transparent;
  }
}
.topbar .topmenu {
  float: right;
}
@media only screen and (max-width: 800px) {
  .topbar .topmenu {
    display: inline;
    z-index: 998;
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    background: #2a3746;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    height: 0;
  }
  .topbar .topmenu.is-active {
    height: 100vh;
  }
  .topbar .topmenu .helper {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .topbar .topmenu ul {
    width: 100vw;
  }
  .topbar .topmenu ul li {
    width: 100vw;
    text-align: center;
    float: none;
  }
  .topbar .topmenu ul li span {
    text-transform: uppercase;
    font-size: 50px;
    font-family: "Lato";
    font-weight: normal;
  }
}
@media only screen and (max-width: 800px) {
  .topbar .topmenu ul li span {
    font-size: 28px !important;
  }
}
@media only screen and (max-width: 700px) {
  .topbar .topmenu ul li span {
    font-size: 17px !important;
  }
}
.c-hamburger {
  display: none;
}
@media only screen and (max-width: 800px) {
  .c-hamburger {
    background: #2a3746;
    display: block;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    right: 0;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    font-size: 0;
    text-indent: -9999px;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 30px;
  left: 15px;
  right: 15px;
  height: 3px;
  background: white;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
}
.c-hamburger span::before {
  top: -8px;
}
.c-hamburger span::after {
  bottom: -8px;
}
.c-hamburger--htx {
  background-color: #2a3746;
}
.c-hamburger--htx span {
  -moz-transition: background 0s 0.3s;
  -o-transition: background 0s 0.3s;
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
  -moz-transition-property: top, transform;
  -o-transition-property: top, transform;
  -webkit-transition-property: top, transform;
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  -moz-transition-property: bottom, transform;
  -o-transition-property: bottom, transform;
  -webkit-transition-property: bottom, transform;
  transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #2a3746;
}
.c-hamburger--htx.is-active span {
  background: none;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
.closetop {
  height: 60px;
  width: 60px;
  background-color: #1593c9;
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 9999;
}
.frontbackground {
  color: #fff;
  height: 100vh;
  padding-top: 70px;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-position: center !important;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 800px) {
  .frontbackground {
    height: auto;
    padding-top: 60px;
  }
}
.frontbackground .w50 {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  padding-bottom: 40px;
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 {
    width: 100%;
    padding-bottom: 0;
  }
}
.frontbackground .w50.h50 {
  height: 50%;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  padding-bottom: 0;
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50.h50 {
    height: auto;
  }
}
.frontbackground .w50.h50:hover {
  background: rgba(0, 0, 0, 0.5);
}
.frontbackground .w50.h50:hover span {
  color: #1593c9;
}
.frontbackground .w50.h50:hover span:after {
  background: #1593c9;
  width: 100%;
}
.frontbackground .w50 .bigbox {
  position: absolute;
  bottom: 160px;
  left: 100px;
}
@media only screen and (max-width: 1024px) {
  .frontbackground .w50 .bigbox {
    bottom: 90px;
    left: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .frontbackground .w50 .bigbox {
    position: absolute;
    text-align: center;
    bottom: 50%;
    width: 100%;
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox {
    position: absolute;
    text-align: center;
    bottom: 33%;
    width: 100%;
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox {
    bottom: 50%;
  }
}
.frontbackground .w50 .bigbox h1 {
  display: inline-block;
  padding-top: 10px;
  border-top: 2px solid #1593c9;
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox h1 {
    border: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .frontbackground .w50 .bigbox h1 {
    font-size: 38px !important;
    line-height: 40px !important;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox h1 {
    font-size: 45px !important;
    line-height: 47px !important;
  }
}
@media only screen and (max-width: 700px) {
  .frontbackground .w50 .bigbox h1 {
    font-size: 30px !important;
    line-height: 32px !important;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox .subheader {
    display: none;
  }
}
.frontbackground .w50 .bigbox .headerholder {
  width: 400px;
}
@media only screen and (max-width: 1024px) {
  .frontbackground .w50 .bigbox .headerholder {
    width: 300px;
    width: auto;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .w50 .bigbox .headerholder {
    padding: 0 25px;
  }
}
.frontbackground .menuboxes {
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  vertical-align: middle;
  text-align: center;
  z-index: 1000;
}
@media only screen and (max-width: 800px) {
  .frontbackground .menuboxes {
    padding-bottom: 107px;
  }
}
.frontbackground .menuboxes:before {
  content: ' ';
  position: absolute;
  height: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1px;
  z-index: 9;
}
@media only screen and (max-width: 800px) {
  .frontbackground .menuboxes:before {
    display: none;
  }
}
.frontbackground .menuboxes img {
  display: none;
}
@media only screen and (max-width: 800px) {
  .frontbackground .menuboxes img {
    display: block;
    width: 100%;
  }
}
.frontbackground .menuboxes .w50:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.frontbackground .menuboxes .w50:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.frontbackground .menuboxes .w50:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
@media only screen and (max-width: 800px) {
  .frontbackground .menuboxes .w50 {
    border: 0 !important;
    border-bottom: 3px solid #000 !important;
  }
  .frontbackground .menuboxes .w50:before {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(0, 0, 0, 0.3);
  }
}
.frontbackground .menuboxes span {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
@media only screen and (max-width: 1024px) {
  .frontbackground .menuboxes span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .menuboxes span {
    font-size: 25px;
    position: absolute;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.frontbackground .menuboxes span:after {
  content: " ";
  height: 3px;
  width: 30px;
  background: #fff;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  top: 130%;
}
.frontbackground .menuboxes:hover {
  background: rgba(0, 0, 0, 0.5);
}
.frontbackground .menuboxes .bigbox {
  display: none;
}
.frontbackground .primary {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  /*border-right: 1px solid rgba(255, 255, 255, 0.7);*/
  z-index: 9;
  -moz-transition: z-index ease-in 1.7s;
  -o-transition: z-index ease-in 1.7s;
  -webkit-transition: z-index ease-in 1.7s;
  transition: z-index ease-in 1.7s;
}
@media only screen and (max-width: 1024px) {
  .frontbackground .primary {
    z-index: 9;
  }
}
@media only screen and (max-width: 800px) {
  .frontbackground .primary {
    position: relative;
    border-right: 0;
    text-align: center;
  }
  .frontbackground .primary:before {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(0, 0, 0, 0.3);
  }
}
.frontbackground .primary.inactive {
  z-index: -9;
}
.frontbackground .primary img {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .frontbackground .primary img {
    display: block;
    border-bottom: 3px solid #000;
  }
}
.frontbackground .primary .button {
  background: #1593c9;
  color: #fff;
  padding: 5px 35px;
}
@media only screen and (max-width: 1024px) {
  .frontbackground .primary .button {
    display: inline-block;
    width: auto;
    padding: 5px 25px;
  }
}
.frontbackground .primary .blur-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1024px) {
  .frontbackground .primary .blur-filter {
    display: none;
  }
}
.frontbackground .primary .iframe-wrapper {
  position: absolute;
  /*left: -10%;
            top: -10%;*/
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -999;
  /*height: 120%;
            width: 120vw;*/
  visibility: visible;
  background-color: black;
}
.frontbackground .primary .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.frontbackground .secondary {
  -moz-transition: opacity ease 1.7s;
  -o-transition: opacity ease 1.7s;
  -webkit-transition: opacity ease 1.7s;
  transition: opacity ease 1.7s;
  background-image: url(/assets/blank.png);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  /*border-right: 1px solid rgba(255, 255, 255, 0.7);*/
  background-position: center !important;
  background-size: cover !important;
  z-index: 8;
}
.frontbackground .secondary.active {
  opacity: 1;
  background-position: center !important;
  background-size: cover !important;
  z-index: 2000;
  overflow: hidden;
}
.frontbackground .secondary:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 800px) {
  .frontbackground .secondary:before {
    display: none;
  }
}
.frontbackground .bottomright {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 4px solid #f7941d;
  background: #272f38;
  height: 50px;
  padding-left: 20px;
  z-index: 9999;
}
@media only screen and (max-width: 800px) {
  .frontbackground .bottomright {
    display: none;
  }
}
.frontbackground .bottomright img {
  display: inline;
  margin-bottom: -1px;
  padding-left: 10px;
  transform: rotate(-90deg);
}
.frontbackground .bottomright a {
  color: #fff;
  width: 100%;
  display: block;
  height: 100%;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-top: 13px;
  text-align: right;
}
@media only screen and (max-width: 800px) {
  .frontbackground .bottomright a {
    padding-top: 43px;
  }
}
.frontbackground .bottomright a:hover {
  color: #1593c9;
}
.frontbackground .bottomleft {
  /*position: absolute;
        bottom: 0;
        width: 100%;
        border-top: 4px solid #f7941d;
        background: #272f38;
        height: 40px;
        padding-left: 20px;
        z-index: 9999;*/
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 4px solid #1593c9;
  background: #2e3742;
  height: 50px;
  z-index: 9998;
}
@media only screen and (max-width: 800px) {
  .frontbackground .bottomleft {
    text-align: center;
    height: 110px !important;
    padding-left: 0;
  }
}
.frontbackground .bottomleft img {
  display: inline;
  margin-bottom: -1px;
  padding-left: 10px;
  transform: rotate(-90deg);
}
.frontbackground .bottomleft a {
  color: #fff;
  width: 100%;
  display: block;
  height: 100%;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-top: 8px;
}
@media only screen and (max-width: 800px) {
  .frontbackground .bottomleft a {
    padding-top: 43px;
  }
}
.frontbackground .bottomleft a:hover {
  color: #1593c9;
}
@media only screen and (max-width: 800px) {
  .frontbackground .bottomleft {
    /*border-bottom: 4px solid @secondaryColor;*/
    height: auto;
  }
}
@media only screen and (max-width: 800px) {
}
.puretext span {
  color: #949494;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: bold;
}
.puretext .lineUnder {
  border-bottom: 3px solid #1593c9;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 800px) {
  .puretext .lineUnder {
    margin-bottom: 40px;
  }
}
.puretext .marginRight {
  padding-right: 15% !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 800px) {
  .puretext .marginRight {
    padding-right: 0 !important;
  }
}
.puretext .marginRight + .col.w50 {
  margin-top: 30px;
}
@media only screen and (max-width: 800px) {
  .puretext h1 {
    font-size: 35px;
    padding-bottom: 40px;
  }
}
.puretext.darkbg {
  background: #f1f1f1;
}
.puretext.layout2 .lineUnder {
  display: none;
}
.puretext.layout2 h1 {
  position: relative;
  margin-bottom: 50px;
}
.puretext.layout2 h1:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #0094ff;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.imageoverlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 9999999;
  display: none;
  opacity: 0;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.imageoverlay.active {
  display: block;
}
.imageoverlay.show {
  opacity: 1;
}
.imageoverlay .container {
  position: relative;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
}
.imageoverlay .container .stage {
  max-width: 100%;
  max-height: 100%;
  /* display: block; */
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.imageoverlay .container .imageclose {
  height: 60px;
  width: 60px;
  background-color: #1593c9;
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 9999;
}
.funnystuff {
  position: relative;
  padding-top: 280px;
  min-height: 1230px;
  width: 100%;
  background-color: #f1f1f1;
}
.funnystuff .buttoncontainer {
  text-align: center;
  padding-top: 33px;
}
.funnystuff .buttoncontainer .button.expose {
  display: inline-block;
}
.funnystuff .mobileBackground {
  display: none;
}
@media only screen and (max-width: 800px) {
  .funnystuff .mobileBackground {
    display: block;
    height: 300px;
    float: left;
    background-size: cover !important;
    background-position: center !important;
  }
}
@media only screen and (max-width: 600px) {
  .funnystuff .mobileBackground {
    height: 200px;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff {
    padding: 0;
    min-height: 0;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff .outerPad {
    padding: 0;
  }
}
.funnystuff.layout2 .col.dark {
  float: right;
}
.funnystuff .background {
  width: 100%;
  position: absolute;
  top: 280px;
  background: url(/assets/images/dummybg.jpg);
  min-height: 950px;
  background-size: cover !important;
  background-position-x: center;
}
@media only screen and (max-width: 800px) {
  .funnystuff .background {
    display: none;
  }
}
.funnystuff .content {
  position: relative;
  z-index: 99;
}
.funnystuff .content .dark {
  background-color: #2a3746;
  color: #fff;
  position: relative;
  top: -130px;
  padding: 110px;
  box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .funnystuff .content .dark {
    padding: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff .content .dark {
    padding: 80px 50px;
    box-shadow: none;
    top: 0;
  }
}
@media only screen and (max-width: 700px) {
  .funnystuff .content .dark {
    padding: 80px 20px;
    box-shadow: none;
    top: 0;
  }
}
.funnystuff .content .dark h3,
.funnystuff .content .dark h2 {
  position: relative;
  margin-bottom: 100px;
}
.funnystuff .content .dark h3:after,
.funnystuff .content .dark h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #1593c9;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.funnystuff .content .light {
  background-color: #fff;
  position: relative;
  top: -50px;
  overflow: hidden;
  padding: 0 !important;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.75);
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .funnystuff .content .light {
    padding: 90px;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff .content .light {
    padding: 80px 50px;
    box-shadow: none;
    top: 0;
  }
}
@media only screen and (max-width: 700px) {
  .funnystuff .content .light {
    padding: 80px 20px;
    box-shadow: none;
    top: 0;
  }
}
.funnystuff .content .leaf {
  width: 100%;
  opacity: 1;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
.funnystuff .content .leaf .closebutnocigar {
  height: 60px;
  width: 60px;
  background-color: #1593c9;
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 999999999;
}
.funnystuff .content .leaf .zoom {
  height: 60px;
  width: 60px;
  background-color: #2a3746;
  position: absolute;
  left: 0;
  top: -60px;
  cursor: pointer;
}
.funnystuff .content .leaf img {
  width: 100%;
  display: block;
}
.funnystuff .content .leaf img + .text {
  padding: 110px;
}
@media only screen and (max-width: 1024px) {
  .funnystuff .content .leaf img + .text {
    padding: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff .content .leaf img + .text {
    padding: 40px 50px;
  }
}
@media only screen and (max-width: 700px) {
  .funnystuff .content .leaf img + .text {
    padding: 40px 20px;
  }
}
.funnystuff .content .leaf .text {
  padding: 110px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .funnystuff .content .leaf .text {
    padding: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .funnystuff .content .leaf .text {
    padding: 40px 50px;
  }
}
@media only screen and (max-width: 700px) {
  .funnystuff .content .leaf .text {
    padding: 40px 20px;
  }
}
.funnystuff .content .leaf.show {
  position: relative;
  opacity: 1;
}
.funnystuff .content .leaf.hide {
  opacity: 0;
}
.funnystuff .content .leaf.move {
  left: -10000px;
  position: absolute;
}
.imageandtext {
  position: relative;
  padding-top: 280px;
  min-height: 1230px;
  width: 100%;
  background-color: #f1f1f1;
}
@media only screen and (max-width: 800px) {
}
.imageandtext.layout1 .col {
  float: right;
}
.imageandtext.layout2 {
  padding-top: 0;
}
.imageandtext.layout2 .background {
  width: 100%;
  position: absolute;
  top: 0;
  min-height: 950px;
  background-size: cover !important;
}
.imageandtext.layout2 .outerPad {
  /* bottom: 0; */
  width: 100%;
  padding-top: 650px;
  background: #f1f1f1;
}
@media only screen and (max-width: 800px) {
  .imageandtext.layout2 .outerPad {
    padding: 0;
  }
}
.imageandtext .background {
  width: 100%;
  position: absolute;
  top: 280px;
  min-height: 950px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .imageandtext .background {
    display: none;
  }
}
.imageandtext .mobileBackground {
  display: none;
}
@media only screen and (max-width: 800px) {
  .imageandtext .mobileBackground {
    display: block;
    height: 300px;
    float: left;
    background-size: cover !important;
    background-position: center !important;
  }
}
@media only screen and (max-width: 800px) {
  .imageandtext {
    padding: 0;
    min-height: 0;
  }
}
@media only screen and (max-width: 800px) {
  .imageandtext .outerPad {
    padding: 0;
  }
}
.imageandtext .content {
  position: relative;
  z-index: 99;
}
.imageandtext .content .dark {
  background-color: #2a3746;
  color: #fff;
  position: relative;
  top: -130px;
  padding: 110px;
  box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .imageandtext .content .dark {
    padding: 100px 50px;
  }
}
@media only screen and (max-width: 800px) {
  .imageandtext .content .dark {
    top: 0;
  }
}
@media only screen and (max-width: 700px) {
  .imageandtext .content .dark {
    padding: 80px 20px;
    box-shadow: none;
  }
}
.imageandtext .content .dark h2 {
  position: relative;
  margin-bottom: 50px;
}
.imageandtext .content .dark h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #0094ff;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.imageandtext .content .dark h3 {
  padding-top: 40px;
}
.imageandtext .content .light {
  background-color: #fff;
  position: relative;
  top: -50px;
  overflow: hidden;
  padding: 0 !important;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.75);
}
.imageandtext .content .light p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
  .imageandtext .content .light {
    padding: 80px 20px;
    box-shadow: none;
    top: 0;
  }
}
.imageandtext .content .leaf {
  width: 100%;
  opacity: 1;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.imageandtext .content .leaf .closebutnocigar {
  height: 60px;
  width: 60px;
  background-color: #1593c9;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.imageandtext .content .leaf img {
  width: 100%;
  display: block;
}
.imageandtext .content .leaf img + .text {
  padding: 40px 125px 100px;
}
.imageandtext .content .leaf .text {
  padding: 110px;
}
@media only screen and (max-width: 1024px) {
  .imageandtext .content .leaf .text {
    padding: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .imageandtext .content .leaf .text {
    padding: 40px 20px;
  }
}
.imageandtext .content .leaf.show {
  position: relative;
  opacity: 1;
}
.imageandtext .content .leaf.hide {
  opacity: 0;
}
.imageandtext .content .leaf.move {
  left: -10000px;
  position: absolute;
}
.job {
  min-height: 1362px;
  background-color: #f1f1f1;
}
@media only screen and (max-width: 800px) {
  .job {
    padding-top: 90px;
    min-height: 0;
  }
}
@media only screen and (max-width: 800px) {
  .job + .job {
    padding-top: 0;
  }
}
.job .layout2 .col {
  float: right !important;
}
@media only screen and (max-width: 800px) {
  .job .text .col {
    padding: 0;
  }
}
.job .mobileBackground {
  display: none;
}
@media only screen and (max-width: 800px) {
  .job .mobileBackground {
    display: block;
    height: 50vh;
    float: left;
    background-size: cover !important;
    background-position: center !important;
  }
}
.job .content {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .job .content {
    padding-top: 265px;
  }
}
@media only screen and (max-width: 800px) {
  .job .content .outerPad {
    padding: 0;
  }
}
.job .content .images {
  position: absolute;
  top: 410px;
  width: 100%;
}
.job .content .images .col {
  padding: 0;
  max-height: 960px;
  overflow-y: hidden;
}
.job .content .images .col img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .job .content .images {
    top: 300px;
  }
}
@media only screen and (max-width: 800px) {
  .job .content .images {
    display: none;
  }
}
.job .content .textboxes {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 99;
}
@media only screen and (max-width: 800px) {
  .job .content .textboxes {
    position: relative;
    margin-top: 50px;
  }
}
.job .content .textboxes .leaf {
  padding: 110px;
}
@media only screen and (max-width: 1024px) {
  .job .content .textboxes .leaf {
    padding: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .job .content .textboxes .leaf {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 700px) {
  .job .content .textboxes .leaf.dark {
    padding: 80px 20px;
  }
}
.job .content .textboxes .leaf img {
  max-width: 100%;
}
.job .content .textboxes .dark {
  background-color: #2a3746;
  color: #fff;
  position: relative;
  top: -130px;
  box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
}
@media only screen and (max-width: 800px) {
  .job .content .textboxes .dark {
    top: 0;
    box-shadow: none;
  }
}
.job .content .textboxes .dark .col {
  padding: 0 !important;
}
.job .content .textboxes .dark h3,
.job .content .textboxes .dark h2 {
  color: #fff;
  font-family: "Lato Black";
  font-size: 25px;
  position: relative;
  margin-bottom: 50px;
}
.job .content .textboxes .dark h3:after,
.job .content .textboxes .dark h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #1593c9;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.job .content .textboxes .dark h2 {
  font-size: 50px;
}
.job .content .textboxes .light {
  background-color: #fff;
  position: relative;
  top: -50px;
  overflow: hidden;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.75);
  opacity: 1;
}
@media only screen and (max-width: 800px) {
  .job .content .textboxes .light {
    top: 0;
    box-shadow: none;
  }
}
.contactinformation {
  background: #f1f1f1;
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 700px) {
  .contactinformation.outerPad {
    padding: 0;
  }
}
.contactinformation .lightbg {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 255px;
  background: #fff;
}
.contactinformation .grid-row {
  position: relative;
  z-index: 99;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 75px;
}
@media only screen and (max-width: 700px) {
  .contactinformation .grid-row {
    display: block;
  }
}
.contactinformation .textstuff {
  background: #2a3746;
  padding: 110px;
  position: relative;
  display: block;
}
.contactinformation .textstuff .googlepin {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: inline-block;
}
@media only screen and (max-width: 700px) {
  .contactinformation .textstuff .googlepin {
    bottom: auto;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .contactinformation .textstuff {
    padding: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .contactinformation .textstuff {
    padding: 40px;
    width: 100%;
  }
}
.contactinformation .textstuff .col {
  padding: 0;
}
.contactinformation .textstuff .grid-row {
  padding-bottom: 0;
}
.contactinformation .textstuff h4 {
  font-size: 25px;
  font-family: "Lato Bold";
  padding-bottom: 50px;
  position: relative;
}
.contactinformation .textstuff h4:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 25px;
  height: 3px;
  background-color: #1593c9;
  width: 70px;
}
.contactinformation .textstuff p:last-child {
  margin-bottom: 0;
}
.contactinformation .imagestuff {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  display: block;
}
@media only screen and (max-width: 800px) {
  .contactinformation .imagestuff {
    height: 150px;
    width: 100% !important;
  }
}
.contactinformation .imagestuff .iframe-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .contactinformation .imagestuff .iframe-wrapper {
    display: none;
  }
}
.contactinformation .imagestuff .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .contactinformation .imagestuff .iframe-wrapper iframe {
    display: none;
  }
}
footer {
  background: #2a3746;
  color: #fff;
  padding: 100px 0;
  border-top: 7px solid #1593c9;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  position: relative;
}
@media only screen and (max-width: 800px) {
  footer {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  footer .col.w33,
  footer .col.w66 {
    float: left !important;
    width: 50% !important;
  }
}
@media only screen and (max-width: 700px) {
  footer .col.w33,
  footer .col.w66 {
    width: 100% !important;
  }
}
footer .col.w66 {
  position: relative;
}
footer .facebooklink {
  position: absolute;
  right: 0;
  bottom: -183px;
  color: #fff !important;
  display: table;
  background: url('/assets/images/facebook.svg');
  background-size: 21px 21px;
  background-position: right;
  background-repeat: no-repeat;
  height: 21px;
}
@media only screen and (max-width: 1024px) {
  footer .facebooklink {
    bottom: -230px;
  }
}
@media only screen and (max-width: 1024px) {
  footer .facebooklink {
    bottom: -255px;
  }
}
@media only screen and (max-width: 700px) {
  footer .facebooklink {
    background-size: auto;
    position: relative;
    right: auto;
    bottom: auto;
    margin: 40px auto 0 auto;
  }
}
footer .facebooklink span {
  float: left;
  line-height: 40px;
  padding-right: 35px;
}
@media only screen and (max-width: 800px) {
  footer .facebooklink span {
    float: none;
    display: inline-block;
    /*display:table-cell;
                padding-top:0;
                margin-top:0;*/
  }
}
footer .facebooklink img {
  height: 40px;
  width: 40px;
  float: left;
}
@media only screen and (max-width: 800px) {
  footer .facebooklink img {
    float: none;
    display: inline-block;
  }
}
footer img {
  width: 209px;
}
footer .col {
  padding: 0 !important;
}
footer .address {
  padding-left: 95px;
  padding-top: 30px;
}
footer .menu {
  padding-top: 15px;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  footer .menu {
    display: none;
  }
}
footer .menu ul {
  float: right;
}
footer .menu ul li {
  float: left;
  list-style-type: none;
}
footer .menu ul li.active a span {
  color: #1593c9;
}
footer .menu ul li:last-child span {
  border-right: 0;
  padding-right: 0;
}
footer .menu ul li a {
  color: #fff;
  padding: 0 0 0 15px;
  display: block;
  cursor: pointer;
}
footer .menu ul li a span {
  padding-right: 15px;
  border-right: 1px solid #555f6b;
}
footer table {
  padding: 0;
  margin: 0;
}
footer table td {
  border: 0;
  padding: 0;
}
@media only screen and (max-width: 700px) {
  footer table td {
    display: block;
  }
}
footer table td:first-child {
  padding-right: 15px;
}
footer table td a {
  color: #fff;
}
footer table td p {
  line-height: 22px;
  margin-bottom: 0;
}
.makecenter {
  text-align: center;
  padding-top: 50px;
}
.makecenter .downloadbrochure {
  color: #fff;
  border: 1px solid #fff;
  background: #2a3746 !important;
}
.machinelist {
  background: #f1f1f1;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .machinelist .maxwidth1400 {
    padding: 45px 0;
  }
}
.machinelist .positioner {
  position: relative;
  display: inline;
}
.machinelist .machinesdropdownselected {
  display: none;
}
@media only screen and (max-width: 700px) {
  .machinelist .machinesdropdownselected {
    display: inline-block;
    background: #1593c9;
    color: #fff;
    width: 225px;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
  }
}
.machinelist .machinesdropdownselected img {
  position: absolute;
  right: 15px;
  top: 10px;
}
.machinelist .machinegroupmenu {
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 75px 0;
  display: inline-block;
  width: 100%;
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .machinelist .machinegroupmenu {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 700px) {
  .machinelist .machinegroupmenu {
    position: absolute;
    left: 0;
    top: 28px;
    z-index: 99;
    padding: 0;
    overflow: hidden;
    height: 0;
    -moz-transition: height ease 0.5s;
    -o-transition: height ease 0.5s;
    -webkit-transition: height ease 0.5s;
    transition: height ease 0.5s;
  }
  .machinelist .machinegroupmenu.active {
    height: 105px;
  }
  .machinelist .machinegroupmenu li {
    height: 35px !important;
    line-height: 35px !important;
    background-color: #1593c9 !important;
    color: #fff !important;
    border-top: 1px solid #fff !important;
  }
}
.machinelist .machinegroupmenu li {
  list-style: none;
  float: left;
  width: 33.3333333%;
  border: 1px solid #1593c9;
  text-align: center;
  color: #1593c9;
  -moz-transition: all ease 0.7s;
  -o-transition: all ease 0.7s;
  -webkit-transition: all ease 0.7s;
  transition: all ease 0.7s;
  cursor: pointer;
  height: 43px;
  line-height: 43px;
  text-transform: uppercase;
}
.machinelist .machinegroupmenu li:nth-child(even) {
  border-right: 0 !important;
  border-left: 0 !important;
}
@media only screen and (max-width: 700px) {
  .machinelist .machinegroupmenu li {
    width: 100%;
  }
}
.machinelist .machinegroupmenu li:hover,
.machinelist .machinegroupmenu li.active {
  color: #fff;
  background-color: #1593c9;
}
.machinelist .machines {
  padding-bottom: 130px;
}
.machinelist .machines .grid-row {
  padding-top: 0;
  padding-bottom: 75px;
}
@media only screen and (max-width: 800px) {
  .machinelist .machines .col.w33 {
    width: 50% !important;
    float: left !important;
  }
}
@media only screen and (max-width: 700px) {
  .machinelist .machines .col.w33 {
    width: 100% !important;
    float: none !important;
  }
}
@media only screen and (max-width: 800px) {
  .machinelist .machines {
    padding-bottom: 0;
  }
}
.machinelist .machines .col {
  padding: 0;
  border-bottom: 1px solid #d8d8d8;
  /*
            &:nth-child(3n-2) {
                border-right: 1px solid #d8d8d8;
            }

            &:nth-child(3n-1) {
                border-right: 1px solid #d8d8d8;
            }

            &:nth-child(3n) {
                border-right: 1px solid #f1f1f1;
            }*/
  border-right: 1px solid #d8d8d8;
  position: relative;
}
.machinelist .machines .col .button {
  /*position: absolute;
                top: 50%;
                left: 50%;*/
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  color: #2a3746;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  padding: 40px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 17px;
  font-family: "Lato Black";
  cursor: pointer;
  width: auto;
  border-bottom: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
@media only screen and (max-width: 800px) {
  .machinelist .machines .col .button {
    white-space: normal;
  }
}
.machinelist .machines .col:hover .button {
  padding: 40px 40px 35px 40px;
  border-bottom: 5px solid #1593c9;
}
.machinelist .machines .col:hover .dimmer {
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 700px) {
  .machinelist .machines .col {
    border-right: 1px solid #f1f1f1;
  }
}
@media only screen and (max-width: 800px) {
  .machinelist .machines .col.is-2nd-child {
    border-right: 1px solid #f1f1f1;
  }
}
@media only screen and (min-width: 800px) {
  .machinelist .machines .col.is-3rd-child {
    border-right: 1px solid #f1f1f1;
  }
}
.machinelist .machines .col:before {
  content: '';
  padding-top: 66.5%;
  display: block;
}
.machinelist .machines .col a {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  left: 0;
  top: 0;
}
.machinelist .machines .col a img {
  width: 100%;
  display: block;
  padding: 25px 83px 0;
}
.machinelist .machines .dimmer {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  top: 0;
  -moz-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .text .col {
    padding: 0;
  }
}
.projectdetails1234 .projectcontent {
  background-color: #f1f1f1;
  position: relative;
}
@media only screen and (min-width: 800px) {
  .projectdetails1234 .projectcontent {
    padding-top: 185px;
    margin-top: 130px;
  }
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .outerPad {
    padding: 0;
  }
}
.projectdetails1234 .projectcontent .images .col {
  padding: 0;
  float: right;
}
.projectdetails1234 .projectcontent .images .col img {
  width: 100%;
}
.projectdetails1234 .projectcontent .images .col:first-child {
  position: absolute;
  left: 0;
  bottom: 0;
  float: none;
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .images .col:first-child {
    position: relative;
    font-size: 0;
    line-height: 0;
  }
}
.projectdetails1234 .projectcontent .images .col:first-child img {
  width: 50%;
}
.projectdetails1234 .projectcontent .textboxes {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 99;
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .textboxes {
    position: relative;
    margin-top: 20px;
  }
}
.projectdetails1234 .projectcontent .textboxes .leaf {
  padding: 100px 125px;
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .textboxes .leaf {
    padding: 20px 20px;
  }
}
.projectdetails1234 .projectcontent .textboxes .dark {
  background-color: #2a3746;
  color: #fff;
  position: relative;
  top: -310px;
  box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .textboxes .dark {
    top: 0;
    box-shadow: none;
  }
}
.projectdetails1234 .projectcontent .textboxes .dark .col {
  padding: 0 !important;
}
.projectdetails1234 .projectcontent .textboxes .dark h3,
.projectdetails1234 .projectcontent .textboxes .dark h2 {
  color: #fff;
  font-family: "Lato Black";
  font-size: 25px;
  position: relative;
  margin-bottom: 50px;
}
.projectdetails1234 .projectcontent .textboxes .dark h3:after,
.projectdetails1234 .projectcontent .textboxes .dark h2:after {
  content: " ";
  height: 3px;
  width: 70px;
  background: #1593c9;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.projectdetails1234 .projectcontent .textboxes .dark h2 {
  font-size: 50px;
}
.projectdetails1234 .projectcontent .textboxes .light {
  background-color: #fff;
  position: relative;
  top: -230px;
  overflow: hidden;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  opacity: 1;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 800px) {
  .projectdetails1234 .projectcontent .textboxes .light {
    top: 0;
    box-shadow: none;
  }
}
.job-application-form {
  padding-top: 4em;
  padding-bottom: 4em;
}
.job-application-form label {
  margin: 1.6em 1em 1em 0;
  display: block;
  text-align: right;
  line-height: 1em;
}
@media only screen and (max-width: 800px) {
  .job-application-form label {
    text-align: left;
    margin-bottom: 0;
  }
}
.job-application-form input[type=checkbox] {
  display: inline-block;
  margin: 1.25em 0.75em 0.25em 0.75em;
  /*outline: 2px solid @primaryColor;
        padding: 0.25em;
        background-color: transparent;*/
}
.job-application-form input[type=submit] {
  padding: 0.5em 1.5em;
}
.job-application-form .brother,
.job-application-form .sister {
  position: absolute;
  left: -1000px;
  top: 0;
  font-size: 0.2em;
  border: none;
  padding: 0;
}
.job-application-form ul {
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;
}
.job-application-form ul li {
  list-style-type: none;
}
.job-application-form ul input {
  display: inline-block;
  margin: 1.25em 0.75em 0.25em 0.75em;
}
.job-application-form ul label {
  text-align: left;
  display: inline-block;
  cursor: pointer;
  margin: 0;
}