@charset "UTF-8";
/* ----------------------------------------------------------------
    Google Fonts
-----------------------------------------------------------------*/
@import 'https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap';
/* ----------------------------------------------------------------------
	Base Colors
-------------------------------------------------------------------------*/
/*Background colors*/
/* ----------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------*/
/*Font*/
/*Header*/
/*Side Panel*/
/*Page Title*/
/* ----------------------------------------------------------------------
	Layout
-------------------------------------------------------------------------*/
/*Margins*/
/*Transitions*/
/*utilities*/
/*Buttons*/
/*Forms*/
/*Define common padding and border radius sizes and more.*/
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * BASICS* * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
body {
  margin: 0;
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.77);
  text-align: left;
  background-color: #f4f6f9;
  -webkit-font-smoothing: antialiased;
  /*transition: all 200ms;*/
}

::-moz-selection {
  background: rgba(255, 121, 0, 0.25);
}

::selection {
  background: rgba(255, 121, 0, 0.25);
}

/*Default A Tag States*/
/*Be picky with these and fine-tune any differentiating specifics between contexts elsewhere if need be*/
a {
  text-decoration: none;
  transition: all 200ms;
  /* COLOR-PRIMARY ↓↓↓ */
  color: rgb(6, 9, 205);
}

a:hover {
  text-decoration: none;
  transition: all 200ms;
  /* COLOR-PRIMARY w/ OPACITY ↓↓↓ */
  color: rgb(6, 9, 205);
  opacity: 0.8;
}

/* Other a tag classes are down in the text color section */
/*Header Font Sample*/
/*I decided not to use this for Jasper, because I didn't like the other font options - JB 2020-02-21*/
/*@import url('https://fonts.googleapis.com/css?family=Poppins:600&display=swap');*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
}

h1,
.h1 {
  /*font-family:'Poppins';*/
  font-size: 1.8rem;
  letter-spacing: -1pt;
}

h2,
.h2 {
  /*font-family:'Poppins';*/
  font-size: 1.45rem;
  letter-spacing: -1pt;
}

h3,
.h3 {
  /*font-family:'Poppins';*/
  font-size: 1.25rem;
  letter-spacing: -1pt;
}

h4,
.h4 {
  /*font-family:'Poppins';*/
  font-size: 1.1rem;
  letter-spacing: -1pt;
}

h5,
.h5 {
  /*font-family:'Poppins';*/
  font-size: 1rem;
  letter-spacing: -0.5pt;
  text-transform: uppercase;
}

h6,
.h6 {
  /*font-family:'Poppins';*/
  text-transform: uppercase;
  /* COLOR-MUTED ↓↓↓ */
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
  letter-spacing: -0.5pt;
}

/*Size for display headlines. Righgt now, I have it scaling to viewport height*/
.display-1,
.display-2,
.display-3,
.display-4 {
  font-weight: 600;
  letter-spacing: -1pt;
  text-transform: uppercase;
  line-height: 1;
}

.display-1 {
  font-size: 10vw;
}

.display-3 {
  font-size: 5vw;
  font-weight: 300;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  font-weight: 400;
}

.btn {
  font-size: 0.9rem;
}

.btn-lg,
.btn-group-lg > .btn {
  font-size: 1rem;
}

/* * * * * * * * * * * * * * * * */
/*RESPONSIVE TYPE TIERS*/
/* * * * * * * * * * * * * * * * */
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  h1,
  .h1 {
    /*font-family:'Poppins';*/
    font-size: 2rem;
  }
  h2,
  .h2 {
    font-size: 1.5rem;
  }
  h3,
  .h3 {
    font-size: 1.4rem;
  }
  h4,
  .h4 {
    font-size: 1.25rem;
  }
  h5,
  .h5 {
    font-size: 1.05rem;
  }
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
  h1,
  .h1 {
    /*font-family:'Poppins';*/
    font-size: 2.25rem;
  }
  h2,
  .h2 {
    font-size: 1.75rem;
  }
  h3,
  .h3 {
    font-size: 1.5rem;
  }
  h4,
  .h4 {
    font-size: 1.4rem;
  }
  h5,
  .h5 {
    font-size: 1.15rem;
  }
  .lead {
    font-size: 1.25rem;
  }
  .btn {
    font-size: 1rem;
  }
  .btn-lg,
  .btn-group-lg > .btn {
    font-size: 1.25rem;
  }
}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  h1,
  .h1 {
    /*font-family:'Poppins';*/
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.75rem;
  }
  h4,
  .h4 {
    font-size: 1.5rem;
  }
  h5,
  .h5 {
    font-size: 1.25rem;
  }
}
/*Extra large devices (large desktops, 1200px and up)*/
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * Text Colors * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* Neutrals */
/* * * * * * * * * * * * * * * * */
.text-dark {
  color: rgba(0, 0, 0, 0.77) !important;
}

/*For light backgrounds*/
.text-muted {
  color: rgba(0, 0, 0, 0.5) !important;
}

a.text-muted {
  color: rgba(0, 0, 0, 0.5) !important;
}

a.text-muted:hover {
  color: rgba(0, 0, 0, 0.77) !important;
}

/*Even lighter than 'muted' I made up this word for the class that is even more subtle than 'muted' - JB 2020-02-21  */
.text-mutest {
  color: rgba(0, 0, 0, 0.3) !important;
}

a.text-mutest {
  color: rgba(0, 0, 0, 0.3) !important;
}

a.text-mutest:hover {
  color: rgba(0, 0, 0, 0.77) !important;
}

/*For dark backgrounds*/
.text-mutedlight {
  color: rgba(255, 255, 255, 0.5) !important;
}

a.text-mutedlight {
  color: rgba(255, 255, 255, 0.5) !important;
}

a.text-mutedlight:hover {
  color: rgb(255, 255, 255) !important;
}

.hovercard {
  background-color: rgba(0, 0, 0, 0) !important;
}

.hovercard:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}

.hovercard-bright {
  background-color: rgba(255, 255, 255, 0) !important;
}

.hovercard-bright:hover {
  background-color: white !important;
}

.hovercard-light {
  background-color: rgba(255, 255, 255, 0) !important;
}

.hovercard-light:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* * * * * * * * * * * * * * * * */
/* Branded Colors */
/* * * * * * * * * * * * * * * * */
.text-primary {
  color: rgb(6, 9, 205) !important;
}

.text-secondary {
  color: rgb(255, 121, 0) !important;
}

.text-secondarylight {
  color: rgb(255, 205, 109) !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: rgba(6, 9, 205, 0.8) !important;
}

/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * Background Colors * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
.bg-white {
  background-color: rgb(255, 255, 255) !important;
}

.bg-light {
  background-color: rgb(245, 246, 248) !important;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.bg-muted {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-mutest {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.bg-mutedlight {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-darkest {
  background-color: rgb(0, 0, 0) !important;
}

.bg-primary {
  background-color: rgb(6, 9, 205) !important;
}

.bg-primarydark {
  background-color: rgb(6, 9, 205) !important;
}

.bg-primarylight {
  background-color: rgb(102, 204, 255) !important;
}

.bg-secondary {
  background-color: rgb(255, 121, 0) !important;
}

.bg-secondarylight {
  background-color: rgb(255, 205, 109) !important;
}

.bg-secondarydark {
  background-color: rgb(204, 88, 2) !important;
}

.bg-successlight {
  background-color: #b8eaa5 !important;
}

.bg-accent {
  background-color: rgb(222, 225, 233) !important;
}

.bg-asphalt-dark {
  background-image: url("../img/bg/bg-asphalt-dark.jpg");
  background-position: center center;
  background-size: cover;
}

/*Background Gradients*/
.bg-gradient-dark,
a .bg-gradient-dark {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75));
  transition: all 200ms;
}

a:hover .bg-gradient-dark {
  opacity: 0.5;
  transition: all 200ms;
}

.bg-gradient-muted {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.bg-gradient-primary {
  background: linear-gradient(rgba(6, 9, 205, 0.5), rgba(6, 9, 205, 0.8));
}

/*Borders*/
.border-top-lg {
  border-top: 2px solid #dee2e6 !important;
}

.border-top-xl {
  border-top: 4px solid #dee2e6 !important;
}

.border-bottom-lg {
  border-bottom: 2px solid #dee2e6 !important;
}

/*The border color classes need to be added BELOW the border size options above*/
.border-primary {
  border-color: rgb(6, 9, 205) !important;
}

.border-secondary {
  border-color: rgb(255, 121, 0) !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #f33e5b !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

/*.border-light {
    border: 1px solid rgba(222, 226, 230, 0.25) !important;
}*/
.border-light {
  border-color: rgba(222, 226, 230, 0.25) !important;
}

.badge-primary {
  color: #fff;
  background-color: rgb(6, 9, 205) !important;
}

.badge-mutedlight {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.badge-mutestlight {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25) !important;
}

/*HEADERS*/
header {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video,
.img-caption video,
.carousel-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
  header {
    background: url("/v/tests/vidya.mp4") black no-repeat center center scroll;
  }
  header video {
    display: none;
  }
}
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * BASIC HELPERS * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * */
/* * * * * * * NAVBAR* * * * * * */
/* * * * * * * * * * * * * * * * */
.navbar-brand {
  min-width: 100px;
  fill: rgb(6, 9, 205);
  transition: all 200ms;
}

.navbar-brand:hover {
  fill: rgba(6, 9, 205, 0.8);
  transition: all 200ms;
}

.navbar-brand img {
  max-width: 150px;
  height: auto;
}

.foot-brand .navbar-brand img {
  max-width: 300px;
  height: auto;
}

.foot-back {
  background-image: linear-gradient(to bottom, #cc5802, rgba(204, 88, 2, 0.8)), url("../img/bg/bg-stripedasphalt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.foot-back h5 {
  font-size: 1.2em;
}

.foot-back .list-unstyled {
  font-size: 0.8em;
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link,
.transparent-navbar .navbar-nav .nav-link {
  color: rgb(255, 255, 255);
}

.navbar-nav .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
}

.btn.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
}

.navbar-nav .nav-item li a {
  font-size: small;
  padding: 1px 20px;
}

@media (max-width: 991.98px) {
  .navbar.transparent-navbar {
    background-color: rgb(0, 0, 0);
    /* or solid */
  }
}
.main-navbar {
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.hero-section-16-9 {
  height: 80vh;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("../img/bg/bg-heroblur-tiltshift.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 4rem;
  /* Give room for navbar if needed */
  position: relative;
  /* Or static, default */
  z-index: 1;
  margin-top: -100px;
  /* Pulls the hero *under* the navbar height */
  padding-top: 100px;
  /* Restores spacing so content inside hero isn't cut off */
  min-height: 800px;
}

@media (max-width: 991.98px) {
  .hero-section-16-9 {
    min-height: 400px;
  }
}
/* Gradient Overlay */
.hero-section-16-9::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.33) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Background for non-hero pages */
.navbar-bg {
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 9, 205, 0.5), rgba(6, 9, 205, 0.5)), url("../img/bg/bg-heroblur-tiltshift.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  width: 100%;
  height: 114px;
  /* Match navbar height */
  background-color: rgb(0, 0, 0);
  /* Tint or solid */
  z-index: 0;
}

.transparent-navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.navbar-blur {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  /* Your desired tint */
}

/*Class for allowing for an alternative, tighter line spacing than default header leading*/
/*Can be used for more than just headers; for anywhere you need a tighter-than-default leading*/
.hleading {
  line-height: 1em;
}

/*I sometimes use this class for two-word spans that close out a static block of text to limit the occurrence of orphans - JB 2020-02-20 */
.nowrap {
  white-space: nowrap;
}

.pointer {
  cursor: pointer;
}

.word-per-line span {
  display: block;
}

.stickytop {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
}

.caption {
  margin-top: 0.5rem !important;
  margin-bottom: 2.8rem !important;
  font-size: 80%;
  font-weight: 400;
}

/*.height-full {
  height: 100vh;
}*/
.height-full {
  /*This takes into the sccount the current height of the navbar
  This should be ignored if using FIXED navbar; replace with height:100vh; ↓↓↓ */
  height: calc(100vh - 57px);
  /*This keeps the area from becoming too stubby on tiny screens ↓↓↓ */
  min-height: 420px;
}

.height-400 {
  min-height: 400px;
}

.height-500 {
  min-height: 500px;
}

@media (max-width: 767px) {
  .height-400 {
    min-height: inherit;
  }
  .height-500 {
    min-height: inherit;
  }
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.rel-prod {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.img-zoom {
  background-size: 120%;
  background-position: center;
  transition: all 200ms;
}

a:hover .img-zoom {
  background-size: 124%;
  background-position: center;
  transition: all 200ms;
}

.bottom {
  bottom: 0;
}

.shade {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 800ms;
}

.card.shade:hover {
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.15);
  transition: all 800ms;
}

/*Icon Hover Animation*/
a .a-push {
  /*margin-top: -1px;*/
  transition: padding 200ms;
  padding-left: unset;
}

a:hover .a-push {
  transition: padding 200ms;
  padding-left: 5px !important;
}

a:hover .img-caption {
  opacity: 0.8;
  transition: opacity 200ms;
}

/*Icon Pulse*/
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* Bootstrap Card Column "Masonry" Colum Customization */
@media (min-width: 540px) {
  .card-columns {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (min-width: 900px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
  }
}
/*@media (min-width: 992px) {
  .card-columns {
    column-count: 4;
  }
}
@media (min-width: 1200px) {
  .card-columns {
    column-count: 5;
  }
}*/
.breadcrumb li {
  font-size: small;
  font-weight: 700;
  letter-spacing: -0.2pt;
}

.breadcrumb-item.active {
  color: rgba(0, 0, 0, 0.3);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.3);
}

/* NAV Tabs */
.nav-tabs {
  border-bottom: 0px solid rgba(255, 255, 255, 0);
}

/* This is the tab border which extends to the right of the tabs */
/* Use as the last item in the nav set: div class="nav-item tabs-extra"; */
/* For light backgrounds */
.tabs-extra {
  border-bottom: 1px solid #dee2e6;
  flex: auto;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-right: -1.5px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: rgba(255, 255, 255, 0);
  border-color: #dee2e6 #dee2e6 rgba(255, 255, 255, 0);
}

/* For dark backgrounds */
.tabs-extra-light {
  border-bottom: 1px solid rgb(111, 111, 111);
  flex: auto;
}

.nav-tabs-light .nav-link {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  border-bottom: 1px solid rgb(111, 111, 111);
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-right: -1.5px;
}

.nav-tabs-light .nav-link:hover,
.nav-tabs-light .nav-link:focus {
  border-color: rgb(111, 111, 111) rgb(111, 111, 111) rgb(111, 111, 111);
}

.nav-tabs-light .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: white;
  background-color: rgba(255, 255, 255, 0);
  border-color: rgb(111, 111, 111) rgb(111, 111, 111) rgba(255, 255, 255, 0);
}

/*Cards*/
.card-title {
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

/* * * Flexbox * * */
/*These may prove obsolete with Bootstrap's native flex aids, but ened to confirm*/
.items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.f-0 {
  flex-grow: 0;
}

.f-1 {
  flex-grow: 1;
}

/* * * Border Radius * * */
/*In this example, 5px is the default radius*/
.rad-5 {
  border-radius: 5px;
}

.rad-20 {
  border-radius: 20px;
}

.rad-5-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.rad-5-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rad-5-bot {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rad-5-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* * * Buttons * * */
.btn-primary {
  color: #fff;
  background-color: rgb(6, 9, 205);
  border-color: rgb(6, 9, 205);
}

.btn-primary:hover {
  color: #fff;
  background-color: rgba(6, 9, 205, 0.8);
  border-color: rgba(6, 9, 205, 0.8);
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: rgba(235, 34, 84, 0.8);
  border-color: rgba(235, 34, 84, 0.25);
  /* FOCUS HIGHLIGHT ↓↓↓ */
  /*This is the default-blue highlight for something in-focus, and will need to match all other areas this highlight exists, if changed*/
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0);
  cursor: not-allowed;
}

.btn-outline-primary {
  color: rgb(6, 9, 205);
  border-color: rgb(6, 9, 205);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  color: #ffffff;
  background-color: rgb(6, 9, 205);
  border-color: rgb(6, 9, 205);
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(6, 9, 205);
  border-color: rgb(6, 9, 205);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: rgb(6, 9, 205);
  background-color: rgba(6, 9, 205, 0.8);
  border-color: rgba(6, 9, 205, 0.8);
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

/*Page Structure*/
.img-caption {
  width: auto;
  height: 100%;
  background: #000;
  /*min-height: 420px;*/
}

.img-header {
  width: auto;
  height: 100%;
  background: #000;
  min-height: 420px;
}

/*Pagination*/
.page-link {
  color: rgb(6, 9, 205);
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  color: rgb(6, 9, 205);
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-item.active .page-link {
  color: #fff;
  background-color: rgb(6, 9, 205);
  border-color: rgb(6, 9, 205);
}

/* * * * * * * * * * * * * * * * */
/* * * * * * *CAROUSEL * * * * * */
/* * * * * * * * * * * * * * * * */
.carousel-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
  left: 15%;
  right: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: auto;
  margin-bottom: auto;
  color: #fff;
  text-align: center;
}

.carousel-gradient-dark {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  right: 0%;
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

/*This light color is not absolute white in order to provide contrast for the carousel nav buttons at the bottom and sides*/
.carousel-gradient-light {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  right: 0%;
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  background: linear-gradient(rgba(199, 199, 199, 0.6), rgba(199, 199, 199, 0.9));
}

.carousel-gradient-primary {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  right: 0%;
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  background: linear-gradient(rgba(235, 34, 84, 0.5), rgba(235, 34, 84, 0.8));
}

/*Customizable chevrons for future use*/
/*
.carousel-control-prev-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' …e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e);
}

.carousel-control-next-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' …%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e);
}
*/
/* * * * * * * * * * * * * * * * */
/* FORMS */
/* * * * * * * * * * * * * * * * */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge {
  padding: 5px 4px 3px 4px;
  border-radius: 0px;
}

.badge.rounded-pill {
  padding: 5px 10px 3px 10px;
}

/*Checkbox Color*/
.checker span {
  color: rgb(255, 121, 0);
  border: 2px solid rgb(255, 121, 0);
  display: inline-block;
  text-align: center;
  position: relative;
  border-radius: 2px;
}

/*Radio Color*/
.choice span {
  border: 2px solid rgb(255, 121, 0);
  display: -moz-inline-box;
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  position: relative;
}

/*Custom Items from Bootstrap*/
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-label {
  margin-bottom: 0;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-control-label::before {
  position: absolute;
  /*top: .25rem;
    left: 0;*/
  top: 2px;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px transparent;
}

.custom-control-label::after {
  position: absolute;
  /*top: .25rem;
    left: 0;*/
  top: 2px;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/*This cuustomizes the color used for checked boxes and radio buttons*/
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgb(6, 9, 205);
}

.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  background-color: #fab6c1;
}

/* * * * * * * * * * * * * * * * */
/* FORM FIELD HIGHLIGHTING */
/* * * * * * * * * * * * * * * * */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #81c868;
}

.has-success .form-control {
  border-color: #81c868;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #81c868;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #81c868;
}

.has-success .input-group-addon {
  color: #81c868;
  border-color: #81c868;
  background-color: #b8eaa5;
}

.has-success .form-control-feedback {
  color: #81c868;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #ffc107;
}

.has-warning .form-control {
  border-color: #ffc107;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #bc5500;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffa256;
}

.has-warning .input-group-addon {
  color: #ffc107;
  border-color: #ffc107;
  background-color: #FFF3E0;
}

.has-warning .form-control-feedback {
  color: #ffc107;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #f33e5b;
}

.has-error .form-control {
  border-color: #f33e5b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #f33e5b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f33e5b;
}

.has-error .input-group-addon {
  color: #f33e5b;
  border-color: #f33e5b;
  background-color: #fab6c1;
}

.has-error .form-control-feedback {
  color: #f33e5b;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* MARGIN & PADDING STYLES */
/* - 5 PX - */
/*.m-5 {
      margin: 5px !important;
  }
  .mt-5 {
      margin-top: 5px !important;
  }
  .mr-5 {
      margin-right: 5px !important;
  }
  .mb-5 {
      margin-bottom: 5px !important;
  }
  .ml-5 {
      margin-left: 5px !important;
  }*/
/* - 5 PX PADDING - */
/*.p-5 {
      padding: 5px !important;
  }
  .pt-5 {
      padding-top: 5px !important;
  }
  .pr-5 {
      padding-right: 5px !important;
  }
  .pb-5 {
      padding-bottom: 5px !important;
  }
  .pl-5 {
      padding-left: 5px !important;
  }*/
/* - 10 PX - */
.m-10 {
  margin: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

/* - 10 PX PADDING - */
.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

/* - 15 PX - */
.m-15 {
  margin: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

/* - 15 PX PADDING - */
.p-15 {
  padding: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

/* - 20 PX - */
.m-20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

/* - 20 PX PADDING - */
.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

/* - 20 PX CUSTOM - */
.m-20-mobile {
  margin: 20px !important;
}

.mt-20-mobile {
  margin-top: 20px !important;
}

.mr-20-mobile {
  margin-right: 20px !important;
}

.mb-20-mobile {
  margin-bottom: 20px !important;
}

.ml-20-mobile {
  margin-left: 20px !important;
}

/* - 30 PX - */
.m-30 {
  margin: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

/* - 40 PX - */
.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

/* - 40 PX PADDING - */
.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

/* - 50 PX - */
.m-50 {
  margin: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

/* - 50 PX PADDING - */
.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

/* - 60 PX - */
.m-60 {
  margin: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

/* - 80 PX - */
.m-80 {
  margin: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

/* - 80 PADDING - */
.p-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

/* - 80 PADDING - */
.p-100 {
  padding: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

/* - 100 PX - */
.m-100 {
  margin: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

@media screen and (max-width: 768px) {
  /* - 20 PX CUSTOM - */
  .m-20-mobile {
    margin: 10px !important;
  }
  .mt-20-mobile {
    margin-top: 10px !important;
  }
  .mr-20-mobile {
    margin-right: 10px !important;
  }
  .mb-20-mobile {
    margin-bottom: 10px !important;
  }
  .ml-20-mobile {
    margin-left: 10px !important;
  }
  /* - 30 PX - */
  .m-30 {
    margin: 20px !important;
  }
  .mt-30 {
    margin-top: 20px !important;
  }
  .mr-30 {
    margin-right: 20px !important;
  }
  .mb-30 {
    margin-bottom: 20px !important;
  }
  .ml-30 {
    margin-left: 20px !important;
  }
  /* - 40 PX - */
  /*.m-40 {
        margin: 20px !important;
    }
    .mt-40 {
        margin-top: 20px !important;
    }
    .mr-40 {
        margin-right: 20px !important;
    }
    .mb-40 {
        margin-bottom: 20px !important;
    }
    .ml-40 {
        margin-left: 20px !important;
    }*/
  /* - 40 PX PADDING - */
  .p-40 {
    padding: 20px !important;
  }
  .pt-40 {
    padding-top: 20px !important;
  }
  .pr-40 {
    padding-right: 20px !important;
  }
  .pb-40 {
    padding-bottom: 20px !important;
  }
  .pl-40 {
    padding-left: 20px !important;
  }
  /* - 50 PX - */
  .m-50 {
    margin: 20px !important;
  }
  .mt-50 {
    margin-top: 20px !important;
  }
  .mr-50 {
    margin-right: 20px !important;
  }
  .mb-50 {
    margin-bottom: 20px !important;
  }
  .ml-50 {
    margin-left: 20px !important;
  }
  /* - 50 PX PADDING - */
  .p-50 {
    padding: 20px !important;
  }
  .pt-50 {
    padding-top: 20px !important;
  }
  .pr-50 {
    padding-right: 20px !important;
  }
  .pb-50 {
    padding-bottom: 20px !important;
  }
  .pl-50 {
    padding-left: 20px !important;
  }
  /* - 60 PX MOBILE - */
  .m-60 {
    margin: 40px !important;
  }
  .mt-60 {
    margin-top: 40px !important;
  }
  .mr-60 {
    margin-right: 40px !important;
  }
  .mb-60 {
    margin-bottom: 40px !important;
  }
  .ml-60 {
    margin-left: 40px !important;
  }
  /* - 80 PX MOBILE - */
  .m-80 {
    margin: 40px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mr-80 {
    margin-right: 40px !important;
  }
  .mb-80 {
    margin-bottom: 40px !important;
  }
  .ml-80 {
    margin-left: 40px !important;
  }
  /* - 80 PADDING - */
  .p-80,
  .p-100 {
    padding: 40px !important;
  }
  .pt-80,
  .pt-100 {
    padding-top: 40px !important;
  }
  .pr-80,
  .pr-100 {
    padding-right: 40px !important;
  }
  .pb-80,
  .pb-100 {
    padding-bottom: 40px !important;
  }
  .pl-80,
  .pl-100 {
    padding-left: 40px !important;
  }
  /* - 100 PX - 
    .mt-100 {
        margin-top: 100px !important;
    }
    .mr-100 {
        margin-right: 100px !important;
    }
    .mb-100 {
        margin-bottom: 100px !important;
    }
    .ml-100 {
        margin-left: 100px !important;
    }*/
}/*# sourceMappingURL=custom.css.map */