:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #64a19d;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #202020;
  --secondary: #6c757d;
  --success: #5eaf71;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --black: #000000;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

body {
  background-color: #202020;
}

.section-headerbar {
  background-color: #131313;
  height: 80px;
}

.section-headerbar .container {
  width: 100%;
  max-width: 100%;
  padding:0;
  margin: 0;
}

.section-headerbar .shadow {
  box-shadow: 5px 4px 3px 0px rgba(0, 0, 0, 0.8) !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section-content {
  background-color: #131313;
  min-height: 50rem;
}

.section-content .container {
  width: 100%;
  max-width: 100%;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.empty-row {
  min-height: 10rem;
  background-color: #131313;
}

.section-content .content {
  min-height: 40rem;
  background-color: aqua;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 75%, #000000 100%), url("background.jpg");
  background-repeat: repeat;
  background-size: 100% 840px;
  background-attachment: scroll;
}

.section-content .big-harvey {
  opacity: 0.50;
  max-height: 40rem;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("harvey.svg");
}




