/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX               Ungrouped STYLE Start                 XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

body {
  background-color: #eef8f0;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: heebo-lt;
  src: local("heebo-light"), url(../fonts/Heebo-Light.woff);
  font-weight: 300;
  font-display: swap;
}

* {
  box-sizing: border-box;
  padding: 0;
  max-width: 1280px;
  margin: auto;
  font-family: heebo-lt, arial sans-serif;
}

.Aligner {
  display: flex;
  align-items: center;
  /*justify-content: center;*/
}

.Aligner-item {
  max-width: 100%;
}
.wrapimagelt {
  align-self: flex-start;
  float: left;
  margin: 0 12px 0 0;
}

.wrapimagert {
  float: right;
  margin: 0 12px 0 0;
}

/* -------------------- Gradient HR's ------------------------ */

.hr50-gld,
.hr50-grn {
  width: 50%;
  height: 3px;
  border: none;
}

.hr90-gld,
.hr90-grn {
  width: 90%;
  height: 3px;
  border: none;
}

.hr50-gld,
.hr90-gld {
  background-image: linear-gradient(90deg, transparent, orange, transparent);
}

.hr50-grn,
.hr90-grn {
  background-image: linear-gradient(90deg, transparent, green, transparent);
}

/* ---- Line Break Height eg. <span class="br1em"></span>--- */

.br05em {
  display: block;
  margin-bottom: 0.5em;
}

.br1em {
  display: block;
  margin-bottom: 1em;
}

.br2em {
  display: block;
  margin-bottom: 2em;
}

.br3em {
  display: block;
  margin-bottom: 3em;
}

.br4em {
  display: block;
  margin-bottom: 4em;
}

/* ......................................................... */
/* .               Ungrouped STYLE End                     . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX                  NavBar STYLE Start                 XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

#menu {
  max-width: 1280px;
  background-image: url(../img/smoky-bg2.webp);
  background-repeat: no-repeat;
  background-size: 100vw 128px;
  /*background: #c1f1f6;*/
  /*NavBar solid BG colour*/
  color: #fff;
  height: 128px;
  /*NavBar height*/
  padding: 10px 20px 0 0;
  /*Distance of logo from right edge of NavBar*/
}

#menu ul,
#menu li {
  padding: 0;
  list-style: none;
}

#menu ul {
  width: 100%;
}

#menu li {
  float: left;
  display: inline;
  position: relative;
}

#menu a {
  display: block;
  line-height: 66px;
  padding: 0 14px;

  /*font-family: "arial narrow", sans-serif;*/
  font-family: "verdana", "heebo-lt", sans-serif;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  /*Top menu font size*/
  /*font-weight: bold;*/
}

#menu a.dropdown-arrow:after {
  content: "\25BE";
  /*Unicode for dropdown symbol after "Retreats"*/
  margin-left: 2px;
  /*Distance between dropdown symbol and "Retreats"*/
}

#menu li a:hover {
  color: #d40401;
  /*Hover font color for top menu items*/
}

#menu input {
  display: none;
  margin: 0;
  padding: 0;
  height: 50px;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

#menu label {
  display: none;
  line-height: 66px;
  text-align: center;
  position: absolute;
  left: 35px;
}

#menu label:before {
  font-size: 1.6em;
  color: #000;
  content: "\2261";
  /*\2261 is Unicode for hamburger symbol*/
  margin-left: 20px;
}

#menu ul.sub-menus {
  height: auto;
  overflow: hidden;
  width: 200px;
  background: #fff;
  opacity: 0.9;
  /*Sub-Menu BG Color + opacity*/
  position: absolute;
  z-index: 99;
  display: none;
  border-radius: 10px;
}

#menu ul.sub-menus li {
  display: block;
  width: 100%;
}

#menu .sub-menus a {
  color: #000;
  /*Sub-menu font color*/
  font-size: 16px;
  /*Sub-menu font size*/
  line-height: 2;
  border-radius: 10px;
}

#menu li:hover ul.sub-menus {
  display: block;
  position: absolute;
  left: 30px;
  top: 50px;
}

#menu ul.sub-menus a:hover {
  background: #def5fc;
  /*Sub-menu hover background*/
  color: #d40401;
  /*Sub-menu font hover color*/
}

@media screen and (max-width: 768px) {
  /*Responsive screen size trigger*/
  #menu {
    position: relative;
    padding: 10px 0 0 50vw;
  }

  #menu ul {
    background: #f3ede4;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 3;
    width: 50%;
    height: auto;
    border: 1px solid #000;
    display: none;
    border-radius: 10px;
    margin: auto;
  }

  #menu ul.sub-menus {
    width: 100%;
    position: static;
  }

  #menu ul.sub-menus a {
    padding-left: 30px;
  }

  #menu li {
    display: block;
    float: none;
    width: auto;
  }

  #menu input,
  #menu label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  #menu input {
    z-index: 4;
  }

  #menu input:checked + label {
    color: white;
  }

  #menu input:checked + label:before {
    content: "\00d7";
  }

  #menu input:checked ~ ul {
    display: block;
  }
}

/* ......................................................... */
/* .                 NavBar STYLE End                      . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX                 Banner STYLE Start                  XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.hdr-grafx {
  width: 100vw;
}

/* ......................................................... */
/* .                 Banner STYLE End                      . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX               Prologue STYLE Start                  XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.prologue {
  background: url(../img/prolog-bg.webp);
  background-color: beige;
  background-repeat: no-repeat;
  background-size: auto;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: 5px 5px 10px #888;
  /*filter: drop-shadow(5px 5px 10px inset #888);*/
  border: 1px solid green;
  border-radius: 10px;
  padding: 20px 25px 20px 25px;
}

.prologue-pad {
  margin: 0;
  padding: 20px;
  /* Add padding to create space between the box and screen edges */
}

.prologue p {
  margin: 15px 0;
}

.prologue h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #004aad;
}

/* ......................................................... */
/* .               Prologue STYLE End                      . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX         Show/Hide On Mobile STYLE Start             XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

@media (max-width: 768px) {
  .noshomo {
    display: none;
  }

  .shomo {
    display: initial;
  }
}

@media (min-width: 768px) {
  .noshomo {
    display: initial;
  }

  .shomo {
    display: none;
  }
}

/* ......................................................... */
/* .               Show/Hide STYLE End                     . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* X                Button Link STYLE Start                X */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.btn-lnk {
  background: transparent;
  text-decoration: none;
  color: #195d18;
  margin: 25px 0 0 25px;
  display: inline-block;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  text-align: center;
  padding: 2px;
  width: auto;
  border-bottom: 1px solid green;
  transition: all 0.3s;
}

.btn-lnk-hvr:hover {
  box-shadow: 0 14px 14px -5px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.91) inset;
  color: white;
  width: auto;
  padding: 2px;
  border-radius: 5px;
  border: none;
}

.btn-set {
  margin: auto;
  /* border grows/shrinks to match text*/
  padding: 0;
}

@media screen and (max-width: 810px) {
  .btn-lnk {
    font-size: 10px;
  }
}

/* ......................................................... */
/* .              Button Link STYLE End                    . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX             Main Content STYLE Start                XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.pagecontainer {
  padding: 20px;
  /* Add some padding to the container */
}

.maintxt p {
  font-style: normal;
  font-weight: 300;
  margin: 10px;
}
.mchdrcenter {
  text-align: center;
}

.mcltimage,
.mcrtimage {
  /*width: 650px;*/
  height: auto;
  max-width: 100%;
  filter: drop-shadow(5px 5px 10px #000);
  border: 1px solid #000;
  border-radius: 15px;
}

.mcrtimage {
  margin-right: 15px;
}

.mcrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* Vertically align items */
}

.mccol50 {
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .mccol50 {
    width: 100%;
  }

  .mcrow:nth-child(2n) .mccol50:first-child {
    order: 2;
  }

  .btn-lnk {
    font-size: 12px;
  }
}

/* ......................................................... */
/* .                Main Content STYLE End                 . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX               Image Links STYLE Start               XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.imgcolumn {
  float: left;
  width: 33.33%;
}

/* Clearfix (clear floats) */
.imgrow::after {
  content: "";
  clear: both;
  display: table;
}

/* ......................................................... */
/* .                Image Links STYLE End                  . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX                  PopUp STYLE Start                  XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.popup-wrapper {
  position: absolute;
  width: 100%;
  height: 0;
  top: 1700px;
}

.newspopup-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  top: 0;
  z-index: 99;
}

.newspopup {
  width: auto;
  max-width: 300px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 30px;
  transform: scale(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}

.open-newspopup {
  visibility: visible;
  transform: scale(1);
}
.newspopup img {
  margin-top: -50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.newspopup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
}
.newspopup button {
  width: 100%;
  margin: 50px auto 0 auto;
  padding: 10px 0;
  background: #01bf64;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 600px) {
  /*  make the form 2 columns */
  form:after {
    content: "";
    display: block;
    clear: both;
  }
  .column {
    width: 50%;
    padding: 1em;
    float: left;
  }
}

/* ......................................................... */
/* .                   PopUp STYLE End                     . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX            Footer top Section STYLE Start           XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

a span.nohvr,
a:hover span.hvr {
  display: inline;
}

a:hover span.nohvr,
a span.hvr {
  display: none;
}

.ftr-container {
  background-color: #222222;
  padding: 20px;
}

.ftr-row {
  display: flex;
  justify-content: center;
}

.ftr-col ul {
  list-style: none;
  padding: 0;
}

.ftr-col h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 2px;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
}

.ftr-underliner {
  border-bottom: 2px solid #8ed1fc;
  padding: 0 0 4px 0;
}

.ftr-col li {
  padding: 10px 0;
}

.ftr-col li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.2s;
}

.ftr-col li a:hover {
  opacity: 1;
}

.ftr-col input {
  border: none;
  border-radius: 4px;
  width: 250px;
  height: 45px;
  display: block;
  padding-left: 20px;
  margin: 14px 0;
}

.ftr-col .inputSubmit {
  padding: 0 20px;
  background-color: #8ed1fc;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: "lucidia console", monaco, monospace;
  color: black;
  cursor: pointer;
}

.ftr-col .inputSubmit:hover {
  /*font-size:14px;
         text-decoration:underline;*/
  opacity: 0.7;
  transition: 0.2s;
}

.error {
  color: #fd8ba2;
  padding: 0 0 0 10%;
}

.success {
  color: #67c168;
  padding: 0 0 0 10%;
}

::placeholder {
  font-size: 16px;
  color: black;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 16px;
  color: black;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}

.ftr-container hr {
  opacity: 0.2;
}

@media (max-width: 768px) {
  footer .ftr-row {
    flex-direction: column;
    padding: 20px 30px;
  }

  footer .ftr-col ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .ftr-col input {
    width: 50vw;
  }
}

/* ......................................................... */
/* .            Footer Top Section STYLE End               . */
/* ......................................................... */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* XX          Footer Bottom Section STYLE Start          XX */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.ftr-bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #222;
}

.ftr-bottom-items-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr-bottom-items {
  color: #fff;
  max-width: 1280px;
  margin: auto;
}

.ftr-bottom-items:first-child {
  margin-right: 20px;
  /* Adjust as needed */
}

.ftr-bottom-items:nth-child(-n + 2):hover {
  cursor: pointer;
  opacity: 0.7;
}

.ftr-bottom-items:nth-child(6) {
  font-style: italic;
  /*opacity: 0.7;*/
}

/* ......................................................... */
/* .            Footer Bottom Section STYLE End               . */
/* ......................................................... */
