@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/* FONT-FAMILY VARIABLES */
/* FONT-SIZE VARIABLES */
/* FONT-WEIGHT VARIABLES */
/* COLOR VARIABLES */
/* PADDING VARIABLES */
/* ESSENTIALS */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  width: 100%;
  height: 100%;
  font-family: "Space Grotesk", sans-serif;
  color: #000033;
  font-size: 16px;
  font-weight: 300;
}

body {
  width: 100%;
  height: 100%;
  -webkit-print-color-adjust: exact !important;
}

.app {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 700px) {
  .app {
    height: initial;
  }
}
.app.home h2.title {
  margin-bottom: 60px;
  text-align: center;
  font-size: calc(32px * 0.9);
  font-weight: 900;
  line-height: calc(32px * 0.9);
}
.app.home h2.title span {
  display: block;
}
.app.home h2.title span.subtxt {
  font-size: calc(16px * 1);
  color: #00dfa2;
}

.vertical {
  display: table-cell;
  vertical-align: middle;
}

.response {
  width: 900px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 70px;
}
@media all and (max-width: 900px) {
  .response {
    width: 100%;
    padding: 30px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: "Space Grotesk", sans-serif;
  background: none;
  border: 0;
  background: #000033;
  display: block;
  margin: 10px auto;
  font-size: 16px;
  border-radius: calc(16px / 2);
  position: relative;
}
button a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: calc(24px / 2) calc(24px * 1.5);
  font-weight: 800;
  line-height: calc(16px * 1);
  position: relative;
}
button .subbutton {
  font-size: 10px;
  color: #000033;
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
button.medium {
  font-size: 24px;
}
button.medium a {
  line-height: calc(24px * 1);
}
button.big {
  font-size: 32px;
}
button.big a {
  line-height: calc(32px * 1);
}

p {
  margin-bottom: 30px;
}
p.high {
  font-weight: 900;
}

/* HN */
h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: calc(48px * 1);
}
h1 span.highlight {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 calc(48px * 0.25);
  display: inline-block;
}
h1 span.highlight::after {
  content: "";
  background: #00dfa2;
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-radius: 8px;
}

h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: calc(32px * 1);
}

h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: calc(24px * 1);
}

ul {
  list-style-type: none;
  counter-reset: my-awesome-counter;
}
ul.numbered {
  padding-bottom: 30px;
}
ul.numbered li {
  counter-increment: my-awesome-counter;
  padding-left: 40px;
  position: relative;
  padding-left: 110px;
}
ul.numbered li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  top: 0;
  left: 0;
  /* background: red; */
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-weight: bold;
  -webkit-box-shadow: 0 0 0 4px;
          box-shadow: 0 0 0 4px;
  border-radius: 100%;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  height: 130px;
  width: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header.fixed {
  top: -40px;
}
header.fixed .header {
  background: #f1f1f1;
}
header .preheader {
  width: 100%;
  height: 40px;
  background: #00dfa2;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(16px * 0.8);
  font-weight: 900;
}
@media all and (max-width: 700px) {
  header .preheader {
    font-size: calc(16px * 0.6);
  }
}
header .preheader .ticket,
header .preheader .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .preheader .ticket {
  background: #000033;
  color: white;
  padding: 3px 10px;
  margin-right: 10px;
  border-radius: 4px;
}
header .preheader .visual {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5px;
}
header .preheader .visual img,
header .preheader .visual svg {
  height: 40%;
}
header .header {
  width: 100%;
  height: 90px;
  background: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header .response {
  padding: 0px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header .header .logo {
  width: 200px;
  padding: 20px;
}
header .header .logo svg {
  height: 100%;
}
header .header .menu {
  padding: 0 20px;
  height: 100%;
  width: calc(100% - 280px);
}
header .header .menu nav {
  height: 100%;
}
@media all and (max-width: 700px) {
  header .header .menu nav {
    display: none;
  }
}
header .header .menu ul {
  list-style-type: none;
}
header .header .menu ul.parent {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
header .header .menu ul li.parent {
  height: 100%;
  position: relative;
  font-size: calc(16px * 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header .menu ul li.parent:before {
  content: "";
  background: #000033;
  position: absolute;
  right: -10px;
  top: calc(50% + 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
header .header .menu ul li.parent:after {
  content: "";
  background: #000033;
  position: absolute;
  right: -14px;
  top: calc(50% + 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
header .header .menu ul li.parent:hover:before {
  right: -10px;
  top: calc(50% + 0px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .header .menu ul li.parent:hover:after {
  right: -14px;
  top: calc(50% + 0px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .header .menu ul li.parent:hover .dropdown {
  top: 130px !important;
  opacity: 1;
  visibility: visible;
}
header .header .menu ul li.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
header .header .menu ul li.parent .dropdown {
  position: fixed;
  width: 100%;
  background: #f1f1f1;
  left: 0;
  top: 30px;
  z-index: 999;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: -1;
  border-radius: 0 0 24px 24px;
}
header .header .menu ul li.parent .dropdown.fixed {
  top: 90px !important;
}
header .header .menu ul li.parent .dropdown ul.child {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
}
header .header .menu ul li.parent .dropdown ul.child > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
header .header .menu ul li.parent .dropdown ul.child > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
header .header .menu ul li.parent .dropdown ul.child > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
header .header .menu ul li.parent .dropdown ul.child li.child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
}
header .header .menu ul li.parent .dropdown ul.child li.child .visual {
  background: #00dfa2;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
header .header .menu ul li.parent .dropdown ul.child li.child .infos .txt {
  font-weight: 900;
}
header .header .menu ul li.parent .dropdown ul.child li.child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header .menu ul li.parent .dropdown .cta {
  width: 300px;
  height: 100%;
  background: #000033;
  border-radius: 12px;
  margin-left: 20px;
  padding: 30px;
  color: white;
}
header .header .menu ul li.parent .dropdown .cta .title {
  color: white;
  font-size: calc(24px * 1);
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
header .header .menu ul li.parent .dropdown .cta .title span.highlight {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 calc(48px * 0.25);
  display: inline-block;
}
header .header .menu ul li.parent .dropdown .cta .title span.highlight::after {
  content: "";
  background: rgba(255, 255, 255, 0.25);
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-radius: 8px;
}
header .header .menu ul li.parent .dropdown .cta p {
  margin-bottom: 20px;
}
header .header .menu ul li.parent .dropdown .cta button {
  background: #00dfa2;
  font-size: calc(16px * 0.8);
}
header .header .menu ul li.parent .dropdown .cta button a {
  padding: calc(24px / 2) calc(24px * 0.6);
}
header .header .menu ul li a {
  text-decoration: none;
  color: inherit;
}
header .header .phone {
  background: #000033;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  font-family: "Material Symbols Outlined";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  position: relative;
}
header .header .phone a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
header .header .phone:after {
  width: 100%;
  height: 100%;
  content: " \e8a8";
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: calc(48px * 0.8);
}
header.home .header .logo svg .st2 {
  fill: white !important;
}
header.home .header li.parent {
  color: white;
}
header.home .header li.parent:before, header.home .header li.parent:after {
  background: white !important;
}
header.home .header li.parent li.child {
  color: #000033;
}
header.home.fixed .header .logo svg .st2 {
  fill: #000033 !important;
}
header.home.fixed .header li.parent {
  color: #000033;
}
header.home.fixed .header li.parent:before, header.home.fixed .header li.parent:after {
  background: #000033 !important;
}

/* MAIN */
main > section {
  width: 100%;
}
main > section:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 130px;
}
main > section.banner {
  background: url(https://official-oversears-file.sungrowpower.com/page-assets/fe328405-1a08-4c2f-9561-fbd4c0200126.jpg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
  position: relative;
  color: white;
}
main > section.banner:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
@media all and (max-width: 700px) {
  main > section.banner {
    height: initial;
  }
}
main > section.banner .response {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 700px) {
  main > section.banner .response {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 70px;
  }
  main > section.banner .response .left {
    text-align: center;
    padding-bottom: 30px;
  }
  main > section.banner .response .right {
    padding: 0;
  }
  main > section.banner .response .right .card {
    margin: 0 auto;
  }
}
main > section.banner .left,
main > section.banner .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  z-index: 9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main > section.banner .right {
  padding-left: 30px;
}
main > section.banner .left {
  text-align: right;
}
main > section.banner article {
  padding: 0;
}
@media all and (max-width: 700px) {
  main > section.banner article h1 {
    font-size: calc(48px * 0.8);
    line-height: calc(48px * 0.8);
  }
}
main > section.banner .card {
  width: 300px;
  background: white;
  border-radius: 14px;
}
main > section.banner .card .top {
  width: 100%;
  height: 100px;
  background: linear-gradient(45deg, #00dfa2 0%, #eddd53 100%);
  border-radius: 14px 14px 0 0;
  padding: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main > section.banner .card .top .txt {
  font-weight: 900;
  font-size: calc(24px * 0.8);
  color: #000033;
}
main > section.banner .card .top .subtxt {
  font-style: italic;
}
main > section.partners {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
main > section.partners ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main > section.partners ul li {
  width: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
main > section.process {
  background: #f1f1f1;
  padding: 50px 0;
}
main > section.process h3 {
  margin-bottom: 20px;
}
main > section.about {
  padding: 50px 0;
  background: #F1F1F1;
}
main > section.about article {
  padding-bottom: 0;
}
main > section.about article h3 {
  margin-bottom: 20px;
}
main > section.how {
  padding: 50px 0;
}
main > section.how article {
  padding-bottom: 0;
}
main > section.how article h3 {
  margin-bottom: 20px;
}
main > section.how img {
  width: 300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main > section.how .bigcta {
  margin-top: 30px;
}
main > section.avis {
  padding: 50px 0;
  background: linear-gradient(45deg, #00dfa2 0%, #eddd53 100%);
}
main > section.avis article {
  padding-bottom: 0;
}
main > section.avis .description {
  display: inline-block;
}
main > section.avis h2.title span.subtxt {
  color: white !important;
}
main > section.avis .review {
  text-align: center;
  padding-bottom: 20px;
  color: white;
}
main > section.avis p.high {
  font-size: calc(24px * 1);
  line-height: calc(24px * 1);
  color: white;
}
main > section.avis p.author {
  color: white;
  font-size: calc(24px * 1);
  line-height: calc(24px * 1);
  font-weight: 400;
  text-align: center;
}
main > section.avis ul.flex-direction-nav {
  display: none;
}
main > section.gallery {
  padding: 50px 0;
  background: #000033;
  color: white;
}
main > section.gallery .visuals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
main > section.gallery .visuals .visual {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px; /* largeur mini 300px */
  aspect-ratio: 4/3; /* toutes les cartes ont le même format */
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
main > section.gallery .visuals .visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  left: initial;
}
main > section.gallery .bigcta {
  color: #000033;
}
main > section.skills {
  padding: 50px 0;
}
main > section.skills ul.numbered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
main > section.skills ul.numbered li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
}
main > section.skills ul.numbered li:before {
  font-family: "Material Symbols Outlined";
}
main > section.skills ul.numbered li:nth-child(1):before {
  content: "\eb37";
}
main > section.skills ul.numbered li:nth-child(1):before {
  content: "\eb37";
}
main > section.skills ul.numbered li:nth-child(2):before {
  content: "\f537";
}
main > section.skills ul.numbered li:nth-child(3):before {
  content: "\e3db";
}
main > section.skills ul.numbered li:nth-child(4):before {
  content: "\efac";
}
main > section.faq {
  padding: 50px 0;
}

article {
  width: 100%;
  padding-bottom: 50px;
}
article section {
  padding: 0;
}
article section .response {
  padding-top: 0;
  padding-bottom: 30px;
}
article section:first-child .response {
  padding-bottom: 0;
  padding-top: 70px;
}
article h1,
article h2,
article h3,
article .description,
article .visual {
  margin-bottom: 30px;
}
article .visual {
  width: 100%;
  height: 200px;
  background: #00dfa2;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
article .visual img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: absolute;
}
@media all and (max-width: 700px) {
  article .visual img {
    width: 170%;
    left: -35%;
  }
}
article .description {
  line-height: 22px;
  margin-bottom: 0px;
}
article .bigcta {
  background: #f4f4f4;
  width: 100%;
  border-radius: 12px;
  text-align: center;
  padding: 50px;
}
article .bigcta .subtitle {
  color: #00dfa2;
}
article .bigcta h2 {
  margin-bottom: 30px !important;
}
article .bigcta.dark {
  background: #000033;
  color: white;
}
article .bigcta.dark button {
  background: #00dfa2;
}
article .bigcta.dark button a {
  color: #000033;
}
article .bigcta.dark button .subbutton {
  color: #00dfa2;
}
article .buttons {
  text-align: center;
  width: 100%;
}

.review .stars .star {
  font-family: "Material Icons";
  color: #ffcc00;
}
.review .note {
  font-size: calc(16px * 0.8);
}
.review .note span.number {
  font-weight: 900;
}

.bigprogress {
  width: 100%;
  height: 8px;
  z-index: 9;
}
.bigprogress .progress {
  background: -webkit-gradient(linear, left top, right top, from(#00dfa2), to(rgb(237, 221, 83)));
  background: linear-gradient(90deg, #00dfa2 0%, rgb(237, 221, 83) 100%);
  height: 100%;
  width: 0%;
}

footer {
  width: 100%;
  background: #f1f1f1;
}
footer .response {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 700px) {
  footer .response {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .response .corporate {
    width: 100%;
    padding-bottom: 50px;
  }
  footer .response .menu nav ul.parent {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
footer .response .menu nav ul.parent {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
footer .response .menu nav ul.parent li.parent ul.child li.child:has(> ul.subchild) {
  font-weight: 900;
  position: relative;
}
footer .response .menu nav ul.parent li.parent ul.child li.child:has(> ul.subchild) span {
  width: 100%;
  display: block;
  position: relative;
}
footer .response .menu nav ul.parent li.parent ul.child li.child:has(> ul.subchild) span:before {
  content: "";
  background: #000033;
  position: absolute;
  right: 7px;
  top: calc(50% - 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
footer .response .menu nav ul.parent li.parent ul.child li.child:has(> ul.subchild) span:after {
  content: "";
  background: #000033;
  position: absolute;
  right: 3px;
  top: calc(50% - 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
footer .response .menu nav ul.parent li.parent ul.child li.child:has(> ul.subchild) ul.subchild {
  font-weight: 400;
  padding-top: 10px;
}
footer .response .menu nav ul.parent li.parent ul.child li.child ul.subchild {
  display: none;
}
footer .response .menu nav ul.parent li.parent ul.child li.child ul.subchild.open {
  display: block;
}
footer .corporate {
  width: 30%;
  padding-right: 30px;
}
footer .corporate .logo {
  width: 200px;
  margin-bottom: 10px;
}
footer .corporate .logo svg {
  width: 100%;
}
footer .corporate .about p {
  font-size: calc(12px * 1);
}
footer .menu nav {
  font-size: calc(16px * 0.7);
}
footer .menu nav ul.parent {
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
}
footer .menu nav ul.parent > li.parent > a {
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  padding-bottom: 10px;
  display: block;
  font-size: calc(16px * 0.8);
}
footer .menu nav ul.parent > li.parent ul {
  list-style-type: none;
}
footer .menu nav ul.parent > li.parent ul.child > li.child {
  padding-bottom: 10px;
}
footer .menu nav ul.parent > li.parent ul.child > li.child a {
  color: inherit;
  text-decoration: none;
}

form .rsformProgress {
  padding: 10px;
}
form .rsformProgress p {
  display: none;
}
form .rsformProgress .rsformProgressContainer {
  width: 100%;
  height: 10px;
  background: #f4f4f4;
  border-radius: 10px;
}
form .rsformProgress .rsformProgressContainer .rsformProgressBar {
  height: 100%;
  background: #00dfa2;
  border-radius: 10px;
}
form fieldset {
  border: 0;
}
form fieldset.formHidden {
  display: none;
}
form fieldset .form-row .col-md-12 .form-group {
  padding: 20px;
  padding-top: 0;
}
form fieldset .form-row .col-md-12 .form-group.hidden {
  display: none;
}
form fieldset .form-row .col-md-12 .form-group.success .formControls input[type=text] {
  border: 2px solid #00dfa2;
  color: #00dfa2 !important;
}
form fieldset .form-row .col-md-12 .form-group.success .formControls input[type=text]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #00dfa2 !important;
}
form fieldset .form-row .col-md-12 .form-group.success .formControls .message,
form fieldset .form-row .col-md-12 .form-group.success .formControls .domain-message {
  color: #00dfa2;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  font-style: normal;
  margin: 0 auto;
  padding: 5px 0;
  display: block;
  white-space: nowrap; /* On empêche le retour à la ligne */
  overflow: hidden; /* On cache les éléments qui peuvent dépasser */
  text-overflow: ellipsis; /* On demande un ellipsis */
  width: 200px; /* On donne une largeur fixe */
  position: relative;
}
form fieldset .form-row .col-md-12 .form-group.success .formControls .message#email-message, form fieldset .form-row .col-md-12 .form-group.success .formControls .message#telephone-message,
form fieldset .form-row .col-md-12 .form-group.success .formControls .domain-message#email-message,
form fieldset .form-row .col-md-12 .form-group.success .formControls .domain-message#telephone-message {
  visibility: hidden;
  height: 0;
}
form fieldset .form-row .col-md-12 .form-group.success .formControls .message:before,
form fieldset .form-row .col-md-12 .form-group.success .formControls .domain-message:before {
  content: "\e5ca";
  color: #00dea1;
  font-family: "Material Symbols Outlined";
  border: 2px solid;
  border-radius: 100%;
  font-size: 14px;
  width: 18px;
  height: 18px;
  position: relative;
  left: 0px;
  top: 2px;
  line-height: 14px;
  display: inline-block;
  margin-right: 3px;
}
form fieldset .form-row .col-md-12 .form-group.error .formControls input[type=text] {
  border: 2px solid red;
  color: red !important;
}
form fieldset .form-row .col-md-12 .form-group.error .formControls input[type=text]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: red !important;
}
form fieldset .form-row .col-md-12 .form-group.error .formControls .message,
form fieldset .form-row .col-md-12 .form-group.error .formControls .domain-message {
  color: red;
  font-size: 11px;
  line-height: 13px;
}
form fieldset .form-row .col-md-12 .form-group.invalid-format .formControls input[type=text] {
  border: 2px solid orange;
  color: orange !important;
}
form fieldset .form-row .col-md-12 .form-group.invalid-format .formControls input[type=text]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: orange !important;
}
form fieldset .form-row .col-md-12 .form-group.invalid-format .formControls .message,
form fieldset .form-row .col-md-12 .form-group.invalid-format .formControls .domain-message {
  color: orange;
  font-size: 11px;
  line-height: 13px;
}
form fieldset .form-row .col-md-12 .form-group.simple {
  position: relative;
}
form fieldset .form-row .col-md-12 .form-group.simple label {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: block;
  padding: 0 10px;
  position: absolute;
  top: calc(50% - 20px);
  text-align: left;
}
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: block;
  padding: 0 10px;
  position: absolute;
  top: calc(50% - 18px);
  left: 30px;
  width: calc(100% - 40px);
  text-align: left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  position: absolute;
  z-index: 99;
  -webkit-transition: all 75ms cubic-bezier(0.17, 0.67, 0.83, 0.67);
  transition: all 75ms cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:-moz-placeholder)), form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:-moz-placeholder)) {
  background: white;
  transform: scale(0.85);
  left: 40px;
  top: -6px;
  z-index: 3;
  height: initial !important;
  line-height: initial !important;
  width: inherit;
}
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:-ms-input-placeholder)), form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:-ms-input-placeholder)) {
  background: white;
  transform: scale(0.85);
  left: 40px;
  top: -6px;
  z-index: 3;
  height: initial !important;
  line-height: initial !important;
  width: inherit;
}
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:focus),
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ input:focus),
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:placeholder-shown)),
form fieldset .form-row .col-md-12 .form-group.simple:has(input[type=text]) label:has(+ .formControls input:not(:placeholder-shown)) {
  background: white;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  left: 40px;
  top: -6px;
  z-index: 3;
  height: initial !important;
  line-height: initial !important;
  width: inherit;
}
form fieldset .form-row .col-md-12 .form-group h3 {
  font-size: 16px;
}
form fieldset .form-row .col-md-12 .form-group label {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  display: block;
  padding-bottom: 10px;
  color: #000033;
}
form fieldset .form-row .col-md-12 .form-group .formControls {
  text-align: center;
}
form fieldset .form-row .col-md-12 .form-group .formControls input {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text] {
  text-align: center;
  height: 50px;
  font-size: 25px;
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-radius: 8px;
  border: 2px solid #ddd;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]::-webkit-input-placeholder {
  visibility: hidden;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]::-moz-placeholder {
  visibility: hidden;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]:-ms-input-placeholder {
  visibility: hidden;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]::-ms-input-placeholder {
  visibility: hidden;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]::placeholder {
  visibility: hidden;
}
form fieldset .form-row .col-md-12 .form-group .formControls input[type=text]#address-line1 {
  font-size: 15px;
  padding-right: 50px;
}
form fieldset .form-row .col-md-12 .form-group .formControls:has(#address-line1) {
  position: relative;
}
form fieldset .form-row .col-md-12 .form-group .formControls:has(#address-line1):after {
  content: "\e0c8";
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Material Symbols Outlined";
  font-size: 32px;
  color: #ddd;
  background: none;
  border-radius: 0 8px 8px 0;
}
form fieldset .form-row .col-md-12 .form-group .formControls .siret-message {
  margin-top: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-style: italic;
}
form fieldset .form-row .col-md-12 .form-group .formControls .formValidation {
  display: none;
}
form fieldset .form-row .col-md-12 .form-group .formControls.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
form fieldset .form-row .col-md-12 .form-group .formControls.range_slider {
  padding: 0;
  border-radius: 4px;
  text-align: center;
  width: 260px;
}
form fieldset .form-row .col-md-12 .form-group .formControls.range_slider output {
  display: block;
  font-weight: 600;
  color: #000033;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  margin-top: 10px;
}
form fieldset .form-row .col-md-12 .form-group .formControls.range_slider output:after {
  content: "m²";
}
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider,
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider__fill {
  display: block;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider {
  background: #e6e6e6;
  position: relative;
  height: 20px;
  width: 100%;
  display: inline-block;
}
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider .rangeslider__fill {
  background: #000033;
  position: absolute;
  top: 0;
  height: 100%;
}
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider .rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…Igd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g");
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: -10px;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
form fieldset .form-row .col-md-12 .form-group .formControls .rangeslider .rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…dpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.13)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  border-radius: 50%;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check {
  display: inline-block;
  margin: 5px;
  padding: 0;
  /* =====================
                 LABEL
              ===================== */
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .form-check-label {
  position: relative;
  height: 40px;
  padding: 0 10px;
  background: white;
  -webkit-box-shadow: 0 0 0 1px;
          box-shadow: 0 0 0 1px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  cursor: pointer !important;
  color: #000033 !important;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .form-check-label.checked {
  background: #000033 !important;
  color: white !important;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check {
  /* =====================
                 INPUTS
              ===================== */
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=checkbox],
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=radio] {
  width: 0;
  height: 0;
  visibility: hidden;
  cursor: pointer;
  display: none;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=checkbox] + *,
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=radio] + * {
  color: white;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=checkbox]:checked::after,
form fieldset .form-row .col-md-12 .form-group .formControls .form-check input[type=radio]:checked::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 0 1px;
          box-shadow: 0 0 0 1px;
  border-radius: 4px;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check {
  /* =====================
                 TOGGLE SWITCH
              ===================== */
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch {
  padding: 0 !important;
  width: 100%;
  line-height: 2.3;
  color: #f90;
  font-weight: 700;
  text-align: left;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  outline: none;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch.checked {
  background: initial !important;
  color: green !important;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch.checked::after {
  content: "!";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch::after {
  content: "?";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__input {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__input:checked + .toggle-switch__slider {
  background-color: green;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__input:checked + .toggle-switch__slider::before {
  -webkit-transform: translate(22px, -50%);
          transform: translate(22px, -50%);
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__input:disabled + .toggle-switch__slider {
  opacity: 0.5;
  cursor: not-allowed;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__input:disabled + .toggle-switch__slider::before {
  background-color: rgba(32, 37, 50, 0.14);
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__slider {
  width: 50px;
  height: 30px;
  border-radius: 30px;
  background-color: #f90;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  display: inline-block;
  cursor: pointer;
  margin-right: 9px;
  float: left;
  position: relative;
  top: 10px;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check .toggle-switch__slider::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
  -webkit-transition: -webkit-transform 75ms ease-in-out;
  transition: -webkit-transform 75ms ease-in-out;
  transition: transform 75ms ease-in-out;
  transition: transform 75ms ease-in-out, -webkit-transform 75ms ease-in-out;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(32, 37, 50, 0.16);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(32, 37, 50, 0.16);
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check {
  /* =====================
                 ICONIFY
              ===================== */
}
@media (max-width: 800px) {
  form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify {
    margin: -3px;
  }
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify .form-check-label {
  height: 90px;
  width: 80px;
  padding-top: 10px;
  font-size: 11px;
  line-height: 11px;
  color: #4dd8a6;
  background: white;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
          box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify .form-check-label::before {
  content: "\e907";
  font-family: "Material Symbols Outlined";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  font-size: 65px;
  font-weight: 300;
  padding: 5px;
  color: #000033;
  line-height: 65px;
  z-index: 3;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify .form-check-label.checked {
  background: #000033 !important;
  color: white !important;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify .form-check-label.checked::before {
  color: #00dfa2;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=proprietaire0]::before,
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=date_achat0]::before {
  content: "\e5ca";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=proprietaire1]::before,
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=date_achat1]::before {
  content: "\e5cd";
  color: red;
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_chauffage2]::before {
  content: "\e904";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_chauffage3]::before {
  content: "\e906";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_chauffage4]::before {
  content: "\e906";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_resident0]::before {
  content: "\e90a";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_resident1]::before {
  content: "\e909";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_habitation0]::before {
  content: "\e90c";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_habitation1]::before {
  content: "\e90b";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation0]::before {
  content: "\e922";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation1]::before {
  content: "\e921";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation2]::before {
  content: "\e920";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation3]::before {
  content: "\e924";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation4]::before {
  content: "\e91f";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation5]::before {
  content: "\e910";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.iconify [for^=type_renovation6]::before {
  content: "\e923";
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check {
  /* =====================
                 NUMBERIFY
              ===================== */
}
form fieldset .form-row .col-md-12 .form-group .formControls .form-check.numberify .form-check-label {
  width: 40px;
  height: 40px;
  font-size: 25px;
  line-height: 40px;
  color: #000033;
  background: white;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px, rgba(0, 0, 0, 0.3) 0 30px 60px -10px;
          box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px, rgba(0, 0, 0, 0.3) 0 30px 60px -10px;
}
form fieldset .form-row .col-md-12 .form-group .thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  text-align: center;
}
form fieldset .form-row .col-md-12 .form-group .thanks h3 {
  font-size: 26px;
  line-height: 28px;
}
form fieldset .form-row .col-md-12 .form-group .thanks p {
  font-size: 12x;
  line-height: 16px;
}
form fieldset .form-row .col-md-12 .form-group .thanks p span.num {
  display: inline-block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
form fieldset .form-row .col-md-12 .form-group .thanks .icon:before {
  font-size: 55px;
  content: "\f59b";
  font-family: "Material Symbols Outlined";
  border: 6px solid;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
}
form fieldset .form-row .col-md-12 .form-group .thanks .icon.valid:before {
  content: "\e5ca";
  color: #00dfa2;
}
form fieldset .form-row .col-md-12 .form-group .thanks .icon.invalid:before {
  content: "\e5cd";
  color: red;
}
form fieldset .form-row .col-md-12 .form-group .thanks .icon.call:before {
  content: "\e61d";
}
form fieldset .form-row .col-md-12 .form-group button {
  font-family: "Space Grotesk", sans-serif;
  display: block;
  border: 4px solid;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  color: #000033;
}
form fieldset .form-row .col-md-12 .form-group button:disabled {
  background: #ccc !important;
  border: 3px solid #ccc !important;
}
form fieldset .form-row .col-md-12 .form-group button.btn-success, form fieldset .form-row .col-md-12 .form-group button.btn-primary {
  background: #00dfa2;
  color: white;
  display: block;
  border: 3px solid #00dfa2;
  margin: 0 auto;
}
form fieldset .form-row .col-md-12 .form-group button.btn-primary {
  background: #000033;
  border: 3px solid #000033;
}
form fieldset .form-row .col-md-12 .form-group button.btn-warning {
  display: none;
}

.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 20px;
}
@media all and (max-width: 700px) {
  .video {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.video .play {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
}
.video .play:after {
  content: "\e1c4";
  font-family: "Material Symbols Outlined";
  width: 100%;
  height: 100%;
  font-size: calc(48px * 1.3);
  line-height: calc(48px * 1.3);
}
.video .txt {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  color: white;
  font-style: italic;
}

.faqs {
  margin-bottom: 50px;
}
.faqs .faq {
  margin-bottom: 20px;
}
.faqs .faq.open .question {
  background: #000033;
  color: white;
  -webkit-box-shadow: 0 0 0 2px #000033;
          box-shadow: 0 0 0 2px #000033;
}
.faqs .faq.open .question:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: white;
}
.faqs .faq.open .question:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: white;
}
.faqs .faq.open .answer {
  display: block;
}
.faqs .faq .question {
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-shadow: 0 0 0 2px;
          box-shadow: 0 0 0 2px;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  padding-right: 40px;
}
.faqs .faq .question:before {
  content: "";
  background: #000033;
  position: absolute;
  right: 20px;
  top: calc(50% + 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faqs .faq .question:after {
  content: "";
  background: #000033;
  position: absolute;
  right: 16px;
  top: calc(50% + 0px);
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faqs .faq .answer {
  display: none;
}

.rsform-block-minimap-container .none {
  display: none !important;
}
.rsform-block-minimap-container .h180 {
  height: 180px !important;
}
.rsform-block-minimap-container .mb60 {
  margin-bottom: 0 !important;
}
.rsform-block-minimap-container .mt18 {
  margin-top: 18px !important;
}
.rsform-block-minimap-container .relative {
  position: relative !important;
}
.rsform-block-minimap-container img {
  max-width: 100%;
  vertical-align: top;
}
.rsform-block-minimap-container button {
  background: 0 0;
  color: inherit !important;
  font: inherit;
  padding: 0;
  width: auto;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  border-radius: 8px !important;
}

.mbx04c1cc3f--ResultsAttribution {
  padding: var(--paddingFooterLabel);
  display: none;
}

[class$="--MinimapFooter"] {
  display: none;
}

[class$="--Button"] {
  display: none !important;
}

#address-line1::-webkit-input-placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

#address-line1::-moz-placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

#address-line1:-ms-input-placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

#address-line1::-ms-input-placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

#address-line1::placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

#address-line1 {
  color: #222 !important;
}

[class$="--MinimapEditButtons"] {
  display: none !important;
}

.form-group.rsform-block.rsform-block-minimap-container {
  padding: 0 !important;
  margin: 0;
}

#minimap-container {
  margin: 10px;
  margin-bottom: 20px !important;
}

.formRed {
  color: red;
  font-weight: bold;
  padding: 0 20px;
  font-size: 14px;
}

.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  padding: 20px;
  color: #000033;
  text-align: center;
}

.thanks h3 {
  font-size: 26px !important;
  line-height: 28px !important;
}

.thanks p {
  line-height: 20px;
}

.thanks p span.num {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  background: #000034;
  padding: 0 10px;
  border-radius: 7px;
  margin: 10px 0;
  color: white;
  text-transform: uppercase;
  line-height: initial;
}

.thanks .icon:before {
  font-size: 55px;
  content: "\f59b";
  font-family: "Material Symbols Outlined";
  border: 6px solid;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
}

.thanks .icon.valid:before {
  content: "\e5ca";
  color: #00dea1;
}

.thanks .icon.invalid:before {
  content: "\e5cd";
  color: red;
}

.thanks .icon.call:before {
  content: "\e61d";
}