@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

.top {
  width: 90%;
  margin: 2em 5vw auto;
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: fixed;
  z-index: 1000;
  transition: all 0.3s;
}

.top .logo {
  width: 23%;
  height: 6vh;
  float: left;
  clear: none;
  background-image: url("../img/kg-logo_kg-ico.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.nav-btn {
  height: auto;
  width: calc(auto - 1.5em);
  float: right;
  padding: 1em 1.5em;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  margin: 0;
  top: 0;
  right: 0;
  position: absolute;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 5px;
}

.nav-btn p {
  font-weight: 600;
}

.nav-btn .navstrokes {
  height: 1em;
  width: 4em;
  float: left;
  clear: none;
  display: block;
  position: relative;
  padding: 0;
}

.nav-btn .navstrokes span {
  height: 2px;
  background-color: white;
  float: left;
  clear: both;
  display: block;
  position: relative;
  transition: all 0.4s;
}

.navstrokes span:first-child {
  width: 4em;
  margin: 0.2em auto auto auto;
  bottom: 0;
  transform-origin: center;
  top: auto;
  left: 0;
}

.navstrokes span:last-child {
  width: 4em;
  margin: 0.4em auto auto auto;
  bottom: 0;
  transform-origin: center;
  top: auto;
  left: 0;
}

/*Expanded*/
.nav-btn .navstrokes-expanded {
  height: 1em;
  width: 3em;
  float: left;
  clear: none;
  display: block;
  position: relative;
  padding: 0;
  color: #094e4c;
}

.nav-btn .navstrokes-expanded span {
  background-color: #094e4c;
}

.nav-btn .navstrokes-expanded p {
  color: #094e4c;
}

.navstrokes-expanded span {
  height: 3px;
  background-color: #094e4c;
  float: left;
  clear: both;
  display: block;
  position: relative;
  transition: all 0.4s;
}

.navstrokes-expanded span:first-child {
  width: 3em;
  margin: 0.4em auto auto auto;
  bottom: 0;
  transform-origin: center;
  top: auto;
  left: 0;
  transform: rotate(45deg);
}

.navstrokes-expanded span:last-child {
  width: 3em;
  margin: -0.2em auto auto auto;
  bottom: 0;
  transform-origin: center;
  top: auto;
  left: 0;
  transform: rotate(-45deg);
}

/*Expanded*/

/*Top Moved*/

.topmoved {
  background-color: #f5f5f5;
  padding: 1em 2em;
  width: calc(95% - 4em);
  margin: 0.5em 2.5vw auto;
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: fixed;
  z-index: 1000;
  border-radius: 1em;
  transition: all 0.3s;
}

.topmoved .logo {
  width: 10%;
  height: 4vh;
  float: left;
  clear: none;
  background-image: url("../img/kg-logo_kg-ico.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
}

.topmoved .nav-btn {
  color: #094e4c;
  margin: 0.7em auto auto;
}

.topmoved .nav-btn .navstrokes span {
  height: 3px;
  background-color: #094e4c;
  float: left;
  clear: both;
  display: block;
  position: relative;
  transition: all 0.4s;
}

/*Top Moved*/

.nav-closed {
  display: none;
  width: calc(0vw - 0em);
  height: calc(0vh - 0em);
  float: left;
  clear: none;
  border-radius: 0em;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  transition: all 0.4s;
}

.nav-popup {
  width: calc(100vw - 4em);
  height: calc(100vh - 4em);
  float: left;
  clear: none;
  display: block;
  border-radius: 0em;
  background-color: white;
  padding: 2em;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  transition: all 0.4s;
}

.bignav {
  display: block;
  float: left;
  clear: none;
  width: 100%;
  height: auto;
  font-family: "GeneralSansRegular";
  transition: all 0.4s;
  transform-style: flat;
  letter-spacing: 1px;
  margin-left: 0;
  padding-left: 0;
}

.bignav li {
  list-style: none;
  font-size: 1.5em;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.4s;
  transform-style: flat;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #10a3a0;
  margin: 0.5em 0 0.5em 0;
  padding-left: 0;
}

.bignav li span {
  width: 0em;
  height: 0em;
  transform-origin: center;
  border-radius: 2em;
  background-color: #ec2227;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0em;
  font-weight: 100;
  transition: all 0.3s;
}

.bignav li:hover span {
  width: 4em;
  height: 4em;
  border-radius: 2em;
  background-color: #ec2227;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.4em;
  font-weight: 100;
  margin: 0.5em;
}

.bignav li:hover {
  color: #dfdfdf;
}

.bignav li:hover::marker {
  color: red;
  transition: all 0.4s;
  transform-style: flat;
}

.bookingfilling {
  width: calc(90vw + 0em);
  display: block;
  float: left;
  clear: none;
  background-color: white;
  height: auto;
  transform: all 0.3s;
  position: fixed;
  right: 5%;
  bottom: 0;
  z-index: 1100;
}

.bf-top {
  height: auto;
  float: left;
  clear: none;
  display: block;
  padding: 1em 2em;
  cursor: pointer;
  width: calc(100% - 4em);
  box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
  -webkit-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
  -moz-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
  transform: all 0.3s;
}

.bf-top h6 {
  float: left;
  color: #094e4c;
}

.bf-top i {
  float: right;
  font-size: 1.5em;
}

.bf-top .booktriggerup::after {
  content: "Book Kingsville";
}

.bf-top .booktriggerdown::after {
  content: "Close Booking";
}

.bf-bottom {
  width: 100%;
  height: 80vh;
  display: none;
  float: left;
  clear: none;
  padding: .5em 0;
  transform: all 0.3s;
  bottom: 0;
  position: relative;
  overflow-y: scroll;
}


.bf-bottom h5{
    width: 90%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    margin: 1em 5%;
}

.location-map {
  width: 90%;
  height: 30vh;
  border-radius: 1em;
  display: block;
  float: left;
  clear: none;
  overflow: hidden;
  margin: 2em auto 2em;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  float: left;
  clear: none;
}

.call {
  width: auto;
  padding: 1em 1.5em;
  clear: none;
  display: block;
  float: left;
  cursor: pointer;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #eeffff;
  border-radius: 1.5em;
  margin: 0.5em 1em;
}

.call i {
  color: #10a3a0;
  font-size: 1.1em;
}

.call p {
  font-weight: 600;
  margin-left: 1em;
}

.footer {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  background-color: #f5f5f5;
  margin: 15vh auto 5em;
}

.footer-inner {
  width: calc(90% - 2em);
  height: auto;
  margin: 2em 5% 3vh;
  float: left;
  clear: none;
  display: block;
}

.footer-inner div {
  margin: 1em;
}

.f-img {
  width: 100%;
  height: 5vh;
  display: none;
  float: left;
  clear: none;
  background-image: url("../img/kg-logo_kg-ico.svg");
  background-size: 2em;
  background-position: center;
  background-repeat: no-repeat;
}

.f-call,
.f-email {
  border: solid #000;
  border-width: 0 0 0 0px;
  padding: 0 0 0 0em;
  width: calc(100% - 2em);
  height: auto;
}

.f-social {
  width: calc(100% - 2em);
  height: auto;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1em 1em;
  float: right;
  clear: none;
  text-align: right;
}

.f-social i {
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.25s;
  transform-origin: center;
  padding: 1em;
  width: calc(auto - 1em);
  background-color: white;
  border-radius: 0.5em;
  height: 1em;
  text-align: center;
}

.f-social i:hover {
  font-size: 1.1em;
}

.citation {
  width: 85%;
  margin: auto 7.5% 10vh;
  height: auto;
  display: block;
  float: left;
  clear: none;
  text-align: center;
}

.citation {
  width: 85%;
  margin: auto 7.5% 2em;
  height: auto;
  display: block;
  float: left;
  clear: none;
  text-align: center;
}

#scrollbackup {
  position: absolute;
  right: 7.5%;
  bottom: 2em;
}

.bf-bottom form {
  width: 90%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  margin-left:5%;
  margin-top: 3vh;
}

.bf-bottom p {
  margin-top: 2em;
  font-family: "Nunito", sans-serif;
  color: #0f1330;
  font-size: 0.7em;
}

.bf-bottom input[type="text"],
.bf-bottom input[type="email"],
.bf-bottom input[type="tel"] {
  width: calc(100% - 3em);
  
  padding: 0.7em 1.5em 0.7em 1em;
  transition: all 0.4s;
  font-family: "Nunito", sans-serif;
  border: solid 0.5px #0f1330;
  margin: 0.5em 0;
  background-color: #F8F8F8;
  height: 1.2em;
  border:0;
  border-radius: 5px;
  color: #0f1330;
  font-size: 1em;
}



.bf-bottom select {
  width: 100%;
  height: 3em;
  padding: 0.5em 1.5em 0.5em 1em;
  transition: all 0.4s;
  font-family: "Nunito", sans-serif;
  border: solid 0px #0f1330;
  margin: 0.5em 0;
  background-color: #F8F8F8;
  color: #0f1330;
  font-size: 1em;
  cursor: pointer;
  font-weight: 700;
    border-radius: 5px;
}

.bf-bottom select option {
  color: #0f1330;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.4s;
}


.bf-bottom button{
    margin: 2em auto;
    font-size: 1em;
    float: right;
}



.bf-bottom input[type="number"] {
  width: 38%;
  height: 1.5em;
  padding: 5% 5%;
  transition: all 0.4s;
  font-family: "Nunito", sans-serif;
  border: solid 0.5px #0f1330;
  margin: 0.5em 0;
  background-color: #F8F8F8;
  height: 1.2em;
  color: #0f1330;
  font-size: 1em;
  float: left;
  clear: none;
  display: block;
}


.bf-bottom textarea {
  width: calc(100% - 10%);
  height: 1.5em;
  padding: 5% 5%;
  transition: all 0.4s;
  font-family: "Nunito", sans-serif;
  border: solid 0.5px #0f1330;
  margin: 0.5em 0;
  background-color: #F8F8F8;
  height: 1.2em;
  color: #0f1330;
  font-size: 1em;
  float: left;
  clear: none;
  display: block;
}



.bf-bottom input:focus {
  border: solid inset 2px #0f1330;
  outline: 0;
  background-color: #F8F8F8;
}

.bf-bottom input:active {
  border: solid 0.5px #0f1330;
  outline: 0;
  background-color: #F8F8F8;
}

.bf-bottom input::placeholder {
  font-size: 0.75em;
  opacity: 0.7;
  color: #0f1330;
  letter-spacing: 1px;
  position: absolute;
  top: 40%;
  left: 5%;
  transition: all 0.4s;
}

.bf-bottom input:focus::placeholder {
  top: 15%;
  font-size: 0.5em;
}



.bf-bottom textarea::placeholder {
  font-size: 0.75em;
  opacity: 0.7;
  color: #0f1330;
  letter-spacing: 1px;
  position: absolute;
  top: 40%;
  left: 5%;
  transition: all 0.4s;
}

.bf-bottom textarea:focus::placeholder {
  top: 15%;
  font-size: 0.5em;
}

.bf-bottom textarea:active {
  border: solid 0px #0f1330;
  outline: 0;
  background-color: #F8F8F8;
}

.bf-bottom input[type="date"] {
  width: 90%;
  height: 1.5em;
  padding: 5% 5%;
  transition: all 0.4s;
  font-family: "Nunito", sans-serif;
  border: solid 0.5px #0f1330;
  margin: 0.5em 0;
  background-color: transparent;
  color: #0f1330;
  font-size: 0.9em;
  float: left;
  clear: none;
  display: block;
}

::-webkit-datetime-edit {
  font-size: 1em;
}
::-webkit-datetime-edit-fields-wrapper {
}
::-webkit-datetime-edit-text {
}
::-webkit-datetime-edit-month-field {
}
::-webkit-datetime-edit-day-field {
}
::-webkit-datetime-edit-year-field {
}
::-webkit-inner-spin-button {
  display: block;
}
::-webkit-calendar-picker-indicator {
}

.bf-bottom input[type="date"]::placeholder {
  font-size: 0.6em;
  opacity: 0.7;
  color: #0f1330;
  letter-spacing: 1px;
  position: absolute;
  top: 40%;
  left: 5%;
  transition: all 0.4s;
}

 .kingsville-whatsapp{
    position: fixed;
    bottom: 75%;
    right: -.2em;
    font-size: 2em;
    color: #fff;
    border-radius: .5em;
    background-color: #25D366;
    z-index: 10000;
    width: 1em;
    height: 1em;
    padding: .2em;
    border-radius: 2em;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }




/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  .top {
    width: 90%;
    margin: 3.5em 5vw auto;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: fixed;
    z-index: 1000;
    transition: all 0.3s;
  }

  .top .logo {
    width: 20%;
    height: 10vh;
    float: left;
    clear: none;
    background-image: url("../img/kg-logo_kg-full.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
  }

  .nav-btn {
    height: auto;
    width: calc(auto - 1.5em);
    float: right;
    padding: 1em 1.5em;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin: 0;
    top: 0;
    right: 0;
    position: absolute;
    color: #fff;
    font-size: 0.9em;
    letter-spacing: 5px;
  }

  .nav-btn p {
    font-weight: 600;
  }

  .nav-btn .navstrokes {
    height: 1em;
    width: 5em;
    float: left;
    clear: none;
    display: block;
    position: relative;
    padding: 0.5em 0 0;
  }

  .nav-btn .navstrokes span {
    height: 2px;
    background-color: white;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  .navstrokes span:first-child {
    width: 5em;
    margin: 0em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
  }

  .navstrokes span:last-child {
    width: 5em;
    margin: 0.4em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
  }

  /*Expanded*/
  .nav-btn .navstrokes-expanded {
    height: 1em;
    width: 3em;
    float: left;
    clear: none;
    display: block;
    position: relative;
    padding: 0;
    color: #094e4c;
  }

  .nav-btn .navstrokes-expanded span {
    background-color: #094e4c;
  }

  .nav-btn .navstrokes-expanded p {
    color: #094e4c;
  }

  .navstrokes-expanded span {
    height: 3px;
    background-color: #094e4c;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  .navstrokes-expanded span:first-child {
    width: 3em;
    margin: 0.4em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
    transform: rotate(45deg);
  }

  .navstrokes-expanded span:last-child {
    width: 3em;
    margin: -0.2em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
    transform: rotate(-45deg);
  }

  /*Expanded*/

  /*Top Moved*/

  .topmoved {
    background-color: #f5f5f5;
    padding: 1em 1.5em;
    width: calc(90% - 2em);
    margin: 0.5em 5vw auto;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: fixed;
    z-index: 1000;
    border-radius: 0.5em;
    transition: all 0.3s;
  }

  .topmoved .logo {
    width: 15%;
    height: 5vh;
    float: left;
    clear: none;
    background-image: url("../img/kg-logo_greentext.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
  }

  .topmoved .nav-btn {
    color: #094e4c;
    margin: 0.7em auto auto;
  }

  .topmoved .nav-btn .navstrokes span {
    height: 3px;
    background-color: #094e4c;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  /*Top Moved*/

  .nav-closed {
    display: none;
    width: calc(0vw - 0em);
    height: calc(0vh - 0em);
    float: left;
    clear: none;
    border-radius: 0em;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    transition: all 0.4s;
  }

  .nav-popup {
    width: calc(50vw - 8em);
    height: calc(100vh - 8em);
    float: left;
    clear: none;
    display: block;
    border-radius: 0em;
    background-color: white;
    padding: 4em;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    transition: all 0.4s;
  }

  .bignav {
    display: block;
    float: left;
    clear: none;
    width: 100%;
    height: auto;
    font-family: "GeneralSansRegular";
    transition: all 0.4s;
    transform-style: flat;
    letter-spacing: 1px;
  }

  .bignav li {
    list-style: none;
    font-size: 1.8em;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s;
    transform-style: flat;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #10a3a0;
  }

  .bignav li span {
    width: 0em;
    height: 0em;
    transform-origin: center;
    border-radius: 2em;
    background-color: #ec2227;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0em;
    font-weight: 100;
    transition: all 0.3s;
  }

  .bignav li:hover span {
    width: 4em;
    height: 4em;
    border-radius: 2em;
    background-color: #ec2227;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0.4em;
    font-weight: 100;
    margin: 0.5em;
  }

  .bignav li:hover {
    color: #dfdfdf;
  }

  .bignav li:hover::marker {
    color: red;
    transition: all 0.4s;
    transform-style: flat;
  }

  .bookingfilling {
    width: calc(30vw + 5em);
    display: block;
    float: left;
    clear: none;
    background-color: white;
    height: auto;
    transform: all 0.3s;
    position: fixed;
    right: 5%;
    bottom: 0;
    z-index: 900;
  }

  .bf-top {
    height: auto;
    float: left;
    clear: none;
    display: block;
    padding: 1.5em 3em;
    cursor: pointer;
    width: calc(100% - 6em);
    box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    -webkit-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    -moz-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    transform: all 0.3s;
  }

  .bf-top h6 {
    float: left;
    color: #094e4c;
  }

  .bf-top i {
    float: right;
    font-size: 1.5em;
  }

  .bf-top .booktriggerup::after {
    content: "Book Kingsville";
  }

  .bf-top .booktriggerdown::after {
    content: "Close Booking";
  }

  .bf-bottom {
    width: 100%;
    height: 75vh;
    display: none;
    float: left;
    clear: none;
    padding: .5em 0;
    transform: all 0.3s;
    bottom: 0;
    position: relative;
      
  }
    
    

  .location-map {
    width: 90%;
    height: 30vh;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    overflow: hidden;
    margin: 1em auto 2em;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
  }

  .call {
    width: auto;
    padding: 1em 1.5em;
    clear: none;
    display: block;
    float: left;
    cursor: pointer;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #eeffff;
    border-radius: 1.5em;
    margin: 0.5em 1em;
  }

  .call i {
    color: #10a3a0;
    font-size: 1em;
  }

  .call p {
    font-weight: 600;
    margin-left: 1em;
  }

  .footer {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background-color: #f5f5f5;
    margin: 15vh auto 0;
  }

  .footer-inner {
    width: calc(90% - 2em);
    height: auto;
    margin: 5em 5%;
    float: left;
    clear: none;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
  }

  .footer-inner div {
    margin: auto;
  }

  .f-img {
    width: 100%;
    height: 5vh;
    display: none;
    float: left;
    clear: none;

    background-image: url("../img/bb-icon.svg");
    background-size: 2em;
    background-position: center;
    background-repeat: no-repeat;
  }

  .f-call,
  .f-email {
    border: solid #000;
    border-width: 0 0 0 1px;
    padding: 0 0 0 2em;
    width: calc(100% - 2em);
    height: auto;
  }

  .f-social {
    width: 100%;
    height: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em 1em;
    float: right;
    clear: none;
    text-align: right;
  }

  .f-social i {
    font-size: 1em;
    cursor: pointer;
    transition: all 0.25s;
    transform-origin: center;
    padding: 1em;
    width: calc(auto - 1em);
    background-color: white;
    border-radius: 0.5em;
    height: 1em;
    text-align: right;
  }

  .f-social i:hover {
    font-size: 1.1em;
  }

  .citation {
    width: 85%;
    margin: auto 7.5% 2em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    text-align: center;
  }

  #scrollbackup {
    position: absolute;
    right: 7.5%;
    bottom: 2em;
  }


  .kingsville-whatsapp{
    position: fixed;
    bottom: .5em;
    right: .5em;
    font-size: 2em;
    color: #fff;
    border-radius: .5em;
    background-color: #25D366;
    z-index: 100;
    width: 1em;
    height: 1em;
    padding: .1em;
    border-radius: 2em;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }








}
/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {


   .kingsville-whatsapp{
    position: fixed;
    bottom: 1em;
    right: .5em;
    font-size: 3em;
    color: #fff;
    border-radius: .5em;
    background-color: #25D366;
    z-index: 100;
    width: 1em;
    height: 1em;
    padding: .1em;
    border-radius: 2em;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  .top {
    width: 85%;
    margin: 3.5em 7.5vw auto;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: fixed;
    z-index: 1000;
    transition: all 0.3s;
  }

  .top .logo {
    width: 15%;
    height: 10vh;
    float: left;
    clear: none;
    background-image: url("../img/kg-logo_kg-full.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
  }

  .nav-btn {
    height: auto;
    width: calc(auto - 1.5em);
    float: right;
    padding: 1em 1.5em;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin: 0;
    top: 0;
    right: 0;
    position: absolute;
    color: #fff;
    font-size: 0.9em;
    letter-spacing: 5px;
  }

  .nav-btn p {
    font-weight: 600;
  }

  .nav-btn .navstrokes {
    height: 1em;
    width: 6em;
    float: left;
    clear: none;
    display: block;
    position: relative;
    padding: 0;
  }

  .nav-btn .navstrokes span {
    height: 3px;
    background-color: white;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  .navstrokes span:first-child {
    width: 6em;
    margin: 0em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
  }

  .navstrokes span:last-child {
    width: 6em;
    margin: 0.4em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
  }

  /*Expanded*/
  .nav-btn .navstrokes-expanded {
    height: 1em;
    width: 3em;
    float: left;
    clear: none;
    display: block;
    position: relative;
    padding: 0;
    color: #094e4c;
  }

  .nav-btn .navstrokes-expanded span {
    background-color: #094e4c;
  }

  .nav-btn .navstrokes-expanded p {
    color: #094e4c;
  }

  .navstrokes-expanded span {
    height: 3px;
    background-color: #094e4c;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  .navstrokes-expanded span:first-child {
    width: 3em;
    margin: 0.4em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
    transform: rotate(45deg);
  }

  .navstrokes-expanded span:last-child {
    width: 3em;
    margin: -0.2em auto auto auto;
    bottom: 0;
    transform-origin: center;
    top: auto;
    left: 0;
    transform: rotate(-45deg);
  }

  /*Expanded*/

  /*Top Moved*/

  .topmoved {
    background-color: #f5f5f5;
    padding: 1em 2em;
    width: calc(85% - 4em);
    margin: 0.5em 7vw auto;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: fixed;
    z-index: 1000;
    border-radius: 1em;
    transition: all 0.3s;
  }

  .topmoved .logo {
    width: 10%;
    height: 4vh;
    float: left;
    clear: none;
    background-image: url("../img/kg-logo_greentext.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
  }

  .topmoved .nav-btn {
    color: #094e4c;
    margin: 0.7em auto auto;
  }

  .topmoved .nav-btn .navstrokes span {
    height: 3px;
    background-color: #094e4c;
    float: left;
    clear: both;
    display: block;
    position: relative;
    transition: all 0.4s;
  }

  /*Top Moved*/

  .nav-closed {
    display: none;
    width: calc(0vw - 0em);
    height: calc(0vh - 0em);
    float: left;
    clear: none;
    border-radius: 0em;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    transition: all 0.4s;
  }

  .nav-popup {
    width: calc(50vw - 8em);
    height: calc(100vh - 8em);
    float: left;
    clear: none;
    display: block;
    border-radius: 0em;
    background-color: white;
    padding: 4em;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    transition: all 0.4s;
  }

  .bignav {
    display: block;
    float: left;
    clear: none;
    width: 100%;
    height: auto;
    font-family: "GeneralSansRegular";
    transition: all 0.4s;
    transform-style: flat;
    letter-spacing: 1px;
  }

  .bignav li {
    list-style: none;
    font-size: 2.5em;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s;
    transform-style: flat;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #10a3a0;
  }

  .bignav li span {
    width: 0em;
    height: 0em;
    transform-origin: center;
    border-radius: 2em;
    background-color: #ec2227;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0em;
    font-weight: 100;
    transition: all 0.3s;
  }

  .bignav li:hover span {
    width: 4em;
    height: 4em;
    border-radius: 2em;
    background-color: #ec2227;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0.4em;
    font-weight: 100;
    margin: 0.5em;
  }

  .bignav li:hover {
    color: #dfdfdf;
  }

  .bignav li:hover::marker {
    color: red;
    transition: all 0.4s;
    transform-style: flat;
  }

  .bookingfilling {
    width: calc(25vw + 5em);
    display: block;
    float: left;
    clear: none;
    background-color: white;
    height: auto;
    transform: all 0.3s;
    position: fixed;
    right: 7.5%;
    bottom: 0;
    z-index: 900;
  }

  .bf-top {
    height: auto;
    float: left;
    clear: none;
    display: block;
    padding: 1.5em 3em;
    cursor: pointer;
    width: calc(100% - 6em);
    box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    -webkit-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    -moz-box-shadow: 2px 1px 40px -2px rgba(144, 255, 253, 0.66);
    transform: all 0.3s;
  }

  .bf-top h6 {
    float: left;
    color: #094e4c;
  }

  .bf-top i {
    float: right;
    font-size: 1.5em;
  }

  .bf-top .booktriggerup::after {
    content: "Book Kingsville";
  }

  .bf-top .booktriggerdown::after {
    content: "Close Booking";
  }

  .bf-bottom {
    width: 100%;
    height: 75vh;
    display: none;
    float: left;
    clear: none;
    padding: 1em 0;
    transform: all 0.3s;
    bottom: 0;
    position: relative;
  }

  .location-map {
    width: 90%;
    height: 40vh;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    overflow: hidden;
    margin: 1em auto 2em;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
  }

  .call {
    width: auto;
    padding: 1em 1.5em;
    clear: none;
    display: block;
    float: left;
    cursor: pointer;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #eeffff;
    border-radius: 1.5em;
    margin: 0.5em 1em;
  }

  .call i {
    color: #10a3a0;
    font-size: 1.5em;
  }

  .call p {
    font-weight: 600;
    margin-left: 1em;
  }

  .footer {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background-color: #fff;
    margin: 15vh auto 0;
  }

  .footer-inner {
    width: 85%;
    height: auto;
    margin: 5em 7.5%;
    float: left;
    clear: none;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 0.5fr 1.5fr 1fr 1fr 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
  }

  .f-img {
    width: 100%;
    height: 10vh;
    display: block;
    float: left;
    clear: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-image: url("../img/kg-logo_kg-ico.svg");
    background-size: 4em;
    background-position: center;
    background-repeat: no-repeat;
  }

  .f-call,
  .f-email {
    border: solid #000;
    border-width: 0 0 0 1px;
    padding: 0 0 0 2em;
    width: calc(100% - 2em);
    height: auto;
  }

  .f-social {
    width: 100%;
    height: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em 1em;
  }

  .f-social i {
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.25s;
    transform-origin: center;
    padding: 1em;
    width: calc(auto - 1em);
    background-color: white;
    border-radius: 0.5em;
    height: 1em;
  }

  .f-social i:hover {
    font-size: 1.4em;
  }

  .citation {
    width: 85%;
    margin: auto 7.5% 2em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    text-align: center;
  }

  #scrollbackup {
    position: absolute;
    right: 7.5%;
    bottom: 2em;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}
