
@font-face {
  font-family: "Pantasia-Regular";
  src: url("https://whdev.lpip.com.au/site/wp-content/themes/white-horse-by-lp/assets/fonts/Pantasia-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABCWalterAlte";
  src: url("https://whdev.lpip.com.au/site/wp-content/themes/white-horse-by-lp/assets/fonts/ABCWalterAlte-Normalgrotesk.woff2") format("woff2"),
  url("https://whdev.lpip.com.au/site/wp-content/themes/white-horse-by-lp/assets/fonts//ABCWalterAlte-Normalgrotesk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  ---ss04: "ss04" on;
  --font-size-sm: clamp(12px, 1.6vw, 16px);
  --font-size-md: clamp(18px, 3.33vw, 24px);
  --font-size-md-alt: clamp(14.6px, 3.33vw, 22px);
  --font-size-lg: clamp(24px, 4.5vw, 80px);
  --font-size-xl: clamp(85.33px, 6.66vw, 128px);
}


body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #000;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "ABCWalterAlte", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss04";
  font-size: var(--font-size-sm);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  box-sizing: border-box;
  min-height: 100vh;
  line-height: 1.15;
}

header {
  position: fixed;
  height: 100vh;
  width: 100vw;
  text-align: center;
}

header * {
  pointer-events: none;
  user-select: none;
}

p {
  margin: 0;
}

ul {
  padding:0;
  margin:0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity:0.33;
}

li {
  list-style: none;
  margin: 0 2rem 0 0;
  display: inline-block;
}

li:last-of-type {
  margin:0;
}


nav ul {
  padding: 0;
  z-index: 1;
}


nav {
  justify-content: flex-end;
  /* display: flex; */
  margin: auto 0 1rem;
}

.logo {
  margin: auto;
  width: clamp(75vw, 50vw, 760px);
  z-index: 1;
}

video { 
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s opacity;
  background-color: lightgray;
}

footer {
  margin: 0;
  background-color: white;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: start;
  justify-content: space-between;
}


@media (min-width:769px) {
  footer {
    margin: 0;
    background-color: white;
    z-index: 3;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
  }
  .column:first-of-type {
    grid-column: span 2;
  }
  .column {
    grid-column: span 1;
  }
}

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

/* signup form */

#mc_embed_shell {
  width: 30vw;
}

#mc_embed_signup_scroll {
  display: flex;
  width: 50vw;
  margin: 0 0 .5rem;
  align-items: baseline;
}

@media (min-width:769px) {

  #mc_embed_signup_scroll {
    width: 80%;
  }
}

#mc_embed_signup_scroll input{
  border: 0;
  border-bottom: 1px solid;
  background-color: transparent;
  line-height: 1;
  padding: 0;
}
#mc_embed_signup_scroll input[type=submit]  {
  border: 0;
  padding: 0 6px;
  margin-left: 6px;
  cursor: pointer;
}
#mc_embed_signup_scroll input[type=submit]:hover  {
  opacity: .5;
}
.mc-field-group {
  width: 100%;
}

input, textarea {
  width:100%;
  border: none;
  border-bottom: 1px solid;
  font-weight: inherit;
  font-size: inherit;
  background-color: transparent;
  display: inline-block;
  padding:0;
  margin: 0;
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: 100%;
}

input[type=submit] {
  font-family: inherit;
  margin: auto;
  border: 0;
  padding-left: 10px;
}

input, textarea, select {
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  border-radius: 0;
  border-color: inherit;
}


/* Placeholders */

::-webkit-input-placeholder {
  color: #000;
  font-family: "Pantasia-Regular";
}
::-moz-placeholder {
  color: #000;
 font-family: "Pantasia-Regular";
}
:-ms-input-placeholder {
  color: #000;
 font-family: "Pantasia-Regular";
}
:-moz-placeholder {
  color: #000;
  font-family: "Pantasia-Regular";
}
:focus::-webkit-input-placeholder {
  color: #000;
  animation: breathe 1.666s infinite ease-in;
 font-family: "Pantasia-Regular";
}
:focus:-moz-placeholder {
  color: #000;
  animation: breathe 2s infinite linear;
 font-family: "Pantasia-Regular";
}
:focus::-moz-placeholder {
  color: #000;
  animation: breathe 2s infinite linear;
 font-family: "Pantasia-Regular";

}
:focus:-ms-input-placeholder {
  color: #000;
  animation: breathe 1.666s infinite linear;
 font-family: "Pantasia-Regular";
}

@keyframes breathe {
  0% {
    opacity:.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity:.2;
  }
}



@media (max-width:768px) {
}

/* Helpers from main site */ 
.font-sm, body {
  font-size: var(--font-size-sm);
}

.font-md {
  font-size: var(--font-size-md);
  letter-spacing: -0.05;
}

.font-md-alt {
  font-size: var(--font-size-md-alt);
  letter-spacing: -0.05;
}

.font-lg {
  font-size: var(--font-size-lg);
}

.font-xl {
  font-size: var(--font-size-xl);
}

.font-mono {
  font-family: "Pantasia-Regular";
  font-size: var(--font-size-sm);
  letter-spacing: -0.05;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  color: inherit;
  pointer-events: auto;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease-out all;
}
@media (min-width: 48em) {
  a:hover {
    transition: 0.15s ease-out all;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "ABCWalterAlte", Helvetica, Arial, sans-serif;
  font-weight: inherit;
  font-size: 1em;
  margin: 0 0 1em;
  line-height: 0.98;
}

h1 {
  font-size: var(--font-size-xl);
}

h2 {
  font-size: var(--font-size-lg);
}

h3 {
  margin: 0 0 1em;
}

p {
  margin: 0 0 1em;
}

strong, b {
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  fill: currentColor;
}

figure {
  margin: 0 0 1rem;
}

.transition-fade {
  transition: 0.15s;
  opacity: 1;
}


.left {
  text-align: left;
}

.center {
  text-align: center;
}

.center-xs {
  text-align: center;
}

@media (min-width: 48em) {
  .center-xs {
    text-align: unset;
  }
}
.right {
  text-align: right;
}


.locked {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.uppercase {
  text-transform: uppercase;
}

.border-none {
  border: none;
}

@media (min-width: 769px) {
  .hide-sm, .hide-desktop {
    display: none !important;
  }
  .row.reverse-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
  .hide-desktop.inline {
    display: inline;
  }
  .hide-on-mobile,
.hide-xs {
    display: none !important;
  }
  .no-mobile-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .row.no-mobile-padding {
    margin-left: 0;
    margin-right: 0;
  }
  [class*=col-].no-mobile-padding {
    padding: 0;
  }
  .hide-from-list-view {
    display: none;
  }
  .inline-mobile * {
    display: inline;
  }
}

@keyframes breathe {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

.hide {
  display: none;
}
