.formats-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  /* padding: 24px; */
  padding: 35px;
}

.format-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  color: white;
}


.format-title {
  font-size: 28px;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
  font-weight: 400;
}

.format-sep {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.format-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--main-red);
  bottom: 0;
  left: calc(50% - 25px);
}

.formats-img-container {

  background-size: cover;
}

.format-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: fit-content;
  padding-bottom: 24px;
}

.format-titles {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.format-icon img {
  width: 40px;
}



.format-liste-reassurance {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;

}

.format-reassurance-item {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
}

.format-title-item {
  font-size: 16px;
  font-weight: 400;
}

.format-reassurance-icon img {
  width: 20px;
}

.format-reassurance-text {
  font-size: 12px;
}

@media screen and (min-width : 1200px) {
  .format-cards-container {
    flex-direction: row;
    gap: 96px;
  }

  .format-reassurance-text {
    font-size: 14px;
  }

  .format-sep {
    width: 1px;
    height: 240px
  }

  .format-card {
    align-items: center;
  }

  .format-reassurance-item {
    justify-content: center;
  }
}

@media screen and (min-width: 1600px) {
  .format-cards-container {
    gap: 156px;
  }

  .format-title-item {
    font-size: 26px;
  }

  .format-reassurance-text {
    font-size: 16px;
  }

  .format-title {
    font-size: 2.2rem;
  }

  .format-liste-reassurance {
    gap: 16px;
  }

  .format-cards-container {
    margin-bottom: 32px;
  }

}