@charset "utf-8";
html {
    font-size: 62.5% ;
}
:root {
    --primary-black: #1A1A1A;
    --primary-grey: #dedede;
    --primary-white: #FDFDFD;
    --primary-padding_sp: 4.2% ;
    --primary-padding_hp: 4.166667% ;
}
body{
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
/* ----------- loading -----------*/
.loading{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-black);
    z-index: 11000;
}
.loading__item{
    position: relative;
    width: 250px;
    height: 250px;
}
.ripple__origin{
    width: 100%;
    height: 100%;
    position: absolute;
    border: solid 1px var(--primary-white);
    border-radius: 500px;
}
.ripple{
    width: 100%;
    height: 100%;
    position: absolute;
    border: solid 1px var(--primary-white);
    border-radius: 500px;
    animation: wave 1.5s infinite ease-in-out;
}
.ripple:nth-of-type(2) {
    animation: wave 1.5s 0.5s infinite ease-in-out;
}
.ripple:nth-of-type(3) {
    animation: wave 1.5s 1s infinite ease-in-out;
}
@keyframes wave{
    0%{
       opacity: 1;
       transform: scale(1,1);
    }
    100%{
       opacity: 0;
       transform: scale(1.5,1.5);
    }

}
.loading__text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    /* background-color: #54e3fc; */
    color: var(--primary-white);
    font-size: 1.6rem;
    position: absolute;
}

.loading {
    transition: opacity 0.5s ease-out;
}

.loading.fade-out {
    opacity: 0;
}
@media screen and (max-width:1000px) {
    .loading{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-black);
    z-index: 11000;
}
.loading__item{
    position: relative;
    width: 230px;
    height: 230px;
}
.ripple__origin{
    width: 100%;
    height: 100%;
    position: absolute;
    border: solid 1px var(--primary-white);
    border-radius: 500px;
}
.ripple{
    width: 100%;
    height: 100%;
    position: absolute;
    border: solid 1px var(--primary-white);
    border-radius: 500px;
    animation: wave 1.5s infinite ease-in-out;
}
.ripple:nth-of-type(2) {
    animation: wave 1.5s 0.5s infinite ease-in-out;
}
.ripple:nth-of-type(3) {
    animation: wave 1.5s 1s infinite ease-in-out;
}
@keyframes wave{
    0%{
       opacity: 1;
       transform: scale(1,1);
    }
    100%{
       opacity: 0;
       transform: scale(1.5,1.5);
    }

}
.loading__text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    /* background-color: #54e3fc; */
    color: var(--primary-white);
    font-size: 1.5rem;
    position: absolute;
}

.loading {
    transition: opacity 0.5s ease-out;
}

.loading.fade-out {
    opacity: 0;
}
}
/* ---------------------------- */
.background__gray {

    position: fixed;
    z-index: -100;
    height: 100vh;
    width: 100%;
    background: linear-gradient(90deg, #151515 0%, rgba(21, 21, 21, 0.85) 50%, #151515 100%);
}


.text{
    align-items: center;
    position: fixed;
    left: 50%;
    top: 14%;
    transform: translateX(-50%) ;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
 .title,
 .name{
    display:flex;
    /* justify-content: center; */
    color: var(--primary-white);
    font-weight: 300;
    font-feature-settings: "palt";
    font-kerning: normal;
 }
 .Portfolio-p{
    width: 57px;
 }
 .Portfolio-o{
    width: 63px;
 }
 .Portfolio-r{
    width: 46px;
 }
 .Portfolio-t{
    width: 33px;
 }
 .Portfolio-f{
    width: 33px;
 }
 .Portfolio-o2{
    width: 64px;
 }
 .Portfolio-l{
    width: 20px;
 }
 .Portfolio-i{
    width: 25px;
 }
 .Portfolio-o3{
    width: 62px;
 }
 .title{
    font-size: 12rem;
    line-height: 1;
    font-kerning: auto;
    font-feature-settings: "zero";
 }
.name{
    font-size: 2rem;
}
@media screen and (max-width:800px) {
    .text{
        top:11%;
        gap:10px;
    }
    .title{
        font-size: 6.5rem;
    }
     .Portfolio-p{
    width: 31px;
    }
    .Portfolio-o{
        width: 35px;
    }
    .Portfolio-r{
        width: 27px;
    }
    .Portfolio-t{
        width: 18px;
    }
    .Portfolio-f{
        width: 18px;
    }
    .Portfolio-o2{
        width: 35px;
    }
    .Portfolio-l{
        width: 13px;
    }
    .Portfolio-i{
        width: 15px;
    }
    .Portfolio-o3{
        width: 39px;
    }
}
.slide{
    display: none;
    position: fixed;
    /* width: 100vw; */
    height: 100vh;
    z-index: -200;
    filter: blur(15px);
}
.player__control{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: fixed;
}
.thumbnail__container {
    filter: drop-shadow(0 0 0.3rem #000);
    position: relative;
    aspect-ratio: 1 / 1;
    width: 300px;
    overflow: hidden;
}
.thumbnail{
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail.active {
    display: block;
}
@media screen and (max-width:800px) {
    .thumbnail__container{
        width: 250px;
        height: 250px;
    }
}
.slide.active {
    display: block;
}
.controls__container{
    position: fixed;
    left: 50%;
    top:68%;
    transform: translate(-50%,0%);
}
.controls{
    display: flex;
    width: 300px;
    justify-content: center;
}
.prev,
.play,
.next{
    height: 26px;
    transition:all 0.4s; 
}
.prev__container,
.play__container,
.next__container{
    width: 33.3333%;
    display: flex;
    justify-content: center;
}
.prev:hover{
    opacity: 0.5;
    transform: skewX(30deg);
}
.next:hover{
    opacity: 0.5;
    transform: skewX(-30deg);
}
.play__container{
    position: relative;
}

.play__border{
    /* position: relative; */
    pointer-events: none;
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 35px;
    border-left: solid 1px var(--primary-white);
    border-right: solid 1px var(--primary-white);
    animation: fadeInOut 2s infinite;
    }
    @keyframes fadeInOut {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0.4;
    }
    
}
.play{
    margin-left:5px;

}
.play:hover{
    opacity: 0.5;
    transform: skewX(-30deg);
}
@media screen and (max-width:800px) {
    .prev:hover,
    .next:hover,
    .play:hover{
        opacity: 1;
        animation: none;
        transform: none;
        transition: unset;
    }
    .controls__container{
        top:75%;
    }
    .controls{
        width: 250px;
    }
    .prev,
    .play,
    .next{
        height: 23px;
        transition:all 0.4s; 
    }
}
.icon__container{
    /* position: relative; */
    display: flex;
    /* justify-content: space-evenly; */
    width: 350px;
    height: 35px;
}
.btn__container--sub{
    left: 50%;
    top: 75.5%;
    transform: translateX(-50%);
    position: fixed;
}
.contact__icon--container,
.profile__icon--container,
.playlist__icon--container{
    width: 33.3333%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--primary-white );
    border-radius: 50px; */

}
.playlist__icon--container{
    position: relative;
}
/* .playlist__icon--container::after{
    content: ""; 

    transform: translateY(20%);
    position: absolute;
    left: 0;
    top:0;
    height: 25px;
    border-left: solid 1px var(--primary-white);
    animation: fadeInOut 2s infinite;
    }
    @keyframes fadeInOut {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0.4;
    }
} */
.contact__iconImg{
    height: 16px;
}
.playlist__iconImg{
    height: 16px;
}
.profile__iconImg{
height: 25px;
}
@media screen and (max-width:800px) {
    .btn__container--sub{
        top:90%;
    }
}