/* Custom CSS */
:root, [data-bs-theme=light] {
  --primary-color: #2a2a82;
  --primary-rgb: 42,42,130;
  --primary-text-emphasis: #111134;
  --primary-bg-subtle: #D4D4E6;
  --primary-border-subtle: #AAAACD;
  --secondary-color: #33872d;
  --secondary-rgb: 51,135,45;
  --secondary-text-emphasis: #143612;
  --secondary-bg-subtle: #D6E7D5;
  --secondary-border-subtle: #ADCFAB;
  --success-color: #33872d;
  --success-rgb: 51,135,45;
  --success-text-emphasis: #143612;
  --success-bg-subtle: #D6E7D5;
  --success-border-subtle: #ADCFAB;
  --info-color: #2a2a82;
  --info-rgb: 42,42,130;
  --info-text-emphasis: #111134;
  --info-bg-subtle: #D4D4E6;
  --info-border-subtle: #AAAACD;
}

body {
  font-family: Arial, sans-serif;
  font-size: 20px; /* Augmenter la taille de la police */
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  /*border-bottom: 1px solid #ccc;*/
  position: absolute;
  bottom: 0;
  width: 100%;
}

.navbar-brand img {
  width: 59px;
  height: 59px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  justify-content: center;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
}

.nav-link.active {
  font-weight: bold;
  color: var(--secondary-color);
}

.header {
  position: relative;
}

.header img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.img-fluid {
  width: auto;
  max-height: 100%;
}

.img-fluid.float-left {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px; /* Augmenter la taille de la police */
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #24246F;
  border-color: #222268;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
  border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #2B7326;
  border-color: #296C24;
}

.fit-cover {
  object-fit: cover;
}

.bs-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  color: var(--primary-color);
}

.bs-icon-primary {
  color: #fff;
  background-color: var(--primary-color);
}

.bs-icon-rounded {
  border-radius: 0.5rem;
}

.bs-icon-circle {
  border-radius: 50%;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group textarea {
  resize: vertical;
}

.form-container {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.form-container .btn {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-bottom: 15px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info .info-item .bs-icon {
  margin-right: 10px;
}

.contact-info .info-item h6 {
  margin: 0;
  font-size: 18px; /* Augmenter la taille de la police */
  font-weight: bold;
}

.contact-info .info-item p {
  margin: 0;
  font-size: 16px; /* Augmenter la taille de la police */
}

.navbar-linkedin img {
  width: 45px;
  height: auto;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand-small img {
  width: auto;
  height: 90px;
}

.qualiopi {
  display: block;
  margin: 20px auto 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
  box-sizing: border-box;
}

.col-md-6:first-child {
  /*border-right: 1px solid #ccc; /* Bordure droite pour la première colonne */
  background-color: #ffffff; /* Couleur de fond pour la première colonne */
}

.col-md-6:last-child {
  background-color: #ffffff; /* Couleur de fond pour la deuxième colonne */
}

.row::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
}

.content-box {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-bottom: 15px;
}

.content-box.d-flex.align-items-center.justify-content-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 30px);
  margin-left: 15px;
}

.content-box.d-flex.align-items-center.justify-content-between .flex-grow-1 {
    margin-right: 30px;
}

.content-box.text-left {
  text-align: left;
}

.content-box.full-width {
    width: calc(100% - 30px);
    margin-left: 15px;
}

.beboss-container {
    width: calc(100% - 30px);
    margin-left: 15px;
}

.beboss-img {
  margin-left: 20px;
}

.schema-img {
  margin-top: 20px;
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer {
    background-color: rgb(51, 135, 45);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    bottom: 0;
}
