@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat&family=Ubuntu:wght@400;500;700&family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Montserrat", "sans-serif";
}

html {
  scroll-behavior: smooth;
}

h2 {
  font-size: 18px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.jadwork-grey {
  color: #2A3F54;
}

.max-width {
  padding: 0 2rem;
}

.stabilo-effect-hero {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.stabilo-effect-hero::before, .stabilo-effect-hero::after {
  content: "";
  background: #13ffeb;
}
.stabilo-effect-hero::before {
  left: 0px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 1.4em;
  transform: rotate(1deg);
  opacity: 0.2;
  border-radius: 0.25em;
}
.stabilo-effect-hero::after {
  left: 2px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 1.3em;
  transform: rotate(-0.8deg);
  opacity: 0.2;
  border-radius: 0.25em;
}

.stabilo-effect {
  position: relative;
  overflow: hidden;
}
.stabilo-effect::before, .stabilo-effect::after {
  content: "";
  background: #ffa807;
}
.stabilo-effect::before {
  left: 0px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 1.4em;
  transform: rotate(1deg);
  opacity: 0.08;
  border-radius: 0.25em;
}
.stabilo-effect::after {
  left: 2px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 1.3em;
  transform: rotate(-0.8deg);
  opacity: 0.08;
  border-radius: 0.25em;
}

.owl-carousel .owl-item img {
  border-radius: 5px;
}

.tarif-comparison {
  background: #FFFFFF;
}
.tarif-comparison .max-width .big-title {
  text-align: center;
  margin-bottom: 20px;
}
.tarif-comparison .max-width .container {
  max-width: 1000px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.tarif-comparison .max-width .container table {
  width: 100%;
  border-collapse: collapse;
}
.tarif-comparison .max-width .container table th, .tarif-comparison .max-width .container table td {
  padding: 15px 20px;
  text-align: left;
}
.tarif-comparison .max-width .container table th {
  background-color: #E9680C;
  color: #fff;
}
.tarif-comparison .max-width .container table tr:hover {
  background-color: #ddd;
}
.tarif-comparison .max-width .container table tfoot {
  background: #f2f2f2;
}
.tarif-comparison .max-width .container table tfoot td {
  font-weight: bold;
  padding: 20px; /* Increased padding for the price section */
}
.tarif-comparison .max-width .container table .subsection {
  font-weight: bold;
  text-transform: uppercase;
  background-color: #f2f2f2;
}
@media screen and (max-width: 300px) {
  .tarif-comparison .max-width .container .container {
    margin: 20px auto;
  }
  .tarif-comparison .max-width .container table th, .tarif-comparison .max-width .container table td {
    padding: 10px;
  }
  .tarif-comparison .max-width .container table tfoot td {
    padding: 15px;
  }
}
.tarif-comparison .max-width .check {
  color: green;
  font-size: 25px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}
.tarif-comparison .max-width .cross {
  color: red;
  font-size: 25px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.check {
  color: green;
}

.cross {
  color: red;
}

.navbar {
  position: fixed;
  width: 100%;
  font-family: "Montserrat";
  padding: 10px 0;
  transition: all 500ms ease;
  z-index: 999;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
}
.navbar .max-width .left {
  border-bottom-right-radius: 8px;
}
.navbar .max-width .left .menu {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: -100%; /* On cache le menu à gauche tant que les bars ne sont pas cliqués */
  top: 0;
  text-align: center;
  padding-top: 100px;
  transition: all 500ms ease;
  background: #FEF4ED;
}
.navbar .max-width .left .menu li {
  display: block;
}
.navbar .max-width .left .menu li a {
  display: inline-block;
  margin: 10px 0;
  font-size: 25px;
  color: black;
}
.navbar .max-width .left .menu .contact-btn {
  display: none;
}
.navbar .max-width .left .menu.active {
  left: 0;
}
.navbar .max-width .right {
  display: flex;
  align-items: center;
  /* Hamburger */
}
.navbar .max-width .right .social-header {
  display: flex;
  margin-right: 2rem;
  align-items: center;
}
.navbar .max-width .right .social-header .contact-btn {
  margin-left: 30px;
}
.navbar .max-width .right .social-header .contact-btn a {
  font-size: 15px;
  color: black;
  font-weight: 600;
}
.navbar .max-width .right .social-header .tarif {
  display: none;
}
.navbar .max-width .right .menu-btn {
  display: block;
  z-index: 999;
  color: black;
  margin-left: 15px;
}

.menu-btn i.active::before {
  content: "\f00d";
  color: black;
}

/* Navbar sticky */
.navbar.sticky {
  background: #fff;
  border-bottom: solid 1px rgb(201, 201, 201);
  padding: 3px 0;
}
.navbar.sticky .max-width .right .social-header .contact-btn {
  padding: 0;
}

/* TOUTES LES SECTIONS */
section {
  padding: 60px 0;
}

.contact .right h2 {
  text-align: center;
}

.big-title {
  font-size: 30px;
  margin-bottom: 20px;
}

.bold {
  font-weight: 600;
}

.paragraph {
  margin-bottom: 15px;
  font-size: 15px;
}

.text {
  text-align: left;
  font-size: 14px;
}

.mail {
  text-decoration: underline;
}

.banner {
  position: sticky;
  top: 0px;
  background: #AEEFC0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .max-width .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .max-width .banner-content .banner-text {
  font-size: 13px;
  margin-right: 15px;
}
.banner .max-width .banner-content .banner-close {
  background: none;
  border: none;
  cursor: pointer;
}
.banner .max-width .banner-content .banner-close span {
  align-items: center;
}

.hero {
  min-height: 800px;
  text-align: center;
  padding: 10em 3em 0em 3em;
  height: 90vh;
  width: 100%;
  background: url("./../images/banniere_jadwork.svg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero .max-width {
  padding: 0;
}
.hero .max-width .content .left h1 {
  font-family: "Lato";
  font-size: 30px;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: black;
  font-weight: 700;
  margin-bottom: 4rem;
  text-transform: uppercase;
}
.hero .max-width .content .left h1 span {
  font-family: "Lato";
  font-size: 35px;
}
.hero .max-width .content .left .meet {
  display: none;
}
.hero .max-width .content .right {
  margin-top: 1em;
}
.hero .max-width .content .right video {
  width: 101%;
  height: auto;
  border: solid grey 1px;
  cursor: pointer;
  border-radius: 5px;
}

.confiance {
  background: #FFFFFF;
  padding-top: 100px;
}
.confiance .max-width .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.question {
  position: relative;
  background-color: white;
}
.question .max-width .question-content li {
  list-style: disc;
  text-align: left;
}
.question .max-width .question-content p {
  text-align: left;
}
.question .max-width .question-content .demo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.question .max-width .question-content .demo a {
  background: #E9680C;
  padding: 0.5rem 1.5rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}
.question .max-width .question-content ul {
  margin-left: 15px;
}
.question .max-width .question-content .right img, .question .max-width .question-content .right #Gather_video, .question .max-width .question-content .right #Dashboard_video {
  width: 100%;
  border-radius: 5px;
}

#studn {
  background: #fafafa;
}

#formation {
  background: #fafafa;
}

#essai {
  background: #fafafa;
}

.tarif {
  display: grid;
  place-items: center;
}
.tarif .max-width .price {
  margin-top: 40px;
}
.tarif .max-width .range {
  margin-top: 30px;
  height: 100px;
  width: 100%;
  border-radius: 5px;
  background: #efefef;
  padding: 0 65px;
}
.tarif .max-width .range .sliderValue {
  position: relative;
  width: 100%;
  font-size: 13px;
  text-align: center;
}
.tarif .max-width .range .sliderValue span {
  position: absolute;
  height: 45px;
  width: 45px;
  color: #fff;
  font-weight: 500;
  top: -25px;
  transform: translateX(-50%);
  line-height: 55px;
  z-index: 2;
}
.tarif .max-width .range .sliderValue span::after {
  position: absolute;
  content: "";
  height: 45px;
  width: 45px;
  background: #E9680C;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border: 3px solid #fff;
  z-index: -1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.tarif .max-width .range .field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.tarif .max-width .range .field .value {
  position: absolute;
  font-weight: 600;
  color: #E9680C;
}
.tarif .max-width .range .field .left {
  right: 100%;
}
.tarif .max-width .range .field .right {
  left: 100%;
}
.tarif .max-width .range .field input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 3px;
  width: 100%;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  border: none;
}
.tarif .max-width .range .field input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: #E9680C;
}
.tarif .max-width .btn-acheter {
  display: flex;
  justify-content: center;
}
.tarif .max-width .btn-acheter .demo {
  text-align: center;
  margin-top: 30px;
}
.tarif .max-width .btn-acheter .demo a {
  background: #E9680C;
  padding: 0.5rem 1.5rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.contact {
  background: #FEF4ED;
  padding-top: 40px;
}
.contact .left {
  margin-bottom: 3rem;
}
.contact .left .big-title {
  color: black;
}
.contact .left p {
  text-align: left;
  color: black;
}
.contact .right h2 {
  margin-bottom: 10px;
  color: black;
}
.contact .right form {
  display: flex;
  flex-direction: column;
}
.contact .right form .name {
  margin-right: 10px;
}

.contact .contact-content .right form .fields .field,
.contact .contact-content .right form .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}

.contact .contact-content .right form .field textarea,
.contact .contact-content .right form .field input {
  height: 100%;
  width: 100%;
  border: 1px solid lightgray;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Montserrat";
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .contact-content .right form .field textarea {
  padding-top: 10px;
  height: 100px !important;
  resize: none;
}

.contact .contact-content .right form button {
  height: 47px;
  width: 35%;
  margin-top: 50px;
  border: none;
  background: #E9680C;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  align-self: center;
  cursor: pointer;
}
.contact .contact-content .right form button:hover {
  background: #004058;
}

.contact .contact-content .left .icons .row {
  margin: 10px 0;
  font-size: 18px;
  color: black;
}
.contact .contact-content .left .icons #social {
  text-decoration: underline;
}
.contact .contact-content .left .icons .social-icons {
  margin-right: 20px;
}
.contact .contact-content .left .icons a {
  color: #E9680C;
  font-size: 30px;
}

footer {
  background-color: #E9680C;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

@media (min-width: 400px) {
  .hero .max-width .content .left h1 {
    font-size: 50px;
    line-height: 3.5rem;
  }
  .hero .max-width .content .left h1 span {
    font-size: 50px;
  }
  .hero .max-width .content .meet {
    margin: 30px 4rem 30px 4rem;
  }
}
@media (min-width: 650px) {
  .max-width {
    padding: 0 4rem;
  }
  .contact .max-width {
    padding: 0 8rem;
  }
  .navbar .max-width {
    padding-left: 2rem;
  }
}
@media (min-width: 700px) {
  .contact .contact-content .right .fields {
    display: flex;
  }
}
@media (min-width: 800px) {
  .button-container {
    display: flex;
    gap: 10px; /* Optional: Adds space between buttons */
  }
  .navbar {
    transition: all 500ms ease;
    padding: 0;
  }
  .navbar .max-width {
    display: grid;
    grid-template-columns: 66% 33%;
    background: unset;
    padding: 1rem 0;
  }
  .navbar .max-width .left {
    display: flex;
    align-items: center;
    padding-left: 3rem;
  }
  .navbar .max-width .left .menu {
    display: flex;
    height: unset;
    width: unset;
    left: unset; /* On cache le menu à gauche tant que les bars ne sont pas cliqués */
    top: unset;
    background: unset;
    padding-top: 0;
    margin-left: 15rem;
  }
  .navbar .max-width .left .menu li {
    margin-left: 15px;
  }
  .navbar .max-width .left .menu li a {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    transition: all 500ms ease;
  }
  .navbar .max-width .left .menu li a:hover {
    color: #E9680C;
  }
  .navbar .max-width .left .menu .contact-btn {
    display: unset;
  }
  .navbar .max-width .right {
    padding: 2rem 3rem;
  }
  .navbar .max-width .right .social-header .tarif {
    display: unset;
  }
  .navbar .max-width .right .social-header .tarif a {
    font-size: 18px;
    font-weight: 600;
    color: #7AFFF4;
    transition: all 500ms ease;
  }
  .navbar .max-width .right .social-header .tarif a:hover {
    color: white;
  }
  .navbar .max-width .right .contact-btn {
    display: none;
  }
  .navbar .max-width .right .menu-btn {
    display: none;
  }
  .navbar.sticky {
    padding: 0;
    transition: all 500ms ease;
  }
  .navbar.sticky .max-width .left {
    height: 0;
    background-color: #24263B;
  }
  .navbar.sticky .max-width .left .menu li a {
    color: black;
  }
  .navbar.sticky .max-width .right .social-header .tarif {
    padding: 0;
  }
  .navbar.sticky .max-width .right .social-header .tarif a {
    font-size: 18px;
    color: black;
  }
  .confiance .max-width, .question .max-width {
    padding: 0 9rem;
  }
  .stabilo-effect-hero {
    display: inline-block;
  }
  .question:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 250px;
    -webkit-clip-path: polygon(100% 80%, 0 100%, 100% 100%);
            clip-path: polygon(100% 80%, 0 100%, 100% 100%);
  }
  .contact .max-width .big-title {
    text-align: center;
  }
  .contact {
    background-position: 0% 100%;
  }
  footer {
    flex-direction: row;
    justify-content: center;
  }
  footer div {
    padding: 10px;
  }
}
@media (min-width: 900px) {
  .navbar .max-width .left .menu {
    margin-left: 11rem;
  }
}
@media (min-width: 1000px) {
  .banner {
    height: 40px;
  }
  .banner .max-width .banner-content .banner-text {
    font-size: 17px;
  }
  .question .max-width, .tarif .max-width, .contact .max-width {
    padding: 0 6rem;
  }
  .question p {
    text-align: justify;
  }
  .text {
    font-size: 13px;
  }
  .navbar .max-width .left {
    padding-left: 6rem;
  }
  .navbar .max-width .left .menu {
    margin-left: 13rem;
  }
  .navbar .max-width .right .social-header li {
    margin-right: 20px;
  }
  .navbar .max-width .right .social-header li i {
    font-size: 20px;
  }
  .navbar .max-width .right .social-header li:last-child {
    margin-right: 0;
  }
  .hero .max-width .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hero .max-width .content .column {
    width: calc(50% - 30px);
  }
  .contact {
    background-position: 0% 0%;
    padding-top: 130px;
  }
  .contact .max-width .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact .max-width .contact-content .column {
    width: calc(50% - 30px);
  }
  .contact .max-width .contact-content .left {
    margin-bottom: 0;
  }
  .contact .max-width .contact-content .left .big-title {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .navbar .max-width .left .menu {
    margin-left: 17rem;
  }
  .navbar .max-width .left .menu li a {
    font-size: 18px;
  }
  .confiance .max-width {
    padding: 0 20rem;
  }
  .question .max-width .question-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .question .max-width .question-content .column {
    width: calc(50% - 30px);
  }
  .question .max-width .question-content .left {
    margin-bottom: 0;
  }
  .question .max-width .question-content .left .big-title {
    text-align: left;
  }
  .question .max-width .question-content .left p {
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .navbar .max-width .left {
    padding-left: 8rem;
  }
  .question .max-width,
  .tarif .max-width,
  .contact .max-width {
    padding: 0 8rem;
  }
  .navbar .max-width .left .menu {
    margin-left: 30rem;
  }
  .hero .max-width .content h1 {
    font-size: 35px;
    margin-top: 6rem;
  }
  .hero .max-width .content h2, .hero .max-width .content #typing {
    font-size: 25px;
  }
}
@media (min-width: 1499px) {
  .navbar .max-width .left {
    padding-left: 12rem;
  }
  .text {
    font-size: 15px;
  }
  .hero .max-width {
    padding: 0 8rem;
  }
  .confiance .max-width {
    padding: 0 25rem;
  }
  .question .max-width, .tarif .max-width, .contact .max-width {
    padding: 0 12rem;
  }
  .hero .max-width .content .meet {
    width: 25%;
  }
}
@media (min-width: 1699px) {
  .hero .max-width {
    padding: 0 12rem;
  }
  .hero .max-width .content .left h1 {
    line-height: 4rem;
  }
  .question .max-width, .contact .max-width {
    padding: 0 15rem;
  }
}
@media (min-width: 1799px) {
  .question .max-width .question-content p,
  .question .max-width .question-content li,
  .tarif .max-width .tarif-content p,
  footer div {
    font-size: 18px;
  }
  .navbar .max-width .left .menu {
    margin-left: 35rem;
  }
  .navbar .max-width .left .menu li {
    margin-left: 2rem;
  }
  .hero .max-width .content h1 {
    font-size: 40px;
  }
  .hero .max-width .content h2 {
    font-size: 30px;
  }
  .hero .max-width .content .meet p {
    font-size: 23px;
  }
  .confiance .max-width {
    padding: 0 35rem;
  }
  .contact .max-width .contact-content .column {
    width: calc(50% - 70px);
  }
  .contact .max-width .contact-content .column p {
    font-size: 18px;
  }
}
@media (min-width: 1999px) {
  .big-title {
    font-size: 35px;
  }
  .contact .max-width .contact-content .column p {
    font-size: 22px;
  }
  .navbar .max-width .left .menu li a {
    font-size: 22px;
  }
  .navbar .max-width .right .social-header li a i {
    font-size: 28px;
  }
  .hero .max-width .content h1 {
    margin-top: 8rem;
  }
  .contact .right h2 {
    font-size: 25px;
  }
  .contact .contact-content .right form .fields .field, .contact .contact-content .right form .field {
    height: 60px;
  }
  .contact .contact-content .right form button {
    height: 60px;
    font-size: 20px;
    font-weight: 500;
  }
}
@media (min-width: 2400px) {
  .navbar .max-width .left {
    padding-left: 16rem;
  }
  .question .max-width .question-content p,
  footer div {
    font-size: 22px;
  }
  .question .max-width,
  .contact .max-width {
    padding: 0 16rem;
  }
  .big-title {
    font-size: 48px;
  }
  .contact .max-width .contact-content .column p {
    font-size: 26px;
  }
  .navbar .max-width .left .menu {
    margin-left: 30rem;
  }
  .navbar .max-width .left .menu li a {
    font-size: 25px;
  }
  .hero .max-width .content h1 {
    margin-top: 15rem;
    font-size: 65px;
  }
  .hero .max-width .content h2 {
    font-size: 40px;
  }
  .max-width .tarif-content .list-tarif .list {
    padding: 4rem;
  }
  .contact .max-width .contact-content .column {
    width: calc(50% - 90px);
  }
  .contact .right h2 {
    font-size: 30px;
  }
  .contact .contact-content .right form .fields .field,
  .contact .contact-content .right form .field {
    height: 80px;
  }
  .contact .contact-content .right form .field textarea,
  .contact .contact-content .right form .field input {
    font-size: 23px;
  }
  .contact .contact-content .right form button {
    height: 80px;
    font-size: 23px;
  }
}/*# sourceMappingURL=studn-style.css.map */