@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

@font-face {
  font-family: LeonCondBlack;
  src: url(fonts/LeonCond-Black.otf);
}
@font-face {
  font-family: CircularStdLight;
  src: url(fonts/CircularStd-Light.otf);
}
@font-face {
  font-family: CircularStdMedium;
  src: url(fonts/CircularStd-Medium.otf);
}
@font-face {
  font-family: CircularStdBlack;
  src: url(fonts/CircularStd-Black.otf);
}

:root {
  --dark-blue: #1B0271;
  --medium-blue: #10005A;
  --light-grey: #76849A;
  --purple: #A325C0;
  --green: #00D49B;
  --blue: #00A7FF;
}


* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}

.background {
  position: absolute;
  background: url(img/background.svg) no-repeat;
  width: 425px;
  height: 740px;
  z-index: -100;
}

.background.top-right {
  top: 0px;
  right: 0px;
  background-position-y: -59px;
}

.background.middle-left {
  top: 920px;
  left: 0px;
  transform: rotate(180deg);
}

.background.middle-right {
  top: 1450px;
  right: 0px;
}

.background.bottom-left {
  top: 2200px;
  left: 0px;
  transform: rotate(180deg);
}

@media screen and (max-width: 720px) {
  .background {
    width: 212px;
    background-size: 370px;
  }
  .background.middle-left {
    top: 840px;
  }
  .background.middle-right {
    top: 1600px;
  }
  .background.bottom-left {
    top: 2500px;
  }
}

.main {
  margin-top: 57px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

@media only screen and (max-width: calc(1440px + 96px)) {
  .main, .footer {
    margin-left: 48px;
    margin-right: 48px;
  }
}

@media only screen and (max-width: calc(800px + 48px)) {
  .main {
    margin-left: 16px;
    margin-right: 16px;
    max-width: 100vw;
  }
  .footer {
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
  }
}

@media only screen and (max-width: 320px) {
  .main {
    margin-left: 8px;
    margin-right: 8px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  max-width: 100%;
}

a:active {
  text-decoration-color: white;
}

.button {
  cursor: pointer;
  max-width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 12px 28px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

a.button {
  text-decoration: none;
}


.button span {
  color: white;
  font-weight: 900;
  font-size: 17px;
  font-family: CircularStdMedium;
}

.button img {
  height: 24px;
}

.button-blue {
  background: linear-gradient(90deg, rgba(16, 0, 90, 1) 0%, rgba(0, 0, 170, 1) 100%);
}
.button-blue:hover {
  background: linear-gradient(90deg, #070027 0%, #000077 100%);
}

.button-invert-purple {
  background: white;
}
.button-invert-purple:hover {
  background: linear-gradient(90deg, #E6E6E6 0%, #FFFFFF 100%);
}

.button-invert-purple span {
  color: var(--purple);
}

.intro {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.intro .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
  /* background-color: white;
  border-radius: 20px; */
}

.intro .left h1 {
  font-family: LeonCondBlack;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--dark-blue);
  line-height: 1.1em;
}

.intro .left p {
  font-family: CircularStdLight;
  font-size: 18px;
  color: var(--light-grey);
  line-height: 1.5em;
}

.intro .right {
  flex: 868px 0;
  margin-right: 56px;
}

@media only screen and (max-width: 1280px) {
  .intro .right {
    margin-right: 0px;
  }
}

.intro .right img {
  max-width: 100%;
}

.intro .right #player {
  max-width: 100%;
  border-radius: 20px;
}

.color-panels {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.color-panel {
  display: flex;
  text-align: center;
  align-items: center;
  font-family: CircularStdMedium;
  font-size: 20px;
  color: white;
  width: 411px;
  height: 209px;
  border-radius: 20px;
  box-shadow: 1px 4px 10.1px 1px #00000026;
  padding: 48px;
  line-height: 1.5em;
}

.color-panel.purple {
  background-color: var(--purple);
}

.color-panel.green {
  margin-top: 50px;
  background-color: var(--green);
}

@media only screen and (max-width: 1447px) {
  .color-panel.green {
    margin-top: 0px;
  }
}

.color-panel.blue {
  background-color: var(--blue);
}

.activation {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  border-radius: 39px;
  background: white;
  box-shadow: 1px 4px 10.1px 1px #00000026;
  padding: 60px;
}

@media only screen and (max-width: 1024px) {
  .activation {
    flex-direction: column;
    align-items: center;
    padding: 60px 24px;

    .activation-img {
      width: 210px;
    }

    .activation-img.spacer {
      display: none;
    }

    .activation-text {
      text-align: center;
    }
  }

  .experience {
    flex-wrap: wrap;
    justify-content: center !important;
    h2 {
      text-align: center !important;
    }
    ul {
      text-align: left !important;
      margin-left: 24px;
      margin-right: 24px;
    }
  }
}

.activation-img {
  flex: 0 210px;
  width: 210px;
}

.activation-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 39px;
  gap: 20px;
}

.activation h2 {
  font-family: LeonCondBlack;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.activation p {
  font-family: CircularStdMedium;
  font-size: 21px;
  color: var(--dark-blue);
  max-width: 528px;
  text-align: center;
  line-height: 1.5em;
}

.activation p.note {
  font-family: CircularStdLight;
  font-size: 15px;
}
.activation p.note a {
  color: var(--dark-blue);
}

.contenus {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.contenus h2 {
  font-family: LeonCondBlack;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--dark-blue);
  text-align: center;
}

.white-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 0 30px;
  max-width: 100%;
}

.white-panel {
  width: 358px;
  height: 257px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 1px 4px 10.1px 1px #00000026;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 20px;
}

.white-panel img {
  width: 128px;
  max-width: 100%;
}

.white-panel h3 {
  font-family: CircularStdMedium;
  font-size: 24px;
  color: var(--medium-blue);
  text-align: center;
}

.white-panel .line {
  width: 45px;
  height: 4px;
  background-color: var(--purple);
  border-radius: 25px;
}

.experience {
  margin-top: 50px;
  display: flex;
  gap: 50px;
  align-items: center;  
  justify-content: space-between;
}

.experience img {
  min-width: 45%;
}

.experience .detail {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.experience .detail h2 {
  font-family: LeonCondBlack;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--dark-blue);
  line-height: 1.1em;
  text-align: right;
}
.experience .detail ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: CircularStdLight;
  font-size: 18px;
  color: var(--light-grey);
  line-height: 1.25em;
  text-align: right;
  list-style: disc inside;
}

.boite-a-outils {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: var(--purple);
  border-radius: 39px;
  align-items: center;
  padding: 50px;
  margin-top: 50px;
}

.boite-a-outils h2 {
  font-family: LeonCondBlack;
  font-size: 40px;
  text-transform: uppercase;
  color: white;
  line-height: 1.1em;
  text-align: center;
}

.boite-a-outils .buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 24px;
}

@media screen and (max-width: 720px) {
  .boite-a-outils .buttons {
    flex-direction: column;
  }  
}

.footer {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  background: linear-gradient(90deg, rgba(16, 0, 90, 1) 0%, rgba(0, 0, 170, 1) 100%);
  display: flex;
  justify-content: space-between;
  padding: 57px;
  padding-bottom: 100px;
  flex-wrap: wrap;
  gap: 50px;
}

.footer .logo {
  flex-grow: 2;
}

.footer .logo .inner-logo {
  max-width: 232px;
  display: flex;
  flex-direction: column;
  gap:16px;
}

.footer .logo .inner-logo img {
  max-width: 100%;
}

.footer .logo .inner-logo p {
  font-family: CircularStdLight;
  font-size: 12px;
  color: white;
  line-height: 1.25em;
}

.footer .decouvrir, .footer .qui-sommes-nous {
  display: flex;
  width: 232px;
  flex-direction: column;
  gap: 16px;
}

.footer .decouvrir h3, .footer .qui-sommes-nous h3 {
  font-family: LeonCondBlack;
  font-size: 27px;
  text-transform: uppercase;
  color: white;
  margin: 0;
  padding-bottom: 16px;
}

.footer .decouvrir p, .footer .qui-sommes-nous p {
  font-family: CircularStdMedium;
  font-size: 18px;
  color: white;
  margin: 0;
}

.footer {
  a {
    color: white;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
}

.footer .qui-sommes-nous .social {
  margin-top: 16px;
  display: flex;
  gap: 16px;

  a {
    border-radius: 20px;
  }
  a:hover {
    background-color: #02006A;
  }
}
