/* scss/style.scss */
:root {
  --light-grey: #c4c4c4;
  --dark-grey: #6d6d6d;
  --xella-blue: #004899;
  --blue: #036;
  --violet: #acb0e0;
  --very-light-blue: #e5edf5;
}
:root {
  --container: 100rem;
}
html,
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.625;
  font-optical-sizing: auto;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  overflow-x: hidden;
  font-size: 1.6rem;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body > header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
body > header .top-bar ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
body > header .top-bar ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--light-grey);
  font-size: 1.3rem;
}
body > header .top-bar ul li a.active {
  text-decoration: underline;
  color: #000;
  font-weight: bold;
}
body > header .top-bar ul li:first-child {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--light-grey);
}
body > header .title-bar {
  padding: 2rem;
  color: #fff;
  background-color: var(--xella-blue);
}
body > header .title-bar .title {
  max-width: 130rem;
  margin: 0 auto;
}
body > header .title-bar h1 {
  margin: 0;
  padding: 0;
  font-size: 4.2rem;
  font-weight: 400;
  font-style: normal;
}
body > header .title-bar strong {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.introduction {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
}
.introduction .content-1,
.introduction .content-2 {
  max-width: 45rem;
  margin-bottom: 5.9rem;
}
.introduction .content-1 .pretitle,
.introduction .content-2 .pretitle {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 700;
}
.introduction .content-1 .pretitle:before,
.introduction .content-2 .pretitle:before {
  position: absolute;
  top: 100%;
  left: -8rem;
  display: block;
  width: calc(100% + 8rem);
  height: 3px;
  content: "";
  background-color: var(--blue);
}
.introduction .content-1 h2,
.introduction .content-2 h2 {
  color: #111;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
}
.introduction .map {
  margin-bottom: 5.9rem;
}
.introduction .map img {
  width: 44rem;
  max-width: 100%;
  height: 44rem;
}
@media screen and (900px < width) {
  .introduction {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
  }
  .introduction .content-1 {
    grid-area: 1/1/2/2;
  }
  .introduction .content-2 {
    grid-area: 2/1/3/2;
  }
  .introduction .map {
    grid-area: 1/2/3/3;
  }
}
p.lead {
  margin-bottom: 2.4rem;
  color: #4b5563;
}
.form-grid {
  display: flex;
  flex-direction: column;
  width: 30rem;
  margin: 0;
  padding: 2rem;
  gap: 1.6rem;
}
.field label {
  display: block;
  margin-bottom: 0.6rem;
  text-align: left;
  font-weight: 600;
}
.field input,
.field select {
  display: block;
  box-sizing: border-box;
  width: 30rem;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field select {
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  background-color: #fff;
  background-image: url(../images/icons/default/caret-down.svg);
  background-repeat: no-repeat;
  background-position: top 1.6rem right 2rem;
  background-size: 1.2rem auto;
}
.field input {
  border: none;
  border-bottom: 3px solid var(--xella-blue);
  border-radius: 0;
  background-color: transparent;
}
.field .description {
  width: 100%;
}
.actions {
  margin-top: 2rem;
  text-align: center;
}
.disclaimer {
  padding: 1.2rem 2rem;
  text-align: center;
  color: var(--dark-grey, #6d6d6d);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}
button {
  padding: 1.2rem 2.8rem;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 0.6rem;
  background: #000080;
  font-size: 1.6rem;
}
.highlight {
  padding: 1.2rem;
  color: var(--xella-blue);
  border-radius: 0.6rem;
  background: var(--very-light-blue);
}
#messages {
  max-width: var(--container);
  margin: 1rem auto;
}
.results {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem;
}
.results .positive {
  padding: 2rem 4rem;
  text-align: center;
  color: #fff;
  background-color: var(--xella-blue);
}
.results .positive h2,
.results .positive h3 {
  text-align: center;
}
.results .positive h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}
.results .positive h3 {
  color: #fff;
  font-weight: normal;
}
.results .positive .kpi-grid {
  display: grid;
  margin-top: 1rem;
  margin-bottom: 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.results .positive .kpi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.results .positive .kpi p {
  min-width: 12rem;
  height: 4rem;
  padding: 1rem 1rem;
  color: var(--xella-blue);
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
}
.results .positive .kpi p span {
  font-size: 1.6rem;
}
.results .positive .highlight {
  margin: -2rem -4rem;
  color: var(--xella-blue);
  border-radius: 0;
  background-color: var(--very-light-blue);
  font-size: 2rem;
}
.warning {
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: var(--dark-grey, #6d6d6d);
  background: rgba(153, 69, 0, 0.1);
  font-size: 2rem;
  line-height: 2.6rem;
}
.small {
  margin-top: 0.8rem;
  color: var(--dark-grey, #6d6d6d);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .form-grid {
    display: grid;
    width: auto;
    max-width: var(--container);
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
  .field {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
  .field label {
    text-align: right;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  padding: 2rem;
  color: #fff;
  background: var(--xella-blue);
}
footer ul {
  display: flex;
  justify-content: center;
  margin: 0;
  list-style: none;
  gap: 2rem;
}
footer ul li {
  display: block;
}
footer ul li a {
  display: block;
  padding: 1rem 0;
  text-decoration: underline;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  footer ul {
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    padding-left: 0;
  }
}
/*# sourceMappingURL=style.css.map */
