@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap);

.light {
  --mainColor: #007782;
  --hoverColor: #239aa5;
  --backgroundColor: white;
  --lightColor1: rgb(182, 180, 172);
  --darkColor1: #040516;
  --lightColor2: rgb(233, 231, 218);
  --darkColor2: #15162e;
  --lightColor3: rgb(233, 231, 218);
  --transition: all 300ms ease-in-out;
}

.dark {
  --mainColor: #007782;
  --hoverColor: #239aa5;
  --backgroundColor: #040516;
  --lightColor1: #f3f3f3;
  --darkColor1: #fff;
  --lightColor2: #ccc;
  --darkColor2: #e7e3e3;
  --lightColor3: #15162e;
  --transition: all 300ms ease-in-out;
}

section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo img {
  width: 40px;
}

.logo h1 {
  color: var(--darkColor1);
  margin-left: 6px;
}

.container {
  display: flex;
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
}

header.container {
  position: relative;
  z-index: 70;
}

header {
  position: relative;
  z-index: 70;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--darkColor2);
  margin-left: 4.5rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.hamburger-menu {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 99;
  display: none;
}

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--darkColor2);
  position: relative;
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkColor2);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkColor1);
  text-transform: capitalize;
  line-height: 1;
}

.text {
  color: var(--darkColor2);
  font-size: 1.1rem;
  margin: 1.2rem 0 2rem;
  max-width: 600px;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.iphones {
  width: 105%;
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkColor2);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}

@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
  }
  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }
  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }
  .links ul {
    flex-direction: column;
  }
  .links .btn {
    background: none;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }
  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }
  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }
  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }
  .iphones {
    width: 100%;
    transform: none;
  }
  .big-title {
    font-size: 1.1rem;
  }
  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }
  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }
  .big-title {
    font-size: 0.9rem;
  }
  .text {
    margin: 1.1rem 0 1.5rem;
  }
  .showcase-area .btn {
    font-size: 0.8rem;
  }
}

.bandeau {
  background-color: var(--darkColor2);
  padding: 4rem 20rem;
  display: flex;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--lightColor3);
  justify-content: space-between;
  align-items: start;
}
.bandeau h1 {
  min-height: max-content;
}

.features-section {
  margin: 0;
  padding: 6rem 20rem;
  color: var(--darkColor1);
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.box {
  border: 2px solid transparent;
  min-height: 265px;
  max-width: 400px;
  border-radius: 16px;
  background-color: var(--darkColor2);
  margin: 10px 10px;
  justify-content: center;
  padding: 30px 30px;
  text-align: center;
  color: var(--lightColor3);
}

.box h1 {
  text-transform: capitalize;
  line-height: 2.2rem;
}

.box p {
  margin-top: 2rem;
}

.reseaux-right {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transform: translate3d(1450px, 0px, 0px);
  position: fixed;
}

.reseaux-right .fa-brands {
  margin: 5px;
}

.title-section {
  font-size: 3em;
  color: var(--darkColor1);
  text-transform: capitalize;
  line-height: 1;
}

.success-section {
  margin: 0;
  padding: 6rem 0rem 20rem 0rem;
  display: flex;
  justify-content: space-around;
  color: var(--darkColor1);
}

.success-section h1 {
  text-transform: capitalize;
  font-size: 3rem;
  width: 70%;
}

.success-section p {
  font-size: 1.4rem;
}
.features-section .title-section {
  padding: 10px 0px 0px 10px;
  margin: 0;
}

.features-section p {
  padding: 10px;
  margin: 0;
}

.success-section .text1 {
  width: 100%;
  z-index: 3;
  transform: translate3d(200px, 465px, 0);
  text-align: justify;
}

.success-section .text2 {
  width: 100%;
  z-index: 3;
  transform: translate3d(-200px, -75px, 0);
  text-align: justify;
}

.photos-success img {
  width: 600px;
}

.containerFluid {
  width: 70%;
  max-width: 900px;
  min-width: 700px;
  height: auto;
  margin: 10px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.containerFluid h2 {
  color: var(--darkColor2);
  position: relative;
  font-size: 3rem;
  text-align: center;
  text-transform: capitalize;
  margin: 50px auto 50px;
}

.accordion {
  width: 100%;
  padding: 15px 5px;
  border: 2px solid var(--darkColor2);
  cursor: pointer;
  border-radius: 16px;
  display: flex;
  margin: 10px 0;
  background-color: var(--darkColor2);
  align-items: center;
  max-height: 10%;
}

.accordion .icon {
  padding: 20px;
  width: 30px;
  height: 30px;
  background: url(https://raw.githubusercontent.com/Tusar78/responsive-accordion/main/images/toggle-bg.png)
    no-repeat 8px 7px var(--darkColor2);
  border-radius: 50%;
  transition: all 0.5s ease-in;
}

.accordion h5 {
  font-size: 1.8vw;
  margin: 0;
  padding: 3px 0 0 0;
  font-weight: normal;
  color: var(--lightColor3);
  text-transform: capitalize;
}

.active {
  background-color: var(--darkColor2);
  color: white;
}

.active .icon {
  background: url(https://raw.githubusercontent.com/Tusar78/responsive-accordion/main/images/toggle-bg.png)
    no-repeat 8px -25px var(--darkColor2);
}

.panel {
  padding: 0 15px;
  border-left: 1px solid var(--darkColor2);
  margin-left: 25px;
  font-size: 20px;
  text-align: justify;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease-in;
}

.panel p {
  color: var(--darkColor2);
}

.feedbacks-section {
  margin: 0;
  padding: 10rem 20rem;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.idd-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border: 2px solid transparent;
  min-height: 265px;
  max-width: 400px;
  border-radius: 16px;
  background-color: var(--darkColor2);
  margin: 10px 10px;
  padding: 30px 30px;
  text-align: center;
  color: var(--lightColor3);
}

.photo-profil {
  width: 30px;
  margin-right: 5px;
  border-radius: 50%;
}

.text-card {
  padding: 20px 0;
}

.feedbacks-section .titles {
  margin-bottom: 40px;
}

.text-all-card {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.quiz-title {
  text-align: center;
  font-size: 2rem;
}
.quiz-score {
  text-align: center;
  font-size: 1.2rem;
  border: 5px solid var(--grey-color);
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--light-purple-color);
}
.quiz-question {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--lightColor3);
}
.quiz-question .category {
  font-size: 0.9rem;
  font-weight: 500;
  background-color: var(--light-purple-color);
  color: var(--lightColor3);
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  margin-top: 0.5rem;
  display: inline-block;
}
.quiz-options {
  list-style-type: none;
  margin: 1rem 0;
}
.quiz-options li {
  border-radius: 16px;
  font-weight: 600;
  margin: 0.7rem 0;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  border: 3px solid var(--lightColor3);
  background-color: var(--lightColor3);
  color: var(--darkColor2);
  transition: var(--transition);
}
.quiz-options li:hover {
  background-color: var(--darkColor2);
  color: var(--lightColor2);
  border-color: var(--lightColor3);
}
.quiz-options li:active {
  transform: scale(0.97);
}
/* js related */
.selected {
  background-color: var(--lightColor3) !important;
  color: var(--darkColor2) !important;
  border-color: var(--lightColor2) !important;
  box-shadow: 0 4px 0 0 var(--lightColor1) !important;
}
.quiz-foot button {
  border: none;
  border-radius: 16px;
  outline: 0;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 auto 0 auto;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  background-color: var(--darkColor2);
  color: var(--lightColor3);
  letter-spacing: 2px;
  transition: var(--transition);
  margin-top: 5px;
}
.quiz-foot button:hover {
  background-color: var(--lightColor3);
  color: var(--darkColor2);
}
.quiz-foot button:active {
  transform: scale(0.95);
}
#play-again {
  display: none;
}

#next-question {
  display: none;
}

#result {
  padding: 0.7rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
}
#result i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: var(--lightColor3);
  color: var(--lightColor3);
}

@media (max-width: 678px) {
  .quiz-title {
    font-size: 1.6rem;
  }
  .wrapper {
    margin: 3rem 0;
    width: 90%;
    height: 90%;
    padding: 1.5rem 1rem 3rem 1rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .quiz-foot button {
    font-size: 1rem;
  }
}

.quiz-container {
  margin: 0;
  padding: 2rem 20rem;
  background-color: var(--darkColor2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-container h1 {
  text-transform: capitalize;
  font-size: 3rem;
  text-align: center;
}

.quiz-container p {
  text-align: center;
}

.quiz-head {
  color: var(--lightColor3);
}

.footer {
  background-color: var(--darkColor2);
  padding: 12rem 20rem 1rem 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.text-footer p {
  margin-top: 10px;
  color: var(--lightColor3);
}

.fa-square-instagram {
  cursor: pointer;
  background-color: var(--lightColor3);
  color: var(--darkColor2);
  border-radius: 16px;
  border: var(--lightColor3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0px 5px;
}

.fa-tiktok {
  cursor: pointer;
  background-color: var(--lightColor3);
  color: var(--darkColor2);
  border-radius: 16px;
  border: var(--lightColor3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0px 5px;
}

.fa-twitter {
  cursor: pointer;
  background-color: var(--lightColor3);
  color: var(--darkColor2);
  border-radius: 16px;
  border: var(--lightColor3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0px 5px;
}

.fa-discord {
  cursor: pointer;
  background-color: var(--lightColor3);
  color: var(--darkColor2);
  border-radius: 16px;
  border: var(--lightColor3);
  margin: 0px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.correct-answer {
  color: var(--lightColor3);
}

.incorrect-answer {
  color: var(--lightColor3);
}

.select-option {
  color: var(--lightColor3);
}

/* newletter footer */

.content {
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--lightColor3);
}

.content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--lightColor3);
}

.content form {
  width: 500px;
  height: 55px;
  margin-top: 10px;
  background-color: var(--lightColor2);
  border-radius: 16px;
  display: flex;
}

.content form input {
  flex: 1;
  background-color: transparent;
  border: none;
  outline: none;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--darkColor2);
}

.content form button {
  width: 100px;
  border-radius: 16px;
  font-size: 25px;
  border: none;
  outline: none;
  background-color: var(--darkColor2);
  color: var(--lightColor3);
  margin: 4px;
  cursor: pointer;
  transition: 0.5s;
}

.content form button:hover {
  background-color: var(--lightColor1);
}

.enter-email {
  color: var(--darkColor2);
}

.span-ty {
  color: var(--lightColor3);
  margin-top: 5px;
}

@media screen and (max-width: 870px) {
  .bandeau {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .text1 {
    margin: 0;
    padding: 40px;
  }
  .text2 {
    margin: 0;
    padding: 40px;
  }
  .text3 {
    margin: 0;
    padding: 40px;
  }
  .features-section {
    margin: 0;
    padding: 0;
  }
  .title-section {
    font-size: 10vw;
  }
  .features-section p {
    font-size: 4vw;
  }
  .features-section {
    padding: 20px 10px;
  }
  .success-section {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .success-section h1 {
    text-transform: capitalize;
    font-size: 8vw;
    width: 100%;
  }
  
  .success-section p {
    font-size: 5vw;
  }
  
  .success-section .text1 {
    width: 100%;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    text-align: center;
  }
  
  .success-section .text2 {
    width: 100%;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    text-align: center;
  }
  
  .photos-success img {
    width: 300px;
  }
  .containerFluid {
    width: 100%;
    max-width: 900px;
    min-width: 350px;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .containerFluid h2 {
    color: var(--darkColor2);
    font-size: 10vw;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
  }
  .feedbacks-section {
    margin: 0;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .idd-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 2px solid transparent;
    min-height: 265px;
    max-width: 600px;
    border-radius: 16px;
    background-color: var(--darkColor2);
    margin: 10px 10px;
    padding: 30px 30px;
    text-align: center;
    color: var(--lightColor3);
  }
  
  .photo-profil {
    width: 30px;
    margin-right: 5px;
    border-radius: 50%;
  }
  
  .text-card {
    padding: 20px 0;
  }
  
  .feedbacks-section .titles {
    margin-bottom: 30px;
    margin-top: 50px;
  }
  
  .text-all-card {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .quiz-container {
    margin: 0;
    padding: 20px;
    background-color: var(--darkColor2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .quiz-container h1 {
    text-transform: capitalize;
    font-size: 3rem;
    text-align: center;
  }
  
  .quiz-container p {
    text-align: center;
  }
  
  .quiz-head {
    color: var(--lightColor3);
  }
  
  .footer {
    background-color: var(--darkColor2);
    padding: 12rem 20rem 1rem 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .text-footer p {
    margin-top: 10px;
    color: var(--lightColor3);
  }
  
  .fa-square-instagram {
    cursor: pointer;
    background-color: var(--lightColor3);
    color: var(--darkColor2);
    border-radius: 16px;
    border: var(--lightColor3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0px 5px;
  }
  
  .fa-tiktok {
    cursor: pointer;
    background-color: var(--lightColor3);
    color: var(--darkColor2);
    border-radius: 16px;
    border: var(--lightColor3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0px 5px;
  }
  
  .fa-twitter {
    cursor: pointer;
    background-color: var(--lightColor3);
    color: var(--darkColor2);
    border-radius: 16px;
    border: var(--lightColor3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0px 5px;
  }
  
  .fa-discord {
    cursor: pointer;
    background-color: var(--lightColor3);
    color: var(--darkColor2);
    border-radius: 16px;
    border: var(--lightColor3);
    margin: 0px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  .reseaux-footer {
    flex-direction: row;
    display: flex;
  }
  .footer {
    background-color: var(--darkColor2);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .content {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .content h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--lightColor3);
  }
  
  .content p {
    font-size: 15px;
    font-weight: 300;
    color: var(--lightColor3);
  }
  
  .content form {
    width: 350px;
    height: 55px;
    margin-top: 10px;
    background-color: var(--lightColor2);
    border-radius: 16px;
    display: flex;
    margin: 20px;
  }
  
  .content form input {
    flex: 1;
    background-color: transparent;
    border: none;
    outline: none;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--darkColor2);
  }
  
  .content form button {
    width: 100px;
    border-radius: 16px;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: var(--darkColor2);
    color: var(--lightColor3);
    margin: 4px;
    cursor: pointer;
    transition: 0.5s;
  }
  
  .content form button:hover {
    background-color: var(--lightColor1);
  }
  
  .enter-email {
    color: var(--darkColor2);
  }
  
  .span-ty {
    color: var(--lightColor3);
    margin-top: 5px;
  }
  .accordion h5 {
    font-size: 4vw;
  }
  .title-fb {
    font-size: 7.5vw;
  }
  .features-section {
    margin-top: 50px;
  }
}
