.btn-demo {
  background-color: #ED8816;
  color: #FFF;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 10px 10px #4E4E4E;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
.btn-demo:hover {
  background-color: rgb(193.0836653386, 109.3864541833, 14.9163346614);
  transform: scale(102%), translateY(-2px);
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir-zwS90SA.ttf") format("ttf"), local("Avenir");
  font-weight: normal;
  font-style: normal;
}
.admin-page {
  min-height: 120vh;
  padding-bottom: 50px;
}
.admin-page form {
  width: 100%;
  min-width: 50vw;
  height: 100%;
  min-height: 60vh;
  display: flex;
  /*flex-direction: column;*/
  flex-wrap: wrap;
}
.admin-page .ck-editor__editable_inline {
  min-height: 400px;
  height: 60vh;
}
.admin-page .btn-admin {
  color: #FF5700;
  border: solid 2px #FF5700;
  background-color: transparent;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 20px;
  transition: all 0.3s ease;
  margin: 10px auto;
}
.admin-page .btn-admin:hover {
  background-color: #FF5700;
  color: white;
}
.admin-page .list-cards-admin {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  width: 100%;
  margin-top: 100px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 768px) {
  header .container {
    align-items: center;
  }
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 2px 0px 5px #4E4E4E;
  background-color: #F6F6F6;
}
header.sticky .logo-container {
  height: 100px;
}
header.sticky .logo-container img {
  max-height: 100px;
}
header .logo-container {
  height: 150px;
  display: flex;
  align-items: center;
}
header .logo-container img {
  max-height: 150px;
  width: auto;
  margin-right: 20px;
}
@media all and (max-width: 991px) {
  header .logo-container img {
    max-height: 120px;
    margin-right: 10px;
  }
}
header .logo-container a {
  color: #4F6470;
  text-decoration: none;
  font-size: 1.8rem;
}
@media all and (max-width: 991px) {
  header .logo-container a {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 500px) {
  header .logo-container a {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .logo-container a > span {
    opacity: 0;
  }
}
@media all and (max-width: 576px) {
  header .logo-container {
    height: 100px;
  }
  header .logo-container img {
    max-height: 100px;
  }
}

body {
  background-color: #F6F6F6;
  position: relative;
}
body h1 {
  color: #4F6470;
}
body .hidden {
  display: none !important;
}

.section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}
@media all and (max-width: 576px) {
  .section1 {
    padding-top: 10px;
    margin-top: 10px;
  }
}
.section1 .titre {
  width: 50%;
  text-align: center;
  text-wrap: balance;
}
.section1 .titre h1 {
  letter-spacing: 3px;
  font-family: "Barlow", sans-serif;
  font-size: 60px;
  line-height: 75px;
}
@media all and (max-width: 991px) {
  .section1 .titre {
    margin-top: 25px;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .section1 .titre {
    margin-top: 0;
  }
  .section1 .titre h1 {
    font-size: 48px;
    line-height: 55px;
  }
}
@media all and (max-width: 576px) {
  .section1 .titre {
    margin-top: 15px;
  }
  .section1 .titre h1 {
    font-size: 40px;
  }
}
.section1 .illustration {
  width: 50%;
  display: flex;
  justify-content: center;
}
.section1 .illustration img {
  max-height: 500px;
}
@media all and (max-width: 991px) {
  .section1 .illustration {
    width: 100%;
    margin-top: 30px;
  }
}
@media all and (max-width: 991px) {
  .section1 {
    margin-top: 30px;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
}

.section2 {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  border-radius: 25px;
  overflow: hidden;
}
.section2 .illustration-bg {
  width: 50%;
  background: url("../img/kpi-blocks-yiavFDk.png") no-repeat right;
  background-size: cover;
  max-height: 495px;
}
@media all and (max-width: 1200px) {
  .section2 .illustration-bg {
    width: 100%;
  }
}
.section2 .apropos {
  width: 50%;
  font-family: "Nunito", "Avenir", sans-serif;
  background-color: #4F6470;
  color: #FFF;
  padding: 2rem;
}
.section2 .apropos h2 {
  font-size: 3.5rem;
}
.section2 .apropos p {
  font-size: 15px;
  line-height: 17px;
}
@media all and (max-width: 1200px) {
  .section2 .apropos {
    width: 100%;
  }
}
@media all and (max-width: 576px) {
  .section2 .apropos h2 {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 1200px) {
  .section2 {
    flex-wrap: wrap;
  }
}

.offre-card {
  flex-basis: 30%;
  border: solid 2px #4E4E4E;
  border-radius: 15px;
  background: linear-gradient(to bottom, rgba(78, 78, 78, 0.2) 0%, #FFF 20%);
  box-shadow: 2px 2px 2px rgba(78, 78, 78, 0.7);
  padding: 15px 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.offre-card:nth-child(2n+1) {
  border: solid 2px #ED8816;
}
@media all and (max-width: 991px) and (min-width: 768px) {
  .offre-card {
    flex-basis: 45%;
    order: 1;
  }
  .offre-card:nth-child(2n+1) {
    order: 3;
    flex-basis: 60%;
  }
}
@media all and (max-width: 768px) {
  .offre-card {
    flex-basis: 90%;
    margin: auto;
  }
}
.offre-card h3 {
  text-align: center;
  color: #ED8816;
  margin-bottom: 40px;
}
.offre-card p.for-who {
  text-align: center;
  font-style: italic;
  padding: 10px 20%;
}
.offre-card p.price {
  margin-left: 10%;
}
.offre-card ul {
  list-style: none;
}
.offre-card .card-footer {
  padding: 25px 5px 20px 5px;
  margin-top: auto;
  border-top: dotted 1px #4E4E4E;
}

#offres, #abonnements > .container {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  row-gap: 50px;
}
@media all and (max-width: 991px) {
  #offres, #abonnements > .container {
    justify-content: center;
    row-gap: 30px;
  }
}
#offres h2, #abonnements > .container h2 {
  width: 100%;
  background-color: #042049;
  color: #FFF;
  padding: 20px 0;
  margin-top: 25px;
  text-decoration: none;
}

#offres h2 {
  background-color: #ED8816;
  border-radius: 25px;
}

#abonnements {
  background-color: #042049;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 30px;
}
#abonnements h2 {
  text-decoration: none;
  color: #FFF;
}
#abonnements .offre-card {
  background: linear-gradient(to bottom, #b4b4b4 0%, #FFF 20%);
}

#sur-mesure {
  background-color: #FFF5D4;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 80px 0 30px 0;
}
#sur-mesure h2 {
  text-decoration: none;
  color: #042049;
  margin-bottom: 50px;
}
#sur-mesure ul {
  list-style-type: none;
}

footer {
  padding: 50px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer-row-1 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-row-1 h2 {
  text-align: center;
  color: #B84D07;
  margin-bottom: 50px;
}
footer .footer-row-1 .infos {
  color: #4F6470;
  min-width: 35%;
  order: 2;
}
@media all and (max-width: 991px) {
  footer .footer-row-1 .infos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .footer-row-1 .infos .logo-container {
  display: flex;
  align-items: center;
}
footer .footer-row-1 .infos .logo-container img {
  max-height: 150px;
  width: auto;
}
footer .footer-row-1 .infos .logo-container span {
  margin-left: 5px;
  padding-left: 20px;
  font-size: 20px;
  color: #4F6470;
}
@media all and (max-width: 768px) {
  footer .footer-row-1 .infos .logo-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer-row-1 .infos .logo-container span {
    text-align: center;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}
footer .footer-row-1 .infos a {
  color: #4F6470;
  text-decoration: none;
}
footer .footer-row-1 .infos a:hover {
  text-decoration: underline;
}
footer .footer-row-1 .infos p {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 576px) {
  footer .footer-row-1 .infos p {
    text-align: center;
  }
}
footer .footer-row-1 .infos .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
}
footer .footer-row-1 .infos .socials img {
  max-height: 80px;
  width: auto;
}
@media all and (min-width: 991px) {
  footer .footer-row-1 .infos .socials {
    justify-content: flex-start;
  }
}
footer .footer-row-1 #contact {
  width: 50%;
  order: 3;
}
@media all and (max-width: 991px) {
  footer .footer-row-1 #contact {
    width: auto;
    order: 1;
    margin-bottom: 120px;
  }
}
@media all and (max-width: 768px) {
  footer .footer-row-1 #contact {
    width: 100%;
  }
}
footer .footer-row-1 form#contact-form .form-group {
  width: 48%;
  margin-left: 2%;
}
@media all and (max-width: 500px) {
  footer .footer-row-1 form#contact-form .form-group {
    width: 100%;
  }
}
footer .footer-row-1 form#contact-form label {
  color: #CC4400;
}
footer .footer-row-1 form#contact-form input, footer .footer-row-1 form#contact-form textarea {
  background-color: #FFF5F0;
  border: solid 1px #CC4400;
  border-radius: 10px;
}
footer .footer-row-1 form#contact-form .btn {
  margin-top: 30px;
  font-size: 24px;
}
footer .footer-row-1 form#contact-form .btn:hover {
  color: white;
}
footer .footer-row-2 {
  border-top: solid 1px #4E4E4E;
  width: 100%;
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-row-2 a {
  color: #4E4E4E;
  /*color: $white;*/
  text-decoration: none;
}
footer .footer-row-2 a:hover {
  text-decoration: underline;
}
@media all and (max-width: 991px) {
  footer .footer-row-2 {
    margin-top: 0;
  }
}

/*# sourceMappingURL=main.css-D9e_9ee.map */
