/* CSS Document */
body,
html {
  font-family: "Open Sans", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

img[src*=".svg"] {
  width: 100%;
  height: auto;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33%;
}

.anim-survol {
  transition: transform 0.3s ease;
}

h1 {
  font-family: "Playfair Display", serif;
  color: #D7CEFC;
  font-weight: 100;
  font-size: 5rem;
}
@media (max-width: 780px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 100;
  font-size: 6rem;
  margin: 0;
}
@media (max-width: 1292px) {
  h2 {
    font-size: 5.5rem;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 5rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 4rem;
  }
}

a.btn {
  padding: 10px 40px;
  border: 1px solid #D7CEFC;
  background-color: transparent;
  border-radius: 50px;
  color: #D7CEFC;
  display: inline-block;
}
a.btn:hover {
  background-color: #D7CEFC;
  color: #43328D;
}

header.top {
  background-color: #7367AB;
  border-bottom: 0;
}
@media (max-width: 1024px) {
  header.top {
    display: none;
  }
}
header.top .container .row {
  justify-content: flex-end;
}
header.top .container .row .col ul.sec-menu {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.top .container .row .col ul.sec-menu li a {
  width: 100%;
  padding: 0px 20px;
  color: #D7CEFC;
  font-size: 1rem;
  font-weight: 600;
}
header.top .container .row .col ul.sec-menu li:last-of-type a {
  padding-right: 0;
}

header {
  background-color: #43328D;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  border-bottom: 2px solid #D7CEFC;
}
header.open-menu {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 0px;
  left: 0;
}
header.open-menu:before {
  background-color: #43328D;
}
header .container {
  max-width: 90vw;
  width: 100%;
}
header .container .row .col2 {
  padding: 10px 0;
}
header .container .row .col2:first-of-type {
  width: 20%;
}
@media (max-width: 768px) {
  header .container .row .col2:first-of-type {
    width: 40%;
  }
}
header .container .row .col2:first-of-type a {
  display: block;
}
header .container .row .col2:first-of-type img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  header .container .row .col2:first-of-type img {
    height: 100%;
  }
}
header .container .row .col2:last-of-type {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  header .container .row .col2:last-of-type {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  header .container .row .col2:last-of-type nav {
    display: none;
  }
}
header .container .row .col2:last-of-type nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .container .row .col2:last-of-type nav ul li a {
  color: #D7CEFC;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 20px;
}
@media (max-width: 1292px) {
  header .container .row .col2:last-of-type nav ul li a {
    font-size: 1rem;
  }
}
header .container .row .col2:last-of-type nav ul li:last-of-type a {
  padding-right: 0;
}
header .container .row .col2:last-of-type #bouton-mobile {
  z-index: 300;
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  header .container .row .col2:last-of-type #bouton-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
}
header .container .row .col2:last-of-type .bar1,
header .container .row .col2:last-of-type .bar2 {
  height: 3px;
  background-color: #D7CEFC;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 50px;
  display: none;
  z-index: 201;
}
@media (max-width: 1280px) {
  header .container .row .col2:last-of-type .bar1,
  header .container .row .col2:last-of-type .bar2 {
    display: block;
  }
}
header .container .row .col2:last-of-type .bar1 {
  width: 40px;
}
header .container .row .col2:last-of-type .bar2 {
  width: 60px;
}
header .container .row .col2:last-of-type {
  /* Rotate first bar */
}
header .container .row .col2:last-of-type .change .bar1 {
  transform: rotate(-45deg) translate(-1px, 10px);
  background-color: white;
  width: 50px;
}
header .container .row .col2:last-of-type {
  /* Rotate second bar */
}
header .container .row .col2:last-of-type .change .bar2 {
  transform: rotate(45deg) translate(1px, -10px);
  background-color: white;
  width: 50px;
}

div#menu-sec {
  display: none;
  height: 100vh;
  width: 100vw;
  background-color: white;
  position: fixed;
  top: 25px;
  right: 0;
  z-index: 100;
  overflow-y: scroll;
}
div#menu-sec.active {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
}
div#menu-sec nav {
  width: 100%;
  padding-top: 100px;
}
div#menu-sec nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
div#menu-sec nav ul li {
  width: 100%;
  border-bottom: 1px solid #43328D;
}
div#menu-sec nav ul li a {
  display: block;
  width: 100%;
  padding: 30px 40px;
  color: #43328D;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  div#menu-sec nav ul li a {
    font-size: 1.5rem;
  }
}
div#menu-sec nav ul li a:hover {
  color: #D7CEFC;
  text-decoration: none;
  background-color: #43328D;
  padding: 30px 60px;
}

.header-home {
  background-image: url("images/header.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  max-height: 824px;
  position: relative;
}
.header-home::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 22, 107, 0.4901960784);
}
.header-home .container {
  height: 100%;
}
.header-home .container .row {
  height: 100%;
}
@media (max-width: 1024px) {
  .header-home .container .row {
    flex-direction: column-reverse;
  }
}
.header-home .container .row .col3 {
  height: 100%;
}
.header-home .container .row .col3:first-of-type {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  row-gap: 30px;
}
@media (max-width: 1292px) {
  .header-home .container .row .col3:first-of-type {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:first-of-type {
    width: 100%;
    height: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.header-home .container .row .col3:first-of-type .book-couverture {
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media (max-width: 576px) {
  .header-home .container .row .col3:first-of-type .book-couverture {
    display: none;
  }
}
.header-home .container .row .col3:first-of-type .book-couverture:hover {
  transform: translateX(40px);
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:first-of-type .book-couverture:hover {
    transform: translateY(-40px) translateX(0);
  }
}
.header-home .container .row .col3:first-of-type .book-couverture img {
  width: 130px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.4);
}
.header-home .container .row .col3:first-of-type .book-couverture img.new-badge {
  box-shadow: none;
  width: 50px;
  position: absolute;
  top: -10px;
  left: -10px;
  transform: rotate(-25deg);
}
.header-home .container .row .col3:first-of-type .buynow-pastille {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 50px;
  left: 60px;
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:first-of-type .buynow-pastille {
    bottom: unset;
    left: unset;
    top: -70px;
  }
}
@media (max-width: 576px) {
  .header-home .container .row .col3:first-of-type .buynow-pastille {
    top: 30px;
  }
}
.header-home .container .row .col3:first-of-type .buynow-pastille .buynow {
  animation: rotate 30s linear infinite;
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:first-of-type .buynow-pastille .buynow {
    width: 80%;
  }
}
.header-home .container .row .col3:first-of-type .buynow-pastille .arrow {
  position: absolute;
  width: 50px;
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:first-of-type .buynow-pastille .arrow {
    width: 40px;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header-home .container .row .col3:nth-of-type(2) {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-bottom: 100px;
}
@media (max-width: 1292px) {
  .header-home .container .row .col3:nth-of-type(2) {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:nth-of-type(2) {
    width: 100%;
    height: 50%;
    align-items: center;
    padding-bottom: 0;
    justify-content: center;
  }
}
.header-home .container .row .col3:nth-of-type(2) h1 {
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:nth-of-type(2) h1 {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .header-home .container .row .col3:nth-of-type(2) h1 {
    font-size: 3rem;
  }
}
.header-home .container .row .col3:nth-of-type(2) img {
  height: 200px;
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:nth-of-type(2) img {
    display: none;
  }
}
.header-home .container .row .col3:last-of-type {
  width: 20%;
  padding-top: 100px;
}
@media (max-width: 1292px) {
  .header-home .container .row .col3:last-of-type {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .header-home .container .row .col3:last-of-type {
    display: none;
  }
}
.header-home .container .row .col3:last-of-type p {
  text-align: right;
  color: #D7CEFC;
}
.header-home .container .row .col3:last-of-type p:first-of-type {
  margin-bottom: 40px;
}

#books {
  margin: 150px 0 230px 0;
}
#books .container .row {
  position: relative;
}
#books .container .row:first-of-type {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  background-image: url(images/el_graphique_books.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  #books .container .row:first-of-type {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  #books .container .row:first-of-type {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: none;
  }
}
#books .container .row:first-of-type h2 {
  color: #43328D;
}
@media (max-width: 768px) {
  #books .container .row:first-of-type p:last-of-type {
    margin-top: 50px;
  }
}
#books .container .row:first-of-type a.btn {
  border: 1px solid #43328D;
  color: #43328D;
}
#books .container .row:first-of-type a.btn:hover {
  border: 1px solid #D7CEFC;
  background-color: #D7CEFC;
}
#books .container .row:last-of-type {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1292px) {
  #books .container .row:last-of-type {
    justify-content: flex-start;
    row-gap: 60px;
  }
}
@media (max-width: 768px) {
  #books .container .row:last-of-type {
    justify-content: space-between;
  }
}
#books .container .row:last-of-type .our-books {
  width: 18%;
  margin-right: 2%;
  position: relative;
  transition: transform 0.7s ease;
}
#books .container .row:last-of-type .our-books img.new-badge {
  box-shadow: none;
  width: 70px;
  position: absolute;
  top: -10px;
  left: -10px;
  transform: rotate(-25deg);
}
#books .container .row:last-of-type .our-books:hover {
  transform: scale(1.1);
}
#books .container .row:last-of-type .our-books:nth-of-type(5n) {
  margin-right: 0;
}
@media (max-width: 1292px) {
  #books .container .row:last-of-type .our-books {
    width: 30%;
    margin-right: 4%;
  }
  #books .container .row:last-of-type .our-books:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #books .container .row:last-of-type .our-books {
    width: 48%;
    margin-right: 2%;
  }
  #books .container .row:last-of-type .our-books:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  #books .container .row:last-of-type .our-books {
    width: 100%;
    margin-right: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#books .container .row:last-of-type .our-books a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#books .container .row:last-of-type .our-books img {
  width: 90%;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
  #books .container .row:last-of-type .our-books img {
    width: 70%;
  }
}
#books .container .row:last-of-type .our-books p {
  text-align: center;
  font-size: 1rem;
  color: #43328D;
  margin: 0;
  margin-top: 20px;
}
#books .container .row:last-of-type .our-books .prix {
  background-color: #D7CEFC;
  color: #43328D;
  font-weight: 700;
  font-style: oblique;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  position: absolute;
  top: -10px;
  right: 0;
}
@media (max-width: 576px) {
  #books .container .row:last-of-type .our-books .prix {
    right: 30px;
  }
}

.newsletter-promo {
  width: 70%;
  background-color: #D7CEFC;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding: 50px 150px 90px;
  margin-bottom: 230px;
}
@media (max-width: 1024px) {
  .newsletter-promo {
    padding: 50px 100px 50px;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .newsletter-promo {
    width: 100%;
    padding-top: 100px;
  }
}
.newsletter-promo .promo-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .newsletter-promo .promo-text {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .newsletter-promo .promo-text {
    width: 100%;
  }
}
.newsletter-promo .promo-text .btn {
  background-color: #43328D;
  border-color: #43328D;
  color: #D7CEFC;
  margin-top: 45px;
}
.newsletter-promo .promo-text .btn:hover {
  background-color: transparent;
  color: #43328D;
}
.newsletter-promo .promo-text h2 {
  font-size: 2.88rem;
  line-height: 3.88rem;
  color: #43328D;
  text-align: right;
}
@media (max-width: 1024px) {
  .newsletter-promo .promo-text h2 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.newsletter-promo img {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
}
@media (max-width: 1024px) {
  .newsletter-promo img {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .newsletter-promo img {
    top: -150px;
    width: 350px;
  }
}
@media (max-width: 576px) {
  .newsletter-promo img {
    top: -200px;
    left: -50px;
    width: 350px;
  }
}

.newsletter-form {
  background-color: #F6F1EE;
  padding: 80px 0 80px 130px;
  width: 80%;
  margin-top: 230px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 768px) {
  .newsletter-form {
    width: 100%;
    padding: 180px 80px 80px 80px;
    display: flex;
    justify-content: center;
  }
}
.newsletter-form .promo-text {
  width: 60%;
}
@media (max-width: 1292px) {
  .newsletter-form .promo-text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .newsletter-form .promo-text {
    width: 100%;
  }
}
.newsletter-form .promo-text h2 {
  font-size: 2.6rem;
  line-height: 3.6rem;
  color: black;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .newsletter-form .promo-text h2 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media (max-width: 576px) {
  .newsletter-form .promo-text h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group:first-of-type {
  margin-bottom: 20px;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input {
  background-color: transparent;
  border: 1px solid black;
  border-radius: 100px;
  padding: 10px 20px;
  box-shadow: none;
  font-size: 1.2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input {
    padding: 5px 15px;
    font-size: 1rem;
  }
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input::-moz-placeholder {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input::placeholder {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input::-moz-placeholder {
    font-size: 1rem;
  }
  .newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input::placeholder {
    font-size: 1rem;
  }
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .mc-field-group input:focus {
  box-shadow: none;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group {
  margin: 20px 0;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group ul li:last-of-type {
  margin-bottom: 0;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group ul li input {
  display: inline-block;
  width: auto;
  background-color: transparent;
  margin-right: 10px;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form .input-group ul li label {
  font-size: 1.2rem;
}
.newsletter-form .promo-text #mc-embedded-subscribe-form input[type=submit] {
  background-color: black;
  border-radius: 100px;
  border: none;
  box-shadow: none;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #F6F1EE;
  padding: 10px 20px;
}
.newsletter-form .promo-text #frm_form_4_container {
  width: 60%;
}
@media (max-width: 1292px) {
  .newsletter-form .promo-text #frm_form_4_container {
    width: 100%;
  }
}
.newsletter-form .promo-text #frm_form_4_container .form-field .frm_primary_label {
  display: none;
}
.newsletter-form .promo-text #frm_form_4_container .form-field input {
  background-color: transparent;
  border: 1px solid black;
  border-radius: 100px;
  padding: 10px 20px;
  box-shadow: none;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .newsletter-form .promo-text #frm_form_4_container .form-field input {
    padding: 5px 15px;
    font-size: 1rem;
  }
}
.newsletter-form .promo-text #frm_form_4_container .form-field input::-moz-placeholder {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
}
.newsletter-form .promo-text #frm_form_4_container .form-field input::placeholder {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .newsletter-form .promo-text #frm_form_4_container .form-field input::-moz-placeholder {
    font-size: 1rem;
  }
  .newsletter-form .promo-text #frm_form_4_container .form-field input::placeholder {
    font-size: 1rem;
  }
}
.newsletter-form .promo-text #frm_form_4_container .form-field input:focus {
  box-shadow: none;
}
.newsletter-form .promo-text #frm_form_4_container #frm_field_24_container input {
  padding: 0;
}
.newsletter-form .promo-text #frm_form_4_container #frm_field_24_container label {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .newsletter-form .promo-text #frm_form_4_container #frm_field_24_container label {
    font-size: 1rem;
  }
}
.newsletter-form .promo-text #frm_form_4_container #frm_field_24_container .frm_radio {
  margin-bottom: 15px;
}
.newsletter-form .promo-text #frm_form_4_container #frm_field_24_container .frm_radio:last-of-type {
  margin-bottom: 0;
}
.newsletter-form .promo-text #frm_form_4_container .frm_button_submit {
  background-color: black;
  border-radius: 100px;
  border: none;
  box-shadow: none;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #F6F1EE;
}
.newsletter-form img {
  position: absolute;
  right: -100px;
  top: -100px;
  transform: rotate(45deg);
  width: 500px;
}
@media (max-width: 1292px) {
  .newsletter-form img {
    width: 350px;
  }
}
@media (max-width: 1024px) {
  .newsletter-form img {
    right: -130px;
    top: -150px;
  }
}
@media (max-width: 1024px) {
  .newsletter-form img {
    right: unset;
    transform: rotate(20deg);
  }
}

.selection {
  margin-bottom: 230px;
}
.selection .container h2 {
  font-size: 2.88rem;
  line-height: 3.88rem;
  color: black;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .selection .container h2 {
    text-align: center;
  }
}
.selection .container .books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 50px;
}
@media (max-width: 1292px) {
  .selection .container .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .selection .container .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .selection .container .books-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.selection .container .books-grid .book-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.selection .container .books-grid .book-item a:has(img) {
  display: block;
}
.selection .container .books-grid .book-item img {
  width: 100%;
  height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .selection .container .books-grid .book-item img {
    height: 335px;
  }
}
.selection .container .books-grid .book-item h3 {
  color: #43328D;
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 100;
  margin: 0;
  margin-top: 20px;
}
.selection .container .books-grid .book-item .authors-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.selection .container .books-grid .book-item .authors-list ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
.selection .container .books-grid .book-item .authors-list ul li::after {
  content: "|";
  color: #43328D;
  margin-right: 5px;
}
.selection .container .books-grid .book-item .authors-list ul li:last-child::after {
  display: none;
}
.selection .container .books-grid .book-item .authors-list ul li a {
  color: #43328D;
  font-size: 1rem;
}
.selection .container .books-grid .book-item .authors-list a.btn {
  padding: 5px 30px;
  border-color: #43328D;
  color: #43328D;
}
.selection .container .books-grid .book-item .authors-list a.btn:hover {
  background-color: #43328D;
  color: white;
}

#authors {
  background-color: #F3C6AE;
  padding: 50px 0;
  clear: both;
}
#authors .container .row {
  align-items: center;
}
@media (max-width: 1024px) {
  #authors .container .row {
    flex-direction: column;
  }
}
#authors .container .row .col2:first-of-type {
  width: 40%;
}
@media (max-width: 1517px) {
  #authors .container .row .col2:first-of-type {
    width: 45%;
  }
}
@media (max-width: 1024px) {
  #authors .container .row .col2:first-of-type {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
#authors .container .row .col2:first-of-type h2 {
  color: #F6F1EE;
  position: relative;
}
@media (max-width: 1024px) {
  #authors .container .row .col2:first-of-type h2 {
    top: 40px;
  }
}
#authors .container .row .col2:first-of-type h2 em {
  font-style: normal;
  position: absolute;
  bottom: -80px;
  left: 80px;
}
@media (max-width: 1292px) {
  #authors .container .row .col2:first-of-type h2 em {
    left: 30px;
  }
}
@media (max-width: 1024px) {
  #authors .container .row .col2:first-of-type h2 em {
    position: unset;
  }
}
#authors .container .row .col2:first-of-type img {
  width: 440px;
  height: auto;
}
@media (max-width: 1292px) {
  #authors .container .row .col2:first-of-type img {
    width: 340px;
  }
}
#authors .container .row .col2:last-of-type {
  width: 60%;
}
@media (max-width: 1517px) {
  #authors .container .row .col2:last-of-type {
    width: 55%;
  }
}
@media (max-width: 1024px) {
  #authors .container .row .col2:last-of-type {
    width: 100%;
  }
}
#authors .container .row .col2:last-of-type p {
  margin-left: -10%;
  width: 80%;
  color: white;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 1292px) {
  #authors .container .row .col2:last-of-type p {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #authors .container .row .col2:last-of-type p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #authors .container .row .col2:last-of-type p {
    text-align: center;
  }
}
#authors .container .row .col2:last-of-type p:last-of-type {
  margin-top: 40px;
}
#authors .container .row .col2:last-of-type a.btn {
  border: 1px solid white;
  color: white;
}
#authors .container .row .col2:last-of-type a.btn:hover {
  background-color: white;
  color: #F3C6AE;
}
#authors .container .row .wp-image-62 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
}
@media (max-width: 1292px) {
  #authors .container .row .wp-image-62 {
    width: 300px;
    right: -150px;
  }
}
#authors .container .row .wp-image-63 {
  position: absolute;
  right: -100px;
  bottom: -200px;
  width: 600px;
}
@media (max-width: 1292px) {
  #authors .container .row .wp-image-63 {
    width: 450px;
    bottom: -150px;
  }
}
@media (max-width: 1024px) {
  #authors .container .row .wp-image-63 {
    display: none;
  }
}

#quote {
  margin-top: 240px;
  margin-bottom: 340px;
}
@media (max-width: 1292px) {
  #quote {
    margin-top: 200px;
  }
}
@media (max-width: 1024px) {
  #quote {
    margin-top: 100px;
  }
}
#quote .container .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#quote .container .row h4 {
  color: #43328D;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 100;
  line-height: 4.8rem;
  margin-bottom: 0;
  z-index: 2;
}
@media (max-width: 1292px) {
  #quote .container .row h4 {
    font-size: 2.5rem;
    line-height: 4rem;
  }
}
@media (max-width: 1024px) {
  #quote .container .row h4 {
    font-size: 2rem;
  }
}
#quote .container .row p {
  color: #43328D;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  z-index: 2;
}
#quote .container .row .visage-quote {
  position: absolute;
  width: 315px;
  left: 0;
  top: 150px;
  transition: transform 0.3s ease;
}
@media (max-width: 1292px) {
  #quote .container .row .visage-quote {
    width: 295px;
  }
}
@media (max-width: 768px) {
  #quote .container .row .visage-quote {
    top: 300px;
    width: 200px;
  }
}
#quote .container .row .etoiles-quote {
  width: 160px;
  position: absolute;
  right: 200px;
  top: 300px;
}
@media (max-width: 1024px) {
  #quote .container .row .etoiles-quote {
    right: 100px;
    top: -200px;
  }
}
@media (max-width: 576px) {
  #quote .container .row .etoiles-quote {
    display: none;
  }
}

#videos {
  margin-top: 320px;
  padding-top: 125px;
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  #videos {
    margin-top: 200px;
  }
}
#videos:after {
  position: absolute;
  content: "";
  background-color: #43328D;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
}
#videos .container .row:first-of-type {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  position: relative;
  background-image: url(images/el_graphique_videos.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  #videos .container .row:first-of-type {
    justify-content: center;
    background-image: none;
  }
}
#videos .container .row:first-of-type h2 {
  color: #D7CEFC;
}
#videos .container .row:first-of-type a.btn {
  border: 1px solid #D7CEFC;
  color: #D7CEFC;
}
#videos .container .row:first-of-type a.btn:hover {
  color: #43328D;
  background-color: #D7CEFC;
}
#videos .container .row:last-of-type {
  justify-content: space-between;
}
#videos .container .row:last-of-type .our-videos {
  width: 33%;
  display: block;
  transition: transform 0.7s ease;
  position: relative;
}
@media (max-width: 768px) {
  #videos .container .row:last-of-type .our-videos {
    width: 48%;
  }
}
@media (max-width: 576px) {
  #videos .container .row:last-of-type .our-videos {
    width: 100%;
  }
}
#videos .container .row:last-of-type .our-videos a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  #videos .container .row:last-of-type .our-videos a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#videos .container .row:last-of-type .our-videos img.play {
  position: absolute;
  width: 88px;
  height: 88px;
}
#videos .container .row:last-of-type .our-videos img.video-img {
  width: 400px;
  height: auto;
  box-shadow: 20px 20px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
  #videos .container .row:last-of-type .our-videos img.video-img {
    width: 70%;
  }
}
#videos .container .row:last-of-type .our-videos:hover {
  transform: scale(1.1);
}

#articles {
  margin-top: 230px;
}
#articles .container {
  max-width: 100vw;
  padding: 0;
}
#articles .container .row {
  flex-direction: column;
}
#articles .container .row:first-of-type {
  max-width: 90vw;
  margin: 0 auto;
}
#articles .container .row:first-of-type h2 {
  margin-bottom: 80px;
  color: #43328D;
}
@media (max-width: 768px) {
  #articles .container .row:first-of-type h2 {
    text-align: center;
  }
}
#articles .container .row:last-of-type .carousel-articles {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
}
#articles .container .row:last-of-type .carousel-articles .slick-track {
  display: flex;
  align-items: center;
}
#articles .container .row:last-of-type .carousel-articles .slick-prev,
#articles .container .row:last-of-type .carousel-articles .slick-next {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  z-index: 2;
  background-color: #43328D;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1292px) {
  #articles .container .row:last-of-type .carousel-articles .slick-prev,
  #articles .container .row:last-of-type .carousel-articles .slick-next {
    height: 75px;
    width: 75px;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .slick-prev,
  #articles .container .row:last-of-type .carousel-articles .slick-next {
    height: 55px;
    width: 55px;
  }
}
#articles .container .row:last-of-type .carousel-articles .slick-prev:hover,
#articles .container .row:last-of-type .carousel-articles .slick-next:hover {
  background-color: #978BCB;
}
#articles .container .row:last-of-type .carousel-articles .slick-next {
  right: 100px;
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .slick-next {
    right: 25px;
  }
}
#articles .container .row:last-of-type .carousel-articles .slick-next:after {
  content: "";
  background-image: url("images/arrow-carousel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 50px;
  height: 50px;
  transform: scaleX(-1);
}
@media (max-width: 1292px) {
  #articles .container .row:last-of-type .carousel-articles .slick-next:after {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .slick-next:after {
    height: 30px;
    width: 30px;
  }
}
#articles .container .row:last-of-type .carousel-articles .slick-prev {
  left: 100px;
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .slick-prev {
    left: 25px;
  }
}
#articles .container .row:last-of-type .carousel-articles .slick-prev:after {
  content: "";
  background-image: url("images/arrow-carousel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 50px;
  height: 50px;
}
@media (max-width: 1292px) {
  #articles .container .row:last-of-type .carousel-articles .slick-prev:after {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .slick-prev:after {
    height: 30px;
    width: 30px;
  }
}
#articles .container .row:last-of-type .carousel-articles .article {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 600px;
  width: 70vw;
  margin: 0 50px;
  transition: height 0.5s ease, opacity 0.5s ease;
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .article {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #articles .container .row:last-of-type .carousel-articles .article {
    margin: 0 25px;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .article {
    margin: 0 50px;
    height: 500px;
  }
}
#articles .container .row:last-of-type .carousel-articles .article.sibling {
  height: 500px;
  opacity: 50%;
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .article.sibling {
    height: 400px;
  }
}
#articles .container .row:last-of-type .carousel-articles .article .col2 {
  height: 100%;
}
#articles .container .row:last-of-type .carousel-articles .article .col2:first-of-type {
  width: 45%;
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:first-of-type {
    width: 100%;
    height: 40%;
  }
}
@media (max-width: 768px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:first-of-type {
    height: 20%;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:first-of-type {
    height: 30%;
  }
}
#articles .container .row:last-of-type .carousel-articles .article .col2:first-of-type img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type {
  width: 55%;
  background-color: #D7CEFC;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 82px;
}
@media (max-width: 1292px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type {
    width: 100%;
    height: 60%;
  }
}
@media (max-width: 768px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type {
    height: 80%;
  }
}
@media (max-width: 576px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type {
    height: 70%;
  }
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu h3 {
  margin-top: 17px;
  margin-bottom: 54px;
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu h3 a {
  color: #43328D;
  font-weight: 400;
  font-size: 2.5rem;
}
@media (max-width: 1292px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu h3 a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  #articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu h3 a {
    font-size: 1.2rem;
  }
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu .date {
  font-family: "Playfair Display", serif;
  color: #978BCB;
  font-size: 1.5rem;
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu a.btn {
  color: #43328D;
  border: 1px solid #43328D;
}
#articles .container .row:last-of-type .carousel-articles .article .col2:last-of-type .contenu a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}

.manuscript {
  margin: 230px 0;
}
.manuscript .container {
  max-width: none;
  padding: 0;
}
.manuscript .container .row {
  align-items: center;
}
.manuscript .container .row .col2:first-of-type {
  height: auto;
  width: 70%;
  background-color: #F3C6AE;
  padding: 45px 200px 45px 140px;
  overflow: hidden;
  display: flex;
  position: relative;
}
@media (max-width: 1292px) {
  .manuscript .container .row .col2:first-of-type {
    padding: 45px 100px 45px 80px;
  }
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:first-of-type {
    width: 100%;
    padding: 45px;
  }
}
.manuscript .container .row .col2:first-of-type::after {
  content: "";
  background-image: url("images/mandala.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -67%;
  right: -35%;
  width: 900px;
  height: 900px;
  z-index: 1;
  opacity: 10%;
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:first-of-type::after {
    display: none;
  }
}
.manuscript .container .row .col2:first-of-type::before {
  content: "";
  background-image: url("images/mandala.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -67%;
  left: -35%;
  width: 900px;
  height: 900px;
  z-index: 1;
  opacity: 10%;
}
.manuscript .container .row .col2:first-of-type .contenu {
  z-index: 2;
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:first-of-type .contenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.manuscript .container .row .col2:first-of-type .contenu h2 {
  color: #F6F1EE;
  width: 50%;
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:first-of-type .contenu h2 {
    text-align: center;
    width: 100%;
  }
}
.manuscript .container .row .col2:first-of-type .contenu h2 em {
  font-style: normal;
  position: relative;
  bottom: 40px;
  left: 100px;
}
@media (max-width: 1024px) {
  .manuscript .container .row .col2:first-of-type .contenu h2 em {
    left: 0;
  }
}
.manuscript .container .row .col2:first-of-type .contenu p {
  color: white;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:first-of-type .contenu p {
    text-align: center;
    font-size: 1rem;
  }
}
.manuscript .container .row .col2:first-of-type .contenu p:last-of-type {
  margin-top: 40px;
}
.manuscript .container .row .col2:first-of-type .contenu a.btn {
  border: 1px solid white;
  color: white;
}
.manuscript .container .row .col2:first-of-type .contenu a.btn:hover {
  background-color: white;
  color: #F3C6AE;
}
.manuscript .container .row .col2:last-of-type {
  height: auto;
  width: 30%;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .manuscript .container .row .col2:last-of-type {
    display: none;
  }
}
.manuscript .container .row .col2:last-of-type .img-manuscript {
  width: 700px;
  position: relative;
  top: -100px;
  left: -100px;
}
@media (max-width: 1292px) {
  .manuscript .container .row .col2:last-of-type .img-manuscript {
    top: 0;
    left: -50px;
  }
}

.testimonials {
  margin-bottom: 230px;
}
.testimonials .container .row:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .testimonials .container .row:first-of-type {
    justify-content: center;
    align-items: center;
  }
}
.testimonials .container .row:first-of-type .slick-arrows {
  margin: 70px 0;
  display: flex;
}
.testimonials .container .row:first-of-type .slick-arrow {
  font-size: 2rem;
  background-color: transparent;
  border: 4px solid #43328D;
  border-radius: 100%;
  width: 61px;
  height: 61px;
  font-weight: 800;
  color: #43328D;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.testimonials .container .row:first-of-type .slick-arrow::after {
  content: "";
  background-image: url("images/arrow2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 100%;
  position: absolute;
}
.testimonials .container .row:first-of-type .slick-arrow:hover {
  background-color: #43328D;
}
.testimonials .container .row:first-of-type .slick-arrow:hover:after {
  filter: brightness(100);
}
.testimonials .container .row:first-of-type .slick-arrow:first-of-type {
  margin-right: 16px;
}
.testimonials .container .row:first-of-type .slick-arrow:first-of-type::after {
  transform: scaleX(-1);
}
.testimonials .container .row:first-of-type h2 {
  color: #43328D;
}
.testimonials .container .row:last-of-type .carousel-testimonials {
  width: 100%;
  display: flex;
  position: relative;
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial {
  background-color: #D7CEFC;
  padding: 85px 70px;
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 576px) {
  .testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil img.photo-profil {
  width: 122px;
  height: 122px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 576px) {
  .testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil img.photo-profil {
    margin-bottom: 10px;
  }
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating {
  margin-left: 31px;
}
@media (max-width: 576px) {
  .testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating h3 {
  color: #43328D;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating .etoiles {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating .etoiles span img {
  width: 19px;
  height: 19px;
  filter: brightness(0.8);
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .profil .nom-rating .etoiles span.etoile-default {
  opacity: 30%;
}
.testimonials .container .row:last-of-type .carousel-testimonials .testimonial .contenu p {
  color: #43328D;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 400px;
}
@media (max-width: 1024px) {
  .testimonials .container .row:last-of-type .carousel-testimonials .testimonial .contenu p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .testimonials .container .row:last-of-type .carousel-testimonials .testimonial .contenu p {
    text-align: center;
  }
}
.testimonials .container .row:last-of-type .slick-list {
  margin: 0 -15px;
}
.testimonials .container .row:last-of-type .slick-slide {
  margin: 0 15px;
}

@media (max-width: 768px) {
  footer .row:first-of-type {
    flex-direction: column;
  }
}
footer .row:first-of-type .col2:first-of-type {
  background-color: black;
  width: 35%;
  padding: 110px 140px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 1292px) {
  footer .row:first-of-type .col2:first-of-type {
    padding: 100px;
  }
}
@media (max-width: 1024px) {
  footer .row:first-of-type .col2:first-of-type {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:first-of-type {
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:first-of-type {
    align-items: center;
  }
}
footer .row:first-of-type .col2:first-of-type::after {
  content: "";
  position: absolute;
  height: 400px;
  width: 100%;
  background-image: url("images/symbole-ariane.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 51%;
  opacity: 10%;
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:first-of-type::after {
    height: 300px;
  }
}
footer .row:first-of-type .col2:first-of-type .logo {
  width: 100%;
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:first-of-type .logo {
    width: 60%;
  }
}
footer .row:first-of-type .col2:first-of-type .infos {
  margin: 50px 0;
}
footer .row:first-of-type .col2:first-of-type .infos p {
  color: #D7CEFC;
  font-size: 1.2rem;
  margin: 0;
}
@media (max-width: 1024px) {
  footer .row:first-of-type .col2:first-of-type .infos p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:first-of-type .infos p {
    text-align: center;
  }
}
footer .row:first-of-type .col2:first-of-type .infos p:first-of-type {
  margin-bottom: 20px;
}
footer .row:first-of-type .col2:first-of-type .reseaux {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .row:first-of-type .col2:first-of-type .reseaux a {
  display: block;
}
footer .row:first-of-type .col2:first-of-type .reseaux a img {
  width: 36px;
  height: auto;
}
footer .row:first-of-type .col2:last-of-type {
  background-color: #43328D;
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:last-of-type {
    width: 100%;
    justify-content: space-between;
    padding: 0 50px;
    background-color: black;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:last-of-type .contenu {
    border-top: 1px solid #D7CEFC;
    width: 100%;
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:last-of-type .contenu {
    flex-direction: column;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu .menu {
  padding-right: 100px;
  border-right: 1px solid #D7CEFC;
  margin-right: 100px;
}
@media (max-width: 1292px) {
  footer .row:first-of-type .col2:last-of-type .contenu .menu {
    padding-right: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:last-of-type .contenu .menu {
    width: 50%;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:last-of-type .contenu .menu {
    border-right: 0;
    width: 100%;
    border-bottom: 1px solid #D7CEFC;
    padding-bottom: 50px;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu .menu nav ul.princ-menu li {
  margin: 10px 0;
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:last-of-type .contenu .menu nav ul.princ-menu li {
    text-align: center;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu .menu nav ul.princ-menu li a {
  color: #D7CEFC;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 1292px) {
  footer .row:first-of-type .col2:last-of-type .contenu .menu nav ul.princ-menu li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  footer .row:first-of-type .col2:last-of-type .contenu .newsletter {
    width: 50%;
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:last-of-type .contenu .newsletter {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter p {
  color: #D7CEFC;
  font-size: 1.5rem;
  margin: 10px 0;
  font-family: "Playfair Display", serif;
}
@media (max-width: 1292px) {
  footer .row:first-of-type .col2:last-of-type .contenu .newsletter p {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  footer .row:first-of-type .col2:last-of-type .contenu .newsletter p {
    text-align: center;
  }
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter a.btn {
  margin-top: 20px;
  display: block;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container {
  display: none;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container {
  position: relative;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container label {
  display: none;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_form_field.frm6 {
  grid-column: span 12/span 12 !important;
  width: 300px;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_form_field.frm6 #field_uobqv {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #D7CEFC;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #D7CEFC;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_form_field.frm6 #field_uobqv::-moz-placeholder {
  color: #D7CEFC;
  opacity: 25%;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 200;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_form_field.frm6 #field_uobqv::placeholder {
  color: #D7CEFC;
  opacity: 25%;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 200;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_button_submit {
  position: absolute;
  right: 20px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_fields_container .frm_button_submit::after {
  content: "";
  position: absolute;
  background-image: url(images/send.png);
  width: 30px;
  height: 30px;
  display: block;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_message,
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_error_style {
  background-color: transparent;
  color: #D7CEFC;
  border: none;
  padding: 0;
  margin: 0;
}
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_message p,
footer .row:first-of-type .col2:last-of-type .contenu .newsletter #frm_form_3_container .frm_error_style p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}
footer .row:last-of-type {
  background-color: black;
}
@media (max-width: 768px) {
  footer .row:last-of-type {
    background-color: #43328D;
  }
}
footer .row:last-of-type p {
  color: #D7CEFC;
  text-align: center;
  width: 100%;
  font-size: 1rem;
}
@media (max-width: 768px) {
  footer .row:last-of-type p {
    font-size: 0.8rem;
  }
}

.single-books aside {
  display: none;
}

.single-book .boutons {
  max-width: 70vw;
  margin: 125px auto 0 auto;
}
@media (max-width: 1024px) {
  .single-book .boutons {
    max-width: 80vw;
  }
}
@media (max-width: 576px) {
  .single-book .boutons {
    display: flex;
    justify-content: space-between;
  }
}
.single-book .boutons a.btn {
  border: 1px solid #43328D;
  color: #43328D;
}
.single-book .boutons a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}
.single-book .boutons a.btn:first-of-type {
  margin-right: 30px;
}
.single-book .container {
  max-width: 100vw;
  padding: 0;
  position: relative;
}
.single-book .container:after {
  content: "";
  background-image: url("images/symbole-ariane.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 500px;
  height: 500px;
  top: 0%;
  right: -10%;
  opacity: 10%;
  z-index: -1;
}
.single-book .container .row h2 {
  font-size: 2rem;
}
.single-book .container .row h3 {
  margin: 0;
  font-weight: 600;
}
.single-book .container .row:nth-child(1) {
  max-width: 70vw;
  margin: 0 auto;
  padding: 125px 20px 125px 20px;
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) {
    flex-direction: column;
    max-width: 80vw;
  }
}
.single-book .container .row:nth-child(1) .col:first-of-type {
  margin-right: 100px;
  width: auto;
  position: relative;
}
@media (max-width: 1410px) {
  .single-book .container .row:nth-child(1) .col:first-of-type {
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) .col:first-of-type {
    width: 100%;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media (max-width: 780px) {
  .single-book .container .row:nth-child(1) .col:first-of-type {
    flex-direction: column;
  }
}
.single-book .container .row:nth-child(1) .col:first-of-type img {
  width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) .col:first-of-type img {
    margin-right: 50px;
    width: 250px;
  }
}
@media (max-width: 780px) {
  .single-book .container .row:nth-child(1) .col:first-of-type img {
    align-self: center;
    margin-right: 0;
  }
}
.single-book .container .row:nth-child(1) .col:first-of-type:after {
  content: "";
  width: 300px;
  height: 470px;
  border: 4px solid #F3C6AE;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) .col:first-of-type:after {
    width: 250px;
    height: 370px;
  }
}
@media (max-width: 768px) {
  .single-book .container .row:nth-child(1) .col:first-of-type:after {
    left: 45%;
    transform: translateX(-50%);
  }
}
.single-book .container .row:nth-child(1) .col:last-of-type {
  width: auto;
  flex: 1;
}
@media (max-width: 1410px) {
  .single-book .container .row:nth-child(1) .col:last-of-type {
    width: 56%;
  }
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) .col:last-of-type {
    width: 100%;
    margin-right: 0;
  }
}
.single-book .container .row:nth-child(1) .col:last-of-type .titre {
  margin-bottom: 46px;
}
.single-book .container .row:nth-child(1) .col:last-of-type .titre h2 {
  font-size: 1.4rem;
  font-family: "Open sans", sans-serif;
  font-weight: 500;
}
.single-book .container .row:nth-child(1) .col:last-of-type .titre h1 {
  color: black;
  margin: 0;
  font-size: 3rem;
  margin-bottom: 20px;
}
@media (max-width: 780px) {
  .single-book .container .row:nth-child(1) .col:last-of-type .titre h1 {
    font-size: 2rem;
  }
}
.single-book .container .row:nth-child(1) .col:last-of-type .links {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.single-book .container .row:nth-child(1) .col:last-of-type .links .link a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: black;
}
.single-book .container .row:nth-child(1) .col:last-of-type .links .link a img {
  width: 30px;
  margin-right: 10px;
}
.single-book .container .row:nth-child(1) .col:last-of-type .links .link {
  margin-bottom: 20px;
}
.single-book .container .row:nth-child(1) .col:last-of-type .description {
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid black;
}
.single-book .container .row:nth-child(1) .col:last-of-type .description p,
.single-book .container .row:nth-child(1) .col:last-of-type .description ul,
.single-book .container .row:nth-child(1) .col:last-of-type .description li,
.single-book .container .row:nth-child(1) .col:last-of-type .description a {
  font-size: 1.2rem;
  color: black;
  line-height: 2rem;
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(1) .col:last-of-type .description p,
  .single-book .container .row:nth-child(1) .col:last-of-type .description ul,
  .single-book .container .row:nth-child(1) .col:last-of-type .description li,
  .single-book .container .row:nth-child(1) .col:last-of-type .description a {
    font-size: 1rem;
  }
}
.single-book .container .row:nth-child(2) {
  margin: 0 auto;
  background-color: #D7CEFC;
  position: relative;
  overflow: hidden;
}
.single-book .container .row:nth-child(2):before {
  content: "";
  background-image: url("images/mandala.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 50%;
  height: 100%;
  top: -50%;
  opacity: 10%;
  z-index: 0;
}
.single-book .container .row:nth-child(2) .colonne {
  max-width: 70vw;
  width: 100%;
  margin: 0 auto;
  padding: 125px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(2) .colonne {
    max-width: 80vw;
  }
}
.single-book .container .row:nth-child(2) .colonne .authors-list h2 {
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #43328D;
}
@media (max-width: 576px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list h2 {
    text-align: center;
  }
}
.single-book .container .row:nth-child(2) .colonne .authors-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 50px;
}
@media (max-width: 576px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul {
    justify-content: center;
  }
}
.single-book .container .row:nth-child(2) .colonne .authors-list ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-book .container .row:nth-child(2) .colonne .authors-list ul li img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px 200px 0 0;
  width: 350px;
}
@media (max-width: 1292px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul li img {
    height: 350px;
    width: 300px;
  }
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul li img {
    height: 300px;
    width: 250px;
  }
}
@media (max-width: 780px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul li img {
    height: 250px;
    width: 200px;
  }
}
@media (max-width: 576px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul li img {
    height: 350px;
    width: 300px;
  }
}
.single-book .container .row:nth-child(2) .colonne .authors-list ul li a {
  width: 100%;
  background-color: white;
  padding: 40px 10px;
  font-size: 2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #43328D;
}
@media (max-width: 1024px) {
  .single-book .container .row:nth-child(2) .colonne .authors-list ul li a {
    padding: 20px 10px;
    font-size: 1.5rem;
  }
}
.single-book .container .row .about {
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .single-book .container .row .about {
    display: none;
  }
}
.single-book .container .row .about.about-mobile {
  display: none;
}
@media (max-width: 768px) {
  .single-book .container .row .about.about-mobile {
    display: block;
  }
}
@media (max-width: 576px) {
  .single-book .container .row .about .informations h2 {
    margin-bottom: 30px;
  }
}
.single-book .container .row .about .informations .meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.single-book .container .row .about .informations .meta p {
  margin: 10px 0;
}
@media (max-width: 780px) {
  .single-book .container .row .about h2 {
    font-size: 1.4rem;
  }
}

.header-archive {
  height: 40vh;
  background-image: url("images/bg_books.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 125px;
}
@media (max-width: 576px) {
  .header-archive {
    height: 30vh;
  }
}
.header-archive .col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header-archive .col h1 {
  margin: 0;
  color: black;
  text-align: center;
}
@media (max-width: 576px) {
  .header-archive .col h1 {
    font-size: 3rem;
  }
}

.all-books {
  margin-bottom: 125px;
}
.all-books .container .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-books .container .row .col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  row-gap: 75px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 576px) {
  .all-books .container .row .col {
    justify-content: center;
  }
}
.all-books .container .row .col .livre {
  width: 18%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
}
.all-books .container .row .col .livre:hover {
  transform: scale(1.1);
}
@media (max-width: 1500px) {
  .all-books .container .row .col .livre {
    width: 23%;
  }
}
@media (max-width: 1292px) {
  .all-books .container .row .col .livre {
    width: 31%;
  }
}
@media (max-width: 980px) {
  .all-books .container .row .col .livre {
    width: 47%;
  }
}
@media (max-width: 576px) {
  .all-books .container .row .col .livre {
    width: 100%;
  }
}
.all-books .container .row .col .livre .image {
  height: 100%;
  width: 100%;
  position: relative;
}
.all-books .container .row .col .livre .image a {
  display: flex;
  justify-content: center;
}
.all-books .container .row .col .livre .image img {
  width: 100%;
  max-width: 295px;
}
@media (max-width: 576px) {
  .all-books .container .row .col .livre .image img {
    width: 50%;
  }
}
.all-books .container .row .col .infos {
  width: 100%;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.all-books .container .row .col .infos h2 {
  font-size: 1.2rem;
  text-align: center;
}
.all-books .container .row .col .infos h2 a {
  color: #43328D;
}
.all-books .container .row .col .infos .authors-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.all-books .container .row .col .infos .authors-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 20px 0;
}
.all-books .container .row .col .infos .authors-list ul li:after {
  content: "|";
  color: #43328D;
  margin-right: 5px;
}
.all-books .container .row .col .infos .authors-list ul li:last-of-type:after {
  display: none;
}
.all-books .container .row .col .infos .authors-list ul li a {
  color: #43328D;
}
.all-books .container .row .col .infos .authors-list a.btn {
  padding: 5px 30px;
  border-color: #43328D;
  color: #43328D;
}
.all-books .container .row .col .infos .authors-list a.btn:hover {
  background-color: #43328D;
  color: white;
}

.pagination {
  margin-top: 40px;
}
.pagination .page-numbers {
  margin: 0 5px;
  color: #43328D;
}
.pagination a.page-numbers:not(.next):not(.prev) {
  border: 1px solid #7367AB;
  color: #7367AB;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.single-article .container {
  max-width: 100vw;
  padding: 0;
}
.single-article .container .row {
  position: relative;
}
.single-article .container .row:after {
  content: "";
  background-image: url(images/fleur.svg);
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 700px;
  height: 700px;
  bottom: 30%;
  left: -10%;
  z-index: -1;
  opacity: 30%;
}
.single-article .container .row .col {
  max-width: 100vw;
  width: 100%;
}
.single-article .container .row .col section.titre {
  position: relative;
  overflow: hidden;
  padding: 100px 0 200px 0;
}
.single-article .container .row .col section.titre .header-article {
  position: absolute;
  top: -100px;
  width: 200%;
  height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: blur(10px) brightness(70%);
}
.single-article .container .row .col section.titre .container {
  max-width: 70vw;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .single-article .container .row .col section.titre .container {
    max-width: 80vw;
  }
}
.single-article .container .row .col section.titre .container h1 {
  margin: 0;
  color: white;
  font-size: 4rem;
}
@media (max-width: 1024px) {
  .single-article .container .row .col section.titre .container h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .single-article .container .row .col section.titre .container h1 {
    text-align: center;
  }
}
.single-article .container .row .col section.titre .container .about {
  color: white;
}
@media (max-width: 576px) {
  .single-article .container .row .col section.titre .container .about {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.single-article .container .row .col section.titre .container .about p {
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  .single-article .container .row .col section.titre .container .about p {
    font-size: 1.2rem;
  }
}
.single-article .container .row .col section.titre .container .about .authors-list ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.single-article .container .row .col section.titre .container .about .authors-list ul li {
  margin-right: 40px;
}
.single-article .container .row .col section.titre .container .about .authors-list ul li:last-of-type {
  margin-right: 0;
}
.single-article .container .row .col section.titre .container .about .authors-list ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 576px) {
  .single-article .container .row .col section.titre .container .about .authors-list ul li img {
    width: 40px;
    height: 40px;
  }
}
.single-article .container .row .col section.titre .container .about .authors-list ul li a {
  color: white;
  font-size: 1.2rem;
  margin-left: 20px;
  font-weight: 100;
}
.single-article .container .row .col .article-img {
  position: relative;
  z-index: 2;
  max-width: 70vw;
  margin: -150px auto 0;
}
@media (max-width: 1024px) {
  .single-article .container .row .col .article-img {
    max-width: 80vw;
  }
}
.single-article .container .row .col .article-img img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .single-article .container .row .col .article-img img {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .single-article .container .row .col .article-img img {
    height: 400px;
  }
}
.single-article .container .row .col2 {
  max-width: 70vw;
  margin: 0 auto;
  width: 100%;
  margin-top: 75px;
  margin-bottom: 125px;
}
@media (max-width: 1024px) {
  .single-article .container .row .col2 {
    max-width: 80vw;
  }
}
@media (max-width: 576px) {
  .single-article .container .row .col2 {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.single-article .container .row .col2 .boutons {
  margin-bottom: 75px;
}
.single-article .container .row .col2 .boutons a.btn {
  border-color: #43328D;
  color: #43328D;
}
.single-article .container .row .col2 .boutons a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}
.single-article .container .row .col2 p {
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 576px) {
  .single-article .container .row .col2 p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .single-article .container .row .col2 p {
    text-align: center;
  }
}

.all-articles {
  margin-bottom: 125px;
}
.all-articles .container {
  max-width: 90vw;
}
.all-articles .container .col {
  display: flex;
  flex-wrap: wrap;
  row-gap: 150px;
  width: 100%;
}
.all-articles .container .col .article {
  width: 31%;
  margin-right: 2%;
}
@media (max-width: 1024px) {
  .all-articles .container .col .article {
    width: 48%;
    margin-right: 2%;
  }
}
@media (max-width: 780px) {
  .all-articles .container .col .article {
    width: 100%;
  }
}
.all-articles .container .col .article .image {
  height: 400px;
  overflow: hidden;
}
.all-articles .container .col .article .image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 1s ease;
}
.all-articles .container .col .article .image a img:hover {
  transform: scale(1.15);
}
.all-articles .container .col .article .infos {
  margin-top: 30px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.all-articles .container .col .article .infos .bloc-infos p.date {
  margin: 0;
  font-weight: 200;
  font-size: 1.2rem;
}
.all-articles .container .col .article .infos .bloc-infos h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-bottom: 20px;
}
.all-articles .container .col .article .infos .bloc-infos h2 a {
  color: black;
}
.all-articles .container .col .article .infos .bloc-infos .post-excerpt {
  margin-bottom: 40px;
}
.all-articles .container .col .article .infos a.btn {
  color: black;
  border-color: black;
}
.all-articles .container .col .article .infos a.btn:hover {
  background-color: black;
  color: white;
}

.single-author:before {
  content: "";
  height: 400px;
  width: 100%;
  background-color: #F3C6AE;
  position: absolute;
  top: 0;
  z-index: -1;
}
.single-author .container {
  z-index: 2;
  max-width: 70vw;
}
@media (max-width: 1024px) {
  .single-author .container {
    max-width: 80vw;
  }
}
.single-author .container .row {
  display: flex;
  flex-direction: column;
}
.single-author .container .row .col2:first-of-type {
  width: 100%;
  display: flex;
  margin-top: 100px;
}
@media (max-width: 780px) {
  .single-author .container .row .col2:first-of-type {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .single-author .container .row .col2:first-of-type {
    align-items: center;
  }
}
.single-author .container .row .col2:first-of-type img {
  width: 350px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 200px 200px 0 0;
  position: relative;
}
@media (max-width: 780px) {
  .single-author .container .row .col2:first-of-type img {
    margin-bottom: 50px;
  }
}
.single-author .container .row .col2:first-of-type h1 {
  margin: 0 0 0 200px;
  font-size: 4rem;
  color: black;
}
@media (max-width: 1410px) {
  .single-author .container .row .col2:first-of-type h1 {
    margin: 0 0 0 100px;
  }
}
@media (max-width: 1024px) {
  .single-author .container .row .col2:first-of-type h1 {
    font-size: 3rem;
    margin: 0 0 0 50px;
  }
}
@media (max-width: 780px) {
  .single-author .container .row .col2:first-of-type h1 {
    margin: 0;
  }
}
.single-author .container .row .col2:last-of-type {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .single-author .container .row .col2:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.single-author .container .row .col2:last-of-type p {
  font-size: 1.2rem;
  line-height: 2rem;
}
.single-author .container .row .col2:last-of-type p:last-of-type {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .single-author .container .row .col2:last-of-type p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .single-author .container .row .col2:last-of-type p {
    text-align: center;
  }
}
.single-author .container .row .col2:last-of-type a.btn {
  border-color: #F3C6AE;
  color: #F3C6AE;
}
.single-author .container .row .col2:last-of-type a.btn:hover {
  background-color: #F3C6AE;
  color: white;
}
.single-author .container-books {
  background-color: #F6F1EE;
  position: relative;
}
.single-author .container-books:before {
  content: "";
  background-image: url(images/visage.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 550px;
  height: 550px;
  position: absolute;
  right: -100px;
  top: -300px;
}
@media (max-width: 780px) {
  .single-author .container-books:before {
    width: 400px;
    height: 400px;
  }
}
.single-author .container-books .row {
  max-width: 70vw;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .single-author .container-books .row {
    max-width: 80vw;
  }
}
.single-author .container-books .row .col {
  width: 100%;
}
@media (max-width: 576px) {
  .single-author .container-books .row .col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.single-author .container-books .row .col a.btn {
  border-color: #43328D;
  color: #43328D;
}
.single-author .container-books .row .col a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}
.single-author .container-books .row .col h2 {
  font-size: 3rem;
  padding-bottom: 20px;
  border-bottom: 1px solid black;
  margin-bottom: 75px;
  z-index: 2;
  position: relative;
}
@media (max-width: 576px) {
  .single-author .container-books .row .col h2 {
    text-align: center;
  }
}
.single-author .container-books .row .col ul.author-books {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 75px;
  row-gap: 75px;
}
@media (max-width: 576px) {
  .single-author .container-books .row .col ul.author-books {
    justify-content: center;
    row-gap: 50px;
  }
}
.single-author .container-books .row .col ul.author-books li {
  transition: transform 0.3s ease;
  width: 20%;
}
@media (max-width: 1292px) {
  .single-author .container-books .row .col ul.author-books li {
    width: 25%;
  }
}
@media (max-width: 1080px) {
  .single-author .container-books .row .col ul.author-books li {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .single-author .container-books .row .col ul.author-books li {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.single-author .container-books .row .col ul.author-books li:hover {
  transform: scale(1.1);
}
.single-author .container-books .row .col ul.author-books li a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #43328D;
  text-align: center;
}
@media (max-width: 780px) {
  .single-author .container-books .row .col ul.author-books li a {
    font-size: 1.2rem;
  }
}
.single-author .container-books .row .col ul.author-books li a img {
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .single-author .container-books .row .col ul.author-books li a img {
    width: 250px;
  }
}
@media (max-width: 780px) {
  .single-author .container-books .row .col ul.author-books li a img {
    width: 200px;
  }
}

.authors-template-default aside {
  display: none;
}

.all-authors {
  margin-bottom: 125px;
}
.all-authors .container .row {
  justify-content: center;
}
.all-authors .container .row .col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 75px;
}
.all-authors .container .row .col .author {
  width: 18%;
  margin-right: 2%;
}
.all-authors .container .row .col .author:nth-child(5n) {
  margin-right: 0;
}
@media (max-width: 1410px) {
  .all-authors .container .row .col .author {
    width: 23%;
    margin-right: 2%;
  }
}
@media (max-width: 1024px) {
  .all-authors .container .row .col .author {
    width: 31%;
    margin-right: 2%;
  }
}
@media (max-width: 780px) {
  .all-authors .container .row .col .author {
    width: 47%;
    margin-right: 3%;
  }
}
@media (max-width: 576px) {
  .all-authors .container .row .col .author {
    width: 100%;
    margin-right: 0%;
  }
}
.all-authors .container .row .col .author .image {
  overflow: hidden;
}
.all-authors .container .row .col .author .image a {
  display: block;
}
.all-authors .container .row .col .author .image a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.3s ease;
}
.all-authors .container .row .col .author .image a img:hover {
  transform: scale(1.1);
}
.all-authors .container .row .col .author .infos {
  background-color: #D7CEFC;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 30%;
}
.all-authors .container .row .col .author .infos h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.all-authors .container .row .col .author .infos h2 a {
  color: #43328D;
}
.all-authors .container .row .col .author .infos a.btn {
  border-color: #43328D;
  color: #43328D;
  padding: 5px 30px;
}
.all-authors .container .row .col .author .infos a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}

.page404 {
  margin: 125px 0;
}
.page404 .container .row {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page404 .container .row .col2:first-of-type {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page404 .container .row .col2:first-of-type h1 {
  font-size: 30rem;
  margin: 0;
  line-height: 0;
  position: relative;
  color: #43328D;
  font-family: "Open sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .page404 .container .row .col2:first-of-type h1 {
    font-size: 25rem;
  }
}
@media (max-width: 780px) {
  .page404 .container .row .col2:first-of-type h1 {
    font-size: 20rem;
  }
}
@media (max-width: 576px) {
  .page404 .container .row .col2:first-of-type h1 {
    font-size: 15rem;
  }
}
.page404 .container .row .col2:first-of-type h1:first-of-type {
  right: -100px;
  z-index: 1;
}
@media (max-width: 780px) {
  .page404 .container .row .col2:first-of-type h1:first-of-type {
    right: -60px;
  }
}
.page404 .container .row .col2:first-of-type h1:last-of-type {
  left: -100px;
  z-index: -1;
}
@media (max-width: 780px) {
  .page404 .container .row .col2:first-of-type h1:last-of-type {
    left: -60px;
  }
}
.page404 .container .row .col2:first-of-type img {
  width: 400px;
  filter: drop-shadow(30px 30px 15px rgba(0, 0, 0, 0.5));
}
@media (max-width: 1024px) {
  .page404 .container .row .col2:first-of-type img {
    width: 350px;
  }
}
@media (max-width: 780px) {
  .page404 .container .row .col2:first-of-type img {
    width: 250px;
  }
}
@media (max-width: 576px) {
  .page404 .container .row .col2:first-of-type img {
    width: 200px;
  }
}
.page404 .container .row .col2:last-of-type {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 75px;
}
.page404 .container .row .col2:last-of-type h2 {
  text-align: center;
}
@media (max-width: 780px) {
  .page404 .container .row .col2:last-of-type h2 {
    font-size: 3rem;
  }
}
.page404 .container .row .col2:last-of-type p {
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .page404 .container .row .col2:last-of-type p {
    font-size: 1rem;
    text-align: center;
  }
}
.page404 .container .row .col2:last-of-type a.btn {
  margin-top: 50px;
  border-color: #43328D;
  color: #43328D;
}
.page404 .container .row .col2:last-of-type a.btn:hover {
  background-color: #43328D;
  color: #D7CEFC;
}

section.about {
  background-color: #D7CEFC;
}
section.about .container .row {
  width: 100%;
}
section.about .container .row h1 {
  width: 100%;
  display: flex;
  align-items: center;
  color: #43328D;
}
@media (max-width: 576px) {
  section.about .container .row h1 {
    text-align: center;
  }
}

section.intro .container {
  max-width: 100vw;
  padding: 0;
}
@media (max-width: 1292px) {
  section.intro .container .row {
    flex-direction: column;
  }
}
section.intro .container .row .col2:first-of-type {
  background-color: #F6F1EE;
  padding: 125px;
}
@media (max-width: 1292px) {
  section.intro .container .row .col2:first-of-type {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  section.intro .container .row .col2:first-of-type {
    width: 100%;
  }
}
@media (max-width: 780px) {
  section.intro .container .row .col2:first-of-type {
    padding: 75px 75px 100px 75px;
  }
}
section.intro .container .row .col2:first-of-type h2 {
  font-size: 4rem;
  line-height: 4rem;
  margin-top: 0;
  margin-bottom: 50px;
}
@media (max-width: 780px) {
  section.intro .container .row .col2:first-of-type h2 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  section.intro .container .row .col2:first-of-type h2 {
    text-align: center;
  }
}
section.intro .container .row .col2:first-of-type h3 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
@media (max-width: 780px) {
  section.intro .container .row .col2:first-of-type h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  section.intro .container .row .col2:first-of-type h3 {
    text-align: center;
  }
}
section.intro .container .row .col2:first-of-type p {
  font-size: 1.2rem;
  line-height: 2rem;
/*CLEMENTINE 28 AVRIL
 *   margin-bottom: 50px;
 * */
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  section.intro .container .row .col2:first-of-type p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  section.intro .container .row .col2:first-of-type p {
    text-align: center;
  }
}
section.intro .container .row .col2:first-of-type a.btn {
  border-color: black;
  color: black;
}
section.intro .container .row .col2:first-of-type a.btn:hover {
  background-color: black;
  color: #F6F1EE;
}
section.intro .container .row .col2:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1292px) {
  section.intro .container .row .col2:last-of-type {
    width: 40%;
  }
}
@media (max-width: 1292px) {
  section.intro .container .row .col2:last-of-type {
    width: 100%;
  }
}
section.intro .container .row .col2:last-of-type img {
  position: relative;
  left: -100px;
  height: 80%;
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1292px) {
  section.intro .container .row .col2:last-of-type img {
    width: 100%;
    height: 100%;
    left: 0;
  }
}
@media (max-width: 1024px) {
  section.intro .container .row .col2:last-of-type img {
    width: 80%;
    height: 300px;
    top: -100px;
  }
}
@media (max-width: 576px) {
  section.intro .container .row .col2:last-of-type img {
    height: 200px;
  }
}

section.infos-ariane {
  margin: 125px 0;
}
section.infos-ariane .container .row ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.infos-ariane .container .row ul li {
  border-bottom: 1px solid #43328D;
  padding-bottom: 75px;
  margin-bottom: 75px;
}
section.infos-ariane .container .row ul li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
section.infos-ariane .container .row ul li h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 50px;
  color: #43328D;
}
@media (max-width: 576px) {
  section.infos-ariane .container .row ul li h2 {
    text-align: center;
  }
}
section.infos-ariane .container .row ul li p {
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 1024px) {
  section.infos-ariane .container .row ul li p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  section.infos-ariane .container .row ul li p {
    text-align: center;
  }
}

section.pub-book {
  background-color: #F6F1EE;
}
@media (max-width: 780px) {
  section.pub-book {
    background-image: url(images/lecture.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media (max-width: 780px) {
  section.pub-book .container .row {
    padding: 50px 0;
  }
}
section.pub-book .container .row .col2:first-of-type {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1292px) {
  section.pub-book .container .row .col2:first-of-type {
    justify-content: flex-start;
    width: 35%;
  }
}
@media (max-width: 780px) {
  section.pub-book .container .row .col2:first-of-type {
    display: none;
  }
}
section.pub-book .container .row .col2:first-of-type img {
  width: 500px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: -50px;
}
@media (max-width: 1292px) {
  section.pub-book .container .row .col2:first-of-type img {
    width: 300px;
    height: 300px;
    padding-right: 30px;
  }
}
section.pub-book .container .row .col2:last-of-type {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 1292px) {
  section.pub-book .container .row .col2:last-of-type {
    width: 65%;
  }
}
@media (max-width: 780px) {
  section.pub-book .container .row .col2:last-of-type {
    width: 100%;
    padding: 20px;
    background-color: #F6F1EE;
  }
}
@media (max-width: 576px) {
  section.pub-book .container .row .col2:last-of-type {
    justify-content: center;
    align-items: center;
  }
}
section.pub-book .container .row .col2:last-of-type h2 {
  font-size: 4rem;
  line-height: 4rem;
  margin-top: 0;
}
@media (max-width: 1292px) {
  section.pub-book .container .row .col2:last-of-type h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media (max-width: 576px) {
  section.pub-book .container .row .col2:last-of-type h2 {
    text-align: center;
    width: 100%;
  }
}
section.pub-book .container .row .col2:last-of-type p {
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 1024px) {
  section.pub-book .container .row .col2:last-of-type p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  section.pub-book .container .row .col2:last-of-type p {
    text-align: center;
  }
}
section.pub-book .container .row .col2:last-of-type a.btn {
  border-color: black;
  color: black;
}
section.pub-book .container .row .col2:last-of-type a.btn:hover {
  background-color: black;
  color: #F6F1EE;
}

section.content {
  margin: 125px 0;
}
@media (max-width: 1024px) {
  section.content .container .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  section.content .container .row .col2:first-of-type {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 780px) {
  section.content .container .row .col2:first-of-type .infos {
    text-align: center;
  }
}
section.content .container .row .col2:first-of-type h2 {
  color: #43328D;
  font-size: 5rem;
}
@media (max-width: 1292px) {
  section.content .container .row .col2:first-of-type h2 {
    font-size: 4rem;
  }
}
@media (max-width: 780px) {
  section.content .container .row .col2:first-of-type h2 {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  section.content .container .row .col2:last-of-type {
    width: 100%;
  }
}
section.content .container .row .col2:last-of-type .frm_forms form .frm_primary_label {
  display: none;
}
section.content .container .row .col2:last-of-type .frm_forms form .frm_description {
  display: none;
}
@media (max-width: 780px) {
  section.content .container .row .col2:last-of-type .frm_forms form .frm_combo_inputs_container {
    row-gap: 20px;
  }
}
@media (max-width: 780px) {
  section.content .container .row .col2:last-of-type .frm_forms form .form-field {
    grid-column: span 12/span 12;
  }
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field input,
section.content .container .row .col2:last-of-type .frm_forms form .form-field textarea {
  padding: 20px;
  font-size: 1.2rem;
  border-color: #43328D;
  border-radius: 0;
  color: #43328D;
  position: relative;
  display: flex;
  box-shadow: 0px 0px 0px 0px #43328D;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  section.content .container .row .col2:last-of-type .frm_forms form .form-field input,
  section.content .container .row .col2:last-of-type .frm_forms form .form-field textarea {
    font-size: 1rem;
  }
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field input:focus,
section.content .container .row .col2:last-of-type .frm_forms form .form-field textarea:focus {
  box-shadow: none;
  box-shadow: 5px 5px 0px 1px #43328D;
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field ::-moz-placeholder {
  font-size: 1.2rem;
  color: rgba(175, 162, 231, 0.5568627451);
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field ::placeholder {
  font-size: 1.2rem;
  color: rgba(175, 162, 231, 0.5568627451);
}
@media (max-width: 1024px) {
  section.content .container .row .col2:last-of-type .frm_forms form .form-field ::-moz-placeholder {
    font-size: 1rem;
  }
  section.content .container .row .col2:last-of-type .frm_forms form .form-field ::placeholder {
    font-size: 1rem;
  }
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field .frm_submit .frm_button_submit {
  font-size: 1.2rem;
  padding: 10px 40px;
  border: 1px solid #43328D;
  background-color: transparent;
  border-radius: 50px;
  color: #43328D;
}
section.content .container .row .col2:last-of-type .frm_forms form .form-field .frm_submit .frm_button_submit:hover {
  background-color: #43328D;
  color: white;
}
@media (max-width: 780px) {
  section.content .container .row .col2:last-of-type .frm_forms form .form-field .frm_submit {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */