body{
    font-family: 'Open Sans', sans-serif;
    color: #000;
    overflow-x: hidden;
}

.section{
    padding:50px 0;
    overflow: hidden;
    position: relative;
}   

.section-head{
    margin-bottom: 30px;
}

.title{
    font-weight: bold;
    text-transform: uppercase;
    color: #676767;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}


h1,h2,h3,h4,h5,h6,p{
    margin:0;
}

p{
    font-size: 16px;
    text-transform: capitalize;
}

a{
    transition: all 0.3s ease 0s;
    text-decoration: none;
    color: #333333;
}

a:focus, a:hover {
    text-decoration: none;
    color:#ff3307;
}

ul,ol{
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.margin-bottom-0{
    margin-bottom: 0 !important;
}
.margin-bottom-5{
    margin-bottom: 5px !important;
}
.margin-bottom-10{
    margin-bottom: 10px !important;
}
.margin-bottom-20{
    margin-bottom: 20px !important;
}
.margin-bottom-25{
    margin-bottom: 25px !important;
}
.margin-bottom-30{
    margin-bottom: 30px !important;
}
.margin-bottom-40{
    margin-bottom:40px !important;
}

.margin-bottom-50{
    margin-bottom:50px !important;
}

.color-red{
    color: red;
}


/**
 * Scrollbar
 */
/*::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track { 
    -webkit-box-shadow: inset 0 0 6px #ccc;
    background-color: #ccc;
}
::-webkit-scrollbar-thumb {
    background-color: red;
    outline: 1px solid slategrey;
}*/

/**
 * Scrollbar
 */


/************************************ prelaoder starts***************************************/
/*****************************************************************************************/
.loader{
    position: fixed;
    height: 100vh !important;
    width: 100%;
    background: white;
    z-index: 9999999;
}

.status{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 200px;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);

}
/************************************ prelaoder end***************************************/
/*****************************************************************************************/



/************************************ back to top start***************************************/
/*****************************************************************************************/
.tap-top{
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #ff3307;
    height: 50px;
    width: 50px;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 0 6px 1px #423636;
    cursor: pointer;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    z-index: 999;
    display: none;
}

.tap-top:hover{
    box-shadow: 0 0 10px 0 #000;
}
/************************************ back to top end***************************************/
/*****************************************************************************************/




/************************************ header starts***************************************/
/*****************************************************************************************/
.wrapper-header{
    background: #ff7d03; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ff7d03 0%, #ff0509 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ff7d03 0%,#ff0509 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ff7d03 0%,#ff0509 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7d03', endColorstr='#ff0509',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    
}


header{
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    position: relative;
    color: white;
}

header .logo{
    max-width: 100px;
}

header .website-name h1{
    color: white;
    font-weight: bold;
    padding: 5px 0;
    font-size: 27px;
    text-transform: uppercase;
}

/************************************ header starts***************************************/
/*****************************************************************************************/





/*registration form start*/
.registration-form{
    margin-top: 20px;   
}

label {
    text-transform: capitalize;
    color: #636363;
}

select,select option{
    text-transform: capitalize;
}


.membership-form .tag span{
    display: inline-block;
    background: black;
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
}

.membership-form input.dotted{
    border:0;
    border-bottom: 1px dashed #000;
    outline: none;
}

.upload-image{
    position: relative;
    cursor: pointer;
}

.upload-image:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: .3s all;
}

.upload-image:hover:after{
    opacity: 1;
}

.form-control:focus {
    border-color: #ff5b05;
    outline: 0;
    box-shadow: 0;
}

.custom-btn{
    padding: 10px 20px;
    background: #ff5b05;
    color:white;
    text-transform: capitalize;
    border:0;
    font-size: 16px;
    transition: .3s all;
}

.custom-btn:hover{
    background: black;
}

.note{
    font-size: 15px;
}

.membership-form h4.title{
    padding: 15px;
    background: #ff7d03; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ff7d03 0%, #ff0509 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ff7d03 0%,#ff0509 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ff7d03 0%,#ff0509 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7d03', endColorstr='#ff0509',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

}


/*registration form end*/




/*footer start*/

footer{
    background: black;
    padding: 20px 0;
    color: #868686;
}

footer .right-text{
    text-align: right;
}
footer .right-text a{
    color: #ff5b05;
}


/*footer end*/



.login-form
{
    width: 40%;
    margin: auto;
    background: #fbfbfb;
    border-radius: 6px;
    box-shadow: 0 0 10px 0px #adadad;
}


.login-form .box-body
{
    padding: 50px 30px;
    }




/*thankyou page*/
.thankyou-page .content img{
    max-width: 100px;
    display: inline-block;
}

.thankyou-section{
    padding: 100px 0;
    text-transform: capitalize;
}

.thankyou-page .content h1{
    padding: 10px 0;
    font-size: 30px;
    font-weight: bold;
}

.thankyou-page .content h3{
    margin-bottom: 10px;
}

.thankyou-page .content a{
    display: block;
    margin-bottom: 5px;
}


/*thankyou page*/


.alert.fixed {
    position:fixed;
    right:0;
    top: 30%;
    width:300px;
    text-align:center;
    color:black;
    height:auto;
    z-index:99999;
}

.sidebar{
    background: white;
    box-shadow: 0 0 10px #cccccc;
    padding: 20px;
    border-radius: 4px;
}

.sidebar ul li a{
    display: block;
    padding:10px;
    border-bottom: 1px solid #ff7d03;
    text-transform: capitalize;
    font-size: 16px;    
}


.sidebar ul li a:hover,.sidebar ul li.active a{
    background: #ff7d03;
    color: white;
}

.sidebar ul li:last-child a{
    border-bottom: 0;
}