/*
Theme Name: lou
Theme URI: http://localhost:8888/lou/
Author: Louise OBÉ
Author URI: https://louiseobe.com
Description: Thème pour un coach
Version: 1.0
Tags: louiseobe
*/
body {
  color: #6F8F7A;
  font-family: "Libre Baskerville", serif;
}
body p {
  font-size: 13px;
  line-height: 1.5em;
}
.section-container {
  position: relative;
  max-width: 1200px;
  padding: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
a.button {
  text-transform: uppercase;
  border: 1px solid white;
  padding: 8px 45px;
  font-family: "Nunito";
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  font-size: 13px;
  margin-top: 30px;
}
a.button.green {
  background-color: #6F8F7A;
  border-color: #6F8F7A;
}
.arrow {
  flex: initial !important;
  position: relative;
  width: 25px;
  /* longueur de la tige */
  height: 1px;
  /* épaisseur */
  background: white;
  /* couleur */
  transition: all 0.3s ease-out;
}
/* pointe */
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  border-left: 6px solid white;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%) translateX(10%);
}
a.button:hover {
  background-color: white;
  color: #6F8F7A;
}
a.button:hover .arrow {
  transform: translateX(10px);
  background-color: green;
}
a.button:hover .arrow::after {
  border-left: 6px solid green;
}
h1 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}
h2 {
  font-weight: 800;
}
h3 {
  text-align: center;
  max-width: 600px;
  font-weight: bold;
  font-size: 16px;
}
header {
  background-color: initial;
  position: absolute;
  font-family: "Nunito";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
header .header-container {
  max-width: 900px;
  margin: 20px auto;
  position: relative;
  padding: 0 30px;
}
header .header-container li {
  position: relative;
}
header .header-container li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}
.header-container li:hover::after,
.header-container li.current_page_item::after {
  transform: scaleX(1);
}
section {
  width: 100vw;
  overflow-x: hidden;
}
section#top-home-section {
  background-image: url("img/escalier.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 100vh;
}
section#top-home-section .section-container {
  justify-content: center;
}
section#top-home-section .section-container h1,
section#top-home-section .section-container h2 {
  color: white;
}
section#top-home-section .section-container h1 {
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
section#top-home-section .section-container img {
  width: 300px;
  max-width: 50vw;
  margin-bottom: 20px;
}
section#presentation .section-container h3 {
  margin-bottom: 80px;
}
section#presentation .section-container div.item {
  display: flex;
  gap: 30px;
  align-items: center;
}
section#presentation .section-container div.item .left {
  flex: 2;
  padding: 10px;
}
section#presentation .section-container div.item .right {
  flex: 1;
}
section#presentation .section-container div.item h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
}
section#eco {
  max-height: 700px;
}
section#eco .left {
  flex: 1;
  height: 100%;
  padding: 5vw 5vw 5vw 10vw;
}
section#eco .right {
  flex: 2;
  padding-right: 7vw;
}
section#eco p {
  margin-bottom: 30px;
}
div.list {
  font-family: "Nunito";
  display: flex;
  flex-direction: row;
}
div.list div {
  line-height: 30px;
  font-size: 14px;
  padding-right: 30px;
}
section.green {
  color: white;
  background-color: #6F8F7A;
  justify-content: space-between;
  overflow-y: hidden;
  max-height: 500px;
}
section.green.fifty .section-container {
  gap: 50px;
}
section.green.fifty .section-container div {
  flex: 1;
}
section.green.fifty .section-container .right {
  padding-right: 15vw;
}
section.green.tourisme {
  max-height: initial;
}
section.green.tourisme .left {
  padding: 3vw 11.3vw !important;
}
section.green .section-container {
  flex-direction: row;
  padding: 0;
  width: 100%;
  max-width: initial;
}
section.green .section-container h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
section.green .section-container img.full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.green .section-container .left {
  flex: 1;
  padding: 3vw 10vw;
}
section.green .section-container .right {
  flex: 2;
}
section#marche {
  margin-bottom: 30px;
}
section.polly .section-container {
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}
section.polly .section-container .polly-item {
  border: 1px solid #6F8F7A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
section.polly .section-container .polly-item .txt {
  padding: 40px;
}
section.polly .section-container .polly-item h2 {
  margin-bottom: 20px;
}
section.polly .section-container .polly-left {
  border-top-left-radius: 50px;
}
section.polly .section-container .polly-right {
  border-top-right-radius: 50px;
}
section.polly .section-container .polly-left-bottom {
  border-bottom-left-radius: 50px;
}
section.polly .section-container .polly-top-right {
  border-top-right-radius: 50px;
}
section.polly .section-container .polly-full {
  flex-direction: row;
  gap: 40px;
}
section.polly .section-container .polly-full .txt {
  padding: 5vw;
}
section.polly .section-container .polly-full div {
  flex: 1;
}
section.polly .section-container .polly-full .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.polly .section-container .polly-tourisme .txt {
  padding: 3vw;
  flex: 1;
}
section.polly .section-container .polly-tourisme .photo {
  flex: 2;
}
section#memo .section-container .right {
  flex: 1;
  padding: 3vw;
}
section#memo .section-container .left {
  flex: 2;
  padding: 0;
  height: 100%;
}
section#memo .section-container .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#testimonial .section-container .arrow {
  background-color: #6F8F7A;
  cursor: pointer;
}
section#testimonial .section-container .arrow:after {
  border-left: 6px solid #6F8F7A;
}
section#testimonial .section-container .arrow-container {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#testimonial .section-container .arrow-container.left .arrow {
  transform: rotate(-180deg);
}
section#testimonial .section-container .testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#testimonial .section-container .item-testimonial {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 1vw 5vw;
  border-radius: 20px;
  border: 1px solid #6F8F7A;
  max-width: 700px;
  margin: 30px 50px;
  height: 180px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
section#testimonial .section-container .item-testimonial h4 {
  margin-top: 10px;
}
section#testimonial .section-container .item-testimonial.active {
  opacity: 1;
  position: relative;
}
section#footer {
  background-color: #6F8F7A;
}
section#footer .section-container {
  width: 95vw;
  flex-direction: row;
  justify-content: space-between;
  color: #F1ECE6;
  font-family: "Nunito";
  align-items: stretch;
}
section#footer .section-container .footer-column {
  padding: 0 2vw;
  flex: 1;
}
section#footer .section-container .footer-column p {
  font-size: 14px;
  margin: 10px 0;
}
section#footer .section-container .footer-column #logo-footer {
  max-width: 150px;
  margin-bottom: 20px;
}
section#footer .section-container .footer-column:nth-child(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
}
section#footer .section-container .footer-column:nth-child(3) {
  padding-left: 5vw;
}
section#footer .section-container .footer-column ul {
  list-style-type: none;
  padding-inline-start: 0px;
}
section#footer .section-container .footer-column ul li {
  margin: 15px;
  font-size: 13px;
}
section#footer .section-container .footer-column ul li a {
  color: #F1ECE6;
  text-decoration: none;
  text-transform: uppercase;
}
section#footer .section-container .footer-column ul li a:hover {
  font-weight: bold;
}
p.bottom {
  padding: 15px;
  background-color: #516B5A;
  color: white;
  font-size: 12px;
  text-align: center;
  font-family: "Nunito";
  line-height: initial;
}
p.bottom a {
  color: white;
  font-size: 12px;
}
.banner {
  height: 350px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  align-items: center;
}
.banner .section-container {
  color: white;
}
.banner .section-container h1 {
  margin-top: 30px;
  font-size: 50px;
}
#banner-locations {
  background-image: url("img/banner-gites.jpg");
}
section#list-biens .section-container {
  max-width: 100%;
}
section#list-biens .section-container .list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
section#list-biens .section-container .list li {
  width: 370px;
  height: auto;
  list-style-type: none;
  position: relative;
  border-top-right-radius: 70px;
  overflow: hidden;
}
section#list-biens .section-container .list li a.link-item {
  text-decoration: none;
  color: white;
}
section#list-biens .section-container .list li .tarif {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  border-bottom-left-radius: 80px;
  width: 95px;
  height: 65px;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: bold;
}
section#list-biens .section-container .list li .tarif span {
  font-size: 11px;
}
section#list-biens .section-container .list .bottom {
  color: white;
  font-family: "Libre Baskerville", serif;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section#list-biens .section-container .list .bottom h5 {
  font-size: 18px;
}
section#list-biens .section-container .list .bottom .superficie {
  font-size: 15px;
  font-family: "Nunito";
}
section#list-biens .section-container .list .bottom a.button {
  font-size: 11px;
  padding: 0px 5%;
  width: 50%;
  margin: 0;
}
section#list-biens .section-container .list .bottom a.button div.arrow {
  line-height: initial;
}
section#list-biens .section-container .list .bottom a.button:hover {
  background-color: white;
}
section#list-biens .section-container .list .photos {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
section#list-biens .section-container .list .photos .photo {
  width: 100%;
  height: 200px;
  padding: 0;
}
section#list-biens .section-container .list .photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#list-biens .section-container .list .photos .photo:nth-child(2),
section#list-biens .section-container .list .photos .photo:nth-child(3) {
  width: 50%;
}
section.photo-duo .section-container {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 50px;
}
section.photo-duo .section-container div {
  flex: 1;
}
section.photo-duo .section-container div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#prestations .section-container h2 {
  margin-bottom: 50px;
  position: relative;
}
section#prestations .section-container h2:after {
  content: "";
  position: absolute;
  width: 80%;
  right: 0;
  margin: 0 auto;
  border-bottom: 1px solid #ffa11e;
  bottom: -10px;
  left: 0;
}
section#prestations .section-container div.list {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  flex-wrap: wrap;
}
section#prestations .section-container div.list li {
  list-style-type: none;
  width: 25%;
  padding: 30px 40px;
  text-align: center;
}
section#prestations .section-container div.list li img {
  height: 40px;
  margin: 0 auto;
  padding-bottom: 20px;
}
section#prestations .section-container div.list li h3 {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 17px;
}
section#prestations .section-container div.list li h3:after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  margin: 0 auto;
  border-bottom: 1px solid brown;
  bottom: -20px;
  left: 0;
}
section#prestations .section-container div.list li p {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  line-height: 20px;
  margin-top: 30px;
}
section.banner-single-location {
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner-single-location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
section.banner-single-location h1 {
  position: relative;
  color: white;
  font-size: 40px;
  margin-top: 30px;
}
section.detail-location .section-container {
  max-width: 1200px;
}
section.detail-location .section-container h4 {
  max-width: 900px;
  text-align: center;
  margin-bottom: 50px;
}
section.detail-location .section-container div.block {
  flex-direction: row;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}
section.detail-location .section-container div.block .left {
  padding: 30px;
  border-top-left-radius: 50px;
  color: white;
  padding-right: 80px;
  width: 30%;
  max-width: 380px;
}
section.detail-location .section-container div.block .left h3 {
  margin: 30px 10px 10px 10px;
  text-align: left;
}
section.detail-location .section-container div.block .left p {
  font-family: "Nunito";
  font-size: 15px;
  width: 100%;
  line-height: 1.8em;
}
section.detail-location .section-container div.block .right {
  width: 70%;
  max-width: 1000px;
  position: relative;
}
section.detail-location .section-container div.block .right .swiper-pagination {
  bottom: -30px;
}
section.detail-location .section-container div.block .right .swiper {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
section.detail-location .section-container div.block .right .swiper-pagination-bullet-active {
  background-color: #6F8F7A;
}
section.detail-location .section-container div.block .right .swiper-wrapper {
  align-items: center;
}
section.detail-location .section-container div.block .right .swiper-wrapper .swiper-slide {
  height: -webkit-fill-available;
}
section.detail-location .section-container div.block .right .swiper-wrapper .swiper-slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section.detail-location .section-container div.block .right .swiper-button-next,
section.detail-location .section-container div.block .right .swiper-button-prev {
  color: white;
  width: 25px;
  height: 25px;
  background-color: #00000024;
  border-radius: 50px;
}
section.detail-location .section-container div.block .right .swiper-button-next:after,
section.detail-location .section-container div.block .right .swiper-button-prev:after {
  font-size: medium;
}
section.detail-location .section-container div.block-bottom {
  margin-top: 80px;
  width: 100%;
  border: 1px solid #6F8F7A;
  display: flex;
  padding: 30px;
  text-align: left;
  gap: 100px;
  justify-content: space-between;
}
section.detail-location .section-container div.block-bottom .left {
  width: 60%;
}
section.detail-location .section-container div.block-bottom .left h3 {
  font-size: 25px;
  text-align: left;
  margin-bottom: 20px;
}
section.detail-location .section-container div.block-bottom .left p {
  line-height: 2em;
}
section.detail-location .section-container div.block-bottom .right {
  width: 40%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: self-start;
}
section.detail-location .section-container div.block-bottom .right p {
  line-height: 2em;
}
section.detail-location .section-container div.block-bottom .right h4 {
  font-size: 20px;
  margin: 20px 0;
}
section.detail-location .section-container div.block-bottom a.button {
  width: 100%;
}
#full .section-container {
  padding-top: 0;
}
#banner-drome {
  background-image: url("img/banner-tourisme.jpg");
  align-items: center;
}
#banner-contact {
  background-image: url("img/banner-contact.jpg");
  align-items: center;
}
section#map iframe {
  width: 100vw;
}
section#contact .section-container h3 {
  font-size: 14px;
  margin-bottom: 50px;
}
section#contact .section-container form {
  margin-bottom: 50px;
}
section#contact .section-container form,
section#contact .section-container .wpcf7,
section#contact .section-container input,
section#contact .section-container textarea,
section#contact .section-container p {
  width: 100%;
  max-width: 700px;
}
section#contact .section-container input,
section#contact .section-container textarea {
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #6F8F7A;
  font-size: 11px;
  font-family: "Nunito";
}
section#contact .section-container textarea {
  padding-top: 20px;
  resize: none;
}
section#contact .section-container input[type="submit"] {
  text-transform: uppercase;
  border: 1px solid #6F8F7A;
  padding: 8px 45px;
  font-family: "Nunito";
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  font-size: 12px;
  background-color: #6F8F7A;
  cursor: pointer;
  width: 300px;
}
section#contact .section-container input[type="submit"]:hover {
  background-color: white;
  color: #6F8F7A;
}
#mentions .section-container {
  max-width: 900px;
  text-align: left;
  display: block;
}
#mentions .section-container p {
  margin-bottom: 10px;
}
#mentions .section-container h3 {
  text-align: left;
  margin: 30px;
}
#mentions .section-container h2 {
  margin-top: 50px;
  margin-bottom: 20px;
}
nav#mobile-menu {
  width: 100vw;
}
@media screen and (max-width: 1300px) {
  section#eco div.list div {
    line-height: 20px;
  }
  section#eco .left {
    padding: 0;
  }
  section#eco .right {
    padding: 40px;
  }
  section.green {
    max-height: none;
  }
}
@media screen and (max-width: 1200px) {
  section.detail-location .section-container {
    max-width: 95vw;
  }
}
@media screen and (max-width: 1140px) {
  section.detail-location .section-container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1000px) {
  section.detail-location .section-container div.block {
    gap: 0;
  }
  .banner {
    background-size: cover;
  }
  section.detail-location .section-container div.block .right .swiper {
    width: 100%;
  }
  section.detail-location .section-container h1 {
    margin-top: 0;
  }
  section.detail-location .section-container div.block {
    flex-direction: column-reverse;
  }
  section.detail-location .section-container div.block .left {
    width: 100%;
    border-radius: initial;
    max-width: none;
  }
  section.detail-location .section-container div.block .right {
    width: 100%;
  }
  section.detail-location .section-container div.block .right .swiper-pagination-bullet-active {
    background-color: white;
  }
}
@media screen and (max-width: 950px) {
  .section-container,
  section#presentation .section-container div.item {
    flex-direction: column !important;
  }
  section#presentation .section-container div.item div {
    width: 100%;
    max-width: 700px;
  }
  section#presentation .section-container h3 {
    margin-bottom: 20px;
  }
  section#presentation .section-container div.item h4,
  h4,
  section.green .section-container h2 {
    font-size: 25px;
    line-height: 30px;
  }
  section.green .section-container .left {
    padding: 30px;
  }
  section#eco {
    max-height: none;
  }
  section#eco .left {
    height: 200px;
    width: 100%;
    flex: none;
  }
  div.list {
    flex-direction: column;
  }
  section.polly .section-container .polly-full {
    flex-direction: column-reverse;
    gap: 5px;
  }
  section.green.fifty .section-container {
    gap: 20px;
  }
  section#memo .section-container .right {
    padding: 30px;
  }
  section#testimonial .section-container .item-testimonial {
    height: auto;
    padding: 30px;
  }
  section#footer .section-container .footer-column:nth-child(2) {
    border: none;
  }
  section#footer .section-container {
    gap: 20px;
  }
  section#footer .section-container div.footer-column {
    border-bottom: 1px solid white !important;
    padding: 10px 0;
  }
  section#footer .section-container .footer-column ul li {
    margin: 20px 0;
  }
  section#footer .section-container .footer-column:nth-child(3) {
    padding-left: 0;
    border: none !important;
  }
  section#list-biens .section-container .list {
    margin-top: 30px;
  }
  section.detail-location .section-container h4 {
    font-size: 18px;
    text-align: left;
  }
  section.detail-location .section-container {
    max-width: 100vw;
  }
  section.detail-location .section-container div.block .left {
    width: 100%;
    border-radius: initial;
    max-width: none;
  }
  section.detail-location .section-container div.block .right {
    width: 100%;
  }
  section.detail-location .section-container div.block .right .swiper-pagination-bullet-active {
    background-color: white;
  }
  section.detail-location .section-container div.block-bottom {
    margin-top: 20px;
    flex-direction: column;
    gap: 50px;
  }
  section.detail-location .section-container div.block-bottom .left,
  section.detail-location .section-container div.block-bottom .right {
    width: 100%;
  }
  section.detail-location .section-container div.block-bottom .left {
    border-bottom: 1px solid #6F8F7A;
    padding-bottom: 30px;
  }
  section.detail-location .section-container div.block-bottom a.button {
    margin-top: 10px;
  }
  section.photo-duo .section-container {
    gap: 20px;
    padding: 30px;
  }
  #banner-drome h1,
  #banner-contact h1 {
    font-size: 30px;
  }
  .polly-tourisme {
    border-radius: 0px !important;
  }
  section.polly .section-container,
  section.green.tourisme .section-container {
    padding: 30px;
  }
  section.green.tourisme .section-container .left {
    padding: 0 !important;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 800px) {
  .section-container {
    max-width: 100vw;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 700px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  header {
    padding: 0;
  }
  header .header-container {
    margin: 0;
  }
  section#top-home-section {
    height: 50vh;
  }
  section#top-home-section .section-container h1 {
    font-size: 20px;
  }
  section#top-home-section .section-container h2 {
    font-size: 18px;
  }
  h1 {
    font-size: 22px;
  }
  section#presentation .section-container h3 {
    margin-bottom: 40px;
  }
  section#footer .section-container {
    flex-direction: column;
  }
  section#footer .section-container li,
  section#footer .section-container li.socials {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
  }
}
