/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Cabin&family=Trirong:wght@600;900&display=swap");
/*Colors*/
/*Media*/
/*Includes*/
html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: lightgray;
  background-image: url("/img/bg-alt.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #7882A8;
  font-family: "Cabin", sans-serif;
}

h1, h2, h3, h4, h5 h6 {
  font-family: "Trirong", serif;
  text-shadow: 1px 1px #CBD5E3;
}

h1 {
  font-size: 5.5rem;
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 3.5rem;
  }
}
hr {
  border-top: 2px dotted #8B9CAE;
}

main {
  margin-top: 100px;
  min-height: calc(100vh - 150px);
  padding-bottom: 100px;
}

@media only screen and (max-width: 500px) {
  main {
    margin-top: 20px;
  }
  main h1 {
    color: white;
  }
}
#holder-card {
  top: 0vh;
  text-align: center;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.container {
  background-color: lightgray;
  color: #272F30;
  border-radius: 2px;
  width: 100%;
}

.container h1, .container h2, .container h3, .container h4, .container h5 h6 {
  color: #8B9CAE;
}
.container h4 {
  font-weight: bold;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.btn-default {
  color: #FEFAE0;
  background-color: #7882A8;
  border-color: #272F30;
  width: 100%;
  min-width: 100px;
}

.btn-default:hover {
  color: #272F30;
  background-color: #8B9CAE;
  border-color: #8B9CAE;
}

.btn-default:active {
  color: #FEFAE0;
  background-color: #7882A8;
  border-color: #272F30;
}

.btn-default:focus {
  color: #272F30;
  background-color: #8B9CAE;
  outline: none;
}

.logo-main {
  max-width: 270px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.expander {
  margin-top: 20px;
  background-color: rgb(200, 200, 200);
  border-radius: 2px;
  overflow: hidden;
  height: 600px;
  -webkit-transition: height 1s, background-color 1s linear;
  -moz-transition: height 1s, background-color 1s linear;
  transition: height 1s, background-color 1s linear;
}

#enquiry-form, .content-box {
  background-color: #272F30;
  opacity: 0.95;
  border-radius: 9px;
  padding: 2em;
  text-align: left;
  color: white;
}
#enquiry-form .user-cannot-see, .content-box .user-cannot-see {
  display: none;
}
#enquiry-form .g-recaptcha, .content-box .g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}
#enquiry-form textarea, .content-box textarea {
  height: 6em;
}

@media (max-width: 950px) {
  .expander {
    height: 700px;
  }
}
@media (max-width: 650px) {
  .expander {
    height: 800px;
  }
}
@media (max-width: 520px) {
  .expander {
    height: 950px;
  }
}
@media (max-width: 420px) {
  .expander {
    height: 1100px;
  }
}
@media (max-width: 374px) {
  .expander {
    height: 1200px;
  }
}
.expander p {
  text-align: justify;
  text-justify: inter-word;
}

.expander-collapsed {
  height: 0px;
  background-color: lightgray;
}

#open-extras .col-form-label {
  text-align: left;
}
#open-extras select {
  text-align: right;
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #7882A8;
  color: #8B9CAE;
  overflow: hidden;
  font-family: "Trirong", serif;
  border-bottom: 2px solid #272F30;
  z-index: 20;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

nav a {
  text-decoration: none;
  color: inherit;
}
nav img {
  float: left;
  padding-top: 5px;
  height: 70px;
  width: 70px;
}
nav ul {
  padding-top: 30px;
  list-style: none;
  display: inline;
  margin: 0;
  margin-left: 30px;
}
nav li:hover a {
  text-decoration: none;
  color: inherit;
}
nav li:hover {
  color: #CBD5E3;
}
nav .nav-main ul li {
  font-size: 32px;
  font-weight: 700;
  padding-top: 30px;
  padding-right: 18px;
  display: inline-block;
}
nav .nav-main ul li:first-child {
  padding-left: 0;
  margin-left: -40px;
}
nav .nav-social ul {
  font-size: 35px;
  float: right;
}
nav .nav-burger ul {
  font-size: 50px;
  margin-top: -25px;
  float: right;
}

.mobile-nav {
  display: none;
}

#nav-overlay {
  display: none;
  position: fixed; /* Sit on top of the page content */
  overflow: hidden;
  width: 100%; /* Full width (cover the whole page) */
  height: 0%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
  z-index: 10; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  -webkit-transition: height 1s;
  -moz-transition: height 1s;
  transition: height 1s;
}

.nav-overlay-content {
  margin-top: 90px;
}

.nav-overlay-content a {
  text-decoration: none;
  color: #8B9CAE;
}
.nav-overlay-content ul {
  padding-top: 0px;
  list-style: none;
  display: inline;
  margin: 0;
  margin-left: 30px;
}
.nav-overlay-content li {
  font-size: 28px;
  font-weight: 700;
  padding-top: 10px;
  color: #8B9CAE;
}
.nav-overlay-content li:hover a {
  text-decoration: none;
  color: inherit;
}
.nav-overlay-content li:hover {
  color: #CBD5E3;
}

.nav-overlay-icons a {
  text-decoration: none;
  color: #8B9CAE;
}
.nav-overlay-icons ul {
  padding: 0px;
  list-style: none;
  display: inline;
  margin: 0;
  margin-left: 0px;
}
.nav-overlay-icons li {
  font-size: 40px;
  padding-top: 10px;
  color: #8B9CAE;
}
.nav-overlay-icons li:hover a {
  text-decoration: none;
  color: inherit;
}
.nav-overlay-icons li:hover {
  color: #CBD5E3;
}

@media (max-width: 801px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  #nav-overlay {
    display: block;
  }
}
footer {
  height: 50px;
  width: 100%;
  width: 100vw;
  overflow: hidden;
  text-align: center;
  padding-top: 15px;
  color: #FEFAE0;
  font-size: 18px;
}

.pulse {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150rem;
  overflow: visible !important;
}
.pulse circle {
  fill: #CBD5E3;
  transform: scale(0);
  opacity: 0;
  transform-origin: 50% 50%;
  animation: pulse 4s cubic-bezier(0.5, 0.5, 0, 1);
  animation-iteration-count: infinite;
}
.pulse circle:nth-child(2) {
  fill: #7882A8;
  animation: pulse 4s 3s cubic-bezier(0.5, 0.5, 0, 1);
  animation-iteration-count: infinite;
}
.pulse circle:nth-child(3) {
  fill: #FEFAE0;
  animation: pulse 4s 6s cubic-bezier(0.5, 0.5, 0, 1);
  animation-iteration-count: infinite;
}

@keyframes pulse {
  25% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.5);
  }
}

/*# sourceMappingURL=core.css.map */
