@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --ptSans: "PT Sans", sans-serif;
  --header-height: 80px;
  --footer-height: 250px;
  --white: #ffffff;
  --black: #000000;
  --navy: #134783;
  --charcoal: #222222;
  --xsmall: 10px;
  --small: 25px;
  --medium: 50px;
  --large: 100px;
  --xlarge: 150px;
  --xxlarge: 200px;
}

body {
  font-family: var(--ptSans);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-weight: normal;
  padding-top: var(--header-height);
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}
.grid_4.small-gap {
  width: calc(33.333% - var(--small));
  margin-right: calc(var(--small) + var(--xsmall));
  margin-bottom: var(--medium);
}
.grid_4.small-gap:nth-child(3n) {
  margin-right: 0;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: calc(50% - var(--small));
}
.grid_6.small-gap {
  width: calc(50% - var(--small));
  margin-right: var(--medium);
}
.grid_6.small-gap:nth-child(2n) {
  margin-right: 0;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: flex;
  position: relative;
}
.grid_1.block,
.grid_2.block,
.grid_3.block,
.grid_4.block,
.grid_5.block,
.grid_6.block,
.grid_7.block,
.grid_8.block,
.grid_9.block,
.grid_10.block,
.grid_11.block,
.grid_12.block {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none !important;
}

/* Headings */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--ptSans);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
}

h1,
.h1 {
  font-weight: 400;
  font-size: 32px;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
}
h2.italic {
  font-style: italic;
}

h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
}

p {
  font-size: 14px;
}
p.large {
  font-size: 1.5em;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--medium);
  background-color: var(--white);
}
header a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--ptSans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid transparent;
  margin-right: var(--small);
  padding: 4px 0 0;
}

#navToggle {
  width: 30px;
  height: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#navToggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  display: block;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

/* FOOTER */
footer {
  height: var(--footer-height);
  padding: 0 var(--medium);
  background-color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer * {
  color: var(--white);
}

#bylow {
  border-top: 1px solid var(--white);
  padding: var(--small) 0;
}

/* FORM */
/* enquiry */
#form {
  width: 100%;
}

input,
select,
textarea,
label {
  font-family: var(--ptSans);
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  width: 100%;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid var(--white);
  text-align: left;
  margin: 0 0 4px;
  padding: 10px 0 14px;
  color: var(--white);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
}

select option {
  padding: 7px 5px;
  background: var(--white) !important;
  color: var(--black);
  text-align: left;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
}

button[type=submit] {
  border: 1px solid var(--navy);
  cursor: pointer;
}

.chk_holder {
  margin: 0 0 10px 0;
  color: var(--navy);
  width: 100%;
  border-bottom: 1px solid var(--navy);
  text-align: left;
  padding-bottom: 4px;
}

#chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  display: inline;
  margin: auto;
  border-bottom: 0 none;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--navy);
  content: "";
  display: block;
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 9px;
  top: 50%;
  left: 5px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

#chkInternational:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--white);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.5;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}

#au_postcode,
#int_postcode,
#enquiryInternational1_HowDidYouHearHolder {
  width: 100%;
}

#page-contact input,
#page-contact select,
#page-contact textarea,
#page-contact label,
#page-contact option,
.newsletter input,
.newsletter select,
.newsletter textarea,
.newsletter label,
.newsletter option {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
#page-contact input:-webkit-input-placeholder,
#page-contact textarea:-webkit-input-placeholder,
.newsletter input:-webkit-input-placeholder,
.newsletter textarea:-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}
#page-contact input::-webkit-input-placeholder,
#page-contact textarea::-webkit-input-placeholder,
.newsletter input::-webkit-input-placeholder,
.newsletter textarea::-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}
#page-contact input:-moz-placeholder,
#page-contact textarea:-moz-placeholder,
.newsletter input:-moz-placeholder,
.newsletter textarea:-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
#page-contact input::-moz-placeholder,
#page-contact textarea::-moz-placeholder,
.newsletter input::-moz-placeholder,
.newsletter textarea::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}

.newsletter form {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

#page-contact {
  min-height: calc(90vh - var(--header-height));
  min-height: calc(90svh - var(--header-height));
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: var(--large);
  padding-right: var(--large);
}
.container.large {
  max-width: 1460px;
}
.container.medium {
  max-width: 1280px;
}
.container.small {
  max-width: 1024px;
}
.container.formHolder {
  max-width: 600px;
}

.lazy-element {
  opacity: 0;
  transition: opacity 1.5s;
  -webkit-transition: opacity 1.5s;
  -moz-transition: opacity 1.5s;
  -ms-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
}
.lazy-element.fadeIn {
  opacity: 1;
}

img.lazy-element {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease-in, filter 0.25s ease-in 0.25s;
  -webkit-transition: opacity 1s ease-in, filter 0.25s ease-in 0.25s;
  -moz-transition: opacity 1s ease-in, filter 0.25s ease-in 0.25s;
  -ms-transition: opacity 1s ease-in, filter 0.25s ease-in 0.25s;
  -o-transition: opacity 1s ease-in, filter 0.25s ease-in 0.25s;
}
img.lazy-element.fadeIn {
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
}

#playVideo {
  z-index: 2;
  width: clamp(40px, 3vh + 3vw, 80px);
}
#playVideo img {
  width: 100%;
}

#page-home #playVideo {
  margin: auto;
}

.btn {
  font-family: var(--ptSans);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: var(--white);
  background-color: var(--black);
  padding: 6px 18px;
  border: 1px solid var(--black);
  position: relative;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  text-transform: uppercase;
  cursor: default;
}
.btn span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--navy);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
@media (hover: hover) {
  .btn:hover span {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.btn.active {
  pointer-events: none;
}
.btn.active span {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.btn[type=submit] {
  cursor: pointer;
}

a.btn {
  cursor: pointer;
}

.parallax {
  position: relative;
  overflow: hidden;
}
.parallax .para {
  transition: transform 0.1s linear;
  will-change: transform;
}

.dark-tint-pseudo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

main {
  display: block;
  min-height: 100%;
}

.vimeo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.vimeo-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  /*100*(16/9)foraspectratio*/
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  pointer-events: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .vimeo-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* 100 * (9 / 16) for aspect ratio */
  }
}
@media (max-aspect-ratio: 16/9) {
  .vimeo-background iframe {
    width: 177.78vh;
    /* 100 * (16 / 9) */
    height: 100vh;
  }
}
/*--------------------------*/
.bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg.bpb {
  background-position: bottom;
}

.wmc {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.z2 {
  z-index: 2;
}

.opb {
  -o-object-position: bottom;
     object-position: bottom;
}

.parallax {
  position: relative;
  overflow: hidden;
}
.parallax .para {
  transition: transform 0.1s linear;
  will-change: transform;
  position: absolute;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

/* General */
.row {
  display: flex;
  flex-direction: row;
}
.row.wrap {
  flex-wrap: wrap;
}

.row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.col,
.column {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.relative {
  position: relative;
  z-index: 2;
}

.absolute {
  position: absolute;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.mla {
  margin-left: auto;
}

.mta {
  margin-top: auto;
}

.fullwidth,
.full-width {
  width: 100%;
}

.fullheight,
.full-height {
  height: 100%;
}

.full-vh,
.full-svh {
  height: 100vh;
  height: 100svh;
}

.tac,
.center-align {
  text-align: center;
}

.ptxl {
  padding-top: var(--xlarge);
}

.pbxl {
  padding-bottom: var(--xlarge);
}

.pbxxl {
  padding-bottom: var(--xxlarge);
}

.ptl {
  padding-top: var(--large);
}

.pbl {
  padding-bottom: var(--large);
}

.pll {
  padding-left: var(--large);
}

.prl {
  padding-right: var(--large);
}

.plm {
  padding-left: var(--medium);
}

.prm {
  padding-right: var(--medium);
}

.ptm {
  padding-top: var(--medium);
}

.pbm {
  padding-bottom: var(--medium);
}

.pts {
  padding-top: var(--small);
}

.pbs {
  padding-bottom: var(--small);
}

.mbs {
  margin-bottom: var(--small);
}

.mbxs {
  margin-bottom: var(--xsmall);
}

.mbm {
  margin-bottom: var(--medium);
}

.ptxs {
  padding-top: var(--xsmall);
}

.ps {
  padding: var(--small);
}

.pls {
  padding-left: var(--small);
}

.prs {
  padding-right: var(--small);
}

.pbxs {
  padding-bottom: var(--xsmall);
}

.plrm {
  padding-left: var(--medium);
  padding-right: var(--medium);
}

.center-position {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section {
  position: relative;
}
section.landing {
  height: calc(100vh - var(--header-height) - var(--footer-height));
  height: calc(100svh - var(--header-height) - var(--footer-height));
  background-image: url(/images/home/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
section h1 {
  font-size: 50px;
  z-index: 2;
  text-align: center;
}

.sticky {
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}

.navy {
  color: var(--navy);
}

.bg-navy {
  background-color: var(--navy);
}

.white {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}

.black {
  color: var(--black);
}

.bg-black {
  background-color: var(--black);
}

.bg-navy {
  background-color: var(--navy);
}

.navy {
  color: var(--navy);
}

.bg-navy {
  background-color: var(--navy);
}

.navy {
  color: var(--navy);
}

.bg-navy {
  background-color: var(--navy);
}

.navy {
  color: var(--navy);
}

.bg-navy {
  background-color: var(--navy);
}

.just-mobile {
  display: block;
}

@media screen and (max-width: 1000px) {
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer {
    height: auto !important;
    padding: 50px 0 0px;
  }
  footer div {
    width: 100% !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
  }
  footer div.grid_3 {
    margin-bottom: 20px !important;
  }
  header {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
  }
  header .logo {
    width: 200px;
  }
  header .tel {
    padding-right: 0;
    margin-right: 0;
    font-weight: 600;
  }
}/*# sourceMappingURL=main.css.map */