@charset "UTF-8";
/*
2023 © My Meta Stories Website
Author: Antoine Pigeard
 */
/*
Theme
 */
/*
Basic website
 */
body {
  font-family: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

section {
  background-color: white;
}

ul {
  list-style-image: url(/assets/vector/bullet.svg);
}
ol {
  position: relative;
  padding-left: 70px;
}
ol li {
  position: relative;
  list-style: none;
  counter-increment: id;
}
ol li:before {
  content: counter(id);
  position: absolute;
  left: -72px;
  top: -8px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.75);
  font-size: 26px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

a.borderless {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.welcome {
  position: relative;
  height: auto;
  min-height: 85vh;
  background-color: transparent;
}
.welcome .dark_layer {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 50.87%, #000 100%);
}
.welcome .video_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: black;
}
.welcome .video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome header {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  align-items: center;
}
.welcome header img.unifrance {
  width: 300px;
}
.welcome header div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.welcome header div p.lang {
  color: white;
  font-size: 12px;
}
.welcome header div p.lang a {
  color: white;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.42);
}
.welcome .wrapper {
  display: flex;
  height: 100%;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding-bottom: 36px;
}
.welcome .wrapper img.logo {
  margin: 20px auto;
  width: 20%;
}
.welcome .wrapper > p {
  color: #FFF;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.42);
  font-size: 21px;
  font-weight: 600;
  width: 330px;
  line-height: 1.5;
}
.welcome .wrapper a.button {
  display: inline-block;
  border-radius: 5px;
  padding: 16px 64px;
  margin: 40px auto 10px;
  background-color: #fff;
  color: black;
  font-size: 15px;
  font-weight: 600;
}
.welcome .wrapper div.creator {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 10px 0;
}
.welcome .wrapper div.creator div {
  display: flex;
  gap: 5px;
}
.welcome .wrapper div.creator div p {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.welcome .wrapper div.creator div a img {
  width: 65px;
  margin: 2px 0;
}
.welcome .wrapper img.down {
  width: 50px;
  transform: rotate(270deg);
}

.presentation h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  padding: 80px 20px;
}
.presentation .wrapper {
  display: flex;
}
.presentation .wrapper .box {
  position: relative;
  background-color: #3F3A88;
  color: white;
  width: 60%;
  padding: 90px;
}
.presentation .wrapper .box :after {
  content: "";
  background-image: url(/assets/images/camera.png);
}
.presentation .wrapper .box a {
  position: absolute;
  bottom: -25px;
  right: 10%;
  display: flex;
  gap: 8px;
  border-radius: 26px;
  padding: 23px 26px;
  border: 6px solid white;
  background-color: #3F3A88;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  width: max-content;
}
.presentation .wrapper .box h2 {
  padding: 0 0 20px;
  font-size: 29px;
  font-weight: 700;
}
.presentation .wrapper .box li {
  line-height: 70px;
}
.presentation .wrapper .box p {
  line-height: 40px;
}
.presentation .wrapper .box li, .presentation .wrapper .box p {
  font-size: 25px;
}
.presentation .wrapper .player {
  margin: auto;
}

.experience {
  margin: 100px 0;
  background-image: url(/assets/images/hub4.png);
  background-size: cover;
  background-position: center;
}
.experience:before, .experience:after {
  content: "";
  display: block;
  height: 35px;
  width: 100%;
  background-image: url(/assets/images/pattern.png);
  background-repeat: repeat;
}
.experience div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 750px;
  line-height: 52px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 53.79%, #000 105.75%);
  color: white;
  padding-left: 10%;
}
.experience div h2 {
  margin: 0;
  width: 60%;
  font-size: 32px;
  font-weight: 700;
}
.experience div p {
  width: 60%;
  font-size: 28px;
  font-weight: 500;
}

.download_troubleshooting {
  margin: auto;
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #2196F3;
  gap: 7px;
}

.download {
  padding: 85px 85px 60px;
  position: relative;
}
.download .box {
  background-color: #12CBC4;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download .wrapper h1 {
  font-size: 55px;
  font-weight: 600;
}
.download .wrapper p {
  font-size: 20px;
  font-weight: 500;
  width: 70%;
  line-height: 40px;
}
.download .wrapper ol {
  display: flex;
  gap: 40px;
  flex-direction: column;
  margin: 70px 0;
}
.download .wrapper ol li {
  padding: 10px;
  font-size: 21px;
  font-weight: 600;
}
.download .download_buttons {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  gap: 6px;
  background-color: #fff;
  border-radius: 30px;
  padding: 6px;
  width: max-content;
}
@media screen and (max-width: 550px) {
  .download .download_buttons {
    display: none;
  }
}
.download .download_buttons a {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 23px 26px;
  background-color: #6083FF;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}
.download .download_buttons a img {
  width: 24px;
}
.download .download_buttons a:first-child {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}
.download .download_buttons a:last-child {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}
@media screen and (max-width: 550px) {
  .download .download_buttons a {
    border-radius: 26px !important;
  }
}

.reward {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.75);
  margin: 100px 0;
}
.reward .image {
  margin: auto;
}
.reward .wrapper {
  width: 60%;
}
.reward .wrapper .box {
  position: relative;
  background-color: #FFD166;
  padding: 55px 75px;
}
.reward .wrapper .box h2 {
  padding: 0 0 20px;
  font-size: 29px;
  font-weight: 700;
}
.reward .wrapper .box p {
  width: 60%;
  font-size: 28px;
  font-weight: 500;
}
.reward .wrapper .box p span {
  display: block;
  background-color: rgba(0, 0, 0, 0.15);
  margin: 12px;
  border-radius: 10px;
  width: max-content;
  padding: 2px 7px;
  font-size: 24px;
}
.reward .wrapper .box p.sub {
  margin-top: 60px;
}
.reward .wrapper .box ol {
  display: flex;
  gap: 40px;
  flex-direction: column;
  margin: 70px 0;
}
.reward .wrapper .box ol li {
  padding: 0 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.7;
}
.reward .wrapper .box a {
  position: absolute;
  bottom: -25px;
  left: 10%;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 26px;
  padding: 23px 26px;
  border: 6px solid white;
  background-color: #FFD166;
  font-size: 21px;
  font-weight: 600;
  width: max-content;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 65px;
  margin-top: 100px;
  background-color: black;
}
footer .wrapper .logos {
  display: flex;
  gap: 25px;
}
footer .wrapper p {
  color: #7A7A7A;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}
footer .wrapper p a {
  color: aliceblue;
  font-weight: 700;
}
footer .link .borderless img {
  transform: rotate(90deg);
}
footer .link a.url {
  color: white;
}

/*
 Responsive
 */
@media screen and (max-width: 800px) {
  .borderless {
    font-size: 10px !important;
  }
  .wrapper, section, .box, footer {
    flex-direction: column;
  }
  .box {
    width: 100% !important;
  }
  .welcome header > img {
    width: 150px !important;
  }
  .presentation .wrapper .box {
    padding: 30px;
  }
  .presentation .wrapper .box ul {
    padding-bottom: 30px;
  }
  .presentation .player {
    margin: 100px auto !important;
  }
  .presentation a {
    margin: auto;
    left: 0 !important;
    right: 0 !important;
  }
  .experience div p, .experience div h2 {
    width: 100%;
  }
  .download {
    padding: 0 0 50px !important;
  }
  .download .download_buttons {
    bottom: 20px;
  }
  .download .download_buttons a {
    padding: 10px 12px;
    font-size: 12px;
  }
  .download .box {
    flex-direction: column-reverse;
  }
  .download .box p {
    width: 100% !important;
  }
  .reward {
    justify-content: normal;
  }
  .reward .wrapper {
    width: 100% !important;
  }
  .reward .wrapper .box {
    padding: 30px;
  }
  .reward .wrapper .box p {
    width: 100%;
  }
  .reward .wrapper .box p span {
    font-size: 14px;
  }
  .reward a {
    margin: auto;
    left: 0 !important;
    right: 0;
  }
  footer .logos {
    flex-direction: column;
  }
}

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