
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  /*	font-family: "Unbounded", sans-serif;*/
  /*font-family: "Caveat", cursive;*/
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.21;
  font-weight: 400;
  color: #161613;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0rem;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #f33737;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
  cursor: pointer;
  display: none;
  background-color: #fff;
  height: 3.3rem;
  width: 3.3rem;
  border-radius: 0.8rem;
  box-shadow: 0rem 0rem 0.83rem #00000026;
  padding: 0.45rem 0.65rem;
  margin-left: 1rem;
}
.hamburger-menu span {
  background: #e5806d;
  width: 2rem;
  height: 0.2rem;
  display: block;
  border-radius: 1rem;
  margin: 0.5rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.hamburger-menu .line-top.current {
  -webkit-transform: translateY(200%) rotate(135deg);
  -ms-transform: translateY(200%) rotate(135deg);
  transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
  opacity: 0;
}
.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-325%) rotate(-135deg);
  -ms-transform: translateY(-325%) rotate(-135deg);
  transform: translateY(-474%) rotate(-135deg);
}
/*ofcanvas-menu*/
.ofcavas-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  top: 0;
  display: none;
  left: -100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.ofcavas-menu.current {
  left: 0;
}

.ofcavas-menu a {
  color: #5f490c;
  margin-top: 10px;
}

.ofcavas-menu ul {
  margin-top: 70px;
  line-height: 22px;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9 !important;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  padding-top: 1rem;
}

/*sticky START CSS*/
header.sticky {
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu > ul {
  display: flex;
  align-items: center;
}
.menu > ul > li {
  margin-right: 4.5rem;
}
.menu > ul > li:last-child {
  margin-right: 0;
}
.menu > ul > li > a {
  display: inline-flex;
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.24;
  color: #06367a;
  transition: 0.4s;
}
.menu > ul > li > a > span {
  display: inline-block;
  margin-left: 0.5rem;
}
/*.menu>ul>li>a.active,
.menu>ul>li>a:hover{
	color: #000;
}*/
.menu .dropdown_menu {
  position: relative;
  line-height: 10rem;
}
.menu .dropdown_menu .dropdown_content {
  position: absolute;
  left: 50%;
  min-width: 100%;
  background-color: #ffff;
  box-shadow: 0px 0px 2.3rem 0px #00000040;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  padding: 2rem 4rem 2rem 2rem;
  border-radius: 1rem;
  transform: translateY(3rem) translateX(-50%);
}
.menu .dropdown_menu:hover .dropdown_content {
  visibility: visible;
  opacity: 1;
  transform: translateY(-3rem) translateX(-50%);
}
.dropdown_section {
  line-height: 0;
}
.dropdown_section1 {
  padding-top: 2.5rem;
}
.dropdown_section a {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.94;
  white-space: nowrap;
  color: #06367a;
  transition: 0.4s;
  display: block;
}
.dropdown_section a:hover {
  color: #000000;
}
.dropdown_section ul {
  line-height: 0;
}
.dropdown_section ul li {
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
}
}
.menu > ul > li:last-child {
  margin-right: 0;
}
.h_icon_wrap {
  display: inline-block;
}
.icon_wrap {
  height: 4.6rem;
  width: 4.6rem;
  box-shadow: 0px 0px 1.14rem 0px #00000026;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.icon_wrap span {
  display: inline-flex;
  height: 1.4rem;
  width: 1.4rem;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  color: #ffffff;
  background-color: #e5806d;
  position: absolute;
  top: -0.2rem;
  right: 0;
  border-radius: 50%;
  box-shadow: 0px 0px 0.54rem -0.52rem #00000040;
}
/*hero area start*/
.hero_heading p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.26;
  text-align: center;
  color: #06367a;
  padding-bottom: 2rem;
}
.hero_heading h1 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.26;
  text-align: center;
  color: #06367a;
  padding-bottom: 2rem;
}
.bg_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40.21rem;
  border-radius: 1rem;
  position: relative;
}
.bg_wrap2 {
  height: 5rem;
  border-radius: 1rem;
  position: relative;
}
.hero_tab {
  position: absolute;
  bottom: 3.4rem;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  max-width: 45rem;
  width: 100%;
}
.nav_pills_wrap {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 1.5rem 6.2rem;
  border-radius: 1rem;
  width: 100%;
}
.nav_pills_wrap p {
  white-space: nowrap;
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #06367a;
  margin-right: 2rem;
}
.h_tab_pagination {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.h_tab_pagination li a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
  padding: 0;
}
.h_tab_pagination li:last-child {
  padding-left: 0.8rem;
}
.h_tab_pagination li a.active {
  background-color: transparent !important;
  border-bottom: 0.1rem solid #06367a;
  color: #06367a !important;
  border-radius: 0;
}
.hero_tab_content_wrap {
  position: absolute;
  bottom: -3.5rem;
  left: 0;
}
.input_group_wrap {
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffebcc;
  padding: 2rem 3rem;
  border-radius: 1.5rem;
}
.input_group {
  margin-right: 1.5rem;
      width: 100%;
}
.input_group input {
  width: 37.5rem;
  max-width: 100%;
  height: 3.5rem;
  background-color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 0.7rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
.input_group input::placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
.input_group .nice-select {
  max-width: 20.5rem;
  width: 100%;
  height: 3.5rem;
  border: none;
  border-radius: 0.7rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.6;
}
.input_group .nice-select:after {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  margin-top: -0.7rem;
}
/*
.input_group .nice-select.open .list {
  width: 100%;
}*/
.input_group1 .nice-select {
  width: 13rem;
}

.input_group2 .nice-select {
  width: 100%;
}
.button {
  padding: 1rem 3.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  border-radius: 0.7rem;
  border: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  border: 0.1rem solid transparent;
  display: inline-block;
}
.button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #e5806d;
  transition: 0.5s;
  z-index: -1;
  border-radius: 0.7rem;
}
.button:hover:before {
  height: 0;
  width: 0;
  left: auto;
  right: 0;
  background-color: transparent;
  width: 100%;
}
.button:hover {
    color: #fff;
    background-color: #e5806d;
}
.new_input_group {
  margin-right: 4rem;
}
.new_input_group input {
  width: 68.5rem;
}
.map_btn a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #06367a;
  text-decoration: underline;
}
.map_btn a img {
  margin-left: 0.7rem;
}
.new_input_group1 {
  margin-right: 0;
}
.input_group_wrap1 {
  justify-content: space-between;
}
/*hero area end*/

/*offre area start*/
.offre_wrapper {
  padding-top: 7rem !important;
}
.offre_heading {
  padding-bottom: 1.5rem;
}
.offre_content .title {
  color: #000;
  max-width: 25.7rem;
}
.offre_content .button {
  padding: 1rem 6rem !important;
  margin-top: 0.5rem !important;
}
/*offre area end*/

/*banner area start*/
.banner_wrapper {
  background: #06367a;
  box-shadow: 0rem -0.7rem 1rem 0rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-top: -1.8rem;
  z-index: 1;
  position: relative;
}
.banner_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_content p {
  color: #fff;
}
.banner_content .button {
  padding: 1rem 5rem;
}
/*banner area end*/

/*nos camping area start*/
.camping_wrapper {
  margin-top: 1.5rem;
}
.camping_content h2 {
  padding-bottom: 1.5rem;
}
.camping_content p {
  color: #161613;
}
.camping_content p a {
  text-decoration: underline;
  color: #161613;
}
.camping_slider {
  padding-top: 3rem;
}
.camping_slider_box {
  display: flex;
  align-items: center;
  background: #ffebcc;
  padding: 2.5rem 1.5rem 2.5rem 2.5rem;
  border-radius: 1rem;
}
.camping_slider_content {
  padding-left: 2.5rem;
}
.camping_slider_content h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #06367a;
}
.camping_slider_content span {
  font-family: "Caveat", cursive;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #06367a;
}
.camping_slider_content p {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	color: #06367a;
	max-width: 30rem;
	padding-top: 1.5rem;
	height: 13rem;
}
.camping_slider_content .button {
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
  
}
.camping_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.camping_slider .owl-dots .owl-dot {
  width: 3.5rem;
  height: 0.5rem;
  background: rgba(32, 58, 111, 0.19);
  border-radius: 5rem;
  margin-right: 5rem;
  transition: 0.4s;
}
.camping_slider .owl-dots .owl-dot.active {
  width: 17.2rem;
  background-color: #203a6f;
}
.camping_slider .owl-dot:last-child {
  margin-right: 0;
}
/*nos camping area end*/

/*nos mobil area start*/
.mobil_wrapper {
  padding-top: 5rem;
}
.mobil_heading h2 {
  padding-bottom: 0.7rem;
}
.mobil_heading a {
  text-decoration: underline;
  font-size: 1.4rem;
  color: #e5806d;
  font-weight: 600;
  transition: 0.4s;
}
.mobil_heading a:hover {
  color: #000;
}
.mobil_slider {
  position: relative;
}
.mobil_slider img {
  border-radius: 1rem;
    filter: brightness(1.2);
}
.mobil_slider::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  border-radius: 1rem;
}
.mobil_nomad {
  background: #fff;
  padding: 0.7rem 1rem;
  position: absolute;
  left: 50%;
  top: 1rem;
  display: flex;
  border-radius: 5rem;
  transform: translateX(-50%);
  box-shadow: 0 0 0.7rem 0 #00000040;
}
.mobil_nomad p {
  white-space: nowrap;
  font-size: 1.4rem;
  color: #06367a;
  font-weight: 600;
  text-transform: uppercase;
}
.mobil_nomad span {
  white-space: nowrap;
  font-size: 1.4rem;
  color: #06367a;
  font-weight: 600;
  text-transform: uppercase;
}
.mobil_nomad h3 {
  white-space: nowrap;
  font-size: 1.4rem;
  color: #06367a;
  font-weight: 600;
  text-transform: uppercase;
}
.mobil_nomad .p1 {
  font-weight: 500;
  border-left: 0.1rem solid #06367a;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}
.mobil_icon {
  position: absolute;
  bottom: 1rem;
  right: 1.7rem;
}
.mobil_slider_box_wrap {
  margin-top: 4rem;
}
.mobil_slider_box_wrap .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3.5rem;
}
.mobil_slider_box_wrap .owl-nav .owl-prev,
.mobil_slider_box_wrap .owl-nav .owl-next {
  background-color: transparent;
  padding: 0;
  font-size: 5rem;
  color: #fff;
}
.mobil_slider_box_wrap .owl-nav .owl-next {
  text-align: right;
}
.mobil_slider_content {
  background-color: #ffebcc;
  padding: 1.5rem 1.5rem 4.5rem 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
}
.mobil_slider_heading p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border-radius: 5rem;
  background-color: #fff;
  display: block;
  color: #e5806d;
  padding: 0.5rem;
}
.mobil_price {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.mobil_price span {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #06367a;
}
.mobil_price p {
  color: #06367a;
}
.mobil_price_icon {
  height: 3rem;
  width: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobil_tag {
  display: flex;
  flex-wrap: wrap;
}
.mobil_tag a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 0.2rem 0.8rem;
  background-color: #fff;
  border-radius: 5rem;
  margin-right: 0.8rem;
  margin-top: 0.6rem;
  color: rgba(6, 54, 122, 0.65);
}
.mobil_tag span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 0.2rem 0.8rem;
  background-color: #fff;
  border-radius: 5rem;
  margin-right: 0.8rem;
  margin-top: 0.6rem;
  color: rgba(6, 54, 122, 0.65);
}
.mobil_location {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  
    height: 35px;
}
.mobil_location_right {
  margin-left: 1.7rem;
}
.mobil_location_right a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #06367a;
  line-height: 1.21;
  display: inline-block;
}
.mobil_location_right .a1 {
  font-weight: 400;
}
.mobil_btn {
  text-align: center;
  padding-top: 4.5rem;
}
.mobil_btn .button {
  padding: 1rem 1.5rem;
}
.mobil_slider .owl-dots.disabled {
  display: none !important;
}
/*nos mobil area end*/

/*avantage area start*/
.avantage_wrapper {
  padding-top: 9.5rem;
}
.avantage_box {
  display: flex;
  align-items: center;
}
.avantage_img {
  padding-left: 4rem;
}
.avantage_img img {
  max-width: 15rem;
}
.avantage_content {
  margin-left: 8.5rem;
}
.avantage_content .title1 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  padding-top: 2rem;
}
.avantage_content p {
  max-width: 63.1rem;
  padding-top: 1rem;
}
.avantage_btn {
  /*padding-left: 5.5rem;*/
}
.avantage_btn .button {
  padding: 1rem 1.5rem;
}
.avantage_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.avantage_slider .owl-dots .owl-dot {
  width: 3.5rem;
  height: 0.5rem;
  background: rgba(32, 58, 111, 0.19);
  border-radius: 5rem;
  margin-right: 5rem;
  transition: 0.4s;
}
.avantage_slider .owl-dots .owl-dot.active {
  width: 17.2rem;
  background-color: #203a6f;
}
.avantage_slider .owl-dot:last-child {
  margin-right: 0;
}
/*avantage area end*/

/*votre area start*/
.votre_wrapper {
  padding-top: 8.5rem;
}
.votre_img img {
  border-radius: 1rem;
}
.title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
  color: #161613;
}
.votre_content {
  padding-left: 3.5rem;
}
.votre_content p {
  padding-top: 1.5rem;
  max-width: 35rem;
}
.votre_content .button {
  margin-top: 5rem;
  padding: 1rem 1.5rem;
    float: inline-start;
}

/*votre area end*/

/*envie area start*/
.envie_wrapper {
  padding-top: 5.5rem;
}
.envie_wrap {
  background-color: #ffebcc;
  border-radius: 1rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
.envie_heding {
  text-align: center;
}
.envie_heding p {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.input_box {
  padding-top: 1rem;
}
.input_box label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  padding-left: 2rem;
}
.input_box input {
  width: 100%;
  height: 3.7rem;
  background-color: #fff;
  border-radius: 0.7rem;
  border: none;
  font-size: 1.4rem;
  color: #000000;
  font-weight: 400;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
}
.input_box input::placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}
.cutom_row {
  margin-left: -10px;
  margin-right: -10px;
}
.cutom_row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.check_box {
  margin-top: 0.6rem;
}
.check_box input {
  display: block;
}
.check_box label {
  font-size: 1.4rem;
  line-height: 1;
  color: #161613;
  position: relative;
  user-select: none;
  cursor: pointer;
}
.check_box label a {
  color: #161613;
  text-decoration: underline;
}
.check_box label::before {
	display:none;
  position: absolute;
  content: "";
  height: 1.1rem;
  width: 1.1rem;
  border: 0.1rem solid #00528f;
  left: 0;
  top: 0.3rem;
}
.check_box input:checked + label::after {
  position: absolute;
  content: "";
  border-left: 0.1rem solid #00528f;
  border-bottom: 0.1rem solid #00528f;
  left: 0.22rem;
  top: 0.43rem;
  height: 0.4rem;
  width: 0.7rem;
  transform: rotate(-45deg);
}
.input_btn {
  margin-top: 3.5rem;
  text-align: center;
}
.input_btn button {
  padding: 1rem 1.5rem;
}
/*envie area end*/


/*dekstop 5 page area*/
.campingle_wrapper{
  padding-top: 3.5rem;
}
.campingle_content{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.campingle_content_left .p1{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #16161347;
  padding-bottom: 1rem;
}
.campingle_content_left .p1 a{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #16161347;
  padding-bottom: 1rem;
}
.campingle_content_left .p3,
.campingle_content_left .p2{
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.23;
  color: #06367A;
}
.campingle_content_left .p2{
  font-family: "Unbounded", sans-serif;
}
.campingle_content_left .p3{
  font-family: "Montserrat", regular;
    font-weight: 500;
}
.campingle_content_right .map_btn img{
  margin-left: 0;
  margin-right: .5rem;
  width: 1.6rem;
}
.gallery_wrap{
  padding-top: 1rem;
}
.custom_row{
  margin-left: -.725rem;
  margin-right: -.725rem;
}
.custom_row>div{
  padding-left: .725rem;
  padding-right: .725rem;
}
.galler_img {
  position: relative;
}
.galler_img .button{
  position: absolute;
  right: 2rem;
  bottom: 1.7rem;
  padding: 1.2rem 1.8rem;
}
.galler_img img{
  border-radius: 1.6rem;
}
.gallery_img1 {
    margin-top: 1.45rem;
}
.titre_wrapper{
  padding-top: 2rem;
}
.titre_wrapper .title{
  color: #161613;
  padding-bottom: 1.3rem;
}
.titre_wrapper p{
  max-width: 82.9rem;
}
.dekfive_offer_content{
  padding-top: 2.5rem;
}
.dekfive_offer_wrap .mb_offer_c{
  display: none;
}
.dekfive_offer_content .mb_offer_c h2{
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
  color: #000000;
  line-height: 1.23;
  padding-bottom: 1rem;
}
.dekfive_offer_content .mb_offer_c h3{
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
  color: #000000;
  line-height: 1.23;
  padding-bottom: 1rem;
}
.dekfive_offer_content .button{
  /*padding: 1.2rem 6rem;*/
}
.of_row{
  margin-left: -1rem;
  margin-right: -1rem;
}
.of_row>div{
  padding-left: 1rem;
  padding-right: 1rem;
}
.dekfive_avantage_wrapper{
  padding-top: 5rem;
}
.dekfive_avantage_heading .title{
  color: #161613;
  padding-bottom: 1.2rem;
}
.dekfive_avantage_heading .mobil_tag a{
  background: rgba(6, 54, 122, 0.05) !important;
}
.dekfive_avantage_heading .mobil_tag span{
  background: rgba(6, 54, 122, 0.05) !important;
}
.dekfive_avantage_heading h4{
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.23;
  color: #161613;
  padding-bottom: .8rem;
  padding-top: 1.5rem;
}
.dekfive_avantage_heading p{
  max-width: 82.1rem;
}
.dekfive_avantage_heading p a{
  text-decoration: underline;
  color: #161613;
}
.dekfive_map{
  margin-top: 2rem;
}
.lesactive_heading .title{
  padding-bottom: 2rem;
  padding-top: 5rem;
}
.avantage_loc_wrap{
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.avantage_loc_wrap::before {
  position: absolute;
  content: "";
  height: .2rem;
  width: 26.4rem;
  background: #06367A;
  bottom: 0;
  left: 46%;
  transform: translateX(-50%);
}
.avantage_loc {
  display: flex;
  align-items: center;
}
.avantage_loc1{
  padding-right: 2.2rem;
  border-right: .2rem solid #06367A;
  margin-right: 3.5rem;
}
.avantage_loc img{
  margin-right: 1.5rem;
}
.avantage_loc .ic7 {
  width: 2.7rem;
  object-fit: cover;
}
.avantage_loc .ic8{
  width: 2.2rem;
}
.avantage_loc_wrap1{
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
.avantage_loc .ic9{
  width: 2.3rem;
}
.lesactive_box {
  background-color: #FFEBCC;
  padding: 3.3rem 3rem 3.3rem 3.7rem;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  justify-content: space-between;
  max-height: 17.2rem;
}
.lesactive_img .le1 {
    width: 8rem;
}
.lesactive_img .le2{
  width: 6.8rem;
}
.lesactive_box_conent{
  max-width: 23.5rem;
  text-align: center;
}
.lesactive_box_conent p{
  color: #06367A;
}
.lesactive_box_conent .p1{
  font-weight: 700;
  padding-bottom: 2rem;
}
.lesactive_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.lesactive_slider .owl-dots .owl-dot {
  width: 3.5rem;
  height: 0.5rem;
  background: rgba(32, 58, 111, 0.19) !important;
  border-radius: 5rem;
  margin-right: 5rem;
  transition: 0.4s;
}
.lesactive_slider .owl-dots .owl-dot.active {
  width: 17.2rem;
  background-color: #203a6f !important;
}
.lesactive_slider .owl-dot:last-child {
  margin-right: 0;
}
.dekfive_brochure_wrapper{
  padding-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dekfive_brochure_img .br1_img{
  max-width: 9.8rem;
}
.dekfive_brochure_content{
  text-align: center;
}
.dekfive_brochure_content .title{
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.dekfive_brochure_content p{
  max-width: 50.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.2rem;
}
.dekfive_brochure_btn .button{
  padding: 1rem 1.5rem;
}
.dekfive_camping_slider .title{
  padding-top: 5rem;
  padding-bottom: 1.6rem;
}
.dekfive_camping_slider .camping_slider{
  padding-top: 0;
}
.dekfive_camping_slider .camping_slider_box{
  flex-direction: column;
  align-items: flex-start;
  padding: 2.3rem;
}
.dekfive_camping_slider .camping_slider_img{
  width:  100%;
}
.dekfive_camping_slider .camping_slider_img img{
  border-radius: 1.2rem;
}
.dekfive_camping_slider .camping_slider_content{
  padding-left: 0;
}
.dekfive_camping_slider .camping_slider_content{
  padding-top: 1.6rem;
  width:  100%;
}
.dekfive_camping_slider .camping_slider_content p{
  padding-top: 1rem;
  max-width: 35.6rem;
}
.dekfive_camping_slider .camping_slider_content a{
  text-align: center;
  margin-top: 1.6rem;
}
.dekfive_avantage_slider{
  padding-top: 5rem;
}
.dekfive_avantage_slider .avantage_box{
  justify-content: space-between;
}
.dekfive_avantage_slider .avantage_img{
  padding-left: 0;
}
.dekfive_avantage_slider .avantage_img img{
  width: 10.7rem;
}
.dekfive_avantage_slider .avantage_content{
  margin-left: 4rem;
}
.dekfive_avantage_slider .avantage_content .title1 {
  text-transform: initial;
  max-width: 51rem;
}
.dekfive_avantage_slider .avantage_content p{
  max-width: 50rem;
}
.temoignages_heading{
  padding-top: 5rem;
}
.temoignages_heading .title{
  padding-bottom: 2.5rem;
}
.temoignages_slider_wrap{
  background-color: #FFEBCC;
  border-radius: 1.5rem;
  padding: 2.2rem 9.7rem;
}
.temoignages_content p{
  color: #00528F;
  line-height: 1.3;
}
.temoignages_content .p1{
  font-weight: 700;
}
.temoignages_content a{
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #00528F;
}
.temoignages_slider .owl-next span,
.temoignages_slider .owl-prev span{
  font-size: 3.5rem;
  color: #06367A;
}
.temoignages_slider .owl-next,
.temoignages_slider .owl-prev{
  background-color: transparent;
  padding: 0;
  position: absolute;
  font-weight: 500;
}
.temoignages_slider .owl-next{
  right: -6.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.temoignages_slider .owl-prev{
  left: -6.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.dekfive_homes_slider_wrap{
  background: #E5806D;
  border-radius: 1.5rem;
  padding: 2.6rem 3.8rem 3.5rem;
  margin-top: 3rem;
}
.dekfive_homes_slider_heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.dekfive_homes_slider_heading h3{
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.dekfive_homes_slider_heading a{
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: .7rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #E5806D;

}
.dekfive_homes_slider_heading a img{
  margin-right: 1rem;
}
.dekfive_homes_slider_wrap .mobil_slider_box_wrap{
  margin-top: 2rem;
}
.dekfive_homes_slider_wrap .carousel-control-next, 
.dekfive_homes_slider_wrap .carousel-control-prev{
  opacity: 1;
  font-size: 2rem;
}
.dekfive_homes_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.dekfive_homes_slider .owl-dots .owl-dot {
  width: 3.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 5rem;
  margin-right: 5rem;
  transition: 0.4s;
}
.dekfive_homes_slider .owl-dots .owl-dot.active {
  width: 16.6rem;
  background-color: #fff !important;
}
.dekfive_homes_slider .owl-dot:last-child {
  margin-right: 0;
}
.filter_modal .modal-dialog {
    max-width: 55rem;
    width: 100%;
    border-radius: 1.5rem;
    background: #E5806D;
    padding: 2rem 2rem;
}
.filter_modal .modal-content{
  background: #E5806D;
}
.modal_close_btn{
  margin-bottom: 11rem;
}
.modal_close_btn a{
  display: inline-block;
  padding: 1.25rem 1.5rem;
  background-color: #fff;
  border-radius: .7rem;
  opacity: 1;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E5806D;
}
.modal_close_btn a img{
  width: 1.4rem;
  margin-right: 1rem;
}
.modal_input_box{
  padding-top: 4.5rem;
}
.modal_input_box .nice-select {
    height: 4.4rem;
    float: none;
    border-radius: .7rem;
    width: 100%;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 400;
    line-height: 3.5;
}
.modal_input_box .nice-select:after {
    width: 1.2rem;
    height: 1.2rem;
    border-color: #000000;
    right: 1.6rem;
}
.modal_input_box .nice-select.open .list{
  width:  100%;
}
.modal_form_btn{
  margin-top: 5.5rem;
  text-align: center;
}
.modal_form_btn button{
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  padding: 1rem 1.5rem;
  border: .1rem solid #fff;
  background-color: transparent;
  border-radius: .7rem;
  transition: 0.4s;
}
.modal_form_btn button:hover{
  color: #000;
  background-color: #fff;
}
.enive_form_wrap{
  padding: 3rem 1.5rem;
  background-color: #FFEBCC;
  border-radius: 1rem;
}
.enive_form_hading .title{
  max-width: 25.1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.enive_form_hading .title span{
  max-width: 25.1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.enive_form_hading p{
  max-width: 31.4rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-top: 1.2rem;
  padding-bottom: 1.4rem;
}
.enive_input_box{
  padding-top: 1rem;
}
.enive_input_box label{
  font-size: 1.2rem;
  color: #000;
  font-weight: 400;
  padding-bottom: .3rem;
  padding-left: 1.7rem;
  width:  100%;
}
.enive_input_box input{
  height: 3.7rem;
  border-radius: .7rem;
  background-color: #fff;
  padding: 1rem 1.6rem;
  border: none;
  width: 100%;
}
.enive_input_box input::placeholder{
  font-size: 1.4rem;
  color: #000000;
  font-weight: 400;
}
.enive_input_box1 input{
  width: 13.1rem;
}
.enive_input_box2 input{
  width: 18.9rem;
}
.enive_check_box .check_box label {
 /* max-width: 28.5rem;*/
}
.enive_form_btn{
  text-align: center;
  padding-top: 3rem;
}
.enive_form_btn .button{
 /* padding: 1rem .35rem !important; */
}
.ds_col{
  display: none;
}
.mo_mb_img{
  display: none;
}


/*dekstop6 area*/
.deksix_votre_wrap .mobil_slider_content {
    display: flex;
    align-items: center;
    padding: 1.2rem 2.3rem 1.2rem 2rem;
}
.deksix_votre_wrap .mobil_slider_heading,
.deksix_votre_wrap .mobil_price,
.deksix_votre_wrap .mobil_tag{
  margin-right: 4rem;
}
.deksix_votre_wrap .mobil_slider_heading{
  width: 100%;
  max-width: 16.5rem;
}
.deksix_votre_wrap .mobil_slider_heading p{
  padding: 1rem 4.1rem;
 border-radius: 1rem;
}
.deksix_votre_wrap .mobil_tag{
  display: block;
}
.deksix_votre_wrap .mobil_price_left h2,
.deksix_votre_wrap .mobil_price_left p{
  white-space: nowrap;
}
.deksix_gallery_wrap{
  padding-top: 2rem;
}
.deksix_tab_wrap{
  background-color: #06367A;
  border-radius: 1.5rem;
  padding: 1.4rem 2rem 2.2rem 2rem;
  margin-top: 3rem;
}
.deksix_tab_list .nav-pills{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deksix_tab_list .nav-pills li a{
  display: inline-block;
  padding: .5rem .8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  border: .15rem solid #fff;
  border-radius: 4rem;
  transition: 0.4s;
  margin-top: .8rem;
}
.deksix_tab_list .nav-pills li a:hover,
.deksix_tab_list .nav-pills li a.active{
  background-color: #fff;
  color: #06367A;
}
.deksiz_tab_content{
  background-color: #FFEBCC;
  padding: 1.5rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
}
.deksiz_tab_content ul li{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.deksiz_tab_content ul li:last-child{
  margin-bottom: 0;
}
.deksiz_tab_content ul li::before{
  position: absolute;
  content: "";
  height: .3rem;
  width: .3rem;
  border-radius: 8rem;
  background-color: #06367A;
  top: .7rem;
  left: 0rem;
}
.deksix_avantage_wrapper .dekfive_avantage_wrapper{
  padding-top: 4rem;
}
.deksix_avantage_gallery_wrap{
  margin-top: 3rem;
}
.deksix_avn_ga_btn{
  margin-top: 3rem;
}
.deksix_avn_ga_btn .button{
  padding: 1rem 1.5rem;
}
.deksix_budget_wrapper{
  background-color: #FFEBCC;
  border-radius: 1.5rem;
  padding: 4rem 3.5rem;
  margin-top: 3rem;
}
.deksix_budegt_content h2{
  padding-bottom: 2rem;
}
.deksix_budegt_content .p1{
  padding-top: 1.3rem;
  font-style: italic;
}
.deksix_budegt_content .p2{
  padding-top: 1rem;
}
.deksix_budget_box{
  padding-bottom: 1rem;
}
.deksix_budget_box .p1{
    padding-left: 3rem;
}
.deksix_budget{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: .7rem;
}
.deksix_budget_box1{
  padding-top: .5rem;
}
.deksix_budget_box1{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deksix_budget_box1 .p1{
  padding-left: 0;
}
.deksix_budget_box1 .deksix_budget {
    width: 11.2rem;
    text-align: center;
    display: flex;
    justify-content: center;
}
.deksix_budget_box1 .deksix_budget p{
  text-align: center;
}




/*footer area start*/
.footer_wrapper {
  background-color: #06367a;
  padding: 4.5rem 0 5.5rem;
  margin-top: 5.5rem;
}
.footer_logo img {
  max-width: 10.5rem;
}
.footer_content {
  display: flex;
  align-items: center;
}
.footer_link {
  margin-left: 3.8rem;
}
.footer_link ul {
  display: flex;
}
.footer_link ul li {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  line-height: 1;
}
.footer_link ul li:last-child {
  border: none;
  margin-right: 0;
}
.footer_link ul li a {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.6;
  color: #fff;
  position: relative;
  white-space: nowrap;
  transition: 0.4s;
}
.footer_link ul li a:hover {
  color: #e5806d;
}
.footer_link ul li a::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0.1rem;
  background: #fff;
  right: -1.5rem;
  top: 0;
}
.f_link::before {
  display: none;
}
/*return-to-top START CSS*/

.back-to-top {
  font-size: 2.4rem;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 2;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  border-radius: 50%;
  background: #e5806d;
  z-index: 1000;
}
.back-to-top i {
  color: #fff;
}

/* ========= Header update ========== */
.dropdown_menu > a span img {
  width: 1.5rem;
}

.logo a img {
  width: 12.5rem;
}

.icon_wrap img {
  width: 2.658rem;
}




  /* ============= map =========== */
  .modal-dialog {
    height: 100%;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 0;
  }

  .modal {
    z-index: 9999999999999;
    padding: 2rem 0;
    overflow: auto;
    height: 100vh;
    background: #fff;
  }

  .g_map iframe {
    width: 100%;
    height: 62.6rem;
    margin-top: 1.8rem;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  .modal-content {
    border: 0;
  }

  .close_modal {
    width: fit-content;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .close_modal img {
    width: 1rem;
    margin-right: 1rem;
  }


  /* mb_offer_slider */
  .mb_offer_slider .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
  }
  .mb_offer_slider .owl-dots .owl-dot {
    width: 3.5rem;
    height: 0.5rem;
    background: rgba(32, 58, 111, 0.19);
    border-radius: 5rem;
    margin-right: 5rem;
    transition: 0.4s;
  }
  .mb_offer_slider .owl-dots .owl-dot.active {
    width: 17.2rem;
    background-color: #203a6f;
  }
  .mb_offer_slider .owl-dot:last-child {
    margin-right: 0;
  }
  .votre_wrapper.offre_wrapper {
    padding-bottom: 0;
}

.enive_form_wrap {
	position: sticky;
    top: -2%;
    z-index: 8;
}

.options {
    display: none; /* Masque la boîte par défaut */
    position: absolute;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    transition: all 0.3s ease;
	    z-index: 9999999999;
}

.options.show {
    display: block; /* Montre la boîte avec une transition */
    opacity: 1;
    transform: translateY(0);
}

.options.hide {
    opacity: 0;
    transform: translateY(-10px);
}

.options .searchInput {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background: #f9f9f9;
}

.options .searchInput input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 12px;
}

.options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options ul li {
    padding: 7px;
    cursor: pointer;
    font-size: 12px;    
	font-weight: 300;
    color: #06367a;
    border-radius: 5px;
    transition: background 0.2s ease;
    font-family: 'Unbounded';
}

.options ul li:hover {
    color: #06367a;
    font-weight: 600;
}
.customInput {
    height: 3.5rem;
    background-color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 0.7rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}
.nice-select.open .list {
    z-index: 9999999999;
}

.input_box textarea {
    width: 100%;
    height: 120px;
    background-color: #fff;
    border-radius: 0.7rem;
    border: none;
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
}

.orange-arrow {
    background-image: url("https://www.myhome.flowercampings.com/wp-content/themes/blankslate/img/orange-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 16px;
    margin-right: 5px;
    margin-top: 10px;
    vertical-align: middle;
    width: 16px;
}
.selectedData {
	width: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 13px;
    padding-left: 1rem;
}
.banner_wrapper {
    transition: opacity 0.3s ease-in-out; /* Transition pour une disparition fluide */
    opacity: 1;
    display: block;
}

.banner_wrapper.hidden {
    opacity: 0; /* Masque visuellement la bannière */
    pointer-events: none; /* Empêche l'interaction lorsque masqué */
    display: block; /* Laisse l'élément actif pour la transition */
}





.avantage_slider .owl-next span,
.avantage_slider .owl-prev span{
  font-size: 3.5rem;
  color: #06367A;
}
.avantage_slider .owl-next,
.avantage_slider .owl-prev{
  background-color: transparent;
  padding: 0;
  position: absolute;
  font-weight: 500;
}
.avantage_slider .owl-next{
  right: -6.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.avantage_slider .owl-prev{
  left: -6.7rem;
  top: 50%;
  transform: translateY(-50%);
}




.input_box select {
  width: 100%;
  height: 3.7rem;
  background-color: #fff;
  border-radius: 0.7rem;
  border: none;
  font-size: 1.4rem;
  color: #000000;
  font-weight: 400;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
}

.grecaptcha-badge {
	display:none !important;"
}

/*V2*/

@media (min-width: 992px) {
#blocsearch {
  width: 68.5rem;
  }
}
@media (min-width: 992px) {
    .input_group_wrap {
        display: flex;
        justify-content: space-between; /* Espace uniforme entre les éléments */
        align-items: center;
        gap: 15px; /* Espace entre les éléments */
        width: 100%;
    }

    .input_group {
        flex: 1; /* Chaque élément prend un espace équitable */
        display: flex;
        flex-direction: column;
        align-items: stretch; /* S'assure que les éléments s'étendent horizontalement */
    }

    .es_select select,
    .customInputContainer,
    .hero_btn button {
        width: 100%; /* Prend toute la largeur de son conteneur parent */
        box-sizing: border-box; /* Gère le padding à l'intérieur de la largeur */
    }

    .hero_btn {
        flex: 0 0 auto; /* Garde le bouton compact */
        text-align: center;
    }

    .hero_btn button {
        width: 100%;
        padding: 10px 20px;
    }
}
.customInput {
    position: relative;
}

.selectedData {
    padding-right: 2rem; /* Laisse de l'espace pour la flèche */
    position: relative;
}

.customInput::after {
    content: "";
    position: absolute;
    top: 42%;
    right: 11px; /* Distance entre la flèche et le bord droit */
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 1px solid #000; /* Style de la flèche */
    border-right: 1px solid #000; /* Style de la flèche */
    display: block;
    width: 1rem; /* Largeur de la flèche */
    height: 1rem; /* Hauteur de la flèche */
    pointer-events: none; /* La flèche est non cliquable */
}
@media (min-width: 576px) {
    .modal-dialog {
       max-width: 100% !important;
        
    }
}
    .modal-fullscreen {
        padding: 1rem;
        box-sizing: border-box;
    }

    .modal-fullscreen .modal-content {
        height: calc(100% - 2rem);
        width: calc(100% - 2rem);
        border: none;
        padding: 0;
        margin: auto;
    }

    #campingMap {
        height: 100%;
        width: 100%;
    }
	
		.camping_slider_img img {
			border-radius: 10px; /* Ajustez la valeur pour définir l'arrondi */
			overflow: hidden; /* Assure que les coins restent arrondis */
		}
				.form-group {
			display: flex;
			align-items: center;
				padding-top: 13px;
		}

		.text-checkbox {
			margin-left: 8px; /* Ajustez l'espacement entre la case et le texte */
				display: inline;
		}
		.linkform {
				color: #161613;
		}


.col-lg-4.d-none.d-lg-block.input_btn {
	margin-top: 1rem;
}
#interessepar option[value^="camping-"] {
    display: none !important;
}
    .mobil_price_new {
position: relative;
    left: 4rem;
    }
}
@media (max-width: 991px) {
    .mobil_price_new {
position: relative;
    left: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mobil_price_new {
position: relative;
    left: 15rem;
    }
}


@media (max-width: 575.98px) {
    .mobil_price_new {
position: relative;
    left: 1rem;
    }
}