.header, footer {
    display: none;
}

.custom-header {
    padding: 10px 30px;
    display: flex;
    align-items: flex-end;
    background-color: #0f0f0f;
    position: relative;
}

.custom-header .title {
    width: fit-content;
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    margin-right: auto;
}

.custom-header .call-action {
}
.custom-header .logo {
    margin-left: 50px;
}

.custom-header .logo img {
    opacity: 1;
}

.custom-header .logo path:first-of-type {
    fill: #fff;
}

body {
    background-color: #0f0f0f;
}

.page {
    margin: 0;
    transition: 300ms;
}

.pride.page {
    min-height: 100vh;
    background-color: #0f0f0f;
    overflow-y: hidden;
}

.page.pride .bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    max-height: 70%;
    max-width: 30%;
}

#showcase {
    background-color: #0f0f0f;
    /* height: 100%; */
    /* padding-right: 150px; */
    padding: 70px 0;
    padding-top: 20px;
}

.pride .artists .artist {
    width: 300px;
    height: 533px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: visible;
    transition: transform 1.2s ease-out,opacity .5s;
    opacity: 0;
    transform: translateX(150px);
    margin: 30px;

    max-height: 70vh;
}

.pride .artists .artist::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 200ms ease-out;
    backdrop-filter:  grayscale(100%);
}

.pride .artists .artist:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter:  grayscale(0);

}

.pride #showcase .swiper {
    padding-bottom: 60px;
}
.pride .artist .name {
    position: absolute;
    font-size: 24px;
    bottom: -40px;
    left: 30px;
    font-weight: 600;
    transition: 200ms;
    color: #fff;
    opacity: 0;
    user-select: none;
    text-shadow: 2px 2px 0 #000;
    letter-spacing: 1px;
    line-height: 140%;
    max-width: 80%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pride .artists .artist:hover .name {
    opacity: 1;
}

.pride .artists .artist.slide-visible {
    opacity: 1;
    transform: translateX(0);
}

.pride-artist #showcase {
    padding: 0;
}

.pride-artist .name {
    position: fixed;
    top: 80px;
    left: 30px;
    font-size: 32px;
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pride-artist .name span {
    color: #fff;
    mix-blend-mode: difference;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0f0f0f;
    opacity: 1;
    transition: opacity 500ms;
    z-index: 20;
    pointer-events: none;
}

.pride .loading {
    opacity: 0;
}

.pride-artist .content {
    display: none;
    /* opacity: 0; */
    transition: 300ms;
    background-color: #0f0f0f;
}

.pride-artist .loading .name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 600;
    width: 100%;
    line-height: 140%;
    text-align: center;
    color: #fff;
    background: -webkit-linear-gradient( 92deg, #95d7e3, #eb76ff );
    background-size:600vw 600vw;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textAnimate 3s linear infinite alternate;
    width: fit-content;
}

@keyframes textAnimate {
    from {
      filter: hue-rotate(0deg);
      background-position-x: 0%;
      
    }
    to {
      filter: hue-rotate(360deg);
      background-position-x: 600vw;
      
    }
  }

.pride-artist .artists .swiper-slide:last-child {
    margin-right: 60px;
}
.pride-artist .artists .swiper-slide:not(:nth-child(1)) {
    position: relative;
    overflow: visible;
    transition: transform 1.2s ease-out,opacity .5s;
    opacity: 0;
    transform: translateX(150px);
    margin: 0px;
    user-select: none;
}

.pride-artist .artists .swiper-slide.slide-visible {
    opacity: 1;
    transform: translateX(0);
}

.pride-artist .swiper-slide.info {
    display: flex;
}

.pride-artist .swiper-slide.info .arrow-wrapper {
    display: flex;
    gap: 10px;
    align-self: center;
    align-items: center;
    color: #fff;
    height: fit-content;
    margin: auto 0;
}
.pride-artist .swiper-slide.info .arrow {
    background-color: #fff;
    height: 1px;
    position: relative;
    width: 55px;
    transform: scale(-1);
}

.pride-artist .swiper-slide.info .arrow::after {
    content: "";
    display: inline-block;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    transform: rotate(-45deg);
    transform-origin: top right;
    background-color: #fff;
}

.pride-artist .swiper-slide.info .arrow::before {
    content: "";
    display: inline-block;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    transform: rotate(45deg);
    transform-origin: bottom right;
    background-color: #fff;
}

.pride-artist .swiper-slide.info > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.pride-artist .swiper-slide.info .description {
    color: #fff;
    margin-top: 180px;
    line-height: 140%;
    user-select: none;
}

.pride-artist .swiper-slide.info .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    height: fit-content;
}


.pride-artist .swiper-slide.info .social i {
    color: #ff1f6d;
    transition: 200ms;
    font-size: 20px;
}

.pride-artist .swiper-slide.info a:hover i {
    color: #fff;
}

.pride-artist .spacing-md {
    width: 25vw;
}

.pride-artist .spacing-sm {
    width: 5vw;
}

.pride-artist .artists .swiper-slide {
    display: flex;
    flex-shrink: 0;
    width: fit-content;
    /* margin: 0 !important; */
    gap: 40px;
}

.pride-artist .swiper-slide:nth-child(1) {
    max-width: 600px;
    margin: 0 30px;
}

.pride-artist .swiper-slide:nth-child(2) {
    max-width: 600px;
}

.pride-artist .swiper-slide div {
    height: 100vh;
    display: flex;
}

.pride-artist .swiper-slide video,
.pride-artist .swiper-slide iframe,
.pride-artist .swiper-slide img {
    max-height: 70%;
    margin: auto 0;
}

.pride-artist .content .close-btn {
    color: #fff;
    font-size: 32px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 11;
    border: none;
    outline: none;
    background-color: transparent;
}

.pride-artist .content .close-btn:hover {
    cursor: pointer;
}

.pride-artist .content .close-btn svg path {
    fill: #fff;
    width: 40px;
}

.pride-artist .swiper-slide video,
.pride-artist .swiper-slide iframe {
    width: 50vw;
    height: 30vw;
}
@media screen and (max-width: 768px) {
    .pride-artist .artists .swiper-slide:nth-child(1) {
        flex-direction: column-reverse;
    }
    .pride-artist .artists .swiper-slide .arrow-wrapper {
        margin-top: 30px;
    }
    .pride-artist .content .close-btn {
        right: 10px;
    }
    .pride-artist .artists .swiper-slide.info .description {
        margin-top: 110px;
    }
    .pride-artist .swiper-slide video,
    .pride-artist .swiper-slide iframe {
        width: 80vw;
        height: 100%;
    }
    .pride .artists .artist::before {
        opacity: 0;
    }
    .custom-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }

    .custom-header .call-action {
        order: -1;
    }

    .custom-header .logo {
        margin: 0;
    }
}



@media screen and (max-width: 470px) {

    .pride .arrow-wrapper {
        display: flex !important;
    }

    .logo svg {
        width: 90px;
    }
} 

.pride .arrow-wrapper {
    display: flex;
    gap: 10px;
    align-self: center;
    align-items: center;
    color: #fff;
    height: fit-content;
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: none;
}
.pride .arrow {
    background-color: #fff;
    height: 1px;
    position: relative;
    width: 55px;
    transform: scale(-1);
}

.pride .arrow::after {
    content: "";
    display: inline-block;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    transform: rotate(-45deg);
    transform-origin: top right;
    background-color: #fff;
}

.pride .arrow::before {
    content: "";
    display: inline-block;
    height: 1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    transform: rotate(45deg);
    transform-origin: bottom right;
    background-color: #fff;
}

.call-action {
    color: #fff;
    margin-top: 0;

}

.call-action a {
    color: #fff;
    line-height: 40px;
    border-color: #fff;
}

.call-action a::after, .call-action a::before {
    background-color: #0f0f0f;
}