@charset "UTF-8";
/* IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Poppins: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&display=swap");
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins";
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

.container {
  width: 100vw;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.show {
  display: block;
}

section {
  width: 100vw;
}

span {
  color: #0096c8;
}

a {
  text-decoration: none;
  color: black;
}

img,
video {
  height: auto;
  max-width: 100%;
}

button,
input,
select {
  margin: 0;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

iframe {
  border: 0;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

/*//////////*/
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #0096c8;
  position: relative;
}
.header .container .logo-header {
  cursor: pointer;
}
.header .container .logo-header img {
  width: 100px;
  filter: brightness(0.7);
  transition: 0.3s ease;
}
.header .container .logo-header img:hover {
  transform: scale(1.05);
}
.header .container #toggle {
  display: none;
}
.header .container #toggle:checked ~ .navbar-header {
  right: -13%;
  opacity: 1;
}
.header .container #toggle:checked ~ .hamburger span {
  transform: rotate(45deg);
}
.header .container #toggle:checked ~ .hamburger span:before {
  transform: rotate(90deg);
  top: 0;
}
.header .container #toggle:checked ~ .hamburger span:after {
  display: none;
}
.header .container .hamburger {
  display: inline-flex;
  height: 30px;
  width: 30px;
  z-index: 2;
  place-items: center;
  z-index: 2;
  cursor: pointer;
}
.header .container .hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: black;
  position: relative;
}
.header .container .hamburger span:after, .header .container .hamburger span:before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background-color: black;
}
.header .container .hamburger span:before {
  top: -7px;
}
.header .container .hamburger span:after {
  bottom: -7px;
}
.header .container .navbar-header {
  width: 30vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 200px;
  right: -75%;
  translate: -50% -50%;
  opacity: 1;
  transition: 0.3s ease;
  border-radius: 20px;
  border: 1px solid #0096c8;
  box-shadow: 0 0 25px #0096c8;
}
.header .container .navbar-header a {
  text-align: center;
  color: #0096c8;
  font-weight: 600;
  font-size: clamp(1rem, 4vw, 30px);
  cursor: pointer;
}

/* ---M E D I A   T A B L E T--- */
@media (min-width: 768px) {
  .header .container {
    display: flex;
    position: relative;
  }
  .header .container #toggle,
  .header .container .hamburger {
    display: none;
  }
  .header .container .navbar-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
    top: auto;
    right: auto;
    padding: 0;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background-color: transparent;
    translate: 0%;
  }
  .header .container .navbar-header a {
    color: #0096c8;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    text-align: right;
    font-size: 1.2rem;
    transition: 0.3s ease;
  }
  .header .container .navbar-header a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px white;
  }
}
/* ---M E D I A   D E S K T O P--- */
/* ---M E D I A   D E S K T O P   W I D E--- */
.first-section {
  padding: 50px 0;
}
.first-section .container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.first-section .container .text-content {
  font-size: 1.5rem;
  text-align: center;
}
.first-section .container .text-content p {
  margin-bottom: 30px;
}
.first-section .container .text-content .demoBtn {
  background-color: #0096c8;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.first-section .container .text-content .demoBtn:hover {
  box-shadow: 0 0 25px #0096c8;
  font-size: 1.4rem;
}
/* ---M E D I A   T A B L E T--- */
@media (min-width: 768px) {
  .first-section .container {
    flex-direction: row;
  }
  .first-section .container .text-content {
    font-size: 1.3rem;
    text-align: center;
  }
  .first-section .container .text-content p {
    margin-bottom: 30px;
  }
  .first-section .container .text-content .demoBtn {
    background-color: #0096c8;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
    transform-origin: center;
  }
  .first-section .container .text-content .demoBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #0096c8;
  }
}
/* ---M E D I A   D E S K T O P--- */
/* ---M E D I A   D E S K T O P   W I D E--- */
.second-section {
  padding: 50px 0;
  gap: 50px;
}
.second-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.second-section .container .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 30px;
  border: 2px solid #0096c8;
  padding: 32px 24px;
  max-width: 300px;
  position: relative;
}
.second-section .container .card h1 {
  font-size: 18px;
  color: #043e52;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}
.second-section .container .card .accroche {
  font-size: 14px;
  margin-bottom: 10px;
}
.second-section .container .card .prix {
  display: flex;
  align-items: center;
  margin-bottom: -10px;
}
.second-section .container .card .prix h2 {
  font-size: 40px;
  color: #043e52;
  font-weight: 600;
}
.second-section .container .card .prix h3 {
  font-size: 18px;
  color: black;
  font-weight: 400;
  padding-top: 10px;
  margin-left: 5px;
}
.second-section .container .card .pub {
  font-size: 14px;
  color: #0e84b2;
  font-weight: 200;
  margin-bottom: 20px;
}
.second-section .container .card .prixBtn {
  align-self: center;
  text-align: center;
  background-color: #043e52;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  transform-origin: center;
}
.second-section .container .card .prixBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(4, 62, 82, 0.5);
}
.second-section .container .card .pub-rappel {
  font-size: 14px;
  color: #0e84b2;
  font-weight: 200;
  margin-bottom: 20px;
}
.second-section .container .card .line {
  background-color: #043e52;
  width: 100%;
  height: 2px;
  opacity: 0.2;
  margin-bottom: 20px;
}
.second-section .container .card .options-hide {
  font-size: 18px;
  color: #043e52;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}
.second-section .container .card .options ul {
  gap: 10px;
}
.second-section .container .card .options ul li {
  position: relative;
  font-size: 14px;
  color: #043e52;
  padding-left: 24px;
  margin-bottom: 10px;
}
.second-section .container .card .options ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #0096c8;
}
.second-section .container .card .options ul li:last-child {
  margin-bottom: 0;
}

/* Détails deuxième card */
.second-card {
  margin-top: 50px;
  position: relative;
}
.second-card .second-options-hide {
  font-size: 18px;
  color: #043e52;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}
.second-card .second-options ul {
  gap: 10px;
}
.second-card .second-options ul li {
  position: relative;
  font-size: 14px;
  color: #043e52;
  padding-left: 24px;
  margin-bottom: 10px;
}
.second-card .second-options ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #0096c8;
}
.second-card .second-options ul li:last-child {
  margin-bottom: 0;
}

/* Head card */
.first-card::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 50px;
  background-color: #0096c8;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px 30px 0 0;
  border: 2px solid #0096c8;
}
.first-card::after {
  position: absolute;
  content: "Notre première offre";
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  font-size: 18px;
  width: 300px;
  height: 50px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.second-card::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 50px;
  background-color: #0096c8;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px 30px 0 0;
  border: 2px solid #0096c8;
}
.second-card::after {
  position: absolute;
  content: "Notre deuxième offre";
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  font-size: 18px;
  width: 300px;
  height: 50px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---M E D I A   O P T I O N S--- */
@media screen and (max-width: 649px) {
  .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .options,
  .second-options {
    display: none;
  }
  .options-hide,
  .second-options-hide {
    display: block;
  }
  .options.show,
  .second-options.show {
    display: block;
  }
}
@media screen and (min-width: 650px) {
  .container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .options-hide,
  .second-options-hide {
    display: none;
  }
  .second-card {
    margin-top: 0px;
  }
}
/* ---M E D I A   T A B L E T--- */
/* ---M E D I A   D E S K T O P--- */
/* ---M E D I A   D E S K T O P   W I D E--- */
.footer {
  color: white;
}
.footer .container {
  background-color: #0096c8;
  position: relative;
  padding-top: 20px;
}
.footer .container .footer-link {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer .container .footer-link .link-foot h1 {
  text-transform: uppercase;
  font-size: 16px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.footer .container .footer-link .link-foot h1 i {
  display: block;
}
.footer .container .footer-link .link-foot p {
  display: none;
  font-weight: 200;
  font-size: 13px;
}
.footer .container .footer-link .link-foot p.show {
  display: block;
}
.footer .container .line-footer {
  display: flex;
  margin: 20px 0;
  align-items: center;
  justify-content: space-between;
}
.footer .container .line-footer .paiements {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .container .line-footer .paiements img {
  height: 40px;
  border-radius: 10px;
}
.footer .container .line-footer .politiques {
  width: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 20px;
  align-items: flex-end;
  padding-right: 20px;
}
.footer .container .footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .container .footer-base .logo-footer img {
  width: 100px;
  filter: brightness(0.7);
}
.footer .container .footer-base .navbar-footer {
  display: none;
}
.footer .container .footer-base .mentions {
  color: #ffffff;
  font-size: 10px;
}

/* ---M E D I A   T A B L E T--- */
@media (min-width: 768px) {
  .footer .container {
    padding-top: 50px;
  }
  .footer .container .footer-link {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .footer .container .footer-link .link-foot h1 {
    text-transform: uppercase;
    font-size: 16px;
    color: white;
    font-weight: 600;
  }
  .footer .container .footer-link .link-foot h1 i {
    display: none;
  }
  .footer .container .footer-link .link-foot p {
    display: block;
    font-weight: 200;
    font-size: 13px;
  }
  .footer .container .line-footer {
    display: flex;
    flex-direction: row;
    margin: 30px 0;
    align-items: center;
    justify-content: space-between;
  }
  .footer .container .line-footer .paiements {
    width: 250px;
    flex-direction: row;
  }
  .footer .container .line-footer .paiements img {
    height: 40px;
    border-radius: 10px;
  }
  .footer .container .line-footer .politiques {
    width: calc(100% - 350px);
    display: flex;
    flex-direction: row;
    font-size: 13px;
    gap: 20px;
    justify-content: space-around;
  }
  .footer .container .footer-base {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .container .footer-base .navbar-footer {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
  }
  .footer .container .footer-base .navbar-footer a {
    color: #ffffff;
    text-align: center;
    color: #0096c8;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s ease;
  }
  .footer .container .footer-base .navbar-footer a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px white;
  }
  .footer .container .footer-base .mentions {
    justify-self: flex-end;
    text-align: right;
    font-size: 13px;
  }
}
/* ---M E D I A   D E S K T O P--- */
/* ---M E D I A   D E S K T O P   W I D E--- */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f1f8ff;
  color: #333;
}

h1 {
  color: #0e84b2;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #0066cc;
}

button {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #003366;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 40px 0;
}

form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

form div {
  margin-bottom: 15px;
}

form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form input[type=password] {
  font-family: "Arial", sans-serif;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #0066cc;
  font-size: 1.1rem;
  border-radius: 5px;
}

#backToHome {
  background-color: #ff7f50;
  margin-top: 20px;
  font-size: 1rem;
}
#backToHome:hover {
  background-color: #ff5a1d;
}

p {
  text-align: center;
  margin-top: 20px;
}

p a {
  color: #0066cc;
}
p a:hover {
  text-decoration: underline;
}

input:invalid {
  border: 2px solid #ff4d4d;
}

input:valid {
  border: 2px solid #4caf50;
}/*# sourceMappingURL=style.css.map */


