:root {
  --primary: #fff;
  --secondary: #000;
  --tertiary: #2b1b3b;
  --accent: #ff006f;
  --font: "montserrat", sans-serif;
  --gutter: 132px;
  --xl: 85px;
  --l: 60px;
  --m: 50px;
  --s: 40px;
  --xs: 10px;
}
@media (max-width: 1024px) {
  :root {
    --gutter: 100px;
  }
}
@media (max-width: 768px) {
  :root {
    --gutter: 70px;
    --xl: 45px;
    --l: 30px;
    --m: 25px;
    --s: 20px;
    --xs: 5px;
  }
}
@media (max-width: 500px) {
  :root {
    --gutter: 30px;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  background-color: var(--secondary);
}

body {
  background-color: var(--secondary);
  margin-bottom: auto;
  padding-top: calc(var(--xl) * 1.5);
}

h1, h2, h3, h4, h5, h6, p, a, em, strong, span, button, li, input {
  font-family: var(--font);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button,
[role=button] {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
  background-color: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

::selection {
  background-color: var(--primary);
  color: var(--accent);
}

img::selection {
  background-color: color-mix(in hsl, var(--primary) 50%, transparent 50%);
}

#wpadminbar {
  display: none;
}

main {
  padding-top: 165px;
}

body#home main {
  padding-top: 0px;
}

section {
  position: relative;
  height: auto;
  padding: var(--l) var(--gutter);
}

.link {
  position: relative;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
.link img {
  width: auto;
  height: 0.8em;
}
.link::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  left: unset;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease-out;
}
.link:hover::after, .link.active::after {
  left: 0px;
  right: unset;
  width: 100%;
}

.button1,
.button2 {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--xs);
  position: relative;
  background-color: var(--primary);
  font-size: 14px;
  padding: 1em 1.5em;
  border-radius: 0.5em;
  color: var(--secondary);
  font-family: var(--font);
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 550px) {
  .button1,
  .button2 {
    font-size: 11px;
  }
}
.button1 .label,
.button2 .label {
  position: relative;
  display: block;
  overflow: hidden;
}
.button1 .label p,
.button2 .label p {
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.button1 .label p:nth-of-type(1),
.button2 .label p:nth-of-type(1) {
  translate: 0% 0%;
}
.button1 .label p:nth-of-type(2),
.button2 .label p:nth-of-type(2) {
  position: absolute;
  translate: 0% -100%;
}
.button1 .arrow,
.button2 .arrow {
  width: auto;
  height: 0.8em;
}
.button1:hover .label p,
.button2:hover .label p {
  transform: translateY(100%);
}
.button1:hover .arrow,
.button2:hover .arrow {
  animation: bounce 0.3s ease-in-out infinite alternate;
}
@keyframes bounce {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(15%);
  }
}

.button2 {
  background-color: var(--secondary) !important;
  color: var(--primary) !important;
}

.space {
  min-width: 0.3em;
}

.heading,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-family: var(--font);
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  background-color: var(--primary);
  padding: 0.15em 0.3em;
  mix-blend-mode: difference;
  margin-bottom: 2em;
}
@media (max-width: 550px) {
  .heading,
  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5,
  .content h6 {
    font-size: 17px;
  }
}

.content h2 {
  font-size: 18px;
}
@media (max-width: 550px) {
  .content h2 {
    font-size: 15px;
  }
}

.content h3 {
  font-size: 16px;
}
@media (max-width: 550px) {
  .content h3 {
    font-size: 13px;
  }
}

.content h4 {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 550px) {
  .content h4 {
    font-size: 13px;
  }
}

.content h5 {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 550px) {
  .content h5 {
    font-size: 11px;
  }
}

.content h6 {
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 550px) {
  .content h6 {
    font-size: 9px;
  }
}

.subheading {
  font-size: 18px;
  font-family: var(--font);
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media (max-width: 550px) {
  .subheading {
    font-size: 16px;
  }
}

.body,
.body p {
  font-size: 14px;
  font-family: var(--font);
  letter-spacing: 0.01em;
  color: var(--primary);
  line-height: 1.75em;
  font-weight: 300;
  margin-bottom: 3em;
}
.body:last-of-type,
.body p:last-of-type {
  margin-bottom: 0px;
}
.body a,
.body p a {
  color: var(--primary);
}
@media (max-width: 550px) {
  .body,
  .body p {
    font-size: 12px;
  }
}

.social-media {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  gap: 0.6em;
}
@media (max-width: 768px) {
  .social-media {
    font-size: 14px;
  }
}
.social-media p {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  text-align: left;
  margin-top: 0.6em;
}
.social-media p:first-of-type {
  margin-top: 0px;
}
.social-media ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1em;
  gap: 0.6em;
}
.social-media ul li {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: auto;
  height: 1em;
}
.social-media ul li a {
  width: auto;
  height: 100%;
  display: grid;
  place-items: center;
}
.social-media ul li a svg {
  width: auto;
  height: 100%;
  fill: var(--primary);
  transition: fill 0.3s;
}
.social-media ul li a:hover svg {
  fill: var(--accent);
}

.body-width {
  width: 100%;
  max-width: 1500px;
  margin: 0px auto;
}
.body-width.columns-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}
@media (max-width: 768px) {
  .body-width.columns-layout {
    grid-template-columns: 1fr;
  }
}
.body-width.columns-layout .column {
  width: 100%;
  height: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--xl);
}
.grid .no-content {
  width: 100%;
  grid-column: span 3;
  text-align: left;
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid .no-content {
    grid-column: span 2;
  }
}
@media (max-width: 550px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid .no-content {
    grid-column: span 1;
  }
}

.item {
  width: 100%;
}
.item .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: var(--m);
  overflow: hidden;
  border: solid 0.5px grey;
  border: solid 0.5px color-mix(in hsl, var(--primary) 40%, transparent 60%);
}
.item .thumbnail img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0%);
  transition: transform 0.75s ease-in-out;
  border: none;
}
.item .thumbnail .cover {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  color: var(--tertiary);
  text-align: center;
  display: grid;
  place-items: center;
  transform: translateY(0%);
  transition: transform 0.75s ease-in-out;
}
.item .thumbnail:hover img, .item .thumbnail:hover .cover {
  transform: translateY(-100%);
}
.item .info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  font-size: 16px;
  gap: 0.5em;
  margin-bottom: var(--s);
}
.item .info p {
  font-size: 1em;
  text-align: left;
  color: inherit;
  text-transform: capitalize;
}
@media (max-width: 550px) {
  .item .info {
    font-size: 14px;
  }
}

#page-transition {
  position: fixed;
  z-index: 99999;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  animation: fadeOut 1s linear 0.5s forwards;
  overflow: hidden;
}
#page-transition #colour {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background-color: var(--tertiary);
  overflow: hidden;
}
#page-transition #colour img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 200px;
  height: auto;
}
#page-transition.active {
  height: 0%;
  animation: expandUp 0.75s linear forwards;
}
#page-transition.active #colour {
  height: 100%;
  animation: expandUp 0.75s linear 0.74s forwards reverse;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    filter: blur(3px);
    pointer-events: all;
  }
  100% {
    opacity: 0;
    filter: blur(0px);
    pointer-events: none;
  }
}
@keyframes expandUp {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
header {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  padding: var(--l);
  background-color: transparent;
  pointer-events: none;
  transition: all 0.5s ease-out;
}
header.active {
  background-color: rgba(0, 0, 0, 0.4);
  padding: var(--s) var(--l);
  backdrop-filter: blur(3px);
}
header .body-width {
  max-width: 100%;
}
header .body-width #header-logo {
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: auto;
  height: calc(var(--xl) + var(--xs));
  width: var(--gutter);
  height: auto;
  pointer-events: all;
}
@media (max-width: 500px) {
  header .body-width #header-logo {
    width: 70px;
  }
}
header .body-width #header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
header .body-width nav {
  width: 100%;
  height: auto;
  pointer-events: all;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: calc(var(--xs) * 2);
}
header .body-width nav .button1 {
  font-size: 14px;
}
header .body-width nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  gap: 1em;
}
header .body-width nav ul li {
  position: relative;
  font-family: var(--font);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
header .body-width nav ul li .link {
  position: relative;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
header .body-width nav ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  gap: 0.25em;
  padding-top: 1em;
}
header .body-width nav ul li .sub-menu li .sub-link {
  pointer-events: all;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  position: relative;
  max-width: 0px;
  height: auto;
  overflow: hidden;
  padding-bottom: 0.25em;
  transition: max-width 0.3s ease-in-out;
}
header .body-width nav ul li .sub-menu li .sub-link span {
  position: relative;
  z-index: 1;
  text-align: left;
  min-width: max-content;
}
header .body-width nav ul li .sub-menu li .sub-link::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: width 0.3s 0.4s;
}
header .body-width nav ul li .sub-menu li .sub-link::after {
  bottom: 0px;
}
header .body-width nav ul li .sub-menu li:nth-of-type(2) .sub-link {
  transition-delay: 0.1s;
}
header .body-width nav ul li .music-dropdown:hover + .sub-menu,
header .body-width nav ul li .sub-menu:hover {
  pointer-events: all;
}
header .body-width nav ul li .music-dropdown:hover + .sub-menu li .sub-link,
header .body-width nav ul li .sub-menu:hover li .sub-link {
  max-width: 100%;
}
header .body-width nav ul li .music-dropdown:hover + .sub-menu li .sub-link::before,
header .body-width nav ul li .sub-menu:hover li .sub-link::before {
  width: 0%;
  transition-delay: 0.15s;
}
header .body-width nav ul li .music-dropdown:hover + .sub-menu li:nth-of-type(2) .sub-link::before,
header .body-width nav ul li .sub-menu:hover li:nth-of-type(2) .sub-link::before {
  transition-delay: 0.25s;
}
header .body-width .main-nav {
  position: relative;
  z-index: 1;
}
header .body-width .main-nav ul li a,
header .body-width .main-nav ul li button {
  font-size: 14px;
}
header .body-width .burger-menu {
  width: var(--l);
  height: auto;
  aspect-ratio: 5/4;
  display: none;
  place-items: center;
  gap: 5px;
  position: relative;
  z-index: 3;
  margin-left: auto;
  pointer-events: all;
}
header .body-width .burger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s;
  position: absolute;
}
header .body-width .burger-menu span:nth-of-type(1) {
  top: 0%;
}
header .body-width .burger-menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .body-width .burger-menu span:nth-of-type(3) {
  bottom: 0%;
}
header .body-width .burger-menu.active span:nth-of-type(1), header .body-width .burger-menu.active span:nth-of-type(2) {
  top: 100%;
  transform: translateY(-100%);
}
header .body-width .burger-menu-nav {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
header .body-width .burger-menu-nav .burger-menu-nav-content {
  background-color: transparent;
  background-image: radial-gradient(var(--tertiary) 40%, transparent 60%, transparent 100%);
  background-size: 300vmax 300vmax;
  background-position: 100% -30%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  pointer-events: inherit;
  transition: background-position 2s ease-out;
}
header .body-width .burger-menu-nav .burger-menu-nav-content nav {
  opacity: 0;
  filter: blur(5px);
  transition: filter 0.75s, opacity 0.75s;
  pointer-events: inherit;
  display: grid;
  place-items: center;
  justify-content: unset;
}
header .body-width .burger-menu-nav .burger-menu-nav-content nav ul {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .body-width .burger-menu-nav.active {
  pointer-events: all;
}
header .body-width .burger-menu-nav.active .burger-menu-nav-content {
  background-position: 50% 50%;
}
header .body-width .burger-menu-nav.active .burger-menu-nav-content nav {
  filter: blur(0px);
  opacity: 1;
  transition-delay: 1.25s;
  transition-duration: 1s;
}
@media (max-width: 768px) {
  header .body-width .main-nav {
    display: none;
  }
  header .body-width .burger-menu {
    display: grid;
  }
  header .body-width .burger-menu-nav {
    display: block;
  }
}

footer {
  background-color: var(--secondary);
  --left: min(10%, calc((100vw - 1500px) / 2));
  background-image: linear-gradient(to right, var(--tertiary) var(--left), var(--secondary) 75%);
  padding: var(--l) var(--gutter);
}
footer nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s);
}
footer nav .subheading {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 2em;
}
@media (max-width: 830px) {
  footer nav .subheading {
    line-height: 1.25em;
  }
}
footer nav .link {
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 580px) {
  footer nav {
    flex-direction: column;
  }
  footer nav .social-media {
    justify-content: flex-start;
  }
}

.carousel {
  position: relative;
  width: var(--carousel-width);
  min-width: var(--carousel-width);
  min-height: var(--slide-height);
  height: auto;
  display: grid;
  place-items: center;
}
.carousel .carousel-container {
  position: relative;
  z-index: 1;
  width: var(--slide-container-width);
  height: auto;
  overflow: hidden;
  display: flex;
  gap: var(--slide-gap);
  z-index: 1;
}
.carousel .carousel-container .slide {
  position: relative;
  min-width: var(--slide-width, auto);
  height: var(--slide-height, auto);
  translate: 0px 0px;
  transition: all 2s ease-in-out;
}
.carousel .carousel-controls {
  position: relative;
  width: 100%;
  padding: var(--s) 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--xs) * 2);
}
.carousel .carousel-controls .prev,
.carousel .carousel-controls .next {
  display: grid;
  place-items: center;
  pointer-events: all;
}
.carousel .carousel-controls .prev img,
.carousel .carousel-controls .next img {
  width: auto;
  height: var(--button-size);
  transform: translateX(0%);
  transition: transform 0.5s ease-out;
}
.carousel .carousel-controls .prev:hover img {
  transform: translateX(-15%);
}
.carousel .carousel-controls .next:hover img {
  transform: translateX(15%);
}
.carousel .carousel-controls .carousel-dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--xs);
}
.carousel .carousel-controls .carousel-dots .background {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: calc(var(--xs) * 1.5);
  height: calc(var(--xs) * 1.5);
  background-color: var(--primary);
  transition: left 0.5s ease-out;
}
.carousel .carousel-controls .carousel-dots .dot {
  position: relative;
  z-index: 2;
  width: calc(var(--xs) * 1.5);
  height: calc(var(--xs) * 1.5);
  border: solid 1px var(--primary);
  background-color: transparent;
  transition: background-color 0.3s;
}
.carousel .carousel-controls .carousel-dots .dot:hover {
  background-color: color-mix(in hsl, var(--primary) 50%, transparent 50%);
}
.carousel .carousel-controls .link {
  margin-left: auto;
  text-transform: uppercase;
}

@media (max-width: 485px) {
  .standard-carousel {
    --button-size: 35px;
  }
}/*# sourceMappingURL=style.css.map */