body{
    padding-top: 50px;
    padding-bottom:20px;
}

.btn-lg{
    border-radius: 15px;
}

.navbar-inverse{
    border-bottom: unset;
    border-color: transparent;
    background-color: #005bb6;
    
}

.navbar-nav a{
    font-size: 16px;
}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
    background-color: unset;;
}

.footer{
    margin-top: 50px;
}


.footer-link-title{
    font-weight: bold;
}

.footer-links{
    list-style: none;
    margin:0;
    padding:0;
}

.footer-link{
    margin: 5px 0;
}

.footer-link, .footer-link a{
    color:#999;
}

.cr-links{
    list-style: none;;
    margin:0;
    padding:0;
    display:flex;
    flex-direction: row;
    color:#999;
}

.cr-links .cr-link{
    margin-right:20px;
}



.section{
    padding: 50px 0;
}

.section-header{
    margin: 50px 0;
    text-align: center;
}

.section-title{
    font-weight: lighter;
    color:#333;
    line-height: 1.8;
}

.section-subtitle{
    margin-top: 30px;
    line-height: 1.8;
    color:#999;
}

.section-main{
    margin: 50px 0;
}

.right-block{
    margin-right: 0;
}

.btn-group{
    margin: 30px 0;
}


.loading{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 999999;
}

.loading .loading-mask{
    position: absolute;
    top: 0;
    left:0;
    width:100%;
    height:100%;
    background: #000;
    opacity: 0.9;
}

.loading .loading-main{
    position: relative;
    top: 40%;
    padding: 20px;
    margin: auto;
}

.loading .loading-main .loading-img{
    display: block;
    width: 48px;
    height: 48px;
    margin: auto;
    background: url(../img/loading.png) no-repeat;
    background-size: 48px 48px;
    animation: loading 3s infinite;
}

.loading .loading-main p{
    text-align: center;
    color: #fff;
    margin: 10px 0 0 0 ;

}

@keyframes loading{
    0% {
        transform: rotate(0deg);
        opacity: 0.0;
    }

    50% {
        transform: rotate(180deg);
        opacity: 1.0;
    }

    100%{
        transform: rotate(360deg);
        opacity: 0.0;
    }

}

@media (max-width:768px){
    h1{
        font-size: 24px;
    }

    h2{
        font-size: 20px;
    }

    h3{
        font-size: 16px;
    }
    
    .cr-links{
        display:block;
        flex-direction: unset;
    }
}