/* ========================================
   1. GENERAL
======================================== */
body {
  font-size: 16px;
  color: #434343;
}

.default-section {
  background-color: #f6f9f6;
}

.alternate-section {
  background-color: #fbfdfb;
}

/* ========================================
   2. HEADER & LOGO
======================================== */
.header-pane {
  position: relative;
  overflow: hidden;
  background-color: #c6ddc6;
  background-image: none;
  background-repeat: no-repeat;
}

.background-logo {
  position: absolute;
  top:-18rem;
  left: -26rem;
  width:800px;
  z-index: 0;
  pointer-events: none;
}

.header-pane .background-logo {
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.logo-img {
  height: 50px;
  width: 50px;
}

.logo-txt {
  margin-left: 10px;
  height: 30px;
  width: 260px;
  /* opacity: 0.75; */
}

/* ========================================
   3. LAYOUT & FLEXBOX
======================================== */
.flex-r {
  display: flex;
  justify-content: right;
}

.flex-c {
  display: flex;
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap > span {
  margin: 20px;
}

.form-centered {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 32px 24px;
}

.noexpand {
  max-width: 1100px;
  width:100%;
}

img.smart-resize {
  max-width: 20%;
}

/* ========================================
   4. CARTES
======================================== */
.cardscontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px;
}

.cardscontainer > div {
  width: 350px;
}

.cardheader {
  height: 180px;
}

.cardheader img {
  width: 70px;
}

/* ========================================
   5. TYPOGRAPHIE & TITRES
======================================== */
.title {
  color: #282c30;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

h1 {
  /* color: #434343; */
  font-size: 22px;
}

h2 {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 30px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 18px;
  color: #333;
}

blockquote {
  border-left: 3px solid lightblue;
  margin-left: 20px;
  font-size: 14px;
  padding-left: 10px;
}

blockquote img {
  margin-right: 10px;
}

blockquote h3 {
  font-style: italic;
  color: dimgray;
}

/* ========================================
   6. NAVIGATION & LINKS
======================================== */
.navbar-nav .nav link {
  color: #57636c;
}

a {
  color: rgb(35, 66, 57);
  text-decoration: none;
  cursor: pointer;
}

.offcanvas {
  background-color: #c6ddc6;
}

.navbar {
  background-color: transparent !important;
}

/* ========================================
   7. RESPONSIVE DESIGN
======================================== */
@media only screen and (max-width: 767px) {
  .title {
    font-size: 32px;
  }

  h1 {
    font-size: 18px;
  }

  .logo-img {
    height: 40px;
    width: 40px;
  }

  .logo-txt {
    margin-left: 10px;
    height: 22px;
    width: 190px;
    opacity: 0.75;
  }

  .flex-wrap > span {
    flex: 1 1 100%;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
  }
}