﻿:root {
    --green: #02642f;
    --green-hover: #045326;
}
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 0.875rem;
}
@media (min-width: 768px) {
    html {
        font-size: 0.9375rem;
    }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #606060;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
main{
    margin-bottom:100px;
}

h1{
    font-size:2.25rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
    color:var(--green);
    margin-bottom:15px;
}
h4 {
    font-size: 1.25rem;
}

p,
li{
    line-height:1.6em;
}

.btn-row {
    border-top:1px #ccc solid;
    margin:20px 0 10px 0;
    padding-top:20px;
}
.btn-row .col-sm-3{
    padding-left:0;
    padding-right:0;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background: #fff;
    font-size: 18px;
    font-weight:500;
}
.border-green {
    border-left:1px #02642f solid;
}

.bg-grey {
    background-color:#efefef;
}

section {
    padding: 50px 60px;
}
.sec-np-b{
    padding-bottom:0;
}
.ap-b{
    padding-bottom:50px;
}

.list-gen li{
    margin-bottom:10px;
}
.list-gen,
.list-gen li:last-child {
    margin-bottom: 0;
}

.emp-text {
    color: #3b3b3b; 
    font-weight:500;
    font-size: 1.125rem;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
}
.btn-primary {
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--green-hover);
    border-color: var(--green-hover);
}

.Header{
    display:flex;
    background:#fff;
    align-items:center;
    justify-content:space-between;
    padding:50px 20px;
}
    .Header h1 {
        color: var(--green);
        margin-bottom:0;
    }
.Header .nav{
    display:flex;
}
    .Header .nav li{
        list-style-type:none;
    }
        .Header .nav li a {
            color: var(--green);
            display: block;
            padding: 10px;
        }

/*--- green-header ---*/
.green-header {
    background:var(--green);
    padding:70px 50px;
}
.green-header h2 {
    text-transform: uppercase;
    color: #fff;
    line-height:1.5em;
}
    .green-header p {
        color: rgba(255,255,255,0.6);
        margin-bottom: 0;
        line-height: 1.6em;
    }
    .green-header .border-white-left{
        border-left:7px #fff solid; 
        margin-left:30px;
        padding-left:30px;
    }

.comp-blocks {
    padding-bottom:50px;
}


/*--- Login Page ---*/

.login-setup {
    align-items: center;
}

.login-image,
.login-form {
    width: 100%;
    height: 100vh;
}

.login-image {
    background: #70734d url('/img/loginBgMain.jpg') no-repeat center center;
    background-size: cover;
    position:relative;
}
.login-image h1{
    color:#fff;
    position:absolute;
    bottom:100px;
    left:100px;
    font-size:3.5rem;
}

.login-form {
    background: #fff;
    display: flex;
    align-items: center;
    padding:50px 100px;
}
.login-form form{
    width:100%;
}
    .login-form form img{
        margin-bottom:15px;
    }
    .login-form form h2{
        color:var(--green)
    }


@media (max-width:768px){
    .border-green {
        border-left:0;
        border-top: 1px #02642f solid;
    }
}