/*::-webkit-scrollbar {
    height: 10px;
    width: 80%;
    position: absolute;
}

::-webkit-scrollbar-track {
    background: #00333200;
    width: 4px;
}
::-webkit-scrollbar-thumb {
    background: #0a6b5aFF;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(13, 123, 96);
    border-radius: 8px;
} */
main {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    position: relative;
}

.albums-header{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: -1.5rem;
}
.albums-title{
    height: fit-content;
    min-width: fit-content;
    font-family: 'Jost';
    font-style: normal;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    color: #bdcdcf;
    transition: 0.25s ease;
    position: relative;
}
.albums-header div{
    content: '';
    background: #bdcdcf;
    opacity: 30%;
    width: 100%;
    height: 1px;
    right: 0;
    bottom: 0.6rem;
}

.album {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    align-content: stretch;
    justify-content: start;
    gap: 12px;
    z-index: 2;
    margin-bottom: -2.5rem;
}
.album-head {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: end;
    align-content: stretch;
    justify-content: space-between;
    color: #bdcdcf !important;
}
.see-more-click {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
a {
    text-decoration: none;
    color:currentColor;
}
.arrowright {
    display: flex;
    align-content: center;
}
.album-title-frame {
    width: fit-content;
    border-radius: 4px;
    border: 1px solid #0a6b5aFF;
    backdrop-filter: blur(2px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
}

.swiper-slide > video {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    object-fit: cover;
}
.swiper-slide > img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
    object-fit: cover;
}

.vid-list{
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    height: fit-content;
    padding: 1.5em;
    background: rgba(4, 74, 59, 0.6);
    mask-image: #ff0000;
    border-radius: 4px;
    backdrop-filter: blur(3px);
    z-index: 1;
    position: relative;
}

.swiper::before {
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px 2px #034440 inset;
    position: absolute;
    opacity: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.swiper div {
    z-index: 0;
}

.swiper-slide-button {
    transform: scale(0.75);
    color: #bdcdcf;
    width: fit-content;
    height: fit-content;
    padding: 1em;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    background: #034c366f;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-pagination-bullet {
    background: #bdcdcf;
    width: 5px;
    height: 5px;
}
main::after {
    content: '';
    background: #bdcdcf;
    mask-image: url(https://64.media.tumblr.com/1af4cd8dea82c86d7ff2f98201744480/63c89bc51636409a-ac/s2048x3072/12262d78f6b1fd3d638ef08d2eca0cbcbb43075a.pnj);
    background-size: cover;
    mask-size: cover;
    background-repeat: no-repeat;
    opacity: 20%;
    width: 58%;
    aspect-ratio: 2/3;
    position: absolute;
    top: -23em;
    right: -3rem;
    z-index: 0;
}
main::before {
    content: '';
    background: #bdcdcf;
    mask-image: url(https://64.media.tumblr.com/86fdf4b5b8059d0f9963d5f84bf125e9/63c89bc51636409a-2e/s2048x3072/89fc9e6bf66dd790cc82443a0858c465ccdef741.pnj);
    background-size: cover;
    mask-size: cover;
    background-repeat: no-repeat;
    opacity: 20%;
    width: 50%;
    aspect-ratio: 2/3;
    position: absolute;
    bottom: -13rem;
    left: -10rem;
    z-index: 0;
}

@media  screen and (max-width:720px) {
  .arrowright {
    transform: scale(0.75);
  }
  .see-more-click{
    gap: 0;
  }
  .swiper-slide-button{
    transform: scale(0.75);
  }
  .swiper-button-next{
    translate: 0.5rem;
  }
  .swiper-button-prev{
    translate: -0.5rem;
  }
  main::before{
    left: -5rem;
    bottom: 3em;
  }
  main::after{
    top: -8rem;
    right: -2em;
  }
}
@media  screen and (max-width:500px) {
  .album-title-frame{
    width: fit-content;
    height: fit-content;
    padding: 8px 18px;
  }
  .arrowright {
    transform: scale(0.75);
  }
  .see-more-click{
    gap: 0;
  }
  .swiper-slide-button{
    transform: scale(0.5);
  }
  .swiper-button-next{
    translate: 1rem;
  }
  .swiper-button-prev{
    translate: -1rem;
  }
  main::after, main::before{
    width: 80%;
  }
}