@import url(config.css);
@import url(style-hero.css);

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.btn-primary {
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  background-color: var(--primay-color);
  float: left;
}

.btn-primary:hover {
  color: #fff;
  transition: 1s ease-out;
}

section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-bg .section-title h2 {
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  position: relative;
  color: #fff;
}

.section-bg .section-title h2::after {
  content: "";
  width: 10%;
  height: 3px;
  display: block;
  background-color: #fff;
  margin: 2% 45%;
  text-align: center;
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: var(--primay-color);
  opacity: 70%;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.about img {
  padding-top: 3rem;
}

section {
  padding: 1rem 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--primay-color);
}

.section-title h2::after {
  content: "";
  width: 20%;
  height: 3px;
  display: block;
  background: var(--primay-color);
  margin: 2% 40%;
  text-align: center;
}

.section-title p {
  margin-bottom: 3%;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-align: justify;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg .card-container .card {
  background-color: transparent;
  border: none;
  width: 50%;
  padding: 0% 2.5%;
}

.section-bg .card-container .card .title {
  padding: 1% 0%;
}

.section-bg .card-container .card span {
  padding: 5px;
  background-color: #fff;
  border-radius: 30px;
  color: #000;
  font-weight: 500;
}

.section-bg .card-container .card p {
  color: #fff;
  font-size: 1.25rem;
}

.container .row img {
  padding: 1rem;
  border-radius: 25px !important;
}

.container .content p {
  margin-bottom: 3%;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}

.container .content p.description {
  margin-bottom: 3%;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

/* .section-bg .row {
    padding: 0% 5%!important;
  } */
.section-bg .row {
  margin-right: 0;
}

.section-bg .row .card {
  padding: 1rem;
  margin: 1%;
  width: 48%;
}

.section-bg .row .col-md-6 {
  background-color: var(--primay-color);
  opacity: 85%;
  box-shadow: 10px 5px 5px var(--secondary-color);
}

.section-bg .row .col-md-6 p {
  display: flex;
  color: #fff;
  opacity: 100%;
  font-size: 1.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .section-bg .card-container .card {
    width: 100%;
    text-align: justify;
  }

  .about .container {
    flex-direction: row-reverse;
  }

  .section-bg .row .card {
    width: 100%;
    margin: 2% 0%;
  }

  /* Centrer le texte des sections mission et vision sur mobile */
  .mission .description,
  .vision .description {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}

.about-lists .row {
  overflow: hidden;
}

.about-lists .content-item {
  padding: 40px;
  border-left: 1px solid var(--primay-color);
  border-bottom: 1px solid var(--primay-color);
  margin: -1px;
}

.about-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--primay-color);
}

.about-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.about-lists .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}