/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
@font-face {
  font-family: bodyFont;
  src: url(../fonts/Ubuntu/Ubuntu-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: titleFont;
  src: url(../fonts/Ubuntu/Ubuntu-Regular.woff2) format("woff2");
  font-display: swap;
}
:root {
  --color-text: #f0f0f0;
  --color-bg-light: #232440;
  --color-bg-dark: rgb(21, 21, 34);
  --color-bg-ultradark: rgb(10, 0, 0);
  --color-cg-red: #ff0066;
  --color-cg-darkred: #c4004e;
  --color-cg-blue: #1f1fad;
  --color-highlight: #eaea21;
  --color-text-span: #808099;
  --color-text-selection: #3f4d8d;
}

/*---------------------------------------/*
 # TOOLS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
@media (max-width: 767.98px) {
  .row > * {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg-ultradark);
  color: var(--color-text);
  font-family: bodyFont;
  font-size: 1rem;
}
body::-moz-selection {
  background: var(--color-text-selection);
}
body::selection {
  background: var(--color-text-selection);
}
body::-moz-selection {
  /* Code for Firefox */
  background: var(--color-text-selection);
}

img {
  max-width: 100%;
  height: auto;
}

img,
svg {
  vertical-align: middle;
}

main {
  transition: background-color 0.1s;
  background-color: var(--color-bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: titleFont;
  line-height: unset;
}

h1 {
  font-size: 4rem;
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.8rem;
}
@media (max-width: 575.98px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  p {
    font-size: 0.85rem;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--color-cg-red);
}
a:hover {
  color: var(--color-cg-darkred);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font-family: bodyFont;
  border: none;
}

iframe {
  border: none;
}

footer {
  transition: background-color 0.1s;
}

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
.o-nowrap {
  white-space: nowrap;
}

.o-sideways-scroll {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 5rem;
  padding-left: 5rem;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  overflow: auto;
  overflow-x: visible;
  white-space: nowrap;
  width: 100vw;
}

.o-desktop-flex-left {
  display: flex;
  justify-content: start;
}
@media (min-width: 1200px) {
  .o-desktop-flex-left {
    justify-content: end;
  }
}

/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-nav {
  top: 0;
  min-height: 4.5rem;
  background: linear-gradient(90deg, rgb(0, 0, 10) 0%, var(--color-bg-dark) 30%);
  padding: 0 1rem;
  -o-border-image: linear-gradient(to right, var(--color-cg-blue) 15%, var(--color-cg-red) 30%) 1;
     border-image: linear-gradient(to right, var(--color-cg-blue) 15%, var(--color-cg-red) 30%) 1;
  border-width: 4px;
  border-style: solid;
  border-top: none;
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 2;
  width: 100vw;
}
.c-nav__logo {
  width: 6.625rem;
  height: 3.6344rem;
}

.c-header-home {
  padding: 4rem 0;
  background-color: var(--color-bg-ultradark);
  background-image: url(../img/TCESOTM-header.webp);
  background-size: auto;
  background-position: right;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .c-header-home {
    background-position: center;
  }
}
.c-header-home__content {
  max-width: 38rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (max-width: 767.98px) {
  .c-header-home__content {
    align-items: center;
  }
}
.c-header-home__content img {
  max-width: 32rem;
}
@media (max-width: 767.98px) {
  .c-header-home__content img {
    max-width: 20rem;
  }
}
.c-header-home__content--paragraph {
  font-size: 1rem;
}
.c-header-home__content--paragraph span {
  color: var(--color-text-span);
}
.c-header-home__new {
  position: absolute;
  left: 0;
  background: var(--color-text);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 1rem;
  color: var(--color-bg-ultradark);
  font-size: 1.2rem;
  border-radius: 1rem;
  transform: translate(1.5rem, -1.5rem);
}
@media (max-width: 767.98px) {
  .c-header-home__new {
    transform: translate(2rem, 0);
    font-size: 1rem;
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
  }
}
.c-header-home__cta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: var(--color-highlight);
  color: var(--color-bg-ultradark);
  font-size: 2rem;
  font-family: titleFont;
}
.c-header-home__cta:hover {
  transform: scale(1.05);
}
.c-header-home__gradient {
  position: absolute;
  background: linear-gradient(90deg, rgb(0, 0, 10) 30%, rgba(0, 0, 0, 0) 80%);
  height: 100%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .c-header-home__gradient {
    background: linear-gradient(0deg, rgb(0, 0, 10) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.c-secrets {
  height: calc(100vh - 4.5rem - 4px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-image: url(../icons/secret-bg.svg);
  background-position: center;
  background-size: cover;
}
.c-secrets h1 {
  margin-bottom: 2rem;
  opacity: 0.5;
}
.c-secrets__paragraph {
  font-size: 1.75rem;
  color: var(--color-text-span);
  margin-bottom: 2rem;
  opacity: 0.5;
}
.c-secrets__content {
  width: 45rem;
  height: 25rem;
  position: relative;
  padding: 2% 5%;
  color: #fff;
  background-color: rgba(21, 21, 34, 0.9);
  box-shadow: inset 0 0 100px rgba(10, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .c-secrets__content {
    width: 35rem;
    height: 20rem;
  }
}
@media (max-width: 767.98px) {
  .c-secrets__content {
    width: 25rem;
    height: 15rem;
  }
}
@media (max-width: 575.98px) {
  .c-secrets__content {
    width: 18rem;
    height: 10rem;
    font-size: 1rem;
  }
}
.c-secrets__content p {
  font-size: 1.5rem;
}
@media (max-width: 575.98px) {
  .c-secrets__content p {
    font-size: 1rem;
  }
}
.c-secrets__content:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  filter: blur(40px);
  transform: scale(1.1);
  background: linear-gradient(90deg, #ff0068, #7e0fff, #1f1fad);
  background-size: 200% 200%;
  animation: animateglow 25s ease infinite;
}

@keyframes animateglow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.c-main {
  margin-top: 4.5rem;
  padding: 0;
}

.c-footer {
  background: var(--color-bg-ultradark);
  padding-top: 2rem;
}
.c-footer__logo {
  width: 10rem;
  height: 5.4856rem;
  margin-bottom: 2rem;
  transition: 0.4s;
}
.c-footer__logo:hover {
  transition: 0.1s;
  transform: scale(1.05);
}
.c-footer__lists {
  margin-top: 1.5rem;
}
.c-footer__lists h3 {
  color: var(--color-cg-red);
  margin-bottom: 1rem;
}
.c-footer__lists ul {
  list-style: none;
}
.c-footer__lists ul li {
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.c-footer__lists ul li a {
  color: var(--color-text);
  transition: color 0.4s;
}
.c-footer__lists ul li a:hover {
  transition: color 0.1s;
  color: var(--color-cg-blue);
}
.c-footer__socials {
  display: flex;
  justify-content: end;
  gap: 1rem;
  padding: 0.8rem 0;
}
.c-footer__social {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
@media (min-width: 576px) {
  .c-footer__social {
    transition: 0.4s;
  }
  .c-footer__social:hover {
    transition: 0.1s;
    transform: scale(1.1);
  }
}
.c-footer__legal {
  border-top: 2px solid var(--color-text-span);
  color: var(--color-text-span);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

.c-content-item {
  cursor: pointer;
}
.c-content-item__image {
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-bg-dark);
  position: relative;
  transition: 0.4s;
}
@media (min-width: 576px) {
  .c-content-item__image:hover {
    transition: 0.1s;
    box-shadow: 0.5rem 0.5rem 0 0 var(--color-cg-red);
  }
}
.c-content-item__image img {
  margin: 0;
  width: 100%;
  height: 100%;
}
.c-content-item__original {
  width: 3rem;
  height: 3rem;
  position: absolute;
  background-repeat: no-repeat;
}
.c-content-item__original--crazyghoul {
  background-image: url(../img/production-flags/crazyghoul.svg);
}
.c-content-item__original--ccstudios {
  background-image: url(../img/production-flags/ccstudios.svg);
}
.c-content-item__new {
  position: absolute;
  background-color: var(--color-text);
  box-shadow: 2px 2px 10px var(--color-bg-dark);
  padding: 0.4rem 0.75rem;
  font-size: 1rem;
  color: var(--color-bg-dark);
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 0.75rem;
}
.c-content-item__size--poster {
  width: 18rem;
}
.c-content-item__size--album-cover {
  width: 18rem;
  height: 18rem;
  aspect-ratio: 1/1;
}
.c-content-item__popup {
  display: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  background-color: var(--color-bg-dark);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, var(--color-bg-ultradark) 100%);
  transition: opacity 0.4s;
}
.c-content-item__popup h3 {
  white-space: pre-wrap;
  text-shadow: 1.5px 1.5px 0 var(--color-bg-ultradark);
  color: var(--color-text);
  margin: 0 1rem;
  font-size: 1.5rem;
}
@media (min-width: 576px) {
  .c-content-item__popup {
    opacity: 0;
  }
  .c-content-item__popup:hover {
    transition: opacity 0.1s;
    opacity: 1;
  }
}
.c-content-item__footer {
  margin: 1rem 0;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
}
.c-content-item__footer span {
  color: var(--color-highlight);
}
.c-content-item__type {
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-content-item__type--movie::before {
  content: url(../icons/movie.svg);
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  margin-right: 0.25rem;
}
.c-content-item__type--video-game::before {
  content: url(../icons/videogame.svg);
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  margin-right: 0.25rem;
}

.c-detail {
  padding: 3rem 0 5rem 0;
}
.c-detail__header {
  background-size: contain;
  padding-top: 0;
}
.c-detail__header--text {
  display: grid;
  justify-content: start;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1400px) {
  .c-detail__header--text {
    width: calc(100% + 2.5rem);
  }
}
@media (max-width: 1399.98px) {
  .c-detail__header--text {
    display: flex;
    padding-right: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .c-detail__header--text {
    padding-right: 0;
  }
}
.c-detail__hero {
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}
.c-detail__hero .container {
  position: relative;
  z-index: 1;
}
.c-detail__deco {
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.c-detail__deco--cg {
  transform: translate(10rem, -30rem);
  width: 60rem;
  height: 60rem;
  background-image: url(../icons/cg-bg-icon.svg);
}
.c-detail__deco--movie {
  transform: translateY(-40rem);
  width: 45rem;
  height: 45rem;
  background-image: url(../icons/movie-bg-icon.svg);
}
.c-detail__titles {
  margin-bottom: 1rem;
}
.c-detail__titles h1 {
  font-size: 2.8125rem;
}
@media (max-width: 1199.98px) {
  .c-detail__titles h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .c-detail__titles h1 {
    font-size: 1.5rem;
  }
}
.c-detail__titles h1 span {
  color: var(--color-highlight);
  margin-right: 0.75rem;
}
.c-detail__titles h2 {
  color: var(--color-text-span);
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
@media (max-width: 1199.98px) {
  .c-detail__titles h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  .c-detail__titles h2 {
    font-size: 1.2rem;
  }
}
.c-detail__hero-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .c-detail__hero-list {
    display: grid;
    grid-template-columns: 25% 1fr;
  }
}
.c-detail__hero-list span {
  font-size: 1rem;
  color: var(--color-text-span);
}
.c-detail__hero-list--wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-detail__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.c-detail__tags li {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--color-bg-light);
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-bg-ultradark);
  padding: 0.3rem 0.65rem;
  border-radius: 1rem;
}
.c-detail__tags--language li {
  color: var(--color-text-span);
  background-color: var(--color-bg-dark);
}
.c-detail__tags--language li:first-child {
  color: var(--color-text);
}
.c-detail__language {
  color: var(--color-text-span);
  font-size: 1rem;
  box-shadow: none;
  padding: 0.3rem 1rem 0.3rem 0;
  width: 100%;
}
.c-detail__poster {
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .c-detail__poster {
    display: none;
  }
}
.c-detail__poster img {
  width: 20rem;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-bg-ultradark);
}
.c-detail__poster--mobile {
  position: relative;
  cursor: pointer;
  display: none;
  padding-bottom: 1rem;
}
@media (max-width: 1199.98px) {
  .c-detail__poster--mobile {
    display: block;
  }
}
.c-detail__poster--mobile img {
  width: 100%;
  height: 100%;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-bg-ultradark);
}
.c-detail__description {
  width: 100%;
}
.c-detail__description p {
  margin-bottom: 1.2rem;
}
.c-detail__description p .c-detail__description--name-span {
  color: var(--color-text-span);
}
.c-detail__description--top {
  width: 100%;
  display: grid;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .c-detail__description--top {
    grid-template-columns: 10rem 1fr;
  }
  .c-detail__description--top p {
    padding-left: 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .c-detail__also-watch {
    margin-top: 2rem;
  }
}
.c-detail__episode-nav {
  max-width: 30rem;
  min-width: 28rem;
  aspect-ratio: 16/9;
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.c-detail__episode-text {
  z-index: 1;
  width: 80%;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  filter: drop-shadow(1.5px 1.5px 1px rgb(21, 21, 34));
}
.c-detail__episode-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.c-detail__episode-text h3 span {
  color: var(--color-highlight);
}
.c-detail__episode-text p {
  width: 80%;
}
.c-detail__episode-btns {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0 1.25rem 0 calc(1.25rem - 1.5px);
  display: flex;
  justify-content: start;
  gap: 1rem;
  background-color: var(--color-bg-dark);
}
.c-detail__episode-btns a:hover {
  color: var(--color-highlight);
}
.c-detail__episode-bg {
  position: absolute;
  background-position: right !important;
  background-size: cover !important;
  border-radius: 1.25rem;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.c-detail__episode-all {
  z-index: 1;
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  text-align: right;
}
.c-detail__episode-all a {
  margin-right: 1rem;
}
.c-detail__episode-all a:hover {
  color: var(--color-highlight);
}
.c-detail__credits {
  border-top: 2px solid var(--color-cg-red);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .c-detail__credits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
  }
}
.c-detail__credit {
  width: -moz-fit-content;
  width: fit-content;
}
.c-detail__credit--names {
  margin-top: 0.5rem;
  max-width: 15rem;
  line-height: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0 1.2rem;
}
.c-detail__credit--names li {
  color: var(--color-text-span);
  padding-top: 0.25rem;
}
.c-detail__credit--names li:first-child {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .c-detail__stars {
    margin-bottom: 2.5rem;
  }
}
.c-detail__header-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-detail__header-links a {
  width: -moz-fit-content;
  width: fit-content;
}
.c-detail__header-links a:hover {
  color: var(--color-highlight);
}
@media (max-width: 991.98px) {
  .c-detail__header-links {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.c-detail__header-links div {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-detail__header-links div svg {
  transition: fill 0.1s;
  fill: var(--color-cg-red);
  width: 2.25rem;
}
.c-detail__header-links div span {
  color: var(--color-cg-red);
}
.c-detail__trailers--wrapper {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.c-detail__gallery--wrapper {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-movieplayer {
  width: 100vw;
  background-color: var(--color-bg-dark);
  position: relative;
}
.c-movieplayer--ratio-16_9 {
  aspect-ratio: 16/9;
}
.c-movieplayer--ratio-2_39_1 {
  aspect-ratio: 2.39/1;
}
.c-movieplayer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.c-cgoriginal {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-bg-dark);
  background: linear-gradient(45deg, #ff0066 0%, #ff4fa1 100%);
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 0.8rem 0.2rem 0.3rem;
  border-radius: 1rem;
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-bg-ultradark);
}
.c-cgoriginal img {
  height: 1.5rem;
  margin-right: 0.4rem;
}

.c-star-cast {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: 0.4s;
}
@media (min-width: 576px) {
  .c-star-cast:hover {
    transition: 0.1s;
    scale: 1.05;
  }
  .c-star-cast:hover .c-star-cast__img {
    transition: 0.1s;
    box-shadow: 0.2rem 0.2rem 0 0 var(--color-cg-red);
  }
  .c-star-cast:hover .c-star-cast__text--name {
    transition: 0.1s;
    color: var(--color-cg-red);
  }
}
.c-star-cast__img {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: box-shadow 0.4s;
  background-color: var(--color-bg-ultradark);
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-cg-blue);
}
@media (max-width: 1399.98px) {
  .c-star-cast__img {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 575.98px) {
  .c-star-cast__img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.c-star-cast__text {
  display: block;
}
.c-star-cast__text--name {
  transition: 0.4s;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 575.98px) {
  .c-star-cast__text--name {
    font-size: 0.8rem;
  }
}
.c-star-cast__text--credit {
  color: var(--color-text-span);
  font-size: 0.85rem;
  line-height: 1.2rem;
}
@media (max-width: 575.98px) {
  .c-star-cast__text--credit {
    font-size: 0.8rem;
  }
}
.c-star-cast__wrapper {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem 0.5rem;
  width: calc(100% + 2.5rem);
}
@media (max-width: 1399.98px) {
  .c-star-cast__wrapper {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199.98px) {
  .c-star-cast__wrapper {
    width: 100%;
    gap: 1.5rem 2.5rem;
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 991.98px) {
  .c-star-cast__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .c-star-cast__wrapper {
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 575.98px) {
  .c-star-cast__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 0.5rem;
  }
}
.c-star-cast--inactive img {
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-text-span);
}
.c-star-cast--inactive:hover {
  scale: 1;
}
.c-star-cast--inactive:hover .c-star-cast__img {
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-text-span);
}
.c-star-cast--inactive:hover .c-star-cast__text--name {
  color: var(--color-text);
}

.c-playlist {
  background-color: #3c640a;
  background: linear-gradient(145deg, #3c640a 0%, #00271e 100%);
  border-radius: 1.25rem;
  padding: 1rem;
}
.c-playlist__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.c-playlist__img {
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
}
.c-playlist ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-playlist ul li h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.c-playlist__song {
  width: 100%;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0) !important;
}
.c-playlist__links {
  margin-top: 1rem;
}
.c-playlist__links span {
  color: var(--color-text-span);
}
.c-playlist__links ul {
  margin-top: 0.4rem;
}
.c-playlist__links ul li {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.4s;
}
.c-playlist__links ul li:hover {
  transition: transform 0.1s;
  transform: scale(1.08);
}
.c-playlist__links ul li img {
  width: 1.25rem;
  height: 1.25rem;
}
.c-playlist__link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
}
.c-playlist__link img {
  margin-right: 0.25rem;
}

.c-trailer h3 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 1.25rem;
}
.c-trailer__img-wrapper {
  aspect-ratio: 16/9;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-bg-dark);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.c-trailer__img-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}
.c-trailer__img-wrapper:hover {
  transition: box-shadow 0.1s;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-cg-red);
}
.c-trailer__img-wrapper:hover img {
  transition: transform 0.4s;
  transform: scale(1.025);
}
.c-trailer__primary {
  width: calc(50% - 1rem);
}
@media (max-width: 767.98px) {
  .c-trailer__primary {
    width: 100%;
  }
}
.c-trailer__secondary {
  width: calc(50% - 1rem);
}
@media (max-width: 767.98px) {
  .c-trailer__secondary {
    width: 100%;
  }
}
.c-trailer__tertiary {
  width: calc(33% - 1.5rem);
}
@media (max-width: 991.98px) {
  .c-trailer__tertiary {
    width: calc(50% - 1rem);
  }
}

.c-video__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 4.5rem - 6px - 5rem);
  padding: 2.5rem 0;
}
.c-video__return {
  cursor: pointer;
  position: fixed;
  background-color: rgba(0, 0, 0, 0);
  color: var(--color-cg-red);
  font-size: 1rem;
  transition: color 0.4s;
  position: absolute;
  top: 1rem;
}
.c-video__return:hover {
  transition: color 0.1s;
  color: var(--color-highlight);
}
.c-video__text {
  margin-top: 0.75rem;
}
.c-video__text p {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .c-video__text p {
    width: 80%;
  }
}

.c-video__popup {
  display: none;
  z-index: 2;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 0%, rgba(11, 0, 27, 0.9) 100%);
  width: 100vw;
  height: calc(100vh - 4.5rem - 4px);
  position: fixed;
  bottom: 0;
  overflow: scroll;
  animation: fadeoutt 0.5s;
}
.c-video__popup--active {
  animation: fadeinn 0.25s;
}
.c-video__popup iframe {
  margin-top: 5rem;
  width: 100%;
  aspect-ratio: 16/9;
}

@keyframes fadeinn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeoutt {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.c-galleryy {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0.5rem 0.5rem 0 0 var(--color-bg-dark);
  display: flex;
  align-items: center;
}
.c-galleryy--wrapper {
  display: flex;
  justify-content: space-between;
}
.c-galleryy__primary {
  width: calc(50% - 2rem);
}
.c-galleryy__secondary {
  width: calc(50% - 2rem);
}
.c-galleryy__tertiary {
  width: calc(33% - 1.5rem);
}

.u-loading-gradient-background {
  animation: animateBg 5s linear infinite;
  background-image: linear-gradient(-45deg, var(--color-bg-ultradark), var(--color-bg-light), var(--color-bg-ultradark), var(--color-bg-light), var(--color-bg-ultradark));
  background-size: 200% 200%;
}

@keyframes animateBg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.c-cast-detail {
  padding: 2.5rem 0 2.5rem 0;
}
.c-cast-detail__main-gallery {
  margin-bottom: 2rem;
  overflow: hidden;
  height: 28rem;
  display: grid;
  grid-template-columns: 25% 1fr 15%;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}
@media (max-width: 1399.98px) {
  .c-cast-detail__main-gallery {
    height: 24rem;
  }
}
@media (max-width: 991.98px) {
  .c-cast-detail__main-gallery {
    grid-template-columns: 40% 1fr 1fr 25%;
    grid-template-rows: repeat(3, 1fr);
    height: 20rem;
  }
}
.c-cast-detail__main-gallery-item {
  background-size: cover;
  background-position: center;
}
.c-cast-detail__main-gallery-item:nth-child(1) {
  background-position: center top;
  grid-area: 1/1/4/2;
  background-image: url(../img/cast/Callum_Stamp-0/Callum_Stamp-large1.webp);
}
.c-cast-detail__main-gallery-item:nth-child(2) {
  grid-area: 1/2/4/3;
  background-image: url(../img/cast/Callum_Stamp-0/Youtube-ThumbnailTCESOTM.jpg);
}
.c-cast-detail__main-gallery-item:nth-child(3) {
  grid-area: 1/3/2/4;
  background-image: url(../img/cast/Callum_Stamp-0/pic3.jpeg);
}
.c-cast-detail__main-gallery-item:nth-child(4) {
  grid-area: 2/3/3/4;
  background-image: url(../img/cast/Callum_Stamp-0/pic4.jpeg);
}
.c-cast-detail__main-gallery-item:nth-child(5) {
  grid-area: 3/3/4/4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-cast-detail__main-gallery-item:nth-child(5):hover {
  transition: color 0.4s;
}
.c-cast-detail__main-gallery-item:nth-child(5):hover span {
  transition: color 0.1s;
  color: var(--color-highlight);
}
.c-cast-detail__main-gallery-item:nth-child(5) span {
  pointer-events: none;
  z-index: 1;
  position: absolute;
}
.c-cast-detail__main-gallery-item:nth-child(5) div {
  width: 100%;
  height: 100%;
  filter: brightness(25%);
  background-image: url(../img/cast/Callum_Stamp-0/pic5.jpeg);
  background-size: cover;
  transition: filter 0.4s;
}
.c-cast-detail__main-gallery-item:nth-child(5) div:hover {
  transition: filter 0.1s;
  filter: brightness(50%);
}
@media (max-width: 991.98px) {
  .c-cast-detail__main-gallery-item:nth-child(1) {
    grid-area: 1/1/4/2;
  }
  .c-cast-detail__main-gallery-item:nth-child(2) {
    grid-area: 1/2/3/5;
  }
  .c-cast-detail__main-gallery-item:nth-child(3) {
    grid-area: 3/2/4/3;
  }
  .c-cast-detail__main-gallery-item:nth-child(4) {
    grid-area: 3/3/4/4;
  }
  .c-cast-detail__main-gallery-item:nth-child(5) {
    grid-area: 3/4/4/5;
  }
}
.c-cast-detail__tags {
  margin-top: 0.5rem;
  display: flex;
  justify-content: start;
  gap: 1.8rem;
}
.c-cast-detail__tags li {
  list-style: disc;
  color: var(--color-text-span);
  font-size: 1.15rem;
  margin-left: -0.2rem;
}
.c-cast-detail__tags li:first-child {
  list-style: none;
  margin-left: 0;
}
.c-cast-detail p {
  margin-top: 1.5rem;
}
.c-cast-detail__known-item {
  background-color: aquamarine;
}
.c-cast-detail__known-item img {
  max-width: 50%;
}

.c-gallery {
  height: calc(100vh - 4.5rem - 4px);
  background-color: rgba(0, 0, 0, 0);
}
.c-gallery h3 {
  font-size: 0.8rem;
  color: var(--color-text-span);
  margin-bottom: 0.25rem;
}
.c-gallery__nav {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-gallery__close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
}
.c-gallery__close svg {
  fill: var(--color-text);
  width: 1rem;
  height: 1rem;
}
.c-gallery__close:hover {
  color: var(--color-highlight);
}
.c-gallery__close:hover .c-gallery__close svg {
  fill: var(--color-highlight);
}
.c-gallery__counter {
  display: flex;
  justify-content: end;
}
.c-gallery__counter h1 {
  display: inline;
  font-size: 1rem;
  margin-right: 2rem;
  color: var(--color-highlight);
}
.c-gallery__num-current {
  color: var(--color-highlight);
}
.c-gallery__view {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 4.5rem - 4px - 3rem);
}
.c-gallery__view img {
  max-width: 100%;
  max-height: 100%;
}
.c-gallery__info-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.c-gallery__info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  width: 100%;
  padding: 0.5rem 0 1rem 0;
  bottom: 0;
  left: 0;
  background: rgba(10, 0, 0, 0.75);
}
.c-gallery__overview {
  width: 100vw;
  bottom: 5rem;
  height: 0;
  padding-bottom: 0;
  transition: height 0.4s;
  display: flex;
  gap: 0.5rem;
  overflow: auto;
  overflow-x: visible;
  padding: 0 1.5rem;
}
.c-gallery__overview img {
  height: 6.5rem;
  transition: all 0.1s;
  outline-offset: -2px;
}
.c-gallery__overview img:hover {
  outline: 2px solid var(--color-highlight);
  transition: all 0.1s;
  filter: brightness(125%);
}
.c-gallery__overview--active {
  height: 7rem;
}
.c-gallery__overview--active-img {
  outline-offset: -2px;
  outline: 2px solid var(--color-cg-red);
}
.c-gallery__open-overview {
  cursor: pointer;
  color: var(--color-cg-red);
  transition: color 0.4s;
}
.c-gallery__open-overview:hover {
  transition: color 0.1s;
  color: var(--color-cg-darkred);
}

.c-about {
  padding: 5rem 0;
}
.c-about h1 {
  color: var(--color-cg-red);
  text-align: center;
  margin-bottom: 2.5rem;
}
.c-about__img-caption {
  margin-top: 0.5rem;
  color: var(--color-text-span);
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
.u-hidden {
  display: none;
}

.u-margin-nav {
  margin-top: 4.5rem;
}

.u-span-color {
  color: var(--color-text-span);
}

.u-bg-dark {
  background: linear-gradient(145deg, var(--color-bg-dark) 0%, var(--color-bg-ultradark) 100%);
}
.u-bg-dark--red {
  background: linear-gradient(145deg, #27000f 0%, #0f0027 100%);
}

.u-bg-light {
  background: linear-gradient(145deg, var(--color-bg-light) 0%, var(--color-bg-dark) 100%);
}

.u-text-highlight {
  color: var(--color-highlight);
}

.u-hover-highlight:hover {
  color: var(--color-highlight) !important;
}

.u-gate {
  color: var(--color-text);
  cursor: text;
}
.u-gate:hover {
  color: var(--color-text);
}