/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
@keyframes pulsing {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    top: -5rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInGrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes fadeInTop20 {
  0% {
    opacity: 0;
    top: -2rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    bottom: -5rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes grow {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: all 300ms;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Times", serif;
  overflow-x: hidden;
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: white;
  text-decoration: none;
  transition: all 400ms;
  font-family: "Circular", sans-serif;
  border-bottom: 1px solid white;
}
a:hover {
  border-color: transparent;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #04A4CC;
}

button {
  transition: all 400ms;
  font-family: "Times", serif;
}

p, strong {
  font-size: 1.6rem;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #561714;
  color: #EB5B2A;
  text-shadow: none;
}

::-webkit-selection {
  background: #561714;
  color: #EB5B2A;
  text-shadow: none;
}

::-moz-selection {
  background: #561714;
  color: #EB5B2A;
  text-shadow: none;
}

::placeholder {
  color: #561714;
}

::-moz-placeholder {
  color: #561714;
}

::-webkit-input-placeholder {
  color: #561714;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}
/* Typography */
@font-face {
  font-family: "NeueHelvetica55Roman";
  src: url("../assets/fonts/NeueHelvetica55Roman/normal_normal.woff2") format("woff2"), url("../assets/fonts//NeueHelvetica55Roman/normal_normal.woff") format("woff");
}
@font-face {
  font-family: "TimesItalic";
  src: url("../assets/fonts/TimesCE/italic.otf") format("opentype");
}
@font-face {
  font-family: "Times";
  src: url("../assets/fonts/TimesCE/roman.otf") format("opentype");
}
@font-face {
  font-family: "Circular";
  src: url("../assets/fonts/Circular/book.otf") format("opentype");
}
.is-uppercase {
  text-transform: uppercase;
}

.small {
  font-size: 1.1rem;
}
@media (max-width: 36em) {
  .small {
    font-size: 0.8rem;
  }
}

button, input, select, textarea {
  font-size: initial;
}

/* Containers */
.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.container-xxl {
  max-width: 1600px;
}

.container-xl {
  max-width: 1439px;
}

.container-lg {
  max-width: 1200px;
}

.container-md {
  max-width: 992px;
}

.container-sm {
  max-width: 768px;
}

.container-xs {
  max-width: 576px;
}

/* Positions */
.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

/* Text alignment */
.txt-align-center {
  text-align: center;
}

.txt-align-left {
  text-align: left;
}

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

/* Heights */
.h-100 {
  height: 100%;
}

/* Widths */
.w-100 {
  width: 100%;
}

.w-70 {
  width: 70%;
}

.w-40 {
  width: 40%;
}

@media (max-width: 36em) {
  .w-xs-80 {
    width: 80%;
  }
}

/* Overflow */
.of-h {
  overflow: hidden;
}

/* Display */
.display-none, .d-n {
  display: none !important;
}

.display-flex, .d-flex, .d-f {
  display: flex !important;
}

.display-grid, .d-g {
  display: grid !important;
}

.display-block, .d-b {
  display: block !important;
}

@media (max-width: 36em) {
  .d-xs-b {
    display: block !important;
  }
}

.display-inline-block, .d-ib {
  display: inline-block;
}

/* Flex Justify */
.justify-space-between, .jc-sb {
  justify-content: space-between;
}

.justify-space-evenly, .jc-se {
  justify-content: space-evenly;
}

.fd-c {
  flex-direction: column;
}

@media (max-width: 36em) {
  .fd-xs-c {
    flex-direction: column;
  }
}

/* Flex Align */
.align-items-center, .ai-c {
  align-items: center;
}

/* Flex */
.flex-1 {
  flex: 1;
}

/* Letter Spacing */
.ls-1 {
  letter-spacing: 1px;
}

/* Stick */
.stick {
  position: fixed;
  top: 0px;
}

/* Disabled text */
.txt-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Lazy images */
.lazyImage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAulBMVEUBAAD/AAAIAAD/CgoOAAAZAAAUAAD/BQUeAAAuAAA9AAA4AAAoAAAjAADmAABCAAA0AAD/IiLhAAD/HR3ZAACcAAD/GBj6AADSAAB8AABMAAD/MDD/EhKxAACYAABRAAD/KSm5AACTAAB2AABHAAD1AADGAACBAADxAACkAACJAADqAACrAABqAABmAADJAADBAACgAACFAABhAACNAAC+AABdAABVAADeAADuAACPAABwAADNAAD/OTmppkF+AAAEnklEQVQ4yxSSWbKiQBREb3rVaocuLYrRAkQQZFIBh6c+3f+22v4/kZGRechNbJQFlCxMAz/UCgmcxc2PplGfUus/17GM6A1ixYbxNh4nyN0QbJKk4vGiW23XfUl3JaY3a9ZXpLv8C3o5bChlBAD2crP7gRevljwc5uF8PkOwpBwGENoqFbzE9wXsHAfndR0v7Ivj8IGGArMsdQjQBRpICJw/D0hPQDMdCntU7FoK4mB6Kfbjm0MKsJIzyqeCAD4MYyMclnF7GeVytXH4OlsVp1NFpuNQPjnJAeWVLBl2aHmH/T5ajTa7YVqb6wjRMKazr6VWLPEFlGA0XmlPAj8YZWKgtP3Zds2J6tAmGGbz0AkERIKQ4XVWvBnO0aSUVeZYv3Q439M5k4IE+N2EGq5i92kJuF22bVHPf1s/iKLXMVCX8Z3gGm1KIfOQhftN+3RAn8pqWw2LALtDulvM7hwQicIufcl4iI/+svwwrMax9ibZrtzc7Drz385o3d8o6TQAu9M+5wY6tAyzM+mbFcVDRQGL+WZop45FFnOBhxuqEMyWZ5Xyq8mJdvpwOe7qbfq4/Vm3Ed1IMIuELSMA8WQoDe0u85jix2tq8y8dq/h0FacRcXNOGI1A8u0HlUt8MGvDLA2e6ThtuI34ulxFR2IhE9dK4AowXKiQDV++Mx+nM3tNO29Wbbmjy4NcV8NjwPw/uysB9jT29CrmVJ8D6hGsaxnse7JYg23gLUOPn57yuFHBs15ucFz99tmktn+WDn4mpBIIZpYAc6k/sLSLReYG9z33yxj239p+kVPu/7VAbstpA0EQbcazy17ZNbGwUFlSdAGZi0QAAQ74/78ruCozD/3S1ae60WWP2bfdv3Z5dah8Nhb6vjLwUrA0FkAEICIIG+N3SYH1e8rnlwZfv26uEMozNMkAAUQjYgZCmtz7MDm779SKzecEf+Z7a6Ad2HtuFQzARkZG9lisOF0V4u3bJZd5GPvF8EQDUEYwe7awkF7gFm7vOdl89Nm7Dvnp2NsNNMhLTSyUAbyQrSK89uYz7Xi9+zMM60I1Se1L0k4qBCtF6ZWDFnDAZr/vj3X5SNdreZ1n1PxdNrE0IBUzR8/DzdmoCPpldkZXDQiHZFkv0qap6owUZwrOEgKJoDRZgdE3023sdje1qe7YFwMvLxw9iEoQ8FPcsmwFft9MUdX2a1d3b2NANt25B6CZACfV06MiGSEJ6T3gre6w/FWKyUeHR7KFVWQIlkxQpIRUioigq4WVp7+nWzmJy6ZKaD6pQoRgAy0oMHEU0nmgl4fLJSabkI3znK650fnIgrQiKp10gpSFgDb4sLS6X4/Dep5tpydznZ3p3Skd9Q+dgPD8H0Uzv+abw+F8mlt8TmvXX7ajapm11ELBe20ZpAIwJHmESY+yfPGqeSlj330Tac9MQGuRUZSsgoQXyeEo0sXZZdUXZ/MW5ZYGeND/kRhCkG8xOdvL683luzsdZrV/24xZ6lmXTy4JVuRaGDA59OtlO6z25fWjeGwXZyoO/UAeAEmwN2z0c56oJGQx7a6zWaRkNru2K0/baWjxzIJjQEoARND8D7+tgCt2HKJNAAAAAElFTkSuQmCC") center center repeat;
  opacity: 0;
  transition: opacity 0.5s;
}

.lazyImageWaiting:before {
  opacity: 1;
  transition: opacity 0s;
}

.lazyImageError img,
.lazyImageWaiting img {
  opacity: 0;
  transform: scale(0);
  transition: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Paddings */
.p-0 {
  padding: 0;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-11 {
  padding-top: 11rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pt-8 {
  padding-top: 8rem;
}

@media (max-width: 48em) {
  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 1rem !important;
  }

  .pt-sm-2 {
    padding-top: 2rem !important;
  }

  .pt-sm-3 {
    padding-top: 3rem !important;
  }

  .pt-sm-4 {
    padding-top: 4rem !important;
  }

  .pt-sm-5 {
    padding-top: 5rem !important;
  }

  .pt-sm-6 {
    padding-top: 6rem;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

@media (max-width: 48em) {
  .pl-sm-0 {
    padding-left: 0;
  }

  .pl-sm-1 {
    padding-left: 1rem;
  }

  .pl-sm-2 {
    padding-left: 2rem;
  }

  .pl-sm-3 {
    padding-left: 3rem;
  }

  .pl-sm-4 {
    padding-left: 4rem;
  }

  .pl-sm-5 {
    padding-left: 5rem;
  }

  .pl-sm-6 {
    padding-left: 6rem;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

@media (max-width: 48em) {
  .pr-sm-0 {
    padding-right: 0;
  }

  .pr-sm-1 {
    padding-right: 1rem;
  }

  .pr-sm-2 {
    padding-right: 2rem;
  }

  .pr-sm-3 {
    padding-right: 3rem;
  }

  .pr-sm-4 {
    padding-right: 4rem;
  }
}
.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

@media (max-width: 48em) {
  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pb-sm-1 {
    padding-bottom: 1rem;
  }

  .pb-sm-2 {
    padding-bottom: 2rem;
  }

  .pb-sm-3 {
    padding-bottom: 3rem;
  }

  .pb-sm-4 {
    padding-bottom: 4rem;
  }

  .pb-sm-5 {
    padding-bottom: 5rem;
  }

  .pb-sm-6 {
    padding-bottom: 6rem;
  }
}
/* Margins */
.m-auto {
  margin: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-10 {
  margin-top: 10rem;
}

@media (max-width: 36em) {
  .mt-xs-0 {
    margin-top: 0;
  }

  .mt-xs-1 {
    margin-top: 1rem;
  }

  .mt-xs-2 {
    margin-top: 2rem;
  }

  .mt-xs-3 {
    margin-top: 3rem;
  }

  .mt-xs-4 {
    margin-top: 4rem;
  }
}
.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

@media (max-width: 36em) {
  .mb-xs-0 {
    margin-bottom: 0;
  }

  .mb-xs-1 {
    margin-bottom: 1rem;
  }

  .mb-xs-2 {
    margin-bottom: 2rem;
  }
}
.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 1 !important;
}

.ml-2 {
  margin-left: 2 !important;
}

.ml-3 {
  margin-left: 3 !important;
}

body {
  color: white;
  margin: 0;
  position: relative;
  font-family: "Times", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  height: 100%;
  padding-bottom: 0;
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 20;
  transition: all 200ms;
  opacity: 1;
  background-color: rgba(237, 84, 33, 0.3);
}
body main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: calc(100vh - 7rem);
  z-index: 10;
  transition: all 2000ms;
}
body main section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
body main section * {
  z-index: 1;
}
body main section::after {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: 0;
  background-image: url("../assets/img/flower-bg.png");
  transform: rotate(30deg);
  opacity: 0.2;
  mix-blend-mode: screen;
}
body main section.build-with-vision {
  padding-bottom: 12rem;
  background-color: #561714;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 48em) {
  body main section.build-with-vision {
    padding-bottom: 8rem;
    padding-top: 2rem;
    gap: 2rem;
  }
}
body main section.build-with-vision .lvi-logo {
  max-width: 24rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 62em) {
  body main section.build-with-vision .lvi-logo {
    max-width: 19rem;
  }
}
body main section.leading-vibe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12rem 0;
  background-color: #EB5B2A;
}
@media (max-width: 48em) {
  body main section.leading-vibe {
    padding: 7rem 0;
  }
}
body main section.leading-vibe .tems-bw {
  max-width: 25vw;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  margin: auto;
}
@media (max-width: 62em) {
  body main section.leading-vibe .tems-bw {
    max-width: 50vw;
  }
}
@media (max-width: 62em) {
  body main section.leading-vibe .tems-bw {
    max-width: 65vw;
  }
}
body main section.leading-vibe p {
  font-size: 1.6vw;
}
@media (max-width: 62em) {
  body main section.leading-vibe p {
    font-size: 1.9rem;
  }
}
body main section.leading-vibe p:first-of-type {
  position: relative;
}
body main section.leading-vibe p:first-of-type #learnMoreContent {
  position: absolute;
  top: -50rem;
}
@media (max-width: 36em) {
  body main section.leading-vibe p:first-of-type #learnMoreContent {
    top: -40rem;
  }
}
body main section#applyNow {
  background-color: #561714;
  padding: 12rem 0;
}
body main section#applyNow p {
  font-size: 1.6vw;
}
@media (max-width: 62em) {
  body main section#applyNow p {
    font-size: 1.9rem;
  }
}
body main section#applyNow p:first-of-type {
  position: relative;
}
body main section#applyNow p:first-of-type #learnMoreContent {
  position: absolute;
  top: -50rem;
}
@media (max-width: 36em) {
  body main section#applyNow p:first-of-type #learnMoreContent {
    top: -40rem;
  }
}
body main section#stayConnected {
  background-color: #561714;
  padding: 12rem 0;
}
body main section#stayConnected p {
  font-size: 1.6vw;
}
@media (max-width: 62em) {
  body main section#stayConnected p {
    font-size: 1.9rem;
  }
}
body main section#stayConnected p:first-of-type {
  position: relative;
}
body main section#stayConnected p:first-of-type #learnMoreContent {
  position: absolute;
  top: -50rem;
}
@media (max-width: 36em) {
  body main section#stayConnected p:first-of-type #learnMoreContent {
    top: -40rem;
  }
}
body main section .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 62em) {
  body main section .container {
    gap: 3rem;
  }
}
body main h1 {
  text-align: left;
  font-family: "Times", serif;
  font-weight: lighter;
  font-size: 5.4vw;
  line-height: 1.3cap;
  margin: 0;
}
@media (max-width: 36em) {
  body main h1 {
    font-size: 11.5vw;
  }
}
body main h1 span {
  font-family: "TimesItalic", serif;
  font-style: italic;
  display: block;
  color: #EB5B2A;
}
body main h2 {
  text-align: left;
  font-family: "TimesItalic", serif;
  font-style: italic;
  font-weight: lighter;
  font-size: 4vw;
  line-height: 1.3cap;
  margin: 0;
}
@media (max-width: 36em) {
  body main h2 {
    font-size: 11vw;
  }
}
body main h3 {
  text-align: left;
  font-family: "Circular", sans-serif;
  font-weight: bold;
  font-size: 2vw;
  line-height: 1.3cap;
  margin: 0;
}
@media (max-width: 36em) {
  body main h3 {
    font-size: 10vw;
  }
}
body main p {
  font-family: "Circular", sans-serif;
  font-size: 2vw;
  margin: 0;
}
@media (max-width: 36em) {
  body main p {
    font-size: 2.4rem;
  }
}
body main .cta-container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
@media (max-width: 62em) {
  body main .cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
body main .cta-container a,
body main .cta-container button {
  background-color: #D9D9D9;
  color: #561714;
  font-family: "Circular", sans-serif;
  text-transform: uppercase;
  font-size: 1.9rem;
  padding: 1rem 3rem;
  border-radius: 99px;
  border: 2px solid #D9D9D9;
}
body main .cta-container a:hover,
body main .cta-container button:hover {
  background-color: #561714;
  color: #D9D9D9;
}
body main button#listenTrigger {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #EB5B2A;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: lighter;
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem 2rem;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1.1s;
  transition: all 300ms;
  min-width: 17.5rem;
}
body main button#listenTrigger:hover {
  background-color: #ed7621;
}
body main button#listenTrigger.hidden {
  animation: fadeOut 1.5s ease forwards;
  pointer-events: none;
}
body main .video-container {
  position: relative;
  overflow: hidden;
  background-color: black;
  display: flex;
  max-width: 132rem;
  justify-content: center;
  align-content: center;
  width: 100%;
  z-index: 1;
  aspect-ratio: 16/9;
  border-radius: 50px;
  overflow: hidden;
}
body main .video-container #toggle-sound {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 4rem;
  right: 4rem;
  background-color: transparent;
  border: none;
  z-index: 10;
  cursor: pointer;
  background-image: url("../assets/img/icons/sound-on.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-color: #EB5B2A;
  border-radius: 99px;
}
body main .video-container #toggle-sound.unmute {
  background-image: url("../assets/img/icons/sound-off.svg");
}
@media (max-width: 36em) {
  body main .video-container #toggle-sound {
    top: 2rem;
    right: 2rem;
  }
}
@media (max-width: 36em) {
  body main .video-container {
    aspect-ratio: initial;
    height: 80vh;
  }
}
body main .video-container video {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100%;
  min-width: 100%;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
body main .video-container video.video-desktop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 36em) {
  body main .video-container video.video-desktop {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
  }
}
body main .video-container video.video-mobile {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
}
@media (max-width: 36em) {
  body main .video-container video.video-mobile {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: initial;
    width: 100%;
  }
}
body::before {
  transition: all 200ms;
}
body .d-only {
  display: flex !important;
  opacity: 1;
}
@media (max-width: 36em) {
  body .d-only {
    display: none !important;
    opacity: 0;
  }
}
body .m-only {
  display: none !important;
  opacity: 0;
}
@media (max-width: 36em) {
  body .m-only {
    display: flex !important;
    opacity: 1;
  }
}
body .ae-modal-overlay-closed,
body .ae-modal-closed {
  display: none;
}

body > header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.8rem 5rem 0 5rem;
  opacity: 0;
  position: relative;
  top: -5rem;
  animation: fadeInTop 1s ease forwards;
  animation-delay: 1s;
}
@media (max-width: 62em) {
  body > header {
    flex-direction: column;
    padding: 2.8rem 2rem 0 2rem;
    align-items: center;
  }
}
body > header .logo {
  width: 35rem;
  height: 13.6rem;
  background-image: url("../assets/img/Audrey_pink.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 36em) {
  body > header .logo {
    height: 12.6rem;
    width: 100%;
  }
}
body > header button#playPauseBtn {
  transform: translateX(0);
  border: none;
  min-width: 23px;
  max-width: 23px;
  width: 100%;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  background-image: url("../assets/img/icons/sound-on.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  z-index: 1000;
  padding: 0;
}
body > header button#playPauseBtn.is-on {
  background-image: url("../assets/img/icons/sound-off.svg");
}
@media (max-width: 62em) {
  body > header button#playPauseBtn {
    position: absolute;
    top: 1.7rem;
    right: 1.7rem;
    min-width: 20px;
    max-width: 20px;
    width: 100%;
    height: 19px;
  }
}
body > header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  opacity: 1;
}
@media (max-width: 62em) {
  body > header nav {
    width: 100%;
    justify-content: space-between;
  }
}
body > header nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 5rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 62em) {
  body > header nav ul {
    justify-content: space-between;
  }
}
@media (max-width: 62em) {
  body > header nav .social {
    display: none;
  }
}
body > header nav .social img {
  min-width: 18px;
}
body.not-signed-up > header .logo {
  background-image: url("../assets/img/Audrey_Yellow.webp");
}
body.not-signed-up > header button#playPauseBtn {
  transform: translateX(21rem);
}
@media (max-width: 62em) {
  body.not-signed-up > header button#playPauseBtn {
    transform: translate(0);
  }
}
@media (max-width: 62em) {
  body.not-signed-up > header nav {
    opacity: 0;
  }
}
body.not-signed-up > header nav ul {
  overflow: hidden;
}
body.not-signed-up > header nav ul li {
  transform: translateX(15rem);
}
@media (max-width: 62em) {
  body.not-signed-up > header nav ul li {
    transform: translate(0);
  }
}
.btn {
  background-color: #D9D9D9;
  color: #561714;
  font-family: "Circular", sans-serif;
  text-transform: uppercase;
  font-size: 1.9rem;
  padding: 1rem 3rem;
  border-radius: 99px;
  border: 2px solid #D9D9D9;
  cursor: pointer;
}
.btn:hover {
  background-color: #561714;
  color: #D9D9D9;
}
.btn svg path {
  transition: all 200ms;
}
.btn i {
  font-size: 2.4rem;
}
.btn.btn-secondary {
  background-color: transparent;
  color: #a03700;
  border-color: #a03700;
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.social a {
  margin: 0 0 0 0.7rem;
  color: var(--clr-light);
}
.social a:hover {
  opacity: 0.8;
}
.social a.rca-icon img {
  fill: white;
  width: 22px;
  max-height: 22px;
}
.social a span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 75em) {
  .social {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 36em) {
  .social {
    min-width: inherit;
    margin-bottom: 0;
  }
}

.modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  min-height: 15rem;
  max-width: 32rem;
  width: 100%;
  z-index: 100;
  transition: all 300ms;
  gap: 2rem;
  padding: 2rem;
  background-color: #EB5B2A;
  border: 1px solid #EBD632;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
}
.modal h2 {
  font-family: "Circular", sans-serif;
  text-align: center;
  font-size: 3.4rem;
}
@media (max-width: 36em) {
  .modal h2 {
    font-size: 2.6rem;
  }
}
.modal h3 {
  font-family: "Circular", sans-serif;
  text-align: center;
  font-size: 2.5rem;
}
@media (max-width: 36em) {
  .modal h3 {
    font-size: 2rem;
  }
}
.modal .cta-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 0;
  width: 2.1rem;
  height: 2.1rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #EB5B2A;
}
.modal .btn-close svg {
  width: 100%;
}
.modal .btn-close:hover {
  transform: rotate(90deg);
}
.modal#mailing-modal {
  max-width: 72rem;
  min-height: 30vh;
}
@media (max-width: 36em) {
  .modal#mailing-modal {
    max-width: 90%;
  }
}
.modal#mailing-modal p {
  font-size: 1.8rem;
  font-family: "Circular", sans-serif;
}

body footer {
  border-top: 0;
  color: white;
  width: 100%;
  font-size: 0.8rem;
  position: relative;
  padding: 2rem 2rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.5rem;
  z-index: 10;
  background-color: #EB5B2A;
}
@media (max-width: 62em) {
  body footer {
    padding: 0.5rem 2rem 1rem 2rem;
    height: initial;
    flex-direction: column;
  }
}
body footer p.disclaimer {
  display: none;
}
body footer p.disclaimer .not-signed-up {
  display: flex;
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 50rem;
  text-align: center;
}
body footer a {
  border-bottom: none;
}
body footer .legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 62em) {
  body footer .legal {
    text-align: center;
    align-items: center;
  }
}
body footer .legal .logos {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 3rem;
}
body footer .legal .logos .rca {
  width: 3rem;
}
body footer .legal .logos .rca img {
  width: 100%;
}
body footer .legal .disclaimer {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.9rem;
  color: white;
  width: 100%;
  text-align: left;
}
@media (max-width: 62em) {
  body footer .legal .disclaimer {
    text-align: center;
    max-width: 40rem;
  }
}
body footer .legal .disclaimer p, body footer .legal .disclaimer a {
  font-size: 0.9rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  color: white;
  margin-bottom: 0;
}
body footer .legal .rca {
  display: flex;
  max-width: 7rem;
  width: 100%;
}
body footer .legal .rca img {
  width: 100%;
}
body footer .signup-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 62em) {
  body footer .signup-container {
    flex-direction: column;
    align-items: center;
  }
}
body footer .signup-container form {
  display: flex;
}
body footer .signup-container form input[type=email] {
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  background-color: transparent;
  color: white;
  padding: 0.5rem 0;
  height: 2.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 1rem;
  width: 13rem;
}
body footer .signup-container form button {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
}
body footer .signup-container form button:hover {
  background-color: white;
  color: #EB5B2A;
}
body footer .signup-container .disclaimer {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.9rem;
  color: white;
  width: 100%;
  text-align: left;
}
@media (max-width: 62em) {
  body footer .signup-container .disclaimer {
    text-align: center;
    max-width: 40rem;
  }
}
body footer .social {
  max-width: fit-content;
}

.form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  width: 100%;
}
.form-container form label {
  display: none;
}
.form-container form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}
.form-container form .form-group input[type=email] {
  border: 1px solid #EB5B2A;
  border-radius: 0;
  background-color: #EBD632;
  color: #EB5B2A;
  padding: 0.5rem 0;
  height: 2.8rem;
  font-family: "Times", serif;
  font-size: 1.5rem;
  width: 100%;
}
.form-container form button {
  background-color: transparent;
  border: 1px solid #EB5B2A;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: "Times", serif;
  font-weight: 400;
  text-transform: lowercase;
  padding: 0.5rem 1.4rem;
}
.form-container form button:hover {
  background-color: #EBD632;
  color: #EB5B2A;
}

.signup-container .input-group.checkbox-container {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 1.4rem;
  text-align: left;
  width: 100%;
  /* Create a custom checkbox */
}
.signup-container .input-group.checkbox-container input#guidelines_email {
  background-color: #EBD632;
  border: 1px solid #EB5B2A;
}
.signup-container .input-group.checkbox-container .container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 6px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.signup-container .input-group.checkbox-container .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.signup-container .input-group.checkbox-container .container input:checked ~ .checkmark {
  background-color: #EB5B2A;
}
.signup-container .input-group.checkbox-container .container input:checked ~ .checkmark::after {
  display: block;
}
.signup-container .input-group.checkbox-container .container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #EB5B2A;
}
.signup-container .input-group.checkbox-container .container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #EBD632;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.signup-container .input-group.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.signup-container .input-group.checkbox-container a {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 1.4rem;
  color: #EB5B2A;
  text-decoration: underline;
}
.signup-container .input-group.checkbox-container .checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
.signup-container .input-group.checkbox-container .checkbox label span {
  font-size: 1.4rem;
}

::placeholder {
  font-family: "HelveticaNeue55Roman", sans-serif;
  color: white;
  opacity: 0.6;
}

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