:root{
  --text-color: #0a090c;
  --body-bg: #fff;
}

.dark_mode {
  --text-color: #fff;
  --body-bg:  #0a090c;
}

@font-face {
  font-family: "Sofiapro";
  src: url("https://uploads-ssl.webflow.com/62bab4c616476002f46a1e16/62bac2d95cb2e24ab909f585_sofiapro-regular.otf")
  format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofiapro";
  src: url("https://uploads-ssl.webflow.com/62bab4c616476002f46a1e16/62bac2d9fa2cce4c5563d279_sofiapro-light.otf")
  format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofiapro";
  src: url("https://uploads-ssl.webflow.com/62bab4c616476002f46a1e16/62bac2da46353355e5a1f6bf_sofiapro-black.otf")
  format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofiapro";
  src: url("https://uploads-ssl.webflow.com/62bab4c616476002f46a1e16/62bac2d92013a763f2b07e42_sofia-pro-medium.otf")
  format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.alice-regular {
  font-family: "Alice", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  margin-top: 0px;
  margin-bottom: 30px;
  font-family: Sofiapro, sans-serif;
  font-size: 56px;
  line-height: 62px;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  background: var(--body-bg);
  margin: 0;
  font-family: Sofiapro, sans-serif;
  font-size: 20px;
  line-height: 34px;
  font-weight: 300;
}

h2 {
  margin-top: 0px;
  margin-bottom: 35px;
  font-family: "Roboto Mono", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

h3 {
  margin-top: 0px;
  margin-bottom: 30px;
  font-family: Sofiapro, sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  margin-bottom: 10px;
}

a {
  color: #0a090c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
  padding-left: 1rem;
  margin: 0;
}

li {
  list-style-image: url("img/list-icon.svg");
  padding-left: 0.5rem;
  margin-bottom: 0.8rem;
}

.paragrap--w-75 {
  max-width: 80ch;
}

.navbar {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__span {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.header__span__divider::after {
  display: inline-block;
  content: "●";
  font-size: 0.35rem;
  position: relative;
  top: -0.1rem;
  vertical-align: middle;
  margin: 0px 0.5625rem;
}

.highlighted {
  position: relative;
}

.highlighted::before {
  background-color: #e5e5e5;
  content: "";
  position: absolute;
  width: 102% ;
  height: 15px;
  left: -2px;
  bottom: -6px;
  z-index: -1;
  animation: border_anim 0.5s linear forwards;
}

.link-strong {
  font-weight: 600;
  text-decoration: underline;
}

.link-strong:hover {
  color: #5d617c;
}

.section {
  padding-top: 30px;
  padding-bottom: 60px;
}

.section--no-padding-top {
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer {
  padding-top: 80px;
  padding-bottom: 40px;
}

.grid-2 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.paragraph-large {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}

.paragraph-small {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.nav-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.button-large {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  font-family: "Roboto Mono", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.h-brand {
  width: 80px;
}

.nav-link {
  margin-left: 15px;
  font-family: "Roboto Mono", sans-serif;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

.nav-link:hover {
  font-weight: 600;
}

.heading-2 {
  font-size: 26px;
  line-height: 34px;
}

.paragraph-2 {
  line-height: 28px;
}

/*.bg-black {
  background-color: #0a090c;
}*/

/*.bg-white {
  background-color: var(--body-bg);
  color: var(--text-color);
}*/

.number {
  font-family: "Roboto Mono", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.tool-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 35px;
}

.tool-image {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.tool-text {
  font-family: "Roboto Mono", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.tool-box {
  margin-right: 15px;
}

.button-medium {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  font-family: "Roboto Mono", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.button-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.dot-border-bottom {
  margin-top: 50px;
  margin-bottom: 50px;
  border-bottom: 2px dashed #0a090c;
}
/* Progress Bar */

progress {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border: none;
  background: transparent;
  z-index: 5;
}
progress::-webkit-progress-bar {
  background: transparent;
}
progress::-webkit-progress-value {
  background: linear-gradient(to left, #0a090c,#5d617c, #e3e3e3,#e3e3e3, #5d617c,#0a090c);
  background-attachment: fixed;
}
progress::-moz-progress-bar {
  background: linear-gradient(to left, #0a090c, #e3e3e3,#e3e3e3, #0a090c);
  background-attachment: fixed;
}

.contact-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-text {
  font-family: "Roboto Mono", sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.qr-image {
  margin-right: 20px;
}

.body {
  border-style: solid;
  border-width: 8px;
  border-color: #0a090c;
}

.button-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  font-family: "Roboto Mono", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.image-potrait {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  margin-top: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 4px solid #000;
  border-radius: 200%;
  background-image: url("img/profil.jpg");
  background-position: center;
  background-size: cover;
}

.f-brand-link {
  margin-bottom: 30px;
}

.anchor {
  position: relative;
  top: -100px;
  width: 0px;
  height: 0px;
}

.h-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-2 {
  width: 50px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 46px;
  }

  h2 {
    font-size: 20px;
    line-height: 26px;
  }

  h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  .navbar {
    height: 100px;
  }

  .container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 25px;
  }

  .paragraph-large {
    font-size: 22px;
    line-height: 32px;
  }

  .button-large {
    margin-top: 25px;
    font-size: 20px;
    line-height: 26px;
  }

  .nav-link {
    font-size: 14px;
  }

  .number {
    font-size: 20px;
    line-height: 26px;
  }

  .button-medium {
    font-size: 16px;
    line-height: 22px;
  }

  .body {
    border-width: 5px;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 40px;
  }

  .navbar {
    position: relative;
    height: 60px;
  }

  .header {
    height: 75vh;
  }

  .section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .grid-2 {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .paragraph-large {
    font-size: 18px;
    line-height: 28px;
  }

  .button-large {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
  }

  .h-brand {
    width: 60px;
  }

  .nav-link {
    font-size: 14px;
  }

  .h-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .mobil-turn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 479px) {
  .header {
    height: auto;
    padding-top: 40px;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .container {
    padding-left: 10px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .grid-2 {
    grid-row-gap: 35px;
  }

  .image {
    position: relative;
    top: -30px;
  }

  .button-large {
    margin-top: 15px;
  }

  .h-brand {
    width: 50px;
  }

  .nav-link {
    margin-left: 8px;
    font-size: 12px;
    line-height: 18px;
  }

  .h-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
}

.header__wrapper {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}

.header__image-wrapper {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.section__text__container {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.section__image-wrapper {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.projet__img__wrapper {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}









/*new*/

h1.h1-bold {
  font-weight: 900;
}

.wrapper--mb {
  margin-bottom: 4rem;
}

ul.list-style--none{
  list-style: none;
  padding: 0;
}

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

.project__nav {
  font-weight: 900;
  margin-bottom: 2rem;
}

.project__nav:hover a span {
  transform: translateX(20px);
}

.project--overview-list--flex {
  display: flex;
  gap: 6rem;

  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 0;

    h3 {
      margin-top: 1rem;
    }
  }
}

.project--overview-list--flex ul {
  max-width: 38ch;
}

.project__img__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
  border: 1px dashed #0a090c;
  padding: 1rem;
  max-width: 80%;
}

.project__video__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
}

.project__img {
  width: 100%;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border: 1px solid black;
  box-shadow: 4px 4px black;
  transition: all .3s ease;
}

.btn:hover {
  text-decoration: none;
  margin: 2px -2px -2px 2px;
  box-shadow: -1px -1px 3px white;
}
