/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Fira Sans", sans-serif;
  width: 100vw;
  height: 100vh;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-size: 3.2rem;
  line-height: 130%;
}

p, li, a, h3, h4 {
  line-height: 130%;
}

p, li {
  font-weight: 100;
}

a.btn {
  font-family: Montserrat, sans-serif;
}

h3 {
  font-size: 2.2rem;
}

a + svg {
  margin-left: 8px;
}

@media (max-width: 800px) {
  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 2rem;
  }
}
#information, #contact, #discover {
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  position: relative;
}

a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -0.07rem;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}

a:hover:after, a:focus:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

main div.scroll#scroll-container {
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  overflow: scroll;
  scroll-behavior: smooth;
}

main div#scroll-container section.section#scroll-section {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

.landing {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.landing__image {
  width: 100%;
  height: 100%;
}
.landing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.landing__txt {
  position: absolute;
  top: 0;
  right: 50%;
  color: #ffff;
  width: 85%;
  height: 100%;
  transform: translate(50%, 0);
}
.landing__txt nav ul {
  display: flex;
  row-gap: 8px;
}
.landing__txt nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 100;
}
.landing__txt nav ul li + li {
  margin-left: 24px;
}
.landing__txt .header {
  margin-top: 32px;
  text-align: center;
  display: flex;
  width: 100%;
  column-gap: 16px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.landing__title {
  display: flex;
  justify-content: flex-end;
  font-size: 4.4rem;
  margin-top: 100px;
  text-align: right;
}
.landing__intro {
  max-width: 800px;
  font-weight: 100;
}
.landing div.intro {
  margin-top: 42px;
  display: flex;
  justify-content: flex-end;
  font-size: 3.2rem;
  text-align: right;
  line-height: 130%;
}

.container-chevron {
  position: absolute;
  right: 50px;
  bottom: 100px;
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.chevron {
  position: absolute;
  width: 4rem;
  height: 0.8rem;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #ffffff;
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(3.04rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(4.16rem);
  }
  100% {
    opacity: 0;
    transform: translateY(6.4rem) scale(0.5);
  }
}
.logo {
  width: 100px;
  height: 100px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 800px) {
  .landing .logo {
    width: 70px;
    height: 70px;
  }
  .landing .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .landing__txt {
    width: 90%;
  }
  .landing__txt nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .landing__txt nav ul li a {
    font-size: 1.6rem;
  }
  .landing__txt .header {
    justify-content: center;
    row-gap: 12px;
  }
  .landing__title {
    font-size: 2.6rem;
    margin-top: 44px;
  }
  .landing div.intro {
    font-size: 2.6rem;
  }

  .container-chevron {
    position: absolute;
    right: 0;
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
section.two {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
section.two figure {
  max-width: 65vw;
  height: 100vh;
}
section.two figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.two .side-txt {
  width: 100%;
  max-height: 100vh;
  padding: 36px 44px 0 44px;
}
section.two .side-txt .title {
  max-width: 500px;
  margin-bottom: 36px;
}
section.two .side-txt p {
  line-height: 130%;
  font-weight: 100;
  max-width: 500px;
}
section.two .side-txt p + p {
  margin-top: 20px;
}

section.six .side-txt {
  position: relative;
}
section.six .side-txt .bold {
  font-weight: 600;
  margin-top: 24px;
}
section.six .side-txt p + p {
  margin-top: 18px;
}
section.six .side-txt a {
  text-decoration: none;
  color: #000;
}
section.six .side-txt .dealer + .dealer {
  margin-top: 60px;
}
section.six .side-txt h2 + .dealer {
  margin-top: 64px;
}
section.six .side-txt .logo-bm-mini.white {
  display: none;
}
section.six .side-txt .logo-bm-mini.black {
  display: inline;
}
section.six .side-txt .logo-bm-mini.black {
  display: flex;
  column-gap: 16px;
  position: absolute;
  bottom: 100px;
  right: 150px;
}

@media (min-width: 1300px) {
  section.two figure, section.six figure {
    width: 70vw;
    height: 100vh;
  }
  section.two figure img, section.six figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  section.two .side-txt, section.six .side-txt {
    padding: 100px 44px 0 44px;
  }

  section.two .side-txt {
    padding: 100px 44px 0 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 800px) {
  section.two, section.six {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
  }
  section.two figure, section.six figure {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
  }
  section.two figure img, section.six figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(25%);
  }
  section.two .side-txt, section.six .side-txt {
    color: white;
    z-index: 2;
    width: 100%;
    max-height: 100vh;
    padding: 24px 24px 0 24px;
  }
  section.two .side-txt a, section.six .side-txt a {
    color: #ffff;
    position: relative;
    border-bottom: 0.5px solid white;
  }
  section.two .side-txt .title, section.six .side-txt .title {
    max-width: 100%;
    margin-bottom: 36px;
  }
  section.two .side-txt p, section.six .side-txt p {
    line-height: 130%;
    font-weight: 100;
    max-width: 100%;
  }
  section.two .side-txt p + p, section.six .side-txt p + p {
    margin-top: 8px;
  }
  section.two .side-txt .logo-bm-mini.white, section.six .side-txt .logo-bm-mini.white {
    display: block;
  }
  section.two .side-txt .logo-bm-mini.black, section.six .side-txt .logo-bm-mini.black {
    display: none;
  }
  section.two .side-txt .logo-bm-mini.white, section.six .side-txt .logo-bm-mini.white {
    display: flex;
    column-gap: 16px;
    position: absolute;
    bottom: 100px;
    right: 50px;
  }

  .section.two .side-txt p + p {
    margin-top: 16px;
  }
}
section.three {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
section.three figure {
  width: 100%;
  height: 100%;
}
section.three figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
section.three .txt-on-img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #ffff;
  width: 85%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
section.three .txt-on-img a {
  color: #ffff;
  text-decoration: none;
}
section.three .txt-on-img .why {
  max-width: 500px;
}
section.three .txt-on-img .why p.italic {
  margin-top: 24px;
  font-weight: 100;
  max-width: 350px;
  font-style: italic;
}
section.three .txt-on-img .what {
  position: absolute;
  bottom: 200px;
  max-width: 400px;
}
section.three .txt-on-img .what ul {
  margin-top: 24px;
}
section.three .txt-on-img .what ul li {
  list-style: square;
  list-style-position: inside;
}
section.three .txt-on-img .what ul li + li {
  margin-top: 8px;
}
section.three .txt-on-img div.btn-txt {
  position: absolute;
  bottom: 150px;
  right: 0;
}

@media (min-width: 900px) {
  section.three .txt-on-img div.btn-txt {
    bottom: 200px;
    font-size: 24px;
  }
  section.three .txt-on-img p.italic {
    font-size: 20px;
  }
  section.three .txt-on-img .title {
    font-size: 3.8rem;
    max-width: 450px;
  }
}
@media (max-width: 800px) {
  section.three .txt-on-img {
    margin-top: 24px;
  }
}
section.four {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
section.four figure {
  width: 70vw;
  height: 100vh;
}
section.four figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.four .side-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-height: 100vh;
  padding: 100px 44px 0 44px;
  margin: 0 auto;
}
section.four .side-txt .title {
  max-width: 500px;
  margin-bottom: 36px;
}
section.four .side-txt p {
  line-height: 130%;
  font-weight: 100;
  max-width: 500px;
}
section.four .side-txt p + p {
  margin-bottom: 24px;
}
section.four .side-txt a {
  color: #000;
  align-self: start;
  text-decoration: none;
}
section.four .side-txt a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -0.07rem;
  left: 0;
  background-color: black;
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}
section.four .side-txt a:hover:after, section.four .side-txt a:focus:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
section.four .side-txt a + svg path {
  stroke: black;
}

section.seven .on-img {
  position: relative;
}
section.seven .on-img .side-txt input {
  border: none;
  outline: none;
  border-bottom: 2px solid black;
  padding-bottom: 8px;
  color: black;
  font-size: 16px;
  min-width: 360px;
  max-width: 360px;
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0);
}
section.seven .on-img .side-txt input:not(.checkbox div input) {
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
section.seven .on-img .side-txt input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  /* Firefox */
  font-size: 16px;
}
section.seven .on-img .side-txt input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
  font-size: 16px;
}
section.seven .on-img .side-txt label {
  margin-bottom: 24px;
  font-weight: 200;
  display: inline;
  flex: 1;
}
section.seven .on-img .side-txt select {
  border: none;
  border-bottom: 2px solid black;
  padding-bottom: 8px;
  color: black;
  font-size: 16px;
  min-width: 360px;
  max-width: 360px;
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
section.seven .on-img .side-txt #check-condition {
  display: block;
  max-width: 20px;
  min-width: 0;
}
section.seven .on-img .side-txt .checkbox {
  display: flex;
  max-width: 360px;
}
section.seven .on-img .side-txt .checkbox div input {
  width: 16px;
  height: 16px;
}
section.seven .on-img .side-txt p.promise {
  max-width: 360px;
  font-size: 16px;
}
section.seven .on-img .side-txt .flex {
  display: flex;
  font-size: 16px;
  column-gap: 20px;
}
section.seven .on-img .side-txt .flex input {
  min-width: 170px;
  max-width: 170px;
}
section.seven .on-img .side-txt .contact-info {
  margin-top: 16px;
  max-width: 360px;
  font-size: 16px;
  font-weight: 100;
  margin-left: -34px;
  display: flex;
  margin-bottom: 32px;
}

@media (max-width: 1200px) {
  section.four figure {
    width: 100%;
    max-width: 65vw;
    height: 100vh;
  }
  section.four .side-txt {
    padding: 32px 24px 0 24px;
  }
  section.four .side-txt a + svg path {
    stroke: white;
  }
}
@media (max-width: 800px) {
  section.four, section.seven {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
  }
  section.four figure, section.seven figure {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
  }
  section.four figure img, section.seven figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(25%);
  }
  section.four .side-txt, section.seven .side-txt {
    color: white;
    z-index: 2;
    width: 100%;
    max-height: 100vh;
    padding: 24px 24px 0 24px;
  }
  section.four .side-txt .title, section.seven .side-txt .title {
    max-width: 100%;
    margin-bottom: 36px;
  }
  section.four .side-txt p, section.seven .side-txt p {
    line-height: 130%;
    font-weight: 100;
    max-width: 100%;
  }
  section.four .side-txt p + p, section.seven .side-txt p + p {
    margin-bottom: 24px;
  }
  section.four .side-txt a, section.seven .side-txt a {
    color: #ffff;
    text-decoration: none;
  }
  section.four .side-txt a + svg path, section.seven .side-txt a + svg path {
    stroke: white;
  }

  section.seven .on-img {
    position: relative;
  }
  section.seven .on-img .side-txt {
    position: absolute;
    color: white;
    z-index: 2;
    width: 100%;
    max-height: 100vh;
    padding: 24px 24px 0 24px;
  }
  section.seven .on-img .side-txt input {
    border: none;
    outline: none;
    border-bottom: 2px solid white;
    color: white;
    min-width: 300px;
    max-width: 300px;
  }
  section.seven .on-img .side-txt input:not(.checkbox div input) {
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }
  section.seven .on-img .side-txt input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */
    font-size: 16px;
  }
  section.seven .on-img .side-txt input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white;
    font-size: 16px;
  }
  section.seven .on-img .side-txt label {
    margin-bottom: 12px;
    display: block;
    font-weight: 200;
  }
  section.seven .on-img .side-txt select {
    border-bottom: 2px solid white;
    color: white;
    min-width: 300px;
    max-width: 300px;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }
  section.seven .on-img .side-txt .flex {
    display: flex;
    font-size: 16px;
    column-gap: 20px;
  }
  section.seven .on-img .side-txt .flex input {
    min-width: 140px;
    max-width: 140px;
  }
  section.seven .on-img .side-txt .checkbox {
    display: flex;
    max-width: 300px;
  }
  section.seven .on-img .side-txt .checkbox div input {
    width: 16px;
    height: 16px;
  }
  section.seven .on-img .side-txt .contact-info {
    margin-left: 0;
    margin-bottom: 16px;
  }
}
div.five {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
div.five figure {
  width: 100%;
  height: 100%;
}
div.five figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
div.five .txt-on-img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #ffff;
  width: 85%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
div.five .txt-on-img h2 {
  align-self: center;
  font-size: 4.4rem;
}
div.five .txt-on-img .info {
  margin-top: 80px;
}
div.five .txt-on-img .info .big {
  font-family: Montserrat, sans-serif;
  font-size: 3.2rem;
  margin-bottom: 12px;
}
div.five .txt-on-img .info .big span {
  display: block;
  font-size: 1.6rem;
}
div.five .txt-on-img .info .bold {
  font-weight: 500;
  margin-bottom: 44px;
}
div.five .txt-on-img .icon-slider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  bottom: 100px;
  display: flex;
  column-gap: 8px;
  margin-top: 200px;
}
div.five .txt-on-img .btn {
  color: white;
}

section.main-carousel ol.flickity-page-dots {
  position: absolute;
  bottom: 50px;
}

.flickity-page-dots li.dot {
  background: white;
}

@media (max-width: 1000px) {
  div.five .txt-on-img {
    width: 90%;
    margin-top: 60px;
  }
  div.five .txt-on-img h2 {
    font-size: 3.2rem;
  }
  div.five .txt-on-img .info {
    margin-top: 44px;
  }
  div.five .txt-on-img .info .big {
    font-size: 2.2rem;
  }
  div.five .txt-on-img .info .bold {
    margin-bottom: 32px;
  }
  div.five .txt-on-img .icon-slider {
    margin-top: 50px;
  }
}
button.flickity-prev-next-button.next {
  top: 80%;
  right: 45%;
  transform: translate(45%, 80%);
}

button.flickity-prev-next-button.previous {
  top: 80%;
  left: 44%;
  transform: translate(44%, 80%);
}

button.flickity-button:disabled {
  opacity: 0.5;
}

@media (max-width: 1200px) {
  button.flickity-prev-next-button.next {
    top: 80%;
    right: 20%;
    transform: translate(20%, 80%);
  }

  button.flickity-prev-next-button.previous {
    top: 80%;
    left: 20%;
    transform: translate(20%, 80%);
  }
}
@media (max-width: 800px) {
  button.flickity-prev-next-button.next {
    top: 70%;
    right: 20%;
    transform: translate(20%, 70%);
  }

  button.flickity-prev-next-button.previous {
    top: 70%;
    left: 20%;
    transform: translate(20%, 70%);
  }

  div.five .txt-on-img {
    margin-top: 24px;
  }
}
.mobil {
  display: none;
}

@media (max-width: 800px) {
  .mobil {
    display: block;
  }

  .desktop {
    display: none;
  }
}
.videos {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.videos .italic {
  font-style: italic;
  max-width: 350px;
  margin-top: 16px;
  font-size: 20px;
}
.videos h2 {
  max-width: 530px;
  font-size: 32px;
}
.videos .bold {
  font-weight: 400;
}
.videos figure.image {
  width: 100%;
  height: 100%;
}
.videos figure.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}
.videos .txt-on-img {
  position: absolute;
  top: 0;
  left: 50%;
  color: #ffff;
  width: 85%;
  height: 100%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
}
.videos .flex-title-img {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.videos .small-image {
  width: 150px;
  height: 150px;
}
.videos .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videos .border-image {
  border: 1px white solid;
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-video-desktop .txt-on-img .flex-title-img {
  margin-top: 100px;
}
.section-video-desktop .txt-on-img .all-video {
  position: absolute;
  bottom: 100px;
  display: flex;
  column-gap: 20px;
  width: 100%;
}
.section-video-desktop .txt-on-img .single-video {
  width: calc(100%/3);
  height: 250px;
}
.section-video-desktop .txt-on-img .single-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video-mobil .txt-on-img .flex-title-img {
  margin-top: 100px;
  row-gap: 44px;
}
.section-video-mobil .txt-on-img .all-video {
  position: absolute;
  top: 60%;
  height: 100%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
}
.section-video-mobil .txt-on-img .single-video {
  width: 100%;
  height: 150px;
}
.section-video-mobil .txt-on-img .single-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-height: 1000px) {
  .section-video-desktop .txt-on-img .flex-title-img {
    margin-top: 100px;
  }
  .section-video-desktop .txt-on-img .all-video {
    position: absolute;
    bottom: 250px;
    display: flex;
    column-gap: 20px;
    width: 100%;
  }
  .section-video-desktop .txt-on-img .single-video {
    width: calc(100%/3);
    height: 250px;
  }
  .section-video-desktop .txt-on-img .single-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.services {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.services h2 {
  margin: 44px auto 0;
}
.services p.number {
  font-family: Montserrat, sans-serif;
  font-size: 44px;
}
.services .bold {
  font-weight: 400;
  max-width: 500px;
}
.services .service {
  max-width: 850px;
}
.services figure.image {
  width: 100%;
  height: 100%;
}
.services figure.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.services .txt-on-img {
  position: absolute;
  top: 0;
  left: 50%;
  color: #ffff;
  width: 85%;
  height: 100%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
}
.services .txt-on-img div.txt .txt-div {
  display: flex;
  align-items: center;
}
.services .txt-on-img div.txt .txt-div div {
  position: relative;
  right: -40px;
}
.services .txt-on-img div.txt .txt-div div.first {
  position: relative;
  right: -50px;
}
.services .txt-on-img div.txt {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.section-service-desktop .txt-on-img .bold {
  font-size: 20px;
}
.section-service-desktop .txt-on-img h2 {
  margin-top: 80px;
  font-size: 44px;
}
.section-service-desktop .txt-on-img div.txt .txt-div {
  display: flex;
  align-items: center;
}
.section-service-desktop .txt-on-img div.txt .txt-div div {
  position: relative;
  right: -40px;
}
.section-service-desktop .txt-on-img div.txt .txt-div div.first {
  position: relative;
  right: -50px;
}
.section-service-desktop .txt-on-img div.txt {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

@media (max-width: 1100px) {
  .section-service-desktop .txt-on-img .bold {
    font-size: 18px;
  }
  .section-service-desktop .txt-on-img h2 {
    margin-top: 60px;
    font-size: 36px;
  }
}
.six-section-desktop {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.six-section-desktop .all-contact-info {
  display: flex;
  width: 100%;
  height: 100%;
  color: white;
}
.six-section-desktop .all-contact-info .info, .six-section-desktop .all-contact-info .contact-form {
  position: relative;
  width: 50vw;
}
.six-section-desktop .all-contact-info .info figure, .six-section-desktop .all-contact-info .contact-form figure {
  width: 100%;
  height: 100%;
}
.six-section-desktop .all-contact-info .info figure img, .six-section-desktop .all-contact-info .contact-form figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.six-section-desktop .all-contact-info .info .txt-on-img, .six-section-desktop .all-contact-info .contact-form .txt-on-img {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
}
.six-section-desktop .all-contact-info .info .txt-on-img a, .six-section-desktop .all-contact-info .contact-form .txt-on-img a {
  color: #ffff;
  text-decoration: none;
}
.six-section-desktop .all-contact-info .info .txt-on-img .dealer, .six-section-desktop .all-contact-info .contact-form .txt-on-img .dealer {
  margin-top: 32px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .dealer .bold, .six-section-desktop .all-contact-info .contact-form .txt-on-img .dealer .bold {
  font-weight: 400;
  margin-bottom: 24px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .dealer p:not(.bold), .six-section-desktop .all-contact-info .contact-form .txt-on-img .dealer p:not(.bold) {
  margin-top: 8px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .logo-bm-mini, .six-section-desktop .all-contact-info .contact-form .txt-on-img .logo-bm-mini {
  display: flex;
  column-gap: 8px;
  margin-top: 24px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .logo-bm-mini .logo-mini svg, .six-section-desktop .all-contact-info .info .txt-on-img .logo-bm-mini .logo-bm svg, .six-section-desktop .all-contact-info .contact-form .txt-on-img .logo-bm-mini .logo-mini svg, .six-section-desktop .all-contact-info .contact-form .txt-on-img .logo-bm-mini .logo-bm svg {
  height: 35px;
}
.six-section-desktop .all-contact-info .info .txt-on-img p.promise, .six-section-desktop .all-contact-info .contact-form .txt-on-img p.promise {
  max-width: 450px;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 32px;
}
.six-section-desktop .all-contact-info .info .txt-on-img form, .six-section-desktop .all-contact-info .contact-form .txt-on-img form {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.six-section-desktop .all-contact-info .info .txt-on-img form div:not(.checkbox div), .six-section-desktop .all-contact-info .contact-form .txt-on-img form div:not(.checkbox div) {
  min-width: 300px;
  max-width: 500px;
  margin-right: 24px;
}
.six-section-desktop .all-contact-info .info .txt-on-img input:not(.checkbox input), .six-section-desktop .all-contact-info .info .txt-on-img select, .six-section-desktop .all-contact-info .contact-form .txt-on-img input:not(.checkbox input), .six-section-desktop .all-contact-info .contact-form .txt-on-img select {
  width: 100%;
  height: 100%;
  padding: 0 16px 8px;
  background: none;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  font-weight: 200;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
}
.six-section-desktop .all-contact-info .info .txt-on-img select, .six-section-desktop .all-contact-info .contact-form .txt-on-img select {
  padding: 0 12px 8px;
}
.six-section-desktop .all-contact-info .info .txt-on-img input::placeholder, .six-section-desktop .all-contact-info .contact-form .txt-on-img input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  /* Firefox */
  font-size: 16px;
}
.six-section-desktop .all-contact-info .info .txt-on-img input::-ms-input-placeholder, .six-section-desktop .all-contact-info .contact-form .txt-on-img input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
  font-size: 16px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .checkbox, .six-section-desktop .all-contact-info .contact-form .txt-on-img .checkbox {
  padding-left: 16px;
  display: flex;
  justify-content: space-between;
}
.six-section-desktop .all-contact-info .info .txt-on-img .checkbox label, .six-section-desktop .all-contact-info .contact-form .txt-on-img .checkbox label {
  font-weight: 200;
  font-family: "Fira Sans", sans-serif;
}
.six-section-desktop .all-contact-info .info .txt-on-img .checkbox div input, .six-section-desktop .all-contact-info .contact-form .txt-on-img .checkbox div input {
  max-height: 20px;
}
.six-section-desktop .all-contact-info .info .txt-on-img .form-btn, .six-section-desktop .all-contact-info .contact-form .txt-on-img .form-btn {
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .six-section-desktop .all-contact-info .info .txt-on-img, .six-section-desktop .all-contact-info .contact-form .txt-on-img {
    top: 40px;
  }
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
  background-color: #797979;
  color: white;
  padding: 22px 42px;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer div.rs, .footer div.condition {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.footer div.rs a, .footer div.condition a {
  font-weight: 100;
}
.footer div.rs .big, .footer div.condition .big {
  font-weight: 400;
}
.footer div.rs p.big {
  margin-right: 40px;
  margin-bottom: 20px;
}
.footer div.rs div + div {
  margin-left: 4px;
}

@media (max-width: 800px) {
  .footer div.condition {
    display: flex;
  }
}
main div.scroll#scroll-container {
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  overflow: scroll;
  scroll-behavior: smooth;
}

main div#scroll-container section.section#scroll-section {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

/*# sourceMappingURL=style.css.map */
