/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
:root {
  --clr-main: hsl(0, 0%, 0%);
  --clr-main-10: hsla(0, 0%, 0%, 0.1);
  --clr-main-hover: #000000aa;
  --clr-bg: #ffffff;
  --clr-bg-10: hsla(0, 0%, 100%, 0.1);
  --clr-bg-20: hsla(0, 0%, 100%, 0.2);
  --clr-bg-30: hsla(0, 0%, 100%, 0.3);
  --clr-bg-75: hsla(0, 0%, 100%, 0.75);
  --clr-light-bg: #D9D9D9;
  --clr-green: #4CFF64;
  --clr-highlight: #FF4A23;
  --clr-pink: #ff94b0ff;
}

:root {
  --ff-base: "MainFont", sans-serif;
  --ff-heading: "CompactaLight", sans-serif;
  --ff-heading-bold: "CompactaBold", sans-serif;
  --ff-heading-serif: "Romie", serif;
  --fw-base: 643.1;
  --fw-bold: 1000;
  --fs-base: 1.6rem;
}

*,
*: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: var(--ff-base);
  overflow-x: hidden;
}

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

.clear:after {
  clear: both;
}

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

a {
  color: var(--clr-bg);
  text-decoration: none;
  transition: all 400ms;
  font-size: 1.6rem;
  font-family: var(--ff-base);
}

::placeholder {
  color: var(--clr-main);
}

::-moz-placeholder {
  color: var(--clr-main);
}

::-webkit-input-placeholder {
  color: var(--clr-main);
}

a:focus {
  outline: 0;
}

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

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

button {
  transition: all 400ms;
}

p,
strong,
span {
  font-family: var(--ff-base);
  font-size: var(--font-base-size);
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::-webkit-selection {
  color: var(--clr-bg);
  background: var(--clr-main);
  text-shadow: none;
}

::-moz-selection {
  /* Code for Firefox */
  color: var(--clr-bg);
  background: var(--clr-main);
  text-shadow: none;
}

::selection {
  color: var(--clr-bg);
  background: var(--clr-main);
  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 */
@font-face {
  font-family: "MainFont";
  src: url("../assets/font/SuisseIntl-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "CompactaBold";
  src: url("../assets/font/ITC-CompactaPro-Bold.otf") format("opentype");
}
@font-face {
  font-family: "CompactaLight";
  src: url("../assets/font/CompactaLTStd-Light.otf") format("opentype");
}
@font-face {
  font-family: "Romie";
  src: url("../assets/font/Romie-Regular.otf") format("opentype");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-base);
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2cap;
}

h2 {
  font-size: 4rem;
}
@media (max-width: 36em) {
  h2 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2.9rem;
  font-family: var(--ff-base);
}

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

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

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

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

.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;
}

.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;
}

.keen-slider[data-keen-slider-moves] * {
  cursor: grabbing !important;
  pointer-events: unset !important;
}
.keen-slider[data-keen-slider-moves] * a {
  pointer-events: none !important;
}

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

header {
  height: 100vh;
  height: 100svh;
  min-height: 90rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--clr-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 6rem;
}
@media (max-width: 36em) {
  header {
    min-height: initial;
    padding-bottom: 0;
  }
}
header .logo {
  position: absolute;
  top: -10%;
  z-index: 10;
  max-width: 31rem;
  width: 100%;
  mix-blend-mode: exclusion;
  transition: all 200ms;
  animation: moveFromTop 800ms ease-out 4200ms forwards;
}
@media (max-width: 48em) {
  header .logo {
    width: 13rem;
  }
}
header .nipper {
  position: absolute;
  top: 17rem;
  right: 10rem;
  z-index: 10;
  mix-blend-mode: exclusion;
  width: 12vw;
  opacity: 0;
  animation: fadeIn 800ms ease-out 4600ms forwards;
  background-color: transparent;
  border: none;
}
@media (max-width: 48em) {
  header .nipper {
    top: 13rem;
    right: 3rem;
    width: 12rem;
  }
}
header .scroll-button {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateX(-50%) rotate(-90deg);
  z-index: 10;
  display: flex;
  align-items: center;
  mix-blend-mode: exclusion;
  gap: 1rem;
}
header .scroll-button .arrow-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
header .scroll-button .arrow-container img {
  transform: translate(50px, 0);
  animation: arrowAnimation 2000ms infinite 6100ms;
}
header .scroll-button .text-container {
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
}
header .scroll-button .text-container span {
  transform: translate(80px, 0);
  position: absolute;
}
header .scroll-button span {
  font-family: var(--ff-heading);
  font-size: 3.4rem;
  text-transform: uppercase;
  color: var(--clr-bg);
}
header .scroll-button:hover .arrow-down {
  transform: translate(-10px);
}
header .watch-video {
  color: black;
  font-family: var(--ff-heading);
  font-size: 4.4rem;
  z-index: 10;
  text-transform: uppercase;
  content: "";
  width: 17.3rem;
  height: 17.3rem;
  background-color: #D9D9D9;
  mix-blend-mode: exclusion;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
  opacity: 0;
  animation: fadeInExpand 800ms cubic-bezier(0.31, 0.98, 1, 1.02) 4800ms forwards;
}
header .watch-video:hover {
  width: 24rem;
  height: 24rem;
}
header .video-container {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background-color: black;
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-content: center;
  width: 17.3rem;
  height: 17.3rem;
  transform-origin: center;
  z-index: 0;
  animation: moveDownFromTop 1600ms ease-in-out 700ms forwards;
  transition: all 2800ms cubic-bezier(0.22, -0.09, 0.32, 1.28);
  aspect-ratio: 1/1;
  clip-path: circle(50% at 50% 50%);
}
header .video-container.loaded {
  clip-path: inset(0% 0% 0% 0% round 99px);
  aspect-ratio: initial;
  width: 100%;
  height: 100%;
  top: 50%;
}
header .video-container.loaded video {
  min-height: 100svh;
}
header .video-container.loaded.expanded {
  clip-path: inset(0% 0% 0% 0% round 0);
}
header .video-container video {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 100ms;
  max-height: 100%;
  object-fit: cover;
}
header #header-video-list {
  position: relative;
  bottom: 0px;
  z-index: 10;
}
@media (max-width: 48em) {
  header #header-video-list {
    max-width: 100%;
  }
}
header #header-video-list ul {
  display: flex;
  flex-direction: column;
  gap: 1.3vh;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 36em) {
  header #header-video-list ul {
    gap: 0.4rem;
  }
}
header #header-video-list ul .line {
  height: 4.8rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 36em) {
  header #header-video-list ul .line {
    height: 3.8rem;
  }
}
header #header-video-list ul li {
  font-size: clamp(2rem, 2.1vw, 3.2rem);
  color: white;
  mix-blend-mode: exclusion;
  position: relative;
  width: max-content;
  clip-path: polygon(-30px 0, 100% 0, 100% 100%, 0% 100%);
  transform: translateY(4.8rem);
}
header #header-video-list ul li a {
  font-size: clamp(2rem, 2.1vw, 3.2rem);
  color: white;
  line-height: 1cap;
  border-bottom: 3px solid transparent;
  position: relative;
  display: inline-block;
}
@media (max-width: 36em) {
  header #header-video-list ul li a {
    font-size: clamp(6vw, 2.1vw, 3.2rem);
  }
}
header #header-video-list ul li a:hover {
  border-bottom: 3px solid white;
}
header .title {
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 3rem;
}
@media (max-width: 48em) {
  header .title {
    padding: 2rem 2rem;
  }
}
@media (max-width: 48em) {
  header .title h1 {
    margin: 0;
  }
}
header .title h1 img {
  max-width: 18.5rem;
}
@media (max-width: 75em) {
  header .title h1 img {
    max-width: 11.5rem;
  }
}
@media (max-width: 36em) {
  header .title h1 img {
    max-width: 8.5rem;
  }
}
header .title h2 {
  font-family: var(--ff-base);
  font-size: 7.3rem;
  color: var(--clr-main);
  font-weight: 400;
  margin: 0;
}
@media (max-width: 75em) {
  header .title h2 {
    font-size: 5rem;
  }
}
@media (max-width: 36em) {
  header .title h2 {
    font-size: 3.3rem;
  }
}
header .title h2 sup {
  font-size: 5rem;
  font-family: var(--ff-base);
}
@media (max-width: 75em) {
  header .title h2 sup {
    font-size: 3rem;
  }
}
@media (max-width: 36em) {
  header .title h2 sup {
    font-size: 2rem;
  }
}
header .title h2 img.fyc {
  margin-left: -7rem;
  padding-top: 0rem;
  max-width: 22rem;
  transform: translateY(2.1rem);
}
@media (max-width: 75em) {
  header .title h2 img.fyc {
    margin-left: -4rem;
    padding-top: 0rem;
    max-width: 12rem;
    transform: translateY(0.1rem);
  }
}
@media (max-width: 36em) {
  header .title h2 img.fyc {
    margin-left: -3rem;
    max-width: 8rem;
    transform: translateY(0.1rem);
  }
}
header img.header-img {
  position: absolute;
  z-index: -1;
}
header img.header-img__sza {
  max-width: 37vw;
  left: 10%;
  bottom: 15%;
}
@media (max-width: 36em) {
  header img.header-img__sza {
    max-width: 61vw;
    left: 6%;
    bottom: 35%;
  }
}
header img.header-img__pentatonix {
  max-width: 14vw;
  left: 2%;
  top: 15%;
}
@media (max-width: 36em) {
  header img.header-img__pentatonix {
    max-width: 26vw;
  }
}
header img.header-img__tyler-childers {
  max-width: 14vw;
  left: 3%;
  bottom: 5%;
}
@media (max-width: 36em) {
  header img.header-img__tyler-childers {
    max-width: 27vw;
    left: 3%;
    bottom: 18%;
  }
}
header img.header-img__mark-ronson {
  max-width: 10vw;
  left: 39%;
  bottom: 23%;
}
@media (max-width: 36em) {
  header img.header-img__mark-ronson {
    max-width: 21vw;
    left: 35%;
    bottom: 7%;
  }
}
header img.header-img__kirk-franklin {
  max-width: 12vw;
  left: 45%;
  bottom: -15%;
}
@media (max-width: 36em) {
  header img.header-img__kirk-franklin {
    max-width: 26vw;
    left: 5%;
    bottom: -13%;
  }
}
header img.header-img__tems {
  max-width: 17vw;
  left: 50%;
  top: 9%;
}
@media (max-width: 36em) {
  header img.header-img__tems {
    max-width: 21vw;
    left: 52%;
    top: 14%;
  }
}
header img.header-img__doja-cat {
  max-width: 17vw;
  left: initial;
  right: 0%;
  top: 19%;
}
@media (max-width: 36em) {
  header img.header-img__doja-cat {
    max-width: 27vw;
    left: initial;
    right: 5%;
    top: 36%;
  }
}
header img.header-img__victoria-monet {
  max-width: 17vw;
  left: initial;
  right: 20%;
  bottom: -12%;
}
@media (max-width: 36em) {
  header img.header-img__victoria-monet {
    max-width: 23vw;
    left: initial;
    right: 16%;
    bottom: 18%;
  }
}
header img.header-img__davido {
  max-width: 10vw;
  left: initial;
  right: 4%;
  bottom: -5%;
}
@media (max-width: 36em) {
  header img.header-img__davido {
    max-width: 20vw;
    left: initial;
    right: 4%;
    bottom: -4%;
  }
}

.new-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17.3rem;
  height: 17.3rem;
  overflow: hidden;
  border-radius: 99px;
  transition: all 2800ms;
}
.new-video.expand {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.new-video video {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 100ms;
  max-height: 100%;
  object-fit: cover;
}

body {
  color: var(--clr-main);
  margin: 0;
  letter-spacing: 0.5px;
  background-color: var(--clr-bg);
  cursor: none;
}
body main section {
  position: relative;
  background-color: var(--clr-bg);
  max-height: 100vh;
  max-height: 100svh;
}
@media (max-width: 48em) {
  body main section {
    max-height: initial;
  }
}
body main section.marquee-container {
  height: 9rem;
  overflow: hidden;
  border-top: 2px solid var(--clr-main);
  border-bottom: 2px solid var(--clr-main);
  display: flex;
  align-items: center;
}
body main section.marquee-container .marquee {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 1;
  font-family: var(--ff-heading);
}
body main section.marquee-container .marquee.hoverable:hover {
  filter: invert(1);
}
@media (max-width: 48em) {
  body main section.marquee-container .marquee {
    width: 260%;
  }
}
body main section.marquee-container .marquee .marquee__content .list-inline li {
  display: flex;
  align-content: center;
  align-items: center;
  position: relative;
  color: var(--clr-main);
  font-size: 5.8rem;
  font-family: var(--ff-heading);
}
@media (max-width: 36em) {
  body main section.marquee-container .marquee .marquee__content .list-inline li {
    font-size: 15.3vw;
  }
}
body main section.merch-slider-container {
  height: 60rem;
}
@media (max-width: 36em) {
  body main section.merch-slider-container {
    height: 50rem;
  }
}
body main section.merch-slider-container .splide__track {
  height: 100%;
}
body main section.merch-slider-container .splide__track li {
  opacity: 1;
}
@media (max-width: 36em) {
  body main section.merch-slider-container .splide__track li {
    max-width: 95%;
  }
}
body main section.merch-slider-container .splide__track li a {
  padding: 3.3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  border-left: 2px solid var(--clr-main);
}
body main section.merch-slider-container .splide__track li a .price-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body main section.merch-slider-container .splide__track li a .price-container .new-badge {
  font-family: var(--ff-main);
  font-size: 1.2rem;
  font-weight: 100;
  text-transform: uppercase;
  background-color: var(--clr-highlight);
  border-radius: 20px;
  width: 10rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.merch-slider-container .splide__track li a .price-container .price {
  font-family: var(--ff-main);
  font-size: 1.4rem;
  color: var(--clr-main);
}
body main section.merch-slider-container .splide__track li a > img {
  height: 48rem;
  object-fit: contain;
}
body main section.merch-slider-container .splide__track li a > video {
  height: 48rem;
  object-fit: contain;
  aspect-ratio: 1;
}
body main section.merch-slider-container .splide__track li a .product-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body main section.merch-slider-container .splide__track li a .product-title span {
  color: var(--clr-main);
  font-size: 1.4rem;
  letter-spacing: 0;
}
body main section.merch-slider-container .splide__track li a .product-title img.open-product {
  transition: all 200ms;
}
body main section.merch-slider-container .splide__track li a:hover .product-title img.open-product {
  transform: scale(1.2);
}
body main section.artists-container {
  max-height: 90vh;
  max-height: 90svh;
  min-height: 80rem;
  width: 100%;
  overflow-x: hidden;
  background-color: gray;
}
@media (max-width: 36em) {
  body main section.artists-container {
    min-height: 60rem;
  }
}
body main section.artists-container .artists-slider-container .splide__track {
  height: 100%;
  opacity: 0;
}
body main section.artists-container .artists-slider-container .splide__track ul {
  height: 100%;
  width: 100%;
}
body main section.artists-container .artists-slider-container .splide__track ul li {
  height: 100%;
  overflow: hidden;
}
body main section.artists-container .artists-slider-container .splide__track ul li a {
  display: flex;
  height: 100%;
}
body main section.artists-container .artists-slider-container .splide__track ul li a img {
  min-width: 100%;
  object-fit: cover;
}
body main section.about-container {
  height: 90vh;
  min-height: 80rem;
  overflow-x: hidden;
  display: flex;
  position: relative;
}
@media (max-width: 36em) {
  body main section.about-container {
    min-height: 70rem;
  }
}
body main section.about-container .timeline-starter {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 100;
  background-color: var(--clr-highlight);
  background-image: url("../assets/img/arrow-full-right-000000.svg");
  background-repeat: no-repeat;
  background-position: 60% center;
  width: 120px;
  height: 230px;
  border-top-left-radius: 200% 100%;
  border-bottom-left-radius: 200% 100%;
  transform: translate(0, -50%);
}
@media (max-width: 36em) {
  body main section.about-container .timeline-starter {
    width: 55px;
    height: 110px;
    background-size: 4rem;
  }
}
body main section.about-container .about-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  min-width: 100vw;
  padding: 0 18%;
  gap: 14rem;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}
@media (max-width: 75em) {
  body main section.about-container .about-block {
    padding: 0 10%;
  }
}
@media (max-width: 48em) {
  body main section.about-container .about-block {
    flex-direction: column;
    padding: 0 5%;
    gap: 5rem;
    justify-content: center;
  }
}
body main section.about-container .about-block.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 48em) {
  body main section.about-container .about-block.is-reverse {
    flex-direction: column-reverse;
  }
}
body main section.about-container .about-block .about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body main section.about-container .about-block .about-content img {
  object-fit: cover;
  max-width: 30rem;
  width: fit-content;
}
@media (max-width: 36em) {
  body main section.about-container .about-block .about-content img {
    max-width: 20rem;
  }
}
body main section.about-container .about-block .about-content h2 {
  font-family: var(--ff-heading-bold);
  font-size: 10vw;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1cap;
}
@media (max-width: 36em) {
  body main section.about-container .about-block .about-content h2 {
    font-size: 7rem;
  }
}
body main section.about-container .about-block .about-content h3 {
  font-family: var(--ff-heading-serif);
  font-size: clamp(2rem, 2.1vw, 4rem);
  text-transform: uppercase;
  line-height: clamp(2rem, 2.1vw, 4rem);
}
body main section.about-container .about-block .about-content p {
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 36em) {
  body main section.about-container .about-block .about-content p {
    font-size: 1.7rem;
  }
}
body main section.smg-section {
  height: 95vh;
  height: 95svh;
  background-color: var(--clr-light-bg);
  display: flex;
  flex-direction: row;
  font-family: var(--ff-main);
  font-size: 2.5rem;
  line-height: 4rem;
}
@media (max-width: 48em) {
  body main section.smg-section {
    flex-direction: column;
    height: initial;
  }
}
body main section.smg-section p {
  color: var(--clr-main-10);
  background: linear-gradient(to right, var(--clr-main), var(--clr-main)) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
  position: relative;
}
body main section .container-50 {
  background-position: center;
  background-size: cover;
  width: 50%;
  padding: 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 48em) {
  body main section .container-50 {
    width: 100%;
    min-height: 40vh;
    padding: 6rem 4rem;
  }
}
body main section.new-sound {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  height: 80svh;
  background-color: var(--clr-green);
}
@media (max-width: 36em) {
  body main section.new-sound {
    height: 60vh;
  }
}
body main section.new-sound h2 {
  font-family: var(--ff-heading-bold);
  font-size: 10vw;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  max-width: 60%;
  color: var(--clr-main);
  position: relative;
}
@media (max-width: 36em) {
  body main section.new-sound h2 {
    font-size: 5.8rem;
    max-width: 94%;
    line-height: 4.9rem;
  }
}
body main section.new-sound h2 .char {
  transform: translateY(115px);
  transition: all 0.5s;
  opacity: 0;
}
body main #artists-list {
  position: relative;
  direction: rtl;
  text-align: left;
  left: 5rem;
  border-right: 2px solid var(--clr-bg);
  max-width: 60rem;
  z-index: 1;
  scrollbar-color: #FF4A23 transparent;
  max-height: 90vh;
  overflow-y: scroll;
}
@media (max-width: 48em) {
  body main #artists-list {
    left: 0;
  }
}
body main #artists-list ul {
  padding-left: 6rem;
  padding-top: 40vh;
  padding-bottom: 40vh;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-left: 0;
}
@media (max-width: 48em) {
  body main #artists-list ul {
    padding-left: 4rem;
  }
}
body main #artists-list ul li {
  direction: ltr;
}
body main #artists-list ul li a {
  font-size: clamp(2.5rem, 2.6vw, 5rem);
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  transition: none;
  padding: 1.6rem 0px;
  line-height: 1.4cap;
  display: inline-block;
}
body main #artists-list ul li a:visited {
  color: var(--clr-bg);
}
body main #artists-list ul li a:hover {
  color: var(--clr-green);
}
body main a {
  cursor: none;
}
body main a.open-positions {
  border-top: 1px solid var(--clr-main);
  border-bottom: 1px solid var(--clr-main);
  background-color: var(--clr-bg);
  color: var(--clr-main);
  width: 100%;
  font-family: var(--ff-main);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
body main a.open-positions:hover {
  background-color: var(--clr-green);
}
body .cursor {
  pointer-events: none;
}
@media (max-width: 36em) {
  body .cursor {
    display: none;
  }
}
body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}
body .cursor__ball circle {
  fill: #f7f8fa;
}
body .cursor__ball--big img.cursor-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 60%;
}

footer {
  background-color: var(--clr-bg);
  color: var(--clr-main);
  text-align: center;
  position: relative;
  margin: auto;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: flex-end;
  padding-top: 8rem;
  padding-right: 10rem;
  padding-bottom: 3rem;
  padding-left: 10rem;
  flex-direction: column;
}
@media (max-width: 48em) {
  footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 36em) {
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
footer .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 48em) {
  footer .container {
    flex-direction: column;
    gap: 4rem;
  }
}
footer a,
footer button {
  color: var(--clr-main);
  font-family: var(--ff-base);
  text-decoration: none;
  background-color: transparent;
  border: none;
}
footer a:hover,
footer button:hover {
  filter: brightness(1.4);
}
footer .logo-footer {
  margin: 0 auto 6rem auto;
  display: flex;
  justify-content: center;
}
footer .logo-footer img {
  max-width: 23rem;
  width: 100%;
}
@media (max-width: 36em) {
  footer .logo-footer img {
    max-width: 10rem;
  }
}
footer .social {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  align-items: flex-start;
}
footer .social a {
  font-size: 3.5rem;
  text-decoration: none;
  border-bottom: none;
  letter-spacing: 0;
  color: var(--clr-main);
  border-bottom: 3px solid var(--clr-main);
  line-height: 1.2cap;
  transform: translateX(-150px);
  transition: all 0.5s;
  opacity: 0;
}
footer .social a:hover {
  border-bottom: 3px solid var(--clr-green);
}
footer .signup-container {
  text-align: right;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 48em) {
  footer .signup-container {
    align-items: center;
    gap: 3rem;
  }
}
footer .signup-container .nipper {
  filter: invert(1);
  max-width: 18rem;
}
@media (max-width: 36em) {
  footer .signup-container .nipper {
    max-width: 15rem;
  }
}
footer .disclaimer {
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 48em) {
  footer .disclaimer {
    padding-top: 4rem;
  }
}
footer .disclaimer p,
footer .disclaimer p *,
footer .disclaimer a {
  font-size: 0.8rem;
  margin-bottom: 0;
  letter-spacing: 0;
  color: var(--clr-main);
  font-family: var(--ff-base);
  text-decoration: none;
  text-transform: uppercase;
}
footer .disclaimer a {
  border-bottom: 1px solid var(--clr-bg);
}
footer .disclaimer a:hover {
  border-bottom: 1px solid var(--clr-main);
}

.btn {
  border: 1px solid var(--clr-bg);
  text-align: center;
  transition: all 800ms;
  font-family: var(--ff-heading);
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  max-width: 30rem;
  padding: 0.5rem;
  line-height: 1cap;
}
.btn:hover {
  color: var(--clr-main);
  background-color: var(--clr-bg);
}

.marquee {
  margin: 0 auto;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  background-color: transparent;
  color: var(--clr-main);
  font-size: 4.6rem;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: 0;
  background-color: white;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 5rem;
  content: "";
  z-index: 1;
}

.marquee__content {
  width: 300% !important;
  display: flex;
  animation: marquee 30s linear infinite forwards;
  pointer-events: none;
}

.list-inline {
  display: flex;
  justify-content: space-around;
  width: 33.33%;
  padding-inline-start: 0;
  /* reset list */
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
.splide {
  height: 100%;
}
.splide__arrows.rca-slider button {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  width: 7rem;
  border-radius: 0;
}
.splide__arrows.rca-slider button:hover {
  scale: 1.05;
}
.splide__arrows.rca-slider button svg {
  display: none;
}
.splide__arrows.rca-slider button.splide__arrow--prev {
  left: -2rem;
  background-image: url("../assets/img/arrow-left.svg");
  opacity: 1;
}
.splide__arrows.rca-slider button.splide__arrow--prev:disabled {
  opacity: 0;
}
@media (max-width: 36em) {
  .splide__arrows.rca-slider button.splide__arrow--prev {
    left: -3rem;
  }
}
.splide__arrows.rca-slider button.splide__arrow--next {
  right: -2rem;
  background-image: url("../assets/img/arrow-right.svg");
  opacity: 1;
}
.splide__arrows.rca-slider button.splide__arrow--next:disabled {
  opacity: 0;
}
@media (max-width: 36em) {
  .splide__arrows.rca-slider button.splide__arrow--next {
    right: -3rem;
  }
}
.splide.artists-slider-container .splide__arrows.rca-slider button {
  background-color: var(--clr-highlight);
  height: 24rem;
  width: 12rem;
}
.splide.artists-slider-container .splide__arrows.rca-slider button.splide__arrow--prev {
  left: 0rem;
  background-image: url("../assets/img/arrow-left-000000.svg");
  border-top-right-radius: 12rem;
  border-bottom-right-radius: 12rem;
}
.splide.artists-slider-container .splide__arrows.rca-slider button.splide__arrow--next {
  right: 0;
  background-image: url("../assets/img/arrow-right-000000.svg");
  border-top-left-radius: 12rem;
  border-bottom-left-radius: 12rem;
}
.splide.about-slider-container .splide__arrows.rca-slider button {
  background-color: var(--clr-highlight);
  height: 24rem;
  width: 12rem;
}
.splide.about-slider-container .splide__arrows.rca-slider button.splide__arrow--prev {
  left: 0;
  background-image: url("../assets/img/arrow-left-000000.svg");
  border-top-right-radius: 12rem;
  border-bottom-right-radius: 12rem;
}
.splide.about-slider-container .splide__arrows.rca-slider button.splide__arrow--next {
  right: 0;
  background-image: url("../assets/img/arrow-right-000000.svg");
  border-top-left-radius: 12rem;
  border-bottom-left-radius: 12rem;
}

.slider-wrapper {
  height: 100%;
  width: 100%;
  background: #555;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slider-wrapper .box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg);
  height: 100%;
  width: 33.4%;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  color: black;
  font-size: 21px;
  cursor: pointer;
  transition: none;
}
@media (max-width: 62em) {
  .slider-wrapper .box {
    width: 100%;
    max-width: 60%;
  }
}
@media (max-width: 48em) {
  .slider-wrapper .box {
    max-width: 70%;
  }
}
@media (max-width: 36em) {
  .slider-wrapper .box {
    max-width: 90%;
  }
}
.slider-wrapper.merch-slider-container .box {
  padding: 3.3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  border-left: 2px solid var(--clr-main);
}
.slider-wrapper.merch-slider-container .box .price-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.slider-wrapper.merch-slider-container .box .price-container .new-badge {
  font-family: var(--ff-main);
  font-size: 1.2rem;
  font-weight: 100;
  text-transform: uppercase;
  background-color: var(--clr-highlight);
  border-radius: 20px;
  width: 10rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-wrapper.merch-slider-container .box .price-container .price {
  font-family: var(--ff-main);
  font-size: 1.4rem;
  color: var(--clr-main);
}
.slider-wrapper.merch-slider-container .box > img {
  height: 48rem;
  object-fit: contain;
}
.slider-wrapper.merch-slider-container .box > video {
  height: 48rem;
  object-fit: contain;
  aspect-ratio: 1;
  max-width: 100%;
}
.slider-wrapper.merch-slider-container .box .product-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.slider-wrapper.merch-slider-container .box .product-title span {
  color: var(--clr-main);
  font-size: 1.4rem;
  letter-spacing: 0;
}
.slider-wrapper.merch-slider-container .box .product-title img.open-product {
  transition: all 200ms;
}
.slider-wrapper.merch-slider-container .box:hover .product-title img.open-product {
  transform: scale(1.2);
}

form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 36em) {
  form {
    gap: 0.5rem;
    width: 100%;
  }
}
form label {
  display: none;
}
form .input-group,
form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
form .input-group input[type=email],
form .form-group input[type=email] {
  border: none;
  border-bottom: 1px solid var(--clr-light-bg);
  border-radius: 0;
  background-color: transparent;
  color: var(--clr-main);
  padding: 0.5rem 0;
  height: 4.5rem;
  width: 100%;
}
form .input-group input[type=email]::placeholder,
form .form-group input[type=email]::placeholder {
  color: black;
}
form .input-group input[type=email]:focus,
form .form-group input[type=email]:focus {
  border-bottom: 1px solid var(--clr-main);
}
form .input-group.hidden,
form .form-group.hidden {
  position: absolute;
}
form button.btn {
  text-transform: uppercase;
  background-color: transparent;
  color: var(--clr-main);
  font-family: var(--ff-heading);
  font-weight: 100;
  cursor: pointer;
  border-radius: 0;
  min-width: initial;
  border: none;
  border-bottom: 3px solid var(--clr-main);
  transition: all 200ms;
}
form button.btn:hover {
  background-color: transparent;
  border-bottom: 3px solid var(--clr-green);
}
form#rca-records-newsletter-sign-up p.thank-you {
  font-size: 2rem;
  padding: 0;
  margin: 0 auto;
}

dialog {
  min-width: 30rem;
  min-height: 10rem;
  padding: 5rem 2rem 2rem 2rem;
  position: relative;
}
dialog button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0.5rem 0;
}
dialog button.btn-close {
  position: absolute;
  left: initial;
  right: 2rem;
  top: 1rem;
}
dialog button.btn-close:hover {
  rotate: 360deg;
}
dialog button.btn-close svg path {
  stroke: black;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveFromTop {
  0% {
    top: -10%;
  }
  100% {
    top: 6rem;
  }
}
@keyframes fadeInExpand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes moveDownFromTop {
  0% {
    top: -10%;
  }
  100% {
    top: 50%;
  }
}
@keyframes arrowAnimation {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  75% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

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