@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translate(-10rem);
  }
  80% {
    transform: translate(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translate(20rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInChalet {
  0% {
    transform: translateY(6rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(3rem);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes AmineSlogan {
  0% {
    opacity: 1;
    transform: translateY(3rem);
    color: #000;
  }
  100% {
    color: #00aeef;
    opacity: 1;
    transform: translate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  padding-bottom: 6rem;
}

.heading-primary-main {
  display: block;
  position: absolute;
  top: 200px;
  right: 100px;
  font-size: 4rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  color: #ff705b;
}

.heading-primary-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInRight 5s ease-in-out;
}

.heading-secondary {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: #ff705b;
  transition: all 0.2s;
  margin-bottom: 3rem;
  animation: moveInBottom 5s ease-in-out;
}
.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #afd6df;
  animation: moveInChalet 5s ease-in-out;
}

.slogan__paragraphe {
  width: 600px;
  display: block;
  position: absolute;
  top: 400px;
  right: 100px;
  color: #000;
  margin-top: 2rem;
  font-size: 1rem;
  text-align: justify;
  animation: moveInRight 5s ease-in-out;
}

@media all and (max-width: 500px) {
  .heading-primary-main {
    position: relative;
    margin-top: 100px;
    top: 0px;
    right: 0px;
    font-size: 2rem;
    text-align: center;
  }
  .slogan__paragraphe {
    width: 300px;
    margin: auto;
    position: relative;
    top: 0px;
    right: 0px;
  }
}
.u-center-text {
  text-align: center;
}

.u-margin-bottom-small {
  margin-bottom: 2rem;
}

.u-margin-bottom-mediun {
  margin-bottom: 4rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-top-mediun {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: absolute;
  bottom: 40px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #ff705b;
  color: #fff;
}
.btn--white::after {
  background-color: #fff;
}
.btn--blue {
  background-color: #ff705b;
  color: #fff;
  position: relative !important;
  bottom: 0 !important;
}
.btn--blue::after {
  background-color: #afd6df;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1rem;
  color: #00aeef;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #00aeef;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #00aeef;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

@media all and (max-width: 500px) {
  .btn, .btn:link, .btn:visited {
    font-size: 10px;
    bottom: 20px;
    padding: 0.6rem 1rem;
  }
}
.contact_form {
  width: 40%;
  padding: 40px;
  background: #fff;
}

.contact_form h2 {
  font-size: 30px;
  color: #ff705b;
  font-weight: 500;
}

.contact_form .inputbox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact_form .inputbox input,
.contact_form .inputbox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #ff705b;
  outline: none;
  resize: none;
}

.contact_form .inputbox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
}

.contact_form .inputbox input:focus ~ span,
.contact_form .inputbox input:valid ~ span,
.contact_form .inputbox textarea:focus ~ span,
.contact_form .inputbox textarea:valid ~ span {
  color: #ff705b;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact_form .inputbox input[type=submit] {
  width: 100%;
  position: relative;
  background: #ff705b;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

select {
  /* styling */
  width: 100%;
  background-color: white;
  border: thin solid #ff705b;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

option {
  display: block;
  padding: 15px;
}
option:hover {
  background: #ff705b;
}

/* arrows */
select.classic {
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, #ff705b, #ff705b);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

select.classic:focus {
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), linear-gradient(to right, gray, gray);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

@media all and (max-width: 500px) {
  .contact_form {
    width: 100%;
    padding: 10px;
    background: #fff;
  }
}
.contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140, 0.03) 0%, rgba(140, 140, 140, 0.03) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(65, 65, 65, 0.03) 0%, rgba(65, 65, 65, 0.03) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03) 0%, rgba(69, 69, 69, 0.03) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
  background-size: cover;
}

.contact .contact_content {
  max-width: 800px;
  text-align: center;
}

.contact .contact_content h3 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.contact .contact_content p {
  font-weight: 300;
  color: #fff;
}

.contact_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact_container .contact_info {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact_container .contact_info .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contact_container .contact_info .box .icon {
  min-width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact_container .contact_info .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}

.contact_container .contact_info .box .text h3 {
  font-size: 22px;
  font-weight: 500;
  color: #ff705b;
  padding: 0;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
}

@media screen and (max-width: 991px) {
  .contact {
    padding: 20px;
  }
  .contact_container {
    flex-direction: column;
  }
  .contact_container .contact_info,
  .contact_container .contact_form {
    margin-bottom: 40px;
    width: 100%;
  }
}
.row {
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

header {
  height: 90vh;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../img/background-accueil.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.logo-box {
  position: absolute;
  top: 4rem;
  left: 4rem;
}

.logo {
  height: 3.5rem;
}

.animation-lca {
  width: 3rem;
  height: 3rem;
  animation-name: moveInLCA;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

footer {
  width: 100%;
  background-color: #333;
}

.main-content {
  display: flex;
}

.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}

.footer__logo {
  height: 5rem;
  margin-top: 1rem;
}

.box h2 {
  margin-top: 3rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box .content {
  margin: 20px 0 0 0;
  position: relative;
}

.box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #fff;
}

.box .content:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15%;
  background: #ff705b;
  top: -10px;
}

.left .content p {
  font-size: 1.2rem;
  color: #fff;
  text-align: justify;
  width: 80%;
}

.left .content a span {
  color: #fff;
  font-size: 1.2rem;
}

.left .content a {
  text-decoration: none;
  color: #fff;
}

.left .content a span:hover {
  color: #00aeef;
}

.center .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.center .content p {
  color: #fff;
}

.right .liens a span {
  color: #fff;
  font-size: 1.2rem;
}

.right .liens a {
  text-decoration: none;
}

.right .liens a span:hover {
  color: #00aeef;
}

.bottom center {
  padding: 5px;
  font-size: 1rem;
  background: #ff705b;
}

.bottom center span {
  color: #fff;
}

.bottom center a {
  color: #333;
  text-decoration: none;
}

.bottom center a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  footer {
    position: relative;
    bottom: 0px;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
    padding: 10px 10px;
  }
  .left .content p {
    width: 100%;
  }
}
@media all and (max-width: 500px) {
  .left .content p {
    font-size: 0.8rem;
  }
  .center .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .center .content p {
    font-size: 0.8rem;
  }
  .Larche, .allers-retours {
    padding: 10px;
  }
  .right .liens a span {
    font-size: 0.8rem;
  }
  .bottom center {
    font-size: 0.8rem;
  }
}
/* Menu */
.row_nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav {
  background: rgba(5, 5, 5, 0.2);
}

nav::after {
  content: "";
  clear: both;
  display: table;
}

nav .logo {
  width: 10%;
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  padding-left: 60px;
}

.logo img {
  height: 100px;
}

.menu {
  width: 90%;
  margin-top: 30px;
}

nav ul {
  float: right;
  margin-right: 100px;
  list-style: none;
  position: relative;
}

nav ul li {
  float: left;
  display: inline-block;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  line-height: 70px;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 15px;
}

nav ul li a:hover {
  color: #ff705b;
  border-top: 3px solid #ff705b;
}

nav ul ul li a:hover {
  box-shadow: none;
  border-top: none;
}

nav ul ul li a:hover::before {
  content: ">> ";
}

nav ul ul {
  position: absolute;
  top: 90px;
  border-top: 3px solid #ff705b;
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s;
}

nav ul ul ul {
  background-color: transparent;
  border-top: none;
}

nav ul li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav ul ul li {
  position: relative;
  margin: 0px;
  width: 320px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(5, 5, 5, 0.4);
  z-index: 2;
}

nav ul ul li a {
  font-size: 14px;
  line-height: 50px;
}

nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 320px;
}

.show, .icon {
  display: none;
}

@media all and (max-width: 968px) {
  nav ul {
    margin-right: 0px;
    float: left;
  }
  nav .logo {
    padding-left: 30px;
    width: 100%;
  }
  .show + a, ul {
    display: none;
  }
  nav ul li, nav ul ul li {
    display: block;
    width: 100%;
  }
  nav ul li a:hover {
    box-shadow: none;
  }
  .show {
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover {
    color: #00aeef;
  }
  .icon {
    display: block;
    color: #00aeef;
    position: absolute;
    top: 10px;
    padding: 4px;
    right: 40px;
    line-height: 35px;
    cursor: pointer;
    font-size: 35px;
  }
  nav ul ul {
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  nav ul ul a {
    padding-left: 40px;
  }
  nav ul ul ul a {
    padding-left: 80px;
  }
  nav ul ul ul li {
    position: static;
  }
  [id^=btn]:checked + ul {
    display: block;
  }
  nav ul ul li {
    border-bottom: 0px;
  }
  span.cancel:before {
    content: "\f00d";
  }
}
.leschalets {
  width: 100%;
  height: auto;
  margin-top: 50px;
  background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140, 0.03) 0%, rgba(140, 140, 140, 0.03) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(65, 65, 65, 0.03) 0%, rgba(65, 65, 65, 0.03) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03) 0%, rgba(69, 69, 69, 0.03) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

.items-leschalets {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-chalet {
  width: 800px;
  height: 800px;
}

.contenu-chalet {
  width: 400px;
  position: relative;
  display: flex;
  justify-content: center;
}

.item-chalet .img-box {
  width: 400px;
  height: 400px;
}

.img-box {
  margin-left: 200px;
}

.item-chalet .img-box img {
  width: 400px;
  height: 400px;
}

.item-chalet .text-box {
  width: 380px;
  height: 380px;
  position: absolute;
  top: 320px;
  left: 300px;
  border-radius: 50%; /* Pour rendre la div ronde */
  border: 15px solid #ff705b; /* Pour la bordure rouge */
  background-color: lightgrey; /* Pour un fond gris clair */
  display: flex;
  align-items: center;
  flex-direction: column;
}

.item-chalet .text-box p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
}

.item-chalet .text-box h3 {
  margin-top: 50px;
  font-size: 14px;
}

.paragraphe-accueil {
  width: 1200px;
  padding: 20px;
  text-align: justify;
  margin: auto;
}

.plan {
  width: 1200px;
  margin: auto;
  position: relative;
}

.plan img {
  max-width: 100%;
  height: auto;
}

.pointadresseA img {
  position: absolute;
  width: 32px;
  left: 180px;
  top: 800px;
}

.pointadresseA p {
  position: absolute;
  left: 220px;
  top: 800px;
  color: #ff705b;
  font-size: 25px;
  font-weight: 800;
}

.pointadresseR img {
  position: absolute;
  width: 32px;
  left: 1120px;
  top: 220px;
}

.pointadresseR p {
  position: absolute;
  left: 980px;
  top: 220px;
  color: #ff705b;
  font-size: 25px;
  font-weight: 800;
}

.pointadresseM img {
  position: absolute;
  width: 32px;
  left: 660px;
  top: 360px;
}

.pointadresseM p {
  position: absolute;
  left: 700px;
  top: 360px;
  color: #ff705b;
  font-size: 25px;
  font-weight: 800;
}

.popupA, .popupR, .popupM {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popupA p, .popupR p, .popupM p {
  position: relative;
  left: 0;
  top: 0;
}

.popupA img, .popupR img, .popupM img {
  position: relative;
  left: 0;
  top: 0;
  width: 350px;
}

.pointadresseA:hover .popupA {
  display: block;
}

.pointadresseR:hover .popupR {
  display: block;
}

.pointadresseM:hover .popupM {
  display: block;
}

.village img {
  position: absolute;
  width: 32px;
  left: 1000px;
  top: 120px;
}

.village p {
  position: absolute;
  left: 1040px;
  top: 120px;
  color: #333;
  font-size: 25px;
  font-weight: 800;
}

.ski img {
  position: absolute;
  width: 32px;
  left: 300px;
  top: 840px;
}

.ski p {
  position: absolute;
  left: 340px;
  top: 840px;
  color: #333;
  font-size: 25px;
  font-weight: 800;
}

@media all and (max-width: 500px) {
  .paragraphe-accueil {
    width: 300px;
    padding: 5px;
    text-align: justify;
    margin: auto;
  }
  .items-leschalets {
    flex-direction: column;
  }
  .item-chalet {
    width: 100%;
    height: 700px;
  }
  .contenu-chalet {
    width: 350px;
    position: relative;
    flex-direction: column;
    text-align: center;
    margin: auto;
  }
  .item-chalet .img-box {
    width: 300px;
    height: 300px;
    margin: auto;
  }
  .img-box {
    margin-left: 0px;
  }
  .item-chalet .img-box img {
    width: 300px;
    height: 300px;
  }
  .item-chalet .text-box {
    width: 280px;
    height: 280px;
    position: relative;
    top: -20px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .item-chalet .text-box p {
    font-size: 10px;
    font-weight: 500;
    margin-top: 30px;
  }
  .plan {
    width: 300px;
    margin: auto;
    position: relative;
  }
  .plan img {
    max-width: 100%;
    height: auto;
  }
  .pointadresseA img {
    width: 10px;
    left: 40px;
    top: 340px;
  }
  .pointadresseA p {
    left: 55px;
    top: 337px;
    font-size: 10px;
  }
  .pointadresseR img {
    width: 10px;
    left: 280px;
    top: 203px;
  }
  .pointadresseR p {
    left: 225px;
    top: 200px;
    font-size: 10px;
  }
  .pointadresseM img {
    position: absolute;
    width: 10px;
    left: 160px;
    top: 230px;
  }
  .pointadresseM p {
    position: absolute;
    left: 175px;
    top: 230px;
    font-size: 10px;
  }
  .pointadresseA:hover .popupA {
    display: none;
  }
  .pointadresseR:hover .popupR {
    display: none;
  }
  .pointadresseM:hover .popupM {
    display: none;
  }
  .village img {
    width: 10px;
    left: 225px;
    top: 180px;
  }
  .village p {
    left: 240px;
    top: 178px;
    font-size: 10px;
  }
  .ski img {
    width: 10px;
    left: 100px;
    top: 340px;
  }
  .ski p {
    left: 115px;
    top: 337px;
    font-size: 10px;
  }
}

/*# sourceMappingURL=tams-editions.css.map */
