body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden; 
}


/*START PRELOADER DESIGN*/
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.spinner {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    z-index: 10000;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1276af;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0; 
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.status-mes h4 {
    color: #f7f7f7;
    position: relative;
    font-size: 24px;
    margin-top: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.no-padding {
    padding: 0
}

/*END PRELOADER DESIGN*/

/* header area css*/
 

.slider-area {
    position: relative; 
    height: 100vh;
    background-image: url(../image/background-1.png);
    background-size: cover;
    background-position: center;
} 

.slider-content {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%; 
}


.shuvo-btn {
    display: inline-block;
    border-radius: 50px;
    padding: 15px 47px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.15rem;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
}

.shuvo-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1276af;
    border-radius: 50px;
    z-index: -2;
}

.shuvo-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #13afe3;
    transition: all .5s ease;
    border-radius: 50px;
    z-index: -1;
}

.shuvo-btn:hover {
    color: #fff;
}

.shuvo-btn:hover:before {
    width: 100%;
}

 