/*
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 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);
  }
}
*,
*: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: "MainRegular", 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: all 400ms;
  font-size: 1.6rem;
  font-family: "MainRegular", sans-serif;
}

a:focus {
  outline: 0;
}

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

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

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

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

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: black;
  color: white;
  text-shadow: none;
}

::-webkit-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::placeholder {
  color: white;
}

::-moz-placeholder {
  color: white;
}

::-webkit-input-placeholder {
  color: white;
}

/*------------------------------------*\
    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: "HelveticaNeue55Roman";
  src: url("../assets/fonts/HelveticaNeue55Roman/roman.otf") format("opentype");
}
@font-face {
  font-family: "MainThin";
  src: url("../assets/fonts/SukhumvitSet/SukhumvitSet-thin.ttf") format("truetype");
}
@font-face {
  font-family: "MainRegular";
  src: url("../assets/fonts/SukhumvitSet/SukhumvitSet-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "MainBold";
  src: url("../assets/fonts/SukhumvitSet/SukhumvitSet-Bold.ttf") format("truetype");
}
.is-uppercase {
  text-transform: uppercase;
}

.is-lowercase {
  text-transform: lowercase;
}

.small {
  font-size: 1.1rem;
}
@media only screen and (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 only screen and (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 only screen and (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 only screen and (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;
}

.sr {
  border: 0;
  height: 1px;
  left: -99999px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

.responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

/* 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 only screen and (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 only screen and (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 only screen and (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 only screen and (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 only screen and (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 only screen and (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;
}

@font-face {
  font-family: "DIN";
  src: url("../assets/fonts/DIN-Regular.woff2") format("woff2"), url("../assets/fonts/DIN-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: #a4a89b;
  background-image: -webkit-gradient(linear, right top, left top, from(#a4a89b00), color-stop(#a4a89bFF), to(#a4a89bFF)), url("../assets/img/car-bg.webp");
  background-image: linear-gradient(to left, #a4a89b00, #a4a89bFF, #a4a89bFF), url("../assets/img/car-bg.webp");
  background-position: left center, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 60% auto, auto 100%;
  background-attachment: scroll, fixed;
  font-family: "DIN", Helvetica, Arial, sans-serif;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  body {
    background-image: none;
  }
}
body a,
body a:link,
body a:visited {
  color: #fff;
}

body a:active,
body a:focus,
body a:hover,
body a:link:active,
body a:link:focus,
body a:link:hover,
body a:visited:active,
body a:visited:focus,
body a:visited:hover {
  color: #000;
}

body .btn-blue {
  background: none;
  background-color: #da3a54;
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 26px;
  font-weight: normal;
  letter-spacing: 0.3em;
  line-height: 1em;
  margin: 0 auto 30px;
  max-width: 100%;
  padding: 25px;
  text-align: center;
  text-indent: 0.15em;
  text-transform: uppercase;
  width: 430px;
}

@media only screen and (max-width: 991px) {
  body .btn-blue {
    font-size: 20px;
  }
}
body .btn-blue:active,
body .btn-blue:focus,
body .btn-blue:hover {
  background-color: #fff;
  border-color: #0e87ba;
  color: #0e87ba !important;
}

body .btn-blue.wide {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  display: block;
  margin: 1em auto;
  width: 100%;
  max-width: 400px;
}

@media only screen and (max-width: 991px) {
  body .btn-blue.wide {
    font-size: 18px;
    line-height: 1em;
  }
}
body .btn-white {
  background: none;
  background-color: #fff;
  border: 1px solid #fff;
  color: #000 !important;
  display: inline-block;
  font-size: 17px;
  font-weight: normal;
  line-height: 1em;
  padding: 18px 15px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  width: calc(33% - 4px);
}

@media only screen and (max-width: 1299px) {
  body .btn-white {
    font-size: 14px;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 1199px) {
  body .btn-white {
    font-size: 18px;
    padding: 17px 15px;
  }
}
@media only screen and (max-width: 991px) {
  body .btn-white {
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
    width: 280px;
  }
}
body .btn-white.small {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  padding: 9px 15px 6px;
}

@media only screen and (max-width: 991px) {
  body .btn-white.small {
    font-size: 18px;
    line-height: 1em;
    padding: 17px 15px;
  }
}
body .btn-white:active,
body .btn-white:focus,
body .btn-white:hover {
  background-color: #da3a54;
  color: #fff !important;
}

body > main {
  padding: 95px 0 110px;
}

body > main .mobile {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) {
  body > main .mobile {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  body > main {
    padding: 30px 0;
  }
}
body > main .container {
  max-width: 1292px;
}

body > main .left-col {
  width: 45%;
}

@media only screen and (max-width: 1199px) {
  body > main .left-col {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
}
body > main .left-col h1 {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  body > main .left-col h1 {
    margin-bottom: 30px;
  }
}
body > main .left-col h1 img {
  margin: 0 auto;
}

body > main .left-col h2 {
  margin-bottom: 32px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  body > main .left-col h2 {
    margin-bottom: 30px;
  }
}
body > main .left-col h2 img {
  margin: 0 auto;
}

body > main .left-col p.primary {
  font-size: 20px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  body > main .left-col p.primary {
    font-size: 16px;
  }
}
body > main .left-col p.secondary {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
  body > main .left-col p.secondary {
    margin-bottom: 30px;
  }
}
body > main .left-col p.note {
  font-size: 14px;
  line-height: 1.4em;
  margin-bottom: 30px;
  font-style: italic;
}

@media only screen and (max-width: 991px) {
  body > main .left-col p.note {
    margin-bottom: 20px;
  }
}
body > footer {
  background: #da3a54 url("../assets/img/noise-red.png") 0 0 repeat;
  padding: 30px 0;
}

body > footer p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.6em;
  margin-bottom: 0;
  text-align: center;
  text-indent: 0.1em;
  text-transform: uppercase;
}

body > header {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  animation-delay: 1s;
  height: 13rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 62em) {
  body > header {
    height: 17rem;
  }
}
@media only screen and (max-width: 36em) {
  body > header {
    height: 20rem;
  }
}
body > header .top-content {
  position: absolute;
  top: 0;
  max-width: 112rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 1.5rem 0 1.5rem;
}
@media only screen and (max-width: 62em) {
  body > header .top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
body > header .top-content h1 {
  font-size: 5rem;
  font-family: "MainThin", sans-serif;
  font-weight: lighter;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 62em) {
  body > header .top-content h1 {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 4px;
  }
}
body > header .top-content h1 a {
  font-size: inherit;
  font-family: inherit;
}
body > header .top-content nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 62em) {
  body > header .top-content nav .social {
    justify-content: center;
  }
}
body > header .top-content nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 3rem;
  row-gap: 0.3rem;
}
@media only screen and (max-width: 62em) {
  body > header .top-content nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 62em) {
  body > header .top-content nav ul li {
    text-align: center;
  }
}
body > header .top-content nav ul li a, body > header .top-content nav ul li button {
  font-family: "MainRegular", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: 0;
  opacity: 1;
}
body > header .top-content nav ul li a:hover, body > header .top-content nav ul li button:hover {
  opacity: 0.6;
}
body > header .top-content nav ul li.current a {
  opacity: 1;
}
body > header a.home-header-album-container {
  max-width: 70rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container .thumbnail-container {
    max-width: 17rem;
  }
}
body > header a.home-header-album-container .cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
body > header a.home-header-album-container .cta-container span {
  font-size: 4rem;
  font-family: "MainThin", sans-serif;
  padding: 0rem 4rem;
  text-transform: uppercase;
  background-color: #9dcac5;
  color: white;
  border-radius: 20px;
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container .cta-container span {
    font-size: 2.2rem;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container .cta-container img {
    max-width: 17rem;
  }
}
body > header a.home-header-album-container:hover .cta-container span {
  box-shadow: 5px 5px 10px #000000c2;
  background-color: #5f8782;
}
body#home > header {
  height: 90vh;
  height: 90svh;
  background-image: url("../assets/img/header_bg.webp");
  background-size: cover;
}
@media only screen and (max-width: 62em) {
  body#home > header {
    height: 100vh;
    height: 100svh;
    padding-top: 40%;
  }
}

.btn {
  font-family: "MainBold", sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  height: 4rem;
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem 2.5rem 0.5rem 2.5rem;
}
.btn-sm {
  border-radius: 3px;
  height: 2.6rem;
  padding: 0.7rem 1.4rem 0.2rem 1.4rem;
}
.btn svg {
  max-width: 1.9rem;
}
.btn svg path {
  transition: all 200ms;
}
.btn img {
  max-width: 1.9rem;
  margin-top: -4px;
}
.btn span {
  text-wrap-mode: nowrap;
}
.btn i {
  font-size: 2.4rem;
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.social:hover a {
  opacity: 0.5;
}
.social a {
  margin: 0;
  color: var(--clr-light);
}
.social a:hover {
  opacity: 1;
}
.social a.rca-icon img {
  fill: white;
  width: 21px;
  max-height: 21px;
}
.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 only screen and (max-width: 75em) {
  .social {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (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: 1000;
  background-color: #272727;
  transition: all 300ms;
  gap: 1rem;
  padding: 2rem;
  border-radius: 5px;
  border: 1px solid white;
}
@media only screen and (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
}
.modal h2 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.2cap;
  color: white;
  margin: 0;
  font-weight: 600;
  text-transform: initial;
  text-wrap: balance;
}
.modal a {
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: lowercase;
  color: white;
  display: block;
  text-decoration: underline;
}
.modal a.btn {
  font-family: "MainRegular", sans-serif;
  color: white;
  background-color: transparent;
  border: 1px solid white;
  text-decoration: none;
  display: flex;
  padding: 1rem;
  text-transform: uppercase;
}
.modal a.btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.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;
  max-width: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
}
.modal .btn-close svg {
  width: 100%;
}

footer {
  border-top: 0;
  color: white;
  width: 100%;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  position: relative;
  bottom: -5rem;
  animation: fadeInBottom 1s ease forwards;
  animation-delay: 1s;
  padding: 2rem 6rem 2.5rem 6rem;
  align-items: end;
  background-color: #1b1b1b;
  background-image: url("../assets/img/noise-red.png");
}
footer .legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  align-content: center;
  justify-items: center;
  justify-content: center;
  max-width: 65%;
  margin: auto;
}
footer .legal .logos {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 6.9rem;
}
footer .legal .logos .rca {
  width: 6.9rem;
}
footer .legal .logos .rca img {
  width: 100%;
}
footer .legal .disclaimer {
  text-align: center;
  font-family: "DIN", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: white;
  width: 100%;
  padding: 0;
}
footer .legal .disclaimer p, footer .legal .disclaimer a {
  font-size: 1.4rem;
  font-family: "DIN", Helvetica, Arial, sans-serif;
  color: white;
  margin-bottom: 0;
}
footer .legal .disclaimer a:hover {
  color: black;
}
footer .legal .rca {
  display: flex;
}
@media only screen and (max-width: 62em) {
  footer .social {
    justify-content: center;
  }
}
footer .winners-circle {
  width: 4.5rem;
}

.form-container {
  max-width: 60rem;
  width: 100%;
  margin: auto;
}
.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: grid;
  grid-template-columns: 1fr 19rem;
  gap: 0;
  width: 100%;
}
@media only screen and (max-width: 62em) {
  .form-container form .form-group {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
  }
}
.form-container form input[type=email] {
  border: 1px solid white;
  border-radius: 0;
  background-color: transparent;
  color: white;
  padding-right: 2rem;
  padding-left: 2rem;
  height: 6.2rem;
  font-family: "MainRegular", sans-serif;
  font-size: 2.8rem;
  width: 100%;
}
.form-container form button {
  background-color: white;
  border: 1px solid white;
  border-radius: 3px;
  color: black;
  text-transform: uppercase;
  font-size: 2.8rem;
  cursor: pointer;
  font-family: "MainRegular", sans-serif;
  font-weight: 400;
  height: 100%;
  min-width: 4rem;
  padding: 0.5rem 0 0 0;
  height: 6.2rem;
  width: 19rem;
}
.form-container form button:hover {
  background-color: black;
  color: white;
}
.form-container .input-group.checkbox-container .checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
.form-container .input-group.checkbox-container .checkbox label span {
  font-size: 1.4rem;
}

::placeholder {
  color: white;
}

.splide__arrows.ray-slider button {
  background-color: transparent;
  background-repeat: no-repeat;
  width: 7rem;
  border-radius: 0;
}
.splide__arrows.ray-slider button:hover {
  scale: 1.2;
}
.splide__arrows.ray-slider button svg {
  display: none;
}
.splide__arrows.ray-slider button.splide__arrow--prev {
  left: -2rem;
  background-image: url("../assets/img/arrow-left.svg");
  opacity: 1;
}
@media only screen and (max-width: 36em) {
  .splide__arrows.ray-slider button.splide__arrow--prev {
    left: -3rem;
  }
}
.splide__arrows.ray-slider button.splide__arrow--next {
  right: -2rem;
  background-image: url("../assets/img/arrow-right.svg");
  opacity: 1;
}
@media only screen and (max-width: 36em) {
  .splide__arrows.ray-slider button.splide__arrow--next {
    right: -3rem;
  }
}

.splide__slide a {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.splide__slide a span {
  font-family: "MainBold", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.splide__slide a:hover {
  filter: brightness(1.2);
}

.bit-widget {
  position: relative;
}

.bit-widget .bit-show-local {
  display: none;
}

.bit-widget .bit-play-my-city-wrapper {
  display: none !important;
}

.bit-widget .bit-details-inner-wrapper,
.bit-widget.bit-layout-desktop .bit-details-inner-wrapper {
  display: grid;
  grid-template-columns: 11rem 1fr 1fr;
  column-gap: 2rem;
}
@media only screen and (max-width: 62em) {
  .bit-widget .bit-details-inner-wrapper,
.bit-widget.bit-layout-desktop .bit-details-inner-wrapper {
    display: flex !important;
    flex-direction: column !important;
  }
}

.bit-widget .bit-offers-inner-wrapper {
  margin-right: 0 !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-rsvp-container {
  margin: 5px !important;
}

.bit-widget.bit-layout-desktop .bit-event .bit-button,
.bit-widget.bit-layout-ipad .bit-event .bit-offers {
  height: 3.4rem !important;
}

.bit-widget.bit-layout-logo-ipad .bit-logo-desktop {
  opacity: 0.2;
}

.bit-logo-container {
  position: absolute;
  right: 0;
  top: 110px;
}

.bit-lineUp-container {
  grid-column: span 2;
  opacity: 0.6;
  padding-left: 13rem !important;
}
@media only screen and (max-width: 62em) {
  .bit-lineUp-container {
    padding-left: 0 !important;
  }
}

.bit-widget .bit-rsvp,
.bit-widget .bit-offers {
  width: fit-content !important;
  padding: 0.5rem 2rem !important;
  letter-spacing: 2px !important;
  font-size: 1.1rem !important;
}

.bit-widget .bit-offers {
  background-color: white !important;
  color: black !important;
}

.bit-widget .bit-event .bit-date {
  font-weight: bold !important;
  letter-spacing: 0.5px !important;
  font-size: 1.3rem !important;
  text-transform: uppercase !important;
  font-family: "MainBold", sans-serif !important;
}

.bit-widget .bit-follow-section-wrapper {
  padding: 10px 0px !important;
}

.bit-play-my-city-cta,
.bit-follow-section-cta {
  font-weight: bold !important;
  letter-spacing: 0.5px !important;
  font-size: 1.3rem !important;
  text-transform: uppercase !important;
  font-family: "MainBold", sans-serif !important;
  background-color: transparent;
  border: 2px solid white !important;
}

.bit-follow-section-heading-text,
.bit-play-my-city-heading-text {
  font-family: "MainBold", sans-serif;
  font-size: 2rem;
}
@media only screen and (max-width: 36em) {
  .bit-follow-section-heading-text,
.bit-play-my-city-heading-text {
    max-width: 60% !important;
    font-size: 1.5rem;
  }
}

.bit-widget .bit-event .bit-event-buttons,
.bit-widget.bit-layout-ipad .bit-event .bit-event-buttons {
  flex-direction: row !important;
}

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