/*$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: "open_sansregular", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #797979;
  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: "open_sansregular", 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: "open_sansregular", 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.buttonWhiteOutline {
  display: inline-block;
  font-size: 2.2rem;
  font-family: "open_sansbold", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  border-style: solid;
  border-color: #fff;
  border-width: 2px;
  border-radius: 2rem;
  padding: 1rem 6rem;
  margin: 2rem 1rem;
  transition: all .4s; }

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

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

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

a.buttonWhiteOutline:hover {
  background-color: rgba(252, 151, 61, 0.6);
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

@media only screen and (max-width: 900px) {
  a.buttonWhiteOutline {
    font-size: 1.6rem; } }

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

a.buttonOrange:link {
  color: #FFFFFF;
  text-decoration: none; }

a.buttonOrange:visited {
  color: #FFFFFF;
  text-decoration: none; }

a.buttonOrange:active {
  color: #FFFFFF;
  text-decoration: none; }

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

@media only screen and (max-width: 900px) {
  a.button {
    font-size: 1.5rem; } }

a.buttonOrangeOutline {
  display: inline-block;
  font-size: 2rem;
  font-family: "open_sanssemi", Arial, sans-serif;
  color: #fc973d;
  text-decoration: none;
  background-color: transparent;
  border: solid 2px #fc973d;
  border-radius: 6rem;
  padding: 1rem 2.5rem;
  margin: 2rem 0rem 1rem 0rem;
  transition: all .4s;
  cursor: pointer; }

a.buttonOrangeOutline:link {
  color: #fc973d;
  text-decoration: none; }

a.buttonOrangeOutline:visited {
  color: #fc973d;
  text-decoration: none; }

a.buttonOrangeOutline:active {
  color: #fc973d;
  text-decoration: none; }

a.buttonOrangeOutline:hover {
  background-color: #fc973d;
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.4); }

@media only screen and (max-width: 900px) {
  a.buttonOrangeOutline {
    font-size: 1.6rem;
    margin: 1rem 0rem 1rem 0rem; } }

@media only screen and (max-width: 500px) {
  a.buttonOrangeOutline {
    padding: .8rem 2rem; } }

a.buttonOrangeOutlineLive {
  display: inline-block;
  font-size: 2rem;
  font-family: "open_sanssemi", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #fc973d;
  border: solid 2px #fc973d;
  border-radius: 6rem;
  padding: 1rem 2.5rem;
  margin: 2rem 0rem 1rem 0rem;
  transition: all .4s;
  cursor: pointer; }

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

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

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

a.buttonOrangeOutlineLive:hover {
  background-color: #fc973d;
  color: #fff; }

@media only screen and (max-width: 900px) {
  a.buttonOrangeOutlineLive {
    font-size: 1.6rem;
    margin: 1rem 0rem 1rem 0rem; } }

@media only screen and (max-width: 500px) {
  a.buttonOrangeOutlineLive {
    padding: .8rem 2rem; } }

a.buttonBook {
  display: inline-block;
  font-size: 2rem;
  font-family: "open_sanssemi", Arial, sans-serif;
  color: #fc973d;
  text-decoration: none;
  background-color: #2f2f2f;
  border: solid 2px #fc973d;
  border-radius: 6rem;
  padding: 1rem 2.5rem 1rem 6rem;
  margin: 2rem 0rem 1rem 0rem;
  background-image: url("../images/icon_Calendar.png");
  background-repeat: no-repeat;
  background-position: 25px center;
  transition: all .4s;
  cursor: pointer; }

a.buttonBook:link {
  color: #fc973d;
  text-decoration: none; }

a.buttonBook:visited {
  color: #fc973d;
  text-decoration: none; }

a.buttonBook:active {
  color: #fc973d;
  text-decoration: none; }

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

.none {
  padding: 1rem 1rem 1rem 1rem; }

.back {
  padding: 1rem 1rem 1rem 4.5rem;
  background-image: url("../images/arrow-back.png");
  background-repeat: no-repeat;
  background-position: 5px center; }

.next {
  padding: 1rem 4.5rem 1rem 1rem;
  background-image: url("../images/arrow-next.png");
  background-repeat: no-repeat;
  background-position: right center; }

@media only screen and (max-width: 700px) {
  a.buttontourlink {
    font-size: 1.6rem; } }

@media only screen and (max-width: 450px) {
  a.buttontourlink {
    font-size: 1.5rem; } }

/*orangeSubmit Button*/
.buttonSubmit {
  display: inline-block;
  font-size: 2.2rem;
  font-family: "open_sansbold", Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: #fc8a24;
  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: #fc8a24;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

@media only screen and (max-width: 700px) {
  .buttonSubmit {
    font-size: 2rem; } }

@media only screen and (max-width: 500px) {
  .buttonSubmit {
    font-size: 1.8rem; } }

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

.fField {
  margin-top: 15px; }

.inputDiv {
  font-size: 1.6rem;
  line-height: 140%; }

label {
  font-family: "open_sansregular", Arial, sans-serif;
  font-size: 1.6rem;
  margin-top: 14px;
  color: #fff;
  text-align: left; }

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

@media only screen and (max-width: 1000px) {
  label {
    font-size: 1.5rem; } }

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

#bookingForm textarea, #bookingForm input[type="text"], #bookingForm input[type="password"], #bookingForm input[type="number"], #bookingForm input[type="date"], #bookingForm select, #bookingForm option {
  background-color: #FFFFFF;
  color: #797979; }

#selfDriveForm textarea, #selfDriveForm input[type="text"], #selfDriveForm input[type="password"], #selfDriveForm input[type="number"], #selfDriveForm input[type="date"], #selfDriveForm select, #selfDriveForm option {
  background-color: #FFFFFF;
  color: #797979; }

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

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

input.small {
  padding: 3px;
  font-size: 12px;
  background-color: transparent;
  color: #797979; }

::placeholder {
  color: white;
  opacity: .6;
  /* Firefox */ }

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: white;
  opacity: .6; }

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

#refresh:hover {
  color: #fc973d; }

/*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: #2f2f2f;
  font-size: 1.3rem; }

/*form feedback error*/
.successMsg {
  background-color: #FFF;
  border-style: dotted;
  border-color: #80b641;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px;
  /* padding: 1rem 1rem 1rem 3.5rem;  */ }

.errorMsg {
  background-color: #FFF;
  border-style: dotted;
  border-color: #ff0000;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px; }

#message p {
  margin: 0px;
  font-size: 1.4rem;
  text-align: center;
  color: #797979; }

#message p.big {
  margin: 0px 0px 5px 0px;
  padding: 8px;
  font-size: 1.7rem;
  text-align: center;
  color: #797979;
  background-color: #FFF;
  border-style: dotted;
  border-color: #797979;
  border-width: 1px;
  border-radius: 4px; }

.checkmark {
  text-align: center; }

/* SELF DRIVE MULTIPHASE FORM */
/*self drive section*/
div.divideH {
  color: #797979;
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-style: dotted;
  border-width: 0px 0px 1px 0px; }

@media only screen and (max-width: 550px) {
  div.divideH {
    font-size: 1.5rem; } }

#formPhase1 {
  display: block; }

#formPhase2 {
  display: none; }

#formPhase3 {
  display: none; }

#formPhase4 {
  display: none; }

#formPhase5 {
  display: none; }

.formPhaseIcon {
  width: 95px;
  float: right;
  margin: -110px 0px 15px 15px; }

@media only screen and (max-width: 1000px) {
  .formPhaseIcon {
    width: 60px;
    margin: -80px 0px 15px 15px; } }

@media only screen and (max-width: 550px) {
  .formPhaseIcon {
    width: 60px;
    margin: -65px 0px 0px 10px; } }

.optionsWrapper {
  background-color: #FFFFFF;
  width: 100%;
  padding: 5px;
  margin: 0px auto; }

.bottomBar {
  overflow: hidden;
  padding-bottom: 20px; }

.phaseButton {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  cursor: hand;
  transition: .3s; }

.phaseButton:hover {
  opacity: 0.7; }

.phaseButton-next {
  float: right;
  padding-right: 25px;
  background-image: url("../images/arrow_form-next.png");
  background-repeat: no-repeat;
  background-position: right center; }

.phaseButton-prev {
  float: left;
  padding-left: 25px;
  background-image: url("../images/arrow_form-previous.png");
  background-repeat: no-repeat;
  background-position: left center; }

#selfBackArrow {
  cursor: pointer;
  cursor: hand;
  transition: .3s; }

#selfBackArrow:hover {
  opacity: 0.7; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/* FONT - Generated by Font Squirrel (http://www.fontsquirrel.com) America/New_York */
@font-face {
  font-family: 'open_sansregular';
  src: url("../Fonts/OpenSans-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sanslight';
  src: url("../Fonts/OpenSans-Light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sansbold';
  src: url("../Fonts/OpenSans-Bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sanssemi';
  src: url("../Fonts/OpenSans-Semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sansxtra';
  src: url("../Fonts/OpenSans-ExtraBold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'cinzelregular';
  src: url("../Fonts/Cinzel-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

html {
  background-color: #2f2f2f; }

html, body {
  padding: 0;
  margin: 0;
  color: #797979;
  background-image: url("../images/bg_Footer.jpg");
  font-family: "open_sansregular", Arial, sans-serif; }

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

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

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

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

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

a.light {
  color: #fc973d; }

a.light:link {
  color: #fc973d;
  text-decoration: none; }

a.light:visited {
  color: #fc973d;
  text-decoration: none; }

a.light:active {
  color: #fc973d;
  text-decoration: none; }

a.light:hover {
  color: #fff;
  text-decoration: none; }

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

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

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

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

a.white:hover {
  color: #fc8a24;
  text-decoration: none; }

a.smallWhite {
  color: #FFFFFF;
  font-family: "open_sansbold", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 160%;
  text-decoration: none;
  transition: .2s; }

a.smallWhite:link {
  color: #FFFFFF;
  text-decoration: none; }

a.smallWhite:visited {
  color: #FFFFFF;
  text-decoration: none; }

a.smallWhite:active {
  color: #FFFFFF;
  text-decoration: none; }

a.smallWhite:hover {
  color: #fc8a24;
  text-decoration: none; }

/*MAIN STRUCTURAL DIVS*/
.innerWrapper {
  width: 1280px;
  margin-left: auto;
  margin-right: auto; }

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

.innerPadding2 {
  padding: 8rem 1.5rem 8rem 1.5rem; }

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

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

.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%; }

/* 2/3 col pics */
.colpic_3Wrapper {
  width: 100%;
  padding: 4rem 0rem;
  overflow: hidden; }

.colpic2_3 {
  float: left;
  width: 66%; }

.colpic1_3 {
  float: right;
  width: 33%;
  margin-right: 0; }

.colpic2_3 img {
  width: 100%; }

.colpic1_3 img {
  width: 100%; }

/*3 col pics */
.colpic_3Wrapper {
  width: 100%;
  margin: 4rem 0rem;
  overflow: hidden; }

.colpic_3Wrapper img {
  width: 100%; }

.colpic3 {
  float: left;
  width: 31%;
  margin: .5rem 1%; }

/* HEADER */
#logoDiv {
  position: absolute;
  top: 3rem;
  left: 1rem;
  z-index: 1000; }

/* NAVIGATION */
#menuWrapper {
  position: absolute;
  top: 100px;
  right: 0;
  width: 60%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  z-index: 1000; }

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

#navDiv {
  position: relative; }

/* CONTENT LINKS main nav links float: left; */
a.nav {
  position: relative;
  display: block;
  float: left;
  padding: 5px 12px 5px 12px;
  color: #2f2f2f;
  font-size: 1.8rem;
  font-family: "open_sansregular", 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: #fc8a24;
  text-decoration: none; }

/* transform: scale(1.01, 1.01);*/
a.nav:after {
  content: " ";
  background: #fc8a24;
  width: 0%;
  height: 2px;
  position: absolute;
  left: 12px;
  bottom: -7px;
  transition: all ease 0.4s; }

a.nav:hover:after {
  width: calc(100% - 24px); }

a.navLive {
  position: relative;
  display: block;
  float: left;
  padding: 5px 12px 5px 12px;
  color: #fc8a24;
  font-size: 1.8rem;
  font-family: "open_sansbold", 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: #797979;
  cursor: pointer;
  cursor: hand;
  transition: background-color .4s; }

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

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

/*SLIDE*/
/*home page slide*/
#slide {
  position: relative;
  width: 100%;
  height: 800px; }

#slideTextWrapper {
  position: absolute;
  width: 100%;
  top: 30rem;
  z-index: 1000; }

#slideText {
  width: 100%;
  padding: 0rem 1rem;
  font-family: "cinzelregular", Garamond, "Times New Roman", serif;
  color: #fff;
  font-size: 4.8rem;
  line-height: 120%;
  text-align: left;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); }

#slideTexture {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 70px;
  background-image: url("../images/bg_texture.png");
  background-repeat: repeat-x;
  background-position: bottom;
  z-index: 1000; }

/* HOME - OFFER */
/*MAIN PICS*/
#mainPic {
  position: relative;
  height: 70rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

/* box-shadow: 0px 10px 26px -8px rgba(0,0,0,0.75);*/
#mainPic-overlay {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  z-index: 100; }

#mainPic-overlay p {
  position: relative;
  display: inline-block;
  margin: 0rem auto;
  text-align: center;
  font-family: "open_sansregular", Arial, sans-serif;
  font-size: 6rem;
  color: #FFFFFF;
  line-height: 120%; }

#mainPic-overlay p:after {
  content: " ";
  background-color: #fc973d;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  bottom: -7px; }

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

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

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

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

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

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

/*GENERAL*/
h1 {
  position: relative;
  display: inline-block;
  margin: 0rem 0rem 6rem 0rem;
  font-family: "cinzelregular", Garamond, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 120%;
  color: #fc8a24;
  font-weight: normal; }

/* text-shadow: 1px 1px 2px rgba(0,0,0,0.15);*/
h1:after {
  position: absolute;
  content: " ";
  background: #ebebeb;
  width: 80%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: -10px; }

h1.topMargin {
  margin-top: 5rem; }

h2 {
  margin: 5rem 0rem 3rem 0rem;
  font-size: 3.6rem;
  color: #2f2f2f;
  font-family: "open_sanssemi", Arial, sans-serif;
  font-weight: normal;
  line-height: 120%; }

h3 {
  margin: 5rem 0rem 2rem 0rem;
  font-size: 2.8rem;
  color: #797979;
  font-family: "open_sanssemi", Arial, sans-serif;
  font-weight: normal;
  line-height: 120%; }

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

.marginTopNone {
  margin-top: 0px; }

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

p.center {
  text-align: center; }

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

.narrowWrapper {
  padding: 0rem 0rem 3rem 0rem; }

.narrow {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  text-align: center; }

.narrow p, h1 {
  text-align: center; }

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

hr {
  width: 90%;
  margin: 3rem auto;
  color: #fc8a24;
  background-color: transparent; }

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

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: "open_sansbold", 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: #797979; }

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; }

.orange {
  color: #fc8a24; }

div.white p {
  color: #fff; }

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

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

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

.hide {
  display: none; }

.showInline {
  display: inline-block; }

.show {
  display: block; }

.pad10 {
  padding: 1rem; }

.padBottom60 {
  padding-bottom: 6rem; }

.padBottom80 {
  padding-bottom: 8rem; }

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

div.buttonWrapper {
  margin: 3rem 0rem;
  padding-top: 3rem;
  border-style: dotted;
  border-width: 1px 0px 0px 0px;
  border-color: #d6d6d6;
  text-align: center; }

div.buttonWrapper2 {
  padding: 6rem 1rem;
  border-width: 1px 0px 0px 0px;
  border-color: #d6d6d6;
  text-align: center; }

/* HOME offer slider */
.sectionOffer {
  width: 100%;
  padding: 8rem 0rem 12rem 0rem;
  background-image: url("../images/bg_campDamaraland.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; }

.sectionOffer h2 {
  padding-bottom: 5rem; }

#offerSlide {
  width: 80%;
  text-align: center;
  padding: 4rem 1rem 4rem 1rem;
  margin-left: 10%; }

.slider {
  position: relative;
  margin: 2rem;
  height: 20rem;
  width: 20rem;
  background-color: rgba(252, 151, 61, 0.8);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center 20%;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.27);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.27);
  cursor: pointer;
  overflow: hidden;
  transition: .3s; }

/*width: 50rem*/
.slider:hover {
  background-color: rgba(252, 151, 61, 0.9);
  transform: scale(1.05, 1.05); }

.slider-pic-accom {
  background-image: url("../images/offerIcon_Accommodation.png"); }

.slider-pic-fac {
  background-image: url("../images/offerIcon_Facilities.png"); }

.slider-pic-act {
  background-image: url("../images/offerIcon_Binos.png"); }

.slider-pic-gal {
  background-image: url("../images/offerIcon_Photos.png"); }

.slider-text {
  margin-top: 45%;
  width: 100%;
  text-align: center;
  padding: 1rem;
  overflow: hidden; }

.slider-text p {
  font-family: "open_sansbold", Arial, sans-serif;
  font-size: 1.8rem;
  color: #FFF;
  line-height: 120%;
  text-align: center; }

a.offer {
  font-family: "open_sansbold", Arial, sans-serif;
  font-size: 1.8rem;
  color: #FFF;
  line-height: 120%;
  text-align: center; }

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

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

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

a.offer:hover {
  font-family: "open_sansbold", Arial, sans-serif;
  color: #fff;
  text-decoration: none; }

/* ACCOMMODATION */
.sectionEnviron {
  width: 100%;
  padding: 8rem 0rem 12rem 0rem;
  background-image: url("../images/bg_Room.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; }

.environ-Bloc {
  width: 40%;
  padding: 4rem;
  margin: 2rem;
  background-color: rgba(0, 0, 0, 0.8); }

/* ACTIVITIES */
.activityNamibia {
  position: relative;
  width: 100%;
  background-color: #ebebeb;
  overflow: hidden; }

.activityNamibia p {
  font-size: 1.7rem; }

.activityNamibia-textWrapper {
  position: absolute;
  width: 100%;
  z-index: 1000; }

.activityNamibia-text {
  margin-right: 55%;
  margin-left: 3rem; }

.activityNamibia-pic {
  float: right;
  height: 60rem;
  width: 50%;
  background-size: cover;
  background-position: center; }

.activityNamibia-pic-safari {
  background-image: url("../images/activity_Safari.jpg"); }

.activityNamibia-pic-twyfelfontein {
  background-image: url("../images/activity_Twyfelfontein.jpg"); }

.activityNamibia-pic-petrifiedforest {
  background-image: url("../images/activity_petrifiedForest.jpg"); }

.activityOther {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden; }

.activityOther p {
  font-size: 1.7rem; }

.activityOther-textWrapper {
  position: absolute;
  width: 100%;
  z-index: 2000; }

.activityOther-text {
  margin-left: 60%;
  margin-right: 3rem; }

.activityOther-pic {
  float: left;
  height: 60rem;
  width: 50%;
  background-size: cover;
  background-position: center; }

.activityOther-pic-desertelephants {
  background-image: url("../images/activity_DesertElephants.jpg"); }

.activityOther-pic-damaras {
  background-image: url("../images/activity_Damaras.jpg"); }

/* FACILITIES */
.sectionRates {
  width: 100%;
  padding: 8rem 0rem 12rem 0rem;
  background-image: url("../images/bg_Mountains.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; }

.tblRates td {
  font-size: 1.6rem;
  color: #FFFFFF;
  padding: .5rem;
  vertical-align: top; }

/* BOOK */
.sectionBook {
  width: 100%;
  padding: 8rem 0rem 12rem 0rem;
  background-image: url("../images/bg_Trail.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; }

/* CONTACT */
.sectionRoad {
  width: 100%;
  padding: 8rem 0rem 12rem 0rem;
  background-image: url("../images/bg_mountainRoad.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; }

/* PANEL */
.panel {
  display: none;
  background-color: #FFFFFF;
  color: #797979;
  padding-bottom: 1rem;
  border-style: solid;
  border-color: #797979;
  border-width: 0px 1px 0px 1px; }

.panel_form {
  background-color: #fafafa; }

.panel_grey {
  background-color: #fafafa; }

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

.panelHead {
  position: relative;
  padding: 1.6rem 5rem 1.6rem 1.6rem;
  margin-top: 0rem;
  background-color: #fc8a24;
  min-height: 6rem;
  font-family: "open_sanssemi", Arial, sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  border-style: solid;
  border-color: #fff;
  border-width: 1px 1px 0px 1px;
  cursor: pointer;
  transition: .3s; }

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

.panelHead_form {
  padding: 1.2rem 3rem 1.2rem 1.2rem;
  font-family: "open_sansregular", Arial, sans-serif;
  background-color: #69544d;
  min-height: 2rem;
  color: #fff;
  font-size: 1.5rem; }

.panelHead_form:hover {
  background-color: #8e7268; }

.last {
  border-bottom-width: 1px; }

.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: #fff;
  transform: rotate(135deg);
  transition: .3s; }

.panelArrow_form {
  width: .7rem;
  height: .7rem;
  border-color: white; }

/* FOOTER */
.sectionFooter {
  width: 100%;
  padding: 8rem 0rem 8rem 0rem;
  background-image: url("../images/bg_textureFooter.png");
  background-repeat: repeat-x;
  text-align: center; }

p.footer-contact {
  width: 100%;
  text-align: center;
  font-family: "cinzelregular", Garamond, "Times New Roman", serif;
  color: #FFF;
  line-height: 120%; }

p.footer-contact a {
  font-family: "cinzelregular", Garamond, "Times New Roman", serif; }

p.footer-contact img {
  vertical-align: middle; }

img.footer-logo {
  vertical-align: middle; }

p.footer-copy {
  margin: 12rem 0rem 2rem;
  text-align: center;
  font-size: 1.6rem;
  color: #FFFFFF; }

p.footer-copy span {
  color: #fca04d; }

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

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

/*$grid-width: 114rem;
$gutter-vertical: 8rem;
$gutter-vertical-small: 6rem;
$gutter-horizontal: 6rem;*/
/* MEDIA QUERIES ****************************************************************************/
@media (max-width: 1550px) {
  /* ACTIVITIES */
  .activityNamibia-text {
    margin-right: 55%;
    margin-left: 3rem; }
  .activityOther-text {
    margin-left: 55%;
    margin-right: 3rem; } }

@media (max-width: 1350px) {
  /*MAIN STRUCTURAL DIVS*/
  .innerWrapper {
    width: 100%; }
  .innerPadding {
    padding: 2.5rem 1.5rem 2.5rem 1.5rem; }
  .innerPadding2 {
    padding: 4rem 3.5rem 4.5rem 3.5rem; } }

@media (max-width: 1200px) {
  /* 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.95);
    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;
    margin-right: 0rem;
    float: none;
    text-align: center; }
  #navButton {
    position: relative;
    clear: both;
    display: block;
    float: none;
    margin: 1rem; }
  a.nav {
    display: block;
    float: none;
    padding: 1rem;
    margin-bottom: 2rem;
    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; }
  a.nav:after {
    content: none; }
  a.navLive {
    display: block;
    float: none;
    padding: 1rem;
    margin-bottom: 2rem;
    margin-right: 1rem;
    font-size: 1.7rem;
    font-family: "open_sansbold", Arial, sans-serif;
    text-decoration: none;
    border-style: dotted;
    border-width: 0px 0px 1px 0px;
    border-color: #FFFFFF;
    transition: 0.3s;
    line-height: 120%; }
  /*SLIDE*/
  /*home page slide*/
  #slide {
    position: relative;
    width: 100%;
    height: 800px; }
  #slideTextWrapper {
    text-align: center; }
  #slideText {
    text-align: center; } }

@media only screen and (max-width: 1120px) {
  h1 {
    margin: 0rem 0rem 5rem 0rem;
    font-size: 4rem; }
  /* text-shadow: 1px 1px 2px rgba(0,0,0,0.15);*/
  h2 {
    margin: 3rem 0rem 2.5rem 0rem;
    font-size: 3.2rem; }
  h3 {
    margin: 3rem 0rem 2rem 0rem;
    font-size: 2.4rem; }
  h4 {
    margin: 2rem 0rem 1rem 0rem;
    font-size: 1.8rem; }
  p {
    font-size: 1.8rem; }
  #introNarrow {
    width: 80%; }
  #introNarrow p {
    font-size: 1.7rem;
    text-align: center; }
  #narrow {
    width: 80%; }
  #narrow p {
    font-size: 1.7rem;
    text-align: center; }
  #narrowPageWrapper {
    width: 80%; }
  ul li {
    font-size: 1.5rem; }
  /* PANEL */
  .panelHead {
    font-size: 1.8rem; } }

@media only screen and (max-width: 1050px) {
  /*MAIN PIC*/
  .mp-campsites {
    background-image: url("../images/pic_Campsites_M.jpg"); }
  .mp-damaraland {
    background-image: url("../images/pic_Damaraland_M.jpg"); }
  .mp-elephants {
    background-image: url("../images/pic_Elephants_M.jpg"); }
  .mp-sunset {
    background-image: url("../images/pic_Sunset_M.jpg"); }
  .mp-engravings {
    background-image: url("../images/pic_RockEngravings_M.jpg"); }
  .mp-desertelephants {
    background-image: url("../images/pic_DesertElephants_M.jpg"); }
  /* HOME offer slider */
  .sectionOffer {
    background-image: url("../images/bg_campDamaraland_M.jpg"); }
  /* ACCOMMODATION */
  .sectionEnviron {
    background-image: url("../images/bg_Room_M.jpg"); }
  .environ-Bloc {
    width: 60%;
    padding: 3rem; }
  /* FACILITIES */
  .sectionRates {
    background-image: url("../images/bg_Mountains_M.jpg"); }
  /* CONTACT */
  .sectionRoad {
    background-image: url("../images/bg_mountainRoad_M.jpg"); } }

@media only screen and (max-width: 1000px) {
  h1 {
    margin: 0rem 0rem 5rem 0rem;
    font-size: 3.8rem; }
  /* text-shadow: 1px 1px 2px rgba(0,0,0,0.15);*/
  h2 {
    margin: 3rem 0rem 2.5rem 0rem;
    font-size: 3rem; }
  h3 {
    font-size: 2.2rem; }
  h4 {
    font-size: 1.8rem; }
  p {
    font-size: 1.7rem; }
  #introNarrow {
    width: 80%; }
  #introNarrow p {
    font-size: 1.7rem;
    text-align: center; }
  .narrow {
    width: 80%; }
  ul li {
    font-size: 1.5rem; }
  /* PANEL */
  .panelHead {
    font-size: 1.7rem; }
  .col3Wrapper {
    width: 80%;
    margin: 0rem auto; }
  .col3 {
    float: none;
    width: 100%;
    margin-right: 0px; }
  /* 2/3 col pics */
  .colpic_3Wrapper {
    padding: 2rem 0rem; }
  /* HOME offer slider */
  .sectionOffer {
    padding: 6rem 0rem 11rem 0rem; }
  .sectionOffer h2 {
    padding-bottom: 3rem; }
  #offerSlide {
    width: 80%; }
  .slider {
    height: 19rem;
    width: 19rem; }
  .slider-text p {
    font-size: 1.7rem; }
  /* ACTIVITIES */
  .activityNamibia-textWrapper {
    position: relative; }
  .activityNamibia-text {
    width: 90%;
    margin-right: auto;
    margin-top: 2rem;
    margin-left: auto;
    -webkit-transform: none;
    transform: none;
    padding: 2rem; }
  .activityNamibia-text h2 {
    margin-top: 0px; }
  .activityNamibia-pic {
    float: none;
    height: 40rem;
    width: 100%; }
  .activityOther-textWrapper {
    position: relative; }
  .activityOther-text {
    width: 90%;
    margin-right: auto;
    margin-top: 2rem;
    margin-left: auto;
    -webkit-transform: none;
    transform: none;
    background-color: #FFFFFF;
    padding: 2rem; }
  .activityOther-text h2 {
    margin-top: 0px; }
  .activityOther-pic {
    float: none;
    height: 40rem;
    width: 100%; } }

@media only screen and (max-width: 900px) {
  /* HEADER */
  #logoDiv img {
    width: 300px; }
  #menuIcon {
    top: 5rem; }
  /*SLIDE*/
  #slide {
    height: 600px; }
  #slideTextWrapper {
    top: 26rem; }
  #slideText {
    font-size: 3.6rem; }
  /*MAIN PIC*/
  #mainPic {
    height: 55rem; }
  /* HOME offer slider */
  .slider {
    height: 18rem;
    width: 18rem; }
  a.offer {
    font-size: 1.7rem; } }

@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; }
  /* MAP TEXT */
  .colWrapper_map {
    width: 100%;
    overflow: hidden; }
  .colLeft_map {
    float: none;
    width: 90%;
    margin: 0px auto 10px auto;
    text-align: center; }
  .colRight_map {
    float: none;
    width: 90%;
    margin: 10px auto 0px auto; } }

@media only screen and (max-width: 750px) {
  /* HOME offer slider */
  .sectionOffer {
    padding: 6rem 0rem 9rem 0rem; }
  .sectionOffer h2 {
    padding-bottom: 2.4rem; }
  #offerSlide {
    width: 80%; }
  .slider {
    height: 17rem;
    width: 17rem; }
  a.offer {
    font-size: 1.6rem; } }

@media only screen and (max-width: 720px) {
  /*MAIN STRUCTURAL DIVS*/
  .innerPadding {
    padding: 2.5rem 2rem 2.5rem 2rem; }
  .innerPadding2 {
    padding: 3rem 2rem 3.5rem 2rem; }
  .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; }
  /*GENERAL*/
  #narrowPageWrapper {
    width: 90%; }
  /* CONTENT LINKS */
  a {
    font-size: 1.5rem; }
  a.nav {
    font-size: 1.5rem; }
  a.navLive {
    font-size: 1.5rem; }
  div.main {
    font-size: 1.5rem; }
  .mainLive {
    font-size: 1.5rem; }
  /* FOOTER */
  p.footer-copy {
    font-size: 1.5rem; } }

@media only screen and (max-width: 600px) {
  /*GENERAL*/
  div.narrowCentre {
    width: 90%; }
  /*3 col pics */
  .colpic_3Wrapper {
    width: 90%;
    margin: 3rem auto; }
  .colpic3 {
    float: none;
    width: 100%;
    margin: .5rem; }
  /* HOME offer slider */
  .sectionOffer {
    background-image: url("../images/bg_campDamaraland_S.jpg"); }
  /* ACCOMMODATION */
  .sectionEnviron {
    background-image: url("../images/bg_Room_S.jpg"); }
  .environ-Bloc {
    width: 80%;
    padding: 2rem; }
  /* FACILITIES */
  .sectionRates {
    background-image: url("../images/bg_Mountains_S.jpg"); }
  /* CONTACT */
  .sectionRoad {
    background-image: url("../images/bg_mountainRoad_S.jpg"); } }

@media only screen and (max-width: 550px) {
  /* HEADER */
  #logoDiv img {
    width: 260px; }
  #menuIcon {
    top: 2rem; }
  /*SLIDE*/
  #slide {
    height: 500px; }
  #slideTextWrapper {
    top: 20rem; }
  #slideText {
    font-size: 2.6rem; }
  /*MAIN PIC*/
  #mainPic {
    height: 45rem; }
  .mp-campsites {
    background-image: url("../images/pic_Campsites_S.jpg"); }
  .mp-damaraland {
    background-image: url("../images/pic_Damaraland_S.jpg"); }
  .mp-elephants {
    background-image: url("../images/pic_Elephants_S.jpg"); }
  .mp-sunset {
    background-image: url("../images/pic_Sunset_S.jpg"); }
  .mp-engravings {
    background-image: url("../images/pic_RockEngravings_S.jpg"); }
  .mp-desertelephants {
    background-image: url("../images/pic_DesertElephants_S.jpg"); }
  /*MAIN STRUCTURAL DIVS*/
  .colLeft {
    float: none;
    width: 100%;
    margin: 0px auto 10px auto; }
  .colRight {
    float: none;
    width: 100%;
    margin: 10px auto 0px auto; }
  /*GENERAL*/
  h1 {
    font-size: 3.2rem; }
  h2 {
    font-size: 2.6rem; }
  h3 {
    font-size: 2rem; }
  h4 {
    font-size: 1.7rem; }
  p {
    font-size: 1.6rem; }
  hr {
    margin: 2rem auto; }
  /* PANEL */
  .panelHead {
    font-size: 1.6rem; }
  .panelInner {
    padding: 2rem; }
  /* ACTIVITIES */
  .activityNamibia p {
    font-size: 1.6rem; }
  .activityNamibia-text {
    width: 95%;
    padding: 2rem; }
  .activityNamibia-pic {
    height: 30rem; }
  .activityOther p {
    font-size: 1.6rem; }
  .activityOther-text {
    width: 95%;
    padding: 2rem; }
  .activityOther-pic {
    height: 30rem; }
  .activityNamibia-pic-safari {
    background-image: url("../images/activity_Safari_s.jpg"); }
  .activityNamibia-pic-twyfelfontein {
    background-image: url("../images/activity_Twyfelfontein_s.jpg"); }
  .activityNamibia-pic-petrifiedforest {
    background-image: url("../images/activity_petrifiedForest_s.jpg"); }
  .activityOther-pic-desertelephants {
    background-image: url("../images/activity_DesertElephants_s.jpg"); }
  .activityOther-pic-damaras {
    background-image: url("../images/activity_Damaras_s.jpg"); } }

@media only screen and (max-width: 500px) {
  /* GENERAL */
  .narrow {
    width: 100%; }
  /* HOME offer slider */
  .sectionOffer {
    padding: 5rem 0rem 7rem 0rem; }
  .sectionOffer h2 {
    padding-bottom: 1rem; }
  .slider {
    margin-left: 20%; }
  /*3 col pics */
  .colpic_3Wrapper {
    width: 100%;
    margin: 2.5rem auto; } }

@media only screen and (max-width: 350px) {
  /* HOME offer slider */
  .slider {
    margin-left: 17%; } }

@media only screen and (max-width: 300px) {
  /* HOME offer slider */
  .slider {
    margin: 2rem; } }
