body {
  background-color: rgb(1, 1, 1);
  min-height: 2000px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1%;
  background-color: rgba(1, 1, 1, 0.5);
  border-bottom: 1px solid #57412a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar-nav {
  padding: 0 5rem;
}

.navbar-brand {
  color: rgba(255, 255, 255, 100%);
  font-weight: 700;
  font-size: 1.4rem;
}

.navbar-brand span {
  color: rgb(233, 155, 0);
  font-style: italic;
}

.nav-link:hover {
  color: #d38600;
}

.navbar-toggler-icon {
  height: 1.8rem;
  width: 1rem;
}

.modal {
  padding: 5rem 0;
}

.modal-header {
  border-color: rgba(0, 0, 0, 0.7);
}

.modal-footer {
  border-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.7);
}

.form-control,
.dropdown-menu {
  background-color: rgba(76, 76, 0, 0.6);
}

.dropdown-item:hover {
  background-color: rgb(211, 134, 0, 50%);
}

.hero {
  min-height: 100vh;
  display: block;
  align-items: center;
  background-image: url("../media/asset-management5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero {
  padding: 5rem 0rem;
  margin: auto;
}

.hero .content h1 {
  color: #e1c700;
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(1, 1, 1, 0.5);
  padding: 15rem 2.5rem 0rem;
  margin-bottom: 0rem;
}

.hero .content p {
  color: #e1c700;
  font-size: 1.4rem;
  font-weight: 200;
  font-style: normal;
  text-shadow: 1px 1px 1px rgba(1, 1, 1, 1);
  padding: 0 2.5rem;
}

.hero .content h1 span {
  color: #b6895b;
  display: inline-block;
  font-size: 2rem;
  margin: 0 1rem;
}

.hero .button p {
  color: #fff;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  background-color: #d38600;
  border-radius: 0.9rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .button p:hover {
  background-color: #c2c900;
  color: #010101;
  cursor: pointer;
}

/*
.hero button {
  background-color: rgba(0, 0, 0, 0%);
}
*/

.card {
  display: block;
  padding: 1%;
  background-color: rgba(0, 0, 0, 90%);
  position: relative;
  margin: auto;
  width: 90%;
  height: 35rem;
}

th {
  font-size: 0.7rem;
  font-weight: 200;
}

td {
  font-size: 0.7rem;
  font-weight: 100;
}

table {
  display: block;
  overflow: scroll;
  max-height: 470px;
  max-width: 2000px;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 90%) !important;
}

tbody,
tr,
td {
  background-color: rgba(0, 0, 0, 0%) !important;
  border-color: rgba(255, 255, 255, 10%);
}

.table-hover tbody tr:hover {
  background-color: rgba(255, 200, 0, 5%) !important;
}

table::-webkit-scrollbar,
.form-field::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}

table::-webkit-scrollbar-track,
.form-field::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0%);
}

table::-webkit-scrollbar-thumb,
.form-field::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 50%);
  border-radius: 20px;
  border: 0px solid black;
}

.table::-webkit-scrollbar-thumb:hover,
.form-field::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.container {
  display: contents;
  width: 100%;
  margin: auto;
  padding: 5rem 0rem;
}

.about {
  padding: 5rem 7% 1.4rem;
  text-align: center;
}

.about h2 span {
  color: var(--primary);
}

.about .row {
  display: flex;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .row .about-img img {
  width: 45%;
}

.btn-close {
  margin: 0 0 0 100%;
  size: 100%;
}

a {
  text-decoration: none;
  color: rgb(187, 187, 187);
}

.form-control,
.form-control-sm,
.form-select,
.input {
  background-color: rgba(255, 255, 255, 10%);
  box-sizing: border-box;
  height: 1.8rem;
  font-size: 0.9rem;
}

select option {
  color: rgb(1, 1, 1);
  background-color: rgb(101, 101, 101);
}

.form-field ::-webkit-input-placeholder {
  color: rgb(111, 111, 111);
}
.form-label {
  color: rgb(148, 148, 148);
  font-size: 0.8rem;
}

.col {
  padding: 0rem 0rem 0rem 0.8rem;
  display: block;
}

#myInput::placeholder {
  color: rgb(111, 111, 111);
}

.form-field {
  height: 30rem;
  overflow: scroll;
}

tr[data-href] {
  cursor: pointer;
}

#icon-corner {
  color: rgb(90, 89, 89);
}

#icon-corner:hover {
  color: rgb(255, 255, 255);
}

.skip-back {
  width: 1;
  height: 1;
}
