/* Colors */
:root {
  --dark-blue: #003B5C;
  --light-blue: #007BFF;
  --grey: #F5F5F5;
  --white: #fefefe;
  --black: #909090;
}

/* box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); */

/* Typography */
body {
  font-family: 'Roboto', sans-serif;
}

p {
  font-family: 'Open Sans', sans-serif;
}

a {
  color: var(--light-blue) 
}

p, span, h1, h2 h3, h4, h5 {
  color: var(--black);
}

/* General Styling */

body {
  background-color: var(--white);
  color: var(--black);
}

.container {
  background-color: var(--white);
  border: 1px solid var(--white);
  padding: 20px;
}

.button {
  background-color: var(--light-blue);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #003B5C;
  --bs-btn-border-color: #003B5C;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.hidden {

  display: none;
}

/* Additional Styles */

/* MENU */

.logo {
  height: 60px;
  width: auto;
  margin-left: 20px;
}

.navbar {
  background-color: #fefefe;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.nav-link {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.nav-item {
margin: 0 15px;
padding: 2px;
}

.nav-item:hover a {
 color: var(--light-blue);
 border-bottom: solid 2px #007BFF;
}

.navbar-brand span{
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 700;
  margin-left: 20px;
  font-size: 34px;
}

.navbar button{
margin-left: 15px;
}



/* HERO */

.hero-section {
  background-image: url('../images/home-hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.hero-section h1 {
  color: var(--dark-blue);
  text-shadow: 1px 1px 1px #fefefe;
  width: 75%;
  margin-left: auto;
  margin-right: auto
}

.hero-section p {
  color: var(--light-blue);
  text-shadow: 1px 1px 1px #090909;
  width: 75%;
  margin-left: auto;
  margin-right: auto
}

.hero-section button {
 margin-top: 50px;
 padding: 10px 25px;
 border-radius: 2px;
 box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
 text-shadow: 1px 1px 1px #090909;
}

.hero-section button i {
display: inline-block;
margin-left: 10px;
transition: all 0.5s cubic-bezier(.25,.8,.25,1) !important;
 }

 .hero-section button:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transition: all 0.5s cubic-bezier(.25,.8,.25,1);
 }

 .hero-section button {
  transition: all 0.5s cubic-bezier(.25,.8,.25,1) !important;
 }

 .hero-section button:hover i{
  margin-left: 20px;
  margin-right: -10px;
  transition: all 0.5s cubic-bezier(.25,.8,.25,1);
 }

 /*  SIDEBAR   */

 .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    transition: 0.3s;
    z-index: 1000;
    background-color: var(--dark-blue) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }

  #menu-toggle {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background-color: var(--dark-blue) !important;
    color: #fefefe;
    font-size: 40px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }

  @media (max-width: 767px) {
    .sidebar {
    left: -250px;
    }
  }

  .sidebar.closed {
  left: -250px;
  }

  .sidebar h3{
    text-align: center;
    padding: 30px 10px 30px 10px;
    text-shadow: 1px 1px 1px #090909;
    border-bottom: 2px solid #0a53be;  
}

.sidebar button{
display: block;
margin: 40px auto;
}

/* FORM  */

.brand-section {
    width: 50%;
    margin: 50px auto 20px auto;
}

.brand-section h1{
text-align: center;
margin-bottom: 20px;
}

.chip {
    display: inline-block;
    padding: 0 10px;
    height: 32px;
    margin: 2px;
    border: 1px solid #ccc;
    line-height: 32px;
}
#otherField {
    display: none;
}

.range-labels {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
margin-bottom: 30px;
}

.range-labels span{
text-align: left;
}
