﻿body {
    padding:0px;
    margin:0px;
    box-sizing:border-box;
}
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}
.navbar {
    height: 70px;
    background-color: #fff !important;
    border-bottom: 1px solid #2b65a4;
}
.navbar-brand {
    color: #2b65a4 !important;
}
.btn-login {
    background-color: #2b65a4;
    border-radius:2px;
    color:white;
    width:100px;
}
.main-content{
    margin-top:0px;
}

.hero-banner{
    height:calc(100vh - 142px);
}

@media only screen and (max-width:400px){
    .navbar-brand{
        font-size:18px;
    }

    .hero-banner{
        min-height:calc(100vh - 142px);
    }
}

@media only screen and (max-width:767px){
    .navbar-toggler{
        border:none;
    }
}