/*
===============================================================================
VIKING-SBL.CSS
===============================================================================
*/

/* ============================== ROOT ============================== */
:root {

  /* ========== PAGE ========== */
  --sbl-page_background-color: var(--hex-blue-1i);

  --sbl-content-top_margin-top: -20px;
  --sbl-content-body_margin-top: -30px;

  /* ========== IMAGES ========== */
  --banner-image_opacity: 1.00;
  --banner-image_brightness: 1.00;
  --banner-image_background-color: rgba(36, 40, 62, 1.00);

  /* ========== TEXT ========== */
  --sbl-title_color: var(--hex-blue-1);
  --sbl-title_margin-bottom: 16px;

  --sbl-h2_color: var(--hex-blue-1);
  --sbl-h2_margin-top: 20px;
  --sbl-h2_margin-bottom: 4px;

  --sbl-h4_color: var(--hex-blue-1);
  --sbl-h4_margin-top: 14px;
  --sbl-h4_margin-bottom: 2px;

  --sbl-h5_color: var(--hex-blue-1);
  --sbl-h5_margin-top: 14px;
  --sbl-h5_margin-bottom: 0px;

  --sbl-p_color: var(--hex-blue-1);
  --sbl-p_font-size: 18px;
  --sbl-p_line-height: 25px;
  --sbl-p_margin-top: 0px;
  --sbl-p_margin-bottom: 12px;

  --sbl-ol_color: var(--hex-blue-1);
  --sbl-ol_font-size: 18px;
  --sbl-ol_line-height: 25px;
  --sbl-ol_margin-top: 0px;
  --sbl-ol_margin-bottom: 12px;

}

/* ============================== @MEDIA ============================== */

/* COMPUTER (LARGE) OR LARGER */
@media screen and (min-width: 992px) {
  .sbl-content .sbl-content-body p {
    text-align: justify;
  }
}

/* TABLETS OR SMALLER */
@media screen and (max-width: 991.98px) {
  .sbl-content {
    padding: 60px 0 60px;
    margin-top: 0;
  }
}

/* ============================== PAGE ============================== */
.sbl-page {
  margin-top: 94px;
  background-color: var(--sbl-page_background-color);
}

/* ============================== IMAGES ============================== */

.image.banner-image {
  display: inline-block;
  isolation: isolate;
  opacity: var(--banner-image_opacity);
  background-color: var(--banner-image_background-color);
  filter: brightness(var(--banner-image_brightness));
}

.image.banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

/* ============================== CONTENT ============================== */
.sbl-content {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: var(--hex-white);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
  max-width: 1030px;
  padding-top: 60px;
  padding-bottom: 108px;
  padding-left: 60px;
  padding-right: 60px;
  gap: 40px;
}

.sbl-content .sbl-content-top {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: var(--sbl-content-top_margin-top);
}

.sbl-content .sbl-content-body {
  margin-top: var(--sbl-content-body_margin-top);
}

/* ========== TEXT ========== */
.sbl-content .sbl-content-top .sbl-title {
  color: var(--sbl-title_color);
  margin-bottom: var(--sbl-title_margin-bottom);
}

.sbl-content .sbl-content-top .sbl-title-underline {
  border: none;
  height: 2px;
  background-color: var(--hex-blue-1);
  opacity: 1.00;
  width: 100%;
  margin: 15px 0;
}

.sbl-content .sbl-content-body h2 {
  color: var(--sbl-h2_color);
  margin-top: var(--sbl-h2_margin-top);
  margin-bottom: var(--sbl-h2_margin-bottom);
}

.sbl-content .sbl-content-body h4 {
  color: var(--sbl-h4_color);
  margin-top: var(--sbl-h4_margin-top);
  margin-bottom: var(--sbl-h4_margin-bottom);
}

.sbl-content .sbl-content-body h5 {
  color: var(--sbl-h5_color);
  font-style: italic;
  margin-top: var(--sbl-h5_margin-top);
  margin-bottom: var(--sbl-h5_margin-bottom);
}

.sbl-content .sbl-content-body p {
  color: var(--sbl-p_color);
  font-size: var(--sbl-p_font-size);
  line-height: var(--sbl-p_line-height);
  margin-top: var(--sbl-p_margin-top);
  margin-bottom: var(--sbl-p_margin-bottom);
}

.sbl-content .sbl-content-body p a {
  border-bottom: 1.5px dotted var(--hex-blue-1);
}


.sbl-content .sbl-content-body ol {
  color: var(--sbl-ol_color);
  font-size: var(--sbl-ol_font-size);
  line-height: var(--sbl-ol_line-height);
  margin-top: var(--sbl-ol_margin-top);
  margin-bottom: var(--sbl-ol_margin-bottom);
}

.sbl-content .sbl-content-body ol.list-group-bullets .list-group-item {
  display: list-item !important;
  list-style-type: disc !important;
  list-style-position: inside !important;
  padding-left: 20px;
  text-indent: -20px; 
}

.sbl-content .sbl-content-body ol.list-group-numbered .list-group-item {
  padding-left: 20px;
  text-indent: -20px; 
}
