.round{
  border-radius: 2%;
}

/*
.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  transition: 0.4s;
}
*/
* {
  margin: 0;
  padding: 0;
}

body{
  max-width: 100vw;
  overflow-x: hidden;
  /* Full height */
  height: 100%;
  background-position: center;
  /* Center and scale the image nicely

  background-repeat: no-repeat;
  background-size: cover;
*/
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;

}

    /*----------------contents css ---------------------------------------*/
.subtitle{
  text-decoration: underline;
}

.longtext{
  color: white;
}

.white{
  color: white;
}
.linktxt{
  color: white;
  text-decoration:underline;
}
.linkpng-xlarge{
  width: 2%;
}
.linkpng-large{
  width: 2%;
}
.linkpng-small{
  width: 5%;
}

.title {
  font-weight: bold;
  color: #fff;
  font-size: 64px;
}




  .xl-map .mapouter{
    float: right;
  }

  .med-sm-padding  {
    padding-left: calc(50vw - 220px);
}

    /*----------------loader css ---------------------------------------*/



.loader {
  position: fixed;
  z-index: 100;
  height:100%;
  width: 100%;
  background-color: white;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  }

.loader img{
  height: 100px;
}

.loader.hidden{
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut{
 100%{
  opacity: 0;
  visibility: hidden;
 }
}
/*-------Collapsible pannel-----*/
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: "\f078";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-family: 'Font Awesome 5 Pro';

}

.active:after {
  content: "\f077";
}

.collapsible-content {
  padding: 0 5%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/*----------------desktop header css ---------------------------------------*/

#nav{
  position: fixed;
  background: white;
  padding: 0 30px;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;

}
#nav a{
font-weight: 500;
font-size: calc(7px + (20 - 7) * ((100vw - 300px) / (1600 - 300)));
color: black;
}

#nav a:hover{
text-decoration: none;
color: #316a40;
}

.hoverlg .dsk_logo{
height: 150px;
margin-top: 95px;
z-index: 9999;
}


.hoverlg img:hover{
opacity: 0.5;
}


.dropbtn {
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {color: grey;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: white; color:grey;}



/*----------------desktop socials css ---------------------------------------*/

.socials{
  z-index: 20;
  bottom: 20px;
  position: fixed;
  margin-left: 5%;
}

.socials a {
color: white;
}

.socials a:hover {
color: #316a40;
}




/* --------------------------------- mobile header css -------------------------- */




nav{
  height: 70px;
  width: 100%;
  background: white;
  position: fixed;
  z-index: 9999;
}

.mbl_logo{
  height: 7em;
  position: absolute;
  right: 5vw;
  top: 15px;
  z-index: 9999;
}

.menu-box{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 10px;
}

.menu-box .toggler{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  opacity: 0;
  cursor: pointer;
}

.menu-box .hamburger {
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-box .hamburger > div{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.menu-box .hamburger > div:before,
.menu-box .hamburger > div:after{
 content: '';
 position: absolute;
 z-index: 1;
 top: -10px;
 width: 100%;
 height: 2px;
 color: black;
 background-color: black;
}


.menu-box .hamburger > div:after{
  top: 10px;
}

.menu-box .toggler:checked + .hamburger > div{
  transform: rotate(135deg);
}

.menu-box .toggler:checked + .hamburger > div:before,
.menu-box .toggler:checked + .hamburger > div:after{
  top:0;
  transform: rotate(90deg);
}

.menu-box .toggler:checked:hover + hamburger > div{
  transform: rotate(225deg);
}




.menu-box .toggler:checked ~ .menu{
  visibility: visible;
}

.menu-box .toggler:checked ~ .menu > div{
  transform: scale(1)

}

.menu-box .toggler:checked ~ .menu > div > div{
  opacity: 1;
  transition: opacity 0.4s ease;

}

.menu-box .menu{
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.menu-box .menu > div{
  background:rgba(0,0,0, 0.8);
  border-radius: 50%;
  height: 400vw;
  width: 400vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}


.menu-box .menu > div > div{
  text-align: center;
  max-height: 100vh;
  max-width: 90vw;
  opacity: 0;
  transition: opacity 0.4s ease;

}

.menu-box .menu li{
  list-style: none;
  color: white;
  font-size: 0.5em;
}

.menu-box .menu a{
  font-size: 3em;
  text-decoration: none;
  color: white;
  transition: color 0.4s ease;

}

.menu-box .menu a:hover{
  color: #316a40;
}

.sub-nav{
    padding-top: 100px;
    text-align: center
}
.sub-nav a{
  padding-left: 1vw;
  color: white;

}

.sub-nav a:hover{
  color: #316a40;
  text-decoration: none;
}


/* --------------------------------- footer -------------------------- */
.highlight{
  background-color: black:
}
.footer  {
  text-align: center;
  color: white;
  bottom: 0;
  font-size: 10px;
  z-index: 1;
}
.overlay {
    position: static;
    transition: all 1s;
    z-index: 4;
}

.overlay:after {
    content: '\A';
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.overlay:hover:after {
    opacity: 1;
}
.overlay2 {
    position: static;
    transition: all 1s;
    z-index: 4;
}

.overlay2:after {
    content: '\A';
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(255,255,255,0.5);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.overlay2:hover:after {
    opacity: 1;
}
.carte1{
  margin-top: 11%;
  background-color: #rgb(0, 0, 0);
  background-image: url(/img/zambie-3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  align-items: center;
  margin-left: 30%;

}
.cartelg1{
  margin-top: 11%;
  background-color: #rgb(0, 0, 0);
  background-image: url(../img/zambie-3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  align-items: center;
  margin-left: 15%;

}
.cartesm1{
  margin-top: 11%;
  background-color: #rgb(0, 0, 0);
  background-image: url(../img/zambie-3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  align-items: center;

}
.carte2{
  margin-top: 13%;
  margin-left: 30%;
  background-color: #rgb(0, 0, 0);
  background-image: url(../img/zambie-3.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;

}
.carte3{
  margin-top: 13%;
  margin-left: 60%;
  background-color: #rgb(0, 0, 0);
  background-image: url(../img/sunset-lake.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;

}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}


.carte1:hover{
	-webkit-animation: scale-up-center 0.2s ease-in-out both;
	        animation: scale-up-center 0.2s ease-in-out both;
}
.carte1:hover .soustitre1,
.carte1:focus .soustitre1 {
  opacity: 1;
  -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
.carte2:hover{
	-webkit-animation: scale-up-center 0.2s ease-in-out both;
	        animation: scale-up-center 0.2s ease-in-out both;
}
.carte2:hover .soustitre2,
.carte2:focus .soustitre2 {
  opacity: 1;
  -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
.carte3:hover{
	-webkit-animation: scale-up-center 0.2s ease-in-out both;
	        animation: scale-up-center 0.2s ease-in-out both;
}
.carte3:hover .soustitre3,
.carte3:focus .soustitre3 {
  opacity: 1;
  -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}

.carte{
   position: absolute;
   align-items: flex-end;
   overflow: hidden;
   width: 25%;
   text-align: center;
   border-radius: 2%;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
   z-index: 10;
   width: 20%;
   height: 65%;

}
.cartelg2{
   position: absolute;
   align-items: flex-end;
   overflow: hidden;
   text-align: center;
   border-radius: 2%;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
   z-index: 10;
   width: 50%;
   height: 65%;

}
.cartesm2{
   position: absolute;
   align-items: flex-end;
   overflow: hidden;
   text-align: center;
   border-radius: 2%;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
   z-index: 10;
   width: 80%;
   height: 65%;

}

.cartes{
 	 display: grid;
 	 grid-gap: 1rem;
 	 padding: 1rem;
 	 margin: 0 auto;
   padding-left: 10%;
 	 font-family: var(--font-sans);
	 display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 100;
    text-align: center;
}
.contenu11{
  color: white;
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
   padding: 1rem;
   z-index: 0;
   opacity: 0
   z-index: 20;
}


.titre{
   font-size: 1.3rem;
   font-weight: bold;
   line-height: 1.2;
   z-index: 12;
   position: relative;
}
.titre2{
   font-size: 1.3rem;
   font-weight: bold;
   line-height: 1.2;
   z-index: 12;
   position: relative;
   color: white;
}
.soustitre1{
   font-size: 1.125rem;
   font-style: italic;
   line-height: 1.35;
   z-index: 12;
   opacity: 0;
   -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
.soustitrelg{
   font-size: 1.125rem;
   font-style: italic;
   line-height: 1.35;
   z-index: 12;

}
.soustitre2{
  color: white;
   font-size: 1.125rem;
   font-style: italic;
   line-height: 1.35;
   z-index: 12;
   opacity: 0;
   -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}
.soustitre3{
   font-size: 1.125rem;
   font-style: italic;
   line-height: 1.35;
   z-index: 12;
   opacity: 0;
   -webkit-transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-o-transition: 0.25s all ease-in-out;
	transition: 0.25s all ease-in-out;
}

.bouton{
   cursor: pointer;
   margin-top: 75%;
   padding: 6% 12%;
   font-size: 0.65rem;
   font-weight: bold;
   letter-spacing: 0.025rem;
   text-transform: uppercase;
   color: white;
   background-color: black;
   border: none;
   z-index: 20;
}
.boutonlg{
   cursor: pointer;
   margin-top: 60%;
   padding: 6% 12%;
   font-size: 0.65rem;
   font-weight: bold;
   letter-spacing: 0.025rem;
   text-transform: uppercase;
   color: white;
   background-color: black;
   border: none;
   z-index: 20;
}
.boutonsm{
   cursor: pointer;
   padding: 6% 12%;
   margin-top: 80%;
   font-size: 0.65rem;
   font-weight: bold;
   letter-spacing: 0.025rem;
   text-transform: uppercase;
   color: white;
   background-color: black;
   border: none;
   z-index: 20;
}
@media (min-height: 100px)(max-height: 900px): {
  .boutonsm{
    margin-top: 100%;
  }
 }
 @media (min-height: 800px): {
   .boutonsm{
     margin-top: 110%;
   }
  }

 .bouton:hover {
	 background-color: #0d0d0d;
}
 .bouton:focus {
	 outline: 1px dashed yellow;
	 outline-offset: 3px;
/* --------------------------------- cards XL -------------------------- */

@import url('https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap');
 :root {
	 --d: 700ms;
	 --e: cubic-bezier(0.19, 1, 0.22, 1);
	 --font-sans: 'Rubik', sans-serif;
	 --font-serif: 'Cardo', serif;
}

.card {
 position: relative;
 display: flex;
 align-items: flex-end;
 overflow: hidden;
 padding: 1rem;
 width: 100%;
 text-align: center;
 color: whitesmoke;
 background-color: whitesmoke;
 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
.card:nth-child(1){
 background-image: url("../img/sunset-lake.jpg");
 background-position: center;
 background-size: cover;
}
.card:nth-child(2){
 background-image: url("../img/newspaper.jpg");
 background-position: center;
 background-size: cover;
}
.card:nth-child(3){
 background-image: url("../img/artwork/africa-collage.jpg");
 background-position: center;
 background-size: cover;
}
.card:nth-child(4){
 background-image: url(https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
 background-position: center;
 background-size: cover;
}

  .page-content {
 	 display: grid;
 	 grid-gap: 1rem;
 	 padding: 1rem;
 	 max-width: 1024px;
 	 margin: 0 auto;
 	 font-family: var(--font-sans);

 }
 .card {
   position: relative;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   padding: 1rem;
   width: 100%;
   text-align: center;
   color: whitesmoke;
   background-color: whitesmoke;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
 }

  .card:nth-child(1):before {
 	 background-image: url("../img/sunset-lake.jpg");
 }
  .card:nth-child(2):before {
 	 background-image: url("../img/newspaper.jpg");
 }
  .card:nth-child(3):before {
 	 background-image: url(https://images.unsplash.com/photo-1545243424-0ce743321e11?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
 }
  .card:nth-child(4):before {
 	 background-image: url(https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
 }
  .content {
 	 position: relative;
 	 display: flex;
 	 flex-direction: column;
 	 align-items: center;
 	 width: 100%;
 	 padding: 1rem;
 	 transition: transform var(--d) var(--e);
 	 z-index: 1;
 }
  .content > * + * {
 	 margin-top: 1rem;
 }
  .title {
 	 font-size: 1.3rem;
 	 font-weight: bold;
 	 line-height: 1.2;
 }
  .copy {
 	 font-size: 1.125rem;
 	 font-style: italic;
 	 line-height: 1.35;
 }
  .btn {
 	 cursor: pointer;
 	 margin-top: 1.5rem;
 	 padding: 0.75rem 1.5rem;
 	 font-size: 0.65rem;
 	 font-weight: bold;
 	 letter-spacing: 0.025rem;
 	 text-transform: uppercase;
 	 color: white;
 	 background-color: black;
 	 border: none;
 }

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.320) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.540) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.790) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

 .btn:hover {
	 background-color: #0d0d0d;
}
 .btn:focus {
	 outline: 1px dashed yellow;
	 outline-offset: 3px;
}
 @media (hover: hover) and (min-width: 600px) {
	 .card:after {
		 transform: translateY(0);
	}
	 .content {
		 transform: translateY(calc(100% - 4.5rem));
	}
	 .content > *:not(.title) {
		 opacity: 0;
		 transform: translateY(1rem);
		 transition: transform var(--d) var(--e), opacity var(--d) var(--e);
	}
	 .card:hover, .card:focus-within {
		 align-items: center;
	}
	 .card:hover:before, .card:focus-within:before {
		 transform: translateY(-4%);
	}
	 .card:hover:after, .card:focus-within:after {
		 transform: translateY(-50%);
	}
	 .card:hover .content, .card:focus-within .content {
		 transform: translateY(0);
	}
	 .card:hover .content > *:not(.title), .card:focus-within .content > *:not(.title) {
		 opacity: 1;
		 transform: translateY(0);
		 transition-delay: calc(var(--d) / 8);
	}
	 .card:focus-within:before, .card:focus-within:after, .card:focus-within .content, .card:focus-within .content > *:not(.title) {
		 transition-duration: 0s;
	}
}
}
