/*$grid-width: 114rem;
$gutter-vertical: 8rem;
$gutter-vertical-small: 6rem;
$gutter-horizontal: 6rem;*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

/* in base file because it defines what 1rem is and therefore layout for rest of site */
/*root font size set here, so can use rem on all other elements*/
/*REMs NOT SUPPORTED BELOW IE 9*/
html {
  /*font-size: 10px;*/
  /*using 10px - makes it easier - 1rem is 10px |  BUT now user cant change font size in browser - overriding it */
  /* THEREFORE we change it to a percentage - which is a percentage of the browser default font size - usually 16px */
  font-size: 62.5%;
  /*if browser default is 16px, then this is now 10px*/
  /*1rem is 10px*/ }

/*ADMIN*/
/*Button Black General link button*/
a.buttonLogout {
  float: right;
  margin-left: .5rem;
  font-size: 1rem;
  font-family: "robotoregular", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #696969;
  border-radius: 1.6rem;
  padding: .4rem .8rem;
  transition: all .4s; }

a.buttonLogout:link {
  color: #fff;
  text-decoration: none; }

a.buttonLogout:visited {
  color: #fff;
  text-decoration: none; }

a.buttonLogout:active {
  color: #fff;
  text-decoration: none; }

a.buttonLogout:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

a.buttonSmallRed {
  float: right;
  margin-left: 4rem;
  font-size: 1.2rem;
  font-family: "robotoregular", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  border-radius: 2rem;
  padding: .6rem 1rem;
  transition: all .4s; }

a.buttonSmallRed:link {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed:visited {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed:active {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

a.buttonSmallRed2 {
  display: inline-block;
  margin: .5rem;
  font-size: .9rem !important;
  font-family: "robotoregular", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  border-radius: 2rem;
  padding: .2rem .8rem .2rem .6rem;
  transition: all .4s; }

a.buttonSmallRed2:link {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed2:visited {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed2:active {
  color: #fff;
  text-decoration: none; }

a.buttonSmallRed2:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

a.buttonGrey {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "robotobold", Arial, sans-serif;
  color: #696969;
  text-decoration: none;
  background-color: #BFBFBF;
  background-image: linear-gradient(#FFFFFF, #BFBFBF);
  border-radius: 1.6rem;
  padding: 1.5rem 2.6rem;
  margin: 1rem;
  box-shadow: 0px 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  transition: all .4s; }

a.buttonGrey:link {
  color: #696969;
  text-decoration: none; }

a.buttonGrey:visited {
  color: #696969;
  text-decoration: none; }

a.buttonGrey:active {
  color: #696969;
  text-decoration: none; }

a.buttonGrey:hover {
  color: #696969;
  text-decoration: none;
  background-image: linear-gradient(#BFBFBF, #FFFFFF);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

a.buttonyellow {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "robotobold", Arial, sans-serif;
  color: #272727;
  text-decoration: none;
  background-color: #ffcc00;
  padding: 1rem 5rem;
  margin: 2rem auto;
  border-radius: 2rem;
  box-shadow: 0px 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  transition: all .4s;
  cursor: pointer; }

a.buttonyellow:link {
  color: #272727;
  text-decoration: none; }

a.buttonyellow:visited {
  color: #272727;
  text-decoration: none; }

a.buttonyellow:active {
  color: #272727;
  text-decoration: none; }

a.buttonyellow:hover {
  color: #272727;
  background-color: #ffda22;
  text-decoration: none;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.6); }

/*Button Green General button, browse button*/
.buttonSubmit {
  display: inline-block;
  font-size: 2.2rem;
  font-family: "robotobold", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #ffcc00;
  padding: 1.2rem 2.5rem;
  border-style: none;
  transition: all .4s; }

.buttonSubmit:link {
  color: #fff;
  text-decoration: none; }

.buttonSubmit:visited {
  color: #fff;
  text-decoration: none; }

.buttonSubmit:active {
  color: #fff;
  text-decoration: none; }

.buttonSubmit:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b10000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

/* FORMS - GENERAL */
fieldset {
  border-style: none;
  margin-bottom: 1.5rem; }

fieldset.spacing {
  border-style: none;
  margin: 2rem 0rem; }

fieldset:last-child {
  border-style: none; }

.fField {
  margin-top: .8rem;
  color: #272727;
  font-size: 1.4rem; }

.fField p {
  color: #272727; }

fieldset.threeCol div.fField {
  width: 30%;
  float: left;
  margin-right: 3%; }

fieldset.twoCol div.fField {
  width: 47%;
  float: left;
  margin-right: 3%; }

div.Third {
  display: inline-block;
  width: 31%;
  margin-right: 1%; }

label {
  font-family: "robotobold", Arial, sans-serif;
  font-size: 1.5rem;
  margin-top: 14px;
  color: #ffcc00; }

label.marginTop20 {
  display: block;
  margin-top: 2.5rem;
  font-weight: bold; }

textarea, input[type="text"], input[type="password"], input[type="number"], input[type="date"], select, option {
  font-family: "robotoregular", Arial, sans-serif;
  background-color: #FFFFFF;
  color: #272727;
  font-size: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem;
  margin: .3rem 0rem .3rem 0rem;
  border-style: solid;
  border-color: #f4f4f4;
  border-width: 1px;
  border-radius: .6rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); }

.formInputRadio {
  font-family: "robotoregular", Arial, sans-serif;
  color: #696969;
  font-size: 1.5rem;
  margin-bottom: 1.5rem; }

input[type="radio"] {
  margin: 10px 0px; }

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555; }

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #272727;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: .2s; }

input[type=file]::file-selector-button:hover {
  background: #696969; }

textarea:focus, input:focus, option:focus {
  box-shadow: 0 0 5px rgba(11, 42, 63, 0.3);
  border: 1px solid rgba(32, 113, 184, 0.85);
  outline: none; }

input.countdown {
  width: 60px;
  font-size: 1rem; }

input.small {
  font-size: 1rem; }

#refresh {
  color: #ffcc00;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  cursor: hand; }

#refresh:hover {
  color: #b10000; }

/*appears beneath the box, when start typing - placeholder not showing*/
label.title {
  display: block;
  height: 10px;
  clear: both;
  width: auto;
  padding-top: 0px;
  margin: 0px;
  font-family: "robotobold", Arial, sans-serif;
  font-size: 1rem;
  color: #272727;
  font-weight: normal;
  line-height: 120%;
  text-align: left;
  transition: all .3s; }

/*new //need to also select label which is an adjacent sibling (first) - must be after the input
//this is when placeholder is shown - properties are for the label.  When start typing, place holder is not shown */
textarea:placeholder-shown + label.title, input:placeholder-shown + label.title {
  opacity: 0;
  /*can animate this property*/
  visibility: hidden;
  /*properly gone, but cant animate*/
  transform: translateY(-10px); }

/*Errors - Feedback*/
/*form label errors*/
p.error {
  margin: 0rem;
  font-size: 1.2rem;
  color: #be1820;
  text-align: left !important; }

/*field required*/
/*Feedback Div*/
#errorADiv {
  position: absolute;
  top: 150;
  right: 2rem;
  min-width: 26.3rem;
  max-width: 26.3rem;
  margin: 1rem;
  background-color: #FFFFFF;
  border-style: solid;
  border-color: #d6d6d6;
  border-width: .1rem;
  padding: .8rem;
  border-radius: .8rem;
  z-index: 200; }

.errorA_p {
  font-size: 1.2rem;
  margin: 0rem 0rem .5rem 0rem;
  text-align: left; }

/*form feedback errors*/
.throw_error {
  font-size: 1.2rem;
  color: #be1820;
  margin: 0rem 0rem .5rem 0rem;
  text-align: left; }

/*form feedback error*/
#message {
  text-align: left;
  color: #272727;
  font-size: 1.5rem; }

/*form feedback error*/
.successMsg {
  /* background-image: url("../images/icon_Check.png");
	background-repeat: no-repeat;
	background-position: .3rem center; */
  background-color: #e0ffad;
  border-style: dotted;
  border-color: #80b641;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px;
  /* padding: 1rem 1rem 1rem 3.5rem;  */ }

.errorMsg {
  /* background-image: url("../images/icon_Cross.png");
	background-repeat: no-repeat;
	background-position: .3rem center; */
  background-color: #ffc3c3;
  border-style: dotted;
  border-color: #ff0000;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px;
  /*padding: 1rem 1rem 1rem 3.5rem; */ }

#message p {
  margin: 0px;
  font-size: 1.2rem;
  text-align: left;
  color: #696969; }

/*for update images forms */
.messages {
  font-size: 1.2rem;
  line-height: 120%; }

.messageP {
  margin-top: 3px;
  font-size: 1.2rem;
  line-height: 120%; }

/*for update images forms */
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box; }

/* FONT - Generated by Font Squirrel (http://www.fontsquirrel.com) America/New_York */
@font-face {
  font-family: 'robotoregular';
  src: url("../Fonts/Roboto-Regular-webfont.eot");
  src: url("../Fonts/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../Fonts/Roboto-Regular-webfont.woff") format("woff"), url("../Fonts/Roboto-Regular-webfont.ttf") format("truetype"), url("../Fonts/Roboto-Regular-webfont.svg#robotoregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'robotomedium';
  src: url("../Fonts/Roboto-Medium-webfont.eot");
  src: url("../Fonts/Roboto-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("../Fonts/Roboto-Medium-webfont.woff") format("woff"), url("../Fonts/Roboto-Medium-webfont.ttf") format("truetype"), url("../Fonts/Roboto-Medium-webfont.svg#robotomedium") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'robotobold';
  src: url("../Fonts/Roboto-Bold-webfont.eot");
  src: url("../Fonts/Roboto-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../Fonts/Roboto-Bold-webfont.woff") format("woff"), url("../Fonts/Roboto-Bold-webfont.ttf") format("truetype"), url("../Fonts/Roboto-Bold-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'robotolight';
  src: url("../Fonts/Roboto-Light-webfont.eot");
  src: url("../Fonts/Roboto-Light-webfont.eot?#iefix") format("embedded-opentype"), url("../Fonts/Roboto-Light-webfont.woff") format("woff"), url("../Fonts/Roboto-Light-webfont.ttf") format("truetype"), url("../Fonts/Roboto-Light-webfont.svg#robotolight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'robotoblack';
  src: url("../Fonts/Roboto-Black-webfont.eot");
  src: url("../Fonts/Roboto-Black-webfont.eot?#iefix") format("embedded-opentype"), url("../Fonts/Roboto-Black-webfont.woff") format("woff"), url("../Fonts/Roboto-Black-webfont.ttf") format("truetype"), url("../Fonts/Roboto-Black-webfont.svg#robotoblack") format("svg");
  font-weight: normal;
  font-style: normal; }

/*google font*/
html {
  background-color: #fff; }

html, body {
  padding: 0;
  margin: 0;
  color: #0f0f0f;
  font-family: "robotoregular", Arial, sans-serif; }

/* CONTENT LINKS */
a {
  color: #ffcc00;
  font-size: 1.6rem;
  font-family: "robotomedium", Arial, sans-serif;
  line-height: 160%;
  text-decoration: none;
  font-weight: normal;
  transition: .2s; }

a:link {
  color: #ffcc00;
  text-decoration: none; }

a:visited {
  color: #ffcc00;
  text-decoration: none; }

a:active {
  color: #ffcc00;
  text-decoration: none; }

a:hover {
  color: #ffda22;
  text-decoration: none; }

a.white {
  color: #FFFFFF;
  font-family: "robotoregular", Arial, sans-serif;
  line-height: 160%;
  text-decoration: underline;
  font-weight: normal;
  transition: .2s; }

a.white:link {
  color: #FFFFFF;
  text-decoration: underline; }

a.white:visited {
  color: #FFFFFF;
  text-decoration: underline; }

a.white:active {
  color: #FFFFFF;
  text-decoration: underline; }

a.white:hover {
  color: #ffcc00;
  text-decoration: underline; }

/*MAIN STRUCTURAL DIVS*/
#topBar {
  padding: 1rem 0rem;
  background-color: #FFF;
  height: 12rem; }

#logoDiv {
  float: left;
  margin: 0px; }

#logoDiv img {
  width: auto; }

.innerWrapper {
  width: 1280px;
  margin-left: auto;
  margin-right: auto; }

.innerPadding {
  padding: 3rem 1rem 3.5rem 1rem; }

.innerPadding2 {
  padding: 5rem 1.5rem 5.5rem 1.5rem; }

.innerPadding3 {
  padding: 7rem 1.5rem 7.5rem 1.5rem; }

.sectionWhite {
  width: 100%;
  background-color: #FFFFFF; }

.sectionDark {
  margin-top: 1px;
  width: 100%;
  background-color: #272727; }

.sectionDark p {
  color: #FFFFFF; }

.sectionGrey {
  width: 100%;
  background-color: #f4f4f4; }

.colWrapper {
  width: 100%;
  overflow: hidden; }

.colLeft {
  float: left;
  width: 48%; }

.colRight {
  float: right;
  width: 48%; }

.col3Wrapper {
  width: 100%;
  overflow: hidden; }

.col3 {
  float: left;
  width: 32%;
  margin-right: 1%; }

.col3:last-child {
  margin-right: 0%; }

/* NAVIGATION */
#menuWrapper {
  width: 100%;
  padding-top: 0rem;
  z-index: 110; }

#menuIcon {
  display: none;
  position: absolute;
  top: 4rem;
  right: 1rem;
  height: 5rem;
  width: 5rem;
  cursor: pointer;
  z-index: 101; }

#navDiv {
  position: relative;
  padding: .5rem;
  margin-top: 5rem;
  margin-right: 1rem;
  float: right; }

/* CONTENT LINKS main nav links float: left; */
a.nav {
  position: relative;
  display: block;
  float: left;
  padding: 5px 12px 5px 12px;
  color: #272727;
  font-size: 1.8rem;
  font-family: "robotoregular", Arial, sans-serif;
  text-decoration: none;
  transition: 0.3s;
  line-height: 120%; }

a.nav:link {
  text-decoration: none; }

a.nav:visited {
  text-decoration: none; }

a.nav:active {
  text-decoration: none; }

a.nav:hover {
  color: #ffcc00;
  text-decoration: none;
  transform: scale(1.05, 1.05); }

a.navLive {
  position: relative;
  display: block;
  float: left;
  padding: 5px 12px 5px 12px;
  color: #ffcc00;
  font-size: 1.8rem;
  font-family: "robotobold", Arial, sans-serif;
  text-decoration: none;
  transition: 0.3s;
  line-height: 120%; }

a.navLive:link {
  text-decoration: none; }

a.navLive:visited {
  text-decoration: none; }

a.navLive:active {
  text-decoration: none; }

a.navLive:hover {
  text-decoration: none; }

/* CONTENT LINKS sub links  */
#navClose {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f4f4f4;
  cursor: pointer;
  cursor: hand;
  transition: background-color .4s; }

#navClose p {
  margin-top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 20px;
  text-align: center;
  line-height: 1; }

#navClose:hover {
  background-color: #ffcc00; }

/*SLIDE*/
#slideWrapper {
  position: relative; }

/*home page slide - check all-slides in style.css as well*/
#slide {
  position: relative;
  width: 100%;
  height: 65rem;
  background-color: white; }

#slideOverlay {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: rgba(255, 204, 0, 0.75);
  text-align: right;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1000; }

#overlay_Finn {
  width: 225px;
  margin: 25rem 2rem 2rem 10rem; }

#overlay_Finn p {
  font-family: "robotobold", Arial, sans-serif;
  color: #FFFFFF;
  text-align: right; }

/* MAIN PIC */
#mainPicWrapper {
  position: relative;
  height: 45rem; }

#mainPic {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover; }

/* box-shadow: 0px 10px 26px -8px rgba(0,0,0,0.75);*/
.mp-finnbuilder {
  background-image: url("../images/pic_FinnBuilder.jpg"); }

.mp-building {
  background-image: url("../images/pic_buildingServices.jpg"); }

.mp-lowcost {
  background-image: url("../images/pic_lowCostHousing.jpg"); }

#mainPicWrapper_narrow {
  position: relative;
  height: 20rem; }

#mainPicWrapper_narrow #overlay_Page {
  margin: 7rem 2rem 2rem 12rem; }

#mainPicWrapper_narrow #slideOverlay_Page {
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); }

#slideOverlay_Page {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: rgba(255, 204, 0, 0.75);
  text-align: right;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1000; }

#overlay_Page {
  width: 225px;
  margin: 15rem 2rem 2rem 12rem; }

#overlay_Page p {
  font-family: "robotobold", Arial, sans-serif;
  font-size: 3.6rem;
  line-height: 120%;
  color: #FFFFFF; }

/*GENERAL*/
h1 {
  margin: 0rem 0rem 3rem 0rem;
  font-family: "robotolight", Arial, sans-serif;
  font-size: 3.6rem;
  text-transform: uppercase;
  line-height: 120%;
  color: #ffcc00;
  font-weight: normal; }

h1.block {
  display: block;
  padding: 2rem;
  margin: 0rem 0rem 3rem 0rem;
  color: #fff;
  background-color: #ffcc00; }

h1.block p {
  margin: 0rem;
  padding: 0rem;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit; }

h1.white {
  color: #FFFFFF; }

h1.dark {
  color: #0f0f0f; }

h2 {
  margin: 3rem 0rem 1rem 0rem;
  font-size: 2.2rem;
  color: #fff;
  font-family: "robotobold", Arial, sans-serif;
  font-weight: normal;
  line-height: 120%; }

h2.top {
  margin-top: 0rem; }

h2.dark {
  color: #272727; }

h3 {
  margin: 3rem 0rem 1.5rem 0rem;
  font-size: 2rem;
  color: #696969;
  font-family: "robotobold", Arial, sans-serif;
  font-weight: normal;
  line-height: 120%; }

h3.white {
  color: #FFFFFF; }

h4 {
  margin: 2rem 0rem 0rem 0rem;
  font-size: 1.7rem;
  color: #ffcc00;
  font-family: "robotobold", Arial, sans-serif;
  font-weight: normal;
  line-height: 120%; }

p {
  padding: 0;
  margin: 0rem 0rem 15px 0rem;
  font-size: 1.8rem;
  color: #0f0f0f;
  font-family: "robotoregular", Arial, sans-serif;
  line-height: 170%;
  text-align: justify; }

p.center {
  text-align: center; }

p.caption {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
  font-style: italic; }

ul.page li.page {
  margin-left: 1rem;
  padding-left: 2rem;
  font-size: 1.6rem;
  color: #0f0f0f;
  font-family: "robotoregular", Arial, sans-serif;
  line-height: 160%; }

hr {
  margin: 3rem 0rem;
  color: #272727;
  background-color: #272727; }

div.hr {
  margin: 3rem 0rem;
  height: 1px;
  border-style: dotted;
  border-width: 1px 0px 0px 0px;
  border-color: #d6d6d6; }

div.centerDiv {
  text-align: center; }

div.centerDiv p {
  text-align: center; }

div.centerDiv h2 {
  text-align: center; }

div.centerDiv h3 {
  text-align: center; }

.center {
  text-align: center; }

.rel {
  position: relative; }

.bold {
  font-family: "robotobold", Arial, sans-serif; }

.hidden {
  display: none; }

.center {
  text-align: center; }

.centerDiv {
  margin: 0px auto; }

div.vhcentre {
  margin-left: 50%;
  margin-top: 50%;
  transform: translate(-50%, -50%); }

div.break {
  clear: both;
  height: .1rem; }

div.ellipse {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

div.divider {
  padding-top: 1rem;
  margin-bottom: 1rem;
  height: 1px;
  border-style: dotted;
  border-width: 0px 0px 1px 0px;
  border-color: #696969; }

div.narrowCentre {
  width: 65%;
  margin: 0rem auto;
  text-align: center; }

div.narrowCentre p {
  text-align: center; }

div.narrowLeft {
  width: 65%;
  margin: 0rem auto;
  text-align: justify; }

div.narrowLeft p {
  text-align: justify; }

div.narrow {
  width: 65%;
  margin: 0rem auto; }

a img {
  outline: none;
  border-style: none; }

img.content {
  width: 100%; }

.icon {
  cursor: pointer;
  cursor: hand;
  transition: opacity .4s; }

.icon:hover {
  opacity: 0.6; }

.text-nowrap {
  white-space: nowrap; }

.white {
  color: #fff; }

div.white p {
  color: #fff; }

div.white label.title {
  color: #fff; }

.small {
  font-size: 1rem;
  line-height: 50%; }

ul {
  padding: 0;
  margin: 0rem 0rem 15px 2rem;
  font-size: 1.8rem;
  color: #272727;
  font-family: "robotoregular", Arial, sans-serif;
  line-height: 160%;
  text-align: justify; }

.hide {
  display: none; }

.showInline {
  display: inline-block; }

.show {
  display: block; }

div.txtColumn {
  column-count: 2;
  column-gap: 5rem; }

/* HOME */
/*TECH HOME */
.sectionTechnology {
  position: relative;
  width: 100%;
  margin-top: 1px;
  height: 62rem;
  text-align: center;
  background-image: url("../images/bg_ConstructionTechnology.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover; }

#techSlide {
  width: 95%;
  margin: 20rem auto 1rem auto; }

.slider {
  position: relative;
  width: 20rem;
  height: 18rem;
  text-align: center; }

/* border: solid 1px red; background-color: #FFFFFF; */
.slider-icon {
  background-color: rgba(255, 204, 0, 0.75);
  height: 5rem;
  background-repeat: no-repeat;
  background-position: center center; }

.slider-desc {
  position: relative;
  background-color: #ffcc00;
  height: 13rem; }

.slider-desc-text {
  width: 80%;
  padding-top: 2rem;
  margin-left: auto;
  margin-right: auto; }

.slider-desc-text p {
  margin: 0px;
  font-family: "robotomedium", Arial, sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 140%; }

.slider-desc-text p.head {
  margin: 0px 0px 3px 0px;
  font-family: "robotobold", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  line-height: 110%; }

.slider-icon-save {
  background-image: url("../images/techIcon_save.png"); }

.slider-icon-time {
  background-image: url("../images/techIcon_time.png"); }

.slider-icon-quality {
  background-image: url("../images/techIcon_quality.png"); }

.slider-icon-recycle {
  background-image: url("../images/techIcon_recycle.png"); }

.slider-icon-green {
  background-image: url("../images/techIcon_green.png"); }

/* SMALL LARGE SCALE HOME */
.sectionScale {
  position: relative;
  width: 100%;
  margin-top: 1px;
  height: 50rem;
  text-align: center;
  background-image: url("../images/bg_SmallLargeScale.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover; }

#scaleOverlay {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: right;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1000; }

#overlay_Scale {
  width: 225px;
  margin: 18rem 2rem 2rem 10rem; }

#overlay_Scale p {
  font-family: "robotoregular", Arial, sans-serif;
  font-size: 3rem;
  color: #ffcc00;
  text-align: center; }

/* VIDEO HOME */
.vid-home {
  margin-top: 1rem;
  position: relative;
  padding-bottom: 52%;
  padding-top: 30px;
  height: 0; }

.vid-home iframe,
.vid-home object,
.vid-home embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ABOUT - VISION */
.sectionVision {
  position: relative;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 1px;
  height: 65rem;
  text-align: center;
  background-image: url("../images/bg_Vision.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover; }

#visionOverlay {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 30%;
  background-color: rgba(255, 204, 0, 0.95);
  z-index: 1000; }

#visionOverlay-inner {
  padding: 4rem; }

#visionOverlay-inner h1, #visionOverlay-inner p {
  text-align: center;
  color: #FFFFFF; }

/* ABOUT TEAM */
.team {
  padding: 3rem;
  background-color: #FFFFFF; }

p.team-name {
  color: #ffcc00;
  font-size: 2rem;
  font-family: "robotobold", Arial, sans-serif;
  text-align: left;
  border-style: dotted;
  border-width: 0px 0px 1px 0px;
  border-color: #0f0f0f;
  padding-bottom: 2rem;
  margin-bottom: 2rem; }

p.team-name span {
  color: #272727;
  font-size: 1.8rem;
  font-family: "robotoregular", Arial, sans-serif;
  font-style: italic; }

p.team-desc {
  color: #272727;
  text-align: justify; }

/*SERVICES */
.sectionLowCost {
  position: relative;
  width: 100%;
  margin-top: 1px;
  height: 70rem;
  text-align: center;
  background-image: url("../images/bg_LowCostNamibia.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover; }

.lowcost-light {
  padding: 3rem;
  background-color: #ffcc00;
  border-radius: 4rem; }

#lowcostSlide {
  width: 95%;
  margin: 10rem auto 1rem auto; }

.slider {
  position: relative;
  width: 20rem;
  height: 18rem;
  text-align: center; }

/* border: solid 1px red; background-color: #FFFFFF; */
.slider-desc {
  position: relative;
  background-color: #272727;
  height: 16rem; }

.slider-desc-text {
  width: 80%;
  padding-top: 2rem;
  margin-left: auto;
  margin-right: auto; }

.slider-desc-text p {
  margin: 0px;
  font-family: "robotoregular", Arial, sans-serif;
  color: #ffcc00;
  font-size: 1.8rem;
  text-align: center;
  line-height: 140%; }

/* SERVICES - TECHNOLOGY */
.servicestech-subhead {
  display: inline-block;
  margin: 0rem auto;
  padding: 1rem 2rem;
  background-color: #272727;
  color: #fff;
  font-size: 2rem;
  border-radius: 1rem; }

.servicestech-colWrapper {
  position: relative;
  width: 100%;
  margin-top: 3rem;
  overflow: hidden; }

.servicestech-col {
  float: left;
  width: 32%;
  margin-right: 2%; }

.servicestech-col .imgDiv {
  text-align: center; }

.servicestech-col:last-child {
  margin-right: 0%; }

.services-tech-list {
  background-image: url("../images/bullet.png");
  background-repeat: no-repeat;
  margin-bottom: 15px; }

.services-tech-list-r {
  text-align: right;
  padding-right: 2.5rem;
  background-position: right; }

.services-tech-list-l {
  text-align: left;
  padding-left: 2.5rem;
  background-position: left; }

/* SERVICES - PROCESS */
.processWrapper {
  text-align: center; }

.process {
  position: relative;
  display: inline-block;
  width: 27rem;
  height: 37rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  background-repeat: no-repeat;
  background-size: cover; }

.process-fill {
  background-image: url("../images/process_Fill.jpg"); }

.process-compact {
  background-image: url("../images/process_Compact.jpg"); }

.process-level {
  background-image: url("../images/process_Level.jpg"); }

.process-move {
  background-image: url("../images/process_Move.jpg"); }

.processOverlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 204, 0, 0.85); }

.processOverlay p {
  margin: 1rem;
  font-family: "robotobold", Arial, sans-serif;
  font-size: 2rem;
  color: #272727;
  text-align: center; }

/* VIDEO - home */
.videoWrapper {
  width: 80%;
  margin: 0rem auto; }

.video-container {
  position: relative;
  padding-bottom: 52%;
  padding-top: 30px;
  height: 0; }

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* VIDEOS */
p.video-intro {
  margin-top: 4rem;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-style: dotted;
  border-color: #696969;
  border-width: 0px 0px 1px 0px;
  text-align: center; }

/*http://woosterwebdesign.com/responsive-youtube-player-with-playlist/ */
/* MAKE RESPONSIVE*/
.vid-container {
  position: relative;
  padding-bottom: 52%;
  padding-top: 30px;
  height: 0; }

.vid-container iframe,
.vid-container object,
.vid-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* the thumbs*/
.vid-item {
  display: block;
  width: 148px;
  height: 148px;
  float: left;
  margin: 0;
  padding: 10px; }

.thumb {
  overflow: hidden;
  height: 84px;
  cursor: pointer;
  cursor: hand; }

.thumb img {
  width: 100%;
  position: relative;
  top: -13px; }

.vid-item .desc {
  color: #272727;
  line-height: 120%;
  font-size: 13px;
  margin-top: 5px; }

/*SCROLL*/
.vid-list-container {
  width: 92%;
  overflow: hidden;
  margin-top: 20px;
  margin-left: 4%;
  padding-bottom: 20px; }

/*In this case the width of each item in the vid-list is 168px. So just multiply the total number of videos in your list by 168 to get your vid-list width*/
.vid-list {
  width: 1344px;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0; }

/* arrows */
.arrows {
  position: relative;
  width: 100%; }

.arrow-left:hover, .arrow-right:hover {
  background-color: #CCC; }

.arrow-left {
  color: #fff;
  position: absolute;
  background-color: #777;
  padding: 15px;
  left: -25px;
  top: -130px;
  z-index: 99;
  background-image: url("../images/arrowLeft.png");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer; }

.arrow-right {
  color: #fff;
  position: absolute;
  background-color: #777;
  padding: 15px;
  right: -25px;
  top: -130px;
  z-index: 100;
  background-image: url("../images/arrowRight.png");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer; }

.panel {
  display: none;
  background-color: #FFFFFF;
  margin-bottom: 1rem; }

/*PANEL DROP */
.panelInner {
  padding: 2rem; }

.panelHead {
  position: relative;
  padding: 1.6rem 5rem 1.7rem 10rem;
  margin-top: 1rem;
  background-color: #d6d6d6;
  min-height: 6rem;
  font-family: "robotobold", Arial, sans-serif;
  font-style: italic;
  color: #ffcc00;
  text-align: left;
  font-size: 1.7rem;
  border-radius: 1px;
  background-repeat: no-repeat;
  background-position: 1rem 0rem;
  cursor: pointer;
  transition: .3s; }

.panelHead:hover {
  background-color: #f4f4f4; }

.panelArrow {
  display: inline-block;
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0px 0px;
  border-color: #ffcc00;
  transform: rotate(135deg);
  transition: .3s; }

/*DROP DOWN*/
/* used in Admin */
.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  cursor: pointer;
  transition: transform .3s; }

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg); }

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

/* FOOTER */
.footer-slogan {
  background-color: #ffcc00;
  margin-top: 1px;
  padding: 2rem;
  color: #FFFFFF;
  font-family: "robotomedium", Arial, sans-serif;
  font-size: 2.5rem;
  text-align: center; }

.colFooterWrapper {
  width: 100%;
  overflow: hidden; }

.colFooter {
  float: left;
  width: 32%;
  margin-right: 1%; }

.colFooter:last-child {
  margin-right: 0%; }

.footer-logo {
  width: auto; }

.footer-Icon {
  vertical-align: middle;
  margin-right: 8px; }

.footer-quicklinks {
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-style: solid;
  border-color: #ffcc00;
  border-width: 0px 0px 0px 3px; }

a.footerlink {
  color: #272727;
  font-family: "robotomedium", Arial, sans-serif;
  line-height: 160%;
  text-decoration: none;
  font-weight: normal;
  transition: .2s; }

a.footerlink:link {
  color: #272727;
  text-decoration: none; }

a.footerlink:visited {
  color: #272727;
  text-decoration: none; }

a.footerlink:active {
  color: #272727;
  text-decoration: none; }

a.footerlink:hover {
  color: #ffcc00;
  text-decoration: none; }

.footer-copy {
  margin: 5rem 1rem 5rem 1rem;
  color: #696969;
  font-size: 1.4rem;
  text-align: center; }

/*SCROLL TO TOP */
.scrollToTop {
  display: none;
  width: 5rem;
  position: fixed;
  right: 0rem;
  bottom: 0rem;
  background-color: #696969;
  font-size: 1.4rem;
  color: #FFFFFF;
  padding: .6rem;
  border-style: solid;
  cursor: pointer;
  cursor: hand;
  z-index: 100; }

.scrollToTop:hover {
  background-color: #ffcc00; }

/* COOKIE BANNER */
#cookieBanner {
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 10px 14px 5px 16px;
  background-image: url("../images/trans_Black.png");
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 1011; }

#cookieBanner p {
  margin: 0px;
  padding: 15px;
  color: #FFFFFF;
  font-size: 13px; }

#cookieBanner a {
  font-size: 13px; }

#cookieBanner p.cookieButtons {
  margin: 0px;
  padding: 0px 15px;
  color: #FFFFFF; }

#cookieBanner button {
  margin: 0px;
  padding: 5px 15px 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  cursor: hand;
  background-color: #696969;
  font-size: 16px;
  color: #FFFFFF;
  border-width: 0px;
  transition: all .3s; }

#cookieBanner button:hover {
  background-color: #d6d6d6; }

#cookieBanner button.accept {
  margin: 0px;
  padding: 5px 15px 8px 42px;
  color: #FFFFFF;
  background-color: #ffcc00;
  border-width: 0px;
  background-image: url("../images/icon_Cookie.png");
  background-repeat: no-repeat;
  background-position: 12px center; }

#cookieBanner button.accept:hover {
  background-color: #ffcc00; }

button.accept {
  margin: 0px;
  padding: 5px 15px 8px 42px;
  border-radius: 8px;
  cursor: pointer;
  cursor: hand;
  background-color: #ffcc00;
  font-size: 16px;
  color: #FFFFFF;
  border-width: 0px;
  background-image: url("../images/icon_Cookie.png");
  background-repeat: no-repeat;
  background-position: 12px center;
  transition: all .3s; }

button.accept:hover {
  background-color: #ffda22; }

.cookieHide {
  display: none; }

.cookieShow {
  display: block; }

.footerCookieChange {
  margin: 4rem 0rem 1rem 0rem;
  text-align: center; }

button.cookieChange {
  margin: 0px auto;
  padding: 5px 15px 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  cursor: hand;
  background-color: transparent;
  font-size: 14px;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFF;
  transition: all .3s; }

button.cookieChange:hover {
  background-color: #ffda22; }

/*$grid-width: 114rem;
$gutter-vertical: 8rem;
$gutter-vertical-small: 6rem;
$gutter-horizontal: 6rem;*/
/* MEDIA QUERIES ****************************************************************************/
@media (max-width: 1650px) {
  /*SLIDE*/
  #slideOverlay {
    width: 25%; }
  #overlay_Finn {
    float: right;
    margin: 25rem 2rem 2rem 2rem; }
  /*PAGES*/
  #slideOverlay_Page {
    width: 25%; }
  /* SCALE HOME */
  #scaleOverlay {
    width: 25%; } }

@media (max-width: 1350px) {
  /*SLIDE*/
  #slideOverlay {
    width: 35%; }
  #overlay_Finn {
    float: right;
    margin: 25rem 2rem 2rem 2rem; }
  /* SCALE HOME */
  #scaleOverlay {
    width: 35%; }
  /*PAGES*/
  #slideOverlay_Page {
    width: 35%; }
  /* ABOUT - VISION */
  .sectionVision {
    height: 60rem; }
  #visionOverlay {
    width: 40%; } }

@media (max-width: 1280px) {
  /* SERVICES - PROCESS */
  .processWrapper {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto; } }

@media (max-width: 1280px) {
  /*MAIN STRUCTURAL DIVS*/
  .innerWrapper {
    width: 100%; }
  /*TECH HOME */
  #techSlide {
    width: 90%;
    margin: 20rem auto 1rem auto; }
  /*SERVICES */
  #lowcostSlide {
    width: 90%;
    margin: 10rem auto 1rem auto; }
  /* SERVICES - TECHNOLOGY */
  .servicestech-col .imgDiv img {
    width: 100%; } }

@media only screen and (max-width: 1050px) {
  /*MAIN PIC*/
  .mp-finnbuilder {
    background-image: url("../images/pic_FinnBuilder_M.jpg"); }
  .mp-building {
    background-image: url("../images/pic_buildingServices_M.jpg"); }
  .mp-lowcost {
    background-image: url("../images/pic_lowCostHousing_M.jpg"); }
  /*SLIDE*/
  #slideOverlay {
    width: 100%;
    height: 80px;
    right: 0;
    bottom: 0;
    clip-path: none;
    text-align: center; }
  #overlay_Finn {
    float: none;
    width: 100%;
    margin: 1.2rem 1rem 1rem 1rem; }
  #overlay_Finn p {
    font-size: 10px;
    margin-bottom: 2px;
    text-align: center; }
  #overlay_Finn img {
    width: 150px; }
  #slideOverlay_Page {
    width: 100%;
    height: 60px;
    right: 0;
    bottom: 0;
    clip-path: none;
    text-align: center; }
  #overlay_Page {
    float: none;
    width: 100%;
    margin: 1.2rem 0rem 1rem 0rem; }
  #overlay_Page p {
    font-size: 2rem;
    margin-bottom: 2px;
    text-align: center; }
  #mainPicWrapper_narrow #overlay_Page {
    margin: 1.2rem 1rem 1rem 1rem; }
  #mainPicWrapper_narrow #slideOverlay_Page {
    clip-path: none; }
  /*TECH HOME */
  .sectionTechnology {
    height: 62rem;
    background-image: url("../images/bg_ConstructionTechnology_M.jpg"); }
  /* SMALL LARGE SCALE HOME */
  .sectionScale {
    height: 50rem;
    text-align: center;
    background-image: url("../images/bg_SmallLargeScale_M.jpg"); }
  #scaleOverlay {
    right: auto;
    width: auto;
    height: auto;
    margin-left: 50%;
    margin-top: 25rem;
    transform: translate(-50%, -50%);
    text-align: center;
    clip-path: none; }
  #overlay_Scale {
    width: auto;
    margin: 2rem 2rem 2rem 2rem; }
  #overlay_Scale p {
    font-size: 2rem;
    text-align: center; }
  /* VISION ABOUT */
  .sectionVision {
    background-image: url("../images/bg_Vision_M.jpg"); }
  /*SERVICES */
  .sectionLowCost {
    background-image: url("../images/bg_LowCostNamibia_M.jpg"); } }

@media only screen and (max-width: 1000px) {
  /*MAIN STRUCTURAL DIVS*/
  #menuIcon {
    top: 2rem; }
  /* NAVIGATION */
  #menuIcon {
    display: block; }
  #navClose {
    display: block; }
  #menuWrapper {
    position: absolute;
    margin-top: 0px;
    top: 0rem;
    left: -2rem;
    height: 100vh;
    width: 0px;
    padding: 1rem 1rem 1rem 1rem;
    background-color: rgba(20, 20, 20, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
    z-index: 2010; }
  #navDiv {
    position: relative;
    background-color: transparent;
    width: 100%;
    margin-top: 5rem;
    float: none; }
  a.nav {
    display: block;
    float: none;
    padding: 1px 10px 12px 50px;
    margin-bottom: 2.5rem;
    margin-right: 1rem;
    color: #FFFFFF;
    font-size: 1.7rem;
    text-decoration: none;
    border-style: dotted;
    border-width: 0px 0px 1px 0px;
    border-color: #FFFFFF;
    transition: 0.3s;
    line-height: 120%; }
  a.nav:hover {
    text-decoration: none;
    transform: scale(1, 1);
    transform: translateX(8px); }
  a.navLive {
    display: block;
    float: none;
    padding: 1px 12px 12px 50px;
    margin-bottom: 2.5rem;
    margin-right: 1rem;
    font-size: 1.7rem;
    font-family: "robotobold", Arial, sans-serif;
    text-decoration: none;
    border-style: dotted;
    border-width: 0px 0px 1px 0px;
    border-color: #FFFFFF;
    transition: 0.3s;
    line-height: 120%; }
  .innerPadding {
    padding: 2.5rem 1.5rem 2.5rem 1.5rem; }
  .innerPadding2 {
    padding: 3rem 1.5rem 3.5rem 1.5rem; }
  .innerPadding3 {
    padding: 4rem 1.5rem 4.5rem 1.5rem; }
  h1 {
    margin: 0rem 0rem 2rem 0rem;
    font-size: 3.2rem; }
  /* text-shadow: 1px 1px 2px rgba(0,0,0,0.15);*/
  h2 {
    margin: 0rem 0rem 3.5rem 0rem;
    font-size: 2.8rem; }
  h3 {
    font-size: 2.1rem; }
  h3 {
    font-size: 1.6rem; }
  p {
    font-size: 1.6rem; }
  ul li {
    font-size: 1.5rem; }
  div.narrowCentre {
    width: 85%; }
  div.narrowLeft {
    width: 85%; }
  a {
    font-size: 1.6rem; }
  ul {
    font-size: 1.6rem; }
  /*SERVICES */
  .sectionLowCost {
    height: 60rem; }
  .lowcost-light {
    border-radius: 3rem; }
  #lowcostSlide {
    margin: 6rem auto 1rem auto; }
  .slider-desc-text p {
    font-size: 1.6rem; }
  /* SERVICES - TECHNOLOGY */
  .services-tech-list {
    background-image: url("../images/bullet_s.png");
    font-size: 1.5rem; }
  .services-tech-list-r {
    padding-right: 1.5rem;
    background-position: right 8px; }
  .services-tech-list-l {
    padding-left: 1.5rem;
    background-position: left 8px; } }

@media only screen and (max-width: 900px) {
  /* ABOUT - VISION */
  .sectionVision {
    height: 60rem; }
  #visionOverlay {
    right: 5%;
    width: 45%; }
  /* FOOTER */
  .colFooterWrapper {
    width: 100%;
    overflow: hidden; }
  .colFooter {
    float: none;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    text-align: center; }
  .colFooter:last-child {
    margin-right: auto; }
  .colFooter p {
    text-align: center; }
  .footer-logo {
    width: auto;
    margin-bottom: 3rem; }
  .footer-Icon {
    vertical-align: middle;
    margin-right: 8px; }
  .footer-quicklinks {
    margin-top: 3rem;
    padding-top: 3rem;
    margin-bottom: 2rem;
    padding-left: 0rem;
    border-style: solid;
    border-color: #ffcc00;
    border-width: 1px 0px 0px 0px;
    text-align: center; }
  .footer-quicklinks br {
    display: none; }
  a.footerlink {
    display: inline-block;
    margin-right: 2rem; }
  /* SERVICES - PROCESS */
  .processWrapper {
    width: auto;
    max-width: 60rem;
    margin-right: auto;
    margin-left: auto; }
  .process {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 266px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    background-repeat: no-repeat;
    background-size: cover; }
  .process-fill {
    background-image: url("../images/process_Fill_s.jpg"); }
  .process-compact {
    background-image: url("../images/process_Compact_s.jpg"); }
  .process-level {
    background-image: url("../images/process_Level_s.jpg"); }
  .process-move {
    background-image: url("../images/process_Move_s.jpg"); }
  .processOverlay p {
    font-size: 1.6rem; } }

@media only screen and (max-width: 800px) {
  /*MAIN STRUCTURAL DIVS*/
  .col3 {
    float: none;
    width: 95%;
    margin: 2.5rem auto; }
  .col3:last-child {
    margin: 2.5rem auto; }
  /*PANEL DROP */
  .panelHead {
    padding: 1.5rem 6rem 1.3rem 7rem;
    min-height: 6rem;
    font-size: 1.6rem;
    background-position: 1rem -3.5rem; }
  .panelArrow {
    width: 1.2rem;
    height: 1.2rem; } }

@media only screen and (max-width: 720px) {
  /*MAIN STRUCTURAL DIVS*/
  .colWrapper {
    width: 100%;
    overflow: hidden; }
  .colLeft {
    float: none;
    width: 80%;
    margin: 0px auto 10px auto; }
  .colRight {
    float: none;
    width: 80%;
    margin: 10px auto 0px auto; }
  /* CONTENT LINKS */
  a {
    font-size: 1.5rem; }
  a.nav {
    font-size: 1.5rem; }
  a.navLive {
    font-size: 1.5rem; }
  /* ABOUT - VISION */
  .sectionVision {
    height: 60rem; }
  #visionOverlay {
    right: auto;
    width: 60%;
    margin-left: 50%;
    transform: translateX(-50%); }
  /* SERVICES - TECHNOLOGY */
  .services-tech-list {
    margin-bottom: 8px;
    line-height: 120%; } }

@media only screen and (max-width: 660px) {
  /*SERVICES */
  .lowcost-light {
    padding: 2rem;
    border-radius: 3rem; }
  #lowcostSlide {
    margin: 4rem auto 1rem auto; } }

@media only screen and (max-width: 600px) {
  /*MAIN STRUCTURAL DIVS*/
  #topBar {
    height: 10.5rem; }
  #logoDiv img {
    width: 220px; }
  /*MAIN PIC*/
  .mp-finnbuilder {
    background-image: url("../images/pic_FinnBuilder_S.jpg"); }
  .mp-building {
    background-image: url("../images/pic_buildingServices_S.jpg"); }
  .mp-lowcost {
    background-image: url("../images/pic_lowCostHousing_S.jpg"); }
  /*TECH HOME */
  .sectionTechnology {
    height: 62rem;
    background-image: url("../images/bg_ConstructionTechnology_S.jpg"); }
  .slider {
    width: 18rem; }
  /* home and services-lowcost sliders*/
  /* SMALL LARGE SCALE HOME */
  .sectionScale {
    height: 40rem;
    text-align: center;
    background-image: url("../images/bg_SmallLargeScale_S.jpg"); }
  #scaleOverlay {
    margin-top: 20rem; }
  /* VISION ABOUT */
  .sectionVision {
    background-image: url("../images/bg_Vision_S.jpg"); }
  /*SERVICES */
  .sectionLowCost {
    background-image: url("../images/bg_LowCostNamibia_S.jpg"); } }

@media only screen and (max-width: 550px) {
  /*MAIN STRUCTURAL DIVS*/
  .colLeft {
    float: none;
    width: 100%;
    margin: 0px auto 10px auto; }
  .colRight {
    float: none;
    width: 100%;
    margin: 10px auto 0px auto; }
  /*SLIDE*/
  #slideWrapper {
    height: auto; }
  #slide {
    height: 45rem; }
  #mainPicWrapper {
    height: auto; }
  #mainPic {
    height: 30rem; }
  #mainPicWrapper_narrow {
    height: auto; }
  #mainPicWrapper_narrow #mainPic {
    height: 20rem; }
  /*GENERAL*/
  h1 {
    font-size: 2.6rem; }
  h2 {
    font-size: 2.2rem; }
  h3 {
    font-size: 2rem; }
  p {
    font-size: 1.5rem; }
  a {
    font-size: 1.5rem; }
  ul {
    font-size: 1.5rem; }
  div.narrowCentre {
    width: 95%; }
  div.narrowLeft {
    width: 95%; }
  /*TECH HOME */
  .slider {
    width: 23rem; }
  /*and lowcost slider (Services)

    /*PANEL DROP */
  .panelHead {
    padding: 1.5rem 4.5rem 1rem 6rem;
    font-size: 1.5rem;
    background-position: .5rem -3.5rem; }
  .panelArrow {
    top: 2rem;
    right: 1.5rem; }
  /*SERVICES */
  .sectionLowCost {
    height: 55rem; }
  .lowcost-light {
    padding: 2rem;
    border-radius: 2rem; }
  #lowcostSlide .slider {
    height: 13rem; }
  .slider-desc-text p {
    font-size: 1.5rem; } }

@media only screen and (max-width: 520px) {
  /* ABOUT - VISION */
  .sectionVision {
    height: 50rem; }
  #visionOverlay {
    right: auto;
    width: 80%; }
  #visionOverlay-inner {
    padding: 3rem; }
  /* SERVICES - TECHNOLOGY */
  .servicestech-colWrapper {
    text-align: center; }
  .servicestech-col {
    float: none;
    width: 75%;
    margin-left: auto;
    margin-right: auto; }
  .servicestech-col:last-child {
    margin-right: auto; }
  .servicestech-col .imgDiv {
    margin: 2rem 0rem; }
  .services-tech-list {
    background-image: none;
    margin-bottom: 15px; }
  .services-tech-list-r {
    text-align: center;
    padding-right: 0rem; }
  .services-tech-list-l {
    text-align: center;
    padding-left: 0rem; } }

@media only screen and (max-width: 480px) {
  /*MAIN STRUCTURAL DIVS*/
  #topBar {
    height: 9.5rem; }
  #logoDiv img {
    width: 190px; } }

@media only screen and (max-width: 450px) {
  /*SLIDE*/
  #slide {
    height: 35rem; }
  #slideOverlay {
    height: 70px; }
  #overlay_Finn {
    float: none;
    width: 100%;
    margin: 1.2rem 1rem 1rem 1rem; }
  #overlay_Finn p {
    font-size: 9px; }
  #overlay_Finn img {
    width: 120px; }
  /* SERVICES - PROCESS */
  .processWrapper {
    max-width: 30rem; }
  .process {
    margin-right: 0rem; } }

@media only screen and (max-width: 400px) {
  /*TECH HOME */
  .slider {
    width: 20rem; }
  /* SMALL LARGE SCALE HOME */
  #scaleOverlay {
    width: 60%; }
  #overlay_Scale p {
    font-size: 1.7rem; }
  /* ABOUT - VISION */
  #visionOverlay {
    right: auto;
    width: 90%; }
  #visionOverlay-inner {
    padding: 2rem; }
  /*SERVICES */
  .sectionLowCost {
    height: 62rem; }
  #lowcostSlide .slider {
    width: 15rem;
    height: 18rem; }
  .slider-desc-text {
    padding-top: 1rem; }
  /* SERVICES - TECHNOLOGY */
  .servicestech-col {
    width: 85%; } }

@media only screen and (max-width: 350px) {
  /*TECH HOME */
  .slider {
    width: 17rem; }
  /*and low cost slider - services */
  /*SERVICES */
  #lowcostSlide .slider {
    height: 18rem; } }

@media only screen and (max-width: 320px) {
  /*TECH HOME */
  .slider {
    width: 16rem; }
  /*and low cost slider - services */
  #lowcostSlide .slider {
    height: 18rem; } }
