/*
 * Globals
 */
:root{
  --birdai-base: #193550;
  --birdai-blue: #2d5d8c;
  --birdai-light: #a0b3c4;
  --birdai-grey-light: #647d91;
  --birdai-grey: #4b667b;
  --birdai-grey-blue: #30495f;
  --birdai-dark-blue: #1c2d3e;
  --birdai-dark: #16202a;
  --birdai-white: #eef2f5;
 }

   /* Custom Colors Client */
:root {
  --bs-primary-rgb: 0, 106, 162;
  --bs-secondary-rgb: 21, 107, 118;
  --bs-success-rgb: 211, 216, 0;
  --bs-info-rgb: 91, 196, 191;
  --bs-warning-rgb: 244, 211, 55;
  --bs-danger-rgb: 189, 29, 29;
  --bs-light-rgb: 218, 237, 242;
  --bs-dark-rgb: 0, 36, 72;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 20, 49, 91;
  --bs-body-bg-rgb: 255, 255, 255;

  --bs-body-color: rgb(var(--bs-body-color-rgb));
  --birdai-very-light-grey-blue: rgb(240, 245, 250);
}


/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: rgb(var(--bs-secondary-rgb));
/* //  background-image: url('../images/145 Rich Metal.png'); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

body {
  display: -ms-flexbox;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 42em;
  display: flex;
  height: 94%;
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}


/*
 * BackGround
 */
.bg-birdai {
  background-color: var(--birdai-dark)
}

