:root {
  --blanc-casse-bleu: #EEF9FF;
  --neutral-dark: #04070B;
  --lighter-gray: #F2F2F2;
  --light-gray: #DADADB;
  --middle-gray: #CFCFD0;
  --danube: #548ED2;
  --danube-dark: #4371A8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Lato, sans-serif;
  color: var(--neutral-dark);
  background-color: white;
}

hr {
  color: rgba(4, 7, 11, 0.1490196078);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

h1, h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media (min-width: 768px) {
  h1, h2 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  h1, h2 {
    font-size: 38px;
  }
}

.hero h1 {
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
}
@media (min-width: 425px) {
  .hero h1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 46px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
}

h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  h3 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 42px;
  }
}

.button-white, .slider-btn, .button-blue {
  font-weight: bold;
  background-color: white;
  border: 1.5px solid var(--light-gray);
  border-bottom-width: 4px;
  padding: 8px 20px;
  border-radius: 12px;
  display: inline-block;
  line-height: normal;
  text-align: center;
  color: var(--neutral-dark);
  white-space: break-spaces;
}
.button-white:hover, .slider-btn:hover, .button-blue:hover {
  background-color: var(--light-gray);
}

.button-blue {
  color: white;
  background: var(--danube);
  border-color: var(--danube-dark);
}
.button-blue:hover {
  background-color: var(--danube-dark);
}

.slider-btn {
  background: url("/public/arrow.svg") center center no-repeat;
}

.bg-danube {
  background-color: var(--danube);
}

.bg-lighter-gray {
  background-color: var(--lighter-gray);
}

.border-middle-gray {
  border: 1px solid var(--middle-gray);
}

.bg-blanc-casse-bleu {
  background-color: var(--blanc-casse-bleu);
}

@media (min-width: 768px) {
  .no-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  .no-scrollbar::-webkit-scrollbar { /* WebKit */
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
