html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: "adobe-arabic", sans-serif;
  text-align: center;
}

ul {
  list-style: none;
}

.prev-page,
.next-page {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 26px;
  position: absolute;
  right: 2px;
  z-index: 9999;
  border-radius: 50%;
  font-size: 16px;
  color: rgba(131, 131, 131, 0.5);
  text-align: center;
}

.prev-page {
  top: 0;
}

.next-page {
  bottom: 0;
}

.prev-page:active {
  background: rgba(131, 131, 131, 0.5);
}

.next-page:active {
  background: rgba(131, 131, 131, 0.5);
}

.pagination {
  width: 30px;
  height: auto;
  position: fixed;
  top: 50%;
  right: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0;
  margin-top: -150px;
}

.pagination a {
  width: 25px;
  height: 25px;
  display: block;
  line-height: 28px;
  text-align: center;
  padding-left: 3px;
}

.pagination a:after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(131, 131, 131, 0.5);
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.pagination a.active:after {
  background: rgba(236, 28, 36);
  width: 15px;
  height: 15px;
}

.item h2 {
  margin: 0;
  padding: 10px 0;
}

.item1 {
  background-color: #333333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item2 {
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item3 {
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item4 {
  background-color: #333333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item5 {
  background-color: #f2f2f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item4 .container {
  padding-bottom: 20px;
}

.item4 ul {
  margin: 0;
  padding: 0;
  width: 90%;
  margin-left: 5%;
}

.item4 ul li {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.5);
}
.red-title {
  color: rgba(236, 28, 36);
  font-weight: 400;
}
.white-title {
  color: rgb(255, 255, 255);
  font-weight: 400;
  text-align: left;
  padding: 0;
  margin: 0;
  max-width: 400px;
}
.text-home {
  color: white;
  font-size: 13px;
  line-height: 19px;
}
@media (max-width: 768px) {
  .text-home {
    font-size: 11px;
  }
  .red-title {
    font-size: 25px;
    margin-bottom: 0px;
  }
  .item h2 {
    padding: 5px 0;
  }
}
.text-p {
  color: #999999;
  text-align: left;
  margin: 0;
}
/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Default Card Style */
.card {
  background-color: #e6e6e6;
  color: black;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  min-height: 120px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s;
}

/* Left-right Flex for Title & Icon */
.left-right {
  justify-content: space-between;
  display: flex;
}

/* Red Background for Selected/Hovered Cards */
.red-card {
  background-color: #d71920 !important;
  color: white !important;
}

/* Large Card */
.large {
  grid-column: span 2;
  text-align: left;
  padding: 30px;
  margin-left: 15px;
}

.large p {
  font-size: small;
}

/* Icon Styling */
.icon-circle {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}

/* Title Styling */
h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .large {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .white-title {
    font-size: 20px;
  }
  #large-title {
    font-size: 17px !important;
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .text-p {
    font-size: 11px;
  }
  .large p {
    font-size: 11px;
  }
  .card {
    background-color: #e6e6e6;
    color: black;
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    min-height: 80px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, color 0.3s;
  }

  .large {
    grid-column: span 1; /* Ensure large cards stack */
    margin-left: 0;
    margin-top: 15px;
  }

  h6 {
    font-size: 10px; /* Smaller text for better readability */
  }

  .icon-circle {
    width: 25px;
    height: 25px;
  }

  .icon-circle img {
    width: 11px;
    height: 11px;
  }
}

/*=========================== items 2 section 4 =========================*/
.four-sections-box {
  width: 70%;
  margin: 10px;
  border: solid 1px black;
  padding: 5px 20px;
  height: 40vh;
  position: relative;
  transition: background-color 0.3s linear;
}
.four-sections-a {
  text-decoration: none;
}
.four-sections-h3 {
  font-size: 1.1vw;
  text-align: left;
  color: #333333;
  font-weight: 550;
}
.four-sections-footer {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  width: 80%;
  align-items: center; /* Adjust the padding as needed */
}

.img-four-sections-1 {
  width: 30px;
}
.img-four-sections-2 {
  width: 20px;
}
.four-sections-a:hover .four-sections-box {
  background-color: #ec1c24;
  border: none;
}
.four-sections-a:hover .four-sections-h3 {
  color: white;
}
.four-sections-a:hover .img-1 {
  content: url("../images/1x/holding-white-8.png");
}
.four-sections-a:hover .img-2 {
  content: url("../images/1x/teaching-white-8.png");
}
.four-sections-a:hover .img-3 {
  content: url("../images/1x/peoples-white-8.png");
}
.four-sections-a:hover .img-4 {
  content: url("../images/1x/prof-white-8.png");
}
.four-sections-a:hover .img-four-sections-2 {
  content: url("../images/1x/arrow-black-8.png");
}

@media (max-width: 850px) {
  .four-sections-box {
    width: 93%;
    box-sizing: border-box;
    margin: 10px;
    border: solid 1px black;
    padding: 5px 20px;
    height: 26vh;
    position: relative;
  }
  .four-sections-a {
    text-decoration: none;
  }
  .four-sections-h3 {
    font-size: 12px;
  }
  .four-sections-footer {
    width: 70%;
  }
}
/*============================formation entreprise======================= */
.four-sections-boxx {
  border-top: solid 2px black;
  border-left: solid 2px black;
  border-bottom: solid 2px black;
  padding: 5px 20px;
  height: 40vh;
  position: relative;
}
.four-sections-boxy {
  background-image: url("../images/1x/background-grey-8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: solid 2px black;
  border-right: solid 2px black;
  border-bottom: solid 2px black;
  padding: 5px;
  height: 40vh;
  position: relative;
}
.four-sections-boxyy {
  padding: 5px;
  height: 40vh;
  margin: 10px;
  position: relative;
}
.four-sections-faq {
  padding: 5px;
  box-sizing: border-box;
  margin: 5px 10px;
  position: relative;
}
.text-reduce {
  font-size: 10px;
  text-align: left;
  color: white;
  margin: 0px;
}
.background-grey-sections {
  display: flex;
  background: rgba(0, 0, 0, 0.8);
  height: auto;
  margin: 40px;
  padding: 20px;
}
.text-section {
  width: 65%;
  padding-right: 20px;
  font-size: 1.1vw;
  text-align: justify;
  color: white;
}
.title-section {
  width: 35%;
  padding-left: 20px;
  font-size: 20px;
  text-align: left;
  position: relative;
  color: white;
  border-left: #ec1c24 2px solid;
}
.bottom-right-section {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

@media (max-width: 991px) {
  .text-section {
    font-size: 1.7vw;
  }
  .title-section {
    font-size: 23px;
  }
}
.four-sections-aa {
  text-decoration: none;
  flex: 1;
}
.four-sections-a:hover .four-sections-boxx {
  background-color: #ec1c24;
  border: none;
}
.four-sections-a:hover .img-1 {
  content: url("../images/1x/holding-white-8.png");
}
.four-sections-a:hover .img-2 {
  content: url("../images/1x/teaching-white-8.png");
}

@media (max-width: 768px) {
  .four-sections-boxx {
    width: 60%;
    margin: 10px;
    border: solid 1px black;
    padding: 5px 20px;
    height: 26vh;
    position: relative;
  }
}

@media (max-width: 360px) {
  .four-sections-boxx {
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
    border: solid 1px black;
    padding: 5px 20px;
    height: 26vh;
    position: relative;
  }
  .four-sections-boxy {
    border-top: none;
    border-left: solid 2px black;
    border-right: solid 2px black;
    border-bottom: solid 2px black;
    padding: 5px;
    height: 40vh;
    position: relative;
  }
}

/*=============================== faq ================================*/
.faq-header {
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  background-color: #4c4c4c;
  height: 7vh; /* Adjusted height for each header */
  margin-top: 0; /* Remove margin-top to ensure the heights sum up correctly */
  margin-bottom: 1.6vh;
  box-sizing: border-box; /* Include padding and border in the element's total height and width */
}
.faq-header h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: white;
}
.faq-header img {
  width: 25px;
}
.faq-header:hover img {
  content: url("../images/1x/arrow-bottom-white-8.png");
  height: 25px;
}
.faq-content {
  text-align: left;
  display: none;
  padding: 5px 10px;
  margin-bottom: 10px;
  border: 1px solid #636363;
  border-top: none;
}
.faq-header.active {
  background-color: #4c4c4c;
  color: white;
}
.faq-header.active img {
  content: url("../images/1x/arrow-bottom-white-8.png");
}
.faq-content p {
  color: #999999;
  font-size: small;
}
/* ===================== assurance maladie =========================== */
.four-sections-video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 70%;
  margin: 10px;
  padding: 5px 20px;
  height: 40vh;
  position: relative;
  color: white; /* Ensures text visibility */
  background-blend-mode: overlay; /* Applies the filter effect */
  background-color: rgba(0, 0, 0, 0.4); /* This is the filter effect */
  transform: scale(1);
  transition: transform 0.3s ease;
}

.four-sections-footer-video {
  position: absolute;
  bottom: 20px;
  font-size: 8px;
  text-align: left;
  left: 20px;
}

.four-sections-a:hover .four-sections-video {
  background-color: #ec1c23d7;
  border: none;
  transform: scale(1.05);
}

.header-titlee {
  margin-bottom: 20px; /* Adjust spacing as needed */
  color: white;
  text-align: left;
}
.header-containerr {
  max-width: 16.6667%; /* Same width as .col-lg-2 */
  padding-left: 9%; /* Adjust padding to align with columns */
}
@media (max-width: 768px) {
  .four-sections-video {
    width: 70%;
    margin: 10px;
    padding: 5px 10px;
    height: 26vh;
    position: relative;
  }
  .four-sections-footer-video {
    left: 10px;
  }
  .header-containerr {
    padding-left: 3%; /* Adjust padding to align with columns */
  }
}
.navyoutube {
  background-color: #383838;
  color: white;
  font-size: 15px;
  padding: 8px 20px;
  margin-bottom: 4px;
  position: relative; /* Ensure the dropdown is positioned correctly */
}

.dropdown-menuu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position below the navyoutube div */
  left: 9px;
  width: 98%;
  z-index: 1; /* Ensure it appears above other elements */
}

.dropdown-menuu ul {
  list-style: none;
  margin: 0;
  width: 99%;
  padding: 0;
}

.dropdown-menuu ul li {
  margin-bottom: 3px;
  border-bottom: none;
  background-color: #0000008c;
  cursor: pointer;
}

.dropdown-menuu ul li:hover {
  background-color: #ff0000de;
}

.navyoutube:hover .dropdown-menuu {
  display: block; /* Show the dropdown on hover */
}
.iamsure {
  background-color: #00000034;
  color: white;
  font-size: 11px;
  padding: 8px 20px;
  margin-top: 5px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.iamsure:hover {
  background-color: #ec1c24;
  color: white;
}

.iamsure .arrow-img {
  transition: all 0.3s;
}

.iamsure:hover .arrow-img {
  width: 25px;
  content: url("../images/1x/arrow-right-black-8.png");
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.controls {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.controls button {
  padding: 5px;
  font-size: 16px;
}
.time-display {
  margin-top: 10px;
  font-size: 16px;
}
.progress-container {
  width: 100%;
  text-align: center;
}
.progress-bar {
  width: 95%;
  height: 5px;
  background-color: #ccc;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative; /* Ensure the black circle is positioned correctly */
}
.progress-bar-inner {
  height: 100%;
  width: 0;
  background-color: #ec1c23;
  position: relative;
}
.progress-bar-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px; /* Adjust this value based on the circle's size */
  transform: translate(50%, -50%);
  width: 16px;
  height: 16px;
  background-color: black;
  border-radius: 50%;
  z-index: 2; /* Ensure it appears above other elements */
}
.iconvideo {
  max-width: 20px;
}
.btnvideo {
  border: none;
  background-color: #333333;
}
.duratii {
  color: white;
  font-size: 10px;
  font-weight: 600;
}
.download-note {
  display: inline-block; /* Ensure the link is treated as a block element */
  width: 30px; /* Set the width of the circle */
  height: 30px; /* Set the height of the circle */
  background-color: #ec1c23; /* Background color */
  border-radius: 50%; /* Make it a circle */
  text-align: center; /* Center the image horizontally */
  line-height: 50px; /* Center the image vertically */
  position: relative; /* Allow absolute positioning of the image */
}

.download-note img {
  max-width: 50%; /* Ensure the image fits within the circle */
  max-height: 50%; /* Ensure the image fits within the circle */
  position: absolute; /* Position the image absolutely */
  top: 50%; /* Center the image vertically */
  left: 50%; /* Center the image horizontally */
  transform: translate(-50%, -50%); /* Adjust the image to be centered */
}
.title-note {
  max-width: 70%;
  text-align: left;
  color: white;
}
.notes-box-right {
  margin-left: 20px;
  overflow: hidden;
  border-radius: 15px;
  border: solid 1px #00000034;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header-notes-box {
  padding: 20px;
  font-size: 14px;
}
.notes-box-right textarea {
  flex: 1;
  width: 100%;
  border: none;
  padding: 10px;
  box-sizing: border-box;
  background-color: #4d4d4d;
}
.notes-box-right textarea:focus {
  border: none;
  outline: none; /* Remove the focus outline */
}
@media (max-width: 768px) {
  .dropdown-menuu ul {
    width: 96%;
  }
  .notes-box-right {
    margin-left: 20px;
    margin-top: 0px;
  }
}
@media (max-width: 360px) {
  .dropdown-menuu ul {
    width: 96%;
  }
  .notes-box-right {
    margin-left: 0px;
    margin-top: 10px;
  }
}
/*=================== QUIZ ===========================*/
.wizard-container {
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}
.ques {
  border: #b71c1c 1px solid;
  background-color: #3d3d3d;
  color: white;
  width: 100%;
  margin-bottom: 10px;
}
.top-question {
  border-bottom: #b71c1c 1px solid;
  padding: 8px 20px;
}
.ques h4 {
  margin: 0px;
  font-size: 15px;
  font-weight: 500;
}
.ques p {
  margin-bottom: 5px;
}
.text-quiz {
  padding: 15px 10px 20px 30px;
  font-size: 0.8em;
}
.question-container {
  text-align: left;
}

.question-container p {
  font-size: 0.9em;
  line-height: 1.5em;
}
.quizradio {
  border: #3d3d3d 2px solid;
  cursor: pointer;
  width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  font-size: 0.7em;
}
.quizradio:hover {
  background-color: #3d3d3d;
}
.p-quiz {
  margin: 0px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .quizradio {
    width: 100%;
  }
}
/* Cache les cases à cocher par défaut */
input[type="radio"] {
  display: none;
}

/* Style du label */
.quizradio {
  position: relative;
  cursor: pointer;
}

/* Style de la checkmark */
.checkmark {
  position: absolute;
  top: 50%;
  right: 10px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Petit cercle rouge au centre */
.checkmark::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
  display: none; /* Par défaut caché */
}

/* Style de la case à cocher lorsqu'elle est sélectionnée */
input[type="radio"]:checked + .checkmark::after {
  display: block; /* Afficher le petit cercle rouge lorsque sélectionné */
}
.iamsuree {
  background-color: #00000034;
  color: white;
  font-size: 11px;
  padding: 8px 20px;
  margin-top: 5px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.iamsuree:hover {
  background-color: #ec1c24;
  color: white;
}

.iamsuree .arrow-img {
  transition: all 0.3s;
}

.iamsuree:hover .arrow-img {
  width: 25px;
  content: url("../images/1x/arrow-right-black-8.png");
}

/************offres section ****************************/
.top-offre {
  text-align: left;
}
.black-title {
  text-align: left;
  color: #1c1c1c;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.text-offre {
  max-width: 800px;
}
.b1 {
  font-weight: bold;
}
.red-text {
  color: #ec1c24;
}
.offre-sections-card-a {
  text-decoration: none;
}
.four-sections-vb {
  margin: 10px;
  background-color: white;
  padding: 5px 20px;
  height: 50vh;
  position: relative;
  transition: background-color 0.3s linear;
}
.offre-sections-card-a:hover .four-sections-vb {
  background-color: #e9e9e9;
  border: none;
}
.text-card-offre {
  color: #606060;
  text-align: left;
  font-size: 12px;
  display: block;
  margin-bottom: 50px;
}
.four-sections-h3-offre {
  font-size: 1.2vw;
  text-align: left;
  color: #333333;
  font-weight: 550;
  margin-bottom: 0;
}
.pricee {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  color: #141414;
  margin: 10px 0;
}
.duration {
  color: #606060;
  font-size: 12px;
  font-weight: 300;
}
.btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid grey;
}
.btn-primary {
  background: #ec1c24;
  color: white;
}
.btn-secondary {
  background: #ffffff;
  border: #141414 solid 0.5px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.btn-secondary:hover {
  background: #ec1c24;
  border: none;
  color: white;
}
.features {
  text-align: left;
  font-size: 14px;
  color: #666;
}
.features ul {
  list-style: none;
  padding: 0;
  justify-content: left;
}
.features li {
  display: flex;
  text-align: left;

  gap: 10px;
}
.features li img {
  width: 15px;
  height: 16px;
}

.highlight {
  border: 0.5px solid #ec1c24;
}
.highlightt {
  color: #ec1c24;
  font-weight: bold;
}
@media (max-width: 991px) {
  .black-title {
    font-size: 25px;
  }
  .text-offre {
    font-size: 15px;
  }
  .features {
    font-size: 12px;
  }
  .text-card-offre {
    margin-bottom: 20px;
  }
  .btn {
    display: inline-block;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .black-title {
    font-size: 20px;
  }
  .text-offre {
    font-size: 11px;
    margin: 5px 0px;
  }

  .four-sections-vb {
    margin: 5px;
    padding: 5px;
    height: auto;
    text-align: center;
  }
  .four-sections-h3-offre {
    font-size: 16px;
    margin-top: 5px;
    text-align: center;
  }
  .text-card-offre {
    font-size: 10px;
    text-align: center;
    margin: 0px;
  }

  .pricee {
    font-size: 15px;
    text-align: center;
    margin: 5px 0px;
  }

  .duration {
    font-size: 10px;
    text-align: center;
  }

  .btn {
    border: 1px solid grey;
    font-size: 14px;
    padding: 8px;
    margin: 5px 0;
  }

  .features {
    display: none;
  }
  .text-left {
    font-size: 11px;
    margin: 0px;
  }
}
/*********************** grid ****************************/
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.grid-item {
  text-align: left;
  padding: 20px;
}
.grid-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .grid-item img {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 0px;
  }
}
.grid-item h3 {
  margin: 10px 0;
  font-size: 18px;
  color: white;
}
.grid-item p {
  font-size: 14px;
  color: #999999;
}
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .grid-item {
    padding: 10px;
  }
  .grid-item h3 {
    font-size: 13px;
  }
  .grid-item p {
    font-size: 12px;
    color: #999999;
  }
}
/*********************** AVIS ****************************/
.img-avis {
  width: 200px;
  margin: 0;
}
.grid-containerr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
}
.grid-itemm {
  text-align: left;
  padding: 20px;
}
.img-gridd {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
.grid-itemm h6 {
  margin: 10px 0 0;
  font-size: 11px;
  color: #333333;
  position: relative;
}
.grid-itemm h6::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #333333;
  margin: 10px 0px; /* Ajoute un espace de 10px entre la ligne et le titre */
}
.grid-itemm p {
  font-size: 14px;
  color: #333333;
}
@media (max-width: 768px) {
  .grid-containerr {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .grid-itemm {
    padding: 10px;
  }

  .grid-itemm p {
    font-size: 11px;
    color: #333333;
  }
  .img-gridd {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
  }
}
@media (max-width: 991px) {
  .grid-containerr {
    grid-template-columns: repeat(3, 1fr);
  }
}

/****************** partie position  *********************/
.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ec1c24;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  width: 220px; /* Ajuste la largeur selon le texte */
}
.cta-button p {
  margin: 0;
  padding: 0;
}
.cta-button img {
  width: 16px;
  margin-left: 10px; /* Espace entre le texte et l'icône */
}
.text-pos {
  max-width: 500px;
  font-size: small;
}
@media screen and (max-width: 768px) {
  .text-pos {
    font-size: 12px;
  }
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.advantage-item {
  background: #eaeaea;
  padding: 20px;
  position: relative;
}
.advantage-item h3 {
  font-size: 18px;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.advantage-item p {
  font-size: 14px;
  color: #666;
}
.b8 {
  margin-top: 30px;
}
.advantage-number {
  position: absolute;
  top: -35px;
  right: 10px;
  font-size: 40px;
  font-weight: bold;
  color: #eaeaea;
}
@media (max-width: 768px) {
  .advantages {
    grid-template-columns: repeat(1, 1fr);
  }
  .b8 {
    margin-top: 0px;
  }
  .advantage-item {
    padding: 5px;
  }
  .advantage-item p {
    margin: 5px;
    font-size: 12px;
  }
  .advantage-item h3 {
    font-size: 14px;
    margin: 10px 5px;
  }
}

/* FaQ */
.white-title-faq {
  color: rgb(255, 255, 255);
  font-weight: 400;
  padding: 0;
  margin: 0;

  max-width: 600px;
}
.text-faq {
  font-size: small;
  color: #f2f2f2;
  max-width: 600px;
}
/* OFFRE1 */
.offre1 {
  text-align: left;
}
.text-card-offre1 {
  color: #606060;
  text-align: left;
  font-size: 15px;
  display: block;
  margin-bottom: 50px;
}
/* Style de base pour form-control dans Bootstrap */
.name-group {
  display: flex;
  gap: 10px;
}
.name-group input {
  flex: 1;
  border: none;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  height: calc(2.35rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 10px;
}
.name-group input:focus,
.form-group input:focus {
  outline: none;
  border: 2px solid #d92027;
}
.submit-btn {
  width: 100%;
  background-color: #d92027;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #b81a21;
}
@media (max-width: 1200px) {
  .name-group {
    flex-direction: column;
    gap: 0px;
  }
  .name-group input {
    line-height: 2.5;
  }
}

.featuress {
  text-align: left;
  font-size: 14px;
  color: #666;
}
.featuress ul {
  list-style: none;
  padding: 0;
  justify-content: left;
}
.featuress li {
  display: flex;
  text-align: left;

  gap: 10px;
}
.featuress li img {
  width: 15px;
  height: 16px;
}
.text-card-offre-cart {
  color: #606060;
  text-align: left;
  font-size: 12px;
  display: block;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .text-card-offre-cart {
    margin-bottom: 20px;
  }
}
.priceee {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  color: #141414;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .form-cart {
    margin-top: 60px;
  }
}
.four-sections-vbb {
  margin: 10px;
  background-color: white;
  padding: 20px;
  position: relative;
  transition: background-color 0.3s linear;
}
