@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,700;1,300&amp;family=Work+Sans:wght@200;300;400;500&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&amp;family=Lato:wght@400;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,700;1,300&amp;family=Work+Sans:wght@200;300;400;500&amp;display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes bounce-right {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-20px);
  }
  60% {
    transform: translateX(-10px);
  }
}
.testimonial-slider .owl-next {
  animation: bounce-right 2s infinite;
}

@keyframes bounce-left {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(20px);
  }
  60% {
    transform: translateX(10px);
  }
}
.testimonial-slider .owl-prev {
  animation: bounce-left 2s infinite;
}

.autoShow {
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 10% exit 50%;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

@keyframes text-appear {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .autoShow {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

::selection {
  background-color: #9b968b;
  color: #fff;
}

main {
  z-index: 2;
  position: relative;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.filler-block {
  flex: 1;
}

.alt-bg-color {
  background: #1d1d1b;
  color: #fff;
}

.alt-bg {
  background: #e6e4df;
}

.centre-line {
  display: flex;
}
.centre-line div {
  flex: 1;
}

.line {
  border-right: 1px solid #9b968b;
  height: 2rem;
  margin: 0 0 2rem;
}

.white-bg {
  background: #fff;
}

body {
  font-family: "Work Sans", sans-serif;
  font-size: 1.6rem;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #50493a;
}

.heading-primary {
  font-family: "Crimson Pro", serif;
  color: #1d1d1b;
  backface-visibility: hidden;
}
.heading-primary--main {
  display: block;
  font-size: 5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 1.1;
  animation: moveInBottom 1s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--main {
    font-size: 4rem;
  }
}
.heading-primary--main {
  /*
      animation-delay: 3s;
      animation-iteration-count: 3;
      */
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  animation: moveInTop 1s ease-out;
  color: #9b968b;
}
.heading-primary.light-hero {
  color: #fff;
}
.heading-primary .alt-font {
  font-family: "Crimson Pro", serif;
}

.heading-secondary {
  font-family: "Crimson Pro", serif;
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 400;
  color: #1d1d1b;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-secondary--main {
  display: block;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary--main {
    font-size: 4rem;
  }
}
.heading-secondary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #9b968b;
}
.heading-secondary--sub.light {
  font-weight: 200;
}
.heading-secondary.light {
  font-weight: 200;
}
.heading-secondary.alt-color {
  color: #9b968b;
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 3.5rem;
  }
}

.heading-tertiary {
  font-family: "Crimson Pro", serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.3;
}
.heading-tertiary.light {
  font-weight: 200;
}
.heading-tertiary.alt-color {
  color: #9b968b;
  font-style: italic;
}
.heading-tertiary--sub {
  display: block;
  font-size: 1.3rem;
  font-weight: 200;
  color: #9b968b;
}
@media only screen and (max-width: 37.5em) {
  .heading-tertiary--sub {
    font-size: 2rem;
  }
}
.heading-tertiary--main {
  line-height: 1.2;
}
@media only screen and (max-width: 37.5em) {
  .heading-tertiary--main {
    font-size: 3.5rem;
  }
}
.heading-tertiary--lower {
  display: block;
  color: #9b968b;
  font-size: 1.7rem;
}
@media only screen and (max-width: 37.5em) {
  .heading-tertiary--lower {
    font-size: 2rem;
  }
}

.heading-highlight {
  color: #9b968b;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

a {
  text-decoration: none;
  color: #1d1d1b;
}

.paragraph,
p,
ul {
  font-size: 1.6rem;
}
.paragraph:not(:last-child),
p:not(:last-child),
ul:not(:last-child) {
  margin-bottom: 3rem;
}

blockquote {
  font-family: "Work Sans", sans-serif;
  font-size: 5rem;
}

.breadcrumb {
  padding: 2rem 3rem;
  list-style: none;
  border-radius: 4px;
  text-align: center;
  font-size: 1.3rem;
}

.breadcrumb a {
  color: #9b968b;
}

.fad {
  --fa-primary-color: $color-white;
  --fa-secondary-opacity: 0.5;
  --fa-primary-opacity: 1;
}

.underscores::after {
  content: "";
  border-bottom: 1px solid #9b968b;
  width: 2rem;
  display: block;
  padding-top: 2rem;
}

.overscores::before {
  content: "";
  border-bottom: 1px solid #9b968b;
  width: 2rem;
  display: block;
  padding-bottom: 1rem;
}

.meta {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Crimson Pro", serif;
  letter-spacing: 0.15rem;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

article {
  text-align: left;
}

.alt-font {
  font-family: "Crimson Pro", serif;
}

.align--right {
  text-align: right;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-default {
  margin: 0;
}

.u-margin-medium {
  margin: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .u-margin-medium {
    margin: 3rem;
  }
}

.u-margin-bottom {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .u-margin-bottom {
    margin-bottom: 3rem;
  }
}

.u-margin-top {
  margin-top: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .u-margin-top {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .imageoff-10 {
    background-position: 10% center !important;
  }
  .imageoff-20 {
    background-position: 20% center !important;
  }
  .imageoff-30 {
    background-position: 30% center !important;
  }
  .imageoff-40 {
    background-position: 40% center !important;
  }
  .imageoff-50 {
    background-position: 50% center !important;
  }
  .imageoff-60 {
    background-position: 60% center !important;
  }
  .imageoff-70 {
    background-position: 70% center !important;
  }
  .imageoff-80 {
    background-position: 80% center !important;
  }
  .imageoff-90 {
    background-position: 90% center !important;
  }
  .imageoff-100 {
    background-position: 100% center !important;
  }
}
.darkoverlay-10 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
}

.darkoverlay-20 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2);
}

.darkoverlay-30 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.darkoverlay-40 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
}

.darkoverlay-50 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.darkoverlay-60 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
}

.darkoverlay-70 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

.darkoverlay-80 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.8);
}

.darkoverlay-90 {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.9);
}

.darkoverlay-100 {
  box-shadow: inset 0 0 0 2000px rgb(0, 0, 0);
}

.gap-1 {
  padding: 1rem 0;
}

.gap-2 {
  padding: 2rem 0;
}

.gap-3 {
  padding: 3rem 0;
}

.gap-4 {
  padding: 4rem 0;
}

.gap-5 {
  padding: 5rem 0;
}

.gap-6 {
  padding: 6rem 0;
}

.gap-7 {
  padding: 7rem 0;
}

.gap-8 {
  padding: 8rem 0;
}

.gap-9 {
  padding: 9rem 0;
}

.gap-10 {
  padding: 10rem 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-videoblock .wrapper {
  position: relative;
  max-height: 40rem;
  overflow: hidden;
  transition: all 3s ease-in-out;
}
.section-videoblock .wrapper.expanded {
  max-height: 400rem;
}
.section-videoblock .wrapper .expvideo {
  width: 100%;
}
.section-videoblock .wrapper .playpause {
  text-align: center;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 1.5rem;
  font-weight: 200;
  font-style: italic;
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  margin: auto;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
.section-videoblock .wrapper .playpause i {
  color: #fff;
  display: block;
  padding-bottom: 2rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 0.5rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(29, 29, 27, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(29, 29, 27, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--green {
  background-color: #9b968b;
  color: #fff;
}
.btn--green::after {
  background-color: #9b968b;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #9b968b;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #9b968b;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #9b968b;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(29, 29, 27, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(29, 29, 27, 0.15);
  transform: translateY(0);
}

.button {
  display: block;
  background: #9b968b;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  letter-spacing: 1.7px;
}
.button.outline {
  background: none;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
}
.button.outline.light {
  color: #fff;
  border: 1px solid #fff;
}
.button.outline svg {
  height: 1.8rem;
  width: auto;
}
.button.textonly {
  background: none;
  color: #1d1d1b;
  text-transform: none;
  font-family: "Crimson Pro", serif;
  padding: 1rem 0;
}

.menu-toggle,
.search-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit; /* important if using inline SVG */
}

.menu-toggle:focus,
.search-toggle:focus {
  outline: none;
  box-shadow: none;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem;
}
.card__side {
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(29, 29, 27, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #e6e4df);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #7ed56f, #4186ba);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  background-blend-mode: screen;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #ffb900, #e6e4df), url(https://hiddenafrica.com/wp-content/themes/img/nat-5.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #7ed56f, #4186ba), url(https://hiddenafrica.com/wp-content/themes/img/nat-6.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa), url(https://hiddenafrica.com/wp-content/themes/img/nat-7.jpg);
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 75%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.85), rgba(230, 228, 223, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(65, 134, 186, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card {
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(29, 29, 27, 0.15);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 1rem 3rem;
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 4rem;
  }
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2rem;
}
.post-grid .post-item {
  flex: 1;
  min-width: 30rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.post-grid .post-item .post-image {
  height: 20rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-grid .post-item .post-text {
  padding: 2rem 4rem;
  flex: 1;
}
.post-grid .post-item .post-link {
  padding: 0 4rem 2rem;
}
.post-grid .post-item.two-col {
  min-width: 40rem;
}

.cust-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .cust-post-grid {
    display: flex;
    flex-direction: column;
  }
}
.cust-post-grid.tri-col {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .cust-post-grid.tri-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cust-post-grid .post-item {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.cust-post-grid .post-item .post-image {
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cust-post-grid .post-item .post-text {
  padding: 2rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cust-post-grid .post-item .post-text .meta {
  color: #9b968b;
}
.cust-post-grid .post-item .post-text .meta.underscores::after {
  padding-top: 0;
}
.cust-post-grid .post-item .post-text .heading-secondary {
  padding: 1rem 0;
}
.cust-post-grid .post-item .post-link {
  padding: 2rem 4rem 4rem;
}
.cust-post-grid .post-item .destination-meta {
  padding: 2rem 0;
}
.cust-post-grid .post-item .destination-meta #places {
  list-style: none;
}
.cust-post-grid .post-item .destination-meta #places li {
  display: inline;
}
.cust-post-grid .post-item .destination-meta #places li::after {
  content: ",";
}
.cust-post-grid .post-item .destination-meta #places li:first-child {
  border-left: none;
  font-weight: 700;
}
.cust-post-grid .post-item .destination-meta #places li:first-child::after {
  content: none;
}
.cust-post-grid .post-item .destination-meta #places li:last-child::after {
  content: none;
}

.limit-four {
  display: none;
}

#loadMore {
  color: #1d1d1b;
  display: block;
  text-align: center;
  transition: 0.3s;
}

#loadMore:hover {
  text-decoration: none;
}

.noContent {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}

.itin-card .itin-slide-image {
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.itin-card .itin-slide-image .overlay-country {
  position: absolute;
  z-index: 2;
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.itin-card .itin-slide-image .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.itin-card .itin-slide-image .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.itin-card .itin-slide-text {
  padding: 1rem 2rem;
  flex: 1;
}
.itin-card .itin-slide-text .button {
  font-size: inherit;
  font-weight: 400;
}
.itin-card .itin-slide-text a {
  color: #1d1d1b;
}
.itin-card .itin-slide-text .underscores:after {
  padding-top: 1.5rem;
}
.itin-card .itin-slide-button {
  padding: 1rem 2rem 2rem;
}

.section-largeadvert .advert-hero .advert-text {
  margin-left: 8rem;
}

.results-count {
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  color: #333;
}

.pagination-wrapper {
  text-align: center;
  margin: 20px 0;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
}

.pagination-wrapper .current {
  background-color: #688db6;
  color: #fff;
  border-color: #688db6;
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(29, 29, 27, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.33333333%;
    box-shadow: 0 1.5rem 3rem rgba(29, 29, 27, 0.2);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  outline: 1.5rem solid #9b968b;
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(29, 29, 27, 0.5);
  z-index: 20;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  font-size: 1.5rem;
  position: relative;
  padding: 2.5rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(29, 29, 27, 0.15);
  transition: transform 0.3s;
  border: 1px solid #4186ba;
  text-transform: uppercase;
}
.feature-box svg {
  height: 2rem;
}
.feature-box .heading-tertiary {
  font-size: 1.6rem;
  color: #9b968b;
}
@media only screen and (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box.edited i {
  font-size: 2.5rem;
}
.feature-box.edited .heading-tertiary {
  color: #9b968b;
}
.feature-box .arrow svg {
  width: 3rem;
  height: 3rem;
  fill: #9b968b;
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.image-block {
  display: flex;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
.image-block:nth-of-type(even) {
  flex-direction: row-reverse;
}

.dest-slider .dest-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 37.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  padding: 2rem;
}
.dest-slider .dest-item h2 {
  font-family: "Crimson Pro", serif;
  color: #fff;
}
.dest-slider .dest-item a {
  color: #fff;
  display: block;
  border: 1px solid #fff;
  padding: 1rem;
}
.dest-slider .imageoff-10 {
  background-position: 10% center !important;
}
.dest-slider .imageoff-20 {
  background-position: 20% center !important;
}
.dest-slider .imageoff-30 {
  background-position: 30% center !important;
}
.dest-slider .imageoff-40 {
  background-position: 40% center !important;
}
.dest-slider .imageoff-50 {
  background-position: 50% center !important;
}
.dest-slider .imageoff-60 {
  background-position: 60% center !important;
}
.dest-slider .imageoff-70 {
  background-position: 70% center !important;
}
.dest-slider .imageoff-80 {
  background-position: 80% center !important;
}
.dest-slider .imageoff-90 {
  background-position: 90% center !important;
}
.dest-slider .imageoff-100 {
  background-position: 100% center !important;
}

.prop-slider .property-style-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-auto-rows: minmax(100px, auto);
  grid-template-areas: "top main" "lt main" "lt main";
  grid-gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .prop-slider .property-style-block {
    display: flex;
    flex-direction: column-reverse;
  }
}
.prop-slider .property-style-block .style-text {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: lt;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prop-slider .property-style-block .style-text a {
  color: #1d1d1b;
  border: 1px solid #1d1d1b;
}
.prop-slider .property-style-block .style-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 3;
  grid-area: main;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 37.5em) {
  .prop-slider .property-style-block .style-image {
    height: 30rem;
  }
}
.prop-slider .property-style-block .heading-secondary {
  padding-bottom: 2rem;
}
.prop-slider .owl-nav {
  padding: 0.5rem 2rem;
}
.prop-slider .owl-nav .owl-prev {
  left: 3.5rem;
  top: 0;
  color: #1d1d1b;
  border: 1px solid #1d1d1b;
  background: none;
}
.prop-slider .owl-nav .owl-next {
  left: 7rem;
  right: unset;
  top: 0;
  color: #1d1d1b;
  border: 1px solid #1d1d1b;
}

.itin-slider.owl-theme .owl-nav {
  margin-top: 25px;
}
.itin-slider .itin-slide-block {
  display: flex;
  flex-direction: column;
  background: white;
  min-height: 55rem;
}
.itin-slider .itin-slide-block .itin-slide-image {
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.itin-slider .itin-slide-block .itin-slide-image .overlay-country {
  position: absolute;
  z-index: 2;
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.itin-slider .itin-slide-block .itin-slide-image .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.itin-slider .itin-slide-block .itin-slide-image .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.itin-slider .itin-slide-block .itin-slide-text {
  padding: 1rem 2rem;
  flex: 1;
}
.itin-slider .itin-slide-block .itin-slide-text .button {
  font-size: inherit;
  font-weight: 400;
}
.itin-slider .itin-slide-block .itin-slide-text a {
  color: #1d1d1b;
}
.itin-slider .itin-slide-block .itin-slide-text .underscores:after {
  padding-top: 1.5rem;
}
.itin-slider .itin-slide-block .itin-slide-button {
  padding: 1rem 2rem 2rem;
}
.itin-slider .owl-prev,
.itin-slider .owl-next {
  position: relative;
  border: 1px solid #1d1d1b;
}
.itin-slider .owl-prev {
  left: -16.7%;
}
.itin-slider .owl-next {
  right: 15.7%;
}

.destination-grid .destination-item {
  background: #fff;
}
.destination-grid .destination-item .dest-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 25rem;
}
.destination-grid .destination-item .dest-text {
  padding: 1rem 3rem;
}
.destination-grid .destination-item .dest-text p,
.destination-grid .destination-item .dest-text .button {
  font-size: inherit;
}
.destination-grid .destination-item .dest-text .heading-secondary {
  padding-bottom: 1rem;
}
.destination-grid .itin-block {
  background: #fff;
}
.destination-grid .itin-block .itin-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 25rem;
}
.destination-grid .itin-block .itin-text {
  padding: 1rem 3rem;
}
.destination-grid .itin-block .itin-text a {
  color: #1d1d1b;
}

.map-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .map-item {
    display: flex;
    flex-direction: column;
  }
}
.map-item .map-image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
@media only screen and (max-width: 37.5em) {
  .map-item .map-image {
    min-height: 40rem;
  }
}
.map-item .map-image .overlay-link {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-item .map-image .overlay-link .map-link {
  background: rgba(29, 29, 27, 0.7);
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}
.map-item .map-image .overlay-link .map-link svg {
  height: 1.8rem;
  width: auto;
}
.map-item .map-image .overlay-link a i {
  font-size: 1.8rem;
}
.map-item .map-box {
  position: relative;
  min-height: 45rem;
}
.map-item .map-box .overlay-country {
  position: absolute;
  z-index: 2;
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.map-item .map-box .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.map-item .map-box .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.map-item .image img {
  width: 100%;
  object-fit: contain;
  border: 1px solid #50493a;
}
.map-item .highlight-text .text {
  padding: 0 4rem 2rem 0;
}
@media only screen and (max-width: 37.5em) {
  .map-item .highlight-text .text {
    padding: 2rem;
  }
}
.map-item .highlight-text ul {
  padding: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .map-item .highlight-text ul {
    padding: 2rem;
  }
}
.map-item .highlight-text .heading-tertiary {
  text-transform: uppercase;
  font-family: "Crimson Pro", serif;
  font-size: 2rem;
}

.advert-hero {
  min-height: 45rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advert-hero .advert_text {
  width: 35%;
  margin-left: 10%;
}
@media only screen and (max-width: 37.5em) {
  .advert-hero .advert_text {
    width: unset;
    margin: 0;
  }
}
.advert-hero .advert_text .heading-secondary,
.advert-hero .advert_text .heading-secondary--sub,
.advert-hero .advert_text p {
  color: #fff;
  padding: 1rem 0;
}
.advert-hero .advert_text .underscores:after {
  border-bottom-color: #fff;
}
.advert-hero .advert_text .advert_link .button {
  padding: 2rem 4rem 2rem;
}

.section-itinerary .row {
  position: relative;
}
.section-itinerary .mask {
  position: absolute;
  width: 20rem;
  top: -0.5rem;
  right: 0;
  height: 100%;
  background: rgb(239, 239, 239);
  background: linear-gradient(270deg, rgb(239, 239, 239) 30%, rgba(239, 239, 239, 0) 100%);
  z-index: 2;
}

.itinerary-item {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.itinerary-item .itin-item-image {
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.itinerary-item .itin-item-image .overlay-country {
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.itinerary-item .itin-item-image .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.itinerary-item .itin-item-image .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.itinerary-item .itin-item-text {
  flex: 1;
  padding: 1rem 4rem;
}
.itinerary-item .itin-item-link {
  padding: 0 4rem 4rem;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-links a {
  color: #9b968b;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-links i {
  padding-right: 1rem;
}

/* 
** Contact Form 7 Styles 
*/
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=url],
.wpcf7-form input[type=password],
.wpcf7-form input[type=search],
.wpcf7-form input[type=number],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  color: #fff;
  width: 100%;
  padding: 12px 16px;
  border-radius: 0.5rem;
  border: 0;
  background: transparent;
  border: 1px solid #9b968b;
}

.wpcf7-form p {
  margin: 0 0 28px;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
  outline: 1px solid rgba(84, 222, 197, 0.9);
  outline-offset: 0;
}

div.wpcf7-mail-sent-ok {
  border: 0;
  background: #5471de;
  color: #fff;
  padding: 18px;
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
  border: 0;
  background: #f9443b;
  color: #fff;
  padding: 18px;
}

span.wpcf7-not-valid-tip {
  color: #f9443b;
}

/* 
** Button Styles 
*/
.wpcf7-form .button {
  background-color: #9b968b;
  border: 0;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 15px;
  width: 100%;
  padding: 20px 42px;
  letter-spacing: 2px;
  font-size: 14px;
}

.wpcf7-form .button:hover {
  cursor: pointer;
  box-shadow: 0px 7px 16px -7px rgba(0, 0, 0, 0.4);
  border: 0;
}

.page-template-contact .with_frm_style .frm_form_fields {
  min-height: 70vh;
}
.page-template-contact .with_frm_style .frm_form_fields .with_frm_style fieldset {
  height: 100%;
}
.page-template-contact .frm_image_options .frm_image_option_container .frm_empty_url,
.page-template-contact .frm_image_options .frm_image_option_container img {
  object-fit: contain;
  height: unset;
  border-radius: 0;
  height: 10rem;
  margin: 0 auto;
  padding: 2rem;
}
.page-template-contact .frm_image_option_container.frm_label_with_image {
  padding: 3rem 2rem 0 2rem;
  background: #fff;
}
.page-template-contact .frm_image_options .frm_opt_container {
  justify-content: center;
}
.page-template-contact .frm_checkbox.frm_image_option,
.page-template-contact .frm_radio.frm_image_option {
  width: 20rem !important;
}
.page-template-contact .form-step-main {
  font-family: "Crimson Pro", serif;
  padding-bottom: 3rem;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.3;
}
@media only screen and (max-width: 37.5em) {
  .page-template-contact .form-step-main {
    font-size: 3rem;
  }
}
.page-template-contact .choose-one .frm_image_option .frm_image_option_container img {
  height: unset;
  padding: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

p.form-step {
  margin: 0;
  font-family: "Crimson Pro", serif;
  color: #9b968b;
  font-weight: 400;
  font-size: 2.5rem;
  font-style: italic;
  padding-top: 4rem;
}

section .ipt-uif-custom-material-custom.eform-override-element-boxy .ipt_uif_column {
  margin: 3rem 0;
  margin-bottom: 3rem;
}

section.form-short-code.full-height {
  min-height: calc(100vh - 125px);
}
section.form-short-code {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 0;
}
@media only screen and (max-width: 37.5em) {
  section.form-short-code {
    min-height: 100vh;
    align-items: flex-start;
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  section.form-short-code .row {
    padding: 0;
  }
}
section.form-short-code .frm_rootline_group {
  margin: 0;
}
@media only screen and (max-width: 37.5em) {
  section.form-short-code .frm_form_field.frm_two_col .frm_opt_container,
  section.form-short-code .frm_form_field.frm_three_col .frm_opt_container,
  section.form-short-code .frm_form_field.frm_four_col .frm_opt_container {
    display: flex;
    flex-direction: column;
  }
}
section.form-short-code .frm_display_format_buttons .frm_label_button_container,
section.form-short-code .frm_display_format_buttons .frm_image_option_container {
  border-radius: 0;
}
section.form-short-code .with_frm_style .frm_message p {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}
section.form-short-code .frm_forms .frm_progress_line input,
section.form-short-code .frm_forms .frm_progress_line input:disabled {
  padding: 0 !important;
  line-height: 7px;
}
section.form-short-code .frm_page_skip {
  color: #fff;
  background: #9b968b;
  padding: 1rem 2rem;
  border: 1px solid #9b968b;
  margin: 2rem 0;
}
section.form-short-code .frm_field_14_container .frm_label_button_container {
  color: #9b968b;
  padding: 4rem 0;
  font-size: 3rem;
  font-family: "Crimson Pro", serif;
}
section.form-short-code #frm_field_92_container #field_fbn6c_label p {
  padding-top: 1.2rem;
}
section.form-short-code #frm_field_14_container .frm_label_button_container,
section.form-short-code #frm_field_20_container .frm_label_button_container {
  font-size: 2rem;
  font-family: "Crimson Pro", serif;
  height: 75px !important;
}
section.form-short-code .frm_forms .frm_progress_line li:first-of-type input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
section.form-short-code .with_frm_style .frm_form_fields > fieldset {
  min-height: 65rem;
}
@media only screen and (max-width: 37.5em) {
  section.form-short-code .with_frm_style .frm_form_fields > fieldset {
    min-height: 100vh;
    padding: 1rem 3rem;
  }
}
section.form-short-code .frm_form_fields .frm_fields_container {
  grid-auto-rows: unset;
  height: 100%;
}
section.form-short-code #frm_field_80_container .frm_label_button_container,
section.form-short-code #frm_field_81_container .frm_label_button_container,
section.form-short-code #frm_field_82_container .frm_label_button_container,
section.form-short-code #frm_field_40_container .frm_label_button_container {
  height: 20rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
}
section.form-short-code #frm_field_80_container .frm_label_button_container h3,
section.form-short-code #frm_field_81_container .frm_label_button_container h3,
section.form-short-code #frm_field_82_container .frm_label_button_container h3,
section.form-short-code #frm_field_40_container .frm_label_button_container h3 {
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: normal;
}
section.form-short-code #frm_field_80_container .frm_label_button_container p,
section.form-short-code #frm_field_81_container .frm_label_button_container p,
section.form-short-code #frm_field_82_container .frm_label_button_container p,
section.form-short-code #frm_field_40_container .frm_label_button_container p {
  margin: 0;
}
section.form-short-code #frm_field_49_container .frm_label_button_container,
section.form-short-code #frm_field_50_container .frm_label_button_container,
section.form-short-code #frm_field_52_container .frm_label_button_container,
section.form-short-code #frm_field_53_container .frm_label_button_container,
section.form-short-code #frm_field_54_container .frm_label_button_container,
section.form-short-code #frm_field_141_container .frm_label_button_container,
section.form-short-code #frm_field_158_container .frm_label_button_container,
section.form-short-code #frm_field_157_container .frm_label_button_container,
section.form-short-code #frm_field_156_container .frm_label_button_container,
section.form-short-code #frm_field_155_container .frm_label_button_container {
  height: 15rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}
section.form-short-code #frm_field_49_container .frm_label_button_container p,
section.form-short-code #frm_field_50_container .frm_label_button_container p,
section.form-short-code #frm_field_52_container .frm_label_button_container p,
section.form-short-code #frm_field_53_container .frm_label_button_container p,
section.form-short-code #frm_field_54_container .frm_label_button_container p,
section.form-short-code #frm_field_141_container .frm_label_button_container p,
section.form-short-code #frm_field_158_container .frm_label_button_container p,
section.form-short-code #frm_field_157_container .frm_label_button_container p,
section.form-short-code #frm_field_156_container .frm_label_button_container p,
section.form-short-code #frm_field_155_container .frm_label_button_container p {
  margin: 0;
}
section.form-short-code .big-button .frm_label_button_container {
  height: 9rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}
section.form-short-code .big-button .frm_label_button_container p {
  margin: 0;
}
section.form-short-code #frm_field_153_container .frm_image_options .frm_image_option_container img {
  height: unset;
  padding: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
section.form-short-code .frm_field_79_container {
  align-items: center;
}
section.form-short-code #frm_field_131_container .frm_label_button_container {
  height: 15rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
}
section.form-short-code #frm_field_131_container .frm_label_button_container h3 {
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: normal;
}
section.form-short-code #frm_field_131_container .frm_label_button_container p {
  margin: 0;
}
section.form-short-code .padded {
  padding: 0 5rem;
}
@media only screen and (max-width: 56.25em) {
  section.form-short-code .padded {
    padding: 0;
  }
}
section.form-short-code .frm_display_format_buttons .frm_label_button_container,
section.form-short-code .frm_display_format_buttons .frm_image_option_container {
  white-space: unset;
}
section.form-short-code .hidden-button .frm_label_button_container {
  height: 15rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}
section.form-short-code .hidden-button .frm_label_button_container p {
  margin: 0;
}

#form_whats-your-safari-style section.form-short-code .frm_form_fields .frm_fields_container {
  padding: 0 10%;
}
#form_whats-your-safari-style .frm_display_format_buttons .frm_opt_container {
  grid-gap: 2rem !important;
}

.brand-images .frm_image_option .frm_image_option_container img {
  padding: 0;
  height: unset;
}

section.form-short-code #frm_field_141_container .frm_label_button_container {
  height: 9rem !important;
}

section.form-short-code #frm_field_158_container .frm_label_button_container {
  height: 9rem !important;
}

section.form-short-code #frm_field_157_container .frm_label_button_container {
  height: 9rem !important;
}

section.form-short-code #frm_field_156_container .frm_label_button_container {
  height: 9rem !important;
}

section.form-short-code #frm_field_155_container .frm_label_button_container {
  height: 9rem !important;
}

section.form-short-code .button8 .frm_label_button_container {
  height: 9rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}

section.form-short-code .button15 .frm_label_button_container {
  height: 15rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}

.policy-link a {
  text-decoration: underline;
}

.width-set {
  height: 30rem;
  width: auto;
}

.choose-one .frm_opt_container .frm_label_button_container {
  height: 9rem !important;
  flex-direction: column;
  justify-content: center;
  white-space: unset;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
}
@media only screen and (max-width: 37.5em) {
  .choose-one .frm_opt_container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  .choose-one .frm_opt_container .frm_label_button_container {
    padding: 0;
  }
}

input {
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: none;
}

.mc4wp-form-fields .country select {
  width: 100%;
  padding: 1rem 3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  -webkit-appearance: none;
  border-radius: 0;
}
.mc4wp-form-fields input[type=submit] {
  cursor: pointer;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(29, 29, 27, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@supports (backdrop-filter: blur(10px)) {
  .popup {
    backdrop-filter: blur(10px);
    background-color: rgba(29, 29, 27, 0.3);
  }
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #efefef;
  box-shadow: 0 2rem 4rem rgba(29, 29, 27, 0.2);
  border: 1px solid #9b968b;
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.5s 0.2s;
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
@media only screen and (max-width: 56.25em) {
  .popup__left {
    width: unset;
  }
}
.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
@media only screen and (max-width: 56.25em) {
  .popup__right {
    width: unset;
  }
}
.popup__full {
  width: 100%;
  display: table-cell;
}
.popup__img {
  display: block;
  width: 100%;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #eee;
  hyphens: auto;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media only screen and (max-width: 56.25em) {
  .popup:target .popup__content {
    display: flex;
    flex-direction: column;
  }
}
.popup__close:link, .popup__close:visited {
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
  z-index: 99;
  font-weight: 700;
}
.popup__close:hover {
  color: #9b968b;
}
.popup .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.popup .embed-container iframe,
.popup .embed-container object,
.popup .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header .hero.map-popup {
  background-position: center 10%;
  align-items: center;
  justify-content: flex-end;
}
.header .hero.map-popup .map-link {
  padding: 2rem;
}
.header .hero.map-popup .map-link a {
  color: #fff;
  text-decoration: none;
}
.header .hero.map-popup .map-link a i {
  display: block;
  text-align: center;
  font-size: 2rem;
}
.header .hero.map-popup .map-link a span {
  font-size: 1.5rem;
}

.post-block .controls {
  padding: 5rem 0;
}
.post-block .controls ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  cursor: pointer;
  color: #9b968b;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.post-block .controls ul li:first-of-type {
  font-weight: 200;
  cursor: none;
}
.post-block .controls ul li.mixitup-control-active {
  font-weight: 700;
}
.post-block .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .post-block .post-grid {
    grid-template-columns: 1fr;
  }
}
.post-block .post-grid .mix .test-image {
  border: 1px solid #9b968b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-block .post-grid .mix svg {
  position: absolute;
}
.post-block .post-grid .mix .heading-highlight {
  padding: 2rem 0;
}
.post-block .post-grid .post-text .underscores::after {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.post-block video {
  width: 100%;
}
.post-block .popup__content {
  text-align: center;
}
.post-block .popup__content .quote-cite {
  color: #9b968b;
}
.post-block blockquote p {
  font-size: 2.5rem;
  font-weight: 400;
}
.post-block blockquote {
  padding: 3rem;
}
.post-block .popup__left blockquote p {
  font-size: 2rem;
}

.toggle-block label,
.toggle-dates label {
  position: relative;
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Crimson Pro", serif;
  cursor: pointer;
}
.toggle-block label .heading,
.toggle-dates label .heading {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: #1d1d1b;
  font-weight: 300;
}
.toggle-block label .heading .highlight-letter,
.toggle-dates label .heading .highlight-letter {
  text-transform: uppercase;
  padding-right: 2rem;
  font-weight: initial;
}
.toggle-block label i,
.toggle-dates label i {
  transition: all 0.5s ease-in-out;
  justify-self: end;
}
.toggle-block label.collapsed i,
.toggle-dates label.collapsed i {
  transform: rotate(90deg);
}
.toggle-block .content,
.toggle-dates .content {
  display: none;
}
.toggle-block .item,
.toggle-dates .item {
  margin-bottom: 2rem;
}
.toggle-block .item .underscores::after,
.toggle-dates .item .underscores::after {
  opacity: 0;
  padding-top: 0;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #1d1d1b;
}
.toggle-block .item .collapsed .underscores::after,
.toggle-dates .item .collapsed .underscores::after {
  opacity: 1;
  padding-top: 1rem;
}
.toggle-block .item .collapsed .heading:first-of-type,
.toggle-dates .item .collapsed .heading:first-of-type {
  transition: all 0.5s ease-in-out;
}
.toggle-block .item .collapsed .heading.italic,
.toggle-dates .item .collapsed .heading.italic {
  padding-bottom: 1rem;
}

.toggle-block .item {
  border: 1px solid #1d1d1b;
  padding: 0 2rem;
}
.toggle-block label {
  display: grid;
  align-items: center;
  grid-template-columns: 12rem 4fr 3fr;
  padding: 1rem 0;
}
@media only screen and (max-width: 37.5em) {
  .toggle-block label {
    grid-template-columns: 5fr 3fr;
    grid-template-rows: 1fr 1fr;
  }
  .toggle-block label .heading.underscores {
    grid-row: 2;
  }
  .toggle-block label i {
    grid-row: span 2;
  }
}
.blank-number .toggle-block label {
  grid-template-columns: 5fr 3fr;
}
.blank-number .toggle-block label .auto-count {
  display: none;
}
.toggle-block .content {
  padding: 1rem 5rem 2rem 12rem;
}
.blank-number .toggle-block .content {
  padding-left: 0;
}

.toggle-dates label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1d1d1b;
  padding: 1rem 0;
}
.toggle-dates .item {
  padding: 0;
}
.toggle-dates .content {
  padding: 2rem 0;
}
.toggle-dates .content p {
  font-size: 2rem;
}
.toggle-dates .dates-table {
  border-collapse: collapse;
  width: 100%;
  margin: 2rem 0;
}
.toggle-dates .dates-table tr:nth-of-type(odd) {
  background: #fff;
}
.toggle-dates .dates-table tr td {
  text-align: center;
  padding: 0.75rem 0;
  border-right: 1px solid #dddddd;
}
.toggle-dates .dates-table tr td:last-of-type {
  border-right: none;
}

.toggle-rates {
  padding: 3rem 0;
}
.toggle-rates p {
  font-size: 2rem;
  padding-top: 1.5rem;
}
.toggle-rates .rates-table {
  width: 100%;
  padding: 2rem 0;
  border-collapse: collapse;
}
.toggle-rates .rates-table tr {
  text-align: left;
}
.toggle-rates .rates-table tr:nth-of-type(odd) {
  background: #fff;
}
.toggle-rates .rates-table tr td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-right: 1px solid #dddddd;
}
.toggle-rates .rates-table tr td:last-of-type {
  border-right: none;
}
.toggle-rates .rates-table tr td:first-of-type {
  border-right: none;
}
.toggle-rates .rates-table tr th {
  background: unset;
}
.toggle-rates .rates-table thead tr th {
  background-color: #efefef;
  text-align: left;
  padding: 0.75rem 1rem;
}
.toggle-rates .rates-table tbody tr td:first-of-type {
  background-color: #efefef;
  text-align: left;
  font-weight: bold;
  padding-left: 0;
}

.block__item {
  margin-bottom: 2.5rem;
  border: 1px solid #9b968b;
  border-radius: 0.5rem;
  padding: 2rem 3rem;
}

.block__title {
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  display: block;
  align-items: center;
  justify-content: space-between;
}
.block__title .heading {
  margin-bottom: 0;
  font-size: 1.75rem;
  color: #9b968b;
  font-weight: 300;
}
.block__title .heading .highlight-letter {
  text-transform: uppercase;
  padding-right: 2rem;
  font-weight: 700;
  color: #fff;
}

.block__title::before,
.block__title::after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease 0s;
  top: 50%;
}

.block__title:before {
  transform: rotate(-40deg);
  right: 0;
}

.block__title::after {
  transform: rotate(40deg);
  right: 12px;
}

.block__title.active::before,
.block__title.active::after {
  background-color: #9b968b;
}

.block__title.active::before {
  transform: rotate(40deg);
}

.block__title.active::after {
  transform: rotate(-40deg);
}

.block__text {
  display: none;
  padding-top: 10px;
}

.highlight {
  background: #e6e4df;
}

.alt-bg .highlight {
  background: #efefef;
}

section.simple-text {
  padding: 5rem 0;
}

section.post-block {
  padding: 5rem 0 0;
}

.section-text {
  text-align: center;
}
.section-text .heading-tertiary {
  font-family: "PT Serif", serif;
  font-style: italic;
  color: #9b968b;
  font-weight: 700;
  padding: 2rem 0;
}
.section-text .centre-line {
  display: flex;
}
.section-text .centre-line div {
  flex: 1;
}
.section-text .line {
  border-right: 1px solid #1d1d1b;
  height: 2rem;
}
.section-text.para {
  min-height: 45rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.section-text .text-para {
  padding: 2rem 0;
}
.section-text .text-para p {
  text-align: left;
}
.section-text .text-para.center-text p {
  text-align: center;
}
.section-text .site-wide-steps {
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .section-text .site-wide-steps {
    flex-direction: column;
  }
}
.section-text .site-wide-steps .heading-primary {
  font-size: 2.5rem;
  font-weight: 100;
  text-transform: uppercase;
  color: #1d1d1b;
}
.section-text .site-wide-steps .left-col {
  flex: 1;
  padding: 2rem 5rem;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .section-text .site-wide-steps .left-col {
    padding: 2rem;
  }
}
.section-text .site-wide-steps .left-col .heading-primary {
  padding-left: 20%;
}
@media only screen and (max-width: 37.5em) {
  .section-text .site-wide-steps .left-col .heading-primary {
    padding-left: 0;
  }
}
.section-text .site-wide-steps .right-col {
  flex: 1;
  padding: 2rem 5rem;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .section-text .site-wide-steps .right-col {
    padding: 2rem;
  }
}
.section-text .site-wide-steps .right-col .button {
  position: relative;
}
.section-text .site-wide-steps .right-col .right-text {
  padding: 2rem 0;
}
.section-text .site-wide-steps i {
  font-size: 3rem;
  color: #9b968b;
}
.section-text .site-wide-steps i.fa-chevron-right:before {
  font-size: 2rem;
  color: #1d1d1b;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
}
.section-text .site-wide-steps .items {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
}
.section-text .site-wide-steps .items .icon {
  justify-self: center;
}

.section-title {
  text-align: center;
  padding: 5rem 0 0;
}
.section-title .alt-text {
  color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .section-title {
    padding: 2.5rem 0 0;
  }
}

.count2 {
  columns: 2;
  column-gap: 3rem;
}

.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  padding: 5rem 0;
}
@media only screen and (max-width: 56.25em) {
  .image-text-block {
    display: flex;
    flex-direction: column;
    padding: 5rem 0 0;
  }
}
.image-text-block .text {
  padding: 0rem 20% 2rem 2rem;
}
@media only screen and (max-width: 56.25em) {
  .image-text-block .text {
    padding: 0;
  }
}
.image-text-block .text .heading-secondary {
  padding-right: 5rem;
}
.image-text-block .text .heading-tertiary {
  padding: 1.5rem 0;
}
.image-text-block .text .button {
  margin-top: 2rem;
  text-decoration: none;
}
.image-text-block .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 35rem;
}
.image-text-block.row-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 56.25em) {
  .image-text-block.row-reverse {
    flex-direction: column;
  }
}
.image-text-block.row-reverse .text {
  order: 1;
  padding: 0rem 2rem 2rem 20%;
}
@media only screen and (max-width: 56.25em) {
  .image-text-block.row-reverse .text {
    order: unset;
    padding: 0;
  }
}
.image-text-block.row-reverse .image {
  order: 2;
}
@media only screen and (max-width: 56.25em) {
  .image-text-block.row-reverse .image {
    order: unset;
  }
}

.staff-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 2rem;
  margin-bottom: 4rem;
}
.staff-block .text {
  padding: 0rem 0 0 2rem;
}
.staff-block .text .heading-secondary {
  padding-right: 5rem;
  font-size: 5rem;
}
.staff-block .text .heading-tertiary.underscores:after {
  margin-bottom: 1.5rem;
}
.staff-block .text .button {
  margin: 0;
  padding: 0;
  display: block;
  font-style: italic;
}
.staff-block .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 25rem;
}
@media only screen and (max-width: 37.5em) {
  .staff-block .image {
    height: 15rem;
  }
}
.staff-block .staff-block__image {
  position: relative;
  overflow: hidden;
  /* keep your existing height/aspect ratio rules here */
}
.staff-block .staff-block__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.optional-header {
  text-align: center;
}

.alt-bg .image-text-block .text {
  padding: 0 2rem;
}
.alt-bg .image-text-block .heading-secondary {
  padding-right: 0;
  font-family: "Crimson Pro", serif;
  font-size: 4rem;
}

.w80 .image-text-block .text,
.w60 .image-text-block .text,
.w40 .image-text-block .text {
  padding: 0 0 2rem 2rem;
}
@media only screen and (max-width: 56.25em) {
  .w80 .image-text-block .text,
  .w60 .image-text-block .text,
  .w40 .image-text-block .text {
    padding: 0;
  }
}

.simple-text-block .call-out {
  float: right;
  width: 25rem;
  margin-right: -10rem;
  margin-top: -5rem;
  color: #9b968b;
  font-weight: 400;
  padding: 2rem;
  font-family: "Crimson Pro", serif;
  font-style: italic;
}
.simple-text-block .call-out p {
  font-size: 1.6rem;
}
.simple-text-block .heading-secondary {
  font-family: "Crimson Pro", serif;
}
.simple-text-block .heading-tertiary {
  font-family: "Crimson Pro", serif;
}
.simple-text-block .overscores::before {
  margin-bottom: 1.5rem;
}
.simple-text-block .underscores::after {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.simple-text-block .text ul {
  padding: 0 2rem;
}

.section-imagetext .image-text-block image {
  height: 25rem;
}
.section-imagetext .image-text-block .read-more,
.section-imagetext .image-text-block .read-less {
  text-align: left;
  padding-top: 3rem;
}
.section-imagetext .image-text-block .read-more a,
.section-imagetext .image-text-block .read-less a {
  font-style: italic;
}
.section-imagetext .image-text-block .read-more a::before,
.section-imagetext .image-text-block .read-less a::before {
  content: none;
}

.staff-block .read-more,
.staff-block .read-less {
  text-align: left;
  padding-top: 2rem;
}
.staff-block .read-more a,
.staff-block .read-less a {
  font-style: italic;
}
.staff-block .read-more a::before,
.staff-block .read-less a::before {
  content: none;
}

.slick-center .slider-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .slick-center .slider-block {
    display: flex;
    flex-direction: column;
  }
}
.slick-center .slider-block .image {
  display: flex;
}
.slick-center .slider-block .image img {
  object-fit: contain;
}
.slick-center .slider-block .text {
  display: flex;
  flex: 1;
  padding: 3rem 12rem 3rem 3rem;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .slick-center .slider-block .text {
    margin: 0;
    padding: 3rem;
  }
}
.slick-center .slider-block .title {
  padding: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .slick-center .slider-block .title {
    padding: 0;
  }
}
.slick-center .slider-block .title .heading-secondary {
  text-align: left;
}
.slick-center .slider-block .title .heading-secondary span {
  font-style: italic;
}
@media only screen and (max-width: 37.5em) {
  .slick-center.owl-carousel .owl-stage {
    padding: 0;
  }
}
.slick-center .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slick-center .owl-item.center .slider-block {
  z-index: 99;
}
.slick-center.owl-carousel .owl-nav.disabled .owl-prev,
.slick-center.owl-carousel .owl-nav.disabled .owl-next {
  top: 35%;
}
.slick-center .underscores:after {
  margin: 0 auto;
  width: 6rem;
  padding-top: 2rem;
}

.included-text.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  font-weight: 400;
}
@media only screen and (max-width: 37.5em) {
  .included-text.twocol {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
}

.content-text li {
  margin-left: 1.5rem;
  padding-left: 1rem;
}
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5 {
  margin-bottom: 0.5rem;
  margin-top: 1.3rem;
}
.content-text p {
  margin-bottom: 1.7rem;
}
.content-text a {
  color: #9e6e0b;
  text-decoration: none;
  text-underline-position: under;
  font-weight: 700;
}
.content-text a:hover {
  border-bottom: 2px solid #9e6e0b;
}

.read-more-block ul {
  margin-left: 2rem;
}
.read-more-block ul li {
  padding: 0 0 1rem 0;
}

.read-more-block a,
.toggle-block a,
article a,
.content .text a {
  color: #688db6;
  text-decoration: none;
  text-underline-position: under;
  font-weight: 700;
}
.read-more-block a:hover,
.toggle-block a:hover,
article a:hover,
.content .text a:hover {
  border-bottom: 2px solid #9e6e0b;
}

.page-id-5776 .simple-text {
  padding: 5rem 0 0;
}
.page-id-5776 section.post-block {
  padding: 3rem 0 0;
}
.page-id-5776 .button-elements {
  padding: 2rem 0 0rem;
}
.page-id-5776 section.form-short-code {
  padding: 3rem 0 0;
}
.page-id-5776 #sb_instagram #sbi_images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.page-id-5776 #sb_instagram #sbi_images .sbi_item {
  width: 100%;
}
.page-id-5776 .section-text.alt-bg {
  margin: 5rem 0 0;
}

.tabbed-section__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  text-transform: uppercase;
}
.tabbed-section__head--tab {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
  background: #e6e4df;
  cursor: pointer;
  border-radius: 0.5rem;
}
.tabbed-section__head--tab:before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background: #e6e4df;
  opacity: 0;
}
.tabbed-section__head--tab.active {
  background: #e6e4df;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #9b968b;
}
.tabbed-section__head--tab.active:before {
  opacity: 1;
}
.tabbed-section__body {
  position: relative;
  overflow: hidden;
  display: grid;
  margin-top: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.tabbed-section__body--item {
  display: none;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: min-content;
  padding: 3rem 2rem;
  grid-gap: 3rem 2rem;
  background: #e6e4df;
}
.tabbed-section__body--item.boxed {
  background: none;
}
.tabbed-section__body--item.visible {
  display: grid;
}
@media only screen and (max-width: 56.25em) {
  .tabbed-section__body--item.visible {
    display: flex;
    flex-direction: column;
  }
}
.tabbed-section__body--item .head {
  grid-column: 2/3;
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .tabbed-section__body--item {
    flex-direction: column;
  }
}
.tabbed-section .content-title h2 {
  border: 1px solid #9b968b;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  color: #9b968b;
}
.tabbed-section .content-text {
  border: 1px solid #9b968b;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
}
.tabbed-section .content-text .button {
  display: block;
  background: #9b968b;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 1rem 0;
}
.tabbed-section .content-text .button:hover:after {
  content: "→";
  transition: all ease 0.5s;
  opacity: 1;
  left: 8px;
}
.tabbed-section .content-text .button:after {
  content: "→";
  transition: all ease 0.5s;
  position: relative;
  opacity: 0;
  left: -12px;
}
.tabbed-section .content-text ul {
  list-style: none;
}
.tabbed-section .content-text ul li {
  padding: 0.5rem 0;
}
.tabbed-section .content-text ul li::before {
  content: "•";
  color: #9b968b;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.testimonial-slider {
  text-align: center;
  background: #9b968b;
}
.testimonial-slider .quote .centre-line {
  display: flex;
}
.testimonial-slider .quote .centre-line div {
  flex: 1;
}
.testimonial-slider .quote .line {
  border-right: 1px solid #fff;
  height: 2rem;
  margin: 2rem 0;
}
.testimonial-slider .owl-carousel {
  padding: 0 15%;
}
@media only screen and (max-width: 56.25em) {
  .testimonial-slider .owl-carousel {
    padding: 0;
  }
}
.testimonial-slider .quote-cite {
  text-transform: uppercase;
  font-weight: 700;
}
.testimonial-slider .button {
  border: 1px solid #9b968b;
  color: #9b968b;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 5rem 0;
}
.testimonial-slider .button:hover:after {
  content: "→";
  transition: all ease 0.5s;
  opacity: 1;
  left: 8px;
}
.testimonial-slider .button:after {
  content: "→";
  transition: all ease 0.5s;
  position: relative;
  opacity: 0;
  left: -12px;
}

.testimonial-block .controls {
  padding: 5rem 0;
}
.testimonial-block .controls ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  cursor: pointer;
  color: #9b968b;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.testimonial-block .controls ul li:first-of-type {
  font-weight: 200;
  cursor: none;
}
.testimonial-block .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .testimonial-block .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-block .testimonial-grid .mix .test-image {
  border: 1px solid #9b968b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.testimonial-block .testimonial-grid .mix svg {
  position: absolute;
}
.testimonial-block .testimonial-grid .mix .heading-highlight {
  padding: 2rem 0;
}
.testimonial-block video {
  width: 100%;
}
.testimonial-block .popup__content {
  text-align: center;
}
.testimonial-block .popup__content .quote-cite {
  color: #9b968b;
}
.testimonial-block blockquote p {
  font-size: 2.5rem;
  font-weight: 400;
}
.testimonial-block blockquote {
  padding: 3rem;
}
.testimonial-block .popup__left blockquote p {
  font-size: 2rem;
}

.single-testimonial .centre-line {
  display: flex;
}
.single-testimonial .centre-line div {
  flex: 1;
}
.single-testimonial .line {
  border-right: 1px solid #fff;
  height: 2rem;
  margin: 2rem 0;
}
.single-testimonial .internal-video {
  text-align: center;
  position: relative;
}
.single-testimonial .internal-video video {
  width: 100%;
}
.single-testimonial .internal-video span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3rem;
  width: 100%;
}
.single-testimonial .internal-video span.visible {
  animation: quote-fade 3s 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.single-testimonial .quote {
  text-align: center;
}
.single-testimonial .quote .copy {
  color: #9b968b;
  font-size: 2.5rem;
}
.single-testimonial .quote .quote-cite {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
}

.logo-slider-outer {
  position: relative;
}
.logo-slider-outer .logo-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.logo-slider-outer .logo-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.logo-slider .logo {
  display: flex;
  justify-content: center;
}
.logo-slider .logo img {
  width: unset;
  max-height: 6rem;
  max-width: 100%;
}
.logo-slider .logo-swiper {
  overflow: hidden;
  margin: 0 8rem;
}

.logo-slider-title .heading-secondary--main {
  font-size: 2.5rem;
  color: #1d1d1b;
  text-transform: uppercase;
}

.icon-block {
  padding: 2rem;
  text-align: center;
}
.icon-block .icon i {
  font-size: 3rem;
  display: inline-block;
  border-radius: 50%;
  background: #1d1d1b;
  padding: 2rem;
  color: #fff;
}
.icon-block .icon-title {
  padding: 2rem 0;
}
.icon-block .icon-title .underscores::after {
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .icon-block .icon-title {
    padding: 0 0 2rem 0;
  }
}

.facility-icons {
  text-align: center;
}
.facility-icons .icon i {
  border: 1px solid #9b968b;
  border-radius: 50%;
  padding: 1.5rem;
  color: #9b968b;
  font-size: 2rem;
}
.facility-icons .icon img {
  width: 12rem;
  height: auto;
}
.facility-icons .pop-over {
  padding-top: 1rem;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.facility-icons .pop-over:hover {
  opacity: 1;
}
@media only screen and (max-width: 56.25em) {
  .facility-icons .pop-over {
    opacity: 1;
  }
}
.facility-icons:hover .pop-over {
  opacity: 1;
}

.filter-grid .filter-item {
  background: #fff;
}
.filter-grid .filter-item--image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 30rem;
}
.filter-grid .filter-item--image .overlay-country {
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.filter-grid .filter-item--image .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.filter-grid .filter-item--image .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.filter-grid .filter-item--text {
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 5fr 1fr;
  align-items: center;
}
.filter-grid .filter-item--text a {
  color: #1d1d1b;
}
.filter-grid .filter-item--text .right_arrow {
  padding: 2rem;
}
.filter-grid .sep {
  padding: 0 0.5rem;
}

.controls ul li {
  color: #1d1d1b;
}

.controls {
  padding: 5rem 0;
}
.controls ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  cursor: pointer;
  color: #9b968b;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}
@media only screen and (max-width: 56.25em) {
  .controls ul {
    flex-direction: column;
  }
}
.controls ul li:first-of-type {
  font-weight: 200;
  cursor: none;
}
.controls ul li.mixitup-control-active {
  font-weight: 700;
}

.side-filter {
  display: flex;
  flex: 1;
}
@media only screen and (max-width: 56.25em) {
  .side-filter {
    flex-direction: column;
  }
}
.side-filter .controls {
  flex: 0 0 25%;
  padding: 0;
}
@media only screen and (max-width: 37.5em) {
  .side-filter .controls {
    display: none;
  }
}
.side-filter .controls ul {
  flex-direction: column;
  margin-right: 2rem;
  position: sticky;
  top: 17rem;
}
.side-filter .controls ul li {
  padding-bottom: 2rem;
}
.side-filter .controls ul li::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  transition: all ease 0.5s;
  opacity: 1;
  position: absolute;
  right: 1rem;
}
.side-filter .filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .side-filter .filter-grid {
    display: flex;
    flex-direction: column;
  }
}

.mobile-filter {
  display: none;
  transform: translateX(-30rem);
  position: sticky;
  top: 17rem;
  max-height: 4rem;
  transition: all 1s ease-in-out;
  z-index: 99;
}
@media only screen and (max-width: 37.5em) {
  .mobile-filter {
    display: flex;
  }
}
.mobile-filter.open {
  transform: translateX(0rem);
  max-height: 90rem;
}
.mobile-filter.open .mobile-filter--button {
  width: 5rem;
  transition: all 1s ease-in-out;
  cursor: pointer;
}
.mobile-filter.open .mobile-filter--button .filter-text {
  opacity: 0;
  max-width: 0;
  transition: all 0.5s ease-in-out;
}
.mobile-filter--nav {
  width: 30rem;
  background-color: white;
  padding: 0.5rem 2rem 2rem;
}
.mobile-filter--nav .controls {
  padding: 0 0 0 3rem;
}
.mobile-filter--nav .controls li {
  padding-top: 1.5rem;
  font-size: 1.6rem;
}
.mobile-filter--button {
  background-color: white;
  padding: 1rem;
  height: 5rem;
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-filter--button i {
  padding-right: 1rem;
}
.mobile-filter--button .filter-text {
  text-transform: uppercase;
  max-width: 5rem;
  opacity: 1;
}

#parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  #parent {
    display: flex;
    flex-direction: column;
  }
  #parent > div:nth-child(1) {
    position: relative;
  }
  #parent > div:nth-child(1) img {
    filter: brightness(0.5);
  }
  #parent > div:nth-child(1) a::after {
    content: "View Photos";
    position: absolute;
    text-transform: uppercase;
    color: #e6e4df;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(29, 29, 27, 0.7);
    padding: 0.5rem 1rem;
  }
  #parent > div:nth-child(2) {
    display: none !important;
  }
  #parent > div:nth-child(3) {
    display: none !important;
  }
}

.child {
  height: 25rem;
}
.child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .child {
    min-width: 33.33%;
  }
}
@media (max-width: 400px) {
  .child {
    min-width: 50%;
  }
}
.limit-six,
.limit-nine,
.limit-three {
  display: none;
}

#viewmorelink {
  padding-top: 3rem;
}

.view-more-btn {
  display: block;
  text-align: center;
}

.image-rows-outer .image {
  height: 35rem;
}
.image-rows-outer .image-row {
  display: grid;
  grid-gap: 2rem;
  padding-bottom: 2rem;
}
.image-rows-outer .image-row a {
  height: 45rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.image-rows-outer .image-row.one {
  grid-template-columns: 1fr;
}
.image-rows-outer .image-row.one a:nth-child(n+2) {
  display: none;
}
.image-rows-outer .image-row.two {
  grid-template-columns: 1fr 1fr;
}
.image-rows-outer .image-row.two a {
  height: 35rem;
}
.image-rows-outer .image-row.two a:nth-child(n+3) {
  display: none;
}
.image-rows-outer .image-row.twol {
  grid-template-columns: 2fr 1fr;
}
.image-rows-outer .image-row.twol a {
  height: 35rem;
}
.image-rows-outer .image-row.twol a:nth-child(n+3) {
  display: none;
}
.image-rows-outer .image-row.twor {
  grid-template-columns: 1fr 2fr;
}
.image-rows-outer .image-row.twor a {
  height: 35rem;
}
.image-rows-outer .image-row.twor a:nth-child(n+3) {
  display: none;
}
.image-rows-outer .image-row.three {
  grid-template-columns: repeat(3, 1fr);
}
.image-rows-outer .image-row.three a {
  height: 20rem;
}
.image-rows-outer .image-row.three a:nth-child(4) {
  display: none;
}
.image-rows-outer .image-row.threec {
  grid-template-columns: 1fr 2fr 1fr;
}
.image-rows-outer .image-row.threec a {
  height: 20rem;
}
.image-rows-outer .image-row.threec a:nth-child(4) {
  display: none;
}
.image-rows-outer .image-row.four {
  grid-template-columns: repeat(4, 1fr);
}
.image-rows-outer .image-row.four a {
  height: 20rem;
}

@media only screen and (max-width: 37.5em) {
  #viewmorelink {
    display: none;
  }
}

.mobile-toolbar {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100%;
  background: #1d1d1b;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.mobile-toolbar .button.outline {
  justify-content: center;
  color: #fff;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 300;
}
.mobile-toolbar .button.outline a {
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .mobile-toolbar {
    display: block;
  }
}

.newhero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12.5rem 0 0;
}
.newhero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.newhero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.newhero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.newhero__overlay.darkoverlay-10 {
  background-color: rgba(0, 0, 0, 0.1);
}
.newhero__overlay.darkoverlay-20 {
  background-color: rgba(0, 0, 0, 0.2);
}
.newhero__overlay.darkoverlay-30 {
  background-color: rgba(0, 0, 0, 0.3);
}
.newhero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.newhero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}
.newhero__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin: 0;
}

.down_arrow {
  z-index: 2;
  justify-items: center;
}
.down_arrow a {
  display: flex;
  height: 5rem;
  width: 5rem;
}

.month-circle.excellent {
  background-color: #2e4660;
  color: #ffffff;
}

.legend-excellent {
  background-color: #2e4660;
}

.month-circle.good {
  background-color: #688db6;
  color: #000000;
}

.legend-good {
  background-color: #688db6;
}

.month-circle.mixed {
  background-color: #d6e0eb;
  color: #000000;
}

.legend-mixed {
  background-color: #d6e0eb;
}

/* -------- Layout Styles -------- */
.monthly-guide-section {
  font-family: "Work Sans", sans-serif;
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.guide-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 25px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.legend-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.months-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 3rem;
  position: relative;
}

.month-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-bottom: 20px;
  font-weight: 500 !important;
  color: #333;
  flex: 1;
  position: relative;
}

.month-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.month-tab:hover .month-circle {
  transform: scale(1.1);
}

.active-line {
  position: absolute;
  bottom: -2px;
  height: 3px;
  background-color: #688db6;
  width: 0;
  left: 0;
  transition: left 0.4s ease, width 0.4s ease;
}

.month-content-area {
  text-align: left;
  min-height: 350px;
}
.month-content-area .month-details {
  display: none;
  animation: fadeIn 0.6s ease;
}
.month-content-area .month-details.active {
  display: block;
}
.month-content-area .month-title {
  font-family: "Crimson Pro", serif;
  font-size: 3.5rem;
  margin-bottom: 5px;
  color: #222;
  font-weight: 300;
}
.month-content-area .month-season {
  font-weight: bold;
  color: #555;
  margin-bottom: 2rem;
}

.month-name {
  font-size: 1.4rem;
}

.description-point {
  padding: 5px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.description-point:first-child {
  padding-top: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .months-nav {
    flex-wrap: wrap;
  }
  .month-tab {
    flex-basis: 25%;
    padding-bottom: 10px;
  }
  .month-circle {
    width: 45px;
    height: 45px;
    font-size: 12px;
  }
  .month-title {
    font-size: 36px;
  }
}
.habitat-slide {
  position: relative;
  margin: 6rem 0;
}

.habitat-image-wrapper {
  position: relative;
  width: 100%;
  height: 30rem; /* fixed height */
  overflow: hidden;
}

.habitat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.habitat-image-wrapper:hover .habitat-img {
  transform: scale(1.05);
}

.habitat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.habitat-image-wrapper:hover .habitat-overlay {
  opacity: 1;
}

.habitat-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
  text-align: center;
  padding: 0 1rem;
  font-family: "Crimson Pro", serif;
}

.section-destinations-habitats {
  position: relative;
}

.table {
  width: 100%;
  overflow-x: auto; /* mobile safety */
}
.table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}
.table thead th {
  text-align: left;
  padding: 1.2rem 1.6rem;
  border: 2px solid #e5e5e5;
  white-space: nowrap;
  font-size: 1.8rem;
}
.table tbody td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #e5e5e5;
  vertical-align: top;
  font-size: 1.5rem;
}
.table.heading thead th {
  color: #9b968b;
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  text-transform: uppercase;
}
.table.stripe tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.table.season thead th {
  border: none;
}
.table.season tbody td {
  border: 2px solid #efefef;
  background-color: #fafafa;
}
.table.season tbody tr td:first-of-type {
  background-color: transparent;
  padding-left: 0;
}

.table .is-center {
  text-align: center;
}

.table .is-right {
  text-align: right;
}

@media (max-width: 768px) {
  .table table {
    font-size: 1.4rem;
  }
  .table thead th,
  .table tbody td {
    padding: 1rem 1.2rem;
  }
}
.table-notes {
  padding-top: 1rem;
  font-style: italic;
  font-size: 1.4rem;
}

.table.enbolden tbody td:first-child {
  font-weight: 700;
}

.hotspot-map {
  position: relative;
  max-width: 50dvw;
  margin: 0 auto;
}
@media only screen and (min-width: 62.5em) {
  .hotspot-map {
    margin: 0;
  }
}
.hotspot-map .hotspot {
  position: absolute;
  width: 4rem;
  height: 4rem;
  color: var(--color-primary);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-family: var(--font-tertiary);
  border: 2px solid rgba(255, 255, 255, 0.9);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hotspot-map img {
  width: 100%;
  height: auto;
}

.collection--wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 3rem;
}
.collection--wrapper .properties-collection {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.collection--wrapper .description--text h3 {
  margin: 0;
  line-height: 1;
}
.collection--map {
  padding: 4rem 0;
}
.collection--map .hotspot-map {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 62.5em) {
  .collection--map .hotspot-map {
    position: sticky;
    top: 10rem;
    transform: translateY(0);
  }
}
.collection--map .hotspot-map .hotspot {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.collection--map .hotspot-map .hotspot.active {
  opacity: 1;
}
.collection--map .hotspot-map {
  /* Pulse ring (disabled by default) */
}
.collection--map .hotspot-map .hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-dark);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  animation: hotspot-pulse 1.8s ease-out infinite;
  animation-play-state: paused;
  z-index: -1;
}
.collection--map .hotspot-map .hotspot.active::after {
  animation-play-state: running;
  opacity: 0.35;
}
.collection--map .hotspot-map .hotspot:not(.active)::after {
  opacity: 0 !important;
  animation-play-state: paused !important;
}
@keyframes hotspot-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.slider-block {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 62.5em) {
  .slider-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.slider-block .image {
  width: 100%;
  height: 100%;
}
.slider-block .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.slider-block .text {
  display: flex;
  align-items: center;
  padding: 3rem;
}
@media only screen and (min-width: 62.5em) {
  .slider-block .text {
    padding: 3rem 12rem 3rem 3rem;
  }
}

.image-swiper {
  overflow: hidden;
  margin: 0 8rem;
}
@media only screen and (min-width: 62.5em) {
  .image-swiper .swiper-slide .text {
    margin: 5rem;
  }
}
@media only screen and (min-width: 62.5em) {
  .image-swiper .swiper-slide .text .heading-secondary {
    text-align: left;
  }
}
.image-swiper .swiper-pagination {
  margin-top: 5rem;
}

.prop-slider {
  position: relative;
  margin: 0 8rem;
}

.property-nav {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 2rem;
  z-index: 99;
}

.left--arrow,
.right--arrow {
  width: 4rem;
  height: 4rem;
  border: 1px solid #1d1d1d;
  background-color: #efefef;
  cursor: pointer;
  display: grid;
  place-content: center;
}
.left--arrow svg,
.right--arrow svg {
  height: 2rem;
  width: 2rem;
}

.style-image {
  position: relative;
  display: block;
  overflow: hidden;
  /* keep whatever height/aspect-ratio you currently rely on */
}

.style-image__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-next {
  right: 0rem;
}

.slider-prev {
  left: 0rem;
}

.slider--nav {
  display: none;
}
@media only screen and (min-width: 62.5em) {
  .slider--nav {
    display: flex;
  }
}

.footer {
  font-size: 1.4rem;
  color: #fff;
  background: #1d1d1b;
  font-family: "work-sans", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem 0 0;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 6rem;
  }
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 56.25em) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__link:link, .footer__link:visited {
  color: #f7f7f7;
  background-color: #333;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.footer__link:hover, .footer__link:active {
  color: #9b968b;
  box-shadow: 0 1rem 2rem rgba(29, 29, 27, 0.4);
  transform: rotate(5deg) scale(1.3);
}
.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 80%;
  float: right;
}
@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    width: 100%;
    float: none;
  }
}
.footer .footer-accreds {
  background: #333;
  padding: 2rem 0;
}
.footer .footer-accreds .company-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .footer .footer-accreds .company-links {
    flex-direction: column;
  }
}
.footer .footer-accreds .company-links img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.footer .footer-accreds .company-links a {
  height: 3.5rem;
  opacity: 0.5;
}
.footer .footer-accreds .company-links .heading-secondary--main {
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.footer-navbar {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr 3fr;
  grid-template-rows: 1fr 1fr;
  padding: 3rem 0;
  grid-gap: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-navbar .logo {
  display: flex;
  flex-direction: column;
  grid-row: span 2;
  padding-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .logo {
    width: 100%;
    text-align: center;
  }
}
.footer-navbar .logo svg {
  width: 80%;
}
.footer-navbar .logo svg path {
  fill: #fff;
}
.footer-navbar .logo img {
  width: 80%;
  padding-top: 1.5rem;
  height: auto;
}
.footer-navbar .logo .contact-details {
  padding: 0rem 0 3rem 0;
  font-size: 1.2rem;
}
.footer-navbar .logo .contact-details p {
  font-size: 1.2rem;
}
.footer-navbar .logo .contact-details .lower-footer-links {
  padding-right: 1rem;
  margin-bottom: 1rem;
}
.footer-navbar .logo .contact-details .lower-footer-links li {
  padding-bottom: 1rem;
}
.footer-navbar .logo .outline {
  border-color: #fff;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-transform: unset;
  justify-content: center;
}
.footer-navbar .nav {
  padding: 3rem 0;
}
.footer-navbar .nav ul {
  list-style: none;
  column-count: 3;
}
.footer-navbar .nav ul li {
  border-left: 1px solid #9b968b;
}
.footer-navbar .nav ul li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 2rem;
}
.footer-navbar .explore-links {
  padding-top: 3.5rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .explore-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .footer-navbar .explore-links .lower-footer-links li {
    padding-bottom: 1rem;
  }
}
.footer-navbar .explore-links p {
  margin: 0;
}
.footer-navbar .explore-links a {
  color: #fff;
}
.footer-navbar .about-links {
  padding-top: 3.5rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .about-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .footer-navbar .about-links .lower-footer-links li {
    padding-bottom: 1rem;
  }
}
.footer-navbar .privacy-links {
  padding-top: 3.5rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .privacy-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .footer-navbar .privacy-links .lower-footer-links li {
    padding-bottom: 1rem;
  }
}
.footer-navbar .company-links img {
  height: 5rem;
}
.footer-navbar .footer-feed {
  grid-column: 2/5;
  padding-top: 2rem;
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .footer-feed {
    padding: 2rem 0;
    width: 100%;
  }
}
.footer-navbar .footer-feed ul li a {
  font-size: 1.3rem;
}
.footer-navbar .footer-feed ul li a.italic {
  font-weight: 300;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
}
.footer-navbar .footer-feed ul li a.overscores::before {
  margin-bottom: 1rem;
}
.footer-navbar .footer-feed ul li span {
  padding: 0 1rem;
}
.footer-navbar .newsletter-block {
  padding: 3.5rem 0 0 2rem;
  grid-row: span 2;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .newsletter-block {
    padding: 3.5rem 0;
  }
}
.footer-navbar .newsletter-block .mc4wp-form-fields {
  padding: 0 0 2rem;
}
.footer-navbar .newsletter-block .mc4wp-form-fields input {
  color: white;
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem 3rem;
  border: none;
}
.footer-navbar .newsletter-block .mc4wp-form-fields input[type=submit] {
  border: 1px solid #fff;
  background: transparent;
  width: 100%;
  margin-top: 1rem;
}
.footer-navbar .newsletter-block p {
  font-size: 1.4rem;
  font-weight: 100;
}
.footer-navbar .newsletter-block .mc4wp-form ::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.footer-navbar .newsletter-block .name {
  display: flex;
  justify-content: space-between;
  grid-gap: 0.5rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .newsletter-block .name {
    flex-direction: column;
    padding-bottom: 0.5rem;
  }
  .footer-navbar .newsletter-block .name input {
    width: 100%;
  }
  .footer-navbar .newsletter-block .name label {
    padding-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .newsletter-block .email {
    margin: 0;
  }
}
.footer-navbar .newsletter-block .email input {
  width: 100%;
}
.footer-navbar .newsletter-block .news-terms {
  font-size: 1.1rem;
  padding: 2rem 0 0;
}
.footer-navbar .newsletter-block .news-terms a {
  color: #9b968b;
}
.footer-navbar .heading-tertiary {
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 0rem 0 1.5rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .heading-tertiary {
    font-size: 1.4rem;
  }
}
.footer-navbar .lower-footer-links li {
  list-style: none;
  font-size: 1.2rem;
  flex: 1;
  margin-bottom: 1rem;
}
.footer-navbar .lower-footer-links li a {
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .lower-footer-links li {
    font-size: 1.4rem;
  }
}
.footer-navbar .social-links {
  display: flex;
  grid-gap: 2rem;
}
.footer-navbar .social-links li {
  list-style: none;
  font-weight: 400;
}
.footer-navbar .social-links li i {
  color: #fff;
  font-size: 1.7rem;
}
.footer-navbar .social-links li svg {
  height: 2rem;
  width: auto;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar .social-links {
    display: flex;
    justify-content: center;
  }
}
.footer-navbar .privacy {
  padding: 3rem 0;
}
.footer-navbar .privacy ul {
  list-style: none;
}
.footer-navbar .privacy ul li {
  border-left: 1px solid #9b968b;
}
.footer-navbar .privacy ul li a {
  color: #fff;
  text-decoration: none;
  padding: 2rem;
}
.footer-navbar .privacy ul li span {
  padding: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-navbar .nav ul {
    column-count: 2;
  }
}

.footer-message .footer-hero {
  height: 50rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-message .footer-hero .centre-line {
  display: flex;
  padding: 1rem;
}
.footer-message .footer-hero .centre-line div {
  flex: 1;
}
.footer-message .footer-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.footer-message .footer-hero .line {
  border-right: 1px solid #fff;
  height: 3rem;
  padding-top: 1rem;
}
.footer-message .footer-hero .footer_text {
  width: 35%;
  margin-left: 10%;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .footer-message .footer-hero .footer_text {
    width: unset;
    margin: 0;
    padding: 0 2rem;
  }
}
.footer-message .footer-hero .footer_text .heading-secondary {
  color: #fff;
  font-size: 4rem;
}
.footer-message .footer-hero .footer_text .heading-secondary--sub {
  color: #fff;
  font-weight: 400;
}
.footer-message .footer-hero .footer_text p {
  display: block;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.6rem;
}
.footer-message .footer-hero .footer_text .underscores:after {
  border-bottom: 1px solid #fff;
}
.footer-message .footer-hero .footer_link {
  border: 1px solid #fff;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer-message .footer-hero .footer_link {
    margin: 0;
  }
}
.footer-message .footer-hero .footer_link .footer_button {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 2rem 4rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer-message .footer-hero .footer_link .footer_button:hover svg {
  right: 1rem;
}
.footer-message .footer-hero .footer_link .footer_button svg {
  width: 2.7rem;
  height: auto;
  transition: all ease 0.5s;
  position: absolute;
  right: 2rem;
}
.footer-message .footer-hero .footer_link a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.1rem;
  position: relative;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .row {
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 2rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 2rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * (100% - 2 * 2rem) / 3 + 2rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 2rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * (100% - 3 * 2rem) / 4 + 2rem);
}
.row .col-3-of-4 {
  width: calc(3 * (100% - 3 * 2rem) / 4 + 2 * 2rem);
}

section {
  padding: 5rem 0;
}
section.section-largeadvert {
  padding: 0;
}
section.imgtext-slider {
  padding: 1rem 0;
}
@media only screen and (max-width: 37.5em) {
  section {
    padding: 2.5rem 0;
  }
}
section.image-rows-outer {
  padding: 1rem 0;
}
section.section-itin-camps {
  padding: 5rem 0 0;
}

.single-post section {
  padding: 2.5rem 0;
}

@media (min-width: 56.25rem) {
  section .w30,
  footer .w30 {
    width: calc(114rem * 0.3);
    margin: 0 auto;
  }
  section .w40,
  footer .w40 {
    width: calc(114rem * 0.4);
    margin: 0 auto;
  }
  section .w50,
  footer .w50 {
    width: calc(114rem * 0.5);
    margin: 0 auto;
  }
  section .w60,
  footer .w60 {
    width: calc(114rem * 0.6);
    margin: 0 auto;
  }
  section .w70,
  footer .w70 {
    width: calc(114rem * 0.7);
    margin: 0 auto;
  }
  section .w80,
  footer .w80 {
    width: calc(114rem * 0.8);
    margin: 0 auto;
  }
}
.grid-layout2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .grid-layout2 {
    display: flex;
    flex-direction: column;
  }
}

.grid-layout3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .grid-layout3 {
    display: flex;
    flex-direction: column;
  }
}

.grid-layout4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .grid-layout4 {
    display: flex;
    flex-direction: column;
  }
}

.grid-layout5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .grid-layout5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.row.extended {
  max-width: unset;
  overflow: hidden;
}
.row.extended .itin-slider {
  margin-left: 15%;
}
@media only screen and (max-width: 56.25em) {
  .row.extended .itin-slider {
    margin-left: 0;
  }
}
.row.extended .itin-slider .owl-stage .active ~ .active ~ .active {
  opacity: 0.3;
}

.relative {
  position: relative;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.mobile-toolbar-new {
  display: none;
}

.header {
  margin-top: 12rem;
  height: calc(100vh - 12rem);
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 56.25em) {
  .header {
    margin-top: 0;
  }
}
.logged-in .header {
  margin-top: 10rem;
}
.header.v25 {
  height: 25vh;
}
.header.v50 {
  height: 50vh;
}
.header.v75 {
  height: 75vh;
}
.header.v100 {
  height: 100vh;
}
.header.contact {
  height: unset;
}
@media only screen and (max-width: 56.25em) {
  .header.contact {
    height: unset !important;
  }
}
@media only screen and (max-width: 56.25em) {
  .header {
    height: 75vh;
  }
}
.header__text-box {
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .header__text-box {
    padding: 0 3rem;
  }
}
.header__quote-box {
  text-align: center;
}
.header .quick-facts {
  padding: 0;
  margin-top: 0;
}
.header .hero {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.header .hero.top {
  background-position: top;
}
.header .hero.bottom {
  background-position: bottom;
}
.header .hero.center {
  background-position: center;
}
.header .hero .overlay-country {
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.header .hero .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}
.header .hero .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}
.header .hero section {
  padding-bottom: 0;
}
.header video#bgvideo {
  position: absolute;
  top: 0;
  z-index: -1;
  background-size: cover;
  width: 100%;
  height: auto;
}

.home .header .hero {
  height: 100%;
}
.home .header .hero .home-link {
  padding-bottom: 25vh;
}

.text-fade {
  position: relative;
}
.text-fade blockquote {
  margin: 0;
  font-size: 50px;
  position: absolute;
  right: 20px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.text-fade blockquote:first-of-type {
  animation: quote-fade 3s 1;
  -webkit-animation: quote-fade 3s 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
  -webkit-animation-delay: 4s; /* Safari and Chrome */
  -webkit-animation-fill-mode: forwards;
}
.text-fade blockquote:nth-of-type(2) {
  opacity: 0;
  animation: quote-fade-in 3s 1;
  -webkit-animation: quote-fade-in 3s 1;
  animation-fill-mode: forwards;
  animation-delay: 6s;
  -webkit-animation-delay: 6s; /* Safari and Chrome */
  -webkit-animation-fill-mode: forwards;
}

@keyframes quote-fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes quote-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-links .feature-box svg #head,
.section-links .feature-box svg #body {
  fill: #9b968b;
}
.section-links a {
  color: #fff;
  text-decoration: none;
}
.section-links a.active .feature-box {
  background: #9b968b;
}
.section-links a.active .feature-box svg #head,
.section-links a.active .feature-box svg #body {
  fill: #fff;
}

header.new-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 6;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  header.new-header {
    position: fixed;
    top: 0;
  }
}
header.new-header .static--nav {
  display: flex;
}
header.new-header .static--nav-logo svg {
  height: 2rem;
  fill: white;
  width: auto;
  animation: shrink-logo linear both;
  animation-timeline: scroll();
  animation-range: 80vh 110vh; /* Start at 100vh, finish at 150vh */
}
@keyframes shrink-logo {
  from {
    height: 2rem;
    fill: white;
  }
  to {
    height: 1.5rem;
    fill: black;
  }
}
header.new-header .static--nav-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  color: #fff;
}
header.new-header .static--nav-actions svg {
  height: 2rem;
  width: auto;
  fill: white;
  animation: change-color linear both;
  animation-timeline: scroll();
  animation-range: 80vh 110vh; /* Start at 100vh, finish at 150vh */
}
@keyframes change-color {
  from {
    fill: #fff;
    color: #fff;
  }
  to {
    fill: #1d1d1b;
    color: #1d1d1b;
  }
}
header.new-header .static--nav-actions .search-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: change-color linear both;
  animation-timeline: scroll();
  animation-range: 80vh 110vh; /* Start at 100vh, finish at 150vh */
}
header.new-header.hero-nav-active {
  background-color: #fff;
}

.sidebar {
  height: 100%;
  width: 100vw;
  max-width: 400px;
  position: fixed;
  top: 0;
  z-index: 1;
  right: 0;
  background-color: #9b968b;
}

.bar {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #1d1d1b;
  margin: 5px auto;
}

.navbutton {
  cursor: pointer;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  transition: all 0.7s ease;
}

.nav-right {
  position: fixed;
  right: 3rem;
  top: 2rem;
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .nav-right {
    display: block;
  }
}

.nav-right.visible-xs {
  z-index: 3;
}

.hidden-xs {
  display: none;
}

.middle {
  margin: 0 auto;
}

.bar {
  transition: all 0.7s ease;
}

.nav-right.visible-xs .active .bar {
  background-color: #fff;
  transition: all 0.7s ease;
}

.navbutton.active .top {
  transform: translateY(7px) rotateZ(45deg);
}

.navbutton.active .bottom {
  transform: translateY(-9px) rotateZ(-45deg);
}

.navbutton.active .middle {
  width: 0;
}

.move-to-left {
  transform: translateX(-400px);
  transition: all 0.5s;
}

.sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  margin-top: 150px;
  padding-left: 20%;
}

.sidebar-item {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(-20px);
}
.sidebar-item a:before {
  content: "";
  width: 4rem;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #aaa;
  transition: all 0.7s ease-in-out;
}

.sidebar-item:first-child {
  transition: all 0.7s 0.2s ease-in-out;
}

.sidebar-item:nth-child(2) {
  transition: all 0.7s 0.4s ease-in-out;
}

.sidebar-item:nth-child(3) {
  transition: all 0.7s 0.6s ease-in-out;
}

.sidebar-item:nth-child(4) {
  transition: all 0.7s 0.8s ease-in-out;
}

.sidebar-item:nth-child(5) {
  transition: all 0.7s 1s ease-in-out;
}

.sidebar-item:nth-child(6) {
  transition: all 0.7s 1.2s ease-in-out;
}

.sidebar-item:last-child {
  transition: all 0.7s 1.4s ease-in-out;
}

.sidebar-item.active {
  opacity: 1;
  transform: translateY(0px);
}

.sidebar-anchor {
  color: #fff;
  text-decoration: none;
  font-size: 1.8em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2rem;
}

.ua {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.fa {
  font-size: 1.4em;
  color: #ef8354;
  transition: all 1s ease;
}

.ua:hover .fa {
  color: #fff;
  transform: scale(1.3);
  transition: all 1s ease;
}

@media (min-width: 480px) {
  .nav-list {
    display: block;
  }
}
@media (min-width: 768px) {
  .nav-right {
    position: absolute;
  }
}
.down_arrow {
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .down_arrow {
    padding-top: 5rem;
  }
}
.down_arrow a {
  text-decoration: none;
  color: #fff;
}
.down_arrow .arrow {
  text-align: center;
  margin: 1% 0;
}
.down_arrow .bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.top-bar .logo-bar {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.top-bar .logo-bar__image svg {
  height: 5rem;
}
.top-bar .logo-bar__image img {
  max-height: 5rem;
  width: auto;
}
.top-bar .logo-bar .nav-contacts {
  display: flex;
  grid-gap: 1rem;
}
.top-bar .logo-bar .nav-contacts li {
  list-style: none;
}
.top-bar .logo-bar .nav-contacts li i {
  background: #1d1d1b;
  border-radius: 50%;
  padding: 1rem;
  font-size: 1.3rem;
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .top-bar .logo-bar .nav-contacts li.desktop {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .top-bar .logo-bar .nav-contacts li .desktop {
    display: none;
  }
  .top-bar .logo-bar .nav-contacts li .mobile {
    display: block;
  }
}
.top-bar .logo-bar__contacts {
  align-self: center;
}
@media only screen and (max-width: 56.25em) {
  .top-bar .logo-bar__contacts {
    padding-left: 3rem;
  }
}
.top-bar .logo-bar__image {
  justify-self: center;
  align-self: center;
}
.top-bar .logo-bar__button {
  justify-self: end;
  align-self: center;
}
@media only screen and (max-width: 56.25em) {
  .top-bar .logo-bar__button {
    display: none;
  }
}
.top-bar .logo-bar__button .button {
  display: unset;
  color: #fff;
  background: #1d1d1b;
  font-weight: 400;
  font-size: 1.4rem;
}

menu {
  position: sticky;
  top: 0;
  z-index: 3;
}
menu .header-menu {
  padding: 0;
  list-style: none;
  text-align: center;
}
menu .header-menu ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
}
menu .header-menu ul li {
  display: inline-block;
}
menu .header-menu ul li.menu-logo a {
  padding: 0rem 4rem;
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
}
menu .header-menu ul li a {
  text-decoration: none;
  color: #1d1d1b;
  display: block;
  transition: ease-out 0.25s;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
}
menu .header-menu ul li a::after {
  content: "";
  display: block;
  height: 2px;
  background: #9b968b;
  width: 0;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
menu .header-menu ul li a:hover::after {
  width: 50%;
  margin: 0 auto;
}
menu .header-menu ul li.current-menu-item a:after {
  content: "";
  display: block;
  height: 2px;
  background: #9b968b;
  width: 50%;
  margin: 0 auto;
}
menu .header-menu ul li.menu-logo.current-menu-item a::after, menu .header-menu ul li.menu-logo a::after {
  content: none;
}
@media only screen and (max-width: 56.25em) {
  menu {
    display: none;
  }
}

.scrolled .top-bar {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
}

.top-bar {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: all 0.5s;
}

.top-bar.scrollUp {
  transform: translateY(-15rem);
}

@media (max-width: 768px) {
  .top-bar ul.navbar-menu {
    display: none;
  }
  .top-bar button {
    display: block;
  }
}
.menu-toggle {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  cursor: pointer;
  color: #fff;
  font-size: 0;
  transition: all 0.25s ease-in-out;
  animation: backgroundColor linear both;
  animation-timeline: scroll();
  animation-range: 80vh 110vh; /* Start at 100vh, finish at 150vh */
}
.menu-toggle:before, .menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}
@keyframes backgroundColor {
  from {
    color: #fff;
  }
  to {
    color: #1d1d1b;
  }
}

.menu-toggle:hover {
  color: white;
}

.menu-toggle.is-active {
  border-color: transparent;
}
.menu-toggle.is-active:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-toggle.is-active:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Fullscreen overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(155, 150, 139, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 5; /* under header, above content */
  color: #fff;
}
.overlay--wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 56.25em) {
  .overlay--wrapper {
    flex-direction: row;
    gap: 15vw;
  }
}
.overlay--left {
  display: flex;
  flex-direction: column;
}
.overlay--left .main-menu {
  flex: 1;
  margin-bottom: 0;
}
.overlay--left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.overlay--left ul li {
  padding-bottom: 2rem;
}
.overlay--left ul li a {
  color: #fff;
  font-size: 6rem;
  font-family: "Crimson Pro", serif;
  line-height: 1;
}
.overlay--left ul li svg {
  height: 3rem;
  width: auto;
}
.overlay--left ul.social-links {
  display: flex;
  gap: 3rem;
}
.overlay--right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.overlay--right ul li {
  padding-bottom: 2rem;
}
.overlay--right ul li:last-of-type {
  padding-bottom: 0;
}
.overlay--right ul li a {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.overlay--right .nav--contacts {
  margin-bottom: 2rem;
}
.overlay--right .nav--contacts a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
}
.overlay--right .nav--contacts svg {
  height: 4rem;
  width: auto;
}
.overlay--right .nav--contacts li {
  padding-bottom: 0.5rem;
}
.overlay--right .nav--address {
  font-size: 2rem;
}
.overlay--button {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  margin: 3rem 0;
  padding: 1.5rem 2rem;
  transition: color 0.35s ease;
}
.overlay--button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #688db6;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 0;
}
.overlay--button span {
  position: relative;
  z-index: 1;
}
.overlay--button:hover::before {
  transform: translateY(0);
}
.overlay--button:hover {
  color: #fff;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Menu list */
.overlay-menu {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.overlay-menu li {
  margin: 1rem 0;
}

.overlay-menu a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

/* Search box */
.search-box {
  width: 90%;
  max-width: 600px;
}

.search-input {
  width: 100%;
  padding: 1rem;
  font-size: 2rem;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 2px solid #9b968b; /* Hidden Africa gold */
  color: white;
}
.search-input ::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

input.search-input[type=search] {
  color: #fff;
}

input.search-input[type=search]::placeholder {
  color: #fff;
}

.recent-searches {
  padding: 1rem;
}
.recent-searches .searches {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.recent-searches .searches a {
  color: #333;
}
.recent-searches .searches a:hover {
  color: #688db6;
}

.section-about {
  padding: 25rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-about {
    padding: 20rem 0;
  }
}

.section-features {
  padding: 20rem 0;
  background-size: cover;
}
@media only screen and (max-width: 56.25em) {
  .section-features {
    padding: 10rem 0;
  }
}

.section-tours {
  padding: 25rem 0 15rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-tours {
    padding: 20rem 0 10rem 0;
  }
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-stories {
    padding: 10rem 0;
  }
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #7ed56f, #4186ba);
}
@media only screen and (max-width: 56.25em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(https://hiddenafrica.com/wp-content/themes/img/nat-10.jpg);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(29, 29, 27, 0.2);
}
@media only screen and (max-width: 75em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(https://hiddenafrica.com/wp-content/themes/img/nat-10.jpg);
    background-size: cover;
  }
}
@media only screen and (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(https://hiddenafrica.com/wp-content/themes/img/nat-10.jpg);
  }
}
.book__form {
  width: 50%;
  padding: 6rem;
}
@media only screen and (max-width: 75em) {
  .book__form {
    width: 65%;
  }
}
@media only screen and (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}

@media only screen and (max-width: 56.25em) {
  .home .header {
    height: 100vh !important;
  }
}
.home .heading-primary {
  color: #fff;
}
.home .heading-primary--main {
  text-transform: unset;
  margin-bottom: 6rem;
  font-size: 7rem;
}
.home .home-link .outline {
  border: 1px solid #fff;
  color: #fff;
}

.single-post .section-text {
  text-align: left;
}
.single-post .section-text .heading-secondary {
  font-family: "Crimson Pro", serif;
  text-align: left;
}
.single-post .section-text .heading-secondary::after {
  content: "";
  border-bottom: 1px solid #9b968b;
  width: 2rem;
  display: block;
  padding-top: 1rem;
}

.post-block .heading-secondary {
  text-align: center;
  padding: 2rem 0;
}
.post-block .post-grid .mix {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-block .post-grid .mix .post-image {
  min-height: 17rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-block .post-grid .mix .post-text {
  padding: 1rem 3rem;
  flex: 1;
}
.post-block .post-grid .mix .post-text .heading-secondary {
  text-align: left;
  padding: 0;
  line-height: 1.3;
}
.post-block .post-grid .mix .post-text .heading-secondary--sub {
  color: #1d1d1b;
}
.post-block .post-grid .mix .post-text p {
  line-height: 1.5;
}
.post-block .post-grid .mix .post-link {
  padding: 0rem 3rem 2rem;
}
.post-block .post-grid .mix .post-link a {
  color: #9b968b;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  padding-top: 1rem;
}
.post-block .post-grid .mix .post-link .overscores::before {
  margin-bottom: 0.5rem;
}
.post-block .meta {
  color: #9b968b;
}
.post-block .multi-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.post-block .multi-grid .second-filter .type-controls ul {
  list-style: none;
  padding: 2rem;
}
.post-block .multi-grid .second-filter .type-controls ul li {
  padding-bottom: 2rem;
  position: relative;
  cursor: pointer;
}
.post-block .multi-grid .second-filter .type-controls ul li.mixitup-control-active {
  font-weight: 700;
}
.post-block .multi-grid .second-filter .type-controls ul li:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  transition: all ease 0.5s;
  opacity: 1;
  position: absolute;
  right: 1rem;
}

.comment-respond input[type=text],
.comment-respond input[type=email],
.comment-respond input[type=url],
.comment-respond input[type=password],
.comment-respond input[type=search],
.comment-respond input[type=number],
.comment-respond input[type=tel],
.comment-respond textarea {
  color: #1d1d1b;
  width: 100%;
  padding: 12px 16px;
  border-radius: 0.5rem;
  border: 0;
  background: #fff;
  border: 1px solid #9b968b;
}

.commentlist {
  list-style: none;
  margin: 3rem 0 5rem;
}
.commentlist .comment-body {
  padding: 2rem;
  background: #e6e4df;
  margin-bottom: 2rem;
  border-left: 1px solid #9b968b;
}
.commentlist .comment-body .comment-author {
  display: flex;
  grid-gap: 1rem;
  margin-bottom: 2rem;
}
.commentlist .comment-body .comment-meta {
  margin-bottom: 3rem;
}
.commentlist ul {
  list-style: none;
  margin-left: 5rem;
}

.comment-respond p {
  margin: 0 0 28px;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
  outline: 1px solid rgba(84, 222, 197, 0.9);
  outline-offset: 0;
}

div.wpcf7-mail-sent-ok {
  border: 0;
  background: #5471de;
  color: #fff;
  padding: 18px;
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
  border: 0;
  background: #f9443b;
  color: #fff;
  padding: 18px;
}

span.wpcf7-not-valid-tip {
  color: #f9443b;
}

/* 
** Button Styles 
*/
.comment-respond .submit {
  background-color: #9b968b;
  border: 0;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 15px;
  width: 100%;
  padding: 20px 42px;
  letter-spacing: 2px;
  font-size: 14px;
}

.comment-respond .button:hover {
  cursor: pointer;
  box-shadow: 0px 7px 16px -7px rgba(0, 0, 0, 0.4);
  border: 0;
}

.news-item .post-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 15rem;
}
.news-item .post-text .meta a {
  color: #9b968b;
  font-family: "ff-scala-sans-pro", sans-serif;
  font-weight: 300;
}
.news-item .post-text .heading-secondary--sub {
  color: #1d1d1b;
  font-size: 2.5rem;
}

.showcase-post-block .grid-layout-show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}
.showcase-post-block .grid-layout-show .news-item:first-of-type {
  grid-column: 1;
  grid-row: 1/3;
}
.showcase-post-block .grid-layout-show .news-item:first-of-type .post-image {
  height: 25rem;
}
.showcase-post-block .grid-layout-show .news-item:not(:first-of-type) {
  grid-column: 2;
  display: grid;
  grid-template-columns: 5fr 4fr;
  grid-gap: 2rem;
}

.news-header {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 1rem;
  border-top: 2px solid #9b968b;
}

.grid-layout-latest {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4rem;
}
.grid-layout-latest .news-item:first-of-type {
  grid-column: span 3;
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: dense;
}
.grid-layout-latest .news-item:first-of-type .headline-image {
  grid-column: 2/4;
}
.grid-layout-latest .news-item:first-of-type .headline-image .post-image {
  height: 30rem;
}
.grid-layout-latest .news-item:first-of-type .post-text {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.grid-layout-latest .news-item:not(:first-of-type) .post-link {
  display: none;
}

.grid-layout-latest .news-item p {
  margin-bottom: 2rem;
}
.grid-layout-latest .news-item .post-link {
  font-style: italic;
}
.grid-layout-latest .news-item .meta {
  color: #9b968b;
}
.grid-layout-latest .news-item .overscores::before {
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

.showcase-post-block,
.triple-post-block,
.quad-post-block {
  padding: 5rem 0 0;
}
.showcase-post-block .news-header .heading-secondary,
.triple-post-block .news-header .heading-secondary,
.quad-post-block .news-header .heading-secondary {
  color: #9b968b;
  line-height: 1.1;
}
.showcase-post-block .news-header .link a,
.triple-post-block .news-header .link a,
.quad-post-block .news-header .link a {
  background: #1d1d1b;
  color: #fff;
  padding: 1rem;
}
.showcase-post-block p,
.triple-post-block p,
.quad-post-block p {
  font-size: 1.4rem;
}
.showcase-post-block .heading-secondary,
.triple-post-block .heading-secondary,
.quad-post-block .heading-secondary {
  line-height: 1.1;
}
.showcase-post-block .meta,
.triple-post-block .meta,
.quad-post-block .meta {
  font-size: 1.3rem;
}
.showcase-post-block .post-text,
.triple-post-block .post-text,
.quad-post-block .post-text {
  padding-top: 0.5rem;
}

.quad-post-block {
  padding: 5rem 0;
}

.single-itineraries .header .hero {
  justify-content: end;
}
.single-itineraries .header .hero .breadcrumb {
  color: #fff;
}
.single-itineraries .header .hero .breadcrumb a {
  color: #fff;
}
.single-itineraries .map-item .highlight-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .single-itineraries .map-item .highlight-text {
    padding-bottom: 2rem;
  }
}

.itin-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  padding: 2rem 0;
}
.itin-facts .item {
  flex: 1;
  display: flex;
  gap: 2rem;
  flex-basis: 25rem;
}
.itin-facts .item .meta,
.itin-facts .item .text {
  font-size: 1.2rem;
  line-height: 1.4;
}
.itin-facts .item .meta span,
.itin-facts .item .text span {
  font-weight: 700;
}
.itin-facts .item .text {
  flex: 1;
}
.itin-facts .heading-tertiary {
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0 0 0.75rem 0;
  font-weight: 700;
  border-bottom: 1px solid #1d1d1b;
}
.itin-facts .length {
  padding-right: 1rem;
}
.itin-facts .where .country {
  font-weight: 700;
}
.itin-facts .where .country::after {
  content: ":";
}
.itin-facts .where .country ~ .country::before {
  content: "\a";
  white-space: pre;
}
.itin-facts .where .country ~ .place::after {
  content: ",";
}
.itin-facts .where .country ~ .place:last-of-type::after {
  content: none;
}

.section-itin-camps .meta {
  color: #9b968b;
}
.section-itin-camps .heading-secondary {
  padding: 1rem 0;
}
.section-itin-camps p {
  padding: 1rem 0;
}
.section-itin-camps .button i {
  color: #1d1d1b;
  justify-self: end;
  padding-right: 1rem;
  font-size: 2rem;
}
.section-itin-camps .button .icon i {
  color: #9b968b;
}

.itin-button {
  display: grid;
  grid-template-columns: 1fr 6fr 1fr;
  align-items: center;
  padding: 2rem 1.5rem;
}
.itin-button .text {
  line-height: 1.2;
  font-size: 1.4rem;
}
.itin-button .text .camp-name {
  display: block;
  font-weight: 600;
  font-size: initial;
}

.lodges .itin-item-text {
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: 5fr 1fr;
  align-items: center;
}
.lodges .destination-meta {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.itineraries .itin-item-text {
  padding: 2rem 4rem;
  align-items: center;
}
.itineraries .itin-item-text .heading-tertiary {
  line-height: 3rem;
}
.itineraries .destination-meta {
  padding: 2rem 0;
}
.itineraries .destination-meta #places {
  list-style: none;
}
.itineraries .destination-meta #places li {
  display: inline;
}
.itineraries .destination-meta #places li::after {
  content: ",";
}
.itineraries .destination-meta #places li:first-child {
  border-left: none;
  font-weight: 700;
}
.itineraries .destination-meta #places li:first-child::after {
  content: none;
}
.itineraries .destination-meta #places li:last-child::after {
  content: none;
}

@media only screen and (max-width: 37.5em) {
  .safari-type-select .controls {
    display: none;
  }
}

.safaritype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .safaritype-grid {
    display: flex;
    flex-direction: column;
  }
}

.itin-slide-text .heading-tertiary {
  line-height: 1.7;
}
.itin-slide-text .destination-meta {
  padding: 2rem 0;
}
.itin-slide-text .destination-meta #places {
  list-style: none;
}
.itin-slide-text .destination-meta #places li {
  display: inline;
}
.itin-slide-text .destination-meta #places li::after {
  content: ",";
}
.itin-slide-text .destination-meta #places li:first-child {
  border-left: none;
  font-weight: 700;
}
.itin-slide-text .destination-meta #places li:first-child::after {
  content: none;
}
.itin-slide-text .destination-meta #places li:last-child::after {
  content: none;
}

.signature-itins .post-item {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.signature-itins .post-item .post-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 25rem;
}
.signature-itins .post-item .post-text {
  padding: 1rem 2rem;
  flex: 1;
}
.signature-itins .post-item .post-link {
  padding: 1rem 2rem 2rem;
}

.start-end {
  display: flex;
  border-bottom: 1px solid #1d1d1b;
  padding-bottom: 0.3rem;
}
.start-end .start,
.start-end .end {
  flex: 1;
}
.start-end .start .heading-tertiary,
.start-end .end .heading-tertiary {
  display: inline;
  border-bottom: none;
  padding-right: 1rem;
  letter-spacing: 0.15rem;
}
.start-end .start span,
.start-end .end span {
  font-family: "Crimson Pro", serif;
  letter-spacing: 0.15rem;
}

.tax-destination .section-map img {
  width: 100%;
}
.tax-destination .destination-block .tri-col .post-item .post-link {
  padding: 2rem 4rem;
}
.tax-destination .map-hero {
  position: relative;
}
.tax-destination .map-hero .hero {
  background: #9b968b;
}
.tax-destination .map-hero img {
  transition: all 1s ease-in-out;
  padding-top: 2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
}
.tax-destination .map-hero .map-link {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 50%;
  text-align: center;
}
.tax-destination .map-hero .map-link a {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
}
.tax-destination .map-hero .map-link a i {
  font-size: 2rem;
  display: block;
}
.tax-destination .map-hero .map-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}
.tax-destination.archive .header.visible {
  height: 85vh;
  transition: all 1s ease-in-out;
}
.tax-destination.archive .header.visible .hero {
  filter: blur(5px);
  transition: all 1s ease-in-out;
}
.tax-destination.archive .header.visible img {
  opacity: 1;
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}

.section-hightlightmap .highlight-text {
  /* Style the button that is used to open and close the collapsible content */
}
.section-hightlightmap .highlight-text .collapsible {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 2rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  display: none;
}
.section-hightlightmap .highlight-text .collapsible:after {
  content: "➕"; /* Unicode character for "plus" sign (+) */
  color: white;
  float: right;
  margin-left: 5px;
}
@media only screen and (max-width: 37.5em) {
  .section-hightlightmap .highlight-text .collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.section-hightlightmap .highlight-text .collapsible.active:after {
  content: "➖"; /* Unicode character for "minus" sign (-) */
}
.section-hightlightmap .highlight-text {
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
}
.section-hightlightmap .highlight-text .active,
.section-hightlightmap .highlight-text .collapsible:hover {
  background-color: #fff;
}
.section-hightlightmap .highlight-text {
  /* Style the collapsible content. Note: hidden by default */
}
@media only screen and (max-width: 37.5em) {
  .section-hightlightmap .highlight-text .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #fff;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-hightlightmap .highlight-text .text:first-of-type .heading-tertiary {
    display: none;
  }
}

/* NEW STYLE */
.region-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 3rem;
  padding: 0rem;
}
@media (min-width: 800px) {
  .region-block {
    padding: 0 8rem;
  }
}
.region-block--text {
  align-content: flex-end;
  margin-top: 6rem;
}
.region-block--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-nav {
  display: flex;
  gap: 1rem;
  padding: 0 8rem;
}

.slider-previous,
.slider-next {
  cursor: pointer;
  border: 1px solid #1d1d1b;
  padding: 1rem;
  height: 4rem;
  width: 4rem;
}

.section-destinations-regions .regions-slider {
  padding-top: 5rem;
}
.section-destinations-regions .swiper-nav {
  margin-bottom: -4rem;
  position: relative;
  z-index: 2;
}

.single-safari-destination .header {
  margin-top: 0;
  min-height: 100dvh;
}
.single-safari-destination .heading-primary--sub {
  font-size: 3.5rem;
  color: #fff;
}
.single-safari-destination .heading-primary--main {
  font-size: 8rem;
}
.single-safari-destination .et-hero-tabs,
.single-safari-destination .et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #eee;
  text-align: center;
  padding: 0 2em;
  height: 7rem;
}
.single-safari-destination .et-hero-tabs h1,
.single-safari-destination .et-slide h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 1rem;
}
.single-safari-destination .et-hero-tabs h3,
.single-safari-destination .et-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
}
.single-safari-destination .et-hero-tabs-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 4;
}
.single-safari-destination .et-hero-tabs-container--top {
  position: fixed;
  top: 85px;
}
.single-safari-destination .et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #000;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 0.8rem;
}
.single-safari-destination .et-hero-tab:hover {
  color: white;
  background: #688db6;
  transition: all 0.5s ease;
}
.single-safari-destination .et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #688db6;
  transition: left 0.3s ease;
}
@media (min-width: 800px) {
  .single-safari-destination .et-hero-tabs h1,
  .single-safari-destination .et-slide h1 {
    font-size: 3rem;
  }
  .single-safari-destination .et-hero-tabs h3,
  .single-safari-destination .et-slide h3 {
    font-size: 1rem;
  }
  .single-safari-destination .et-hero-tab {
    font-size: 1.6rem;
  }
}
.single-safari-destination .map-item .map-image a {
  display: flex;
}
.single-safari-destination .map-item .map-image a img {
  height: 100%;
}
.single-safari-destination .breadcrumbs {
  display: flex;
  justify-content: center;
}
.single-safari-destination .section-intro {
  padding-top: 3rem;
}
.single-safari-destination .section-content {
  padding-top: 5rem;
}
.single-safari-destination .cust-post-grid {
  padding: 5rem 0;
}
.single-safari-destination .itin-slide-image-container img {
  height: 20rem;
  object-fit: cover;
}
.single-safari-destination .activity-slide,
.single-safari-destination .wildlife-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.single-safari-destination .circle--image .activity-image-wrapper,
.single-safari-destination .circle--image .wildlife-image-wrapper {
  display: grid;
  place-content: center;
  overflow: hidden;
  text-align: center;
}
.single-safari-destination .circle--image .activity-image-wrapper img,
.single-safari-destination .circle--image .wildlife-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.single-safari-destination .circle--image .wildlife-title {
  text-align: center;
}
.single-safari-destination .itin-item-text {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.single-safari-destination .itin-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-safari-destination #parent {
  padding-top: 5rem;
}

.section-destinations-habitats {
  position: relative;
}

.section-destinations-regions {
  padding: 0 0 5rem;
}

.swiper-nav {
  position: absolute;
  bottom: 30rem;
  color: #1d1d1b;
  z-index: 99;
  cursor: pointer;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}

.slider-next,
.slider-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-next.swiper-button-disabled,
.slider-prev.swiper-button-disabled {
  opacity: 0.2;
}
.slider-next svg,
.slider-prev svg {
  width: 3rem;
  height: 3rem;
}

.tax-propertystyle .cust-post-grid .post-item .post-link {
  padding: 2rem 0;
}

.error404 .header {
  height: unset;
}
.error404 main {
  min-height: unset;
}

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.error-404 h1 span {
  font-weight: 400;
  color: #9b968b;
}

.loader {
  width: 150px;
  height: 150px;
  background-color: #9b968b;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset, 0 5px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 45%;
  top: -40%;
  background-color: #fff;
  animation: wave 5s linear infinite;
}

.loader:before {
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.4);
  animation: wave 5s linear infinite;
}

@keyframes wave {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.search-header {
  background-color: #e6e4df;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
  margin-top: 20rem;
}
.search-header__inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 900px) {
  .search-header__inner {
    grid-template-columns: 1fr auto;
  }
}
.search-header h1 {
  font-family: "Crimson Pro", serif;
  color: #1d1d1b;
}
.search-header__meta {
  margin-top: 0.75rem;
  font-family: "ff-scala-sans-pro", sans-serif;
  font-size: 1.4rem;
  color: #777;
  letter-spacing: 0.05em;
}
.search-header .searchform {
  display: flex;
  gap: 0.75rem;
}
.search-header .searchform input[type=text] {
  font-family: "Work Sans", sans-serif;
  font-size: 1.4rem;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(29, 29, 27, 0.15);
  background-color: #fff;
  min-width: 26rem;
}
.search-header .searchform input[type=text]:focus {
  outline: none;
  border-color: #9b968b;
}
.search-header .searchform input[type=submit],
.search-header .searchform button {
  font-family: "ff-scala-sans-pro", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: none;
  cursor: pointer;
  background-color: #688db6;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.search-header .searchform input[type=submit]:hover,
.search-header .searchform button:hover {
  background-color: #516e8f;
}

.search-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 700px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .search-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.search-card {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(29, 29, 27, 0.06);
  transition: all 0.5s ease-in-out;
  height: 100%;
}
.search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(29, 29, 27, 0.1);
}
.search-card__content {
  padding: 2.4rem;
}
.search-card__type {
  font-family: "ff-scala-sans-pro", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9b968b;
  margin-bottom: 0.8rem;
}
.search-card__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.search-card__title a {
  color: #1d1d1b;
  text-decoration: none;
}
.search-card__title a:hover {
  text-decoration: underline;
}
.search-card__excerpt {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #50493a;
  margin-bottom: 2rem;
}
.search-card__link {
  font-family: "ff-scala-sans-pro", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #688db6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.search-card__link:hover {
  color: #516e8f;
}

.search-pagination {
  margin-top: 4rem;
}
.search-pagination .page-numbers {
  font-family: "ff-scala-sans-pro", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  margin-right: 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(29, 29, 27, 0.15);
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.search-pagination .page-numbers:hover {
  background-color: #efefef;
}
.search-pagination .page-numbers.current {
  background-color: #9b968b;
  color: #fff;
  border-color: #9b968b;
}

.search-empty {
  padding: 4rem;
  border: 2px dashed rgba(29, 29, 27, 0.2);
  border-radius: 1.6rem;
  text-align: center;
}
.search-empty h2 {
  font-family: "Crimson Pro", serif;
  margin-bottom: 1rem;
}
.search-empty p {
  font-family: "Work Sans", sans-serif;
  color: #777;
  margin-bottom: 2rem;
}

.search .newhero {
  min-height: 30dvh;
}

.search-background {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.search-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.zoom-instagram.feed-5983 .zoom-instagram-widget__items {
  list-style: none;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  padding: 0 8rem;
}
@media only screen and (max-width: 56.25em) {
  .owl-carousel {
    padding: 0;
  }
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span,
.owl-carousel button.owl-dot span {
  font-size: 7rem;
}

.owl-prev {
  left: 0;
  top: 40%;
  position: absolute;
}

.owl-next {
  right: 0;
  top: 40%;
  position: absolute;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
   *  Owl Carousel - Animate Plugin
   */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
   * 	Owl Carousel - Auto Height Plugin
   */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
   * 	Owl Carousel - Video Plugin
   */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://hiddenafrica.com/wp-content/themes/hiddenafrica/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  font-family: "Lato", sans-serif;
}

.owl-theme .owl-nav [class*=owl-] {
  font-size: 14px;
  margin: 5px;
  padding: 4px 20px;
  display: inline-block;
  cursor: pointer;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
  transform: scale(0.75);
}
.owl-theme .owl-dots .owl-dot.active {
  transform: scale(1.2);
}

.owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.read-more,
.read-less {
  text-align: center;
  padding-top: 5rem;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .read-more,
  .read-less {
    padding-top: 3rem;
  }
}
.read-more a,
.read-less a {
  color: #9b968b;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Crimson Pro", serif;
  position: relative;
}
.read-more a::before,
.read-less a::before {
  content: "";
  position: absolute;
  left: 50%;
  border-right: 1px solid #9b968b;
  height: 2rem;
  z-index: 1;
  top: -3rem;
}

.poster {
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  filter: saturate(70%) contrast(85%);
}
.poster img {
  width: 100%;
  display: block;
  z-index: 1;
}
.poster:before {
  height: 4%;
  bottom: -4%;
  background-repeat: no-repeat;
  background-image: linear-gradient(177deg, rgba(0, 0, 0, 0.22) 10%, transparent 50%), linear-gradient(-177deg, rgba(0, 0, 0, 0.22) 10%, transparent 50%);
  background-size: 49% 100%;
  background-position: 2% 0, 98% 0;
}
.poster:after {
  height: 100%;
  top: 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0.5%, rgba(0, 0, 0, 0.15) 1.2%, transparent 1.2%), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0.5%, rgba(0, 0, 0, 0.15) 1.2%, transparent 1.2%), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0.5%, rgba(0, 0, 0, 0.15) 1.2%, transparent 1.2%), linear-gradient(265deg, rgba(0, 0, 0, 0.2), transparent 10%), linear-gradient(5deg, rgba(0, 0, 0, 0.2), transparent 15%), linear-gradient(-5deg, rgba(0, 0, 0, 0.1), transparent 10%), linear-gradient(5deg, rgba(0, 0, 0, 0.1), transparent 10%), linear-gradient(-265deg, rgba(0, 0, 0, 0.2), transparent 10%), linear-gradient(-5deg, rgba(0, 0, 0, 0.2), transparent 15%), linear-gradient(266deg, rgba(0, 0, 0, 0.2), transparent 10%);
  background-size: 50% 100%, 100% 33.3333%, 100% 33.3333%, 50% 33.3333%, 50% 33.3333%, 50% 33.3333%, 50% 33.3333%, 50% 33.3333%, 50% 33.3333%, 50% 33.3333%;
  background-position: right top, left center, left bottom, left top, left top, right top, left center, right center, right center, left bottom;
}

.poster:before,
.poster:after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
}

.prop-slider .owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px;
}
.prop-slider .owl-theme .owl-dots .owl-dot.active span,
.prop-slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #5110e9;
}
.prop-slider .owl-carousel .item {
  text-align: center;
}
.prop-slider .owl-carousel .nav-button {
  height: 50px;
  width: 25px;
  cursor: pointer;
  position: absolute;
  top: 110px !important;
}
.prop-slider .owl-carousel .owl-prev.disabled,
.prop-slider .owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.25;
}
.prop-slider .owl-carousel .owl-prev {
  left: -35px;
}
.prop-slider .owl-carousel .owl-next {
  right: -35px;
}
.prop-slider .owl-carousel .prev-carousel:hover {
  background-position: 0px -53px;
}
.prop-slider .owl-carousel .next-carousel:hover {
  background-position: -24px -53px;
}

/* Lightbox */
.mfp-bg,
.mfp-wrap {
  position: fixed;
  left: 0;
  top: 0;
}

.mfp-bg,
.mfp-container,
.mfp-wrap {
  height: 100%;
  width: 100%;
}

.mfp-arrow:after,
.mfp-arrow:before,
.mfp-container:before,
.mfp-figure:after {
  content: "";
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  z-index: 1043;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-close,
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
  display: none;
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

.mfp-figure:after,
.mfp-iframe-scaler iframe {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-figure,
img.mfp-img {
  line-height: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1;
}

.mfp-arrow:after,
.mfp-arrow:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-image-holder .mfp-content,
img.mfp-img {
  max-width: 100%;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.mfp-figure:after,
img.mfp-img {
  width: auto;
  height: auto;
  display: block;
}

img.mfp-img {
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure:after {
  top: 40px;
  bottom: 40px;
  right: 0;
  z-index: -1;
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
  padding: 0;
}

/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

/* padding for main container */
.mfp-no-margins .mfp-container {
  padding: 0;
}

/* 

for zoom animation 
uncomment this part if you haven't added this code anywhere else

*/
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: flex;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 4rem;
  height: 4rem;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #f5f4f4;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #1d1d1b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "\f053";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "\f054";
}

[dir=rtl] .slick-next:before {
  content: "\f053";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "lato";
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

#map {
  width: 100%;
  height: 100%;
}

/*---------- Video Embeds ---------*/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

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

.swiper-pagination-bullet-active {
  background: #516e8f !important;
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

/* container */
.iti--container {
  z-index: 2999999999 !important;
}

/* dropdown */
html.pum-open.pum-open-overlay.pum-open-scrollable body > :not([aria-modal=true]) {
  padding-right: 0px !important;
}

/* Gravity Forms */
/* remove flex from first last name field */
body .gform_wrapper.gravity-theme .ginput_complex {
  display: block;
}

/* Force fields 100% */
body .gform_wrapper.gravity-theme .gfield input.medium,
body .gform_wrapper.gravity-theme .gfield select.medium {
  width: 100%;
}

/* Submit button */
body .gform_wrapper.gravity-theme #field_submit input,
body .gform_wrapper.gravity-theme .gform_footer input {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  background-color: rgb(155, 150, 139);
  border: none;
  padding: 1.2rem 2.2rem;
}

body .gform_wrapper.gravity-theme #field_submit input:hover,
body .gform_wrapper.gravity-theme .gform_footer input:hover {
  background: #625e56;
}

body .gform_wrapper.gravity-theme a.form-privacy {
  text-decoration: underline;
}

body .gform_wrapper.gravity-theme .gfield_checkbox label {
  font-weight: 400;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-weight: 600;
}

/* Input field styles */
.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  border: none;
  border-radius: 2px;
  font-family: "Crimson Pro", serif;
  font-size: 18px !important;
}

body .gform_wrapper.gravity-theme textarea {
  font-family: "Crimson Pro", serif;
  padding: 15px;
}

body p.gf-sub-title {
  margin: 0;
  font-family: "Crimson Pro", serif;
  color: #9b968b;
  font-weight: 400;
  font-size: 2.5rem;
  font-style: italic;
  padding-top: 2rem;
  margin-bottom: 0px;
}

body h3.gf-field-title {
  font-family: "Crimson Pro", serif;
  padding-bottom: 0rem;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0px;
}

.gform_wrapper.gravity-theme legend,
.gform_wrapper.gravity-theme label,
.gform_wrapper.gravity-theme .gform-field-label--type-sub {
  color: #666666;
}

.gform_wrapper.gravity-theme input:focus-visible,
.gform_wrapper.gravity-theme textarea:focus-visible {
  outline: 1px solid #9b968b;
  border-radius: 3px;
}

.gform_wrapper.gravity-theme select:focus-visible {
  border: 1px solid #9b968b;
  outline: none;
}

.gform_wrapper.gravity-theme ul#input_3_17,
.gform_wrapper.gravity-theme ul#input_6_17 {
  padding: 0px;
  list-style-type: none;
}

.gform_wrapper.gravity-theme ul#input_3_17 li,
.gform_wrapper.gravity-theme ul#input_6_17 li {
  margin-left: 0px;
  padding-left: 0px;
}

.gform_wrapper.gravity-theme ul#input_3_17 li::marker,
.gform_wrapper.gravity-theme ul#input_6_17 li::marker {
  content: "";
}

/* Image choices */
/* Hover */
body .gf-boxed-label .image-choices-choice label:hover,
body .gf-boxed-text .image-choices-choice label:hover {
  border: 2px solid #9b968b;
}

/* Selected */
body .gf-boxed-label .image-choices-choice-selected,
body .gf-boxed-text .image-choices-choice-selected {
  border-color: #9b968b;
}

body .gf-boxed-label .image-choices-choice-selected label,
body .gf-boxed-text .image-choices-choice-selected label {
  border: 2px solid #9b968b !important;
}

body .gf-boxed-label .image-choices-choice label {
  background: #fff;
  border: 2px solid #ececec;
  padding: 20px !important;
}

/* for inquiry form dates */
body .gf-boxed-label .gchoice_3_27_0 label,
body .gf-boxed-label .gchoice_3_27_1 label,
body .gf-boxed-label .gchoice_3_27_2 label,
body .gf-boxed-label .gchoice_3_27_3 label {
  padding: 10px !important;
}

.gform_wrapper #field_3_37 label,
.gform_wrapper #field_3_38 label,
.gform_wrapper #field_3_17 label {
  font-size: 14px;
  font-weight: 400;
}

body .gf-boxed-label .image-choices-choice-image-wrap {
  background-size: contain;
  /*width: 125px!important;
  height: 125px!important;*/
}

body .gf-boxed-label .image-choices-choice-text {
  text-transform: uppercase;
}

body .gf-boxed-text .image-choices-choice label {
  background: #fff;
  border: 2px solid #fff;
  padding: 20px !important;
}

body .gf-boxed-text .image-choices-choice-image-wrap {
  display: none !important;
  /* background-size:none; */
}

body .gf-boxed-text .image-choices-choice-text {
  font-size: 14px;
}

.gform_confirmation_message {
  padding: 20px;
  margin-bottom: 2rem;
  border: 1px solid #666;
}

.gform_wrapper.gravity-theme .gf-raq-complex .gfield_label {
  display: none;
}

/* first name, phone and email need to display */
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_1 .gfield_label,
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_2 .gfield_label,
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_5 .gfield_label {
  display: inline-block;
}

/* arrival / departure date and pax number label needs to display */
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_21 .gfield_label,
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_22 .gfield_label,
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_25 .gfield_label,
.gform_wrapper.gravity-theme .gf-raq-complex #field_4_26 .gfield_label {
  display: inline-block;
}

body .gform_wrapper.gravity-theme .gf-raq-simple p.gf-sub-title {
  padding-top: 0px;
  font-size: 2rem;
}

body .gform_wrapper.gravity-theme .gf-raq-simple h3.gf-field-title {
  font-size: 2.5rem;
}

body .gform_wrapper.gravity-theme input[type=text] {
  padding: 10px;
}

.gform_wrapper.gravity-theme .ginput_complex label {
  padding-top: 0px;
  padding-bottom: 5px;
  font-weight: 400;
}

/* Simple form - destinations, budget and comment */
#field_3_19 .gfield_label,
#field_3_19 .gfield_description,
#field_3_25 .gfield_label,
#field_3_3 .gfield_label,
#field_3_3 .gfield_description {
  display: none;
}

/* destinations on complex form to run onto 2 lines */
#input_4_24 {
  width: 65%;
  margin: 0 auto;
}

/* phone field description */
#gfield_description_3_5 {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-size: 12px;
}

/* multi page form */
.gform_wrapper.gravity-theme .gf-raq-complex-multi-page .gform_fields {
  padding-left: 1px;
}

.gform_wrapper.gravity-theme .gf-raq-complex-multi-page .gform_page_footer {
  display: flex;
}

.gform_wrapper.gravity-theme .gf-raq-complex-multi-page .gform_page_footer input {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  height: auto;
  line-height: normal;
  text-align: center;
  background: rgb(155, 150, 139);
  border: none;
  cursor: pointer;
}

.gform_wrapper.gravity-theme .gf-raq-complex-multi-page .gform_page_footer input:hover {
  background: rgb(105, 102, 94);
}

.gform_wrapper.gravity-theme .gf-raq-complex-multi-page .gform_page_footer input.gform_previous_button {
  color: #fff;
}

/* Newsletter Popup  */
body #popmake-6593 {
  background-image: url(https://hiddenafrica.com/wp-content/uploads/2023/05/desktop-bground-exported.jpg);
  border: 0px;
  background-size: cover;
  background-position: center;
  padding-top: 220px !important;
  /*padding-top: 22rem!important;*/
  width: 580px;
}

body #popmake-6593 {
  /*padding-bottom:6rem;*/
  padding-bottom: 90px;
}

@media only screen and (max-width: 37.5em) {
  /* 600px */
  body #popmake-6593 {
    border: 0px;
    background-size: cover;
    background-position: center;
    padding-top: 220px !important;
    /*padding-top: 22rem!important;*/
    width: auto;
  }
  body #popmake-6593 .gform_wrapper.gravity-theme .ginput_complex {
    display: block !important;
  }
}
@media only screen and (max-width: 490px) {
  body #popmake-6593 h3.gf-field-title {
    padding: 0px 0px 10px 0px !important;
  }
  body #popmake-6593 {
    width: 95%;
  }
  body #popmake-6593 .gchoice.gchoice_7_14_1 {
    display: block !important;
  }
  body #popmake-6593 .gform_wrapper.gravity-theme .gfield_checkbox label {
    font-size: 10px !important;
    padding-left: 4px !important;
  }
}
@media only screen and (max-width: 415px) {
  body #popmake-6593 h3.gf-field-title {
    padding: 0px 0px 10px 0px !important;
  }
  body #popmake-6593 {
    background-image: url(https://hiddenafrica.com/wp-content/uploads/2023/05/mobile-bground-no-logo-exported.jpg);
    width: 90%;
    padding: 20px;
  }
  body #popmake-6593 .gform_wrapper.gravity-theme .gfield_checkbox label {
    font-size: 9px !important;
    padding-left: 2px !important;
  }
  body #popmake-6593 h3.gf-field-title {
    font-size: 20px !important;
  }
  body #popmake-6593 .gf-sub-title {
    font-size: 16px !important;
  }
}
body #popmake-6593 .title-html {
  /*padding: 15px 1.5rem 0rem 1.5rem;*/
}

body #popmake-6593 h3.gf-field-title {
  padding: 0px 3.5rem 10px 3.5rem;
  font-size: 25px;
}

#popmake-6594 .title-html,
#popmake-6593 .title-html {
  padding-top: 20px;
}

body #popmake-6593 h3.gf-field-title,
body #popmake-6593 .gf-sub-title {
  color: #fff !important;
  font-style: normal;
}

body #popmake-6593 .gf-sub-title {
  padding: 10px 0px 0px 0px;
  font-size: 20px;
}

body #popmake-6593 .horizontal-line {
  border-bottom: 1px solid #fff;
  width: 100px;
  margin: 0 auto;
}

body #popmake-6593 .gform_wrapper.gravity-theme .gfield select {
  border-radius: 0px;
}

body #popmake-6593 .gform_wrapper.gravity-theme .gfield_checkbox label {
  font-size: 12px;
  color: #fff;
  padding-left: 8px;
}

body #popmake-6593 a.form-privacy {
  color: #fff;
  text-decoration: none;
}

body #popmake-6593 a.form-privacy:hover {
  text-decoration: underline;
}

body #popmake-6593 .gchoice.gchoice_7_14_1 {
  display: flex;
  justify-content: center;
}

body #popmake-6593 .gform_wrapper.gravity-theme .gchoice_7_14_1 input {
  border-radius: 0px !important;
}

body #popmake-6593 .gform_wrapper.gravity-theme #field_submit input,
body #popmake-6593 .gform_wrapper.gravity-theme .gform_footer input {
  width: auto;
  justify-content: center;
  cursor: pointer;
  border-radius: 0px !important;
  background-color: #688db6;
  border: none;
  padding: 1.2rem 2.2rem;
  margin: 0 auto;
}

body #popmake-6593 .gform_wrapper.gravity-theme .ginput_complex {
  display: flex;
}

#popmake-6593 .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 0%;
}

body #popmake-6593 .gform_wrapper.gravity-theme input[type=text] {
  padding: 8px;
  border-radius: 0px;
}

body #popmake-6593 .gform_wrapper.gravity-theme .gfield input.medium,
body .gform_wrapper.gravity-theme .gfield select.medium {
  border-radius: 0px;
}

body #popmake-6593 .gform_wrapper.gravity-theme #field_submit input:hover,
body #popmake-6593 .gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: #516e8f;
}

/* end newsletter styles */
/* first title-html field */
#popmake-6594 #field_3_21 {
  padding-top: 20px;
}

body .gform_wrapper.gravity-theme .title-html,
body .gform_wrapper.gravity-theme .gf-boxed-text,
body .gform_wrapper.gravity-theme .gf-boxed-label {
  text-align: center !important;
}

body .gform_wrapper.gravity-theme .fullwidth-boxed .image-choices-choice {
  width: 100% !important;
}

body .gform_wrapper.gravity-theme .fullwidth-boxed .image-choices-choice label {
  padding: 10px;
}

@media only screen and (max-width: 37.5em) {
  #field_3_17 input#choice_3_17 {
    vertical-align: top;
    margin-top: 2px;
    margin-right: 10px;
  }
  #field_3_14 input#choice_3_14_1 {
    margin-right: 10px;
  }
  /* Submit button */
  body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: normal !important;
    min-height: 100% !important;
  }
  /* Submit button */
  body .gform_wrapper.gravity-theme .gf-raq-simple .gform_footer input[type=submit] {
    border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -webkit-appearance: none;
    height: 40px !important;
    width: 100%;
  }
  /* destinations on complex form to run onto 2 lines */
  #input_4_24 {
    width: 100%;
  }
}
/* Spinner */
.gform_ajax_spinner {
  margin: auto;
}

.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
  flex-direction: column;
}

.gform_wrapper.gravity-theme span.gold {
  color: #9b968b;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  border: none;
}

/* Newsletter footer form [gravityform id="8" title="false" description="false" ajax="true"] */
body #gform_wrapper_8.gravity-theme span#input_8_1_3_container label {
  display: none;
}

body #gform_wrapper_8.gravity-theme input[type=text],
body #gform_wrapper_8.gravity-theme input[type=email] {
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 14px !important;
  font-family: "work-sans", sans-serif;
  color: #fff;
}

body #gform_wrapper_8 .gform_fields .gfield input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

body #gform_wrapper_8 .gform_fields .gfield input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

body #gform_wrapper_8 .gform_fields .gfield input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

body #gform_wrapper_8 .gform_fields .gfield input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

body #gform_wrapper_8 label#label_8_14_1 a {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none !important;
}

body #gform_wrapper_8 label#label_8_14_1 span {
  display: block;
  font-size: 14px;
}

body #gform_wrapper_8.gravity-theme label#label_8_14_1 {
  font-size: 14px;
}

body #gform_wrapper_8.gravity-theme .gfield-choice-input {
  margin-top: 6px;
  vertical-align: top;
}

body #gform_wrapper_8.gravity-theme #field_submit input,
body #gform_wrapper_8.gravity-theme .gform_footer input {
  border-radius: 0px;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
}

body #gform_8 .gform_footer,
body #gform_8 .gform_page_footer {
  padding-top: 8px !important;
}

/* End Gravity Forms */
/* Pages */
/* All thank you and single form pages no button display */
/* thank you new */
.page-id-6620 .logo-bar__button,
.page-id-6599 .logo-bar__button,
.page-id-6616 .logo-bar__button,
.page-id-6660 .logo-bar__button,
.page-id-6654 .logo-bar__button {
  display: none;
}

.page-id-6654 .popmake-6594,
.page-id-6660 .popmake-6594,
.page-id-6666 .popmake-6594,
.page-id-6029 .popmake-6594,
.page-id-5953 .popmake-6594,
.page-id-5254 .popmake-6594 {
  display: none;
}

.page-template-gravity-form .header {
  margin-top: 14rem;
  height: auto;
}

.page-template-gravity-form .header .hero {
  display: none;
}

#gravity-form-section {
  padding-top: 0px;
}

#home-simple-text-block-no-spacing {
  margin: 0px;
  padding: 0px;
}

#home-simple-text-block-no-top-spacing {
  padding-top: 0px;
}

/* thank you new confirmation page */
.page-id-6620 .simple-text-block .text ul {
  margin-bottom: 0px;
}

/* homepage googel reviews sectio */
body #google-reviews {
  background-color: #fff !important;
}

.dates-rates {
  padding-top: 0px;
}

@media only screen and (max-width: 37.5em) {
  .dates-rates .header__text-box {
    padding-top: 2rem;
  }
}
/* Landing Page Template  */
/* 	landing page sections ID 7342, honeymoon ID 7219 */
.page-template-landing-pages .landing-page-container {
  width: 50%;
  padding-top: 15px;
}

@media only screen and (max-width: 56.25em) {
  .page-template-landing-pages .landing-page-container {
    width: 100%;
  }
}
.page-template-landing-pages .landing-page-container p {
  text-align: center;
}

.page-template-landing-pages .landing-page-review-container {
  width: 70%;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 2rem;
}

.page-template-landing-pages .landing-page-review-container p {
  margin-bottom: 0em;
  font-size: 1.4rem;
}

.page-template-landing-pages .landing-page-review-container .fas {
  color: #fcbf02;
}

.page-template-landing-pages .landing-page-review-container .author-container {
  font-size: 1.4rem;
  color: #c7c7c7;
}

.page-template-landing-pages .landing-page-review-container .author-container .viagoogle a {
  color: #c7c7c7;
}

#landing-no-margin {
  padding-top: 0px;
  padding-bottom: 0px;
}

.page-template-landing-pages .advert-hero .advert_text {
  width: 45%;
}

#landing-padding-2rem {
  padding: 2rem 0rem;
}

.page-template-landing-pages section {
  padding: 2rem 0rem;
}

.page-template-landing-pages header {
  margin-top: 7rem; /* default 12rem */
}

.page-template-landing-pages .footer-message {
  display: none;
}

@media only screen and (max-width: 37.5em) {
  /* landing pages */
  .page-template-landing-pages .image-rows-outer .image-row.twor,
  .page-template-landing-pages .image-rows-outer .image-row.twol,
  .single-post .image-rows-outer .image-row.two,
  .single-post .image-rows-outer .image-row.twor,
  .single-post .image-rows-outer .image-row.twol,
  .single-post .image-rows-outer .image-row.four,
  .single-post .image-rows-outer .image-row.threec,
  .image-rows-outer .image-row.two {
    grid-template-columns: none !important;
  }
  .page-template-landing-pages .advert-hero .advert_text {
    width: 100%;
  }
}
/* END PAGES */
/* MISC */
.award {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

a.brochure-image-link:hover {
  border-bottom: none !important;
}

a.brochure-image-link img:hover {
  box-shadow: 0 1px 25px 0px rgba(0, 0, 0, 0.1);
}

.gravity-popup-button {
  background: #688db6;
  color: #fff;
  padding: 1.4rem 6.4rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1.7px;
  border: none;
  /*border-radius: 3px;*/
}

.gravity-popup-button:hover {
  background: #516e8f;
}

li.gravity-enquire .gravity-popup-button {
  width: 100%;
}

.chevron-sm {
  font-size: 10px;
  font-weight: 600;
}

/* Popup */
.pum-theme-6586 .pum-container,
.pum-theme-lightbox .pum-container {
  padding-top: 0px !important;
}

.startend {
  margin-bottom: 15px;
}

body .destination-meta #places {
  margin-bottom: 15px !important;
  font-size: 1.4rem;
  font-weight: normal;
}

.destination-meta h4,
.destination-meta .visiting-title {
  color: #9b968b;
  font-size: 1.4rem;
  font-weight: normal !important;
}

.destination-meta h4 span {
  color: #1d1d1d;
}

.destination-meta .price h4,
.destination-meta .price h4 span {
  color: #1d1d1d;
  font-family: "Crimson Pro", serif;
  font-size: 1.7rem;
}

@media only screen and (max-width: 37.5em) {
  /* 600px */
  .heading-secondary--main {
    font-size: 4rem;
  }
  body .heading-secondary--sub {
    font-size: 2.5rem;
  }
}
.heading-tertiary--sub a:hover {
  border-bottom: 1px solid #9b968b;
}

.breadcrumb a:hover {
  border-bottom: 1px solid #9b968b;
}

.term-tarangire-national-park .imageoff-100,
.term-mahale-mountains-national-park .imageoff-100 {
  background-position: 100% 40px !important;
}

.button.outline:hover {
  border: 1px solid #9b968b;
  color: #9b968b;
}

/* clickable tour card image */
.itin-slide-image-container {
  position: relative;
}

.itin-slide-image-container img {
  width: 100%;
}

.itin-slide-image-container .overlay-country {
  position: absolute;
  top: 0px;
  z-index: 2;
  color: #fff;
  margin: 2rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  flex-wrap: wrap;
}

.itin-card .itin-slide-image-container .overlay-country span {
  background: #1d1d1b;
  padding: 1rem;
}

.itin-card .itin-slide-image-container .overlay-country span:hover {
  background: #444;
}

.itin-card .itin-slide-image-container .overlay-country a {
  color: #fff;
  margin-bottom: 1rem;
}

/* Non clickable tour card image */
.itin-card .itin-slide-text a:hover {
  border-bottom: 1px solid #1d1d1b;
}

.dest-item-explore {
  color: #fff;
  display: block;
  border: 1px solid #fff;
  padding: 1rem;
}

.dest-item-explore:hover {
  color: #9b968b;
  border: 1px solid #9b968b;
}

body .prop-slider .property-style-block .style-text a.button:hover {
  border: 1px solid #797979;
  color: #797979;
}

.itin-slider .itin-slide-block .itin-slide-button .button:hover {
  border-color: #9b968b;
  color: #9b968b;
}

.post-block .all-posts-header {
  padding: 0px;
}

.post-block .post-grid .post-text .underscores:after,
.triple-post-block .post-text .underscores:after,
.quad-post .post-text .underscores:after,
.showcase-post-block .post-text .underscores:after {
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.toggle-block label .heading:hover,
.toggle-dates label .heading:hover {
  color: #9b968b;
}

.toggle-block .item:hover {
  border: 1px solid #9b968b;
}

@media only screen and (max-width: 37.5em) {
  .toggle-block label {
    /* grid-template-columns: 5fr 3fr; */
    grid-template-columns: 6fr 1fr;
    /* grid-template-rows: 1fr 1fr; */
    grid-template-rows: 0fr 1fr;
  }
  .toggle-block label .heading.underscores {
    grid-row: 2;
  }
  .toggle-block label i {
    grid-row: span 2;
  }
  body .toggle-block .content {
    padding-left: 0%;
    padding-right: 0px;
  }
}
.image-text-block .image-text-block-img {
  height: 35rem;
  width: 100%;
}

@media only screen and (max-width: 56.25em) {
  .image-text-block .image-text-block-img,
  .image-text-block .image {
    /* height: auto; */
    height: 35rem;
  }
}
body .content-text a.button:hover {
  border: 1px solid #797979;
  color: #797979;
}

body .read-more-block a.read-more__link:hover {
  border-bottom: 1px solid #9b968b;
}

body .top-bar.scrollUp .side-filter .controls ul {
  flex-direction: column;
  margin-right: 2rem;
  position: sticky;
  top: 3rem !important; /*17rem;*/
}

.side-filter .controls ul li.gravity-enquire:after {
  content: "";
}

@media only screen and (max-width: 56.25em) {
  .side-filter .filter-grid {
    display: flex;
    flex-direction: column;
  }
  .showcase-post-block .grid-layout-latest,
  .showcase-post-block .grid-layout-latest .news-item:first-of-type {
    display: flex;
    flex-direction: column;
  }
}
.view-more-btn:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 56.25em) {
  .image-rows-outer .image-row.twol,
  .image-rows-outer .image-row.twor {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 56.25em) {
  .mobile-toolbar-new {
    display: block;
  }
  /* contact page */
  .page-id-310 .mobile-toolbar-new {
    display: none;
  }
}
.footer {
  font-size: 1.4rem;
  color: #fff;
  background: #1d1d1b;
  font-family: "work-sans", sans-serif;
}

@media only screen and (max-width: 360px) {
  body .footer-message .footer-hero {
    height: auto;
    padding: 2.5rem 0rem;
  }
}
.header .hero section {
  padding: 10.5rem 0;
}

.single-itineraries .header {
  height: 94vh;
}

@media only screen and (max-width: 56.25em) {
  .header {
    height: 45vh; /* prev auto */
    min-height: 65vh;
  }
  .single-post .header {
    min-height: 60vh;
    height: 45vh; /* prev auto */
  }
  /* landing template 1 */
  .page-template-landing-pages .header {
    height: 60vh; /* prev auto */
  }
  .itineraries-template-default .header {
    height: auto;
  }
  /* contact page */
  .page-id-310 .header {
    min-height: auto;
  }
}
.single-post .header__text-box {
  padding-top: 20px;
}

@media only screen and (max-width: 37.5em) {
  /* 600px */
  /* hide top enquire now button on mobile */
  .itin-cta {
    display: none;
  }
}
.header .hero .overlay-country span:hover {
  background: #333;
}

.home .header .hero {
  height: 100%;
}

.sidebar-item a:before {
  display: none;
}

.sidebar-item:first-child a:before {
  content: none;
}

li.mobile-enquire-now {
  margin-bottom: 30px;
}

li.mobile-enquire-now a {
  border: 1px solid #fff;
  padding: 1.4rem 6.4rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.7px;
}

@media only screen and (max-width: 380px) {
  .sidebar-item:first-child a {
    padding: 1rem;
  }
}
@media only screen and (max-width: 189px) {
  .sidebar-item:first-child a {
    padding: 0px;
    border: none;
  }
}
.top-bar .logo-bar__image img {
  max-height: 5rem;
  height: auto;
}

@media only screen and (max-width: 56.25em) {
  .top-bar .logo-bar__image img {
    width: 200px;
  }
}
.top-bar .brochure-container {
  display: grid;
  grid-column-end: 4;
  justify-content: end;
}

.top-bar .brochure-container a {
  font-size: 13px;
  padding-right: 0.6em;
}

.top-bar .brochure-container a:hover {
  text-decoration: underline;
}

.top-bar .brochure-container a i {
  font-size: 10px;
}

li.mobile-brochure-menu {
  margin-top: 20px;
}

li.mobile-brochure-menu a {
  font-size: 14px;
  padding-left: 3rem;
}

li.mobile-brochure-menu a:before {
  display: none;
}

@media only screen and (max-width: 56.25em) {
  .top-bar .logo-bar__button {
    display: none;
  }
  .top-bar .brochure-container {
    display: none;
  }
}
.top-bar .logo-bar__button .button {
  display: unset;
  color: #fff;
  /*background: #1d1d1b;*/
  background: #688db6;
  font-weight: 400;
  font-size: 1.4rem;
  border-radius: 0px;
  border-color: #688db6;
}

.top-bar .logo-bar__button .button:hover {
  background: #516e8f;
  border: 1px solid #516e8f;
}

menu .header-menu ul li a {
  text-decoration: none;
  color: #1d1d1b;
  display: block;
  transition: ease-out 0.25s;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 8px;
}

menu .header-menu ul li a:hover {
  background: #f4f4f4;
}

menu .header-menu ul li a:after {
  content: none;
  /*content: "";
  display: block;
  height: 2px;
  background: #9b968b;
  width: 0;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;*/
}

menu .header-menu ul li a:hover:after {
  width: 50%;
  margin: 0 auto;
}

menu .header-menu ul li.current-menu-item a:after {
  content: none;
  /*content: "";
  display: block;
  height: 2px;
  background: #9b968b;
  width: 50%;
  margin: 0 auto;*/
}

menu .header-menu ul li.menu-logo a:after,
menu .header-menu ul li.menu-logo.current-menu-item a:after {
  content: none;
}

.page-template-landing-pages .heading-primary--main {
  text-transform: unset;
  font-size: 5.5rem;
}

.page-template-landing-pages .heading-primary--sub {
  color: #c7c7c7;
}

@media only screen and (max-width: 360px) {
  .home .heading-primary--main {
    font-size: 4rem;
  }
}
.post-grid .meta a {
  color: #9b968b;
}

.news-item .post-text .meta a {
  color: #9b968b;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Crimson Pro", serif;
  letter-spacing: 0.15rem;
}

.news-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 1rem;
  border-top: 1px solid #9b968b;
  align-items: center;
}

.grid-layout-latest .news-item .post-link,
.quad-post-block .news-item .post-link,
.triple-post-block .news-item .post-link {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  padding-top: 1rem;
}

.grid-layout-latest .news-item .post-link a,
.quad-post-block .news-item .post-link a,
.triple-post-block .news-item .post-link a {
  color: #9b968b;
}

.single-itineraries .simple-text .simple-text-block .content-text p {
  text-align: left !important;
}

@media only screen and (max-width: 37.5em) {
  .single-itineraries .map-item .highlight-text {
    padding-bottom: 2rem;
  }
}
.itin-cta {
  padding-bottom: 0rem;
}

.itin-facts .meta #places {
  list-style: none;
}

.itin-facts .meta #places li {
  display: inline;
}

.itin-facts .meta #places li:after {
  content: ", ";
}

.itin-facts .meta #places li:last-child:after {
  content: none;
}

.itin-facts .where .country {
  font-weight: 700;
}

.itin-facts .where .country:after {
  content: ":";
}

.itin-facts .where .country ~ .country:before {
  content: "\a";
  white-space: pre;
}

.itin-facts .where .country ~ .place:after {
  content: ", ";
}

.itin-facts .where .country ~ .place:last-of-type:after {
  content: none;
}

.home .owl-carousel .owl-nav .owl-prev,
.home .owl-carousel .owl-nav .owl-next {
  padding: 6px 15px;
  border: 1px solid #000;
}

.home .owl-carousel .owl-nav .owl-prev,
.home .owl-carousel .owl-nav .owl-next {
  padding: 6px 15px;
  border: 1px solid #000;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  color: #a2a2a2;
  border-color: #a2a2a2;
  text-decoration: none;
  border: 1px solid #a2a2a2;
}

/* Desktop Mega Menu */
/* Safari 1 col */
li.has-mega-menu-safaris:hover ul.sub-menu {
  display: flex;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.05);
  /* width: 40%; when 3 col */
  width: auto;
}

/* Destinations 2 col */
li.has-mega-menu-destinations:hover ul.sub-menu {
  display: flex;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.05);
  /* width: 50%l when 2 col */
  width: 500px;
}

/* Hideaways 1 col */
li.has-mega-menu-hideaways:hover ul.sub-menu {
  display: flex;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.05);
  /* width: 40%; when 3 col */
  width: auto;
}

/* shared */
menu .header-menu ul.sub-menu {
  align-items: normal;
  flex-direction: column;
  position: absolute;
  background-color: white;
  display: none;
  flex-direction: row;
  /* min-height:320px; */
  min-height: auto;
  padding: 25px;
  justify-content: flex-start;
}

menu .header-menu ul.sub-menu li ul.sub-menu {
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  box-shadow: none !important;
  position: relative;
}

menu .header-menu ul.sub-menu li {
  text-align: left;
}

menu .header-menu li.has-mega-menu-destinations ul.sub-menu li.mega-menu-column {
  width: 210px;
}

menu .header-menu li.has-mega-menu-safaris ul.sub-menu li.mega-menu-column {
  width: 100%;
}

menu .header-menu li.has-mega-menu-hideaways ul.sub-menu li.mega-menu-column {
  width: 100%;
}

menu .header-menu ul.sub-menu li.second-menu-column {
  /*padding-left:12%;*/
}

menu .header-menu ul.sub-menu li.mega-menu-column > a {
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 15px;
  color: #9b968b;
}

menu .header-menu ul.sub-menu li.mega-menu-column > a:after {
  display: none !important;
}

menu .header-menu li.no-link > a:hover {
  background: none;
}

#menu-mobile-menu .sub-menu {
  list-style: none;
}

menu .header-menu ul.sub-menu li.mega-menu-column a img {
  width: 90px;
  float: left;
  border-radius: 4px;
  margin-right: 10px;
}

menu .header-menu ul.sub-menu li.has-image {
  padding-bottom: 10px;
}

menu .header-menu ul.sub-menu li.first-menu-column {
  width: 48%;
  margin-right: 2%;
}

menu .header-menu li.has-mega-menu-destinations ul.sub-menu li.second-menu-column {
  width: 220px;
}

menu .header-menu li.has-mega-menu-destinations ul.sub-menu li.second-menu-column span {
  font-size: 11px;
  opacity: 0.6;
}

menu .header-menu li.has-mega-menu-safaris ul.sub-menu li.second-menu-column {
  width: 80%;
}

menu .header-menu li.has-mega-menu-safaris ul.sub-menu li.second-menu-column span {
  font-size: 11px;
  opacity: 0.6;
}

menu .header-menu li.has-mega-menu-hideaways ul.sub-menu li.second-menu-column {
  width: 80%;
}

menu .header-menu li.has-mega-menu-hideaways ul.sub-menu li.second-menu-column span {
  font-size: 11px;
  opacity: 0.6;
}

menu .header-menu ul.sub-menu li.third-menu-column {
  width: 25%;
}

body .menu-view-all a {
  color: #9a958a !important;
  font-size: 12px !important;
}

/* Mobile Menu drop-down toggle  */
#menu-mobile-menu .sub-menu {
  display: none;
  margin-bottom: 40px;
}

/* sub-menu styles for mobile dropdown */
#menu-mobile-menu .sub-menu li a {
  font-size: 18px;
}

#menu-mobile-menu .sub-menu li a .fa-arrow-right {
  font-size: 14px;
  color: #d4d4d4;
}

.home .heading-primary,
.page-template-landing-pages .heading-primary {
  color: #fff;
}