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

img {
  width: 100%;
}

html,
body {
  /* Very important to fix unwanted white space on right hand side in mobile view */
  /* https://stackoverflow.com/questions/46012482/unwanted-white-space-on-right-side-in-mobile-view */
  overflow-x: hidden;
  background-color: white !important;
}

body {
  position: relative;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  height: 100%;
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  min-width: 100% !important;
  height: 100%;
}
main section {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
main h2 {
  text-align: center;
  margin-bottom: 0.5em;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 500 !important;
}
header h1 {
  color: white !important;
}
header section {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
}
header section:first-child {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.5em;
}
@media only screen and (min-width: 768px) {
  header section:first-child {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  header section:first-child {
    display: none;
  }
}
header section a {
  color: white;
  font-size: large;
}
@media only screen and (min-width: 768px) {
  header section {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: flex-start;
    padding-top: 1em;
  }
}
header span {
  margin-right: 5em;
  margin-left: 2em;
}
header h1 {
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
header .top {
  display: none;
}
header .top a {
  color: white;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  header .top {
    display: none;
  }
}
header .search {
  position: relative;
}
header .search input[type=search] {
  background: transparent;
  border: 0;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  width: 40%;
  margin-right: 2em;
  color: white;
  position: relative;
}
header .search input[type=search]::-moz-placeholder {
  font-size: medium;
  color: white;
}
header .search input[type=search]::placeholder {
  font-size: medium;
  color: white;
}
header .search svg {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  width: 35px;
  height: 35px;
}

footer {
  clear: both;
  background-color: #F2133C;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  padding-top: 1em;
  padding-bottom: 1em;
  color: black !important;
}
footer section {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100vw;
}
@media only screen and (max-width: 600px) {
  footer section {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  footer section {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100vw;
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media only screen and (max-width: 767px) {
  footer section {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  footer article:nth-of-type(2) {
    display: flex !important;
  }
}
footer article:nth-of-type(2) ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 1em;
}
footer div {
  display: flex;
  flex-direction: row;
  flex: 1;
}
@media only screen and (max-width: 600px) {
  footer p {
    display: none;
  }
}
footer .socialMobile {
  display: flex;
  flex-direction: row;
  gap: 1em;
  margin-bottom: 1em;
  list-style-type: none;
}
@media only screen and (min-width: 767px) {
  footer .socialMobile {
    display: none;
  }
}
footer .socialMobile ul {
  list-style-type: none;
  display: flex;
}

nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  z-index: 500;
  clear: both;
  width: 100%;
  border-bottom: 1px solid white;
  padding-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  nav {
    display: none;
  }
  nav .show {
    display: flex;
  }
}
nav ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: center !important;
  width: 100%;
  list-style-type: none;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  nav ul {
    display: none;
  }
}
nav li {
  display: flex;
  justify-content: space-between;
}
nav a {
  color: white;
  font-size: x-large;
  align-self: center;
  margin-left: 0.5em;
}
nav .icon {
  margin-left: 0 !important;
}

h1 {
  color: white;
  padding-left: 0.5em;
  padding-right: 0.5em;
  letter-spacing: 1pt;
}

form {
  margin-bottom: 1em;
}
form div {
  margin-bottom: 1em;
}
form div:last-child {
  margin-bottom: 0;
}
form input {
  width: 100%;
  min-width: 100%;
}
form input[type=search] {
  color: white !important;
}

.HeaderImage {
  position: fixed;
  background-image: url("../images/background.jpg");
  background-color: rgba(0, 0, 0, 0.6);
}

.mobileNav {
  z-index: 500;
}
@media only screen and (max-width: 600px) {
  .mobileNav {
    display: flex;
  }
}
@media only screen and (min-width: 767px) {
  .mobileNav {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .mobileNav {
    padding-top: 0.5em;
  }
  .mobileNav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
  }
}
.mobileNav .hide {
  display: none;
}
.mobileNav .show {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 90vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
}
.mobileNav .show a {
  color: white;
  font-size: xx-large;
  position: relative;
  z-index: 500 !important;
}

.circle {
  width: 150px;
  height: 150px;
  background-color: yellow;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .circle {
    display: none;
  }
}

.book {
  font-size: x-large;
}

.copyright {
  clear: both;
  background-color: #f2133c;
  text-align: center;
  padding-bottom: 0.5em;
}

.HomeIcon {
  background-image: url("../icons/home.svg");
}

.AboutIcon {
  background-image: url("../icons/about.svg");
}

.BlogIcon {
  background-image: url("../icons/blog.svg");
}

.EventsIcon {
  background-image: url("../icons/events.svg");
}

.ContactIcon {
  background-image: url("../icons/contact.svg");
  background-repeat: no-repeat;
}

.close {
  background-image: url("../icons/close.svg");
  background-color: none !important;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  border: none;
}

.Home {
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.Home h1 {
  color: white !important;
  background-color: rgba(0, 0, 0, 0.6);
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 600px) {
  .Home {
    height: 90vh;
  }
}
@media only screen and (min-width: 600px) {
  .Home {
    height: 90vh;
  }
}
@media only screen and (min-width: 767px) {
  .Home {
    height: 80vh;
  }
  .Home h1 {
    margin-top: 6rem;
  }
}

.spacer {
  height: 190px;
  display: inline !important;
}
@media only screen and (min-width: 400px) {
  .spacer {
    height: 150px;
  }
}
@media only screen and (min-width: 767px) {
  .spacer {
    height: 250px !important;
  }
}

.PageHeader {
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover cover;
  position: relative;
  z-index: 5000 !important;
}

.error {
  color: red;
}
.error ul {
  margin-top: 1em;
}

.About {
  background-image: linear-gradient(180deg, #FFFF00 0%, #FFFFFF 62.85%);
  background-size: cover cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-size: large;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .About {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .About {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.About h1 {
  background-color: transparent;
  color: black;
}
.About img {
  width: 30%;
}
@media only screen and (max-width: 400px) {
  .About img {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
  }
}
@media only screen and (min-width: 600px) {
  .About img {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5em;
  }
}
@media only screen and (min-width: 767px) {
  .About img {
    padding-left: 2em;
  }
}
.About section {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) {
  .About section {
    flex-direction: row;
  }
}
@media only screen and (min-width: 600px) {
  .About section {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.Blog {
  background-image: linear-gradient(180deg, #F5BB3D 0%, #FFFFFF 62.85%);
  background-size: cover cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.Blog section {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 400px) {
  .Blog section {
    gap: 0;
  }
}
@media only screen and (min-width: 767px) {
  .Blog section {
    flex-direction: row;
  }
}
.Blog article {
  width: 50%;
  gap: 1em;
}
@media only screen and (max-width: 600px) {
  .Blog article {
    width: 100%;
    gap: 0;
  }
}
.Blog h1 {
  color: black;
  background-color: transparent;
}
.Blog a {
  text-decoration: none !important;
}
.Blog p {
  margin-top: 1em;
}

.Post {
  background-image: linear-gradient(180deg, #F5BB3D 0%, #FFFFFF 62.85%);
  background-size: cover cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.Post section {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: 1em;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1em;
  width: 100%;
}
.Post section:last-child {
  border-top: 1px solid #c0c0c0;
}
.Post article {
  width: 50%;
  gap: 1em;
}
.Post h1 {
  color: black;
  background-color: transparent;
}
.Post h3 {
  margin-top: 0;
}
.Post a {
  text-decoration: none !important;
}
.Post ul {
  margin-bottom: 0;
  padding-bottom: 0;
}

.WhatsOn {
  background-image: linear-gradient(180deg, #55ACEE 0%, #FFFFFF 62.85%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover cover;
  width: 100%;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.WhatsOn section {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
}
@media only screen and (min-width: 767px) {
  .WhatsOn section {
    flex-direction: row;
  }
}
.WhatsOn section h2 {
  text-align: center;
}
.WhatsOn img {
  width: 80%;
}
.WhatsOn .reviewsLink {
  background-color: blue;
  color: white;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  border-radius: 20%;
}

.ModalContent {
  background-color: white;
  padding-left: 2em;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.ModalContent p {
  padding-bottom: 0.5em;
}
.ModalContent i {
  height: 10px !important;
}
.ModalContent i,
.ModalContent strong {
  width: 100%;
}
.ModalContent a {
  display: inline;
}

.Pagination {
  font-size: large;
  text-align: center;
  margin-bottom: 0.5em;
}
.Pagination p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.Pagination a {
  font-size: x-large;
  margin-left: 2em;
}
.Pagination a:first-child {
  margin-left: 0;
}

.mfp-content {
  background-color: #ffa500;
  padding-left: 2em;
  padding-right: 2em;
}
.mfp-content p {
  margin-bottom: 0.5em;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: initial !important;
}

.Contact {
  background-image: linear-gradient(180deg, #09D309 0%, #FFFFFF 62.85%);
  background-attachment: fixed;
  background-size: cover cover;
  background-repeat: no-repeat;
}
.Contact section {
  width: 70%;
}

.Login {
  background-image: linear-gradient(180deg, #ffff00 0%, #FFFFFF 62.85%);
  background-attachment: fixed;
  background-size: cover cover;
  background-repeat: no-repeat;
}
.Login section {
  width: 70%;
}

.Register {
  background-image: linear-gradient(180deg, #FFA500 0%, #FFFFFF 62.85%);
  background-attachment: fixed;
  background-size: cover cover;
  background-repeat: no-repeat;
}
.Register section {
  width: 70%;
}

.Reviews {
  background-color: #ffa500;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.Reviews section {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 1em;
}
@media only screen and (min-width: 767px) {
  .Reviews section {
    flex-direction: row;
  }
}
.Reviews article {
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .Reviews article {
    width: 50%;
  }
}

#searchresults {
  color: black;
  background-color: white;
  position: absolute;
  z-index: 5000 !important;
  /* Makes the unordered list not depend on the header position */
  width: 45%;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
#searchresults ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: flex-start;
  list-style-type: none;
}
#searchresults a {
  color: inherit !important;
}
#searchresults svg {
  position: relative;
}

.pagination {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  list-style-type: none;
  margin-top: 0.5em;
  margin-bottom: 1em;
  border-top: 1px solid black;
  padding-top: 1em;
}
.pagination li {
  border: 1px solid black;
  padding: 5px 5px 5px 5px;
  font-size: large;
}
.pagination a {
  display: flex;
  color: black;
}/*# sourceMappingURL=style.css.map */