/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-01.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-Oblique-03.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-Bold-02.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-BoldOblique-04.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-Light-05.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-LightOblique-06.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

strong {
  font-weight: bold;
  color: #9ac0ba;
}

.btn {
  padding: 20px 50px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: opacity 1s linear, transform 0.2s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

.btn img {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.btn.btn-noir {
  background-color: #8D5A97;
  color: white;
}

.btn.btn-noir i.icon-man::before {
  background-image: url("./svg/man-white.svg");
}

.btn.btn-blanc {
  background-color: #8D5A97;
  color: white;
}

.btn.btn-blanc i.icon-man::before {
  background-image: url("./svg/man-white.svg");
}

.btn[type="submit"] {
  font-size: 15px;
}

.btn .btn--arrow {
  font-weight: 200;
  display: inline-block;
  transform: scale(1.5);
  margin-left: 10px;
}

.btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

textarea {
  resize: none;
}

.marker {
  width: 47px;
  height: 63px;
  background: url("./images/mapmarker.png");
  background-size: cover;
}

i {
  margin-right: 20px;
}

i.icon-man::before {
  content: "";
  background-image: url("./svg/man.svg");
  background-size: cover;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

html,
body {
  overflow-x: hidden;
}

html.unscrollable,
body.unscrollable {
  overflow: hidden;
}

body.landing-page {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
}

body.landing-page * {
  font-family: Helvetica, Arial, sans-serif;
}

body.landing-page a {
  text-decoration: none;
  color: #8D5A97;
}

.landing__wrapper {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.landing__wrapper h2 {
  font-size: 25px;
}

@media (max-width: 1275px) {
  .landing__wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 800px) {
  .landing__wrapper h2 {
    margin-top: 10px;
    font-size: 20px !important;
  }
}

form input,
form textarea {
  font-family: Helvetica, Arial, sans-serif !important;
}

#landing__header {
  background-color: white;
  padding: 30px 0;
}

#landing__header .landing__wrapper {
  justify-content: space-between;
}

#landing__header .header__title h1 a{
  color: #9ac0ba;
  font-size: 20px;
}

#landing__header .header__contact {
  display: flex;
  align-items: center;
}

#landing__header .header__contact a:first-child {
  text-transform: uppercase;
  color: #7a7a7a;
  padding-right: 10px;
  border-right: solid 1px #585858;
  margin-right: 10px;
  font-size: 14px;
  opacity: 0.75;
}

#landing__header .header__contact a:last-child {
  font-weight: bold;
  color: #585858;
}

.landing__introduction {
  position: relative;
  overflow: hidden;
}

.landing__introduction>img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

@media (max-width: 800px) {
  .landing__introduction {
    display: flex;
    align-items: baseline;
  }

  .landing__introduction>img {
    padding-bottom: 150px;
  }
}

.landing__introduction .landing__wrapper {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.landing__introduction .introduction__text-col {
  color: white;
  width: calc(66% - 50px);
}

.landing__introduction .introduction__text-col h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.05;
}

.landing__introduction .introduction__text-col p {
  line-height: 1.5;
}

.landing__introduction .introduction__form-col {
  width: 33%;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 30px 40px;
}

.landing__introduction .introduction__form-col h2,
.landing__introduction .introduction__form-col .introduction__form-subtitle {
  line-height: 1.25;
  text-align: center;
  color: #585858;
}

.landing__introduction .introduction__form-col .introduction__form-subtitle {
  font-weight: bold;
  margin-bottom: 20px;
}

.landing__introduction .introduction__form-col form .form__line {
  width: 100%;
}

.landing__introduction .introduction__form-col form .form__line input,
.landing__introduction .introduction__form-col form .form__line textarea {
  width: 100%;
  border: none;
  padding: 10px 15px;
}

.landing__introduction .introduction__form-col form .form__line input::placeholder,
.landing__introduction .introduction__form-col form .form__line textarea::placeholder {
  opacity: 0.5;
}

.landing__introduction .introduction__form-col form .form__line input::-moz-placeholder,
.landing__introduction .introduction__form-col form .form__line textarea::-moz-placeholder {
  opacity: 0.5;
}

.landing__introduction .introduction__form-col form .form__line input:-ms-input-placeholder,
.landing__introduction .introduction__form-col form .form__line textarea:-ms-input-placeholder {
  opacity: 0.5;
}

.landing__introduction .introduction__form-col form .form__line input::-ms-input-placeholder,
.landing__introduction .introduction__form-col form .form__line textarea::-ms-input-placeholder {
  opacity: 0.5;
}

.landing__introduction .introduction__form-col form .form__line button {
  width: 100%;
}

.landing__introduction .introduction__form-col form .form__line:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 1250px) {
  .landing__introduction .landing__wrapper>* {
    width: calc(50% - 20px);
  }

  .landing__introduction .introduction__text-col h2 {
    font-size: 40px;
  }
}

@media (min-width: 801px) {
  .landing__introduction .landing__wrapper .introduction__text-col a.btn-noir {
    display: none;
  }
}

@media (max-width: 800px) {
  .landing__introduction img {
    height: 210%;
  }

  .landing__introduction .landing__wrapper {
    padding: 10px;
  }

  .landing__introduction .landing__wrapper .introduction__text-col {
    padding: 20px;
    width: 100%;
  }

  .landing__introduction .landing__wrapper .introduction__text-col h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .landing__introduction .landing__wrapper .introduction__text-col p {
    display: none;
  }

  .landing__introduction .landing__wrapper .introduction__text-col a.btn-noir {
    margin-top: 10px;
    padding: 20px;
  }

  .landing__introduction .landing__wrapper .introduction__form-col {
    display: none;
  }
}

.landing__pois {
  background-color: rgba(122, 122, 122, 0.1);
}

.landing__pois .landing__wrapper {
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}

.landing__pois h2 {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.25;
  color: #585858;
}

.landing__pois .pois__wrapper {
  display: flex;
}

.landing__pois .pois__wrapper .pois__poi {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.landing__pois .pois__wrapper .pois__poi .poi__img-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
}

.landing__pois .pois__wrapper .pois__poi .poi__img-wrapper img {
  display: block;
  position: relative;
  max-width: 50%;
}

.landing__pois .pois__wrapper .pois__poi h3 {
  font-weight: bold;
  padding: 0 20px;
  min-height: 50px;
}

.landing__pois .pois__wrapper .pois__poi p {
  line-height: 1.25;
  transition: 0.2s linear;
}

.landing__pois .pois__wrapper .pois__poi:nth-child(2) .poi__img-wrapper img {
  top: 3px;
}

.landing__pois .pois__wrapper .pois__poi a {
  font-weight: bold;
}

@media (min-width: 801px) {
  .landing__pois span.fleche-bas {
    display: none;
  }
}

@media (max-width: 800px) {
  .landing__pois .pois__wrapper {
    flex-direction: column;
  }

  .landing__pois .pois__wrapper h3 {
    min-height: auto !important;
    margin-bottom: 10px;
  }

  .landing__pois .pois__wrapper .pois__poi p {
    overflow: hidden;
    position: relative;
    max-height: 50px;
  }

  .landing__pois .pois__wrapper .pois__poi p::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    opacity: 1;
    background: -moz-linear-gradient(top, rgba(241, 241, 241, 0.75) 0%, #f1f1f1 75%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(241, 241, 241, 0.75) 0%, #f1f1f1 75%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(241, 241, 241, 0.75) 0%, #f1f1f1 75%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00$color', endColorstr='$color', GradientType=0);
    /* IE6-9 */
    transition: 0.2s linear;
  }

  .landing__pois .pois__wrapper .pois__poi .read-more {
    margin: 10px 0 30px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    transition: 0.4s ease-in-out;
  }

  .landing__pois .pois__wrapper .pois__poi .read-more>div {
    pointer-events: none;
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: black;
  }

  .landing__pois .pois__wrapper .pois__poi .read-more>div:first-child {
    transform: rotate(45deg);
  }

  .landing__pois .pois__wrapper .pois__poi .read-more>div:last-child {
    transform: rotate(-45deg);
  }

  .landing__pois .pois__wrapper .pois__poi.opened p {
    max-height: 200px;
  }

  .landing__pois .pois__wrapper .pois__poi.opened p::after {
    height: 0px;
    opacity: 0;
  }

  .landing__pois .pois__wrapper .pois__poi.opened .read-more {
    transform: rotate(180deg);
  }
}

.landing__content-block .landing__wrapper {
  padding-top: 60px;
  justify-content: space-between;
}

.landing__content-block .content-block__text {
  font-style: italic;
  padding: 20px 30px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 60px;
  width: 50%;
  text-align: center;
  color: #9ac0ba;
  font-size: 30px;
  border: 2px solid #f1f1f1;
}

@media (max-width: 800px) {
  .landing__content-block .content-block__text {
    margin-top: 40px;
    font-size: 15px;
    width: 80%;
  }
}

.landing__content-block .content-block__holder {
  width: calc(50% - 30px);
}

@media (max-width: 800px) {
  
}

.landing__content-block .content-block__holder .content-block__col {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: 0.2s linear;
  order: 0;
}

@media (max-width: 800px) {
  .landing__content-block .content-block__holder .content-block__col {
    max-height: 180px;
  }
}

.landing__content-block .content-block__holder .content-block__col:after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  opacity: 1;
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
  transition: 0.2s linear;
}

@media (max-width: 800px) {
  .landing__content-block .content-block__holder .content-block__col:after {
    display: block;
  }
}

.landing__content-block .content-block__holder .read-more {
  margin: 10px 0 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  position: relative;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  transition: 0.4s ease-in-out;
  display: none;
}

.landing__content-block .content-block__holder .read-more>div {
  pointer-events: none;
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: black;
}

.landing__content-block .content-block__holder .read-more>div:first-child {
  transform: rotate(45deg);
}

.landing__content-block .content-block__holder .read-more>div:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 800px) {
  .landing__content-block .content-block__holder .read-more {
    display: flex;
  }
}

.landing__content-block .content-block__holder.opened .content-block__col {
  max-height: 2000px;
}

.landing__content-block .content-block__holder.opened .content-block__col::after {
  height: 0px;
  opacity: 0;
}

.landing__content-block .content-block__holder.opened .read-more {
  transform: rotate(180deg);
}

.landing__content-block .content-block__col {
  width: calc(50% - 30px);
}

.landing__content-block .content-block__col h2 {
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 40px;
  line-height: 1.25;
}

.landing__content-block .content-block__col>ul {
  margin-bottom: 75px;
}

.landing__content-block .content-block__col>ul li::before {
  content: "\2022";
  display: inline-block;
  color: #9ac0ba;
}

.landing__content-block .content-block__col>ul li h3 {
  display: inline-block;
  font-weight: bold;
  margin-top: 30px;
}

.landing__content-block .content-block__col>ul li p {
  margin-top: 30px;
}

.landing__content-block .content-block__col p {
  line-height: 1.25;
}

.landing__content-block .content-block__col p strong {
  color: rgba(0, 0, 0, 0.75);
}

.landing__content-block .content-block__col p:not(:last-of-type) {
  line-height: 1.25;
}

.landing__content-block .content-block__col p:not(:last-of-type):not(:last-child) {
  margin-bottom: 30px;
}

.landing__content-block .content-block__col p:last-of-type {
  margin-bottom: 5px;
}

.landing__content-block .content-block__col div>ul li {
  position: relative;
  padding-left: 15px;
  line-height: 1.25;
}

.landing__content-block .content-block__col div>ul li::before {
  content: "- ";
  position: absolute;
  left: 0;
  top: 0;
}

.landing__content-block .content-block__col div>ul li:not(:last-child) {
  margin-bottom: 5px;
}

.landing__content-block .content-block__col .content-block__image-wrapper {
  width: 100%;
}

.landing__content-block .content-block__col .content-block__image-wrapper>img {
  width: 100%;
  height: auto;
}

.landing__content-block .btn {
  margin-top: 20px;
}

@media (max-width: 1250px) {
  .landing__content-block .landing__wrapper {
    padding: 10px;
  }

  .landing__content-block .landing__wrapper>* {
    width: 100%;
  }

  .landing__content-block .content-block__col--img {
    order: 0;
    width: 70%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .landing__content-block .content-block__holder {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .landing__content-block .content-block__col--text {
    order: 1;
  }

  .landing__content-block .content-block__col--text h2 {
    margin-bottom: 0px;
    padding: 0px 10px;
    font-size: 30px;
  }

  .landing__content-block .content-block__col--text p {
    margin-bottom: 0px;
    padding: 0px 15px;
    font-size: smaller;
  }

  .landing__content-block .content-block__col--text h2 br {
    display: none;
  }

  .landing__content-block .content-block__col--text ul {
    margin-bottom: 20px;
    padding: 0px 15px;
    font-size: smaller;
  }
}

@media (max-width: 800px) {
  .landing__content-block .landing__wrapper {
    flex-direction: column;
  }
}

.landing__programme {
  background-color: #9ac0ba;
  padding: 50px 0 60px;
}

.landing__programme .landing__wrapper {
  flex-direction: column;
}

.landing__programme h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.landing__programme .programme__list-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
}

.landing__programme .programme__list-wrapper ul {
  width: 25%;
}

.landing__programme .programme__list-wrapper ul:first-of-type {
  margin-right: 50px;
}

.landing__programme .programme__list-wrapper ul li {
  color: white;
  position: relative;
  padding-left: 25px;
  line-height: 1.25;
  font-weight: bold;
}

.landing__programme .programme__list-wrapper ul li::before {
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  content: "\2713";
  color: black;
  text-align: center;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  margin-right: 5px;
  font-size: 12px;
  padding: 2px 0px 0px 0px;
}

.landing__programme .programme__list-wrapper ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

@media (max-width: 1250px) {
  .landing__programme .programme__list-wrapper {
    flex-direction: column;
  }

  .landing__programme .programme__list-wrapper ul {
    margin: 0px !important;
    width: 300px !important;
  }

  .landing__programme .programme__list-wrapper ul li {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 800px) {
  .landing__programme {
    padding: 20px 0;
  }
}

.landing__tarifs {
  background-color: #585858;
  color: white;
  text-align: center;
  position: relative;
}

.landing__tarifs .landing__wrapper {
  padding: 60px 0 50px;
  flex-direction: column;
  align-items: center;
}

.landing__tarifs .tarifs__title-wrapper h2 {
  font-size: 30px;
  font-weight: bold;
}

.landing__tarifs .tarifs__title-wrapper p {
  font-weight: 200;
  font-size: 14px;
}

.landing__tarifs .tarifs__title-wrapper .tarifs__title-line {
  height: 1px;
  width: 500px;
  margin: 15px auto;
  background-color: white;
  max-width: 90%;
}

.landing__tarifs .landing__wrapper>p {
  color: #9ac0ba;
  font-size: 12px;
  margin-bottom: 30px;
}

.landing__tarifs .tarifs__prochaines-seances {
  margin-top: 40px;
  border: solid 1px white;
  padding: 20px;
  width: 100%;
}

.landing__tarifs .tarifs__prochaines-seances h2 {
  color: #9ac0ba;
  font-size: 22px;
}

.landing__tarifs .tarifs__prochaines-seances .tarifs__white-line {
  margin: 20px auto;
  width: 500px;
  max-width: 90%;
  height: 1px;
  background-color: white;
}

.landing__tarifs .tarifs__prochaines-seances .tarifs__seance h3 {
  margin-bottom: 10px;
}

.landing__tarifs .tarifs__prochaines-seances .tarifs__seance h3.italic {
  font-style: italic;
  line-height: 20px;
  font-size: 13px;
}

.landing__tarifs .tarifs__prochaines-seances .tarifs__seance ul li {
  line-height: 1.5;
  font-weight: 400;
}

.landing__tarifs .tarifs__prochaines-seances p {
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.25;
}

.landing__tarifs .tarifs__before {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #585858;
  border: solid 2px #9ac0ba;
  padding: 20px;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 1250px) {
  .landing__tarifs {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 800px) {
  .landing__tarifs .tarifs__before {
    display: none;
  }

  .landing__tarifs .landing__wrapper {
    padding: 10px;
  }
}

.landing__contact .landing__wrapper {
  display: flex;
  padding: 50px 0px;
}

.landing__contact .landing__wrapper>* {
  flex: 1;
}

.landing__contact .landing__wrapper>*:first-child {
  padding-right: 40px;
}

.landing__contact .landing__wrapper>*:last-child {
  padding-left: 40px;
}

.landing__contact .contact__map {
  position: relative;
}

.landing__contact .contact__map img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 100px;
  z-index: 0;
  overflow: hidden;
}

.landing__contact .contact__map .map-wrapper {
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.landing__contact .contact__map .map-wrapper .map#map {
  width: 100%;
  height: 100%;
}

.landing__contact .contact__map .contact__address {
  position: relative;
  margin-top: 250px;
  bottom: -40px;
  z-index: 1;
  background-color: #9ac0ba;
  margin-right: 100px;
  padding: 20px 50px 20px 0px;
  color: white;
}

.landing__contact .contact__map>p {
  position: relative;
  bottom: -40px;
}

.landing__contact .contact__map .contact__address::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #9ac0ba;
  z-index: 0;
}

.landing__contact .contact__map .contact__address .address__text-wrapper {
  padding-left: 20px;
  position: relative;
  z-index: 1;
  border-left: solid 1px white;
  line-height: 1.25;
  font-weight: bold;
}

.landing__contact .contact__map .contact__address .address__text-wrapper h3 {
  font-size: 20px;
}

.landing__contact .contact__map>p {
  margin-top: 20px;
  line-height: 1.5;
}

.landing__contact .contact__form h2 {
  margin-top: 0px;
  padding-top: 20px;
  color: #585858;
}

.landing__contact .contact__form h3 {
  color: #585858;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 75px;
}

.landing__contact .contact__form form .form__line {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.landing__contact .contact__form form .form__line input,
.landing__contact .contact__form form .form__line textarea {
  border: solid 1px rgba(122, 122, 122, 0.5);
  width: 100%;
  padding: 15px;
}

.landing__contact .contact__form form .form__line input:not(:only-of-type),
.landing__contact .contact__form form .form__line textarea:not(:only-of-type) {
  width: calc(50% - 10px);
}

.landing__contact .contact__form form .form__line input::placeholder,
.landing__contact .contact__form form .form__line textarea::placeholder {
  opacity: 0.5;
}

.landing__contact .contact__form form .form__line input::-moz-placeholder,
.landing__contact .contact__form form .form__line textarea::-moz-placeholder {
  opacity: 0.5;
}

.landing__contact .contact__form form .form__line input:-ms-input-placeholder,
.landing__contact .contact__form form .form__line textarea:-ms-input-placeholder {
  opacity: 0.5;
}

.landing__contact .contact__form form .form__line input::-ms-input-placeholder,
.landing__contact .contact__form form .form__line textarea::-ms-input-placeholder {
  opacity: 0.5;
}

.landing__contact .contact__form form .form__line:not(:last-child) {
  margin-bottom: 15px;
}

.landing__contact .contact__form form .form__line:last-child {
  margin-top: 20px;
}

.landing__contact .contact__form form .form__line>span {
  color: #9ac0ba;
  font-weight: 200;
  font-size: 14px;
}

@media (max-width: 600px) {
  .landing__contact .contact__form form .form__line.line-send {
    flex-direction: column;
    align-items: center;
  }

  .landing__contact .contact__form form .form__line.line-send .form__captcha {
    margin-right: 0px !important;
  }

  .landing__contact .contact__form form .form__line.line-send .form__send {
    margin-top: 10px;
  }
}

.landing__contact .contact__form form .form__line .form__captcha:first-child,
.landing__contact .contact__form form .form__line .form__send:first-child {
  margin-right: 10px;
}

.landing__contact .contact__form form .form__line .form__captcha:last-child,
.landing__contact .contact__form form .form__line .form__send:last-child {
  margin-left: 10px;
}

.landing__contact .contact__form form .form__line .form__captcha button,
.landing__contact .contact__form form .form__line .form__send button {
  width: 100%;
}

@media (max-width: 1250px) {
  .landing__contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing__contact .contact__map {
    width: 80%;
    display: flex;
    flex-direction: column;
  }

  .landing__contact .contact__map .contact__address {
    margin-right: 0px;
  }

  .landing__contact .contact__map img {
    width: 100%;
    height: auto;
    position: initial;
    bottom: 0px;
    z-index: 0;
    overflow: hidden;
  }

  .landing__contact .contact__map .contact__address {
    width: 100%;
    margin: 0;
    bottom: 0;
  }

  .landing__contact .contact__map>p {
    position: initial;
    bottom: 0;
  }
}

@media (max-width: 800px) {
  .landing__contact .landing__wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .landing__contact .landing__wrapper>*:first-child{
    padding-right: 0px;
  }

  .landing__contact .contact__form {
    padding: 0px !important;
    margin-top: 10px;
  }

  .landing__contact .contact__form h3 {
    margin-bottom: 10px;
  }
}

.landing__temoignages .temoignages__introduction {
  background-color: rgba(122, 122, 122, 0.2);
  padding: 50px;
  text-align: center;
}

.landing__temoignages .temoignages__introduction .landing__wrapper {
  display: flex;
  flex-direction: column;
}

.landing__temoignages .temoignages__introduction h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.landing__temoignages .temoignages__introduction p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
  font-weight: 200;
  font-size: 18px;
  opacity: 0.75;
}

.landing__temoignages .temoignages__cols {
  background-color: rgba(122, 122, 122, 0.1);
}

.landing__temoignages .temoignages__cols .landing__wrapper:first-child {
  padding-top: 50px;
}

.landing__temoignages .temoignages__cols .landing__wrapper:last-child {
  padding-top: 20px;
  padding-bottom: 50px;
}

.landing__temoignages .temoignages__cols .temoignages__col article h2 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}

.landing__temoignages .temoignages__cols .temoignages__col article>p {
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.landing__temoignages .temoignages__cols .temoignages__col:first-child {
  padding-right: 20px;
}

.landing__temoignages .temoignages__cols .temoignages__col:last-child {
  padding-left: 20px;
}

.landing__temoignages blockquote {
  background-color: white;
  border: rbga(black, 0.1);
  padding: 20px 100px;
  font-size: 25px;
  color: #9ac0ba;
  font-weight: bold;
  font-style: italic;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .landing__temoignages .temoignages__introduction {
    padding: 20px;
  }

  .landing__temoignages .temoignages__cols .landing__wrapper {
    flex-direction: column;
  }

  .landing__temoignages .temoignages__cols .landing__wrapper:first-child {
    padding-top: 10px;
  }

  .landing__temoignages .temoignages__cols .landing__wrapper:last-child {
    padding-bottom: 40px;
  }

  .landing__temoignages .temoignages__cols .landing__wrapper .temoignages__col {
    padding: 0px;
  }

  .landing__temoignages .temoignages__cols .landing__wrapper blockquote {
    padding: 20px;
    text-align: center;
  }
}

#footer-landing .landing__wrapper {
  padding: 30px 0;
}

#footer-landing ul {
  display: flex;
  margin: 0 auto;
}

#footer-landing ul li {
  color: grey;
}

#footer-landing ul li a {
  color: #9ac0ba;
}

#footer-landing ul li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 5px;
}

@media (max-width: 1250px) {
  #footer-landing .landing__wrapper {
    padding: 10px;
  }

  #footer-landing ul {
    flex-direction: column;
  }

  #footer-landing ul li {
    text-align: center;
  }

  #footer-landing ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  #footer-landing ul li:not(:last-child)::after {
    display: none;
  }
}

span.fleche-bas {
  position: relative;
  right: 1px;
  top: 1px;
  font-size: 50px;
  display: block;
  transform: rotate(-90deg) scaleY(0.6);
}

.btn-rappel {
  position: fixed;
  right: 0;
  z-index: 9998;
  padding: 10px;
  width: 120px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  border-radius: 5px 0 0 5px;
  font-weight: 600;
  background-color: #8D5A97;
  transition: all ease .5s;
  top: 90px;
  color: #fff;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media (max-width: 800px) {
  .btn-rappel {
    top: 60px;
  }
}

.rappel-block {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(100vw, 0);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  transition: 0.5s ease-in-out;
}

.rappel-block .rappel__form-container {
  width: 300px;
  min-height: 100vh;
  overflow-y: scroll;
  position: relative;
  margin: 0;
  background-color: #9ac0ba;
  z-index: 1;
}

.rappel-block .rappel__form-container .rappel__wrapper {
  height: auto;
  width: 100%;
  padding: 30px;
}

.rappel-block .rappel__form-container .rappel__wrapper h2 {
  text-transform: uppercase;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
  display: block;
}

.rappel-block .rappel__form-container .rappel__wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.rappel-block .rappel__form-container .rappel__wrapper form input,
.rappel-block .rappel__form-container .rappel__wrapper form textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-radius: 3px;
  padding: 15px;
}

.rappel-block .rappel__form-container .rappel__wrapper form textarea {
  min-height: 100px;
}

.rappel-block .rappel__form-container .rappel__wrapper form button,
.rappel-block .rappel__form-container .rappel__wrapper form p {
  display: inline-block;
}

.rappel-block .rappel__form-container .rappel__wrapper form button {
  text-transform: uppercase;
  border: 2px solid white;
  border-radius: 3px;
  background: transparent;
  color: white;
  padding: 10px;
  font-weight: 500;
  font-size: 15px;
}

.rappel-block .rappel__form-container .rappel__wrapper form p {
  color: white;
  font-size: 10px;
}

.rappel-block .rappel__form-container .rappel__wrapper form .form__line {
  position: relative;
  display: block;
}

.rappel-block .rappel__form-container .rappel__wrapper form .form__line.line-recap {
  margin-bottom: 20px;
  transform: scale(0.8);
}

.rappel-block .rappel__form-container .rappel__wrapper form .form__line.line-recap .g-recaptcha {
  position: relative;
  left: -30px;
}

.rappel-block .rappel__form-container .rappel__wrapper form .form__line:last-child {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
}

.rappel-block .rappel__form-container .rappel__wrapper form .form__feedback {
  margin-top: 5px;
  color: white;
  font-size: 12px;
}

.rappel-block .rappel__form-container .rappel__close-btn {
  border-radius: 50%;
  border: 2px solid white;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.rappel-block .rappel__form-container .rappel__close-btn span {
  display: block;
  position: absolute;
  height: 5px;
  width: 20px;
  background-color: white;
  pointer-events: none;
}

.rappel-block .rappel__form-container .rappel__close-btn span:first-child {
  transform: rotate(45deg);
}

.rappel-block .rappel__form-container .rappel__close-btn span:last-child {
  transform: rotate(-45deg);
}

.rappel-block .rappel__close-block {
  z-index: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.66);
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw - 300px);
  height: 100vh;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: opacity 0.6s linear, transform 0.7s ease-in-out;
}

.rappel-block.open {
  transform: translate(0vw, 0);
}

.rappel-block.open .rappel__close-block {
  opacity: 1;
  transform: translate(0vw, 0);
}

@media (max-height: 550px) {
  .rappel-block .rappel__form-container .rappel__wrapper h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .rappel-block .rappel__form-container .rappel__wrapper form input,
  .rappel-block .rappel__form-container .rappel__wrapper form textarea {
    margin-bottom: 5px;
  }

  .rappel-block .rappel__form-container .rappel__wrapper .rappel__close-btn {
    transform: scale(0.75);
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 800px) {
  .rappel-block .rappel__form-container {
    width: 100%;
  }

  .rappel-block .rappel__form-container .rappel__wrapper {
    padding: 10px;
  }

  .rappel-block .rappel__form-container .rappel__wrapper h2 {
    padding-right: 50px;
  }
}

@supports (-webkit-overflow-scrolling: touch) {
  .rappel-block .rappel__form-container {
    width: 100%;
  }

  .rappel-block .rappel__form-container .rappel__wrapper {
    padding: 10px;
  }

  .rappel-block .rappel__form-container .rappel__wrapper h2 {
    padding-right: 50px;
  }
}