@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@font-face {
  font-family: "Comic Marker Deluxe";
  src: url("assets/ComicMarkerDeluxe.woff2") format("woff2"),
    url("assets/ComicMarkerDeluxe.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Marker Notes";
  src: url("assets/MarkerNotes-Italic.woff2") format("woff2"),
    url("assets/MarkerNotes-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Marker Notes";
  src: url("assets/MarkerNotes.woff2") format("woff2"),
    url("assets/MarkerNotes.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global
--------------------------------------------- */

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

body {
  margin: 0;
  padding: 0;
  word-wrap: break-word !important;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background: #111127;
}

a,
a:link,
a:active,
a:visited {
  text-decoration: none;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marker Notes", sans-serif;
  font-weight: 700;
}

p {
  font-weight: 300;
}

.pinkBtn {
  background-color: rgb(223, 10, 134) !important;
  color: white !important;
}

.centreBtn {
  display: block;
  margin: auto;
  width: 160px;
}

#btt {
  width: 30px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1234;
  display: none;
}

/* Navigation
--------------------------------------------- */

nav {
  position: fixed;
  width: 100%;
  z-index: 180;
  top: 0;
}

.navContact {
  padding: 0.5vw 3px;
  background-color: #111127;
  padding-left: 34px;
  box-shadow: -0.25em 0.25em 0.5em rgba(0, 0, 0, 0.3);
  display: flex;
}

.contactLink {
  /*! margin-bottom: 8px; */
  display: flex;
  align-items: center;
  margin-right: 2.5vw;
}

.contactLink img {
  width: 15px;
}

.contactLink a {
  color: #9ecffb;
  margin-left: 10px;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

#logo {
  display: block;
  margin: auto;
  width: 150px;
  position: relative;
  top: -2vw;
  /*! display: none; */
}

#menu-check {
  display: none;
}

#menu-label {
  width: 20px;
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
}

#menu-label .menu-icon {
  background: lightgray;
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 100px;
  position: relative;
  transition: background 0.3s ease-out;
}

#menu-label .menu-icon:before {
  background: lightgray;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 5px;
  transition: all 0.3s ease-out;
}

#menu-label .menu-icon:after {
  background: lightgray;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -5px;
  transition: all 0.3s ease-out;
}

.menu {
  position: absolute;
  top: 0vw;
  right: 2vw;
  font-family: "Marker Notes";
  padding: 0.6vw 0px;
  float: right;
  letter-spacing: 1px;
}

.menu a {
  font-size: 12px;
  color: white;
  margin-left: 2vw;
  float: left;
  transition: all 0.25s ease-in-out;
}

.menu a:hover {
  border-bottom: 2px solid #de0985;
  transform: scale(1.2);
}

#home {
  margin-left: 0 !important;
}

#terms {
  color: #9ecffb !important;
}

/* ===================================== Media Queries */

@media (max-width: 1300px) {
  .navSocial {
    display: none;
  }
}

@media (max-width: 1100px) {
  .navContact {
    padding: 5px 0 5px 15px;
  }
  .navSocial {
    display: initial;
  }
  #menu-label {
    width: 20px;
    display: block;
    position: absolute;
    top: 4px;
    right: 15px;
    cursor: pointer;
    padding: 7px 0;
  }
  .menu {
    position: absolute;
    top: 24px;
    right: 0;
    font-family: "Marker Notes";
    padding: 0;
    background-color: #111127;
    box-shadow: -0.25em 0.25em 0.5em rgba(0, 0, 0, 0.3);
    overflow-y: hidden;
    max-height: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
  }
  .menu a {
    font-size: 14px;
    letter-spacing: 1px;
    float: none;
    margin: 0;
    border-bottom: 1px solid #f0f8ff52;
    padding: 15px 20px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
  }
  .menu a:hover {
    background-color: #de0985;
    transform: none;
    border-bottom: 1px solid #de0985;
  }
  #terms {
    margin-bottom: 0;
    border-bottom: none;
  }
  #menu-check:checked ~ .menu {
    max-height: 400px;
    visibility: visible;
  }
  #menu-check:checked ~ .menu a {
    opacity: 1;
  }
}
@media (max-width: 750px) {
  .navSocial {
    display: none;
  }
}

@media (max-width: 450px) {
  .contactLink a {
    font-size: 12px;
  }
}

/* Header
--------------------------------------------- */

header {
  /*! background-image: url(assets/blue-gradient.png); */
  background-size: cover;
  background-color: #111127;
  padding-bottom: 13vw;
  overflow-x: clip;
}

#headerWavesTop {
  opacity: 0.3;
}

header .txtNpic {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: -17.5vw;
  margin-bottom: -31vw;
}

header .txtNpic .txt {
  width: 46%;
  color: white;
}

header .txtNpic .txt img {
  width: 40%;
  display: block;
  margin: auto;
  position: relative;
  right: 1vw;
}

header .txtNpic .txt h1 {
  font-size: 2.2vw;
  text-align: center;
  margin: 1.2vw;
}

header .txtNpic .txt p {
  margin: 1vw 4vw 2vw 4vw;
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

.bookNow {
  background-color: #de0985;
  padding: 15px 20px;
  border-radius: 3vw;
  color: white;
  font-family: "Marker Notes";
  font-size: 16px;
  text-align: center;
  box-shadow: -0.25em 0.25em 0.5em rgba(0, 0, 0, 0.5);
  border: none;
  display: block;
  margin: auto;
  width: 130px;
  position: relative;
  right: 1vw;
  transition: all 0.3s ease-in-out;
}

header .txtNpic .txt .bookNow {
  font-size: 18px;
  width: 160px;
  padding: 15px 20px !important;
}

.bookNow:hover {
  background-color: white;
  color: #de0985;
}

.txtNpic #headerImg {
  width: 40%;
  position: relative;
  top: 2vw;
  left: -7vw;
}

body > header:nth-child(2) > img:nth-child(3) {
  margin-bottom: -22vw;
  width: 101%;
}

#wavesBottom {
  margin-bottom: -22vw;
}

/* ===================================== Media Queries */

@media (max-width: 1400px) {
  header .txtNpic .txt p {
    font-size: 16px;
    text-align: center;
  }
  header .txtNpic .txt .bookNow {
    font-size: 18px;
    width: 160px;
    padding: 15px 20px !important;
  }
  .txtNpic #headerImg {
    width: 50%;
    left: 0vw;
  }
  header .txtNpic .txt h1 {
    font-size: 2.7vw;
  }
}

@media (max-width: 1150px) {
  header .txtNpic .txt {
    width: 51%;
    color: white;
    position: relative;
    right: -1vw;
  }
  header .txtNpic .txt img {
    width: 40%;
  }
  header .txtNpic .txt p {
    font-size: 1.25vw;
  }
  header .txtNpic .txt h1 {
    font-size: 2.7vw;
  }
}

@media (max-width: 1080px) {
  header .txtNpic {
    margin-bottom: -35vw;
    width: 95%;
  }
  header .txtNpic .txt p {
    font-size: 14px;
    text-align: justify;
    margin: 20px;
  }
  header .txtNpic .txt img {
    width: 35%;
    right: 1vw;
  }
  header .txtNpic .txt h1 {
    font-size: 3.2vw;
    text-align: center;
  }
  header .txtNpic .txt .bookNow {
    font-size: 1.6vw;
  }
  header .txtNpic #headerImg {
    width: 47%;
  }
}

@media (max-width: 900px) {
  header {
    padding-bottom: 17vw;
  }
  header .txtNpic {
    display: block;
    position: relative;
    z-index: 22;
  }
  header .txtNpic .txt {
    width: 80%;
    position: relative;
    left: 0;
    margin: auto;
  }
  header .txtNpic .txt img {
    width: 30%;
  }
  header .txtNpic .txt h1 {
    font-size: 5vw;
    width: 100%;
    margin: 20px auto;
  }
  header .txtNpic .txt p {
    font-size: 16px;
    width: 90%;
    margin: 20px auto;
  }
  header .txtNpic .txt .bookNow {
    font-size: 2.5vw;
    margin: 30px auto;
    width: 20vw;
  }
  header .txtNpic #headerImg {
    width: 70%;
    position: relative;
    right: 2vw;
    margin: auto;
    display: block;
  }
  #wavesBottom {
    position: relative;
    top: 5vw;
  }
}

@media (max-width: 750px) {
  header .txtNpic .txt .bookNow {
    font-size: 17px;
    margin: 30px auto;
    width: 145px;
  }
  header .txtNpic .txt p {
    font-size: 16px;
    width: 90%;
    margin: 20px auto;
  }
  header .txtNpic #headerImg {
    width: 70%;
    position: relative;
    right: 2vw;
    margin: auto;
    display: block;
  }
}

@media (max-width: 650px) {
  header .txtNpic .txt img {
    width: 50%;
  }
  header .txtNpic .txt .bookNow {
    font-size: 16px;
    width: 140px;
    padding: 10px 0;
    border-radius: 100px;
  }
  header .txtNpic #headerImg {
    width: 70%;
  }
}

@media (max-width: 450px) {
  header {
    padding-bottom: 22vw;
  }
  header .txtNpic .txt {
    width: 90%;
  }
  header .txtNpic .txt h1 {
    font-size: 20px;
  }
  header .txtNpic #headerImg {
    width: 80%;
  }
  #wavesBottom {
    position: relative;
    top: 12vw;
  }
}

/* 3 THINGS
--------------------------------------------- */

#threeThingsWrap {
  background-image: url(assets/droplets-4.jpg);
  background-size: auto 100%;
  padding: 16vw 0 19vw 0;
  background-position: right;
  background-repeat: no-repeat;
}

#ribbon-1 {
  width: 30%;
  display: block;
  margin: -2vw auto -2vw auto;
  position: relative;
  z-index: 15;
}

#threeThings {
  width: 71%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 4vw;
  padding-top: 4vw;
  margin: auto;
  /*! background: #ffffffd4; */
  border-radius: 100px;
  position: relative;
  z-index: 14;
  /*! box-shadow: -10px 8px 10px rgba(0, 0, 0, 0.2); */
}

.item {
  /*! width: 300px; */
  margin: 0 3vw;
}

.item img {
  width: 53%;
  display: block;
  margin: 0 auto 15px auto;
}

.item h3 {
  text-align: center;
  margin: 0.6vw 0;
  font-size: 1.2vw;
  color: #111e42;
}

.item p {
  text-align: justify;
  line-height: 1.5;
  font-size: 0.9vw;
  margin-top: 15px;
}

#delivery img {
  width: 58% !important;
}

#delivery h3 {
  margin: 0.6vw 0;
}

#assembly img {
  width: 54% !important;
}

#assembly h3 {
  margin: 0.4vw 0;
}

#threeThingsWrap .bookNow {
  font-size: 20px;
  display: block;
  width: 160px;
  margin: auto;
  position: relative;
  top: -1vw;
  right: 0;
  z-index: 16;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: pulse 1s infinite;
  padding: 15px 0;
}

#threeThingsWrap .bookNow:hover {
  background-color: yellow;
  color: #111127;
}

/* ===================================== Media Queries */

@media (max-width: 1550px) {
  #threeThings {
    width: 80%;
  }
  .item {
    margin: 0 2.5vw;
  }
  .item img {
    width: 48%;
    margin: 0 auto 15px auto;
  }
  #delivery img {
    width: 53% !important;
  }
  #assembly img {
    width: 49% !important;
  }
  .item h3 {
    font-size: 1.5vw;
  }
  .item p {
    font-size: 1vw;
    margin-top: 10px;
  }
}

@media (max-width: 1280px) {
  #ribbon-1 {
    width: 35%;
  }
  #threeThings {
    width: 90%;
  }
  .item {
    margin: 0 3.5vw;
  }
  .item h3 {
    font-size: 1.8vw;
  }
  .item p {
    font-size: 14px;
  }
  #threeThingsWrap .bookNow {
    font-size: 18px;
    width: 150px;
    padding: 15px 0;
  }
}

@media (max-width: 1050px) {
  #ribbon-1 {
    width: 40%;
  }
  .item {
    margin: 0 3vw;
  }
  .item p {
    font-size: 12px;
  }
}

@media (max-width: 1050px) {
  #threeThingsWrap .bookNow {
    font-size: 18px;
    width: 140px;
    padding: 10px 0;
  }
}

@media (max-width: 810px) {
  .item h3 {
    font-size: 1.97vw;
  }
  #threeThingsWrap .bookNow {
    top: 1vw;
  }
}

@media (max-width: 750px) {
  #ribbon-1 {
    width: 60%;
    margin-bottom: 20px;
  }
  #threeThings {
    display: initial;
  }
  .item {
    margin: 0px auto 60px auto;
    width: 350px;
  }
  .item img {
    width: 40%;
    margin: 0 auto 15px auto;
  }
  #delivery img {
    width: 40% !important;
  }
  #assembly img {
    width: 40% !important;
  }
  .item h3 {
    font-size: 19px;
    margin: 20px auto;
  }
  .item p {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 450px) {
  #ribbon-1 {
    width: 90%;
    margin: 30px auto;
  }
  .item {
    margin: 0px auto 40px auto;
    width: 80%;
  }
  .item img {
    width: 30%;
    margin: 0 auto 15px auto;
  }
  #delivery img {
    width: 33% !important;
  }
  #assembly img {
    width: 33% !important;
  }
  .item h3 {
    font-size: 20px;
    margin: 15px auto;
    width: 80%;
    margin: auto !important;
  }
}

/* SLIDESHOW / CAROUSEL
--------------------------------------------- */

#gallery {
  width: 5px;
  height: 5px;
  background: red;
  display: block;
  margin: auto;
  position: relative;
  top: -3vw;
}

#logo-3 {
  position: relative;
  z-index: 44;
  width: 10%;
  margin: auto;
  display: block;
  margin-bottom: -6vw;
  /*! animation: tada 4s infinite; */
}

.slider-wrap {
  padding: 15vw 0 19vw 0;
  background: #111127;
  background-size: cover;
  background-position: right;
  /*! position: relative; */
  z-index: -10;
}

#mySplide {
  width: 77%;
  display: block;
  margin: auto;
  height: 35vw;
}

#mySplide img {
  height: 100%;
}

/* ===================================== Media Queries */

@media (max-width: 1050px) {
  .slider-wrap {
    padding: 15vw 0 24vw 0;
  }
  #logo-3 {
    width: 15%;
  }
  #mySplide {
    width: 87%;
    height: 45vw;
  }
}

@media (max-width: 850px) {
  #mySplide {
    width: 95%;
    height: 50vw;
  }
}

@media (max-width: 750px) {
  .slider-wrap {
    padding: 0 0 0 0;
  }
  #logo-3 {
    width: 15%;
    display: none;
  }
  #mySplide {
    width: 100%;
    height: 130vw;
  }
}

/* Map
--------------------------------------------- */

#logo-4 {
  width: 40%;
  display: block;
  margin: auto;
}

#area {
  width: 75%;
  display: block;
  margin: auto;
}

.map {
  /*! background: #111127; */
  padding: 12vw 0 18vw 0;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  background-image: url(assets/van.jpg);
  background-size: cover;
  background-position: bottom right;
  position: relative;
  z-index: 20;
  margin-top: -6vw;
  margin-bottom: -5vw;
}

#van {
  width: 35%;
  display: block;
  margin: auto;
  display: none;
}

.map .txt {
  width: 30%;
  position: relative;
  right: 4vw;
}

.map .txt h2 {
  font-size: 3vw;
}

.map .txt p {
  margin: 1vw 0 2vw 0;
  color: white;
  font-size: 0.9vw;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

.map .txt .centreBtn {
  width: 30%;
}

.map iframe {
  border: none;
  width: 35vw;
  height: 25vw;
  display: block;
  /*! margin: 9vw auto; */
  box-shadow: -1em 1em 1em #0000005c;
  position: relative;
  right: 3vw;
}

/* ===================================== Media Queries */

@media (max-width: 1350px) {
  .map iframe {
    width: 40vw;
    height: 30vw;
  }
  .map .txt {
    width: 37%;
  }
  #logo-4 {
    width: 30%;
  }
  #area {
    width: 65%;
  }
  .map .txt p {
    font-size: 1.1vw;
  }
}

@media (max-width: 1250px) {
  .map {
    padding: 18vw 0;
  }
  .map .txt {
    width: 40%;
    right: 0vw;
  }
  .map iframe {
    width: 45vw;
    right: 0vw;
  }
}

@media (max-width: 1050px) {
  .map .txt p {
    font-size: 12px;
  }
  .map .txt .centreBtn {
    font-size: 1.4vw;
  }
}

@media (max-width: 900px) {
  .map {
    padding: 15vw 0 18vw 0;
  }
  .map iframe {
    width: 40vw;
    height: 35vw;
  }
  #logo-4 {
    width: 37%;
  }
  #area {
    width: 80%;
  }
}

@media (max-width: 750px) {
  #serviceArea {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .map {
    padding: 100px 0;
    background-position: bottom center;
  }
  .map .txt {
    width: 380px;
    margin-bottom: 70px;
  }
  .map .txt p {
    font-size: 14px;
    margin: 30px auto;
  }
  .map .txt .centreBtn {
    font-size: 18px;
    width: 130px;
    padding: 10px 0;
  }
  .map iframe {
    width: 80vw;
    height: 55vw;
  }
}

@media (max-width: 500px) {
  .map {
    padding: 60px 0 70px 0;
  }
  .map .txt {
    width: 90%;
    margin-bottom: 70px;
  }
  #logo-4 {
    width: 160px;
  }
  #area {
    width: 90%;
  }
  .map iframe {
    width: 90vw;
    height: 95vw;
  }
}

/* Prices
--------------------------------------------- */

#prices {
  height: 5px;
  width: 5px;
  background: red;
  position: absolute;
  top: 13vw;
  left: 40vw;
}

#logo-2 {
  width: 15%;
  display: block;
  margin: -7vw auto -1vw auto;
  /*! animation: tada 4s infinite; */
}

.prices-wrapper {
  position: relative;
  width: 100%;
  /*! background: #111127; */
  background-size: cover;
  margin-top: -2vw;
  padding-top: 3vw;
  background-image: url(assets/party-1.png);
  top: -6vw;
  padding-bottom: 20vw;
  z-index: 45;
  margin-bottom: -13vw;
  background-position: center;
}

#pricesWavesTop {
  position: absolute;
  top: 0px;
}

#pricesWavesBottom {
  position: absolute;
  bottom: 0;
  display: none;
}

#banner {
  position: relative;
  width: 370px;
  display: block;
  margin: 0 auto 0vw auto;
  padding-top: 4vw;
  padding-bottom: 2vw;
}

.prices {
  display: flex;
  justify-content: center;
  padding: 2vw 0 6vw 0;
  position: relative;
  z-index: 56;
  margin-bottom: -9vw;
}

.prices .price-box {
  padding: 2vw 0 0 0;
  margin: 0 5vw;
  box-shadow: -0em 0em 3em rgba(0, 0, 0, 0.5);
  border-radius: 10px 40px 10px 40px;
  width: 17vw;
  position: relative;
  height: 33vw;
  background: white;
}

.prices .price-box img {
  width: 30%;
  display: block;
  margin: auto;
}

.prices .price-box .no-deposit {
  position: absolute;
  top: -1.1vw;
  width: 50%;
  left: -1.35vw;
}

.prices .price-box h3 {
  width: 100%;
  text-align: center;
  margin: 0.5vw auto;
  /*! background-color: #df0a86; */
  padding: 0.75vw 0;
  color: #111127;
  font-size: 1.4vw;
}

.prices .price-box .included {
  list-style: none;
  /*! padding: 0.5vw 0; */
  margin: auto;
  display: block;
  width: 60%;
  font-size: 0.7vw;
  text-align: center;
}

.prices .price-box .included li {
  margin: 0.5vw auto;
}

.prices .price-box .price-list {
  padding: 0.5vw 0 3vw 0;
  text-align: center;
  background: #df0a86;
  color: white;
  border-radius: 0px 40px 0px 40px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.prices .price-box .price-list h4 {
  margin: 0.5vw;
  font-size: 0.75vw;
}

.prices .price-box .price-list .price {
  font-size: 1.2vw;
  color: #ffff38;
}

.prices .price-box .price-list .price .pound {
  font-size: 0.8vw;
}

.prices .price-box .price-list a {
  width: 100%;
  display: block;
  padding: 0.6vw 0;
  background: #ffff38;
  font-family: "Marker Notes";
  color: #18183e;
  font-size: 1vw;
  position: absolute;
  bottom: 0;
  border-radius: 0px 40px 0px 40px;
  text-align: center;
}

/* ===================================== Media Queries */

@media (max-width: 1650px) {
  .prices .price-box {
    padding: 30px 0 0 0;
    margin: 0 100px;
    border-radius: 5px 30px 10px 30px;
    width: 280px;
    height: 530px;
  }
  .prices .price-box .no-deposit {
    top: -18px;
    left: -22px;
  }
  .prices .price-box h3 {
    font-size: 20px;
  }
  .prices .price-box .included {
    font-size: 12px;
  }
  .prices .price-box .included li {
    margin: 10px auto;
  }
  .prices .price-box .price-list {
    padding: 5px 0 45px 0;
  }
  .prices .price-box .price-list h4 {
    margin: 5px auto;
    font-size: 12px;
  }
  .prices .price-box .price-list .price {
    font-size: 20px;
  }
  .prices .price-box .price-list .price .pound {
    font-size: 12px;
  }
  .prices .price-box .price-list a {
    font-size: 16px;
    border-radius: 0px 30px 0px 30px;
    padding: 10px !important;
  }
}

@media (max-width: 1400px) {
  #threeThingsWrap {
    padding: 16vw 0 21vw 0;
  }
  .prices-wrapper {
    margin-top: -3vw;
    padding-bottom: 23vw;
  }
  #banner {
    width: 27vw;
    padding-top: 0;
    padding-bottom: 0;
  }
  .prices .price-box img {
    width: 25%;
  }
  .prices .price-box {
    padding: 20px 0 0 0;
    height: 460px;
  }
  .prices .price-box .included {
    font-size: 11px;
  }
  .prices .price-box .included li {
    margin: 8px auto;
  }
  .prices .price-box .price-list .price {
    font-size: 18px;
  }
  .prices .price-box .price-list {
    padding: 5px 0 40px 0;
  }
  .prices .price-box .price-list a {
    font-size: 14px;
  }
}

@media (max-width: 1250px) {
  #logo-2 {
    width: 18%;
  }
}

@media (max-width: 1100px) {
  #banner {
    width: 32vw;
  }
  .prices .price-box {
    padding: 20px 0 0 0;
    margin: 0 7vw;
    border-radius: 5px 30px 10px 30px;
    width: 260px;
    height: 445px;
  }
  .prices .price-box .no-deposit {
    top: -17px;
    left: -21px;
  }
}

@media (max-width: 1000px) {
  #threeThingsWrap {
    padding: 16vw 0 23vw 0;
  }
  .prices-wrapper {
    margin-top: -4vw;
  }
}

@media (max-width: 900px) {
  #logo-2 {
    width: 20%;
  }
  #banner {
    width: 280px;
  }
}

@media (max-width: 850px) {
  #threeThingsWrap {
    padding: 16vw 0 27vw 0;
  }
  .prices-wrapper {
    margin-top: -6vw;
  }
  .prices .price-box {
    width: 230px;
    height: 435px;
  }
  .prices .price-box .no-deposit {
    top: -15px;
    left: -19px;
  }
  .prices .price-box .included {
    width: 80%;
  }
  .prices .price-box .price-list .price {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  #threeThingsWrap {
    padding: 16vw 0 280px 0;
  }
  #logo-2 {
    width: 120px;
    margin: 0 auto 50px auto;
  }
  .prices-wrapper {
    background-image: url(assets/party.jpg);
    margin-bottom: -50px;
  }
  .prices {
    flex-direction: column;
    align-items: center;
  }
  .prices .price-box {
    width: 365px;
    height: 470px;
    margin: 50px auto;
    border-radius: 20px;
  }
  .prices .price-box .no-deposit {
    top: -24px;
    left: -29px;
  }
  .prices .price-box .price-list {
    border-radius: 0 0 20px 20px;
  }
  .prices .price-box .price-list h4 {
    font-size: 14px;
  }
  .prices .price-box .price-list .price {
    font-size: 18px;
  }
  .prices .price-box .price-list a {
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 500px) {
  #threeThingsWrap {
    padding: 16vw 0 210px 0;
  }
  #logo-2 {
    margin: 20px auto 20px auto;
  }
  .prices-wrapper {
    padding-bottom: 0;
  }
  .prices .price-box {
    width: 80%;
  }
  .prices .price-box h3 {
    margin: 10px auto;
  }
  .prices .price-box .no-deposit {
    top: -5.1vw;
    left: -6.3vw;
  }
}

/* Form
--------------------------------------------- */

.form-container {
  /*! background-image: url(assets/droplets-4.jpg); */
  background-size: cover;
  padding: 13vw 0 11vw 0;
  background-position: left;
  position: relative;
  background-color: #111127;
}

.form-container > img:nth-child(2) {
  width: 30%;
  display: none;
  margin: 7vw auto 0 auto;
  position: relative;
  z-index: 50;
}

#book {
  width: 5px;
  height: 5px;
  background: transparent;
  position: absolute;
  top: 10vw;
  left: 50vw;
}

.form-container > img:nth-child(1) {
  position: absolute;
  margin-top: -31vw;
  display: none;
}

.form-container .wrap {
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  width: 90vw;
  margin: auto;
  background-color: #111127;
  border-radius: 3vw;
}

#contact {
  width: 40%;
  display: block;
  position: relative;
  z-index: 45;
  /*! right: -2vw; */
  background-color: #111127;
  /*! padding: 50px 0; */
  border-radius: 3vw 0 0 3vw;
  /*! border-right: 1px solid gray; */
}

#contact input {
  display: block;
  margin: 15px auto;
  width: 85%;
  padding: 7px;
  background-color: #ffffff1a;
  border: none;
  color: white;
  font-size: 16px;
}

#contact fieldset {
  border: none;
  margin: 2vw auto;
  color: white;
  width: 105%;
  padding: 0 0 0 3.5vw;
}

#contact fieldset input {
  color: #3e3e59;
  background-color: #fff0;
  cursor: pointer;
}

#contact fieldset p {
  /*! font-family: 'Marker Notes'; */
  color: #50efff;
  font-size: 16px;
  font-weight: 400;
}

#contact fieldset label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 11vw;
  text-align: center;
  float: left;
  margin-right: 0px;
  margin-top: 1vw;
  ont-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 14px;
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #3e3e59;
  /* Not removed via appearance */
  margin: 0 10px 0 0 !important;
  color: #3e3e59;
  width: 10px !important;
  height: 10px !important;
  border: 0.25em solid currentColor !important;
  border-radius: 100%;
  display: grid;
  place-content: center;
  padding: 5px !important;
}

input[type="radio"]:checked {
  content: "";
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  /*! transform: scale(0); */
  transition: 120ms transform ease-in-out;
  background-color: #df0a86 !important;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

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

#datepicker {
  width: 53% !important;
  float: left;
  margin-left: 7.5% !important;
}

#postcode {
  width: 30% !important;
  float: right;
  margin-right: 7.5% !important;
}

#contact textarea {
  width: 85%;
  height: 7vw;
  margin: 0 auto 2vw auto;
  display: block;
  background-color: #29293d;
  color: white;
  font-size: 16px;
  border: none;
  padding: 8px;
}

#contact textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

#contact-submit {
  float: left;
  display: block;
  cursor: pointer;
  margin-left: 4vw;
}

#form-blurb {
  width: 45%;
  /*! padding: 3vw 3vw 3vw 3vw; */
  border-radius: 0 2vw 2vw 0;
}

#logo-5 {
  width: 140px;
  display: block;
  margin: auto;
}

#book-now {
  width: 350px;
  margin: auto;
  display: block;
}

#form-blurb p {
  margin: 2vw auto;
  line-height: 1.75;
  font-size: 16px;
  color: whitesmoke;
  font-weight: 300;
  text-align: center;
  width: 90%;
}

#formLinks {
  display: flex;
  justify-content: space-evenly;
  margin: 2vw auto;
  flex-wrap: wrap;
}

#formLinks .formLink {
  width: 30%;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  margin: 0.5vw auto;
}

#formLinks .formLink:hover {
  opacity: 1;
}

#formLinks .formLink .icon {
  height: 25px;
  margin: auto;
  display: block;
}

#formLinks .formLink p {
  margin: 10px auto;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  width: 100%;
}

#formSocial {
  background: #df0a86;
  padding: 0.5vw 0 0.25vw 0;
  border-radius: 100px;
  margin: 3vw auto 0 auto;
  width: 60%;
}

#formSocial > p:nth-child(1) {
  color: white;
  text-align: center;
  margin: 0 auto 10px auto;
  font-size: 16px;
  display: none;
}

#formSocialLinks {
  display: flex;
  justify-content: space-evenly;
}

#formSocialLinks .formSocialLink {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#formSocialLinks .formSocialLink:hover {
  opacity: 1;
}

#formSocialLinks .formSocialLink .icon {
  height: 20px;
  display: block;
  margin: auto;
}

#formSocialLinks .formSocialLink p {
  color: white;
  margin: 3px auto 5px auto;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  width: 100%;
}

/* ===================================== Media Queries */

@media (max-width: 1650px) {
  #contact textarea {
    height: 8vw;
  }
}

@media (max-width: 1450px) {
  #contact input {
    margin: 10px auto;
    font-size: 14px;
  }
  #contact fieldset label {
    font-size: 14px;
  }
  #contact fieldset p {
    color: #50efff;
    font-size: 15px;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(3) {
    width: 19vw;
  }

  #contact textarea {
    height: 12vw;
  }
  #contact textarea::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
  }
  #contact-submit {
    margin-left: 4vw;
    padding: 10px 8px;
    font-size: 16px;
    width: 8vw;
  }
  #book-now {
    width: 22vw;
  }
  #form-blurb {
    width: 50%;
  }
  #form-blurb p {
    font-size: 14px;
  }
  #formLinks .formLink {
    width: 33%;
    margin: 1vw auto;
  }
  #formLinks .formLink .icon {
    height: 20px;
  }
  #formLinks .formLink p {
    font-size: 1vw;
  }
}

@media (max-width: 1200px) {
  .form-container .wrap {
    width: 100vw;
  }
  #contact {
    width: 40%;
  }
  #contact input {
    margin: 10px auto;
    font-size: 14px;
    width: 90%;
  }
  #contact fieldset {
    width: 120%;
    padding: 0 0 0 2vw;
  }
  #contact fieldset label {
    width: 13vw;
    margin-right: 0px;
    font-size: 14px;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(3) {
    width: 25vw;
  }

  #postcode {
    width: 32% !important;
    float: right;
    margin-right: 5% !important;
  }
  #datepicker {
    width: 55% !important;
    float: left;
    margin-left: 5% !important;
  }
  #contact textarea {
    width: 90%;
    height: 15vw;
  }
  #contact textarea::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
  }
  #contact-submit {
    right: -26vw;
    width: 8vw;
  }
  #logo-5 {
    width: 15vw;
  }
  #book-now {
    width: 25vw;
  }
  #form-blurb p {
    font-size: 14px;
  }
  #formLinks .formLink {
    width: 33%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  #formLinks .formLink p {
    font-size: 12px;
  }
  #formSocialLinks .formSocialLink p {
    font-size: 0.9vw;
  }
  #formSocialLinks .formSocialLink .icon {
    height: 1.5vw;
  }
  #contact fieldset p {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .form-container .wrap {
    width: 600px;
    align-items: center;
    flex-direction: column-reverse;
  }
  #contact {
    width: 600px;
    margin-top: 20px;
  }
  #contact input {
    margin: 15px auto;
    font-size: 16px;
    width: 100%;
  }
  #contact fieldset {
    width: 95%;
    padding: 0;
    margin: 25px auto;
  }
  #contact fieldset p {
    font-size: 16px;
    letter-spacing: 1px;
  }
  #contact fieldset label {
    width: 150px;
    margin: 25px 0 0 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(3) {
    width: 250px;
  }
  input[type="radio"] {
    margin: 0 10px 0 0 !important;
  }
  #contact textarea {
    width: 100%;
    height: 14.75vw;
  }
  #contact textarea::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
  }
  #datepicker {
    width: 65% !important;
    margin-left: 0% !important;
  }
  #postcode {
    margin-right: 0% !important;
  }
  #contact-submit {
    right: 2vw;
    width: 110px;
    font-size: 20px;
    padding: 12px 8px;
  }
  #form-blurb {
    width: 620px;
  }
  #logo-5 {
    width: 200px;
  }
  #book-now {
    width: 33vw;
  }
  #form-blurb p {
    font-size: 16px;
    width: 100%;
    margin: 50px 0;
    line-height: 2;
    text-align: justify;
  }
  #formLinks {
    background: #29293d;
    padding-top: 1vw;
    border-radius: 1vw;
  }
  #formLinks .formLink .icon {
    height: 25px;
  }
  #formLinks .formLink p {
    font-size: 1.25vw;
  }
}

@media (max-width: 800px) {
  .form-container .wrap {
    width: 80%;
  }
  #form-blurb {
    width: 100%;
  }
  #logo-5 {
    width: 35%;
  }
  #book-now {
    width: 40vw;
  }
  #formLinks {
    padding: 20px 0;
    border-radius: 20px;
  }
  #formLinks .formLink p {
    font-size: 13px;
  }
  #formLinks .formLink .icon {
    height: 25px;
  }
  #contact {
    width: 100%;
    margin-top: 20px;
  }
  #contact input {
    font-size: 14px;
  }
  #contact textarea::placeholder {
    font-size: 14px;
  }
  #datepicker {
    width: 65.5% !important;
  }
  #contact-submit {
    right: 4vw;
    width: 100px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .form-container .wrap {
    width: 85%;
  }
  #logo-5 {
    width: 45%;
  }
  #book-now {
    width: 60vw;
  }
  #contact input {
    font-size: 14px;
    padding: 10px;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(2) {
    margin-right: 30px;
  }

  #contact fieldset label {
    width: 120px;
  }
  #contact-submit {
    border-radius: 100px;
    margin-top: 20px;
  }
  #contact textarea {
    width: 100%;
    height: 26.75vw;
  }
  #contact textarea::placeholder {
    font-size: 14px;
    line-height: 1.75;
  }
  #formLinks .formLink {
    width: 60%;
  }
  #formLinks .formLink a {
    display: flex;
  }
}

@media (max-width: 450px) {
  #formLinks .formLink {
    width: 75%;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(2) {
    margin-right: 30px;
    width: 120px;
  }
  #contact fieldset label {
    width: 100px;
  }
  #contact textarea {
    width: 100%;
    height: 38.75vw;
  }
  #contact fieldset {
    width: 100%;
    padding: 0;
    margin: 25px auto;
  }
  #contact > fieldset:nth-child(4) > label:nth-child(3) {
    width: 160px;
  }
}

/* Footer
--------------------------------------------- */

.footer {
  background: #0f0f21;
  padding-top: 10vw;
}

.wavesBottomInverted {
  margin-top: -8vw;
  transform: scaleY(-1);
  margin-bottom: -16vw;
  display: none;
}

.footer-wrap {
  position: relative;
  display: flex;
  justify-content: space-around;
  top: -5vw;
  align-items: flex-start;
}

#logo-footer {
  width: 280px;
  margin: auto;
  display: block;
}

#logoAddress p {
  color: #9ccdf8;
  font-size: 14px;
  width: 230px;
  text-align: center;
  margin: auto;
  line-height: 1.75;
}

.footer .footer-wrap .contact h6,
.footer .footer-wrap .site-map h6 {
  color: white;
  letter-spacing: 1px;
  font-size: 18px;
  margin-bottom: 30px;
}

.footerContactLink {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footerContactLink img {
  width: 20px;
  margin-right: 20px;
}

.footerContactLink a {
  font-size: 16px;
  color: #a1d3ff;
}

.site-map a {
  margin-bottom: 10px;
  color: #9ecffb;
  font-size: 16px;
}

.footer > p:nth-child(3) {
  color: #9fd0fc;
  text-align: center;
  padding-bottom: 8px;
}

/* ===================================== Media Queries */

@media (max-width: 1400px) {
  #logo-footer {
    width: 20vw;
    margin: auto;
    display: block;
  }
}

@media (max-width: 1150px) {
  .footerContactLink img {
    width: 15px;
    margin-right: 20px;
  }
  .footerContactLink a {
    font-size: 14px;
    color: #a1d3ff;
  }
  .footer .footer-wrap .contact h6,
  .footer .footer-wrap .site-map h6 {
    color: white;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .footer-wrap {
    position: relative;
    display: flex;
    justify-content: space-around;
    top: -5vw;
    align-items: center;
    flex-direction: column;
  }
  #logo-footer {
    width: 170px;
    margin: auto;
    display: block;
  }
  .footerContactLink a {
    font-size: 14px;
    color: #a1d3ff;
  }
  .contact {
    margin: 50px auto;
    text-align: center;
  }
  .site-map {
    text-align: center;
  }
}

/* Terms --------------------------------------------- */
#termsHeading {
  padding-top: 100px;
  margin-left: 150px;
  width: 820px;
  color: white;
}

#termsOl {
  width: 820px;
  margin: 30px 0 250px 150px;
  line-height: 1.5;
  color: white;
}

#termsOl li {
  margin-bottom: 50px;
}

#termsOl li p {
  margin-bottom: 10px;
}

#termsOl ul {
  margin: 50px 10px 50px 20px;
}

#termsOl ul li {
  margin-bottom: 10px;
}

/* ===================================== Media Queries */

@media (max-width: 1100px) {
  #termsOl ul {
    margin: 50px 10px 50px 20px;
  }
  #termsHeading {
    padding-top: 100px;
    margin: auto;
    width: 80%;
  }
  #termsOl {
    width: 80%;
    margin: 30px auto 250px auto;
    line-height: 1.5;
  }
}

@media (max-width: 800px) {
  #termsHeading {
    font-size: 28px;
    padding-top: 50px;
  }
  #termsOl {
    font-size: 14px;
    text-align: justify;
  }
  #termsOl li {
    margin-bottom: 30px;
  }
  #termsOl ul {
    margin: 30px 10px 30px 20px;
  }
}
