@import url('https://fonts.googleapis.com/css?family=Mada:300,400,600,700');



/* ------------------------------------------------------------- */
/*------------------ CLASSES GENERALES ------------------------------- */
/* ------------------------------------------------------------- */


body{
  font-family: 'Mada', sans-serif;
  font-size: 14px;
  color: #44474a;
  overflow-x: hidden;
}

h2, h3, h4{
  text-transform: uppercase;
  font-weight: bold;
}

h1{
  font-size: 48px;
  font-weight: bold;
}

h2{
  font-size: 24px;
  letter-spacing: 5px;
}

h3{
  font-size: 16px;
}

.h3-white{
  color: #fff;
}

h4{
  font-size: 16px;
}

ul{
  margin-bottom: 0;
}

a{
  color: #44474a;
}
a:hover{
  text-decoration: none;
  color: #44474a;
}

.main-button, .white-button{
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

.main-button{
  color: white;
  padding: 5px 25px;
  background-color: #cea530;
  border: 1px solid #cea530;
  transition: all .3s;
}

.main-button:hover{
  color: #cea530;
  padding: 5px 25px;
  background-color: #fff;
  border: 1px solid #cea530;
}

.white-button{
  color: #cea530!important;
  padding: 5px 25px;
  border: 1px solid #cea530;
  transition: all .3s;
}

.white-button:hover{
  color: #fff!important;
  padding: 5px 25px;
  background-color: #cea530;
  border: 1px solid #cea530;
}

.diagonal {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 18rem;
  width: 7rem;
}

.diagonal-small {
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
  height: 7rem;
  width: 7rem;
}

.diagonal-small::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 100%;
  background-color: #fff;
  bottom: .5rem;
  -webkit-transform: rotate(160deg);
  transform: rotate(160deg);
  right: 0;
  z-index: 5;
}

.diagonal::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 100%;
  background-color: #44474a;
  bottom: .5rem;
  -webkit-transform: rotate(160deg);
  transform: rotate(160deg);
  right: 0;
}

#blur{
  position: absolute;
  top: 60px;
}

.trait{
  width: 40px;
  height: 2px;
  background-color: #44474a;
  margin: auto;
  margin-bottom: 10px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #f5f0e2;
  background-image: none;
  border: 1px solid #f5f0e2;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.0);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.0);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.modal-content{
  border-radius: 0px;
}

.modal-header{
  border-bottom: none;
  max-width: 650px;
  margin: auto;
  padding: 20px 15px 0 15px;
}

.modal-dialog {
  margin: 5px auto;
}

.modal-body .content-text{
  max-width: 650px;
  margin: auto;
  padding-top: 20px;
}

.modal-footer{
  max-width: 650px;
  margin: auto;
  padding: 0;
  border: none;
  text-align: left;
  background-color: #f5f0e2;
}

.modal-footer-content{
  padding-top: 10px;
  padding-left: 20px;
}

.modal-footer .map-content{
  padding: 0;
}
.modal-footer ul{
  padding: 13px;
}

.content-img{
  text-align: center;
}

.bottom-content{
  max-width: 650px;
  margin:auto;
  text-align: center;
  padding: 10px 0 20px 0;
}
#normalModal .close {
    float: right;
    font-size: 34px;
    font-weight: 400;
}

/* ------------------------------------------------------------- */
/*------------------ ACCORDEON --------------------------------- */
/* ------------------------------------------------------------- */

.accordion {
  cursor: pointer;
  text-align: center;
}

.accordion h3:before{
  padding: .8rem;
  color: #44474a;
  content: url('../pictos/down-arrow.png');
}

.accordion h3:after{
  padding: .8rem;
  color: #44474a;
  content: url('../pictos/down-arrow.png');
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out;
  text-align: center;
  border: none;
}

/* ------------------------------------------------------------- */
/*------------------ ACCORDEON MENU MOBILE --------------------- */
/* ------------------------------------------------------------- */

.accordion-mobile {
  cursor: pointer;
}

.accordion-mobile h3:before{
  padding: .8rem;
  color: #44474a;
  content: url('../pictos/down-arrow.png');
}

.accordion-mobile h3:after{
  padding: .8rem;
  color: #44474a;
  content: url('../pictos/down-arrow.png');
}

.panel-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out;
  border: none;
}

.accordion-mobile li{
  display: block;
  color: #44474a;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  transition: .5s;
}
.accordion-mobile li:hover{
  color: #000000;
}

.active{
  background-color: #f8f8f8;
}

.panel-mobile .mobile-menu{
  padding-left: 20px;
}
.panel-mobile .mobile-theme{
  padding-left: 20px;
}

.mobile-menu-logo{
  text-align: center;
  padding: 15px;
  padding-top: 0;
}

/* ------------------------------------------------------------- */
/*------------------ BURGER MENU ------------------------------- */
/* ------------------------------------------------------------- */

.newmeniu {
  cursor:pointer;
  font-weight:600;
}

.open-burger{
  padding: 5px 20px;
  z-index: 5;
  background-color: #f5f0e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switch-lang li{
  display: flex;
}

.switch-lang a{
  padding-right: 0!important;
}

.sidenav {
    height: 100%;
    width: 0; /* 0 width - changer avec le JavaScript */
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 15px;
    transition: 0.5s;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}

.sidenav a:hover, .offcanvas a:focus{
    color: #000000;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    z-index: 5;
}


/* PETITS DEVICES */

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


.navmenu {
   width: 250px;
   display:block;
   position:relative;
}

.navmenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 250px;
    background-color: none;

}

.navmenu ul li {
  transition: all .5s;
  border-top: 1px solid #f1f1f1;
}


.navmenu ul li:hover{
  background-color: #f2f2f2;
}


.navmenu ul li a {
    display: block;
    color: #44474a;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 15px;
    text-transform:uppercase;
}

.navmenu ul li a:hover {
    color: #000000;
}

.navmenu ul li ul li a {
    display: block;
    color: #44474a;
    padding: 8px 30px;
    text-decoration: none;
}



/* ------------------------------------------------------------- */
/*------------------ TOPBAR ------------------------------- */
/* ------------------------------------------------------------- */


#top-bar{
  background-color: #f5f0e2;
  font-size: 14px;
}

.container-top{
  max-width: 1665px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.left-content, .right-content{
  display: flex;
  padding: 10px 50px;
}

.search input{
  background: #f5f0e2;
  border: none;
}

.phone, .search ,.shopping-card ,.lang{
  display: flex;
  align-items: center;
  margin: 0 0 0 40px;
}

.phone:before{
  content: url('../pictos/phone.png');
  max-width:21px;
  max-height:21px;
  padding-right: 10px;
}

.search:before{
  content: url('../pictos/search.png');
  max-width:21px;
  max-height:21px;
  padding-right: 10px;
}
/* .shopping-card:before{
  content: '0';
  background-image: url('../pictos/shopping.png');
  max-width: 28px;
  max-height: 28px;
  padding: 4px 10px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
} */
.navmenu .shopping-card::before {
  display: none;
}

/* .navmenu .shopping-card:after{
  content: '0';
  background-image: url('../pictos/shopping.png');
  max-width: 28px;
  max-height: 28px;
  padding: 4px 10px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
} */

.navmenu .shopping-card{
    display: flex;
    align-items: center;
    margin: 0 40px 0 0px;
}

.lang::after{
  content: url('../pictos/dropdown.png');
  display: flex;
  padding-left: 10px;

}


/* ------------------------------------------------------------- */
/*------------------ NAVBAR ------------------------------- */
/* ------------------------------------------------------------- */

#nav-bar{
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: white;
}

#nav-bar .mid-content{
  position: absolute;
  top: -85%;
  left: 43%;
  z-index: 2;
}

.nav-bar ul ul {
  display: none;
  padding: 0px;
  border-radius: 0px;
  position: absolute;
  top: 100%;
}

.nav-bar ul li:hover > ul {
  display: grid;
}

.nav-bar ul {
  list-style: none;
  position: relative;
  display: flex;
}

.nav-bar-bar ul:after {
  content: "";
  clear: both;
  display: block;
}

.main-li{
  margin-left: 80px;
}
/*------------------ FABIEN ------------------------------- */
.main-li2 {
    margin-left: 80px;
}

.last-li{
  margin-left: 80px;
}

.main-li-right{
  margin-right: 100px;
}

.main-li::after{
  content: url('../pictos/dropdown.png');
  display: flex;
  padding-left: 10px;
}

.main-li-right::after{
  content: url('../pictos/dropdown.png');
  display: flex;
  padding-left: 10px;
}

.nav-bar ul li {
  display: flex;
  align-items: center;
  float: left;
  text-transform: uppercase;
}

.first-li{
  margin-left: 0px!important;
}
.first-li-right{
  margin-right: 100px;
}

.nav-bar ul li:hover a {
  transition: all .3s;
}

.nav-bar ul li a {
  display: block;
  color: #44474a;
  text-decoration: none;
  line-height: 35px;
}




/* ------------------------------------------------------------- */
/*------------------ FOOTER ------------------------------- */
/* ------------------------------------------------------------- */


#bottom-3{
  background-color: #f5f0e2;
  padding: 45px 0;
}

.logo-partenaires{
  text-align: center;
}

.logo-partenaires img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  opacity: .7;
  transition: all.5s;
}

.logo-partenaires img:hover{
  opacity: 1;
  filter: none;
}

#footer-mod{
  background-color: #44474a;
  padding: 45px 0;
}

#footer-mod ul{
  list-style: none;
  line-height: 30px;
}

#footer-mod ul li a{
  color: #fff;
}

#footer-mod  .main-footer-title{
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

#footer-mod .small-footer-link{
  text-decoration: underline;
  font-size: 13px;
}

#footer-mod #section-3 #rs-pictos, #footer-mod #section-3 input{
  margin: 5px 0px 20px 0px;
  font-size: 14px;
}

#footer-mod #section-3 img{
  padding-right: 10px;
}

#footer-mod #section-4 input{
  width: 46%;
  margin: 10px 10px 0px 0;
}
#footer-mod #section-4 textarea{
  margin: 10px 0px;
  width: 96%;
}

#footer-mod #section-4 #footer-desc{
  color: #fff;
  font-size: 13px;
}
#footer-mod #section-4 #mail-input{
  width: 96%;
}

footer .container{
  padding-top: 10px;
}
footer a{
  font-weight: 600;
  padding: 0px 10px;
}

footer p{
  text-transform: uppercase;
}


/* ------------------------------------------------------------- */
/*------------------ PAGE ACCEUIL ------------------------------- */
/* ------------------------------------------------------------- */
.description-sejour-vignette{
  min-height: 100px;
}

#pageaccueil .slick-arrow{
  display: none!important;
}

#pageaccueil #header-content{
  display: flex;
  position: absolute;
  top: 570px;
}

.testimonials p{
  font-size: 16px;
}

.testimonials h3{
  margin-bottom: 30px
}


#top-1{
  padding-bottom: 50px;
}

#pageaccueil #top-1 h2{
  text-align: center;
  padding-bottom: 35px;
}

#pageaccueil #top-1 .vignette-sejour,#pageaccueil #top-1 img{
  width: 370px;
  background-color: #fff;
}

#pagedestinations #top-1 img, #pageblog #top-3 img{
  opacity: 0.7;
  transition: all .2s;
  height: 190px;
}

#pageaccueil #top-1 img{
  opacity: 0.7;
  transition: all .2s;
  height: 240px;
}

#pageaccueil #top-1 img:hover, #pagedestinations #top-1 img:hover, #pageblog #top-3 img:hover{
  opacity: 1
}

.vignette-sejour{
  box-shadow: 0px 0px 20px #b2b2b2;
  -webkit-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.vignette-sejour:hover{
  box-shadow: 0px 0px 20px #44474a;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.price{
  font-size: 18px;
  margin: 20px 0;
  padding-bottom: 10px;
  visibility: hidden;
}

.cta-button{
  margin-bottom: 25px;
}

#bottom-2 ul, #top-1 ul ,#top-3 ul{
  text-align: center;
  list-style: none;
  padding: 10px 20px;
}


#top-2{
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

#top-2 .content-center{
  text-align: center;
  padding-bottom: 30px;
}
#top-2 .content-bottom-center{
  text-align: center;
}

#top-2 p{
  padding-bottom: 10px;
}

#top-2 .content-bottom-center h3{
  padding-bottom: 10px;
}

#pageaccueil #top-3{
  background-color: #f5f0e2;
  text-align: center;
  padding-bottom: 50px;
}

#top-3 .etapes{
  padding-top: 45px;
}

#top-3 .module{
  display: flex;
  align-items: center;
}

#top-3 .etapes img{
  max-width: 130px;
  max-height: 104px;
  padding-bottom: 10px;
}
#top-3 h2{
  padding-bottom: 20px;
  padding-top: 10px;
}

#bottom-1{
  padding-bottom: 50px;
}

#bottom-1 .intro{
  text-align: center;
}

#bottom-1 h2{
  padding-top: 50px;
  padding-bottom: 20px;
}


#bottom-2{
  text-align: center;
  padding-bottom: 50px;
}

#bottom-2 .autoplay{
  width: 833px;
  height: 440px;
  box-shadow: 0px 0px 20px #b2b2b2;
  margin: auto;
}

#bottom-2 .testimonials{
  display: flex;
  align-items: center;
  width: 833px;
  height: 440px;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url('../images/background-testimonials.jpg');
}

#bottom-2 .content{
  text-align: center;
  width: 600px;
  margin: auto;
}

#bottom-2 h2{
  padding-bottom: 50px;
}


.vignette-container{
  height: auto;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

figure.snip .titre-services {
  bottom: -2px;
  left: -14px;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 101%;
  background-image: url("../images/sub-blur-1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  text-align: left;
}
figure.snip .titre-services-blue {
  background-image: url("../images/sub-blur-2.svg")!important;
  background-repeat: no-repeat;
  background-size: cover;
}

figure.snip:hover .titre-services {
  bottom: 0;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 100%;
  background-color: #44474a;
  opacity: 0;
}


figure.snip {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  width: auto;
  color: #000000;
  text-align: left;
  -webkit-perspective: 50em;
  perspective: 50em;
  color: #fff;

}
figure.snip * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
figure.snip img {
  max-width: 100%;
  vertical-align: top;
}
figure.snip figcaption {
  top: 50%;
  left: 10px;
  right: 10px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  padding: 15px;

}

figure .content {
  display: flex;
  text-align: left;
  margin-left: -25px;
}

figure.snip h2 {
  margin: 0;
}

figure.snip h2 {
  padding-bottom: 20px;
}


figure.snip:after {
  background-image: url('../images/blur-vignette.jpg');
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}

figure.snip-blue:after {
  background-color: #44474a;
}

figure.snip .lienhover {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-image: url('../images/blur-vignette-opacity.png');
}

figure.snip:hover figcaption,
figure.snip.hover figcaption {
  z-index: 5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip:hover:after,
figure.snip.hover:after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 0.9;
}

/* ------------------------------------------------------------- */
/*------------------ PAGE DESTINATIONS ------------------------- */
/* ------------------------------------------------------------- */

#pagedestinations #header-bg{
  background-image: url('../images/hero-destinations.jpg');
  background-repeat: no-repeat;
  padding-bottom: 29rem;
  background-size: cover;
}


#pagedestinations #nav-bar{
  background-color: rgba(255, 255, 255, 1);
}

#nav-bar .main-li ul{
  background-color: rgba(255, 255, 255, 1);
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

#nav-bar .main-li-right ul{
  background-color: rgba(255, 255, 255, 1);
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

#pagedestinations h1{
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
  padding-top: 27rem;
}

#pagedestinations #header-content p{
  text-align: center;
  color: #fff;
}

#pagedestinationdetail #bottom-2 .vignette-sejour, #pageblog #top-3 .vignette-sejour, #pagedestinations #top-1 .vignette-sejour, #pagedestinationdetail #bottom-2 img, #pagedestinations #top-1 img, #pageblog #top-3 img {
  width: 320px;
  background-color: #fff;
  margin: auto;
}

#pagedestinations #top-1 .sousmenu{
  padding: 0px 0 50px 0;
  display: flex;
  justify-content: space-between;
}

#pagedestinations #top-1 .sousmenu h3::after{
  content: '/';
  padding-left: 35px;
}

#pagedestinations #top-1 #no-after::after{
  display: none;
}

#pagedestinations #top-1 .navigation{
  display: flex;
  justify-content: center;
}

#pagedestinations #top-1 h3:last-child::after{
  display: none;
}

#pagedestinations #top-1 h2:first-child::after{
  content: '>';
  padding: 0 10px;
}

#pagedestinations #top-1 h2{
  padding-top:30px;
  font-size: 20px;
}

/* ------------------------------------------------------------- */
/*------------------ PAGE SEJOUR ------------------------------- */
/* ------------------------------------------------------------- */

#pagesejour #top-1 .navigation, #pageblog #top-1 .navigation, #pagedestinationdetail #top-1 .navigation{
  display: flex;
  max-width: 1486px;
  margin: auto;
  padding-top: 120px;
}

#pagesejour #top-1 h2, #pageblog #top-1 h2, #pagedestinationdetail #top-1 h2{
  padding-top:30px;
  font-size: 14px;
  letter-spacing:2px;
}

#pagesejour #top-1 h2::after ,#pageblog #top-1 h2::after, #pagedestinationdetail #top-1 h2::after{
  content: '>';
  padding: 0 10px;
}

#pagesejour #top-2 .first{
  background-image: url('../pictos/trait-jaune.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
  background-position-x: 140px;
}
#pagesejour #top-2 .second{
  background-image: url('../pictos/trait-double.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
}
#pagesejour #top-2 .third{
  background-image: url('../pictos/trait-beige.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
}
#pagesejour #top-2 .fourth{
  background-image: url('../pictos/trait-beige.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
  background-position-x: -240px;
}
#pagesejour #top-2 .five{
  background-image: url('../pictos/trait-beige.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
  background-position-x: 140px;
}
#pagesejour #top-2 .six{
  background-image: url('../pictos/trait-jaune.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
}
#pagesejour #top-2 .seven{
  background-image: url('../pictos/trait-jaune.jpg');
  background-repeat: no-repeat;
  background-position-y: 45px;
  background-position-x: -225px;
}

#pagesejour #top-1 h2:last-child::after, #pageblog #top-1 h2:last-child::after, #pagedestinationdetail #top-1 h2:last-child::after{
  display: none;
}

#pagesejour #top-2 #main-step{
  width: 95px;
  height: 95px;
  background-color: #cea530;
  border-radius: 50px;
  text-align: center;
  display: flex;
  margin: auto;
}
#pagesejour #top-2 .etape{
  width: 95px;
  height: 95px;
  background-color: #f5f0e2;
  border-radius: 50px;
  text-align: center;
  display: flex;
  margin: auto;
}
#pagesejour #top-2 #main-step span{
  margin: auto;
  color: white;
  font-size: 30px;
  font-weight: bold;
  opacity: 1;
}

#pagesejour #top-2  span{
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  opacity: .5;
}

#pagesejour #top-2 .content{
  text-align: center;
  width: 125px;
  margin: auto;
}

#pagesejour #top-2 #main-nav{
  color: #cea530;
}

#pagesejour #top-2 .sub-nav{
  color: #44474a;
  opacity: 0.5;
}

#pagesejour #bottom-1 h2 {
  padding-top: 30px;
  padding-bottom: 20px;
}

#pagesejour #bottom-1 {
  padding-bottom: 50px;
  padding-left: 0;
}

#pagesejour #bottom-2 .content {
  text-align: left;
  width: auto;
  margin: auto;
}

#pagesejour #bottom-2 {
  padding-bottom: 50px;
  border-top: 1px solid #44474a;
  padding-left: 0;
  padding-top: 15px;
}

#pagesejour h1{
  padding-bottom: 30px;
}

#pagesejour .trait{
  margin: 0;
  margin-bottom: 10px;
}
#pagesejour #bottom-2 h2 {

  padding-bottom: 20px;

}

#pagesejour .remove, #pagesejour .add{
  width: 30px;
  height: 30px;
  border: 1.5px solid #cea530;
  display: flex;
  color: #cea530;
}

#pagesejour .number{
  width: 50px;
  height: 30px;
  border-top: 1.5px solid #cea530;
  border-bottom: 1.5px solid #cea530;
  display: flex;
}

#pagesejour .remove a, #pagesejour .add a{
  margin: auto;
}

#pagesejour .number span{
  margin: auto;
}

#pagesejour .incrementation{
  display: flex;
}

#pagesejour h3{
  margin-top: 0;
}

#pagesejour .total{
  text-align: right;
}

#pagesejour #price-total{
  text-align: right;
  font-size: 20px;
}
#price-total{
  visibility: hidden;
}

#pagesejour #top-2 span:before {
  content: '';
  width: 50px;
  height:4px;

}

#pagesejour #top-2 h3 {
  margin-top: 20px;
}

#pagesejour #bottom-2{
  text-align: left;
}

#pagesejour .champ{
  padding-bottom: 10px;
}


/* ------------------------------------------------------------- */
/*------------------ PAGE BLOG ------------------------------- */
/* ------------------------------------------------------------- */

#pageblog #top-1 .content{
  color: #fff;
}

#pageblog .h1-white{
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 15px;
  font-size: 24px;
}



figure.snip-blog .sub-content {
  top: -2px;
  left: -14px;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 101%;
  background-image: url("../images/sub-blur-1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
}

figure.snip-blog .main-title {
display: flex;
padding: 15px;
}


figure.snip-blog .trait-white {
margin-left: 40px;
width: 450px;
height: 2px;
background-color: #fff
}

figure.snip-blog p{
  margin-left: 40px;
}

figure.snip-blog {
  position: relative;
  float: left;
  overflow: hidden;
  width: auto;
  color: #000000;
  text-align: left;
  -webkit-perspective: 50em;
  perspective: 50em;
  color: #fff;
}

figure.snip-blog .credits{
  display: flex;
  margin-top: 10px;
}
figure.snip-blog .credits a{
padding-right: 5px;
}

figure.snip-blog img {
  max-width: 100%;
  vertical-align: top;
}
figure.snip-blog figcaption {
  top: 50%;
  left: 10px;
  right: 10px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  padding: 15px;

}

figure .content-blog {
  display: flex;
  text-align: left;
  margin-left: -25px;
}

figure.snip-blog h2 {
  margin: 0;
}

figure.snip-blog h2 {
  padding-bottom: 20px;
}

figure.snip-blog .blur-blog {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-image: url('../images/blur-blog.png');
}


figure.snip-blog .blur-vignette-blog {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-image: url('../images/blur-vignette-blog.png');
}

figure .main-title-vignette{
  max-width: 130px;
  margin: 20px;
}

figure.snip-blog .sub-vignette-content {
  bottom: -30px;
  left: -10px;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 101%;
  background-image: url("../images/sub-blur-1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
}

#pageblog #top-2 h2{
  color: #44474a;
}

#pageblog #top-2 h4{
  text-transform: none;
  color: #cea530;
}

#pageblog #top-2{
  padding-top: 0;
}

#pageblog .content-text{
  text-align: justify;
}

#pageblog .content-left{
  float: left;
  text-align: left;
}

#pageblog .content-right{
  float: right;
  text-align:right;
}

#pageblog #top-3{
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #44474a;
}

#pageblog #top-3 h4{
  font-size: 14px;
  font-weight: 400;
}

#pageblog #bottom-3{
  margin-top: 50px;
}


/* ------------------------------------------------------------- */
/*------------------ PAGE DESTINATION DETAILS ------------------ */
/* ------------------------------------------------------------- */

#pagedestinationdetail .slick-prev::before, #pagedestinationdetail .slick-next::before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: #2b2b2b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#pagedestinationdetail .programme{
  max-width: 1160px;
  margin: auto;
}
#pagedestinationdetail .programme .slick-prev::before{
    color: black;
}
#pagedestinationdetail .programme .slick-next::before {
    color: black;
}

#pagedestinationdetail #top-2 h2{
  text-align: left;
}

#pagedestinationdetail #top-2 .content{
  background-color: #f5f0e2;
  text-align: justify;
}

#pagedestinationdetail .trait{
  margin-left: 0;
}

#pagedestinationdetail .main-button:hover{
  background-color: transparent;
}

#pagedestinationdetail .description{
  margin-top: 20px;
}

#pagedestinationdetail .tags{
  margin-top: 20px;
}

#pagedestinationdetail .partager{
  margin-top: 20px;
  border-bottom: 1px solid #4D44474a;
}

#pagedestinationdetail #top-2 .content .price{
  border-top: 1px solid #4D44474a;
  border-bottom: 1px solid #4D44474a;
  padding-bottom: 0;
  padding-top: 15px;
}

#pagedestinationdetail #top-2 .content .time{
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #cea530;
  border-top: 1px solid #4D44474a;
  border-bottom: 1px solid #4D44474a;
}

#pagedestinationdetail #top-2 .content .time p{
  padding-bottom: 0;
  margin-bottom: 0;
  padding: 0 30px 0 5px;
}


#pagedestinationdetail #top-2 .slider{
  margin-left: -60px;
}

#pagedestinationdetail .slick-dots li button:before{
  background-color: #fff!important;
}

#pagedestinationdetail .slick-dots{
    bottom: 15px;
    z-index: 5;
    text-align: left;
    top: 15px;
    left: 15px;
}

#pagedestinationdetail .slick-dots li button:hover::before, .slick-dots li button:focus::before {
    opacity: 1;
}

#pagedestinationdetail #top-3{
  text-align: center;
}

#pagedestinationdetail h4 {
  font-size: 14px;
}

#pagedestinationdetail h3 {
  margin-top: 0;
  font-size: 18px;
}


#pagedestinationdetail #top-4{
  background-color: #f5f0e2;
  margin-top: 50px;
}

#pagedestinationdetail #top-4 .sousmenu{
 padding: 0px 0 0px 0;
 display: block;
 max-width: 515px;
}

#pagedestinationdetail #top-4 .sousmenu h4{
 width: 81px;
 display: inline-block;
}


  #pagedestinationdetail #top-4 li::after{
  content: '/';
  padding-right: 10px;
  padding-left: 10px;
}

#pagedestinationdetail #top-4 h4:last-child::after{
  display: none;
}
#pagedestinationdetail .content-map{
  margin-left: 50px;
}

/* #pagedestinationdetail #top-4{
  display: flex;
  align-items: center;
} */

#pagedestinationdetail #top-4 .slick-dotted.slick-slider {
  margin-bottom: 0px;
}

#pagedestinationdetail #top-4 .content{
  max-width: 655px;
  margin: 20px;
  padding-left: 40px;
  margin-left: -40px;
}

#pagedestinationdetail #top-4 .content-text{
text-align: justify;
}

#pagedestinationdetail #main-nav{
  color: #cea530;
}


#pagedestinationdetail figure.snip-detail .titre-services {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 101%;
  background-color: rgba(255, 255, 255, 0.7);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  max-height: 100px;
}

#pagedestinationdetail figure.snip-detail .titre-services-blue {
  background-image: url("../images/sub-blur-2.svg")!important;
  background-repeat: no-repeat;
  background-size: cover;
}

#pagedestinationdetail figure.snip-detail:hover .titre-services {
  bottom: 0;
  position: absolute;
  z-index: 1;
  padding: 15px;
  width: 100%;
  background-color: #44474a;
  opacity: 0;
}


#pagedestinationdetail figure.snip-detail {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px;
  width: auto;
  text-align: left;
  -webkit-perspective: 50em;
  perspective: 50em;
  color: #44474a;
  max-height: 310px;
}
#pagedestinationdetail figure.snip-detail * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#pagedestinationdetail figure.snip-detail img {
  max-width: 100%;
  vertical-align: top;
}
#pagedestinationdetail figure.snip-detail figcaption {
  top: 50%;
  left: 10px;
  right: 10px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  padding: 15px;

}

#pagedestinationdetail figure .content {
  display: block;
  text-align: left;
  margin-left: 0px;
}

#pagedestinationdetail figure.snip-detail h2 {
  margin: 0;
}

#pagedestinationdetail figure.snip-detail h2 {
  padding-bottom: 20px;
}


#pagedestinationdetail figure.snip-detail:after {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}

#pagedestinationdetail figure.snip-detail-blue:after {
  background-color: #44474a;
}

#pagedestinationdetail figure.snip-detail .lienhover {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

#pagedestinationdetail figure.snip-detail:hover figcaption,
#pagedestinationdetail figure.snip-detail.hover figcaption {
  z-index: 5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#pagedestinationdetail figure.snip-detail:hover:after,
#pagedestinationdetail figure.snip-detail.hover:after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 0.9;
}

#pagedestinationdetail .vignette-container{
  display: flex;
  justify-content: center;
}

#pagedestinationdetail .content-top{
  text-align: center;
}

#pagedestinationdetail #bottom-1{
  border-bottom: 1px solid #44474a;
}

#pagedestinationdetail .vignette-sejour .trait{
  margin: auto;
}

#pagedestinationdetail #bottom-2 h3{
  padding-top: 30px;
  padding-bottom: 10px;
}

#pagedestinationdetail #bottom-2 h2{
  padding-top: 30px;
}


#pagedestinationdetail .destination .slick-dots li button::before {
    background-color: #000 !important;
    opacity: 0!important;
}

#pagedestinationdetail .destination {
  margin-top: 20px;
}


#pagedestinationdetail .destination .slick-dots li {
    position: relative;
    display: inline-block;
    width: 50px;
    margin: 0px 0px 10px;
    padding: 0;
    cursor: pointer;
    margin-right: 33px;
    padding: 13px;
}

#pagedestinationdetail .destination li.slick-active{
  border-bottom: 3px solid #d3ad45;
}

#pagedestinationdetail .destination .slick-dots li:hover .sousmenu h4 {
  color: red!important;
}
#pagedestinationdetail .destination .slick-dots {
    bottom: 15px;
    z-index: 5;
    text-align: left;
    top: -87px;
    left: 0px;
    max-width: 550px;
}


#pagedestinationdetail .destination .slick-dots li button::before {

    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 97%;
    height: 15px;
    content: '';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #44474a;
    border-radius: 15px;

}


/* ------------------------------------------------------------- */
/*------------------ PAGE QUI SOMMES NOUS ------------------------- */
/* ------------------------------------------------------------- */

#pagequisommesnous #header-bg{
  padding-bottom: 9rem;
}

#pagequisommesnous #header-content p{
  font-size: 16px;
}

#pagequisommesnous #bandeau{
  background-image: url('../images/bandeau.jpg');
  background-repeat: no-repeat;
  padding-bottom: 13rem;
  background-size: cover;
  text-align: center;
  background-position-y: -320px;
  color: white;
}
#pagequisommesnous #bandeau .contenu{
  padding-top: 10rem;
}

#pagequisommesnous #top-1 {
    padding-bottom: 50px;
    padding-top: 60px;
    text-align: center;
}

#pagequisommesnous #top-1 a{
  color: #cea530;
}
#pagequisommesnous #top2 a{
  color: #cea530;
}
#pagequisommesnous h1 {
    text-transform: uppercase;
    color: #44474a;
    letter-spacing: 5px;
    text-align: center;
    padding-top: 17rem;
}

#pagequisommesnous #header-content{
  color: #44474a;
  text-align: center;
}

#pagequisommesnous #top-1 .module{
  padding-top: 20px;
}
#pagequisommesnous #top-1 h2{
  padding-bottom:  20px;
}

#pagequisommesnous #top2 {
  padding-top:  20px;
  text-align: center;
  padding-bottom: 60px;
}

#pagequisommesnous #top-3 {
  padding-top:  20px;
  text-align: center;
  padding-bottom: 60px;
}
#pagequisommesnous #top-3 .logos {
  padding-top:  40px;
  text-align: center;
}

#pagequisommesnous #top2 h2{
  padding-bottom:  20px;
}

#pagequisommesnous #top2 img{
  width: 90%;
  border-radius: 50%;
  margin: auto;
  padding: 20px 0;
}
#pagequisommesnous #top2 .trombi{
  max-width: 900px;
  margin: auto;
}


@media (max-width: 1166px){
  #pagequisommesnous #bandeau{
    background-position-y: -170px;
  }
}
@media (max-width: 920px){
  #pagequisommesnous #bandeau{
    background-position-y: -0px;
  }
  .logo-partenaires img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    opacity: .7;
    transition: all.5s;
    margin: auto;
}
}
/* ------------------------------------------------------------- */
/*------------------ PAGE COMMENT RESERVER ------------------------- */
/* ------------------------------------------------------------- */

/* #pagecommentreserver #header-bg{
  background-image: url('../images/hero-paysbasque.jpg');
  background-repeat: no-repeat;
  padding-bottom: 15rem;
  background-size: cover;
} */
#pagecommentreserver #header-content p{
  font-size: 16px;
}

#pagecommentreserver h2{
    font-size: 21px;
    letter-spacing: 1px;
}

#pagecommentreserver h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    padding-top: 18rem;
}

#pagecommentreserver #header-content{
  text-align: center;
}

#pagecommentreserver .container{
  padding-bottom: 60px;
}

#pagecommentreserver #top-1 a{
  color: #cea530;
}
#pagecommentreserver #top-1{
padding-top: 60px;
border-bottom: 1px solid #dedede;
}
#pagecommentreserver #top2{
  padding-top: 30px;
border-bottom: 1px solid #dedede;
}
#pagecommentreserver #top3{
  padding-top: 30px;
border-bottom: 1px solid #dedede;
}
#pagecommentreserver #top4{
  padding-top: 30px;
}
#pagecommentreserver #top2 a{
  color: #cea530;
}
#pagecommentreserver h2{
padding-bottom: 20px;
}

@media (max-width: 991px) {
  .top4{
    display: none;
  }
  .top2{
    display: none;
  }
}
@media (min-width: 992px) {
  .mobiletop4{
    display: none;
  }
  .mobiletop2{
    display: none;
  }
}


@media (max-width: 375px) {

#pagecommentreserver .white-button{
    display: block;
    text-align: center;
}

#pagegroupes .white-button{
    display: block;
    text-align: center;
}
}



/* ------------------------------------------------------------- */
/*------------------ PAGE GROUPES INCENTIVES ------------------------- */
/* ------------------------------------------------------------- */

/* #pagegroupes #header-bg{
  background-image: url('../images/hero-medoc.jpg');
  background-repeat: no-repeat;
  padding-bottom: 22rem;
  background-size: cover;
} */

#pagegroupes #bottom-3{
  background: transparent;
  padding-top: 40px;
}

#pagegroupes #header-content p{
  font-size: 16px;
}

#pagegroupes h1 {
    text-transform: uppercase;
    color: #44474a;
    letter-spacing: 5px;
    text-align: center;
    padding-top: 18rem;
}

/* #pagegroupes #top2{
  padding-bottom: 90px;
} */

#pagegroupes #header-content{
  color: #44474a;
  text-align: center;
}

#pagegroupes .groupes-logos{
  display: flex;
  align-items: center;
}

/* #pagegroupes #top1{
padding-top: 60px;
} */

#pagegroupes h2{
padding-bottom: 20px;
}

#pagegroupes .container{
  padding-bottom: 40px;
}

#pagegroupes #bottom-4{
  background-color: #f5f0e2;
  padding: 45px 0 5px 0;
}

@media (max-width: 991px) {
.groupes-logos{
  display: block!important;
}
.groupes-logos img{
margin: auto;
}
}

footer .container{
  padding-bottom: 0!important;
}

/* ------------------------------------------------------------- */
/*------------------ PAGE MENTIONS LEGALES ------------------------- */
/* ------------------------------------------------------------- */

/* #pagementions #header-bg{
  background-image: url('../images/hero-stemilion.jpg');
  background-repeat: no-repeat;
  padding-bottom: 24rem;
  background-size: cover;
} */


#pagementions #header-content p{
  font-size: 16px;
}

#pagementions h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    padding-top: 18rem;
}

#pagementions #header-content{
  text-align: center;
}

#pagementions .container{
  padding-bottom: 40px;
}

#pagementions #top1{
  padding-top: 60px;
}

#pagementions h2{
padding-top: 20px;
padding-bottom: 10px;
}

#pagementions #top2 a{
  color: #cea530;
}
#pagementions #top3 a{
  color: #cea530;
}
#pagementions .mentions{
  padding-bottom: 80px;
}

 #pagementions .sitemap{
padding-left: 150px;
}

/* #pagementions .sitemap ul{
list-style:none;
padding-left: 0;
} */

#pagementions .sitemap a:hover{
  color: #cea530;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  #pagementions .sitemap {
      padding-left: 60px;
  }
}


/* ------------------------------------------------------------- */
/*------------------ PAGE CONTACT ------------------------- */
/* ------------------------------------------------------------- */

/* #pagecontact #header-bg{
  background-image: url('../images/hero-bordeaux.jpg');
  background-repeat: no-repeat;
  padding-bottom: 22rem;
  background-size: cover;
} */


#pagecontact #header-content p{
  font-size: 16px;
}

#pagecontact h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    padding-top: 17rem;
}

#pagecontact #header-content{
  text-align: center;
}

#pagecontact .container{
  padding-bottom: 40px;
}

#pagecontact #top1{
  padding-top: 60px;
}

#pagecontact h2{
padding-top: 20px;
padding-bottom: 10px;
}

#pagecontact .check td{
  padding-left: 10px;
}
#pagecontact .check tbody{
  padding-left: 10px;
  display: flex;
}

#pagecontact .form-control{
  width: 300px!important;
  margin: 7px;
}
#pagecontact #rgpd{
  color: #cea530;
}

@media (max-width:420px) {
  #pagecontact .form-control{
    width: 210px!important;
    margin: 7px;
  }
}


/* CALENDAR */
#calendar_wrapper{
position:relative;
margin:0 auto;
width:100%;
overflow:hidden;
}
#calendar{
position:relative;
margin:0 auto;
width:800px;
}
ul#calendar_navigation{
list-style:none;
padding:0;
font-size:30px;
height:30px;
}
ul#calendar_navigation li{
display:block;
float:left;
list-style:none;
cursor: pointer;
text-transform: uppercase;
font-weight: bold;
font-size: 14px;
}
ul#calendar_navigation li.active{
list-style:none;
color: #cea530;
}
ul#calendar_navigation li::after{
color: #2b2b2b;
}
#days{
clear:both;
position:relative;
width:auto;
}
.day{
position:absolute;
float:left;
left:0px;
width:auto;
}

#pagedestinationdetail #top-4 .active{
  background-color: transparent!important;
}

.txtform {
    margin-left: 20%;
}
