@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins',sans-serif;
}
::selection{
  color: #ffffff;
  background: #000000;
}

.img{
  background: url('Photos_Galerie/7.jpeg')no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  
}
.img::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.center{
	padding-top: 130px;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.center .title{
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}
.center .sub_title{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.center .btns{
  margin-top: 20px;
}
.center .btns button{
  height: 55px;
  width: 170px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid white;
  font-size: 20px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.center .btns button:first-child{
  color: #fff;
  background: none;
}
.btns button:first-child:hover{
  background: white;
  color: black;
}
.center .btns button:last-child{
  background: white;
  color: black;
}

.contact-section{
	background: url('NeuchatelCantonPaysage.jpg')no-repeat;
	background-size: cover;
	padding: 40px 0;
	
}

.logo-image{
    width: 300px;
    height: 96px;
    
}

.transbox {
  margin: 10px auto;
  background-color: #F1F1F1;
  opacity: 0.92;
  padding:10px;
  border-radius:30px;
  max-width: 650px;
}

.contact-section h1{
	text-align: center;
	color: #000000;
}



.border{
	width: 200px;
	height:10px;
	background: #016e8d;
	margin: 10px auto;
	
}

.contact-form{
	max-width: 600px;
	margin: auto;
	padding: 0 10px;
	overflow: hidden;
	
}

.contact-form-text{
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 16px 0;
	border: 0;
	background: #ffffff;
	border-radius:10px;
	padding: 20px 40px;
	outline: none;
	color: #000000;
	transition: 0.5s;
}

.contact-form-text:focus{
	box-shadow: 0 0 4px 4px #679AA8;
}
textarea.contact-form-text{
	resize: none;
	height: 120px;
}

.contact-form-btn{
	float: center;
	border: 0;
	background: #016e8d;
	color: #fff;
	padding: 12px 50px;
	border-radius: 10px;
	cursor: pointer;
	transition:0.5s;
}

.contact-form-btn:hover{
	background: #07D3FC;
}
	
.sticky-footer{
    position: sticky;
    top: 100%;
}

footer p{
    padding:0;
    font-size: 0.8em;
    color: hsla(0, 50%, 100%, 0.35);
    margin: 1em 0;
    font-size: 1rem;
}
footer ul{
    list-style: none;
    display: flex;
    margin: 1em 0; 
}
footer ul li a{
    padding: 1em; 
    text-decoration: none;
    color: rgba(255, 255, 255, 0.904);
    transition: 100ms;
}
footer ul li a:hover{
    color: var(--primary);
}

footer{
    width: 100%;
    background: #016e8d;
    color: #fff; 
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

@media screen and (max-width: 660px){
	footer ul{
		display: block;
	}
}
	  
section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    padding-top: 100px;
	padding-bottom: 100px;
}

/*le menu principal*/
	
.branding-logo{
    text-decoration: none;
    font-size: calc(0.8rem + 1vw);
    color: #000000;
}

.navbar{
    display: flex;
	z-index:10;
    justify-content: space-between;
    align-items: center;
}
.menu{
    display: flex;
	z-index:10;
}
.menu li{
    list-style: none;
}
.menu li a{
    display: block;
    text-decoration: none;
    font-size: 1.5rem;
    color: white; 
    padding: 1em 1.5em; 
    color: #000000;
    transition: 300ms all ease-in-out;
}

/* setting links */
.menu > li:hover>a, .submenu > li:hover > a{
    background-color: #016e8d;
    color: white;
}
.menu > li:hover > a{
    background-color: #016e8d;
}

/* 
**************RESPONSIVE*********
*/
@media only screen and (max-width: 64em){
    /* Adjusting Overall Menu Sizes */
    .menu li a{
        font-size: 1.2rem;
        padding: 1em 1.2em; 
    }
}

@media only screen and (max-width: 50em){
.hamburger{
    width: 2em; 
    height: 0.25em; 
    display: block;
    background: #000000;
    position: relative;
    cursor: pointer;
    transition: 0.2s transform ease-in-out ;

}
.hamburger::after, .hamburger::before{
    content: '';
    position: absolute;
    left: 0; 
    background: inherit;
    width: inherit;
    height: inherit;
    transition: 0.2s transform ease-in-out ;
}
.hamburger::after{
    top: 0.65em; 
}
.hamburger::before{
    bottom: 0.65em; 
}

.close::after, .close::before{
    top: 0;
    transition: 0.2s transform ease-in-out ;
}
.close{
    transform: rotate(45deg);
}
.close::after{
    transform: rotate(-90deg);
}

/* Positioning Menu */
    header{
        position: relative;
        padding: 1.5em 2em; 
    }
    .navbar{
        align-items: center;
    }
    .menu{
        flex-flow: column;
        position: absolute;
        top: 4.55em;
        left: 0; 
        right: 0; 
        height: 100vh;
        background: #ffffff;
        /* hide the menu initially
        */
            opacity: 0;
            transform: scaleY(0);
            transform-origin: top center;
            transition: 200ms transform 
            cubic-bezier(.36,.4,.42,1.48) 100ms, 
            100ms opacity ease-in-out;
    }
   
/* menu & submenu links styling */
    .menu > li > a{
        font-size: 1.5rem;
        color: dark;
    }
    /* Reveal Menu */
    input[type='checkbox']:checked + .menu{
        position: absolute;
        opacity: 1;
        transform: scaleY(1);
    }
}

.text-image-right {
	display: flex;
	justify-content: center;
	margin: 20px;
}
  
.text-image-right .img {
	max-width:500px;
	max-height:600px;
	width: auto;
	height: auto;
    margin: 0px 60px 0 0;
	border-radius:10px;
}
.text-image-right .txt {
    width: 46%;
	margin: 0px 60px 10 0;
    @media (max-width: 620px) {
      width: 100%;
	  
    }
}		

@media only screen and (max-width: 50em){
	.text-image-right {
		display: block;
		justify-content: center;
		
	}
	
	.text-image-right .img {
		max-width:300px;
		max-height:400px;
		width: auto;
		height: auto;
		margin: 0px 60px 0 0;
		border-radius:10px;
	}
	.text-image-right .txt {
		width: 100%;
		margin: 0px 60px 10 0;
		align-items:center;
		
	}	
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
  
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 30px 30px 0;
  user-select: none;
  background-color: #EAECEE ;
  opacity: 0.8;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 30px 0 0 30px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

.container_photo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.container_photo .heading{
  width: 50%;
  padding-bottom: 50px;
}
.container_photo .heading h3{
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid #222;
}

.container_photo .heading h3 span{
  font-weight: 100;
}
.container_photo .box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.container_photo .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.container_photo .box .dream img{
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
}


@media only screen and (max-width: 769px){
    .container_photo .box{
   flex-direction: column;
  }

.container_photo .box .dream{
  width: 100%;
}

}

@media only screen and (max-width: 643px){
.container_photo .heading{
  width: 100%;
}
.container_photo .heading h3{
  font-size: 1em;

}

}