@charset "UTF-8";
/* CSS Document */

/*

turquoise : #11b0b0			bleu : #3b5f7a				jaune : #ffd206				vert : #b7cf46				antracite : #444444			gris : #7b7c7c
rgba(17,176,176,1)			rgba(59,95,122,1)			rgba(255,210,6,1)			rgba(183,207,70,1)			rgba(68,68,68,1)			rgba(123,124,124,1)

font-family: 'Quicksand', sans-serif;
font-family: 'Sue Ellen Francisco', cursive;

*/

html {
  scroll-behavior: smooth;
}

body {
	font-size: 0.9rem;
	color: #444444;
	background: #fff;
	transition: all 0.3s ease-in;
}

@font-face {
  font-family: 'tastesoule';
  src: url('/font/tastesoule.eot?53729126');
  src: url('/font/tastesoule.eot?53729126#iefix') format('embedded-opentype'),
       url('/font/tastesoule.woff2?53729126') format('woff2'),
       url('/font/tastesoule.woff?53729126') format('woff'),
       url('/font/tastesoule.ttf?53729126') format('truetype'),
       url('/font/tastesoule.svg?53729126#tastesoule') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "tastesoule";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    margin-left: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} 
.icon-star:before { content: '\e800'; } /* '' */

h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #11b0b0;
    text-transform: uppercase;
}
h2 {
    font-family: 'Sue Ellen Francisco', cursive;
    font-size: 2rem;
    margin: 40px 0 30px;
}

a, a:hover {
    text-decoration: none;
}
a {
    color: #11b0b0;
    transition: all 0.3s ease-in;
}
a:hover {
    color: #3b5f7a;
}

.btn {
    background-color: #11b0b0;
    color: #fff;
    transition: all 0.3s ease-in;
}
.btn:hover {
    background-color: #ffd206;
}

.container-full {
    padding: 0;
}

header {
    background-color: #444444;
	color: #fff;
}
#full-header header {
    height: 100vh;
}
#full-header header > div {
    position: absolute;
    z-index: 10;
    height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    background-image: url("/img/header-graph-left.svg"), url("/img/header-graph-right.svg");
    background-position: left -50px center, right -50px center;
    background-repeat: no-repeat;
}

header > div {
    position: relative;
    z-index: 10;
    width: 100%;
    background-image: url("/img/header-graph-left.svg"), url("/img/header-graph-right.svg");
    background-position: left -50px center, right -50px center;
    background-repeat: no-repeat;
}

#header-top {
    display: flex;
    position: absolute;
    width: 100%;
    z-index: 100000;
    background-color: #11b0b0;
}
#full-header #header-top {
    background-color: rgba(0,0,0,0.5);
}
#header-top .logo, #header-top #flag {
    position: absolute;
}
#header-top .logo {
    left: 0;
    top: 0;
}
#header-top #flag {
    right: 0;
    top: 0;
}
.logo img {
    height: 58px;
    margin: 0 10px;
}

header > img {
    position: absolute;
	display: block;
    width: 100%;
    height: 100%;
	object-fit: cover;
	z-index: 0;
    top: 0;
}

.navbar {
	padding: 0;
	font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
}
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: rgba(255,255,255,0.7);
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(255,255,255,0.5);
	transition: all 0.3s ease;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,1);
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .7rem;
    padding-left: .7rem;
}
.dropdown-menu {
    margin: 0;
    border: none;
    border-radius: 0;
	padding: 0;
	min-width: 100%;
	font-size: 0.9rem;
}
.dropdown-toggle::after {
	display: none;
}
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.dropdown-item:hover {
    background-color: #ffd206;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}
.dropdown-item.active, .dropdown-item:active, .navbar-light .navbar-nav .nav-link.active {
    color: #fff;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #11b0b0;
}

ul#flag {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul#flag li {
    margin: 0;
    padding: 0;
}
ul#flag li a {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    padding: 1rem;
    display: block;
    transition: all 0.3s ease-in;
}
ul#flag li a:hover {
    background-color: #ffd206;
}
#full-header ul#flag li a:hover {
    background-color: #11b0b0;
}

#header-content.row {
    margin: 0;
}
#header-content > div:first-child {
    padding: 90px 0 90px 10%;
}
#header-content > div:last-child {
    padding: 0;
}
#header-content > div:last-child > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#full-header #header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#header-content .sue {
    font-family: 'Sue Ellen Francisco', cursive;
    font-size: 2.2rem;
}
#header-content .quicksand {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 3rem;
    text-transform: uppercase;
}
#full-header #header-content .quicksand {
    font-size: 5rem;
    line-height: 3rem;
}
#header-content .star {
    font-size: 2rem;
}
#header-content small {
    font-family: 'Quicksand', sans-serif;
}

#header-bottom {
    position: absolute;
    bottom: 0;
    padding: 0 20px;
    width: 100%;
}
#header-bottom > p {
    margin-bottom: 0;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
    background-color: rgba(0,0,0,0.7);
    display: inline-block;
}
#header-bottom > div {
    bottom: 0;
    padding: 10px 0 20px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    background: url("/img/vague-blanche.svg") bottom -1px center no-repeat;
}
#header-bottom > div .btn {
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    padding: .375rem 1rem;
}
#header-bottom > div .btn:first-child {
    margin-right: auto;
}
#header-bottom > div .btn:last-child {
    margin-left: auto;
}
#header-bottom > div .btn#arrow {
    color: #444444;
    border: 1px solid #444444;
    background-color: #fff;
    position: absolute;             /* new */
    left: 50%;
    transform: translateX(-50%);
}
#header-bottom > div .btn#arrow:hover {
    color: #fff;
    background-color: #444444;
}

section {
    padding: 50px 0;
}
.separator > center {
    margin:  50px 0;
}

#form-resa {
    padding: 0 0 50px 0;
    text-align: center;
}
#form-resa img {
    width: 100%;
    max-width: 800px;
}

.photos > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bg-yellow {
    background-color: #ffd206;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    margin:  50px 0;
}
.bg-yellow .vague-top {
    height: 100px;
    width: 100%;
    background: #fff url("/img/vague-jaune-vert.svg") bottom -1px left no-repeat;
}
.bg-yellow .vague-bottom {
    height: 75px;
    width: 100%;
    background: #fff url("/img/vague-jaune.svg") top -1px right no-repeat;
}
.bg-yellow .container {
    padding-top: 20px;
    padding-bottom: 20px;
}
.bg-yellow .container p {
    margin-top: 1rem !important;
}

.encarts-circle {
    margin:  50px 0;
    background-color: #444444;
    background-repeat: no-repeat;
    background-attachment: fixed;   
}
.encarts-circle.encarts-circle-index {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/vacances-location-mobilhome.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-piscine {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/piscine-chauffee-camping.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-services {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/services-bar-restaurant.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-jeux {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/jeux-vacances-medoc.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-animations {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/animations-soirees-camping.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-tente {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/tente-caravane-campingcar.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-vensac {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/vensac-gironde-aquitaine.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-montalivet {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/montalivet-foret-pinede.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle.encarts-circle-medoc {
    background-image: url("/img/bg-graph-grey-left.svg"), url("/img/bg-graph-grey-right.svg"), url("/img/bg/medoc-vins-vacances.jpg");
    background-position: left -50px center, right -50px center, center;
    background-size: auto, auto, cover;
}
.encarts-circle > .container > .row {
    padding: 50px 0;
}
.encarts-circle > .container > .row > div > div {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sue Ellen Francisco', cursive;
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
}
.encarts-circle > .container > .row > div:nth-child(1) > div {
    background-color: #11b0b0;
}
.encarts-circle > .container > .row > div:nth-child(2) > div {
    background-color: #ffd206;
}
.encarts-circle > .container > .row > div:nth-child(3) > div {
    background-color: #3b5f7a;
}
.encarts-circle > .container > .row > div:nth-child(4) > div {
    background-color: #b7cf46;
}

.js-grid-mosaic-flat {
    margin: 0 15px;
}

.encart-bleu {
    margin:  50px 0;
    background-image: url("/img/bg-graph-color-left.svg"), url("/img/bg-graph-color-right.svg");
    background-position: left -20px center, right -20px center;
    background-repeat: no-repeat;
}
.encart-bleu .container div {
    border-radius: 5px;
    background-color: #11b0b0;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}
.encart-bleu .container div h3 {
    font-family: 'Sue Ellen Francisco', cursive;
    font-size: 3rem;
}
.encart-bleu .container div a {
    text-transform: uppercase;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #ffd206;
}

#paiements h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
}
#paiements div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#paiements img {
    height: 80px;
}

#map-canvas {
	width: 100%;
	height: 600px;
	margin: 20px auto;
}
#map-canvas, .video {
    background: #444444 url(/img/loader.svg) center no-repeat;
}
#map-iframe {
	position: relative;
}
#map-iframe > .container {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 10px 0 24px 10px;
	padding: 0;
	z-index: 50000;
}

.links > article.row {
    padding: 0;
    overflow: hidden;
    margin: 0 0 20px;
    display: flex;
    background-color: rgba(123,124,124,0.1);
}
.links > article.row > div {
    padding: 0;
}
.links > article > div:first-child> img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.links > article > div:last-child {
    padding: 20px;
}
.links > article h3 {
    margin: 0;
}
.links > article small {
    color: #11b0b0;
    display: block; 
}
.links > article p {
    margin: 5px 0;
}

.video {
    position: relative;
    cursor: pointer;
}
.video .video-capture {
    transition: all 0.3s;
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
    -moz-filter: brightness(100%);
    -o-filter: brightness(100%);
    -ms-filter: brightness(100%);
    z-index: 1;
}
.video:hover .video-capture {
    filter: brightness(50%);
    -webkit-filter: brightness(50%);
    -moz-filter: brightness(50%);
    -o-filter: brightness(50%);
    -ms-filter: brightness(50%);
}
.video .video-bt {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.encart-dl > div > div {
    background-color: rgba(17,176,176,0.1);
    border-radius: 3px;
    padding: 15px;
    margin: 15px 0;
}
.encart-dl > div > div > div:first-child {
    padding: 0;
}
.encart-dl img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.encart-dl > div > div > div:last-child {
    padding: 0 0 0 15px;
}
.encart-dl > div > div p {
    margin: 0 0 10px;
}
.encart-dl .btn {
    margin-top: 0;
}


/* ///////// MODIF CUBEPORTFOLIO ///////// */
 
.cbp-caption-overlayBottomAlong .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.cbp-caption-overlayBottomAlong .cbp-caption-activeWrap {
    height: 100%;
}
.cbp-caption-activeWrap {
    background-color: rgba(255,210,6,0.5);
}


/* ////// 404 ////// */

.page_404 {
    text-align: center;
    color: #444444;
}
.page_404 .page_404_gif {
    display: inline-block;
    margin: 30px 0;
}
.page_404 .page_404_gif span {
    display: block;
    float: left;
    font-size: 130px;
    font-weight: 700;
    height: 240px;
    line-height: 240px;
}
.page_404 .page_404_gif div {
    background: #CCC;
    border: 10px solid #11b0b0;
    border-radius: 50%;
    box-shadow: 0 0 10px #444444;
    display: block;
    float: left;
    height: 240px;
    width: 240px;
    margin: 0 20px;
    overflow: hidden;
}
.page_404 .page_404_gif img {
    width: 220px;
}
.page_404 .page_404_gif a {
    display: inline-block;
}
.page_404 .page_404_gif a:link {
    display: block;
}


/* ////// FOOTER //////*/

footer {
    background-color: #444444;
    color: #fff;
}
footer #footer-top > .row {
    position: relative;
}
footer #footer-top > .row > a {
    background: url("/img/maps-footer.jpg") center no-repeat;
    background-size: cover;
}
footer #footer-top > .row > #coordonnees {
    background: rgb(17,176,176);
    background: linear-gradient(to right, rgba(17,176,176,1) 0%, rgba(255,210,6,1) 100%); 
    padding: 80px 20px 100px;
    text-align: center;
}
footer #footer-top > .row > #coordonnees p:first-child {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
}
footer #footer-top > .row > #coordonnees span {
    color: #444444;
}
footer #footer-top #footer-vague {
    position: absolute;
    width: 100%;
    background: url("/img/vague-grise.svg") bottom -1px center no-repeat;
    height: 80px;
    bottom: 0;
}
footer #footer-bottom {
    padding: 50px 0 20px;
}
footer #footer-bottom ul, footer #footer-bottom ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer #footer-bottom ul li a {
    display: block;
    padding: 3px 0;
    color: #fff;
    transition: all 0.3s ease-in;
}
footer #footer-bottom > .row {
    margin: 0;
}
footer #footer-bottom > .row > div:first-child {
    text-align: left;
}
footer #footer-bottom > .row > div:last-child {
    text-align: right;
}
footer #footer-bottom > .row > div p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
}
footer #footer-bottom > .row > div:first-child p {
    color: #11b0b0;
}
footer #footer-bottom > .row > div:last-child p {
    color: #ffd206;
}
footer #footer-bottom > .row > div:first-child ul li a:hover {
    padding-left: 15px;
    color: #11b0b0;
}
footer #footer-bottom > .row > div:last-child ul li a:hover {
    padding-right: 15px;
    color: #ffd206;
}
footer #footer-bottom #carte a {
    margin-top: -30px;
    display: block;
}
footer #footer-bottom #carte a img {
    width: 300px;
}
footer #footer-bottom #social a img {
    width: 38px;
    transition: all 0.3s ease-in;
}
footer #footer-bottom #social a:hover img {
    opacity: 0.5;
}
footer #footer-bottom hr {
    margin: 30px 0 20px;
}
footer #footer-bottom center small {
    font-size: 0.6rem;
    color: #7b7c7c;
}
footer #footer-bottom center small a {
    color: #7b7c7c;
    transition: all 0.3s ease-in;
}
footer #footer-bottom center small a:hover {
    color: #fff;
}

.to-top {
    background: #7b7c7c;
    position: fixed;
    bottom: 12px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
    z-index: 1000;
}
.to-top:hover {
    background: #11b0b0;
}
.to-top.active {
    bottom: 24px;
    pointer-events: auto;
    opacity: 1;
}
.to-top svg, .to-top:hover svg {
    color: #fff;
}


/* ////// CTOUTVERT //////*/

.v-application.ctv-availability .v-application--wrap {
    min-width: 100%;
    max-width: 100%;
}