body, html {
    height: 100%;
    margin: 0;
}

.bgimg {
    background: url("../img/bg.jpg") no-repeat scroll center bottom / cover;
    height: 100%;
}

.overlay{
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 232, 37, 1);
    background: -webkit-linear-gradient(45deg, rgba(240, 232, 37, 1) 0%, rgb(214, 208, 22) 100%);
    background: -o-linear-gradient(45deg, rgba(240, 232, 37, 1) 0%, rgb(214, 208, 22) 100%);
    background: linear-gradient(45deg, rgba(240, 232, 37, 1) 0%, rgb(214, 208, 22) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    opacity: 0.8;
    z-index: -2;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle{
    color: rgba(240, 232, 37, 1);
    background-color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    letter-spacing: 1.5px;
    transition: 0.3s;
    border: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus{
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, 0);
}

.ww-round{
    border-radius: 0px 8px 8px 0px;
}

.wb-round{
    border-radius: 8px 0px 0px 8px;
}

.btn-blue-msalca{
    color: #fff;
    background-color: #2e3a8c;
    border-color: #2e3a8c;
}

.btn:hover:hover{
    color: #fff;
    background-color: #1e2764;
    border-color: #1e2764;
}