/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  position: fixed;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  transition: 0.5s ease-out;
  transform: translateY(-75px);
  animation: fadeInTop 1s ease forwards;
}
header:hover {
  background-color: rgb(10, 10, 10);
}
header.header--scrolled {
  background-color: rgb(10, 10, 10);
}
header .website-title {
  text-align: center;
  letter-spacing: 4px;
  line-height: 1;
  padding: 15px;
}
header .website-title h1 {
  font-size: 42px;
  font-weight: 600;
}
header .website-title div {
  font-size: 18px;
  font-weight: 300;
}
header .website-title .logo-svg {
  transition: 0.5s ease-out;
  position: relative;
  max-height: 60px;
}
header .website-title .logo-svg__helper {
  opacity: 0;
  position: absolute;
  bottom: 15px;
  left: -3px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: rgb(10, 10, 10);
}
header .website-title .logo-A {
  transition: 0.2s;
}
header .website-title .logo-VALERI {
  transition: 0.2s;
}
header .website-title .logo-music-group {
  opacity: 0;
  position: relative;
  transition: 0.2s ease-in-out;
  transform: translateX(-50px);
  animation: fadeInLeft 1s 0.5s ease forwards;
}
header nav {
  position: absolute;
  right: 35px;
}
header ul {
  display: flex;
  grid-gap: 20px;
}
header ul li {
  letter-spacing: 3px;
  text-transform: uppercase;
  scroll-behavior: smooth;
}

header.header--scrolled .logo-svg {
  max-height: 30px;
}
header.header--scrolled__helper {
  opacity: 1;
}
header.header--scrolled .logo-A {
  transform: translate(-120px, 0px) !important;
}
header.header--scrolled .logo-VALERI {
  transform: scaleX(-1) translate(-27px, 0px) !important;
}
header.header--scrolled .logo-music-group {
  opacity: 0 !important;
  animation: none;
}

.site-main {
  width: 100%;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-75px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAniV {
  0% {
    transform: translateX(210px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes logoAniA {
  0% {
    transform: translateX(-210px);
  }
  100% {
    transform: translateX(0);
  }
}
/*Underline animation*/
.vuani {
  display: inline-block;
  position: relative;
}

.vuani::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: rgb(248, 248, 248);
  opacity: 0.75;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.vuani:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
@keyframes scaleAppear {
  from {
    opacity: 0;
    transform: scale(10);
  }
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}
.gsap-ltr {
  position: relative;
  left: -50px;
}

.gsap-ltr-1 {
  position: relative;
  left: -70px;
}
@media only screen and (min-width: 1024px) {
  .gsap-ltr-1 {
    left: -200px;
  }
}

h2.gsap-ltr-1 {
  left: -100px;
}

.gsap-rtl-1 {
  position: relative;
  left: 80px;
}
@media only screen and (min-width: 1024px) {
  .gsap-rtl-1 {
    left: 200px;
  }
}

.gsap-utd {
  position: relative;
  top: -150px;
}

section {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  scroll-margin: 40px;
}
@media only screen and (min-width: 1024px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
    scroll-margin: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  section {
    overflow: hidden;
  }
}
section:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
  right: 0;
  top: 0;
  width: 100%;
  background-image: url("assets/images/noise2.png");
}
.section__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  z-index: 1;
}

.img-container {
  height: 300px;
  width: 300px;
}
@media only screen and (min-width: 1024px) {
  .img-container {
    height: 500px;
    width: 500px;
  }
}
.img-container img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.info-intro {
  font-size: 20px;
  max-width: 1200px;
  text-align: center;
  line-height: 1.4;
  margin: 100px auto 120px;
}
@media only screen and (min-width: 1024px) {
  .info-intro {
    font-size: 64px;
    margin: 70px auto 170px;
  }
}
.info-intro span {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .info-intro span {
    font-size: 90px;
    font-weight: 400;
  }
}
.info-intro strong {
  font-weight: 800;
}

.team .section__inner {
  margin-top: 25px;
}
.team__grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 100px;
}
@media only screen and (min-width: 1024px) {
  .team__grid {
    grid-template-columns: 50% 50%;
  }
}
.team__video {
  width: 420px;
  margin-top: -110px;
  margin-bottom: 50px;
}
.team__video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.info {
  padding-bottom: 100px;
  /* Fallback for older browsers: */
  /* Fancy new value: */
  background: linear-gradient(in oklch, #182034, #e8d39c 175%);
}
@media only screen and (min-width: 1024px) {
  .info {
    padding-bottom: 180px;
  }
}

h2 {
  font-family: "Mukta", sans-serif;
  margin-bottom: 40px;
  font-size: 50px;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 800;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 80px;
  }
}

h3 {
  font-family: "Reddit Sans", sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.copy {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 50px;
  font-family: "Reddit Sans", sans-serif;
  letter-spacing: 1px;
}

.quote {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 24px;
}

p {
  margin-top: 15px;
  margin-bottom: 15px;
}

.video-container {
  width: 100%;
  height: 100vh;
}
.video-container .video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 100px;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
}
.video-container .video-overlay__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.video-container .video-overlay svg {
  display: block;
  margin: 0 auto;
}
.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo-animation {
  opacity: 0;
  transform: scale(10);
  animation: scaleAppear 0.5s ease-in-out 0.2s forwards;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .logo-animation {
    scale: 0.4;
    margin-bottom: -15px;
  }
}
.logo-animation svg path {
  opacity: 0;
}
.logo-animation svg path:nth-of-type(1) {
  opacity: 1;
  transform: translateX(210px);
  animation: logoAniV 0.75s ease-in-out 1.4s forwards;
}
.logo-animation svg path:nth-of-type(2) {
  animation: fadeIn 0.5s ease-in-out 1.9s forwards;
}
.logo-animation svg path:nth-of-type(3) {
  animation: fadeIn 0.5s ease-in-out 2s forwards;
}
.logo-animation svg path:nth-of-type(4) {
  animation: fadeIn 0.5s ease-in-out 2.1s forwards;
}
.logo-animation svg path:nth-of-type(5) {
  animation: fadeIn 0.5s ease-in-out 2.2s forwards;
}
.logo-animation svg path:nth-of-type(6) {
  animation: fadeIn 0.5s ease-in-out 2.3s forwards;
}
.logo-animation svg path:nth-of-type(7) {
  opacity: 1;
  transform: translateX(-210px);
  animation: logoAniA 0.75s ease-in-out 1.4s forwards;
}

.logo-mg {
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 2.8s forwards;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .logo-mg {
    gap: 6px;
  }
}
.logo-mg span {
  font-size: 62px;
  letter-spacing: 10px;
  display: inline-block;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .logo-mg span.logo-mg__main {
    font-size: 20px;
    letter-spacing: 6px;
  }
}
.logo-mg span.logo-mg__est {
  font-size: 17px;
  letter-spacing: 3px;
  margin-top: -8px;
  text-align: right;
  margin-right: 72px;
  font-size: 17px;
  letter-spacing: 3px;
  margin-top: -3px;
  text-align: right;
  text-align: center;
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .logo-mg span.logo-mg__est {
    font-size: 10px;
  }
}

.footer {
  padding: 50px 0;
  background-color: rgb(10, 10, 10);
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 150px 0;
  }
}
.footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
@media only screen and (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__inner ul li {
  margin: 15px 0;
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .footer__left {
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer__middle {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer__middle {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .footer__right {
    align-items: flex-end;
  }
}
.footer__socials {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.footer__socials img {
  filter: brightness(0) invert(1);
  width: auto;
}

.sticky-socials {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.2s ease-in-out;
}
.sticky-socials.hidden {
  opacity: 0;
  visibility: hidden;
}
.sticky-socials a {
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}
.sticky-socials a:hover {
  opacity: 1;
  transform: scale(1.4);
}
.sticky-socials img {
  filter: brightness(0) invert(1);
}

.button-container-sketch {
  margin: 50px auto 5rem;
  position: relative;
  width: 15.5rem;
  height: 3.9rem;
  overflow: hidden;
  transition: 0.5s;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: 10px;
  background-color: rgb(10, 10, 10);
}
.button-container-sketch:hover {
  transform: scale(1.1);
}
.button-container-sketch a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  -webkit-mask: url("assets/images/urban-sprite.png");
  mask: url("assets/images/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  color: #000;
  width: 101%;
  height: 100%;
  cursor: pointer;
  animation: ani 0.7s steps(29) forwards;
}
.button-container-sketch a:hover {
  animation: ani2 0.7s steps(29) forwards;
}
.button-container-sketch .mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  width: 101%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact {
  text-align: center;
  margin-top: -100px;
  padding-top: 200px;
  background-color: rgb(145, 133, 94);
  background: linear-gradient(in oklch, #182034 -200%, #e8d39c 120%);
}

.text-img {
  display: grid;
  grid-template-columns: 100%;
  place-items: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .text-img {
    margin-bottom: -50px;
    grid-template-columns: 50% 50%;
  }
}
.text-img.text-img--inverse {
  margin-bottom: 50px;
}
.text-img .text-img__img {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .text-img .text-img__img {
    margin-bottom: 0;
  }
}
.text-img--inverse.text-img .text-img__img {
  order: 2;
}

.text-img .text-img__text {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Reddit Sans", sans-serif;
  letter-spacing: 1.1px;
  font-weight: 200;
  z-index: 1;
  margin-bottom: 30px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  .text-img .text-img__text {
    margin-bottom: 0;
  }
}
.text-img--inverse.text-img .text-img__text {
  order: 1;
}

.talent {
  overflow: hidden;
  padding-top: 120px;
  background-color: #37474F;
  background-color: #29353a;
  padding-bottom: 200px;
}
.talent .section__inner {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1024px) {
  .talent .section__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.talent h2 {
  margin-bottom: 75px;
  text-align: center;
  color: #131313 !important;
}

.talent-grid-headline {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 8px;
  height: 60px;
  position: relative;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1024px) {
  .talent-grid-headline {
    font-size: 240px;
    letter-spacing: 20px;
    height: 180px;
  }
}
.talent-grid-headline::-moz-selection {
  background: none;
}
.talent-grid-headline::selection {
  background: none;
}

.talent-grid-headline--1 {
  left: -80px;
}
@media only screen and (min-width: 1024px) {
  .talent-grid-headline--1 {
    left: -200px;
  }
}

.talent-grid-headline--2 {
  right: -200px;
}
@media only screen and (min-width: 1024px) {
  .talent-grid-headline--2 {
    right: -200px;
  }
}

.talent-slider--1 {
  margin-bottom: 125px;
}

.talent-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .talent-grid {
    display: grid !important;
    gap: 25px;
  }
}
.talent-grid.talent-grid--4 {
  grid-template-columns: 100%;
}
@media only screen and (min-width: 1024px) {
  .talent-grid.talent-grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.talent-grid.talent-grid--5 {
  grid-template-columns: 100%;
}
@media only screen and (min-width: 1024px) {
  .talent-grid.talent-grid--5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.talent-grid.talent-grid--6 {
  grid-template-columns: 100%;
}
@media only screen and (min-width: 1024px) {
  .talent-grid.talent-grid--6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.card {
  position: relative;
  perspective: 1500px;
}
@media only screen and (min-width: 1024px) {
  .card {
    display: contents;
  }
}
.card > * {
  position: relative;
}
.card .card__inner {
  display: flex;
  align-content: end;
  align-items: end;
  transition-duration: 300ms;
  overflow: hidden;
  border-radius: 3px;
  height: 100%;
  aspect-ratio: 4/6;
}
.card .card__inner:hover {
  transition-duration: 150ms;
  box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.2666666667);
}
.card .card__content {
  display: grid;
  transition: 0.2s ease-in-out;
  transform: translateY(45px);
  padding: 15px;
}
.card:hover .card__content {
  transform: translateY(-5px);
}
.card__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.card__img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
  border-radius: 3px;
  vertical-align: top;
}
.card__img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
}
.card__img--top img {
  -o-object-position: top;
     object-position: top;
}
.card:hover .card__img img, .card:hover .card__img video {
  filter: grayscale(1);
}
.card__darken {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%);
  transition: 0.4s ease-in-out;
}
.card__headline {
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  cursor: default;
  text-transform: uppercase;
}
.card__copy {
  font-size: 21px;
  opacity: 0.7;
  margin-bottom: 15px;
  cursor: default;
}
.card__cta {
  display: flex;
  gap: 10px;
}
.card__social-link {
  filter: brightness(0) invert(1);
  transition: transform 0.1s ease-in-out;
}
.card__social-link:hover {
  transform: scale(1.2);
}

@media only screen and (min-width: 1024px) {
  .talent-slider .splide__track {
    padding-top: 0;
  }
}

.team-presentation {
  z-index: 1;
  margin-top: -100px;
  padding-top: 160px;
  padding-bottom: 150px;
  background-color: rgb(69, 69, 69);
}
.team-presentation h2 {
  text-align: center;
  color: rgb(248, 248, 248);
  margin-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .team-presentation h2 {
    margin-bottom: 40px;
  }
}
.team-presentation button {
  transition: 0.2s ease-in-out;
}
.team-presentation button:disabled,
.team-presentation button[disabled] {
  opacity: 0;
}

.splide__pagination {
  gap: 12px;
}
.splide__pagination button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid rgb(248, 248, 248);
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.splide__pagination button:hover {
  background: rgba(255, 255, 255, 0.5);
}
.splide__pagination button.is-active {
  background: rgb(248, 248, 248);
  transform: scale(1.2);
}

.splide__track {
  padding-top: 55px;
  padding-bottom: 25px;
}
@media only screen and (min-width: 1024px) {
  .splide__track {
    padding-bottom: 55px;
  }
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: -100px;
  right: -100px;
  display: flex;
  justify-content: space-between;
}
.splide__arrows .splide__arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.splide__arrows .splide__arrow svg {
  width: 20px;
  height: 20px;
  filter: invert(100%);
  transition: 0.2s ease-in-out;
}
.splide__arrows .splide__arrow svg:hover {
  transform: scale(1.4);
}
.splide__arrows .splide__arrow--prev {
  transform: rotate(180deg);
}

.pola {
  text-align: center;
}
.pola .pola__img {
  position: relative;
}
.pola .pola__img img {
  transition: 0.2s ease-in-out;
}
.splide__slide.is-active .pola .pola__img img {
  transform: scale(1.1);
}
@media only screen and (min-width: 1024px) {
  .splide__slide.is-active .pola .pola__img img {
    transform: scale(1.2);
  }
}
.pola .pola__img-name {
  position: absolute;
  bottom: 46px;
  left: 0;
  right: 0;
  font-size: 28px;
  text-align: center;
  color: rgb(10, 10, 10);
  transition: 0.2s ease-in-out;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.5px;
}
.splide__slide.is-active .pola .pola__img-name {
  transform: translateY(22px);
  font-size: 38px;
}
@media only screen and (min-width: 1024px) {
  .splide__slide.is-active .pola .pola__img-name {
    transform: translateY(36px);
  }
}
.pola img {
  width: 100%;
  margin-bottom: 30px;
}
.pola__description {
  margin-top: 45px;
  color: rgb(248, 248, 248);
  opacity: 0;
  transition: 0.3s ease-out;
  transform: translateY(-20px);
}
.splide__slide.is-active .pola__description {
  opacity: 1;
  transform: translateY(0px);
}
.pola__name {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 5px;
}
.pola__role {
  position: relative;
}

.partners {
  background-color: #202020;
  padding-top: 25px;
  padding-bottom: 25px;
  overflow: hidden;
}
.partners .section__inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.partners h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.partners ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners ul li img {
  filter: saturate(0);
}

.marquee-items {
  height: 15%;
  width: auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 30px;
}
.marquee-items .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
  width: 50%;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  color: black;
  font-size: 21px;
}
.marquee-items .marquee-item img {
  width: 230px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.wave-animation-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  bottom: 0;
  position: absolute;
  left: 0px;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 14s linear infinite;
}
.parallax1 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax2 > use {
  animation: move-forever2 12s linear infinite;
}
.parallax2 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax3 > use {
  animation: move-forever3 10s linear infinite;
}
.parallax3 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax4 > use {
  animation: move-forever4 8s linear infinite;
}
.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
.desktop-nav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  background-color: rgb(10, 10, 10);
  padding: 100px 0;
  transition: 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.mobile-nav--open {
  visibility: visible;
  opacity: 1;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.mobile-nav ul li a {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Reddit Sans", sans-serif;
  letter-spacing: 5px;
}
.mobile-nav .mobile-nav-close {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
}

.mobile-nav-open {
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .mobile-nav-open {
    display: none;
  }
}
.mobile-nav-open svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.legal-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 80px;
}
.legal-section h3 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-weight: bold;
}
.legal-section h4 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}
.legal-section div {
  margin-top: 20px;
  margin-bottom: 20px;
}
.legal-section p {
  margin-top: 5px;
  margin-bottom: 15px;
}

body {
  background-color: rgb(10, 10, 10);
  color: rgb(248, 248, 248);
  font-family: "Mukta", sans-serif;
  line-height: 1.2;
}
body a {
  text-decoration: none;
  color: rgb(248, 248, 248);
}

.bg-white {
  background-color: #272727;
  color: rgb(248, 248, 248);
  position: relative;
  transform: skew(0deg, -2deg);
  margin-bottom: 50px;
  overflow: hidden;
}
.bg-white .section__inner {
  transform: skew(0deg, 2deg);
}

img, svg {
  vertical-align: top;
}

.decoration {
  opacity: 0.5;
  cursor: default;
  transition: 0.2s ease-in-out;
}
.decoration--1 {
  transform: skew(-20deg, 0);
}

h3:hover > .decoration {
  opacity: 0.2;
}

ul:hover > .decoration {
  transform: skew(20deg, 0);
}/*# sourceMappingURL=style.css.map */