@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&family=Satisfy&family=Six+Caps&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Jost', sans-serif;
    color: rgba(248, 242, 232, 0.6);
    font-size: 18px;
    line-height: 160%;
}

.wrapper{
    width: 100%;
    height: auto;
    display: flex;
}

.left-panel{
    position: fixed;
    top: 0;
    left: 0;
}

.loading-fill{
    width: 100%;
    height: 100%;
    background-color: #b922ac;
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;
}

.loading-fill-dark{
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    background-color: #0c1a1d;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide{
    width: 100%;
    height: 100%;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.gradient-bg{
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 2;
    background-image: linear-gradient(150deg, rgba(0, 0, 0, 0.9), transparent 95%);
}

.menu{
   position: absolute;
   z-index: 9;
}

.nav-logo {
    margin-bottom: 20px;
}

.nav-bar{
    list-style-type:none;
    width: 50%;
}


.nav-item{
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    position: relative;
    transition: all 0.7s ease;
}

.nav-item::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: #b922ac;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 10px;
}

.nav-link{
    font-family: 'Jost', sans-serif;
    text-decoration:none;
    color: #f8f2e8;
}

.nav-item:hover{
   padding-left: 10px;
}

.nav-item:hover > .nav-link{
    color: #e032d1;
}

.nav-active{
    color: #e032d1;
}


.right-panel{
    position: relative;
    min-height: 100vh;
    background-color: #102326;
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('https://assets.website-files.com/62884cf082360f3370127ed7/6288b3dd226efd671983ff03_illustration.svg'), linear-gradient(180deg, #102326, #102326);;
    background-position: 50% 50%, 0px 0px;
    background-size: cover, auto;
    background-repeat: no-repeat, repeat; 
}