/*-----------------------------------------------------------------------------------
	Grandeur Nature Safaris
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'IstokWeb-Regular';
	src: url('./fonts/IstokWeb-Regular/istok-web.woff2');
	src: url('./fonts/IstokWeb-Regular/istok-web.woff2') format('woff2'),
	url('./fonts/IstokWeb-Regular/istok-web.eot?#iefix') format('embedded-opentype'),
	url('./fonts/IstokWeb-Regular/istok-web.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'IstokWeb-Bold';
	src: url('./fonts/IstokWeb-Bold/istok-web.woff2');
	src: url('./fonts/IstokWeb-Bold/istok-web.woff2') format('woff2'),
	url('./fonts/IstokWeb-Bold/istok-web.eot?#iefix') format('embedded-opentype'),
	url('./fonts/IstokWeb-Bold/istok-web.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Bloc Mask */

.bloc-bg-mask{
	position: absolute;
	width:100%;
	height: 100%;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
	align-items: flex-start;
}
.svg-mask{
	width:100%;
	height: 100%;
	fill-rule: evenodd;
	fill:#000000;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-b-edge{
	background-position: bottom!important;
	background-repeat: no-repeat;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
.navbar-toggle.menu-icon-rounded-uneven-b-list{
	margin-top:7px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}
.icon-spacer{
	margin-right:5px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}




/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}


/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
h1{
	font-family:"Philosopher";
	font-weight:700;
	font-size:70px;
}
h2{
	font-family:"Philosopher";
	font-weight:700;
	font-size:48px;
	line-height:40px;
}
h3{
	font-family:"Istok Web";
	font-size:40px;
}
h4{
	font-family:"Philosopher";
	font-weight:700;
	font-size:22px;
}
.text-title{
	color:var(--swatch-var-7366)!important;
}
.bloc-divider-b-style{
	height:49px;
	fill:var(--swatch-var-2005);
}
.text-big-shadow{
	text-shadow:0.00px -0.00px 20px #000000;
}
p{
	margin-bottom:0px;
	padding-bottom:0px;
	font-family:"IstokWeb-Regular";
	font-size:16px;
}
.text-white-gradient{
	background:linear-gradient(270deg, rgba(255,255,255,0.50) 0%, #FFFFFF 100%);
	background-origin:content-box;
	background-clip:text!important;
	-webkit-background-clip:text!important;
	color:var(--swatch-var-3052)!important;
}
.text-dark{
	color:var(--swatch-var-2836)!important;
	border-width:0px 0px 0px 0px;
}
.card{
	padding:15px 15px 15px 15px;
	border-style:solid;
	border-color:transparent!important;
	background-origin:border-box;
	background-clip:padding-box!important;
	-webkit-background-clip:padding-box!important;
	background-blend-mode:normal;
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	margin-bottom:5px;
	background-color:var(--swatch-var-6190);
}
.bloc-fill{
	fill:var(--swatch-var-4234);
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-2005);
	width:100%;
	height:40px;
}
.destination-slide{
	margin:0px 0px 0px 0px;
	background-color:var(--swatch-var-7135);
	width:320px;
	border-radius:5px 5px 5px 5px;
	padding:20px 0px 0px 0px;
	overflow:hidden;
	height:500px;
	box-shadow:0.00px -0.00px 14px rgba(0,0,0,0.20);
}
.mask-circle-left{
	width:170%;
	fill:transparent;
	position:absolute;
	left:-700px;
}
.test{
	backdrop-filter:blur(46px);
	-webkit-backdrop-filter:blur(46px);
}
.afrique-du-sud{
	background-size:cover;
	background-image:url("img/blyde%20river%20canyon%20s.jpg");
	background-image: -webkit-image-set(url("img/blyde%20river%20canyon%20s.webp") 1x,
url("img/blyde%20river%20canyon%20s.webp") 2x);background-image: image-set(url("img/blyde%20river%20canyon%20s.jpg") 1x,
url("img/blyde%20river%20canyon%20s.jpg") 2x,url("img/blyde%20river%20canyon%20s.webp") 1x,
url("img/blyde%20river%20canyon%20s.webp") 2x);
}
.dest-slide-description{
	position:absolute;
	border-radius:0px 0px 5px 5px;
	padding:0px 0px 0px 0px;
	opacity:1;
	z-index:0;
	bottom:0px;
	left:0px;
	backdrop-filter:blur(0px);
	-webkit-backdrop-filter:blur(0px);
	background-color:transparent;
	color:transparent;
}
.angola{
	background-image:url("img/Angola%20s.jpg");
	background-image: -webkit-image-set(url("img/Angola%20s.webp") 1x,
url("img/Angola%20s.webp") 2x);background-image: image-set(url("img/Angola%20s.jpg") 1x,
url("img/Angola%20s.jpg") 2x,url("img/Angola%20s.webp") 1x,
url("img/Angola%20s.webp") 2x);
	background-size:cover;
}
.botswana{
	background-image:url("img/elephant%20botswana.jpg");
	background-image: -webkit-image-set(url("img/elephant%20botswana.webp") 1x,
url("img/elephant%20botswana.webp") 2x);background-image: image-set(url("img/elephant%20botswana.jpg") 1x,
url("img/elephant%20botswana.jpg") 2x,url("img/elephant%20botswana.webp") 1x,
url("img/elephant%20botswana.webp") 2x);
	background-size:cover;
}
.kenya{
	background-image:url("img/gnou%20riviere.jpg");
	background-image: -webkit-image-set(url("img/gnou%20riviere.webp") 1x,
url("img/gnou%20riviere.webp") 2x);background-image: image-set(url("img/gnou%20riviere.jpg") 1x,
url("img/gnou%20riviere.jpg") 2x,url("img/gnou%20riviere.webp") 1x,
url("img/gnou%20riviere.webp") 2x);
	background-size:cover;
}
.mozambique{
	background-image:url("img/mozambique.jpg");
	background-image: -webkit-image-set(url("img/mozambique.webp") 1x,
url("img/mozambique.webp") 2x);background-image: image-set(url("img/mozambique.jpg") 1x,
url("img/mozambique.jpg") 2x,url("img/mozambique.webp") 1x,
url("img/mozambique.webp") 2x);
	background-size:cover;
}
.namibie{
	background-size:cover;
	background-image:url("img/oryx-dune-sable-crop.jpg");
	background-image: -webkit-image-set(url("img/oryx-dune-sable-crop.webp") 1x,
url("img/oryx-dune-sable-crop.webp") 2x);background-image: image-set(url("img/oryx-dune-sable-crop.jpg") 1x,
url("img/oryx-dune-sable-crop.jpg") 2x,url("img/oryx-dune-sable-crop.webp") 1x,
url("img/oryx-dune-sable-crop.webp") 2x);
}
.uganda{
	background-image:url("img/gorille%20ouganda.jpg");
	background-image: -webkit-image-set(url("img/gorille%20ouganda.webp") 1x,
url("img/gorille%20ouganda.webp") 2x);background-image: image-set(url("img/gorille%20ouganda.jpg") 1x,
url("img/gorille%20ouganda.jpg") 2x,url("img/gorille%20ouganda.webp") 1x,
url("img/gorille%20ouganda.webp") 2x);
	background-size:cover;
}
.rwanda{
	background-image:url("img/rwanda.jpg");
	background-image: -webkit-image-set(url("img/rwanda.webp") 1x,
url("img/rwanda.webp") 2x);background-image: image-set(url("img/rwanda.jpg") 1x,
url("img/rwanda.jpg") 2x,url("img/rwanda.webp") 1x,
url("img/rwanda.webp") 2x);
	background-size:cover;
}
.tanzanie{
	background-image:url("img/tanzanie.jpg");
	background-image: -webkit-image-set(url("img/tanzanie.webp") 1x,
url("img/tanzanie.webp") 2x);background-image: image-set(url("img/tanzanie.jpg") 1x,
url("img/tanzanie.jpg") 2x,url("img/tanzanie.webp") 1x,
url("img/tanzanie.webp") 2x);
	background-size:cover;
}
.zambie{
	background-image:url("img/victoriafalls.jpg");
	background-image: -webkit-image-set(url("img/victoriafalls.webp") 1x,
url("img/victoriafalls.webp") 2x);background-image: image-set(url("img/victoriafalls.jpg") 1x,
url("img/victoriafalls.jpg") 2x,url("img/victoriafalls.webp") 1x,
url("img/victoriafalls.webp") 2x);
	background-size:cover;
}
.zimbabwe{
	background-image:url("img/zimbabwe.jpg");
	background-image: -webkit-image-set(url("img/zimbabwe.webp") 1x,
url("img/zimbabwe.webp") 2x);background-image: image-set(url("img/zimbabwe.jpg") 1x,
url("img/zimbabwe.jpg") 2x,url("img/zimbabwe.webp") 1x,
url("img/zimbabwe.webp") 2x);
	background-size:cover;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-6039);
	height:37px;
	width:100%;
}
.bloc-bloc-3-3406-fill{
	fill:var(--swatch-var-5925);
}
.bloc-divider-t-bloc-3-3406-fill{
	fill:var(--swatch-var-2005);
	height:28px;
}
.bloc-divider-b-bloc-1-fill{
	fill:var(--swatch-var-7366);
	height:59px;
}
.bloc-divider-t-style{
	height:20px;
}
.card-dark{
	padding:15px 15px 15px 15px;
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	border-radius:5px 5px 5px 5px!important;
	background-color:var(--swatch-var-2186);
	margin-top:6px;
}
.bloc-divider-b-0-style{
	height:58px;
}
.hidden{
	display:none;
}
.img-style{
	width:100px;
}
.img-2-style{
	width:75px;
}
.italic{
	font-style:italic;
}
.bloc-divider-b-12340-style{
	height:40px;
}
.destination-slide-button{
	position:absolute;
	bottom:0px;
	left:0px;
	border-radius:0px 0px 5px 5px;
	padding:0px 0px 0px 0px;
	width:100%;
	height:70px;
}
.main-cta{
	margin:100px 0px 0px 0px;
}
.header-content{
	margin-top:50px;
}
.dest-slide-desc-off{
	position:absolute;
	bottom:-100px;
	left:0px;
	backdrop-filter:blur(20px);
	-webkit-backdrop-filter:blur(20px);
	border-radius:0px 0px 0px 0px;
	padding:10px 10px 10px 10px;
	background-color:rgba(0,0,0,0.30);
	color:var(--swatch-var-7366)!important;
}
.description-text{
	padding:10px 10px 80px 10px;
	position:relative;
	display:block;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	z-index:-10;
	text-align:left;
}
.button-learnmore{
	padding:5px 5px 5px 5px;
}
.btn-more{
	position:absolute;
	bottom:20px;
	left:75px;
	right:75px;
}
.destination-title{
	font-size:140px;
	background:linear-gradient(0deg, var(--swatch-var-3052) 0%, #FFFFFF 61%);
	background-clip:text!important;
	-webkit-background-clip:text!important;
	color:var(--swatch-var-3052)!important;
	border-width:0px 0px 1px 0px;
	border-style:solid;
	border-color:var(--swatch-var-5665)!important;
}
.destination-header{
	height:700px;
	margin-top:0px;
	background-position:center bottom;
}
.destination-abstract{
	width:35%;
	position:absolute;
	right:0px;
	bottom:0px;
	font-size:22px;
	border-width:0px 0px 0px 1px;
	border-color:var(--swatch-var-5665)!important;
	border-style:solid;
	padding-left:15px;
}
.h2small{
	font-size:32px;
	margin-top:0px;
	padding-top:0px;
}
.h4big{
	font-size:26px;
}
.img-arondi1{
	border-radius:0px 50px 0px 50px;
}
.destination-intro{
	border-width:0px 0px 0px 1px;
	border-style:solid;
	border-color:var(--swatch-var-5665)!important;
}
.experience-img-impair{
	width:40%;
	position:relative;
	left:-50px;
	top:30px;
	z-index:1;
	box-shadow:0.00px -0.00px 50px rgba(0,0,0,0.20);
}
.img-etosha-paln-e-style{
	width:558px;
}
.experience-desc-impair{
	width:60%;
	float:left;
	padding:20px 80px 20px 20px;
	background-color:var(--swatch-var-6190);
	z-index:0;
}
.experience-desc-pair{
	width:60%;
	float:right;
	padding:20px 20px 20px 80px;
	background-color:var(--swatch-var-6190);
	z-index:0;
}
.experience-img-pair{
	width:40%;
	position:relative;
	left:50px;
	top:-30px;
	z-index:1;
	box-shadow:0.00px -0.00px 50px rgba(0,0,0,0.20);
}
.galery-img{
	border-radius:5px 5px 5px 5px;
}
.experience-grid{
	column-gap:5px;
	row-gap:5px;
	grid-column-start:2;
	grid-row-start:4;
}
.experience-tile{
	grid-column-start:1;
	grid-column-end:2;
	grid-row-start:1;
	grid-row-end:4;
}
h5{
	font-family:"Philosopher";
	font-weight:700;
	font-size:18px;
}
.bloc-divider-b-bloc-13-style{
	height:27px;
	fill:var(--swatch-var-7656);
}
.bloc-divider-t-0-style{
	height:40px;
	fill:#9BB797;
}
.gras{
	font-family:"IstokWeb-Bold";
}
.img-arrondi{
	border-radius:5px 5px 5px 5px;
}
.bloc-divider-b-bloc-10-fill{
	fill:var(--swatch-var-7366);
	height:100px;
}
.bloc-divider-b-bloc-11-fill{
	fill:var(--swatch-var-5925);
}
.bloc-bloc-14-fill{
	fill:var(--swatch-var-4234);
}
.card-neutre{
	padding:15px 15px 15px 15px;
	background-origin:border-box;
	background-clip:padding-box!important;
	-webkit-background-clip:padding-box!important;
	background-blend-mode:normal;
	backdrop-filter:blur(15px);
	-webkit-backdrop-filter:blur(15px);
	margin-bottom:5px;
	border-radius:5px 5px 5px 5px;
	background-color:var(--swatch-var-2057);
}
.img-shadow{
	box-shadow:0.00px -0.00px 24px rgba(0,0,0,0.60);
}
.img-logo-gns--style{
	width:200px;
}
.h2big{
	font-size:56px;
	line-height:56px;
}
.underline{
	border-style:solid;
	border-width:0px 0px 1px 0px;
	border-color:var(--swatch-var-537)!important;
	padding-bottom:15px;
}
.bg-adjust{
	background-size:contain;
	background-position:center bottom;
	background-repeat:no-repeat;
	background-image:url("img/esquisse-fond-xl-hflip.jpg");
	background-image: -webkit-image-set(url("img/esquisse-fond-xl-hflip.webp") 1x,
url("img/esquisse-fond-xl-hflip.webp") 2x);background-image: image-set(url("img/esquisse-fond-xl-hflip.jpg") 1x,
url("img/esquisse-fond-xl-hflip.jpg") 2x,url("img/esquisse-fond-xl-hflip.webp") 1x,
url("img/esquisse-fond-xl-hflip.webp") 2x);
}
.bloc-divider-b-bloc-11-style{
	height:35px;
	fill:var(--swatch-var-5925);
}
.bloc-divider-b-bloc-12-style{
	height:37px;
	fill:var(--swatch-var-2836);
}
.bloc-divider-t-bloc-13-style{
	height:41px;
	fill:var(--swatch-var-5925);
}
.button-text{
	font-size:16px;
}
.section{
	padding-top:60px;
	padding-bottom:80px;
}
.avantage-titre{
	padding-right:100px;
}
.buton-map{
	position:absolute;
	top:190px;
	right:0px;
	background-color:var(--swatch-var-5665);
	font-family:"Istok Web";
	color:var(--swatch-var-2005)!important;
	font-size:18px;
}
.top{
	position:relative;
	top:0px;
	z-index:100;
	height:50px;
	margin:0px 0px 0px 0px;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-5966)!important;
	fill:var(--swatch-var-5966)!important;
}
.nav{
	padding:3px 3px 3px 5px;
	border-radius:6px 6px 6px 6px;
	text-align:left;
	width:100px;
	background-color:var(--swatch-var-7656);
}
.navlist{
	width:100%;
}
.taglabel{
	border-width:1px 0px 1px 1px;
	border-radius:3px 0px 0px 3px;
	border-color:var(--swatch-var-5925)!important;
	padding:3px 6px 3px 3px;
	border-style:solid;
	background-color:var(--swatch-var-2502);
	display:inline-block;
	margin-top:2px;
	margin-bottom:2px;
	margin-left:2px;
}
.tagvalue{
	padding:3px 6px 3px 6px;
	border-style:solid;
	border-color:var(--swatch-var-5925)!important;
	border-width:1px 1px 1px 0px;
	border-radius:0px 3px 3px 0px;
	display:inline-block;
	margin-right:2px;
	background-color:var(--swatch-var-5966);
}
.tag{
	display:inline-block;
	float:left;
}
.smalmwidth{
	width:75%;
}
.card-white{
	padding:15px 15px 15px 15px;
	border-style:solid;
	border-color:transparent!important;
	background-origin:border-box;
	background-clip:padding-box!important;
	-webkit-background-clip:padding-box!important;
	background-blend-mode:normal;
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	margin-bottom:5px;
	background-color:var(--swatch-var-7366);
	border-radius:10px 10px 10px 10px;
}
.email{
	color:var(--swatch-var-3183)!important;
}
.text-over-image{
	position:absolute;
	top:0px;
	padding:30px 30px 30px 30px;
}
.avatar{
	width:150px;
	height:150px;
}
.bloc-photo-texte{
	position:relative;
	top:0px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-7366:rgba(255,255,255,1.00);
	
	--swatch-var-537:rgba(0,0,0,0.20);
	
	--swatch-var-7656:rgba(102,131,95,1.00);
	
	--swatch-var-4234:rgba(82,100,79,1.00);
	
	--swatch-var-2067:rgba(110,82,61,1.00);
	
	--swatch-var-2186:rgba(0,0,0,0.60);
	
	--swatch-var-3052:rgba(255,255,255,0.00);
	
	--swatch-var-2836:rgba(0,0,0,0.70);
	
	--swatch-var-5925:rgba(194,175,157,1.00);
	
	--swatch-var-3183:rgba(125,153,58,1.00);
	
	--swatch-var-2005:rgba(0,0,0,1.00);
	
	--swatch-var-5304:rgba(218,88,53,1.00);
	
	--swatch-var-5665:rgba(255,255,255,0.49);
	
	--swatch-var-6190:rgba(255,255,255,0.10);
	
	--swatch-var-6913:rgba(146,118,105,1.00);
	
	--swatch-var-2057:rgba(0,0,0,0.10);
	
	--swatch-var-6039:rgba(40,40,40,1.00);
	
	--swatch-var-5966:rgba(255,255,255,1.00);
	
	--swatch-var-1547:rgba(0,0,0,0.85);
	
	--swatch-var-2502:#EADDD2;
	
}


/* Background colour styles */

.bgc-1547{
	background-color:var(--swatch-var-1547);
}
.bgc-7656{
	background-color:var(--swatch-var-7656);
}
.bgc-5925{
	background-color:var(--swatch-var-5925);
}
.bgc-5665{
	background-color:var(--swatch-var-5665);
}
.bgc-6039{
	background-color:var(--swatch-var-6039);
}
.bgc-2836{
	background-color:var(--swatch-var-2836);
}

/* Text colour styles */

.tc-7366{
	color:var(--swatch-var-7366)!important;
}
.tc-2005{
	color:var(--swatch-var-2005)!important;
}
.tc-7656{
	color:var(--swatch-var-7656)!important;
}
.tc-6913{
	color:var(--swatch-var-6913)!important;
}
.tc-2067{
	color:var(--swatch-var-2067)!important;
}
.tc-5966{
	color:var(--swatch-var-5966)!important;
}
.tc-4234{
	color:var(--swatch-var-4234)!important;
}
.tc-6039{
	color:var(--swatch-var-6039)!important;
}

/* Button colour styles */

.btn-c-7656{
	background:var(--swatch-var-7656);
	color:#FFFFFF!important;
}
.btn-c-7656:hover{
	background:#33502C!important;
	color:#FFFFFF!important;
}
.btn-c-537{
	background:var(--swatch-var-537);
	color:#FFFFFF!important;
}
.btn-c-537:hover{
	background:rgba(0,0,0,0.20)!important;
	color:#FFFFFF!important;
}
.btn-c-3183{
	background:var(--swatch-var-3183);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3183:hover{
	background:#4A6607!important;
	color:rgba(0,0,0,.5)!important;
}

/* Link colour styles */

.ltc-5966{
	color:var(--swatch-var-5966)!important;
}
.ltc-5966:hover{
	color:#CCCCCC!important;
}

/* Icon colour styles */

.icon-7366{
	color:var(--swatch-var-7366)!important;
	border-color:var(--swatch-var-7366)!important;
}
.icon-3183{
	color:var(--swatch-var-3183)!important;
	border-color:var(--swatch-var-3183)!important;
}

/* Bloc image backgrounds */

.bg-baboon-left{
	background-image:url("img/baboon-left.jpg");
	background-image: -webkit-image-set(url("img/baboon-left.webp") 1x,
url("img/baboon-left.webp") 2x);background-image: image-set(url("img/baboon-left.jpg") 1x,
url("img/baboon-left.jpg") 2x,url("img/baboon-left.webp") 1x,
url("img/baboon-left.webp") 2x);
}
.bg-lion-zambie{
	background-image:url("img/lion-zambie.jpg");
	background-image: -webkit-image-set(url("img/lion-zambie.webp") 1x,
url("img/lion-zambie.webp") 2x);background-image: image-set(url("img/lion-zambie.jpg") 1x,
url("img/lion-zambie.jpg") 2x,url("img/lion-zambie.webp") 1x,
url("img/lion-zambie.webp") 2x);
}
.bg-DSC01830{
	background-image:url("img/DSC01830.jpg");
	background-image: -webkit-image-set(url("img/DSC01830.webp") 1x,
url("img/DSC01830.webp") 2x);background-image: image-set(url("img/DSC01830.jpg") 1x,
url("img/DSC01830.jpg") 2x,url("img/DSC01830.webp") 1x,
url("img/DSC01830.webp") 2x);
}
.bg-lodge-inv{
	background-image:url("img/lodge-inv.jpg");
	background-image: -webkit-image-set(url("img/lodge-inv.webp") 1x,
url("img/lodge-inv.webp") 2x);background-image: image-set(url("img/lodge-inv.jpg") 1x,
url("img/lodge-inv.jpg") 2x,url("img/lodge-inv.webp") 1x,
url("img/lodge-inv.webp") 2x);
}
.bg-bivouac-crepuscule{
	background-image:url("img/bivouac-crepuscule.jpg");
	background-image: -webkit-image-set(url("img/bivouac-crepuscule.webp") 1x,
url("img/bivouac-crepuscule.webp") 2x);background-image: image-set(url("img/bivouac-crepuscule.jpg") 1x,
url("img/bivouac-crepuscule.jpg") 2x,url("img/bivouac-crepuscule.webp") 1x,
url("img/bivouac-crepuscule.webp") 2x);
}
.bg-river-crossing{
	background-image:url("img/river-crossing.jpg");
	background-image: -webkit-image-set(url("img/river-crossing.webp") 1x,
url("img/river-crossing.webp") 2x);background-image: image-set(url("img/river-crossing.jpg") 1x,
url("img/river-crossing.jpg") 2x,url("img/river-crossing.webp") 1x,
url("img/river-crossing.webp") 2x);
}
.bg-giraffe-affiche{
	background-image:url("img/giraffe-affiche.jpg");
	background-image: -webkit-image-set(url("img/giraffe-affiche.webp") 1x,
url("img/giraffe-affiche.webp") 2x);background-image: image-set(url("img/giraffe-affiche.jpg") 1x,
url("img/giraffe-affiche.jpg") 2x,url("img/giraffe-affiche.webp") 1x,
url("img/giraffe-affiche.webp") 2x);
}
.bg-oryx-dune-sable{
	background-image:url("img/oryx-dune-sable.jpg");
	background-image: -webkit-image-set(url("img/oryx-dune-sable.webp") 1x,
url("img/oryx-dune-sable.webp") 2x);background-image: image-set(url("img/oryx-dune-sable.jpg") 1x,
url("img/oryx-dune-sable.jpg") 2x,url("img/oryx-dune-sable.webp") 1x,
url("img/oryx-dune-sable.webp") 2x);
}
.bg-rinho-2{
	background-image:url("img/rinho-2.jpg");
	background-image: -webkit-image-set(url("img/rinho-2.webp") 1x,
url("img/rinho-2.webp") 2x);background-image: image-set(url("img/rinho-2.jpg") 1x,
url("img/rinho-2.jpg") 2x,url("img/rinho-2.webp") 1x,
url("img/rinho-2.webp") 2x);
}
.bg-riviere-ephemere2{
	background-image:url("img/riviere-ephemere2.jpg");
	background-image: -webkit-image-set(url("img/riviere-ephemere2.webp") 1x,
url("img/riviere-ephemere2.webp") 2x);background-image: image-set(url("img/riviere-ephemere2.jpg") 1x,
url("img/riviere-ephemere2.jpg") 2x,url("img/riviere-ephemere2.webp") 1x,
url("img/riviere-ephemere2.webp") 2x);
}
.bg-chutes-20victoria{
	background-image:url("img/chutes%20victoria.jpg");
	background-image: -webkit-image-set(url("img/chutes%20victoria.webp") 1x,
url("img/chutes%20victoria.webp") 2x);background-image: image-set(url("img/chutes%20victoria.jpg") 1x,
url("img/chutes%20victoria.jpg") 2x,url("img/chutes%20victoria.webp") 1x,
url("img/chutes%20victoria.webp") 2x);
}
.bg-leopard{
	background-image:url("img/leopard.jpg");
	background-image: -webkit-image-set(url("img/leopard.webp") 1x,
url("img/leopard.webp") 2x);background-image: image-set(url("img/leopard.jpg") 1x,
url("img/leopard.jpg") 2x,url("img/leopard.webp") 1x,
url("img/leopard.webp") 2x);
}
.bg-ouganda-20chute-20murchison{
	background-image:url("img/ouganda%20chute%20murchison.jpg");
	background-image: -webkit-image-set(url("img/ouganda%20chute%20murchison.webp") 1x,
url("img/ouganda%20chute%20murchison.webp") 2x);background-image: image-set(url("img/ouganda%20chute%20murchison.jpg") 1x,
url("img/ouganda%20chute%20murchison.jpg") 2x,url("img/ouganda%20chute%20murchison.webp") 1x,
url("img/ouganda%20chute%20murchison.webp") 2x);
}
.bg-okavango{
	background-image:url("img/okavango.jpg");
	background-image: -webkit-image-set(url("img/okavango.webp") 1x,
url("img/okavango.webp") 2x);background-image: image-set(url("img/okavango.jpg") 1x,
url("img/okavango.jpg") 2x,url("img/okavango.webp") 1x,
url("img/okavango.webp") 2x);
}
.bg-hippos2{
	background-image:url("img/hippos2.jpg");
	background-image: -webkit-image-set(url("img/hippos2.webp") 1x,
url("img/hippos2.webp") 2x);background-image: image-set(url("img/hippos2.jpg") 1x,
url("img/hippos2.jpg") 2x,url("img/hippos2.webp") 1x,
url("img/hippos2.webp") 2x);
}
.bg-blyde-20river-20canyon2{
	background-image:url("img/blyde%20river%20canyon2.jpg");
	background-image: -webkit-image-set(url("img/blyde%20river%20canyon2.webp") 1x,
url("img/blyde%20river%20canyon2.webp") 2x);background-image: image-set(url("img/blyde%20river%20canyon2.jpg") 1x,
url("img/blyde%20river%20canyon2.jpg") 2x,url("img/blyde%20river%20canyon2.webp") 1x,
url("img/blyde%20river%20canyon2.webp") 2x);
}
.bg-lion-20kruger{
	background-image:url("img/lion%20kruger.jpg");
	background-image: -webkit-image-set(url("img/lion%20kruger.webp") 1x,
url("img/lion%20kruger.webp") 2x);background-image: image-set(url("img/lion%20kruger.jpg") 1x,
url("img/lion%20kruger.jpg") 2x,url("img/lion%20kruger.webp") 1x,
url("img/lion%20kruger.webp") 2x);
}
.bg-girafe-20kilimandjaro2{
	background-image:url("img/girafe%20kilimandjaro2.jpg");
	background-image: -webkit-image-set(url("img/girafe%20kilimandjaro2.webp") 1x,
url("img/girafe%20kilimandjaro2.webp") 2x);background-image: image-set(url("img/girafe%20kilimandjaro2.jpg") 1x,
url("img/girafe%20kilimandjaro2.jpg") 2x,url("img/girafe%20kilimandjaro2.webp") 1x,
url("img/girafe%20kilimandjaro2.webp") 2x);
}
.bg-zebre-20kenya2{
	background-image:url("img/zebre%20kenya2.jpg");
	background-image: -webkit-image-set(url("img/zebre%20kenya2.webp") 1x,
url("img/zebre%20kenya2.webp") 2x);background-image: image-set(url("img/zebre%20kenya2.jpg") 1x,
url("img/zebre%20kenya2.jpg") 2x,url("img/zebre%20kenya2.webp") 1x,
url("img/zebre%20kenya2.webp") 2x);
}
.bg-mozambique-20plage{
	background-image:url("img/mozambique%20plage.jpg");
	background-image: -webkit-image-set(url("img/mozambique%20plage.webp") 1x,
url("img/mozambique%20plage.webp") 2x);background-image: image-set(url("img/mozambique%20plage.jpg") 1x,
url("img/mozambique%20plage.jpg") 2x,url("img/mozambique%20plage.webp") 1x,
url("img/mozambique%20plage.webp") 2x);
}
.bg-leopard2{
	background-image:url("img/leopard2.jpg");
	background-image: -webkit-image-set(url("img/leopard2.webp") 1x,
url("img/leopard2.webp") 2x);background-image: image-set(url("img/leopard2.jpg") 1x,
url("img/leopard2.jpg") 2x,url("img/leopard2.webp") 1x,
url("img/leopard2.webp") 2x);
}
.bg-rwanda-20parc-20des-20volcans{
	background-image:url("img/rwanda%20parc%20des%20volcans.jpg");
	background-image: -webkit-image-set(url("img/rwanda%20parc%20des%20volcans.webp") 1x,
url("img/rwanda%20parc%20des%20volcans.webp") 2x);background-image: image-set(url("img/rwanda%20parc%20des%20volcans.jpg") 1x,
url("img/rwanda%20parc%20des%20volcans.jpg") 2x,url("img/rwanda%20parc%20des%20volcans.webp") 1x,
url("img/rwanda%20parc%20des%20volcans.webp") 2x);
}
.bg-gorille-20rwanda{
	background-image:url("img/gorille%20rwanda.jpg");
	background-image: -webkit-image-set(url("img/gorille%20rwanda.webp") 1x,
url("img/gorille%20rwanda.webp") 2x);background-image: image-set(url("img/gorille%20rwanda.jpg") 1x,
url("img/gorille%20rwanda.jpg") 2x,url("img/gorille%20rwanda.webp") 1x,
url("img/gorille%20rwanda.webp") 2x);
}
.bg-tanzanie-20bush{
	background-image:url("img/tanzanie%20bush.jpg");
	background-image: -webkit-image-set(url("img/tanzanie%20bush.webp") 1x,
url("img/tanzanie%20bush.webp") 2x);background-image: image-set(url("img/tanzanie%20bush.jpg") 1x,
url("img/tanzanie%20bush.jpg") 2x,url("img/tanzanie%20bush.webp") 1x,
url("img/tanzanie%20bush.webp") 2x);
}
.bg-lions-20arboricloes{
	background-image:url("img/lions%20arboricloes.jpg");
	background-image: -webkit-image-set(url("img/lions%20arboricloes.webp") 1x,
url("img/lions%20arboricloes.webp") 2x);background-image: image-set(url("img/lions%20arboricloes.jpg") 1x,
url("img/lions%20arboricloes.jpg") 2x,url("img/lions%20arboricloes.webp") 1x,
url("img/lions%20arboricloes.webp") 2x);
}
.bg-lion-20tete{
	background-image:url("img/lion%20tete.jpg");
	background-image: -webkit-image-set(url("img/lion%20tete.webp") 1x,
url("img/lion%20tete.webp") 2x);background-image: image-set(url("img/lion%20tete.jpg") 1x,
url("img/lion%20tete.jpg") 2x,url("img/lion%20tete.webp") 1x,
url("img/lion%20tete.webp") 2x);
}
.bg-canyon-angola{
	background-image:url("img/canyon-angola.jpg");
	background-image: -webkit-image-set(url("img/canyon-angola.webp") 1x,
url("img/canyon-angola.webp") 2x);background-image: image-set(url("img/canyon-angola.jpg") 1x,
url("img/canyon-angola.jpg") 2x,url("img/canyon-angola.webp") 1x,
url("img/canyon-angola.webp") 2x);
}
.bg-oiseau2{
	background-image:url("img/oiseau2.jpg");
	background-image: -webkit-image-set(url("img/oiseau2.webp") 1x,
url("img/oiseau2.webp") 2x);background-image: image-set(url("img/oiseau2.jpg") 1x,
url("img/oiseau2.jpg") 2x,url("img/oiseau2.webp") 1x,
url("img/oiseau2.webp") 2x);
}
.bg-bivouac-20fireplace{
	background-image:url("img/bivouac%20fireplace.jpg");
	background-image: -webkit-image-set(url("img/bivouac%20fireplace.webp") 1x,
url("img/bivouac%20fireplace.webp") 2x);background-image: image-set(url("img/bivouac%20fireplace.jpg") 1x,
url("img/bivouac%20fireplace.jpg") 2x,url("img/bivouac%20fireplace.webp") 1x,
url("img/bivouac%20fireplace.webp") 2x);
}
.bg-bivouac-angola{
	background-image:url("img/bivouac-angola.jpg");
	background-image: -webkit-image-set(url("img/bivouac-angola.webp") 1x,
url("img/bivouac-angola.webp") 2x);background-image: image-set(url("img/bivouac-angola.jpg") 1x,
url("img/bivouac-angola.jpg") 2x,url("img/bivouac-angola.webp") 1x,
url("img/bivouac-angola.webp") 2x);
}
.bg-excursion-desert-namibie{
	background-image:url("img/excursion-desert-namibie.jpg");
	background-image: -webkit-image-set(url("img/excursion-desert-namibie.webp") 1x,
url("img/excursion-desert-namibie.webp") 2x);background-image: image-set(url("img/excursion-desert-namibie.jpg") 1x,
url("img/excursion-desert-namibie.jpg") 2x,url("img/excursion-desert-namibie.webp") 1x,
url("img/excursion-desert-namibie.webp") 2x);
}
.bg-guide-safari{
	background-image:url("img/guide-safari.jpg");
	background-image: -webkit-image-set(url("img/guide-safari.webp") 1x,
url("img/guide-safari.webp") 2x);background-image: image-set(url("img/guide-safari.jpg") 1x,
url("img/guide-safari.jpg") 2x,url("img/guide-safari.webp") 1x,
url("img/guide-safari.webp") 2x);
}
.bg-peuple-himba-namibie-demo-photo{
	background-image:url("img/peuple-himba-namibie-demo-photo.jpg");
	background-image: -webkit-image-set(url("img/peuple-himba-namibie-demo-photo.webp") 1x,
url("img/peuple-himba-namibie-demo-photo.webp") 2x);background-image: image-set(url("img/peuple-himba-namibie-demo-photo.jpg") 1x,
url("img/peuple-himba-namibie-demo-photo.jpg") 2x,url("img/peuple-himba-namibie-demo-photo.webp") 1x,
url("img/peuple-himba-namibie-demo-photo.webp") 2x);
}
.bg-hippo-20regard{
	background-image:url("img/hippo%20regard.jpg");
	background-image: -webkit-image-set(url("img/hippo%20regard.webp") 1x,
url("img/hippo%20regard.webp") 2x);background-image: image-set(url("img/hippo%20regard.jpg") 1x,
url("img/hippo%20regard.jpg") 2x,url("img/hippo%20regard.webp") 1x,
url("img/hippo%20regard.webp") 2x);
}
.bg-lezard{
	background-image:url("img/lezard.jpg");
	background-image: -webkit-image-set(url("img/lezard.webp") 1x,
url("img/lezard.webp") 2x);background-image: image-set(url("img/lezard.jpg") 1x,
url("img/lezard.jpg") 2x,url("img/lezard.webp") 1x,
url("img/lezard.webp") 2x);
}
.bg-mountain-gorilla-juvenile{
	background-image:url("img/mountain-gorilla-juvenile.jpg");
	background-image: -webkit-image-set(url("img/mountain-gorilla-juvenile.webp") 1x,
url("img/mountain-gorilla-juvenile.webp") 2x);background-image: image-set(url("img/mountain-gorilla-juvenile.jpg") 1x,
url("img/mountain-gorilla-juvenile.jpg") 2x,url("img/mountain-gorilla-juvenile.webp") 1x,
url("img/mountain-gorilla-juvenile.webp") 2x);
}
.bg-20230523141532-e9ef5c11-xx-20v2{
	background-image:url("img/20230523141532-e9ef5c11-xx%20v2.jpg");
	background-image: -webkit-image-set(url("img/20230523141532-e9ef5c11-xx%20v2.webp") 1x,
url("img/20230523141532-e9ef5c11-xx%20v2.webp") 2x);background-image: image-set(url("img/20230523141532-e9ef5c11-xx%20v2.jpg") 1x,
url("img/20230523141532-e9ef5c11-xx%20v2.jpg") 2x,url("img/20230523141532-e9ef5c11-xx%20v2.webp") 1x,
url("img/20230523141532-e9ef5c11-xx%20v2.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */

.social-link-bric a svg{
	transition: all 0.3s ease-in-out;
}
.social-hover-fade a:hover svg{
	opacity: 0.5;
}
.social-hover-grow a:hover svg{
	transform: scale(1.2);
}
.social-hover-shrink a:hover svg{
	transform: scale(0.9);
}
.social-hover-shadow a:hover svg{
	filter: drop-shadow(0px 6px 2px rgba(0,0,0,0.3));
	overflow: visible;
}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	h1{
		font-size:60px;
	}
	h3{
		font-size:32px;
	}
	h2{
		font-size:34px;
	}
	h4{
		font-size:20px;
	}
	p{
		font-size:14px;
	}
	.mask-circle-left{
		width:250%;
		left:-800px;
	}
	.destination-slide{
		width:300px;
		height:450px;
	}
	.btn-more{
		left:60px;
		right:60px;
	}
	.button-text{
		font-size:15px;
	}
	.img-style{
		width:80px;
	}
	.main-cta{
		margin-top:100px;
		margin-bottom:50px;
	}
	.description-text{
		text-align:left;
	}
	.section{
		padding-top:50px;
		padding-bottom:50px;
	}
	.avantage-titre{
		padding-right:0px;
	}
	.destination-title{
		font-size:100px;
	}
	.h2big{
		font-size:46px;
	}
	.experience-img-pair{
		top:30px;
		width:45%;
		left:30px;
		position:relative;
	}
	.experience-img-impair{
		width:45%;
		left:-50px;
		top:30px;
		position:relative;
	}
	.experience-desc-impair{
		width:55%;
	}
	.experience-desc-pair{
		width:55%;
	}
	.h2small{
		font-size:28px;
	}
	h5{
		font-size:18px;
	}
	.bg-adjust{
	}
	.img-logo-gns--style{
		width:200px;
	}
	.buton-map{
		font-size:16px;
		top:140px;
	}
	.top{
		height:50px;
	}
	.destination-header{
		margin-top:0px;
	}
	
}

@media (max-width: 767px){
	h1{
		font-size:42px;
	}
	h3{
		font-size:24px;
	}
	.button-text{
		font-size:15px;
	}
	.main-cta{
		margin-bottom:20px;
		margin-top:100px;
	}
	.mask-circle-left{
		left:0px;
		width:500%;
	}
	.destination-slide{
		text-align:center;
		width:250px;
		height:375px;
	}
	h2{
		font-size:28px;
		line-height:32px;
	}
	.btn-more{
		left:40px;
		right:40px;
	}
	.section{
		padding-top:40px;
		padding-bottom:40px;
	}
	.card-dark{
		margin-bottom:20px;
	}
	.img-style{
		width:70px;
	}
	.header-content{
		margin-top:30px;
	}
	.img-2-style{
		width:50px;
	}
	.destination-title{
		font-size:70px;
	}
	.destination-abstract{
		width:70%;
	}
	.destination-header{
		height:600px;
		margin-top:0px;
	}
	.h2big{
		font-size:38px;
		line-height:46px;
	}
	.h2small{
		font-size:22px;
	}
	h4{
		font-size:18px;
	}
	.h4big{
		font-size:22px;
	}
	.experience-desc-impair{
		width:100%;
		padding-right:20px;
		padding-bottom:40px;
	}
	.experience-img-impair{
		width:60%;
		left:0px;
		top:-30px;
	}
	.experience-desc-pair{
		padding-left:20px;
		padding-bottom:40px;
		width:100%;
	}
	.experience-img-pair{
		top:-30px;
		left:0px;
		width:60%;
	}
	h5{
		font-size:16px;
	}
	.bg-adjust{
		background-position:center center;
	}
	.buton-map{
		top:105px;
	}
	.top{
		height:40px;
	}
	.taggroup{
		height:auto;
		overflow:hidden;
		margin-bottom:30px;
	}
	.tag{
	}
	.avatar{
		width:120px;
		height:120px;
	}
	
}

@media (max-width: 575px){
	h1{
		font-size:32px;
	}
	h3{
		font-size:20px;
	}
	.button-text{
		font-size:12px;
	}
	.main-cta{
		margin-top:40px;
	}
	h2{
		font-size:24px;
		line-height:25px;
	}
	h4{
		font-size:18px;
	}
	.mask-circle-left{
		width:500%;
		left:0px;
	}
	.img-style{
		width:50px;
	}
	.header-content{
		margin-top:0px;
	}
	.section{
		padding-top:30px;
		padding-bottom:30px;
	}
	.destination-slide{
		width:200px;
		height:350px;
	}
	.btn-more{
		left:15px;
		right:15px;
	}
	p{
		font-size:13px;
	}
	.destination-title{
		font-size:40px;
	}
	.destination-abstract{
		width:100%;
		padding-left:0px;
		border-width:0px 0px 0px 0px;
	}
	.destination-header{
		height:600px;
		z-index:0;
		position:relative;
		margin-top:0px;
	}
	.h2small{
		font-size:18px;
	}
	.h4big{
		font-size:18px;
	}
	.experience-img-impair{
		width:80%;
	}
	.experience-img-pair{
		width:80%;
	}
	h5{
		font-size:14px;
	}
	.h2big{
		font-size:32px;
		line-height:34px;
	}
	.img-logo-gns--style{
		width:150px;
	}
	.buton-map{
		font-size:12px;
		top:65px;
	}
	.top{
		height:50px;
		z-index:2000;
	}
	.nav{
		z-index:200;
	}
	
}

