/*

Exemple:

$colour-primary: #15DEA5;
$grid-gutter: $layout-margin * .25;
*/
/* 

Exemple:

@function lightness-shift($colour) {
    @if (lightness($colour) < 25%){
        @return lighten($colour, 10%);
    }@else{
        @return darken($colour, 10%);
    }
}
*/
/* 

Exemple:

@mixin heading-shadow($colour:lightness-shift($colour-primary), $offset: $heading-shadow-size){
    text-shadow: $offset $offset $colour;
    width: 100%;
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    & img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
}
*/
@font-face {
  font-family: "Sk Modernist";
  src: url("./fonts/Sk-Modernist-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Sk Modernist Light";
  src: url("./fonts/Sk-Modernist-Light.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Formula";
  src: url("./fonts/FormulaCondensed-Regular.otf") format("opentype");
  font-weight: normal;
}
body {
  font-family: "Sk Modernist", Arial, Helvetica, sans-serif;
}

button {
  font-family: "Sk Modernist", Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, p {
  margin: 0px;
  padding: 0px;
  font-family: "Sk Modernist", Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 70px;
  margin-bottom: 30px;
  line-height: 70px;
}

h2 {
  font-family: "Formula", "Sk Modernist", Arial, Helvetica, sans-serif;
  font-size: 100px;
  text-transform: uppercase;
  line-height: 1.1;
}

h3 {
  font-family: "Formula", "Sk Modernist", Arial, Helvetica, sans-serif;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 1.1;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 14px;
  text-transform: uppercase;
}

p {
  font-size: 25px;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 70px;
  }
  h3 {
    font-size: 42px;
  }
  p {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 60px;
  }
  p {
    font-size: 20px;
  }
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background-color: #E7E7E9;
  color: #404040;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

button, input, textarea {
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

nav {
  z-index: 9999;
  height: 61px;
  width: -moz-max-content;
  width: max-content;
  position: fixed;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: 0.5s ease;
}
nav .logo {
  display: inherit;
}
nav .logo img {
  height: 24px;
  margin-right: 30px;
}
nav .menu {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  margin-right: 40px;
}
nav .menu li {
  margin-right: 25px;
}
nav .menu li:last-child {
  margin-right: 0px;
}
nav.visible {
  top: 30px;
}
nav.mobile {
  width: 94%;
}
nav.mobile img {
  height: 20px;
}
nav.mobile .menu {
  display: none;
}
nav.mobile .primaryButton {
  flex-shrink: 0;
}
nav.mobile.visible {
  top: 4vw;
}

.infiniteText {
  display: flex;
  border-bottom: solid 6px #404040;
  padding-bottom: 20px;
  padding-top: 70px;
}
.infiniteText div {
  display: flex;
  animation: scrollText 35s infinite linear normal;
}
.infiniteText div h2 {
  font-family: "Formula";
  font-size: 240px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #404040;
}
.infiniteText div h2 .svg {
  margin-bottom: 40px;
  height: 200px;
  fill: #00FF90;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 1200px) {
  .infiniteText {
    padding-bottom: 10px;
    padding-top: 0px;
  }
  .infiniteText div h2 {
    font-size: 160px;
  }
  .infiniteText div h2 .svg {
    margin-bottom: 30px;
    height: 130px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 900px) {
  .infiniteText {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  .infiniteText {
    border-bottom: solid 5px #404040;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .infiniteText div h2 {
    font-size: 100px;
  }
  .infiniteText div h2 .svg {
    margin-bottom: 20px;
    height: 70px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.greyBar {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  background-color: #404040;
}

.doubleUnderlignedButton {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
}
.doubleUnderlignedButton span {
  padding-bottom: 10px;
}
.doubleUnderlignedButton span::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 7px);
  padding-top: 1px;
  background-color: white;
  padding-left: 100%;
  transition: padding-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.1s;
}
.doubleUnderlignedButton span::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 7px);
  padding-top: 1px;
  background-color: white;
  padding-left: 0px;
  transition: padding-left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0s;
}
.doubleUnderlignedButton.hovered span::before {
  right: 0;
  left: auto;
  padding-left: 0px;
  transition-delay: 0s;
}
.doubleUnderlignedButton.hovered span::after {
  left: 0;
  right: auto;
  padding-left: 100%;
  transition-delay: 0.1s;
}

.underlignedButton {
  position: relative;
}
.underlignedButton span {
  padding-bottom: 10px;
}
.underlignedButton span::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 7px);
  padding-top: 1px;
  background-color: white;
  padding-left: 0px;
  transition: padding-left 0.3s ease-out;
}
.underlignedButton.hovered span::after {
  left: 0;
  right: auto;
  padding-left: 100%;
}

.primaryButton {
  padding: 7px 10px 7px 16px;
  border-radius: 20px;
  border: solid 1px white;
  color: white;
  background-color: transparent;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  overflow: hidden;
  mix-blend-mode: exclusion;
}
.primaryButton .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primaryButton .content .text {
  padding-bottom: 2px;
  mix-blend-mode: exclusion;
  z-index: 2;
}
.primaryButton .content .svg {
  height: 16px;
  width: 16px;
  fill: white;
  margin-left: 7px;
  z-index: 2;
  mix-blend-mode: exclusion;
  transition: transform 0.8s cubic-bezier(0.84, 0, 0.51, 1), scale 0.5s cubic-bezier(0.58, 0.02, 0.74, 0.85);
}
.primaryButton .bg {
  position: absolute;
  right: -1px;
  top: -1px;
  height: calc(100% + 2px);
  width: 0px;
  background-color: white;
  border: none;
  border-radius: 20px;
  transition: 0.4s ease;
  z-index: 1;
}
.primaryButton:hover .content .svg {
  transform: rotate(180deg);
  scale: 1.2;
}
.primaryButton:hover .bg {
  width: calc(100% + 2px);
}

.benefits {
  padding: 100px 8% 400px 8%;
}
.benefits .container {
  position: relative;
  height: 700px;
}
.benefits .container .benefit {
  height: 700px;
  background-color: white;
  width: 30%;
  border-radius: 35px;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  position: absolute;
  top: 0;
  z-index: 1;
}
.benefits .container .benefit .imgBackground {
  position: absolute;
  right: 0px;
  left: auto;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  background-position: center center;
}
.benefits .container .benefit:first-child {
  width: 25%;
  left: 0;
}
.benefits .container .benefit:nth-child(2) {
  width: 30%;
  left: 28%;
}
.benefits .container .benefit:last-child {
  width: 39%;
  left: 61%;
}
.benefits .container .benefit .top {
  opacity: 0;
  z-index: 2;
  max-width: 60%;
  color: #404040;
  text-transform: uppercase;
  font-size: 24px;
  margin-top: -20px;
}
.benefits .container .benefit .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.benefits .container .benefit .bottom .title {
  font-size: 60px;
  line-height: 1;
  height: 50px;
  display: inline;
  font-family: "Formula";
  text-transform: uppercase;
}
.benefits .container .benefit .bottom .plus {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits .container .benefit .bottom .plus .vertical {
  height: 35px;
  width: 5px;
  position: absolute;
  background-color: white;
}
.benefits .container .benefit .bottom .plus .horizontal {
  height: 5px;
  width: 35px;
  position: absolute;
  background-color: white;
}

@media screen and (max-width: 1200px) {
  .benefits .container {
    height: auto;
  }
  .benefits .container .benefit {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .benefits .container .benefit:first-child {
    width: 100%;
    left: 0;
  }
  .benefits .container .benefit:nth-child(2) {
    width: 100%;
    left: 0;
  }
  .benefits .container .benefit:last-child {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .benefits .container .benefit {
    height: auto;
    padding: 25px 30px;
  }
  .benefits .container .benefit .top {
    font-size: 18px;
    padding-bottom: 70px;
  }
  .benefits .container .benefit .bottom .title {
    font-size: 36px;
    line-height: 1;
    height: 28px;
  }
}
.hero {
  height: 100vh;
  background-color: #1D1D1D;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  color: white;
}
.hero #heroBackground {
  opacity: 0.1;
  position: absolute;
  height: 200vh;
  transition: transform ease-out 6s;
  z-index: 0;
}
.hero .navbarHero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hero .navbarHero .logo img {
  height: 28px;
}
.hero .navbarHero .menu {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}
.hero .container {
  color: white;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -6vh;
}
.hero .container h1 {
  margin-bottom: 30px;
  font-size: 100px;
  line-height: 100px;
  max-width: 930px;
}
.hero .container p {
  margin-bottom: 40px;
  max-width: 750px;
  color: white;
}
.hero .container .buttons {
  font-size: 24px;
}
.hero .container .buttons .doubleUnderlignedButton:first-child {
  margin-right: 60px;
}
.hero .footerHero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  text-transform: uppercase;
}
.hero .footerHero .underlignedButton {
  margin-right: 30px;
}
.hero .footerHero .underlignedButton:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 1200px) {
  .hero .navbarHero .menu {
    display: none;
  }
  .hero .container {
    margin: 40px 0px;
  }
  .hero .container h1 {
    font-size: 80px;
    line-height: 80px;
    max-width: 750px;
  }
  .hero .container .buttons {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .hero #heroBackground {
    height: 120vh;
  }
  .hero .container {
    text-align: left !important;
  }
  .hero .container h1 {
    font-size: 60px;
    line-height: 60px;
    max-width: 600px;
    margin-bottom: 15px;
  }
  .hero .container p {
    max-width: 600px;
  }
  .hero .container .buttons {
    font-size: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .hero {
    padding: 5%;
  }
  .hero .container {
    align-items: flex-start;
  }
  .hero .container h1 {
    font-size: 33px;
    line-height: 45px;
  }
  .hero .container p {
    max-width: 600px;
  }
  .hero .container .buttons {
    font-size: 20px;
  }
  .hero .container .buttons .doubleUnderlignedButton {
    display: block;
    margin-bottom: 30px;
  }
  .hero .container .buttons .doubleUnderlignedButton:first-child {
    margin-right: 0px;
  }
  .hero .footerHero .socialLinks {
    display: none;
  }
  .hero .footerHero .year {
    display: none;
  }
}
.description {
  height: 100vh;
  display: flex;
  justify-content: center;
}
.description .logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
}
.description .logo g {
  fill: #404040;
}
.description .content {
  font-size: 46px;
  max-width: 1100px;
  width: 80%;
  text-align: center;
  text-transform: uppercase;
  color: #CCCCCC;
  align-self: flex-start;
}
.description .content div {
  color: #CCCCCC;
  transition: all 0.2s;
}

@media screen and (max-width: 900px) {
  .description .content {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .description .logo {
    height: 25px;
    top: 30px;
  }
  .description .content {
    font-size: 24px;
    width: 90%;
  }
}
.projets {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projets .slide {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.projets .slide .projet {
  height: calc(100vh - 100px);
  width: calc(100vw - 120px);
  background-color: white;
  color: #404040;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.projets .slide .projet .left {
  width: 40%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.projets .slide .projet .right {
  width: 60%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projets .slide .projet .right .top {
  position: relative;
  overflow: hidden;
}
.projets .slide .projet .right .top .infiniteText {
  padding-bottom: 0px;
  padding-top: 0px;
  border-bottom: none;
}
.projets .slide .projet .right .top .infiniteText div h2 {
  font-size: 150px;
  margin-top: 20px;
  height: 0.9em;
  line-height: 1.1;
}
.projets .slide .projet .right .top .infiniteText div h2 .svg {
  margin-bottom: 30px;
  height: 120px;
}
.projets .slide .projet .right .top p {
  margin-bottom: 30px;
}
.projets .slide .projet .right .top .categories .category {
  color: #00FF90;
  border: solid 1px #00FF90;
  padding-left: 10px;
  padding-right: 10px;
  height: 24px;
  line-height: 21px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  margin-right: 7px;
}
.projets .slide .projet .right .top .categories .category:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 900px) {
  .projets .slide .projet {
    flex-direction: column;
    height: 95vh;
    width: 90%;
  }
  .projets .slide .projet .left {
    width: 100%;
    height: 30%;
  }
  .projets .slide .projet .right {
    width: 100%;
    height: 70%;
    padding: 0px 4% 4% 4%;
  }
  .projets .slide .projet .right .top .infiniteText div h2 {
    font-size: 100px;
  }
  .projets .slide .projet .right .top .infiniteText div h2 .svg {
    height: 80px;
  }
  .projets .slide .projet .right .top .categories {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .projets .slide .projet .left {
    height: 20%;
  }
  .projets .slide .projet .right {
    height: 80%;
    padding: 1% 4% 4% 4%;
  }
  .projets .slide .projet .right .top .infiniteText {
    height: 100px;
  }
  .projets .slide .projet .right .top .infiniteText div h2 {
    font-size: 70px;
  }
  .projets .slide .projet .right .top .infiniteText div h2 .svg {
    height: 50px;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.process {
  width: 100%;
  overflow-x: hidden;
  padding-top: 200px;
}
.process .steps {
  position: relative;
  padding-top: 200px;
}
.process .steps .timeline {
  width: 3px;
  position: absolute;
  left: calc(8% + 45px);
  top: 240px;
  background: linear-gradient(to bottom, #404040 50%, transparent 50%);
  background-size: 100% 200%;
  background-position-y: 100%;
  z-index: 1;
}
.process .step .indentedContainer {
  display: flex;
  justify-content: space-between;
}
.process .step .indentedContainer .left {
  padding-right: 30px;
  width: 35%;
}
.process .step .indentedContainer .left .top {
  position: relative;
}
.process .step .indentedContainer .left .top h5 {
  position: absolute;
  top: -20px;
  left: 93px;
}
.process .step .indentedContainer .left .top h3 {
  margin-left: 90px;
  position: relative;
}
.process .step .indentedContainer .left .top h3 span.number {
  width: 90px;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: -90px;
  background-color: #E7E7E9;
  z-index: 2;
  padding-top: 5px;
  margin-top: -5px;
}
.process .step .indentedContainer .right {
  width: 65%;
  max-width: 1100px;
}
.process .step .indentedContainer .right p.text {
  margin-bottom: 20px;
}
.process .step .indentedContainer .right ul {
  margin-bottom: 220px;
}
.process .step .indentedContainer .right ul li {
  margin-bottom: 10px;
}
.process .step .indentedContainer .right ul li .svg {
  fill: #00FF90;
  height: 16px;
  padding-right: 12px;
  margin-bottom: 0.15em;
}
.process .step.last {
  background-color: #1D1D1D;
  padding-top: 40vh;
}
.process .step.last .indentedContainer {
  background-color: #1D1D1D;
  position: relative;
  z-index: 2;
  padding-bottom: 40vh;
}
.process .step.last .indentedContainer .left .top {
  background-color: #1D1D1D;
}
.process .step.last .indentedContainer .left .top h3, .process .step.last .indentedContainer .left .top p {
  color: white;
}
.process .step.last .indentedContainer .left .top h5 {
  color: #CCCCCC;
}
.process .step.last .indentedContainer .left .top h3 span.number {
  background-color: #1D1D1D;
}
.process .step.last .indentedContainer .right p.text {
  color: white;
}
.process .step.last .indentedContainer .right ul {
  margin-bottom: 60px;
}
.process .step.last .indentedContainer .right ul li p {
  color: white;
}

@media screen and (max-width: 1200px) {
  .process .steps {
    padding-top: 160px;
  }
  .process .steps .timeline {
    top: 200px;
  }
  .process .steps .step .indentedContainer {
    flex-wrap: wrap;
  }
  .process .steps .step .indentedContainer .left {
    width: 100%;
  }
  .process .steps .step .indentedContainer .right {
    width: 100%;
    padding-left: 90px;
  }
}
@media screen and (max-width: 900px) {
  .process .steps .timeline {
    left: calc(5% + 45px);
  }
}
@media screen and (max-width: 600px) {
  .process .steps {
    padding-top: 100px;
  }
  .process .steps .timeline {
    left: calc(5% + 25px);
    top: 140px;
  }
  .process .steps .step .indentedContainer {
    flex-wrap: wrap;
  }
  .process .steps .step .indentedContainer .left {
    width: 100%;
  }
  .process .steps .step .indentedContainer .left .top h5 {
    left: 53px;
  }
  .process .steps .step .indentedContainer .left .top h3 {
    margin-left: 50px;
  }
  .process .steps .step .indentedContainer .left .top h3 span.number {
    width: 50px;
    left: -50px;
  }
  .process .steps .step .indentedContainer .right {
    padding-left: 50px;
  }
  .process .steps .step .indentedContainer .right ul li {
    margin-bottom: 7px;
  }
}
.boxes {
  margin-bottom: 200px;
}
.boxes .largeContainer {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.boxes .largeContainer .left {
  flex-shrink: 0;
  padding-right: 20px;
}
.boxes .largeContainer .right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.boxes .largeContainer .right .box {
  width: calc(50% - 15px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 23px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  padding: 40px;
}
.boxes .largeContainer .right .box .top {
  margin-bottom: 30px;
}
.boxes .largeContainer .right .box .top .svg {
  fill: #00FF90;
  height: 40px;
  margin-bottom: 12px;
}
.boxes .largeContainer .right .box .bottom p {
  margin-bottom: 25px;
}
.boxes .largeContainer .right .box .bottom .categories .category {
  color: #00FF90;
  border: solid 1px #00FF90;
  padding-left: 10px;
  padding-right: 10px;
  height: 24px;
  line-height: 21px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 6px;
}
.boxes .largeContainer .right .box .bottom .categories .category:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 1400px) {
  .boxes .largeContainer .right .box {
    width: 100%;
    min-height: auto;
  }
  .boxes .largeContainer .right .box .top {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 900px) {
  .boxes {
    margin-bottom: 120px;
  }
  .boxes .largeContainer {
    flex-wrap: wrap;
  }
  .boxes .largeContainer .left {
    width: 100%;
    margin-bottom: 0px;
  }
  .boxes .largeContainer .right {
    width: 100%;
  }
  .boxes .largeContainer .right .box {
    border-radius: 15px;
    padding: 25px;
  }
}
@media screen and (max-width: 600px) {
  .boxes .largeContainer {
    padding-top: 15px;
  }
  .boxes .largeContainer .left {
    margin-bottom: 30px;
  }
}
.titleAndText {
  margin-bottom: 200px;
}
.titleAndText .largeContainer {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.titleAndText .largeContainer .left {
  width: 45%;
  padding-right: 30px;
}
.titleAndText .largeContainer .right {
  width: 55%;
}

@media screen and (max-width: 900px) {
  .titleAndText {
    margin-bottom: 120px;
  }
  .titleAndText .largeContainer {
    flex-wrap: wrap;
    padding-top: 15px;
  }
  .titleAndText .largeContainer .left {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0px;
  }
  .titleAndText .largeContainer .right {
    width: 100%;
  }
}
.features {
  padding-top: 160px;
  padding-bottom: 160px;
}
.features .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.features .top .title {
  max-width: 40%;
}
.features .top .text {
  max-width: 55%;
}
.features .rows .row {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px #404040;
  position: relative;
}
.features .rows .row:last-child {
  border-bottom: solid 1px #404040;
}
.features .rows .row .feature {
  font-size: 22px;
  text-transform: uppercase;
}
.features .rows .row .svg {
  height: 25px;
  fill: #404040;
}
.features .rows .row .hoverImg {
  display: none;
  height: 400px;
  position: absolute;
  pointer-events: none;
  top: 0px;
  left: 0px;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .features .top {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .features .top .title {
    max-width: 100%;
    width: 100%;
  }
  .features .top .text {
    max-width: 100%;
    width: 100%;
  }
  .features .rows .row {
    height: 70px;
  }
  .features .rows .row .feature {
    font-size: 18px;
  }
  .features .rows .row .svg {
    height: 20px;
  }
}
@media screen and (max-width: 900px) {
  .features {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.testimonials {
  height: 100vh;
  display: flex;
  align-items: center;
}
.testimonials .slider {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding-left: 60px;
}
.testimonials .slider .testimonial {
  height: 75vh;
  width: 55vw;
  border-radius: 35px;
  background-color: #404040;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 40px;
  margin-right: 60px;
}
.testimonials .slider .testimonial .top .headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.testimonials .slider .testimonial .top .headline h2 {
  height: 0.9em;
}
.testimonials .slider .testimonial .top .headline .svg {
  fill: #00FF90;
  height: 50px;
}
.testimonials .slider .testimonial .top .company {
  height: 30px;
  font-size: 13px;
  border-radius: 15px;
  border: solid 1px white;
  text-transform: uppercase;
  display: inline-block;
  line-height: 27px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {
  .testimonials .slider {
    padding-left: 5%;
  }
  .testimonials .slider .testimonial {
    width: 90vw;
    margin-right: 10vw;
  }
  .testimonials .slider .testimonial:last-child {
    margin-right: 5vw;
  }
}
@media screen and (max-width: 600px) {
  .testimonials {
    align-items: flex-end;
    padding-bottom: 5vw;
  }
  .testimonials .slider .testimonial {
    height: calc(100vh - 14vw - 60px);
    padding: 40px 30px;
  }
  .testimonials .slider .testimonial .top .headline {
    margin-bottom: 10px;
  }
  .testimonials .slider .testimonial .top .headline .svg {
    height: 40px;
  }
  .testimonials .slider .testimonial .top .company {
    height: 24px;
    font-size: 12px;
    border-radius: 12px;
    line-height: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
}
section.about {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.about .container {
  height: calc(100vh - 100px);
  width: calc(100vw - 120px);
  color: #404040;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
section.about .container .left {
  width: 44%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}
section.about .container .right {
  width: 54%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 20px;
}
section.about .container .right .top {
  position: relative;
  overflow: hidden;
}
section.about .container .right .top .infiniteText {
  padding-bottom: 0px;
  padding-top: 0px;
  border-bottom: none;
}
section.about .container .right .top .infiniteText div h2 {
  font-size: 150px;
  margin-top: 20px;
  height: 0.9em;
  line-height: 1.1;
}
section.about .container .right .top .infiniteText div h2 .svg {
  margin-bottom: 30px;
  height: 120px;
}
section.about .container .right .top p {
  margin-bottom: 30px;
  padding-top: 20px;
}

@media screen and (max-width: 900px) {
  section.about {
    height: auto;
  }
  section.about .container {
    flex-direction: column;
    height: auto;
    width: 90%;
  }
  section.about .container .left {
    width: 100%;
    height: 50vh;
    margin-bottom: 30px;
  }
  section.about .container .right {
    width: 100%;
    height: auto;
    padding: 3% 4% 4% 4%;
  }
  section.about .container .right .top {
    margin-bottom: 300px;
  }
  section.about .container .right .top .infiniteText div h2 {
    font-size: 100px;
  }
  section.about .container .right .top .infiniteText div h2 .svg {
    height: 80px;
  }
}
@media screen and (max-width: 600px) {
  section.about {
    padding-top: 100px;
  }
  section.about .container .left {
    margin-bottom: 20px;
  }
  section.about .container .right .top {
    margin-bottom: 200px;
  }
  section.about .container .right .top .infiniteText div h2 {
    font-size: 70px;
  }
  section.about .container .right .top .infiniteText div h2 .svg {
    height: 50px;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
  }
  section.about .container .right .top p {
    padding-top: 10px;
  }
}
footer {
  background-color: #1D1D1D;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
}
footer .infiniteText {
  border-bottom: solid 6px white;
}
footer .infiniteText div h2 {
  color: white;
}
footer .titleAndText {
  margin-bottom: 150px;
}
footer .titleAndText:nth-child(2) {
  margin-top: 100px;
}
footer .titleAndText .largeContainer:first-child {
  display: none;
}
footer .cta:hover a .row:hover {
  font-size: 26px;
}
footer .cta:hover a .row:not(:hover) {
  color: #404040;
}
footer .cta a .row {
  display: flex;
  align-items: center;
  height: 150px;
  font-size: 24px;
  border-top: solid 1px white;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
footer .cta a:last-child .row {
  border-bottom: solid 1px white;
}
footer .bottom {
  position: relative;
  margin-top: 150px;
}
footer .bottom .largeContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
footer .bottom .largeContainer .logo img {
  height: 30px;
}
footer .bottom .largeContainer .year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
footer .bottom .largeContainer .doubleUnderlignedButton {
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  footer .infiniteText {
    padding-top: 40px;
  }
  footer .titleAndText .largeContainer {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  footer .infiniteText {
    padding-top: 30px;
  }
  footer .titleAndText {
    margin-bottom: 110px;
  }
  footer .cta a .row {
    height: 100px;
    font-size: 22px;
  }
  footer .bottom {
    margin-top: 100px;
  }
  footer .bottom .largeContainer .logo img {
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  footer .infiniteText {
    padding-top: 20px;
  }
  footer .titleAndText {
    margin-bottom: 50px;
  }
  footer .titleAndText:nth-child(2) {
    margin-top: 50px;
  }
  footer .titleAndText .largeContainer .left {
    margin-bottom: 15px;
  }
  footer .bottom {
    margin-top: 70px;
  }
}
.largeContainer {
  margin-left: 60px;
  margin-right: 60px;
}

.normalContainer {
  padding-left: 8%;
  padding-right: 8%;
}

.indentedContainer {
  padding-left: 8%;
  padding-right: 60px;
}

@media screen and (max-width: 1200px) {
  .normalContainer {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 900px) {
  .largeContainer {
    margin-left: 5%;
    margin-right: 5%;
  }
  .indentedContainer {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-hcenter {
  justify-content: center;
}

.flex-vcenter {
  align-items: center;
}

.flex-column {
  flex-direction: column;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-spacebetween {
  justify-content: space-between;
}

.flex-center-center {
  justify-content: center;
  align-items: center;
}

.flex-center-spacebetween {
  align-items: center;
  justify-content: space-between;
}

.index {
  overflow: auto;
  background-color: #E7E7E9;
}
.index section {
  width: 100%;
}
.index .greyBg {
  position: relative;
  background-color: #E7E7E9;
  overflow: hidden;
  width: 100%;
  padding-bottom: 160px;
}
.index .greyBg:nth-child(2) {
  margin-top: 100vh;
}

@media screen and (max-width: 900px) {
  .index .greyBg {
    margin-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .index .greyBg {
    margin-top: 100px;
  }
}
.page-devis {
  overflow: auto;
  min-height: 100vh;
  background-color: #F5F6F5;
}
.page-devis .modal-devis {
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  top: 110vh;
}
.page-devis .modal-devis input, .page-devis .modal-devis select {
  width: 100%;
  height: 54px;
  border: solid 1px #efefef;
  padding-left: 15px;
  font-size: 18px;
}
.page-devis .modal-devis input::-moz-placeholder, .page-devis .modal-devis select::-moz-placeholder {
  color: #b3b3b3;
  font-size: 17px;
}
.page-devis .modal-devis input::placeholder, .page-devis .modal-devis select::placeholder {
  color: #b3b3b3;
  font-size: 17px;
}
.page-devis .modal-devis textarea {
  width: 100%;
  border: solid 1px #efefef;
  font-size: 18px;
  padding-left: 15px;
  padding-top: 7px;
}
.page-devis .modal-devis textarea::-moz-placeholder {
  color: #b3b3b3;
  font-size: 18px;
}
.page-devis .modal-devis textarea::placeholder {
  color: #b3b3b3;
  font-size: 18px;
}
.page-devis .modal-devis .input {
  padding-left: 0px;
  height: auto;
  padding-bottom: 0px;
}
.page-devis .modal-devis .radio-div {
  cursor: pointer;
}
.page-devis .modal-devis .radio-div label {
  cursor: pointer;
}
.page-devis .modal-devis .comment {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}
.page-devis .modal-devis .w50 {
  width: 50% !important;
}
.page-devis .modal-devis .email-verification {
  display: none !important;
}
.page-devis .modal-devis .carousel {
  max-width: 700px;
  width: 100vw;
  overflow-x: hidden;
  z-index: 99;
}
.page-devis .modal-devis .carousel .slider .slide {
  max-width: 700px;
  width: 100vw;
  height: 550px;
  background-color: #F5F6F5;
  border-radius: 5px;
  float: left;
  padding: 30px 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
}
.page-devis .modal-devis .carousel .slider .slide .fa-times {
  color: #babbbd;
  position: absolute;
  left: 15px;
  top: 13px;
  cursor: pointer;
  font-size: 20px;
}
.page-devis .modal-devis .carousel .slider .slide .progress-bar {
  overflow: auto;
}
.page-devis .modal-devis .carousel .slider .slide .progress-bar .progress-bullet {
  height: 8px;
  border: solid 1px #dcdedf;
  border-radius: 4px;
  width: 60px;
  margin-left: 7px;
  float: left;
}
.page-devis .modal-devis .carousel .slider .slide .progress-bar .progress-bullet:first-child {
  margin-left: 0px;
}
.page-devis .modal-devis .carousel .slider .slide .progress-bar .full {
  background-color: #00FF90;
  border: solid 1px #00FF90;
}
.page-devis .modal-devis .carousel .slider .slide h3 {
  margin-top: 0px;
  color: #5f656d;
  margin-bottom: 0px;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-family: "Sk Modernist", Arial, Helvetica, sans-serif;
  color: #1D1D1D;
  text-transform: none;
}
.page-devis .modal-devis .carousel .slider .slide .content {
  width: 100%;
}
.page-devis .modal-devis .carousel .slider .slide .content label, .page-devis .modal-devis .carousel .slider .slide .content input, .page-devis .modal-devis .carousel .slider .slide .content select {
  display: block;
}
.page-devis .modal-devis .carousel .slider .slide .content label {
  font-size: 17px;
  color: #454444;
}
.page-devis .modal-devis .carousel .slider .slide .content input, .page-devis .modal-devis .carousel .slider .slide .content select {
  border-bottom: none;
}
.page-devis .modal-devis .carousel .slider .slide .content input:last-child, .page-devis .modal-devis .carousel .slider .slide .content select:last-child {
  border-bottom: solid 1px #efefef;
}
.page-devis .modal-devis .carousel .slider .slide .content .input .w50 {
  width: 50%;
}
.page-devis .modal-devis .carousel .slider .slide .content .input .w50:last-child {
  border-left: none;
  border-bottom: none;
}
.page-devis .modal-devis .carousel .slider .slide .content .radio-div {
  height: 54px;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: left;
  align-items: center;
  border-left: solid 1px #efefef;
  border-top: solid 1px #efefef;
  border-right: solid 1px #efefef;
}
.page-devis .modal-devis .carousel .slider .slide .content .radio-div:first-child {
  border-radius: 4px 4px 0px 0px;
}
.page-devis .modal-devis .carousel .slider .slide .content .radio-div:last-child {
  border-radius: 0px 0px 4px 4px;
  border-bottom: solid 1px #efefef;
}
.page-devis .modal-devis .carousel .slider .slide .content .radio-div label {
  margin-left: 10px;
}
.page-devis .modal-devis .carousel .slider .slide .content .radio-div input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin-left: 20px;
}
.page-devis .modal-devis .carousel .slider .slide .buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  font-size: 14px;
  background-color: transparent;
  border-radius: 3px;
  cursor: pointer;
  padding: 0px 36px;
  text-transform: uppercase;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .button i {
  padding-left: 10px;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .next-btn {
  border: solid 1px #00FF90;
  color: white;
  background-color: #00FF90;
  transition: all 0.15s ease-out;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .next-btn:hover {
  background-color: #00c46f;
  border: solid 1px #00c46f;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .prev {
  border: solid 1px #babbbd;
  color: #babbbd;
  padding: 0px 0px;
  width: 46px;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .prev i {
  padding-left: 0px;
}
.page-devis .modal-devis .carousel .slider .slide .buttons .btn-close {
  color: #1D1D1D;
  border: solid 2px black;
}
.page-devis .modal-devis {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: transparent;
  z-index: 998;
  top: 0px;
  background-color: #F5F6F5;
}
.page-devis .modal-devis .carousel .slider {
  width: 5000px;
}
.page-devis .modal-devis .carousel .slider .slide {
  height: 70vh;
}

@media screen and (max-width: 900px) {
  .page-devis .modal-devis .input .w50 {
    width: 100% !important;
  }
  .page-devis .modal-devis .carousel .slider .slide .content .input .w50:last-child {
    border-left: solid 1px #efefef;
  }
}
@media screen and (max-width: 700px) {
  .page-devis .modal-devis .carousel {
    position: absolute;
    bottom: 0px;
    height: calc(100vh - 40px) !important;
  }
  .page-devis .modal-devis .carousel .slider {
    height: calc(100vh - 40px) !important;
    overflow-y: hidden;
  }
  .page-devis .modal-devis .carousel .slider .slide {
    height: calc(100vh - 40px) !important;
    display: block;
    border-radius: 10px 10px 0px 0px;
    overflow: scroll;
  }
  .page-devis .modal-devis .carousel .slider .slide .progress-bar {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
  }
  .page-devis .modal-devis .carousel .slider .slide .progress-bar .progress-bullet {
    width: 18%;
  }
  .page-devis .modal-devis .carousel .slider .slide h3 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .page-devis .modal-devis .carousel .slider .slide .content {
    margin-bottom: 30px;
  }
  .page-devis .modal-devis .carousel .slider .slide .buttons {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=main.css.map */