:root {
    --font_default: "Open Sans";
    --color_text_default: rgba(9, 23, 71, 1);
    --color_text_default_rgb: 9,23,71;
    --color_alert_default: rgba(250, 181, 21, 1);
    --color_alert_default_rgb: 250,181,21;
    --color_primary_default: rgba(239, 69, 86, 1);
    --color_primary_default_hover: rgba(239, 69, 86, 0.1);
    --color_primary_default_rgb: 239,69,86;
    --color_success_default: rgba(23, 219, 78, 1);
    --color_success_default_rgb: 23,219,78;
    --color_surface_default: rgba(255,255,255,1);
    --color_surface_default_rgb: 255,255,255;
    --color_background_default: rgba(255, 255, 255, 1);
    --color_background_default_rgb: 255,255,255;
    --color_destructive_default: rgba(255, 0, 0, 1);
    --color_destructive_default_rgb: 255,0,0;
    --color_primary_contrast_default: rgba(255,255,255,1);
    --color_primary_contrast_default_rgb: 255,255,255;
  }

body {
font-family: Helvetica, Arial, sans-serif;
color: var(--color_text_default);
}

.nav-link {
    color: var(--color_text_default);
}

.navbar{
    padding-top: 16px;
    padding-left: 8px;
}
.nav-item {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
}

.logo {    
    display: block;
    height: 21px;
    width: 95px;
}

.contrast-fl{
    background-color: var(--color_primary_default);
    border: none;
}

.contrast-fl:hover{
    background-color: var(--color_primary_default);
    opacity: 75%;
}

.contrast{
    border-color: var(--color_primary_default);
    background: none;
    color: var(--color_primary_default);
}

.contrast:hover, li:has(> a):hover{
    border-color: var(--color_primary_default);
    background-color: var(--color_primary_default_hover);
    color: var(--color_primary_default);
}

.adv {
    padding: 40px;
    font-size:small;
}

.adv h3 {
    padding-top: 25px;
    font-size:24px;
}

  
  
  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
  
  /* Carousel base class */
  .carousel {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 10rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 42rem;
    background-color: #777;
  }
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  }
  
  
  /* MARKETING CONTENT
  -------------------------------------------------- */
  
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-3 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .marketing .col-lg-3 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }
  
  
  /* Featurettes
  ------------------------- */
  
  .featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 200;
    line-height: 1;
    letter-spacing: -.05rem;
  }
  
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }
  