/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4;
	  -o-tab-size: 4;
	     tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/

body {
	margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/

/**
Add the correct font weight in Chrome and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	border-color: currentcolor;
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

@charset "UTF-8";
/* mixins */
/* responsive */
/* paragrpah */
/* button */
/* grid */
/* functions */
/* fonts */
/* couleurs */
/* global style */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 20px;
  }
}

header, body, section, footer {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
}

.footer {
  background-color: #fff;
}

.header {
  display: grid;
  place-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .header {
    text-align: left;
    place-items: start;
  }
}

/* background */
.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.content .quote {
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 64px;
  padding: 10px;
  background-color: #000;
  border-radius: 10px;
}

.content .by {
  color: #00e1ff;
}

.blob-outer-container {
  /* position: fixed; */
  height: 100%;
  width: 100%;
  z-index: 0;
  inset: 0;
  margin: auto;
  filter: blur(100px);
  /*opacity: 0.5;*/
}

.blob-inner-container {
  border-radius: 99999px;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  min-width: 1000px;
  overflow: hidden;
  background-color: #fff;
  transform: scale(0.8);
}

.blob {
  position: absolute;
  width: 100vw;
  height: 100vh;
  inset: 0;
  margin: auto;
  background: conic-gradient(from 0deg, #08f, #f60, #bbffa1, #4c00ff, #ab2666, #09f);
  animation: spinBlob 8s linear infinite;
}

@keyframes spinBlob {
  0% {
    transform: rotate(0deg) scale(2);
  }
  100% {
    transform: rotate(1turn) scale(2);
  }
}
/* navigation */
/* #progress-bar-container {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background-color: transparent;
    z-index: 1;
}

#progress-bar {
    height: 100%;
    background-color: $color-primary;
    width: 0;
    transition: width 0.1s ease-out;
} */
/* images */
img {
  width: 100%;
  height: auto;
}

/* img grid */
.img-tabler, .img-header {
  display: grid;
  border-radius: 1rem;
}

.img-tabler--big {
  position: relative;
  width: calc(100% + 8rem);
  left: -8rem;
  height: auto;
}

/* img sections */
.image-container {
  position: relative;
  display: block;
}

.img-interface, .img-esprit, .img-connected {
  z-index: -100;
  position: relative;
}

.img-esprit {
  width: calc(100% + 4rem);
  left: -2rem;
  transform: scaleX(-1);
  margin-bottom: 2rem;
}

.img-connected {
  z-index: 100;
  width: 50%;
  left: 25%;
  margin: 2rem 0;
}

.icon-connected {
  width: 20%;
}

.icon-container {
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  align-self: center;
}

/* slider */
.slider-wrapper {
  position: relative;
  height: auto;
  transition: height 0.5s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider {
  display: flex;
}
.slider .slide {
  position: absolute;
  pointer-events: none;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  border-radius: 1rem;
  width: 100%;
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.slider .slide.active {
  pointer-events: auto;
  transform: translateX(0);
  opacity: 1;
}

/* section background */
.background {
  z-index: -1000;
  background-color: #fff;
  padding: 2rem;
}

/* grid */
.grid {
  display: grid;
  padding: 4rem 2rem 0 2rem;
  grid-column-gap: 0rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .grid {
    padding: 4rem 8rem 0 8rem;
  }
}
@media (min-width: 1024px) {
  .grid {
    padding: 8rem 16rem 0 16rem;
  }
}

.grid--header {
  place-items: center;
}
@media (min-width: 1024px) {
  .grid--header {
    padding: 4rem 8rem 0 8rem;
    place-items: start;
  }
}

/* placement grid */
.grid > * {
  grid-column: 1/-1;
}

.grid-start1 {
  grid-column-start: 1;
}

.grid-end1 {
  grid-column-end: 1;
}

.grid-start2 {
  grid-column-start: 2;
}

.grid-end2 {
  grid-column-end: 2;
}

.grid-start3 {
  grid-column-start: 3;
}

.grid-end3 {
  grid-column-end: 3;
}

.grid-start4 {
  grid-column-start: 4;
}

.grid-end4 {
  grid-column-end: 4;
}

.grid-start5 {
  grid-column-start: 5;
}

.grid-end5 {
  grid-column-end: 5;
}

/* flexbox grid */
.grid-flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .grid-flex {
    justify-content: start;
  }
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .flex-title {
    flex-direction: row;
    align-items: end;
    gap: 2rem;
  }
}

/* header grid */
.header-grid {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: grid;
  margin-bottom: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header-grid {
    gap: 2rem;
  }
}
.header-grid1 {
  grid-template-columns: 2fr 1fr;
}
@media (min-width: 1024px) {
  .header-grid1 {
    width: 90%;
    grid-template-columns: 8fr 6fr 5fr;
    place-items: end;
  }
}

.header-grid2 {
  grid-template-columns: 2fr 1fr;
  padding-left: 4rem;
}
@media (min-width: 1024px) {
  .header-grid2 {
    padding-left: 8rem;
    width: 100%;
    grid-template-columns: 12fr 9fr 9fr 9fr;
    place-items: start;
  }
}

.header-grid3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (min-width: 1024px) {
  .header-grid3 {
    width: 50%;
    grid-template-columns: 7fr 9fr;
    place-self: end;
    top: -5rem;
    position: relative;
  }
}

/* tabler grid */
.tabler-grid {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: grid;
  margin-bottom: 2rem;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .tabler-grid {
    display: none;
  }
}

.tabler-grid1 {
  grid-template-columns: 70% 1fr;
  place-items: end;
}

.tabler-grid2 {
  grid-template-columns: 1fr 70%;
}

.tabler-grid3 {
  grid-template-columns: 1fr 1fr;
}

.tabler-grid--large {
  display: none;
}
@media (min-width: 1024px) {
  .tabler-grid--large {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* devices */
.mobile {
  display: block;
}
@media (min-width: 1024px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1024px) {
  .desktop {
    display: block;
  }
}

/* typographies */
.title-header,
.title-big,
.title-medium,
.title-small,
.title-section,
.title-footer {
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}

.title-header {
  font-size: 64px;
  margin: 0;
}
@media (min-width: 768px) {
  .title-header {
    font-size: 137px;
  }
}
@media (min-width: 1280px) {
  .title-header {
    font-size: 116px;
  }
}

.title-big {
  font-size: 25px;
}
@media (min-width: 768px) {
  .title-big {
    font-size: 66px;
  }
}
@media (min-width: 1280px) {
  .title-big {
    font-size: 42px;
  }
}

.title-medium {
  font-size: 54px;
}
@media (min-width: 768px) {
  .title-medium {
    font-size: 61px;
  }
}
@media (min-width: 1280px) {
  .title-medium {
    font-size: 71px;
  }
}

.title-section {
  font-size: 23px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .title-section {
    font-size: 41px;
  }
}
@media (min-width: 1280px) {
  .title-section {
    font-size: 69px;
  }
}

.title-section--black {
  color: #000;
}

.title-small {
  font-size: 24px;
}
@media (min-width: 768px) {
  .title-small {
    font-size: 27px;
  }
}
@media (min-width: 1280px) {
  .title-small {
    font-size: 32px;
  }
}

.paragraph {
  z-index: 1000;
  position: relative;
  font-family: "Inter", sans-serif;
  color: #cccccc;
  line-height: 1.6;
  max-width: 75ch;
  margin-bottom: 1rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .paragraph {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .paragraph {
    font-size: 21px;
  }
}

.paragraph--black {
  color: #000;
}

.paragraph--float {
  position: absolute;
  top: 20%;
  left: 2rem;
  width: calc(100% - 4rem);
  color: #fff;
}
@media (min-width: 768px) {
  .paragraph--float {
    left: 8rem;
    width: calc(100% - 16rem);
  }
}
@media (min-width: 1024px) {
  .paragraph--float {
    left: 16rem;
    width: calc(100% - 32rem);
  }
}

.paragraph-icon {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.paragraph--footer {
  font-family: "Inter", sans-serif;
  color: #000;
  line-height: 1.6;
  max-width: 75ch;
  margin-bottom: 1rem;
  font-size: 11px;
  max-width: 100%;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .paragraph--footer {
    font-size: 13px;
  }
}
@media (min-width: 1280px) {
  .paragraph--footer {
    font-size: 15px;
  }
}

b {
  color: #fff;
}

/* Sélecteurs pour margin */
[data-m] {
  margin: attr(data-m rem);
}

[data-mt] {
  margin-top: attr(data-mt rem);
}

[data-mb] {
  margin-bottom: attr(data-mb rem);
}

[data-ml] {
  margin-left: attr(data-ml rem);
}

[data-mr] {
  margin-right: attr(data-mr rem);
}

[data-mx] {
  margin-left: attr(data-mx rem);
  margin-right: attr(data-mx rem);
}

[data-my] {
  margin-top: attr(data-my rem);
  margin-bottom: attr(data-my rem);
}

.btn {
  font-size: 16px;
  background-color: #026DC9;
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 4rem;
  font-family: "Inter", sans-serif;
  background-color: #026DC9;
  margin: 0 0 2rem 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .btn {
    font-size: 20px;
  }
}
.btn:hover {
  background-color: #fff;
  color: #026DC9;
}

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