@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@700&family=Source+Sans+3:wght@400;700&display=swap");
:root {
  font-size: 62.5%;
  --heading-font: 'Gothic A1', sans-serif; }

html {
  background: #212121; }

body {
  padding: 0;
  margin: 0;
  color: white; }

body, input, textarea, button {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 2rem;
  -webkit-font-smoothing: antialiased; }

div.inner {
  margin: 0 auto;
  max-width: 1445px;
  padding: 0 20px; }

a {
  text-decoration: none; }

div.content {
  line-height: 1.28;
  font-size: 1.8rem; }
  @media (min-width: 800px) {
    div.content {
      font-size: 2.5rem; } }
  div.content h3 {
    margin: 50px 0 25px 0;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase; }
    div.content h3:first-child {
      margin-top: 0; }
  div.content p {
    margin: 25px 0; }
  div.content li {
    margin: 20px 0; }
  div.content ul, div.content ol {
    margin: 30px 0; }
  div.content ul {
    list-style-type: disc; }
  div.content a {
    color: #61F2D1;
    text-decoration: none; }
  div.content img.content--image, div.content figure.content--image, div.content div.content--image-grid {
    margin: 25px 0; }
    div.content img.content--image:first-child, div.content figure.content--image:first-child, div.content div.content--image-grid:first-child {
      margin-top: 0; }
    div.content img.content--image:last-child, div.content figure.content--image:last-child, div.content div.content--image-grid:last-child {
      margin-bottom: 0; }
  div.content img.content--image, div.content figure.content--image img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto; }
  div.content figure.content--image figcaption {
    font-size: 0.9em;
    margin: 0; }
  div.content div.content--image-grid {
    display: grid;
    gap: 20px; }
    div.content div.content--image-grid img.content--image {
      margin: 0;
      width: 100%;
      height: auto; }
    @media (min-width: 500px) {
      div.content div.content--image-grid {
        gap: 25px;
        grid-template-columns: 1fr 1fr; }
        div.content div.content--image-grid .image-wide {
          grid-column: 1 / 3; } }
    @media (min-width: 750px) {
      div.content div.content--image-grid:not(.columns-3) {
        gap: 46px; }
      div.content div.content--image-grid.columns-3 {
        grid-template-columns: 1fr 1fr 1fr; }
        div.content div.content--image-grid.columns-3 .image-wide {
          grid-column: 1 / 4; } }
  div.content *:first-child {
    margin-top: 0; }
  div.content *:last-child {
    margin-bottom: 0; }

div.dropdown {
  --border-radius: 0;
  background: var(--dropdown-background);
  border-radius: var(--border-radius);
  overflow: hidden; }
  div.dropdown:not(:first-child) {
    margin-top: 30px; }
  div.dropdown > button {
    width: 100%;
    border: 0;
    text-align: left;
    border-radius: var(--border-radius);
    padding: 25px;
    color: white;
    background: var(--dropdown-button-background);
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background linear 250ms; }
    @media (min-width: 800px) {
      div.dropdown > button {
        padding: 35px 50px; } }
    @media (hover: hover) {
      div.dropdown > button:hover {
        background: var(--dropdown-button-background-hover); } }
    div.dropdown > button p {
      flex: 1 1 0;
      margin: 0;
      font-family: var(--heading-font);
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.2333;
      text-transform: uppercase; }
      @media (min-width: 800px) {
        div.dropdown > button p {
          font-size: 3rem; } }
    div.dropdown > button:after {
      display: block;
      content: '';
      flex: 0 0 auto;
      margin-left: 15px;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent; }
  div.dropdown div.dropdown--inner {
    padding: 25px; }
    @media (min-width: 800px) {
      div.dropdown div.dropdown--inner {
        padding: 35px 50px; } }
  div.dropdown.open button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  div.dropdown.open button:after {
    border-bottom: 12px solid #FFFFFF; }
  div.dropdown:not(.open) div.dropdown--inner {
    display: none; }
  div.dropdown:not(.open) button:after {
    border-top: 12px solid #FFFFFF; }
  div.dropdown, div.dropdown.dropdown--dark {
    --dropdown-background: #2F3D8A;
    --dropdown-button-background: #2D327E;
    --dropdown-button-background-hover: #363a7c; }
  div.dropdown.dropdown--light {
    --dropdown-background: #6086C5;
    --dropdown-button-background: #3868B7;
    --dropdown-button-background-hover: #436eb2; }

#footer {
  padding: 40px 0;
  font-size: 1.8rem;
  text-align: center; }
  @media (max-width: 700px) {
    #footer {
      font-size: 1.6rem; } }
  #footer a {
    color: white;
    text-decoration: none; }
  #footer p {
    margin: 25px 0; }
    #footer p:first-child {
      margin-top: 0; }
    #footer p:last-child {
      margin-bottom: 0; }
  #footer p.contact {
    word-break: break-word;
    line-height: 1.8em; }
  #footer a.communiti {
    margin: 15px auto;
    display: block;
    width: 80px;
    height: auto;
    aspect-ratio: 1; }
    #footer a.communiti img {
      width: 100%;
      height: auto; }
  @media (max-width: 899px) {
    #footer {
      text-align: center; }
      #footer p.title {
        font-size: 2.8rem;
        line-height: 3.4rem; } }
  @media (min-width: 900px) {
    #footer div.footer--inner {
      grid-template-columns: 1fr max-content; }
    #footer p.title {
      grid-column: span 2; } }

#header {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 100; }
  @media (min-width: 800px) {
    #header {
      position: sticky;
      top: 0; } }

div.header--main {
  padding: 25px 0 15px 0;
  display: flex;
  align-items: center;
  gap: 25px; }
  div.header--main, div.header--main a {
    color: #141F37;
    text-decoration: none; }
  div.header--main img.logo {
    display: block;
    aspect-ratio: 1 / 1;
    width: 60px;
    height: auto; }
  div.header--main h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2333; }
  @media (min-width: 800px) {
    div.header--main img.logo {
      width: 80px; }
    div.header--main h1 {
      font-size: 2.5rem; } }
  @media (min-width: 1200px) {
    div.header--main img.logo {
      width: 100px; }
    div.header--main h1 {
      font-size: 3rem; } }

div.header--menu {
  border-top: 1px solid #131E36;
  padding: 14px 0; }
  div.header--menu nav a {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: bold; }
  @media (max-width: 799px) {
    div.header--menu div.mobile-button {
      text-align: center; }
      div.header--menu div.mobile-button button {
        background: #3868B7;
        color: white;
        font-family: var(--heading-font);
        font-weight: 700;
        line-height: 1;
        border: 0;
        border-radius: 4px;
        padding: 8px 30px 6px 30px;
        cursor: pointer;
        text-transform: uppercase; }
    div.header--menu nav {
      position: fixed;
      top: 0;
      left: 100%;
      width: 100%;
      bottom: 0;
      transition: left linear 200ms;
      background: rgba(56, 104, 183, 0.95); }
      div.header--menu nav button.close {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        border: 0;
        cursor: pointer;
        background: url("/assets/images/menu_close.svg") no-repeat center center;
        background-size: 100% 100%;
        z-index: 1; }
      div.header--menu nav ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
      div.header--menu nav a {
        color: white; }
      body.menu-open {
        overflow: hidden; }
        body.menu-open #header div.header--menu nav {
          left: 0; } }
  @media (min-width: 800px) {
    div.header--menu div.mobile-button {
      display: none; }
    div.header--menu nav {
      font-size: 1.7rem;
      line-height: 1.222; }
      div.header--menu nav ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        gap: 65px; } }
    @media (min-width: 800px) and (max-width: 1199px) {
      div.header--menu nav ul {
        gap: 25px; } }
  @media (min-width: 800px) {
      div.header--menu nav li a {
        color: #141F37; }
      div.header--menu nav button.close {
        display: none; } }

img.hero {
  display: block;
  width: 100%;
  height: auto; }

h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.233;
  text-transform: uppercase;
  word-break: break-word; }
  @media (min-width: 800px) {
    h2 {
      font-size: 4rem; } }
  @media (min-width: 1200px) {
    h2 {
      font-size: 6rem; } }

div.introduction, div.proposals {
  background: #FFFFFF;
  color: #000000; }
  div.introduction div.dropdown div.content, div.proposals div.dropdown div.content {
    color: #FFFFFF; }

div.background, div.technical {
  background: #3868B7; }
  div.background h2, div.technical h2 {
    color: #FFFFFF; }

div.introduction, div.background, div.proposals, div.technical, div.feedback {
  padding: 50px 0;
  scroll-margin-top: 200px; }
  @media (min-width: 800px) {
    div.introduction, div.background, div.proposals, div.technical, div.feedback {
      scroll-margin-top: 190px; } }
  @media (min-width: 1400px) {
    div.introduction, div.background, div.proposals, div.technical, div.feedback {
      scroll-margin-top: 150px; } }

div.technical div.technical--base {
  margin: 25px 0 50px 0; }
  div.technical div.technical--base p:first-child {
    font-weight: bold; }
  div.technical div.technical--base div.lists ul {
    margin: 0; }
  div.technical div.technical--base div.lists li {
    margin: 10px 0; }
  @media (min-width: 1200px) {
    div.technical div.technical--base div.lists {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px; } }

div.feedback {
  background: #FFFFFF;
  color: #1F193C;
  padding-bottom: 100px; }
  div.feedback div.content {
    margin: 35px 0; }
  div.feedback div.consultation-event {
    margin: 40px 0;
    font-size: 1.1em; }
    div.feedback div.consultation-event h4 {
      margin-bottom: 15px; }
  div.feedback div.buttons {
    margin-bottom: 50px;
    display: grid;
    row-gap: 25px;
    column-gap: 25px; }
    @media (min-width: 900px) {
      div.feedback div.buttons {
        grid-template-columns: 1fr 1fr; } }
    div.feedback div.buttons a {
      display: block;
      background: #1F193C;
      font-size: 2.5rem;
      font-weight: bold;
      line-height: 1.2;
      padding: 45px 10px;
      width: 100%;
      box-sizing: border-box;
      color: white;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none; }
      @media (hover: hover) {
        div.feedback div.buttons a {
          transition: background linear 150ms; }
          div.feedback div.buttons a:hover {
            background: #272246; } }
  div.feedback ul.contact {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.2666; }
    div.feedback ul.contact, div.feedback ul.contact a {
      color: #1F193C;
      text-decoration: none; }
    div.feedback ul.contact li {
      margin: 30px 0;
      display: grid;
      grid-template-columns: 30px 1fr;
      align-items: center;
      gap: 20px; }
      div.feedback ul.contact li p {
        margin: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
        min-width: 0; }
      div.feedback ul.contact li:first-child {
        margin-top: 0; }
      div.feedback ul.contact li:last-child {
        margin-bottom: 0; }
      div.feedback ul.contact li:before {
        display: block;
        width: 30px;
        height: 30px;
        content: '';
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain; }
      div.feedback ul.contact li.telephone:before {
        background-image: url("/assets/images/telephone.svg"); }
      div.feedback ul.contact li.email:before {
        background-image: url("/assets/images/email.svg"); }
    @media (min-width: 800px) {
      div.feedback ul.contact {
        font-size: 2rem; }
        div.feedback ul.contact li:before {
          width: 40px;
          height: 40px; } }
    @media (min-width: 1200px) {
      div.feedback ul.contact {
        font-size: 3rem; } }
  div.feedback div.form {
    margin-top: 40px; }
    div.feedback div.form div.response {
      margin-bottom: 30px; }
      div.feedback div.form div.response p {
        margin: 0;
        font-size: 1.1em;
        line-height: 1.5;
        font-weight: bold; }
      div.feedback div.form div.response.error {
        color: #9f0000; }
      div.feedback div.form div.response.success {
        color: #197f00; }
    div.feedback div.form form {
      display: grid;
      gap: 25px; }
      @media (min-width: 900px) {
        div.feedback div.form form {
          grid-template-columns: 3fr 5fr; }
          div.feedback div.form form textarea, div.feedback div.form form button {
            grid-column: 1 / 3; } }
      div.feedback div.form form input, div.feedback div.form form textarea, div.feedback div.form form button {
        margin: 0;
        font-size: 2rem;
        line-height: 3rem;
        padding: 20px; }
      div.feedback div.form form input, div.feedback div.form form textarea {
        color: #3E3E3E;
        border: 2px solid #3E3E3E; }
      div.feedback div.form form button {
        background: #2D327E;
        color: white;
        border: 0;
        text-align: center;
        cursor: pointer;
        font-weight: bold; }
        @media (hover: hover) {
          div.feedback div.form form button {
            transition: background linear 150ms; }
            div.feedback div.form form button:hover {
              background: #373c85; } }

div.moving-table {
  line-height: 1.28;
  font-size: 1.8rem; }
  @media (min-width: 800px) {
    div.moving-table {
      font-size: 2.5rem; } }
  div.moving-table p {
    margin: 5px 0; }
    div.moving-table p:first-child {
      margin-top: 0; }
    div.moving-table p:last-child {
      margin-bottom: 0; }
  @media (max-width: 1199px) {
    div.moving-table {
      margin-top: 25px; }
      div.moving-table header {
        text-transform: uppercase;
        font-size: 1.1em;
        font-weight: bold;
        font-family: var(--heading-font); }
        div.moving-table header:last-of-type {
          display: none; }
      div.moving-table div.issue, div.moving-table div.proposal {
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        padding-left: 10px; }
      div.moving-table div.issue {
        margin-top: 20px;
        font-weight: bold; }
      div.moving-table div.proposal {
        padding-top: 5px; } }
  @media (min-width: 1200px) {
    div.moving-table {
      margin-top: 15px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      text-align: center; }
      div.moving-table header, div.moving-table div.issue, div.moving-table div.proposal {
        padding: 12px; }
      div.moving-table header {
        font-weight: bold; }
      div.moving-table div.issue, div.moving-table div.proposal {
        padding: 12px; }
      div.moving-table header {
        border: 2px solid white; }
        div.moving-table header:last-of-type {
          border-left: 0; }
      div.moving-table div.issue {
        border: 1px solid white;
        border-left-width: 2px;
        border-top: 0; }
      div.moving-table div.proposal {
        border-right: 2px solid white;
        border-bottom: 1px solid white; }
      div.moving-table div.issue:nth-last-child(-n+2), div.moving-table div.proposal:nth-last-child(-n+2) {
        border-bottom-width: 2px; } }

ul.floorplan-features {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  font-size: 0.95em; }
  @media (min-width: 1100px) {
    ul.floorplan-features {
      grid-template-columns: auto auto; } }
  @media (min-width: 1250px) {
    ul.floorplan-features {
      grid-template-columns: auto auto auto; } }
  @media (min-width: 1445px) {
    ul.floorplan-features {
      grid-template-columns: auto auto auto auto; } }
  @media (min-width: 1100px) {
    ul.floorplan-features.half-width {
      grid-template-columns: auto auto;
      max-width: 66%; } }
  @media (min-width: 1445px) {
    ul.floorplan-features.half-width {
      max-width: 50%; } }
  ul.floorplan-features li {
    margin: 0; }
