/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
*/
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body {
  font-family: "futura-pt", sans-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: color 0.3s;
  font-size: 1.6rem;
  font-family: "futura-pt", sans-serif;
}

a:focus {
  outline: 0;
}

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

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

p {
  font-size: 1.6rem;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

/*------------------------------------*\
    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 */
.is-uppercase {
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}

h1, .h1, h1 *, .h1 * {
  font-size: 5.8rem;
  margin: 5rem 0;
}
@media (max-width: 75em) {
  h1, .h1, h1 *, .h1 * {
    font-size: 6vw;
  }
}

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

.small, .small * {
  font-size: 1.4rem;
}

.super-small, .super-small * {
  font-size: 1.2rem;
}

.lg-text, .lg-text * {
  font-size: 1.8rem;
}

.xxl-text, .xxl-text * {
  font-size: 2.4rem;
}
@media (max-width: 36em) {
  .xxl-text, .xxl-text * {
    font-size: 1.8rem;
  }
}

/* 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;
}
@media (max-width: 48em) {
  .container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
    padding: 0 3rem;
  }
}
@media (max-width: 36em) {
  .container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
    padding: 0;
  }
}

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

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

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

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

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

.container-xl-h {
  max-width: 70rem;
  text-align: left;
  padding: 0 1.5rem;
}
@media (max-width: 36em) {
  .container-xl-h {
    padding: 0 3rem;
  }
}
.container-xl-h.container-h-l {
  margin-left: auto;
}
@media (max-width: 62em) {
  .container-xl-h.container-h-l {
    margin: auto;
  }
}
.container-xl-h.container-h-r {
  padding-left: 13rem;
}
@media (max-width: 75em) {
  .container-xl-h.container-h-r {
    padding-left: 4rem;
  }
}
@media (max-width: 36em) {
  .container-xl-h.container-h-r {
    padding-left: 3rem;
  }
}

/* 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;
}

.flex-075 {
  flex: 0.75;
}
@media (max-width: 75em) {
  .flex-075 {
    flex: 1;
  }
}
.flex-075 .container-xl-h.container-h-l {
  max-width: 56rem;
  padding: 0 3rem 0 1.5rem;
}
@media (max-width: 36em) {
  .flex-075 .container-xl-h.container-h-l {
    padding: 0 2.5rem;
  }
}

/* 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;
}

body {
  color: white;
  background-color: black;
}
body main h1, body main h1 * {
  position: relative;
  text-align: center;
  margin: auto;
  z-index: 1;
  text-transform: uppercase;
  margin-top: 4%;
}
body main h1 span.is-black, body main h1 * span.is-black {
  color: black;
}
body main h1 span.is-red, body main h1 * span.is-red {
  color: #DD2F3D;
}
body main h1 span.is-white, body main h1 * span.is-white {
  color: white;
}
@media (max-width: 87.5em) {
  body main h1, body main h1 * {
    margin-bottom: 5rem;
    margin-top: 4%;
  }
}
@media (max-width: 36em) {
  body main h1, body main h1 * {
    margin-top: 26%;
  }
}
body main .main-bg {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  padding-bottom: 50%;
  background-size: cover;
}
@media (max-width: 75em) {
  body main .main-bg {
    position: relative;
    max-width: 90%;
    margin: auto;
    height: fit-content;
    height: -moz-fit-content;
  }
}
@media (max-width: 75em) {
  body {
    background-color: #848484;
  }
}

footer {
  height: 31.3rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
  color: #FEFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 4rem 3.6rem 4rem;
}
footer a {
  transition: all 500ms;
}
footer a:hover {
  opacity: 0.8;
}
footer .rca {
  min-width: 32rem;
  grid-area: rca;
  width: 40rem;
}
footer .rca #logo {
  font-size: 0;
  width: 4.4rem;
  height: 1.3rem;
  display: inline-block;
  position: relative;
}
footer .rca #logo::after {
  content: url("../img/rca.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
footer .rca .disclaimer p, footer .rca .disclaimer p * {
  font-size: 0.8rem;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media (max-width: 75em) {
  footer .rca {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 36em) {
  footer .rca {
    min-width: inherit;
  }
}
footer .cta-section {
  position: relative;
  text-align: center;
  z-index: 1;
  bottom: 0;
  min-width: 32rem;
  display: flex;
  gap: 3.5rem;
  grid-area: cta;
  width: 40rem;
  justify-content: center;
}
footer .cta-section a {
  font-size: 3.4rem;
  opacity: 0.8;
  text-transform: uppercase;
  border-bottom: 1px solid #FEFFFF;
  margin-bottom: 0.5rem;
}
footer .cta-section a:hover {
  opacity: 1;
}
@media (max-width: 87.5em) {
  footer .cta-section a {
    font-size: 3rem;
  }
}
@media (max-width: 36em) {
  footer .cta-section a {
    font-size: 2.4rem;
  }
}
@media (max-width: 75em) {
  footer .cta-section {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 87.5em) {
  footer .cta-section {
    min-width: inherit;
    gap: 2rem;
  }
}
footer .social {
  min-width: 32rem;
  text-align: right;
  grid-area: social;
  width: 40rem;
}
footer .social a {
  margin: 0 0.5rem;
}
@media (max-width: 36em) {
  footer .social a {
    font-size: 2.2rem;
  }
}
footer .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) {
  footer .social {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 36em) {
  footer .social {
    min-width: inherit;
  }
}
@media (max-width: 75em) {
  footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "cta" "social" "rca";
    gap: 2rem;
    height: inherit;
    background: none;
  }
}
@media (max-width: 36em) {
  footer {
    padding: 0 2rem 3.6rem 2rem;
  }
}

main h1 {
  --animate-delay: .5s;
}
main .main-bg {
  --animate-delay: .5s;
}

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