*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
body a{
    text-decoration: none;
}

.page-parent{
    position: relative;
}
.page-parent .page-hero{
    max-width: 100%;
    width: 100%;
    height: 100vh;
}
.page-parent .page-hero img{
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    position:sticky;
    top: 0;
    left: 0;
}
.page-parent .welcome-text{
    font-family: 'Yanone Kaffeesatz', sans-serif;
    color: #fff;
    position: absolute;
    text-align: center;
    width:90%;
    left:50%;
    transform: translateX(-50%);
    top: 5%;
}
.page-parent .welcome-text span{
    color: red;
}
.page-parent .hero-content{
    text-align: center;
    position: absolute;
    max-width: 800px;
    width: 100%;
    left:50%;
    transform: translateX(-50%);
    top: 18%;
    color: #fff;
    padding: 10px;
}

.page-parent .hero-content .title{
    text-transform: capitalize;
    font-size: 45px;
    line-height: 58px;
    margin-bottom: 30px;
}
.page-parent .hero-content .join-btn{
    cursor: pointer;
    border: none;
    font-size: 18px;
    padding: 13px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    margin: 20px 0;
    background: linear-gradient(to bottom right, #a81cab, #e73f4f);
    color:aliceblue;
}
.page-parent .condition-text{
    margin-top: 30px;
}
.page-parent .condition-text span{
    text-decoration: underline;
    color: rgb(243 140 13);
}
.page-parent .hero-content .description{
    font-size: 12px;
    color: #ddd;
}
.page-parent .hero-content .status{
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 14px;
}
.page-parent .hero-content .status div{
    display: flex;
    gap: 3px;
}
.page-parent .hero-content .status .activebar{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1fcf1f;
}
.page-parent .hero-content .editional-text{
    margin: 20px 0;
    text-transform: capitalize;
}
.page-parent .social-media{
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: 10%;
}
.page-parent .social-media i{ 
    font-size: 20px;
    color: #fff;
}
/* responsive */
@media(max-width:768px){
    .slick-list{
        padding: 0 !important;
    }
}
@media(max-width:425px){
    .page-parent .hero-content .title{
        font-size: 37px;
        line-height: 50px;
    }
}