*{
    box-sizing: border-box;
}
html,
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.loader{
    height: 100vh;
    width: 100%;
    position: absolute;
    background: rgb(41, 41, 41);
    display: hidden;
    transition: 0.3s ease-in-out;
    z-index: 99999;
}
.loader img{
    height: 200px;
}
.loader span{
    font-size: 2rem;
    color: #f3e1c0;
}

.loader .load{
	animation: bounce 1.5s 0.5s linear infinite;
}
.loader .load span:nth-child(1){
    animation-delay: 0.0s;
}
.loader .load span:nth-child(2){
    animation-delay: 0.2s;
}
.loader .load span:nth-child(3){
    animation-delay: 0.3s;
}
@keyframes bounce {
	0%, 50%, 100% {
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
}

.my-100{
    margin: 100px 0;
}
.page{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}
.homepage .homepage-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.homepage .homepage-wrap .rising-logo{
    position: absolute;
    width: 100px;
    bottom: 60px;
}
.homepage .homepage-wrap .rising-heading{
    width: 100%;
    background: url('../img/usernav.fw.png');
    padding: 20px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 700;
    color: #f3e1c0;
}
.homepage .homepage-wrap .box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.homepage .homepage-wrap .title{
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: #f3e1c0;
    /* -webkit-text-stroke: 1px #000; */
    top: 100px;
    z-index: 4;
}
.homepage .homepage-wrap .description{
    width: 100%;
    height: 100%;
    position: absolute;
    color: #FFFFFF;
    top: 150px;
    z-index: 4;
}
.homepage .homepage-wrap .box > .box-frame{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.homepage .homepage-wrap .box > .box-thumb{
    width: 100%;
    height: 100%;
    filter: blur(2px);
    border-radius: 20px;
    position: absolute;
    z-index: 0;
}
.homepage .homepage-wrap .box > .box-hero{
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    filter: brightness(50%);
    z-index: 3;
}
.homepage .homepage-wrap .box > .btn-box{
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    z-index: 5;
}
.homepage .homepage-wrap .box > .btn-box > img{
    width: 200px;
    position: relative;
    top: 250px;
}
.homepage .homepage-wrap .box > .btn-box > h3{
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f3e1c0;
    top: 264px;
    right: 2px;
    left: 0;
}
.homepage .homepage-wrap .social-links > h2{
    color: #f3e1c0;
    font-size: 1.5rem;
    font-weight: 700;
}
.homepage .homepage-wrap .social-links{
    z-index: 999;
}
.homepage .homepage-wrap .social-links img{
    width: 40px;
    height: 40px;
}

@media only screen and (min-width: 320px) and (max-width: 599px){
    .homepage .homepage-wrap .rising-logo{
        position: absolute;
        width: 100px;
        margin-bottom: 20px;
    }
    .homepage .homepage-wrap .rising-heading{
        margin-top: 20px;
        font-size: 1rem;
    }
    .homepage .homepage-wrap .title{
        font-size: 1.5rem;
        top: 40px;
    }
    .homepage .homepage-wrap .description{
        top: 70px;
    }
    .homepage .homepage-wrap .box > .btn-box > img{
        width: 150px;
        position: relative;
        top: 170px;
    }
    .homepage .homepage-wrap .box > .btn-box > h3{
        font-size: 1rem;
        top: 180px;
    }
}