/* Desktop */
/* Petit Desktop */
/* Tablet */
/* mobile */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  position: relative;
  margin: 0;
  background-color: #fef6eb;
  color: #13293d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
}

.btn,
[type=button],
[type=submit] {
  background-color: #ef8900;
  border-radius: 2.5px;
  color: #13293d;
  cursor: pointer;
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1;
  padding: 0.8em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
.btn.btn--sm,
[type=button].btn--sm,
[type=submit].btn--sm {
  padding: 0.4em;
  font-size: 0.8rem;
}
.btn:hover, .btn:focus, .btn:active,
[type=button]:hover,
[type=button]:focus,
[type=button]:active,
[type=submit]:hover,
[type=submit]:focus,
[type=submit]:active {
  background-color: #ffa123;
}
.btn.has-icon,
[type=button].has-icon,
[type=submit].has-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.has-icon .icon,
[type=button].has-icon .icon,
[type=submit].has-icon .icon {
  margin-right: 10px;
}
.btn.has-icon.is-right .icon,
[type=button].has-icon.is-right .icon,
[type=submit].has-icon.is-right .icon {
  margin-left: 10px;
  margin-right: 0;
}
.btn.has-icon:hover svg,
.btn.has-icon:hover path,
[type=button].has-icon:hover svg,
[type=button].has-icon:hover path,
[type=submit].has-icon:hover svg,
[type=submit].has-icon:hover path {
  fill: currentColor;
}
.btn.close,
[type=button].close,
[type=submit].close {
  display: none;
}

.button--cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00378a;
  color: #fafafa;
  text-decoration: none;
  border-radius: 3.5px;
  padding: 12px;
}
.button--cta .caption + .icon {
  margin-left: 12px;
}
.button--cta:focus, .button--cta:hover {
  background-color: #ef8900;
  color: #13293d;
}

.btn--outline {
  border: 0.1em solid currentColor;
  background-color: white;
  color: #00378a;
}

.btn--cta {
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 4rem;
  padding: 0 2rem;
  text-align: center;
}
@media (max-height: 455px) {
  .btn--cta {
    height: 3rem;
  }
}

.btn--down {
  width: 100%;
  left: auto;
  right: 0;
  margin: 0;
  text-align: center;
  -webkit-animation: sdb05 1.5s 3;
          animation: sdb05 1.5s 3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn--down:hover {
  opacity: 0.5;
}
.btn--down svg {
  width: 3rem;
  height: 3rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-height: 490px) {
  .btn--down svg {
    width: 42px;
    height: 42px;
  }
}
@media (max-height: 300px) {
  .btn--down {
    display: none;
  }
}

.alert-error,
.alert-success,
.alert-info,
.alert-warning {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  list-style: none outside;
  padding: 1em 2em;
  position: relative;
  width: 100%;
}

.alert-error {
  background-color: #e32d16;
  color: white;
}
.alert-error::before {
  background-image: url(/images/svg/icon-cross.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1em;
  margin-right: 0.5em;
  position: relative;
  width: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.alert-success {
  background-color: #ef8900;
}

.alert-info {
  background-color: #00378a;
  color: white;
}

.alert-warning {
  background-color: #ef8900;
}

.rythm-v > * + * {
  margin-top: 1rem;
}

.rythm-h > * + * {
  margin-left: 1rem;
}

.offscreen {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.unsupported-browser {
  padding: 1rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 80%;
  width: 50rem;
  background-color: #fafafa;
  border-radius: 3.5px;
  -webkit-box-shadow: 0 4px 8px #c7c7c7;
          box-shadow: 0 4px 8px #c7c7c7;
}