@charset "UTF-8";
/********************************/
/* FONTS */
/********************************/
@import url("https://use.typekit.net/gno5gop.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 2.6rem;
  -moz-border-radius: 2.6rem;
  border-radius: 2.6rem;
  font-size: 1.6rem;
  height: 3.6rem;
  width: max-content;
  padding: 0 5rem 0 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    height: 4.1rem;
  }
}
@media screen and (min-width: 1200px) {
  .btn {
    height: 5.1rem;
  }
}
.btn:after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1.5rem;
  margin-left: 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  padding: 0 3rem 0 5rem;
}
.btn:hover::after {
  right: 0.75rem;
}
.btn-whitecolor {
  border: 1px solid #C89372;
  background-color: white;
  color: black;
}
.btn-whitecolor::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.5' height='21.5' viewBox='0 0 21.5 21.5'%3E%3Cpath id='Tracé_22' data-name='Tracé 22' d='M0,0H21.5V21.5H0Z' fill='none'/%3E%3Cpath id='Tracé_23' data-name='Tracé 23' d='M11.167,4,9.9,5.263l5,5.008H4v1.792H14.9l-5,5.008,1.263,1.263,7.167-7.167Z' transform='translate(-0.417 -0.417)' fill='%23000'/%3E%3C/svg%3E");
}
.btn-whitecolor:hover {
  background-color: #C89372;
  color: white;
}
.btn-whitecolor:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.5' height='21.5' viewBox='0 0 21.5 21.5'%3E%3Cpath id='Tracé_22' data-name='Tracé 22' d='M0,0H21.5V21.5H0Z' fill='none'/%3E%3Cpath id='Tracé_23' data-name='Tracé 23' d='M11.167,4,9.9,5.263l5,5.008H4v1.792H14.9l-5,5.008,1.263,1.263,7.167-7.167Z' transform='translate(-0.417 -0.417)' fill='%23fff'/%3E%3C/svg%3E");
}
.btn-maincolor {
  background-color: #C89372;
  color: white;
}
.btn-maincolor::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.5' height='21.5' viewBox='0 0 21.5 21.5'%3E%3Cpath id='Tracé_22' data-name='Tracé 22' d='M0,0H21.5V21.5H0Z' fill='none'/%3E%3Cpath id='Tracé_23' data-name='Tracé 23' d='M11.167,4,9.9,5.263l5,5.008H4v1.792H14.9l-5,5.008,1.263,1.263,7.167-7.167Z' transform='translate(-0.417 -0.417)' fill='%23fff'/%3E%3C/svg%3E");
}
.btn-maincolor:hover {
  border: 1px solid #C89372;
  background-color: white;
  color: black;
}
.btn-maincolor:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.5' height='21.5' viewBox='0 0 21.5 21.5'%3E%3Cpath id='Tracé_22' data-name='Tracé 22' d='M0,0H21.5V21.5H0Z' fill='none'/%3E%3Cpath id='Tracé_23' data-name='Tracé 23' d='M11.167,4,9.9,5.263l5,5.008H4v1.792H14.9l-5,5.008,1.263,1.263,7.167-7.167Z' transform='translate(-0.417 -0.417)' fill='%23000'/%3E%3C/svg%3E");
}

.seemore {
  height: 3.7rem;
  margin-top: 5rem;
}
.seemore svg {
  width: 3.7rem;
  height: 3.7rem;
}

.card {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  margin: 0 1rem;
}
.card-img-top {
  margin-bottom: 2rem;
}
.card-title {
  margin-bottom: 2rem;
}
.card-text {
  margin-bottom: 2rem;
}
.card-text.p16 {
  font-size: 1.6rem;
}

.gallery-container {
  padding: 5rem !important;
}
@media screen and (max-width: 540px) {
  .gallery-container {
    padding: 5rem 2.5rem !important;
  }
}

.grid a {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}
.grid a p {
  font-size: 1.6rem;
  color: white;
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  text-align: left;
  padding: 0 2rem;
}
.grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.grid__wrapper {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-auto-flow: dense;
}
@media screen and (max-width: 540px) {
  .grid__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.grid__wrapper.auto {
  grid-auto-rows: auto;
}
.grid__wrapper.fixe {
  grid-auto-rows: 25rem;
}
.grid__wrapper > .grid {
  display: flex;
  flex-direction: column;
}
.grid__wide {
  grid-column: span 2;
  grid-row: span 2;
}
.grid__tall {
  grid-row: span 2;
}

.lity-group-start-stop button {
  display: none;
}

.lity-close, .lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 300;
  font-size: 4.5rem;
  right: 2rem;
  color: #865434;
  text-shadow: 0 0 black;
}
@media screen and (max-width: 540px) {
  .lity-close, .lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
    top: 4rem;
  }
}

.box_mediabox button[class*=lity-]:focus {
  outline: none;
}

@media screen and (max-width: 540px) {
  .lity-next,
.lity-previous {
    top: 31.5%;
  }
}

.lity-next b, .lity-previous b {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 300;
  font-size: 3rem;
  color: #865434;
  text-shadow: 0 0 black;
}

.lity-next {
  right: -3rem;
}

.lity-previous {
  left: -3rem;
}
@media screen and (max-width: 540px) {
  .lity-previous {
    left: auto;
    right: 6rem;
  }
}

.lity-group-caption .lity-group-current {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  top: -36px;
  left: 0;
  color: #C89372;
}

@media screen and (max-width: 540px) {
  .box_mediabox .lity-container {
    max-width: 90% !important;
    max-height: 90% !important;
  }
}

@media screen and (max-width: 540px) {
  .box_mediabox.lity-image .lity-content {
    padding-left: 0.5rem;
  }
}

.formulaire_spip {
  width: 100%;
  margin: 0 auto;
  display: flex;
}
@media screen and (min-width: 768px) {
  .formulaire_spip {
    width: calc(100% - 15rem);
  }
}
@media screen and (min-width: 1400px) {
  .formulaire_spip {
    width: calc(100% - 25rem);
  }
}
.formulaire_spip form {
  margin: auto;
}

.editer {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .editer {
    flex-direction: column;
  }
}
.editer-label {
  width: 20rem;
  display: inline-block;
}
.editer-label .obligatoire {
  font-size: 1rem;
  font-style: italic;
  display: block;
}
.editer_textarea_1 {
  display: flex;
  align-items: flex-start;
}
.editer input[type=text], .editer input[type=email] {
  width: 48rem;
  max-width: 100%;
  border: 1px solid #C89372;
}
@media screen and (max-width: 767px) {
  .editer input[type=text], .editer input[type=email] {
    width: 24rem;
  }
}
.editer textarea {
  width: 48rem;
  max-width: 100%;
  border-color: #C89372;
}
@media screen and (max-width: 767px) {
  .editer textarea {
    width: 24rem;
  }
}

.submit_main {
  padding: 1.2rem 3.6rem;
  background-color: #C89372;
  color: white;
  border: none;
  -webkit-border-radius: 2.6rem;
  -moz-border-radius: 2.6rem;
  border-radius: 2.6rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.submit_main:hover {
  background-color: #b67247;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 6px;
}

p.boutons {
  text-align: center;
}

.reponse_formulaire {
  font-weight: 600;
}

.reservation {
  margin-top: 5rem;
  border: 1px solid #C89372;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .reservation {
    padding: 3rem 3rem;
  }
}
.reservation .formulaire_spip {
  width: 100%;
}
html {
  font-size: 62.5%;
  text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

header {
  padding: 1.5rem 3rem;
}

.navbar {
  justify-content: space-between;
  padding: 1.5rem 0;
}
.navbar-brand img {
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .navbar-collapse {
    background-color: #F1EFE8;
  }
}
.navbar-nav {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar-nav .nav-item {
  margin-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 1rem 0;
  }
}
.navbar-nav .nav-item .nav-link {
  position: relative;
  z-index: 2;
  color: black;
}
.navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  right: 0%;
  transform: translate(0, 50%) scaleY(0);
  transition: transform 0.3s ease;
  background-color: #C89372;
}
.navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
  color: #C89372;
}
.navbar-nav .nav-item .nav-link:hover::before, .navbar-nav .nav-item .nav-link.active::before {
  transform: translate(0, 0%) scaleY(1);
}
.navbar-nav .nav-item:last-child a::before {
  display: none;
}
.navbar-nav .btn {
  height: 3rem;
  padding: 0 1rem;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  color: black;
  border: none;
}
.navbar-nav .btn:hover {
  background-color: #ba774d;
  color: white;
  outline: none;
}
.navbar-nav .btn:focus {
  outline: none;
  border: none;
}
.navbar-nav .btn::after {
  display: none;
}

.navbar-toggler {
  position: relative;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler #menu_checkbox {
  display: none;
}
.navbar-toggler label {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  transition: 0.3s ease transform;
  cursor: pointer;
}
.navbar-toggler label div {
  width: 6px;
  height: 3px;
  background-color: #6A6A6A;
  margin-left: 0;
  margin-bottom: 6px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom, 0.3s ease background-color;
}
.navbar-toggler label div:first-child {
  width: 22px;
}
.navbar-toggler label div:nth-child(2) {
  width: 15px;
}
.navbar-toggler label div:last-child {
  width: 30px;
  margin-bottom: 0;
}

#menu_checkbox:checked + label {
  transform: translateY(-50%) rotateZ(-90deg);
}
#menu_checkbox:checked + label div {
  width: 6px;
  height: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 12px;
  margin-bottom: 3px;
  background-color: #C89372;
}

.footer {
  background-color: #C89372;
  padding: 5rem 3rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 5rem 11.6rem;
  }
}
.footer .navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: max-content;
  margin: 0 auto 5rem;
}
.footer .navbar-brand--title {
  font-family: "adobe-garamond-pro", serif;
  font-size: 2.9rem;
  font-style: normal;
  color: white;
  margin-left: 0;
}
.footer .navbar-brand svg {
  fill: white;
  width: 5rem;
  height: 5rem;
}
.footer .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .col {
  flex-basis: 45%;
  max-width: 45%;
}
@media screen and (max-width: 767px) {
  .footer .col {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.footer p {
  color: white;
  font-size: 1.3rem;
}
.footer p.copyright {
  margin-top: 5rem;
  text-align: center;
}
.footer__nav--title {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__nav--item {
  font-size: 1.5rem;
}
.footer__nav--item a {
  color: white;
  text-decoration: none;
}

h1 {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-size: 3.8rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 5.1rem;
  }
}

h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2.2rem;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 3.1rem;
  }
}

.chapo,
h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
  .chapo,
h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .chapo,
h3 {
    font-size: 2.2rem;
  }
}

h3.card-chapo {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #C89372;
  margin-bottom: 2rem;
}

.chapo {
  line-height: 2.6rem;
  font-style: italic;
}
@media screen and (min-width: 992px) {
  .chapo {
    line-height: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .chapo {
    line-height: 3.4rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
p.card-title {
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
}
p.text {
  margin-bottom: 5rem;
}

.cat {
  color: white;
  font-size: 1.5rem;
  text-transform: uppercase;
}

a, .btn {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:focus, .btn:focus {
  outline: none;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .row > * {
    flex-basis: 100%;
  }
}

.col {
  position: relative;
}

.breadcrumb {
  justify-content: center;
  font-size: 1.2rem;
}
.breadcrumb-item {
  color: #C89372;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
}
.breadcrumb-item::before {
  color: #C89372 !important;
  font-size: 1rem;
  padding-right: 1.2rem !important;
}
.breadcrumb-item a {
  color: #C89372;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #C89372;
}

.section__bgwhite, .section__bggrey {
  padding: 5rem 3rem;
}
@media screen and (min-width: 768px) {
  .section__bgwhite, .section__bggrey {
    padding: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .section__bgwhite, .section__bggrey {
    padding: 10rem 10.6rem;
  }
}
.section__pub {
  position: relative;
  overflow: hidden;
  background-color: #C89372;
  background-position: center;
  background-size: 125%;
  background-image: url("../img/bg-logo.svg");
  background-repeat: no-repeat;
  padding: 5rem 3rem;
}
@media screen and (min-width: 768px) {
  .section__pub {
    padding: 5rem;
    background-size: 77%;
  }
}
@media screen and (min-width: 992px) {
  .section__pub {
    background-size: 55%;
  }
}
@media screen and (min-width: 1200px) {
  .section__pub {
    padding: 7rem 9rem;
    background-size: 48%;
  }
}
@media screen and (min-width: 1300px) {
  .section__pub {
    padding: 7rem 11.6rem;
  }
}
.section__pub img {
  padding-right: 0;
  margin-bottom: 0;
  object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section__pub img {
    padding-right: 1rem;
  }
}
.section__pub--title {
  font-size: 3.6rem;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .section__pub--title {
    font-size: 4.2rem;
  }
}
.section__pub .card-body {
  position: relative;
  margin-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .section__pub .card-body {
    margin-top: 5rem;
  }
}
.section__pub .card-body:before {
  content: "";
  width: 5rem;
  height: 0.1rem;
  background-color: white;
  display: block;
  position: absolute;
  left: 1rem;
  top: 0;
}
.section__pub .card-body .cat {
  display: block;
  margin-bottom: 2rem;
}
.section__pub .card-body .btn:hover {
  border: 2px solid black;
}
.section__bggrey {
  background-color: #F1EFE8;
}
.section__bggrey.imgFondTwo {
  position: relative;
  overflow: hidden;
  background: #F1EFE8 url("../img/bg-fond.png") no-repeat;
  background-position: 160% -10rem;
  background-size: 80%;
  background-blend-mode: color-dodge;
}
@media screen and (min-width: 768px) {
  .section__bggrey.imgFondTwo {
    background-position: 117% -12rem;
    background-size: 50%;
  }
}
@media screen and (min-width: 992px) {
  .section__bggrey.imgFondTwo {
    background-position: 111% -16rem;
    background-size: 40%;
  }
}
.section__bggrey.imgFondTwo::before {
  content: "";
  background: url("../img/bg-fond.png") no-repeat;
  background-size: contain;
  display: block;
  width: 80%;
  height: 40%;
  bottom: -34%;
  left: -5%;
  position: absolute;
  opacity: 0.18;
}
@media screen and (min-width: 768px) {
  .section__bggrey.imgFondTwo::before {
    width: 48%;
    height: 48%;
    bottom: -36%;
    left: -5%;
  }
}
@media screen and (min-width: 992px) {
  .section__bggrey.imgFondTwo::before {
    bottom: -20%;
  }
}
.section__bggrey.imgFondOne {
  position: relative;
  overflow: hidden;
}
.section__bggrey.imgFondOne::before {
  content: "";
  background: url("../img/bg-fond.png") no-repeat;
  background-size: contain;
  display: block;
  width: 54rem;
  height: 54rem;
  position: absolute;
  bottom: -26%;
  left: -5%;
  opacity: 0.18;
}
.section__bgwhite .main__titlezone {
  padding: 0 0 5rem 0;
}
.section__imgFond--one {
  position: relative;
  overflow: hidden;
  background: #F1EFE8;
  padding-bottom: 10rem;
}
.section__imgFond--one::before {
  content: "";
  background: url("../img/bg-fond.png") no-repeat;
  background-size: contain;
  display: block;
  width: 80%;
  height: 70%;
  bottom: -36%;
  left: -14%;
  position: absolute;
  opacity: 0.18;
}
@media screen and (min-width: 768px) {
  .section__imgFond--one::before {
    width: 48%;
    height: 48%;
    bottom: -14%;
    left: -5%;
  }
}
@media screen and (min-width: 992px) {
  .section__imgFond--one::before {
    bottom: -22%;
  }
}

.main p {
  font-size: 1.6rem;
}
.main--intro {
  padding: 5rem 2rem 5rem;
  text-align: center;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .main--intro {
    padding: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .main--intro {
    padding: 10rem 12rem 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .main--intro {
    padding: 10rem 21rem 5rem;
    line-height: 6rem;
  }
}
.main__titlezone {
  font-size: 1.6rem;
  padding: 5rem 3rem;
}
@media screen and (min-width: 768px) {
  .main__titlezone {
    padding: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .main__titlezone {
    padding: 7rem 10.6rem 6rem;
  }
}
.main__titlezone .chapo {
  padding-right: 5rem;
}
.main__article {
  max-width: 80rem;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 100;
}
.main__article p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
}
.main__article h2 {
  font-size: 3.1rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.main__article h3 {
  font-weight: bold;
  font-style: italic;
  margin-bottom: 4rem;
}
.main__article div img {
  order: 2;
  margin: 0 0 4rem 4rem;
  width: 520px;
  height: auto;
}
.main--visuel {
  display: flex;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
.main--visuel img {
  object-fit: cover;
  width: 100%;
}

.othersChoices {
  max-width: 80rem;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.othersChoices .card {
  max-width: 30rem;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .othersChoices .card {
    max-width: 20rem;
  }
}
.othersChoices .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.othersChoices .card-title {
  margin-bottom: 2rem;
}

.items-list {
  margin-bottom: 5rem;
}
.items-list:last-child {
  margin-bottom: 0;
}
.items-list .card-body {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .items-list .card-body {
    padding-top: 0rem;
  }
}
.items-list .card-img-top {
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .items-list .card-img-top {
    padding-right: 0;
  }
}
.items-list.therapeutes .card-body {
  padding-top: 2rem;
}

.spip_document_right {
  float: right;
  margin-right: -140px;
}

.spip_document_left {
  float: left;
  margin-left: -140px;
  margin-right: 40px;
}

.spip_document_center img {
  width: 100% !important;
  padding: 1rem 0 !important;
  margin: 1rem 0 !important;
}

.lity-content::after {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.box_mediabox::before {
  opacity: 1;
}

/*# sourceMappingURL=terrestyle.css.map */
