/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  overflow-x: hidden;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
label,
li,
ul,
input {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Reset tables  */
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
input:before,
input:after {
  -webkit-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*! EFFECTS */
.drop-shadow {
  filter: drop-shadow(4px 4px 2px rgba(3, 1, 40, 0.35));
}

html,
body {
  font-family: "Poppins", serif;
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  font-size: 16px;
  background-color: #123658;
  color: #f6f7fa;
}

#wrapper {
  width: 100%;
  margin: 0;
}

H3 {
  font-family: "Libre Baskerville", serif;
  color: #8cbe3a;
  font-size: 2.4rem;
  text-transform: capitalize;
}

p {
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 3rem;
  font-style: italic;
}

.h-green {
  color: #8cbe3a;
}

.seperator {
  background-color: #8cbe3a;
  width: 100%;
  height: 40px;
  z-index: 1000;
}

.nav {
  height: 40px;
  margin-bottom: 5%;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.thanks-body {
  width: 100%;
  height: 100%;
}

.thanks {
  position: fixed;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.thanks #logo {
  width: 20%;
  margin-bottom: 2rem;
  margin-top: 5%;
}
.thanks .heading {
  margin-bottom: 1rem;
  text-align: center;
}
.thanks .content {
  text-align: center;
  margin-bottom: 6vh;
}

.home {
  display: grid;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 2;
  justify-items: center;
}
.home .home-container {
  display: grid;
  width: 100%;
  justify-items: center;
  align-items: space-between;
}
.home .home-container #logo {
  width: 20vw;
  margin-bottom: 5vh;
  margin-top: 5%;
}
.home .home-container .heading {
  width: 80%;
  margin-bottom: 3vh;
  text-align: center;
}
.home .home-container .content {
  text-align: center;
  width: 45%;
  margin-bottom: 6vh;
}
.home .home-container .skyline {
  width: 100vw;
  padding: 0;
  margin: 0;
}

.about {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../img/bg_about.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}
.about .about-container {
  width: 50%;
  padding: 10vh 10vw;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.423) 60%, rgba(255, 255, 255, 0));
}
.about .heading {
  margin-bottom: 3vh;
  text-align: center;
}
.about .content {
  color: #123658;
}

.contact {
  padding: 6vh 4vw;
  text-align: center;
  width: 100%;
}
.contact .svg-icon {
  height: 3rem;
  fill: #8cbe3a;
}
.contact .heading {
  margin-bottom: 6vh;
}
.contact .contact-container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content;
  grid-template-areas: " contact address" " form map";
  justify-items: center;
  gap: 20px 20px;
  transition: all 0.5s ease;
}
.contact .comms {
  display: grid;
  grid-area: contact;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  gap: 25px;
  justify-items: center;
}
.contact .form {
  display: grid;
  grid-area: form;
  grid-auto-rows: auto;
  gap: 10px 0;
  border: 2px solid #8cbe3a;
  border-top-left-radius: 30px;
  width: 80%;
  min-width: 500px;
  padding: 20px;
  text-align: left;
}
.contact .input-container {
  position: relative;
  width: 60%;
  height: 40px;
  min-width: 200px;
}
.contact .enquiry {
  position: relative;
  width: 100%;
  height: 110px;
}
.contact .enquiry .input-background {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.contact .input-background {
  background-color: #8cbe3a;
  border-top-left-radius: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.contact .input {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #f6f7fa;
  font-size: 1rem;
  padding-left: 4px;
  outline: none;
  border: 1px solid #8cbe3a;
}
.contact #enquiry {
  height: calc(100% - 10px);
}
.contact .location {
  grid-area: address;
  width: 100%;
}
.contact .location .svg-icon {
  margin-bottom: 25px;
}
.contact .location p {
  line-height: 1.5rem;
  font-size: 1rem;
}
.contact .map-container {
  position: relative;
  grid-area: map;
  width: 80%;
  height: 500px;
  min-width: 500px;
}
.contact .map-background {
  background-color: #8cbe3a;
  border-top-left-radius: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.contact .map {
  position: absolute;
  top: 10px;
  left: 10px;
  background-size: cover;
  width: 100%;
  height: calc(100% - 10px);
  z-index: 11;
  background-image: url(../img/map.jpg);
}
.contact #pointer {
  position: absolute;
  z-index: 20;
  top: 28%;
  left: 21%;
  width: 40px;
}
.contact .button-container {
  position: relative;
  height: 40px;
  width: 120px;
  justify-self: end;
}
.contact .button-container .button-background {
  background-color: #8cbe3a;
  border-top-left-radius: 40px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.contact .button-container .button {
  position: absolute;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 40px;
  background-color: #f6f7fa;
  border-color: #123658;
  text-align: center;
  top: 10px;
  left: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.contact .button-container .button p {
  text-align: center;
  overflow: hidden;
  color: #123658;
  line-height: 1rem;
  padding: 0;
}
.contact .button-container p {
  line-height: 1rem;
  font-size: 1.4rem;
}

.footer {
  padding: 10px 5%;
  color: #f6f7fa;
  font-size: 0.8rem;
  text-align: center;
}

/* JET PLANE */
#jet {
  position: absolute;
  width: 20%;
  left: 100px;
  top: 10px;
  opacity: 0;
}

#balloon {
  position: absolute;
  width: 10%;
  top: 10px;
  opacity: 0;
}

@media (max-width: 600px) {
  .nav {
    position: absolute;
    height: 20px;
  }

  .home .home-container {
    padding: 0vh;
    height: unset;
    grid-template-rows: -webkit-min-content -webkit-min-content auto -webkit-min-content;
    grid-template-rows: min-content min-content auto min-content;
  }
  .home .home-container #logo {
    width: 50vw;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    margin-top: 5vh;
  }
  .home .home-container .heading {
    width: 90%;
    font-size: 1.65rem;
    margin-bottom: 3vh;
    text-align: center;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .home .home-container .content {
    text-align: center;
    width: 80%;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 20vh;
  }
  .home .home-container .skyline {
    position: absolute;
    align-self: end;
    width: 300vw;
    padding: 0;
    margin: 0;
  }

  .about {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .about .about-container {
    width: 100%;
    padding: 5vh 5vw;
    flex-direction: row;
    background-size: 100% auto;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .about .content {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 6vh;
  }

  .contact {
    margin: 2vh 0;
  }
  .contact .contact-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content min-content min-content;
    grid-template-areas: "contact" "form" "address" "map";
    justify-items: center;
    gap: 5vh 0;
  }
  .contact .comms {
    grid-area: contact;
    gap: 2vh 0;
  }
  .contact .comms p {
    font-size: 1rem;
  }
  .contact .form {
    display: grid;
    grid-area: form;
    grid-auto-rows: auto;
    width: 100%;
    min-width: unset;
    padding: 4vw;
  }
  .contact .input-container {
    position: relative;
    width: 80%;
    height: 40px;
    min-width: unset;
  }
  .contact .enquiry {
    position: relative;
    width: 100%;
    height: 150px;
  }
  .contact .enquiry .input-background {
    background-color: #8cbe3a;
    border-top-left-radius: 10px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  .contact #enquiry {
    height: calc(100% - 10px);
  }
  .contact .map-container {
    position: relative;
    grid-area: map;
    width: 100%;
    min-width: unset;
  }
  .contact .map {
    position: absolute;
    bottom: 0;
    left: 10px;
    background-size: cover;
    width: 100%;
    height: calc(100% - 10px);
    z-index: 11;
    background-image: url(../img/map.jpg);
  }
  .contact .button-container {
    margin-top: 10px;
  }

  #jet {
    position: absolute;
    width: 70%;
    top: 10px;
  }

  #balloon {
    position: absolute;
    width: 30%;
    top: 10px;
  }

  .footer {
    font-size: 0.6rem;
  }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .home .home-container #logo {
    width: 40vw;
    margin-bottom: 5vh;
  }

  .contact .contact-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content min-content min-content;
    grid-template-areas: "contact" "form" "address" "map";
    justify-items: center;
    gap: 5vh 0;
  }

  .about {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .about .about-container {
    width: 100%;
    padding: 5vh 5vw;
    flex-direction: row;
    background-size: 100% auto;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .about .content {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 6vh;
  }
}
@media (min-width: 1001px) and (max-width: 1270px) {
  .about {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .about .about-container {
    width: 100%;
    padding: 5vh 5vw;
    flex-direction: row;
    background-size: 100% auto;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .about .content {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 6vh;
  }

  .contact {
    margin: 2vh 0;
  }
  .contact .contact-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content;
    grid-template-areas: "form contact" "address map";
    place-items: center;
    gap: 5vh 0;
  }
  .contact .comms {
    grid-area: contact;
    gap: 2vh 0;
  }
  .contact .comms p {
    font-size: 1rem;
  }
  .contact .form {
    display: grid;
    grid-area: form;
    grid-auto-rows: auto;
    width: 100%;
    min-width: unset;
    padding: 4vw;
  }
  .contact .input-container {
    position: relative;
    width: 80%;
    height: 40px;
    min-width: unset;
  }
  .contact .enquiry {
    position: relative;
    width: 100%;
    height: 150px;
  }
  .contact .map-container {
    position: relative;
    grid-area: map;
    width: 100%;
    min-width: unset;
  }
  .contact .map {
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    width: 100%;
    height: calc(100% - 10px);
    z-index: 11;
    background-image: url(../img/map.jpg);
  }
  .contact .button-container {
    margin-top: 10px;
  }

  #jet {
    position: absolute;
    width: 14vw;
    top: 10px;
  }

  #balloon {
    position: absolute;
    width: 18vw;
    top: 10px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .home .home-container {
    padding: 0vh;
    height: 100vh;
  }

  .about {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .about .about-container {
    width: 100%;
    padding: 5vh 5vw;
    flex-direction: row;
    background-size: 50% auto;
    background-position: center;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .nav {
    position: absolute;
    height: 20px;
  }

  #jet {
    position: absolute;
    width: 30%;
    top: 10px;
  }

  #balloon {
    position: absolute;
    width: 8%;
    top: 10px;
  }

  .home .home-container {
    padding: 0vh;
    height: 100vh;
    grid-template-rows: -webkit-min-content -webkit-min-content auto -webkit-min-content;
    grid-template-rows: min-content min-content auto min-content;
  }
  .home .home-container #logo {
    width: 20vw;
    margin-top: 6vh;
    margin-bottom: 4vh;
  }
  .home .home-container .heading {
    width: 90%;
    font-size: 1.3rem;
    margin-bottom: 3vh;
    text-align: center;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .home .home-container .content {
    text-align: center;
    width: 80%;
    font-size: 0.8rem !important;
    line-height: 1.4rem !important;
    margin-bottom: 6vh;
  }
  .home .home-container .skyline {
    position: absolute;
    align-self: end;
    width: 100vw;
    padding: 0;
    margin: 0;
  }

  .about {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .about .about-container {
    width: 100%;
    padding: 5vh 5vw;
    flex-direction: row;
    background-size: 100% auto;
    background-position: center;
  }
  .about .content {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 6vh;
  }

  .contact {
    margin: 2vh 0;
  }
  .contact .contact-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content min-content;
    grid-template-areas: "contact contact" "form form" "address map";
    place-items: center;
    gap: 10vh 0;
  }
  .contact .comms {
    grid-area: contact;
    gap: 2vh 0;
  }
  .contact .comms p {
    font-size: 1rem;
  }
  .contact .form {
    display: grid;
    grid-area: form;
    grid-auto-rows: auto;
    width: 100%;
    min-width: unset;
    padding: 4vw;
  }
  .contact .input-container {
    position: relative;
    width: 80%;
    height: 40px;
    min-width: unset;
  }
  .contact .enquiry {
    position: relative;
    width: 100%;
    height: 150px;
  }
  .contact #enquiry {
    height: 100%;
  }
  .contact .map-container {
    position: relative;
    grid-area: map;
    width: 100%;
    height: 500px;
    min-width: unset;
  }
  .contact .map {
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    width: 100%;
    height: calc(100% - 10px);
    z-index: 11;
    background-image: url(../img/map.jpg);
  }
  .contact .button-container {
    margin-top: 10px;
  }
}/*# sourceMappingURL=styles.css.map */