/* ************************************************************
***************************************************************
***************************************************************
:: FONTS
***************************************************************
***************************************************************
************************************************************* */
@font-face {
    font-family: 'Prompt';
    src: url('../ressources/fonts/Prompt-Regular.eot');
    src: url('../ressources/fonts/Prompt-Regular.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/Prompt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Prompt';
    src: url('../ressources/fonts/Prompt-Medium.eot');
    src: url('../ressources/fonts/Prompt-Medium.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/Prompt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Prompt';
    src: url('../ressources/fonts/Prompt-SemiBold.eot');
    src: url('../ressources/fonts/Prompt-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/Prompt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Prompt';
    src: url('../ressources/fonts/Prompt-Bold.eot');
    src: url('../ressources/fonts/Prompt-Bold.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/Prompt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Prompt';
    src: url('../ressources/fonts/Prompt-Black.eot');
    src: url('../ressources/fonts/Prompt-Black.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/Prompt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/*@font-face {
    font-family: 'BarlowCondensed';
    src: url('../ressources/fonts/BarlowCondensed-Regular.eot');
    src: url('../ressources/fonts/BarlowCondensed-Regular.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/BarlowCondensed-Regular.woff2') format('woff2'),
        url('../ressources/fonts/BarlowCondensed-Regular.woff') format('woff'),
        url('../ressources/fonts/BarlowCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BarlowCondensed';
    src: url('../ressources/fonts/BarlowCondensed-Medium.eot');
    src: url('../ressources/fonts/BarlowCondensed-Medium.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/BarlowCondensed-Medium.woff2') format('woff2'),
        url('../ressources/fonts/BarlowCondensed-Medium.woff') format('woff'),
        url('../ressources/fonts/BarlowCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BarlowCondensed';
    src: url('../ressources/fonts/BarlowCondensed-Bold.eot');
    src: url('../ressources/fonts/BarlowCondensed-Bold.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/BarlowCondensed-Bold.woff2') format('woff2'),
        url('../ressources/fonts/BarlowCondensed-Bold.woff') format('woff'),
        url('../ressources/fonts/BarlowCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/
/* ************************************************************
***************************************************************
***************************************************************
:: MAIN PAGE ELEMENTS
***************************************************************
***************************************************************
************************************************************* */
html {
  background: hsl(var(--col_gs_white));
  min-height: 100%;
  font-family: 'Prompt';
  font-weight: 400;
  font-size: 18px;
  color: hsl(var(--col_gs_gray1));
  height: 100%;
  margin: 0px;
  padding: 0px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0px;
  padding: 0px;
}

a,
a:link,
a:visited {
  color: hsl(var(--col_pr_2));
  text-decoration: inherit;
  cursor: pointer;
}
a:hover {
  color: hsl(var(--col_pr_3));
  text-decoration: underline;
}
a * {
  cursor: pointer;
}

/* Headbar */
.headbar {
  position: fixed;
  padding: 1.15rem;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.headbar .bg {
  background-color: hsl(var(--col_gs_white));
  position: absolute;
  z-index: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.headbar .left {
  display: flex;
  z-index: 1;
}
.headbar .middle {
  z-index: 1;
}
.headbar .middle svg {
  height: 2.6rem;
  display: block;
}
.headbar .right {
  z-index: 1;
  display: flex;
}

/* Footer Navi */
.naviFooter {
  font-size: 0.625rem;
  position: fixed;
  bottom: -1px;
  left: 0px;
  width: 100%;
  padding: 1.4em;
  color: hsl(var(--col_gs_gray1));
  background-color: hsl(var(--col_gs_gray6));
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0px 0px 20px 0px hsla(var(--col_gs_black),0.2);
  -webkit-box-shadow: 0px 0px 20px 0px hsla(var(--col_gs_black),0.2);
  -moz-box-shadow: 0px 0px 20px 0px hsla(var(--col_gs_black),0.2);
}
.naviFooter .elm {
  flex-grow: 1;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}
.naviFooter .elm svg {
  width: 2.2em;
  height: 2.2em;
}

.naviFooter .threebar {
  display: block;
  width: 2.2em;
  height: 2.2em;
  margin-bottom: 0.7em;
  cursor: pointer;
}
.naviFooter .threebar .bar {
  width: 100%;
  height: 3px;
  background: hsl(var(--col_gs_white));
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.naviFooter .threebar:hover .bar {
  opacity: 0.8;
}
.naviFooter .threebar .bar:nth-child(1) {
  transform-origin: 50% !important;
}
.naviFooter .threebar .bar:nth-child(2) {
  transform-origin: 50% !important;
}
.naviFooter .threebar .bar:nth-child(3) {
  margin-bottom: 0px;
}
.naviFooter .threebar.cross .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
.naviFooter .threebar.cross .bar:nth-child(2) {
  opacity: 0 !important;
  margin-left: 1000%;
}
.naviFooter .threebar.cross .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Main Menu */
.mainNavigation {
  font-size: 1.5rem;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: transform 250ms ease-out 0s;
  background-color: hsla(var(--col_gs_gray6),0.95);
  background: linear-gradient(0deg, hsla(var(--col_gs_gray6),1) 0%, hsla(var(--col_gs_gray6),0.85) 50%, hsla(var(--col_gs_gray6),1) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.mainNavigation .inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2.5em;
}
.mainNavigation .inner > div:nth-child(1) {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  color: hsl(var(--col_gs_white));
}
.mainNavigation .inner > div:nth-child(1) .elm {
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s;
}
.mainNavigation .inner > div:nth-child(1) .lastElm {
  display: flex;
  gap:0.5rem;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.mainNavigation .inner > div:nth-child(1) .elm:hover,
.mainNavigation .inner > div:nth-child(1) .lastElm .subElm:hover {
  color: hsl(var(--col_se_4));
}
.mainNavigation .inner > div:nth-child(1) .elm:active,
.mainNavigation .inner > div:nth-child(1) .lastElm .subElm:active {
  color: hsl(var(--col_se_5));
}
.mainNavigation .inner > div:nth-child(2) {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: var(--footerNavHeight);
  color: hsl(var(--col_gs_white));
}
.mainNavigation .inner > div:nth-child(2) svg {
  width: 28px;
  height: 28px;
  fill: hsl(var(--col_gs_white));
}

/* Flying Menu */
.flyingMenu {
  display: none;
}

/* Footer? */
.footer {
  left: -9.66vw;
  width: 100vw;
  margin-top: 0.125rem;
  position: relative;
  z-index: 1;
}
.footer .quickLinks {
  font-size: 0.875rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 0px;
}
.footer .quickLinks [data-gees="accordion"]  {
  color: inherit;
}
.footer .quickLinks [data-gees="accordion"] > .group .body {
  padding-left: 2.5em;
  line-height: 3em;
}

.footer .lastPart {
  font-size: 0.55rem;
  border-radius: 0px;
  margin-top: 0.125rem;
  padding: 2em 2em;
}

.footer .rightLnks {
  margin-top: 10px;
}
.footer .rightLnks > label:not(:last-child) {
  padding-right: 0.3em;
  border-right: 0.5px hsl(var(--col_pr_3)) solid;
}

/* More Questions? */
.openQuestions {
  position: relative;
  z-index: 1;
  left: -9.66vw;
  width: 100vw;
  margin-top: 4rem;
  border-radius: 0px;
  font-size: 1rem;
  padding: 4.5em 2.25em;
  text-align: center;
}
.openQuestions h3 {
  margin-bottom: 0.8em;
}

/* ************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
:: FREE BLOCKS
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
************************************************************* */
[data-freeblock="professionals"] .situationCards .cards {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start
  align-items: flex-start;
  overflow: hidden;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"]:not(:last-child) {
  margin-bottom: 1.125rem;
  padding: 1rem;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] {
  display: flex;
  gap: 1rem;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] svg {
  width: 1.5em;
  height: 1.5em;
  color: hsl(var(--col_pr_3));
  display: block;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] .txt > div:nth-child(1) {
  font-size: 0.9rem;
  font-weight: bold;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"] .txt > div:nth-child(2) {
  font-size: 0.82rem;
  font-weight: normal;
  display: none;
  max-height: 0px;
  transition: all 250ms ease-in-out;
}
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"]:hover .txt > div:nth-child(2),
[data-freeblock="professionals"] .situationCards .cards > [data-gees="card"].active .txt > div:nth-child(2) {
  display: flex;
  max-height: 250px;
}
[data-freeblock="professionals"] .situationCards .steerings {
  display: none;
}

[data-freeblock="advantages"] {
  font-size: 1rem;
  text-align: center;
}
[data-freeblock="advantages"] .bg {
  position: sticky;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  transform: translateX(-9.66vw);
}
[data-freeblock="advantages"] .bg .image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 0px !important;

  background-image: url('../ressources/images/cardealer_hd.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  transform-origin: center;
}
[data-freeblock="advantages"] .bg .image:after {
  content: ' ';
  position: absolute !important;
  left: 0px;
  top: 0px;
  width: 100%;
  border-radius: inherit;
  height: 100%;
  background: hsla(var(--col_gs_black),0.8);
}
[data-freeblock="advantages"] .body {
  position: relative;
  top: -50vh;
  padding: 6rem 0rem;
  text-align: center;
  overflow: hidden;
}
[data-freeblock="advantages"] h2 {
  margin-bottom: 4.5em;
}
[data-freeblock="advantages"] [data-gees="card"] {
  color: hsl(var(--col_gs_white));
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
}
[data-freeblock="advantages"] [data-gees="card"] h3 {
  font-size: 1.45rem;
}
[data-freeblock="advantages"] [data-gees="card"] p {
  font-size: 1rem;
}
[data-freeblock="advantages"] [data-gees="card"]:not(:last-child) {
  margin-bottom: 3.5em;
}
[data-freeblock="advantages"] .icon {
  width: 3.875em;
  min-width: 3.875em;
  height: 3.875em;
  min-height: 3.875em;
  border-radius: 1.125em;
  background-color: purple;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
[data-freeblock="advantages"] .icon svg {
  width: 1.875em;
  min-width: 1.875em;
  color: hsl(var(--col_gs_black));
}
[data-freeblock="advantages"] [data-gees="card"]:nth-child(1) .icon {
  background-color: hsl(var(--col_sys_purple));
}
[data-freeblock="advantages"] [data-gees="card"]:nth-child(2) .icon {
  background-color: hsl(var(--col_sys_yellow));
}
[data-freeblock="advantages"] [data-gees="card"]:nth-child(3) .icon {
  background-color: hsl(var(--col_sys_green));
}
[data-freeblock="advantages"] [data-gees="card"]:nth-child(4) .icon {
  background-color: hsl(var(--col_sys_blue));
}
[data-freeblock="advantages"] [data-gees="card"]:nth-child(5) .icon {
  background-color: hsl(var(--col_sys_orange));
}
[data-freeblock="advantages"] h3 {
  font-size: 1.25em;
  color: hsl(var(--col_gs_white));
}
[data-freeblock="advantages"] p {
  margin: 0px;
}

[data-freeblock="inAction"] {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: 4rem;
  margin-left: -9.66vw;
  font-size: 1rem;
  padding: 0em 2.25em 2.25em 2.25em;
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
}
[data-freeblock="inAction"] > div:nth-child(2) {
  flex-grow: 1;
}
[data-freeblock="inAction"] .picture {
  height: 250px;
  width: calc(100% + 4.5em);
  margin-left: -2.25em;
  background-image: url('../ressources/images/salesman_hd.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

[data-freeblock="keysToSuccess"] {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}
[data-freeblock="keysToSuccess"] h2 {
  margin-bottom: 4rem;
  text-align: center !important;
}
[data-freeblock="keysToSuccess"] .blocks {
  display: flex;
  gap: 2.25rem;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  perspective: 1000px;
  margin-top: 3rem;
}
[data-freeblock="keysToSuccess"] [data-gees="card"] {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 30%;
  aspect-ratio: 1 / 1;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  cursor: pointer;
}
[data-freeblock="keysToSuccess"] [data-gees="card"]:hover {
  transform: rotateY(180deg);
}
[data-freeblock="keysToSuccess"] [data-gees="card"] .face {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-freeblock="keysToSuccess"] [data-gees="card"] .face.back {
  transform: rotateY(180deg);
  font-size: 0.8em;
}
[data-freeblock="keysToSuccess"] [data-gees="card"] .face.back a {
  font-weight: bold;
}
[data-freeblock="keysToSuccess"] [data-gees="card"] .ico svg {
  width: 28%;
  fill: hsl(var(--col_pr_2));
}
[data-freeblock="keysToSuccess"] [data-gees="card"] h3 {
  font-size: 1rem;
}

/* ************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
:: VIEWS & MODALS
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
***************************************************************
************************************************************* */
.viewBox > section {
  background-color: hsl(var(--col_gs_white));
}


/* ************************************************************
***************************************************************
:: HOME
***************************************************************
************************************************************* */
section[data-sectionname="home"] .txtBlock {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}
section[data-sectionname="home"] .txtBlock h1 {
  white-space: nowrap;
}
section[data-sectionname="home"] .txtBlock .subTxt {
  display: none;
}
section[data-sectionname="home"] .laptop {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}
section[data-sectionname="home"] .laptop img {
  width: 100%;
}
section[data-sectionname="home"] a[href^="tel:"] button {
  font-weight: bold;
  letter-spacing: 0.1em;
}
section[data-sectionname="home"] a[href^="tel:"] button label {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.5em;
}
/* ************************************************************
***************************************************************
:: HOME & CONTACT & SERVICES & ABOUT US
***************************************************************
************************************************************* */
section[data-sectionname="home"] h1,
section[data-sectionname="contact"] h1,
section[data-sectionname="services"] h1,
section[data-sectionname="home"] h2,
section[data-sectionname="contact"] h2,
section[data-sectionname="services"] h2 {
  font-size: 2.2rem;
  color: hsl(var(--col_gs_gray1));
  word-wrap: break-word;
}
section[data-sectionname="home"] .parts [data-gees="h5"],
section[data-sectionname="contact"] .parts [data-gees="h5"],
section[data-sectionname="services"] .parts [data-gees="h5"] {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
section[data-sectionname="home"] .parts,
section[data-sectionname="contact"] .parts,
section[data-sectionname="services"] .parts {
  position: relative;
  z-index: 1;
}
section[data-sectionname="home"] .parts .part:not(:first-child),
section[data-sectionname="contact"] .parts .part:not(:first-child),
section[data-sectionname="services"] .parts .part:not(:first-child) {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
section[data-sectionname="home"] .parts .part_start,
section[data-sectionname="contact"] .parts .part_start,
section[data-sectionname="services"] .parts .part_start {
  min-height: calc(100vh - var(--headerNavHeight) - var(--footerNavHeight));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9rem;
}


/* ************************************************************
***************************************************************
:: CONTACT
***************************************************************
************************************************************* */
[data-sectionname="contact"] .contactCards {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em;
  cursor: pointer;
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] > label:nth-child(2) {
  color: hsl(var(--col_gs_gray1));
  flex-grow: 1;
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] > label:nth-child(3) {
  color: hsl(var(--col_pr_3));
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] > svg:nth-child(3) {
  aspect-ratio: 1 / 1;
  fill: hsl(var(--col_pr_3));
  width: 0.75em;
  height: 0.75em;
}
[data-sectionname="contact"] .contactCards a:not(:last-child) > [data-gees="card"] {
  margin-bottom: 0.875rem;
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] > [data-gees="card"] {
  background: hsl(var(--col_pr_3));
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
}
[data-sectionname="contact"] .contactCards a > [data-gees="card"] > [data-gees="card"] svg {
  width: 1.5em;
  height: 1.5em;
  color: hsl(var(--col_gs_gray6));
}
[data-sectionname="contact"] .phoneInBtn {
  display: none;
}

/* ************************************************************
***************************************************************
:: IMPRINT
***************************************************************
************************************************************* */
section[data-sectionname="imprint"] h1 {
  color: hsl(var(--col_gs_gray1));
}
section[data-sectionname="imprint"] .head {
  color: hsl(var(--col_gs_gray1));
}

/* ************************************************************
***************************************************************
:: PRIVACY
***************************************************************
************************************************************* */
section[data-sectionname="privacy"] h1 {
  color: hsl(var(--col_gs_gray1));
  word-wrap: break-word;
}
section[data-sectionname="privacy"] .head {
  color: hsl(var(--col_gs_gray1));
}

/* ************************************************************
***************************************************************
:: SITEMAP
***************************************************************
************************************************************* */
section[data-sectionname="sitemap"] h1 {
  color: hsl(var(--col_gs_gray1));
  word-wrap: break-word;
}
section[data-sectionname="sitemap"] .head {
  color: hsl(var(--col_gs_gray1));
}
section[data-sectionname="sitemap"] li {
  padding: 0.33rem 0px;
}




/* MODALS! */

/* ************************************************************
***************************************************************
:: CONTACTFORM_* && FREECONSULTATIONFORM_*
***************************************************************
************************************************************* */
section[data-sectionname^="contactForm_"] [data-gees="stepIndicator"],
section[data-sectionname^="freeConsultation_"] [data-gees="stepIndicator"] {
  margin-top: 1.125rem;
}
section[data-sectionname^="contactForm_"] .body,
section[data-sectionname^="freeConsultation_"] .body {
  color: hsl(var(--col_gs_gray1));
  word-wrap: break-word;
  font-size: 0.81em;
  text-align: left;
}
section[data-sectionname^="contactForm_"] .body .form,
section[data-sectionname^="freeConsultation_"] .body .form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
}
