.page{
    height: auto !important;
}
.level1{
    width: 100%;
    height: 57vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.top{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.photo{
    width: 80%;
    height: 170px;
    border-radius: 60px;

    background-color: var(--themeColor);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo img{
    width: 300px;
    margin: 0 25px 0 25px;
}

.bottom{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features{
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature{
    width: 306px;
    padding: 20px;
}

.title .icon{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    color: #fff;
}

.feature .title h1{
    text-align: start;
}

.feature h5{
    min-height: 100px;
}

.price{
    text-align: center;
    font-weight: 900;
}

.feature hr{
    height: 3px;
    background-color: black;
}

.description hr{
    height: 1px;
    background-color: #000;
    margin: 0 0 7px 0;
}








.LogoTitle{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LogoTitle h1{
    margin: 57px 0 0 37px;
    font-size: 110px;
    line-height: 92px;
}






.description{
    width: 100%;
    height: auto;
    padding: 100px;
}









/* --- SLIDER START --- */
.carouseContainer input[type=radio] {
    display: none;
}

.carouselCard {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.carouseContainer {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.carouselCards {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.carouselCard img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

#item-1:checked ~ .carouselCards #song-3,
#item-2:checked ~ .carouselCards #song-1,
#item-3:checked ~ .carouselCards #song-2 {
    transform: translatex(-40%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

#item-1:checked ~ .carouselCards #song-2,
#item-2:checked ~ .carouselCards #song-3,
#item-3:checked ~ .carouselCards #song-1 {
    transform: translatex(40%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

#item-1:checked ~ .carouselCards #song-1,
#item-2:checked ~ .carouselCards #song-2,
#item-3:checked ~ .carouselCards #song-3 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;
}

/*    #item-1:checked ~ .carouselCards #song-1 img,
    #item-2:checked ~ .carouselCards #song-2 img,
    #item-3:checked ~ .carouselCards #song-3 img {
        box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
    }*/

#item-2:checked ~ .player #test {
    transform: translateY(0);
}

#item-2:checked ~ .player #test {
    transform: translateY(-40px);
}

#item-3:checked ~ .player #test {
    transform: translateY(-80px);
}
/* --- SLIDER END --- */


























/* --- RESPONSIVE START --- */
@media all and (max-width: 1450px) and (min-width: 250px) {
    .level1{
        display: block;
    }
    .top{
        margin: 130px 0 100px 0;
    }
    .features{
        display: block;
    }
    .description{padding: 35px; margin-top: 25px;}
    .photo{
        width: auto;
    }
    .page{padding: 50px;}
    .next{
        color: var(--themeColor);
    }
    .prev{
        color: var(--themeColor);
    }
}
@media all and (max-width: 1000px) and (min-width: 250px) {
    .LogoTitle h1{
        margin: 57px 0 57px 0;
        font-size: 63px;
        line-height: 52px;
        text-align: center;
    }
    .next, .prev{
        display: none;
    }
}
@media all and (max-width: 850px) and (min-width: 250px) {
    .page{
        padding: 0;
    }
    .LogoTitle{
        align-items: start;
        height: 65%;
    }
}
/* --- RESPONSIVE END --- */
