@font-face {
    font-family: 'satisfyregular';
    src: url('../fonts/satisfy-regular-webfont.woff2') format('woff2'),
         url('../fonts/satisfy-regular-webfont.woff') format('woff');
    font-display:swap;
    font-weight: normal;
    font-style: normal;
}


*{ margin: 0px; padding: 0px; box-sizing: border-box;}

body{
    background-color: rgb(255, 255, 255); 
    width:100%; 
    font-family: 'Raleway', sans-serif;
}

/* HEADER */
header{ 
    position:fixed;
    width: 100vw;
    z-index: 9999;
}
.heading{
    position:relative;
    background: url("../images/heading.jpg") no-repeat  fixed;
    background-position: center -30vh;
    background-size: cover;
    height: 70vh;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0px 0px 5px 0px rgb(0, 0, 0); 
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading-text{
    padding:2vw;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.033);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.312); 
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 1s ease-in;
}
.heading-text a{
    text-decoration: none;
    font-size:2em;
    font-family: 'satisfyregular';
    color: rgb(252, 252, 252);
    text-shadow: rgb(58, 58, 58) 2px 1px 3px;
}
.maNav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:7vh;
    font-family: 'Raleway', sans-serif;
}
.maNav.scroll{
    background-color: rgb(255, 255, 255);
}
.sections li{
    list-style: none;
}
.maNav .sections li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: rgb(58, 58, 58) 2px 1px 5px;
    letter-spacing: 2px;
    font-size: 18px;
}
.maNav.scroll .sections li a{
    text-shadow: none;
    color:rgb(54, 54, 54);
}
.maNav .sections li a:hover{
    text-shadow: rgb(178, 178, 178) 1px 1px 1px;
}
.maNav.scroll .logo a{
    color: rgb(0, 0, 0);
    text-shadow: rgb(134, 134, 134) 2px 1px 5px;
}
.maNav.scroll .burger div{
    background-color: rgb(54, 54, 54);
}
.logo {
    padding-left: 10%;
    z-index:90;
}
.logo a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: rgb(0, 0, 0) 2px 1px 5px;
    letter-spacing: 5px;
    font-size: 27px;
    font-weight: 700;
}
.sections{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding:0 1% 0 20%;
}
.dropmenu{
    display: none;
    position: absolute;
    max-width: 100%;
    z-index: 1;
    padding-top:5px;
}
.dropmenu.scroll{
    background-color: rgb(255, 255, 255);
}
.dropmenu a{
display: block;
padding: 4px 12px;
}
.dropdown:hover .dropmenu{
display: block;
}

.burger{
    display:none;
    padding-right:10%;
    cursor:pointer;
}
.burger div{
    width: 24px;
    height: 3px;
    background-color: rgb(206, 206, 206);
    margin:5px;
    border-radius: 30%;
    transition: all 0.5s ease;
}
.toggle .l1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .l2{
    opacity:0;
}
.toggle .l3{
    transform: rotate(45deg) translate(-5px, -6px);
}


/* A PROPOS */
.about{
    padding-top:7vh;
    height:100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
}
.ident{
    padding:1% 3% 2% 3%;
    float:left;
    width: 45%;
    height : 100%;
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    line-height: 1.5;
}
.ident p.ident-title{
    font-size: 1.6em;
    letter-spacing: 2px;
}
.ident p{
    text-align: justify;
}
.ident .mobile-hide{
    display:block;
}
.ident .mobile-show{
    display: none;
}
.ident .plus-button{
    margin: 10px auto 0px auto;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    color: #24292E;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    line-height: 20px;
    list-style: none;
    padding: 1% 5%;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    text-align: center;
    text-decoration: none;
}
.ident .plus-button:hover{
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
}
.ident .plus-button:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}
.ident .plus-button:focus {
    outline: 1px transparent;
}
/* MINI GALLERY */
.container-minigall{
    float: right;
    width: 55%;
    height : 95%;
    min-height: 600px;
    overflow: hidden;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
.mini-gallery{
    position:relative;
    overflow: hidden;
    height:100%;
    width: 100%;
}
.mini-gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
@keyframes display {
    0% {
      transform: translateX(200px);
      opacity: 0;
    }
    10% {
      transform: translateX(0);
      opacity: 1;
    }
    20% {
      transform: translateX(0);
      opacity: 1;
    }
    30% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-200px);
      opacity: 0;
    }
}
.mini-gallery > img {
    position:absolute;
    top: 0;
    left: calc(1px);
    opacity: 0;
    animation: display 20s infinite;
}
  
  img:nth-child(2) {
    animation-delay: 4s;
  }
  img:nth-child(3) {
    animation-delay: 8s;
  }
  img:nth-child(4) {
    animation-delay: 12s;
  }
  img:nth-child(5) {
    animation-delay: 16s;
  }

/*GALLERIE*/
.galerie{
    padding-top:7vh;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}
.galerie .row-section{
    padding: 40px 5vw;
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    background-color: rgb(250, 250, 250);
}
.galerie .row-section.paire{
    text-align: right;
    flex-direction: row-reverse;
    background-color: rgb(255, 255, 255);
}
.galerie .row-section div{
    width: 600px;
    height:350px;
}
.galerie .row-section .section-image{
    background-color: rgb(0, 0, 0);
    box-shadow: 10px 10px 10px 0px rgba(93, 92, 92, 0.714); 
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   
}
.galerie .row-section .section-image .secimg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galerie .row-section .section-desc{
    padding:3% 0 3% 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    color: #303030;
}
.galerie .row-section .section-desc h2{
    letter-spacing: 2px;
    font-size: 1.5em;
}
.galerie .row-section .section-desc p{
    font-size:1em;
    line-height: 150%;
}
.galerie .row-section .section-desc p a{
    font-weight: 550;
    color: #745959;
    text-decoration: none;
}
.galerie .row-section .section-desc p a:hover{
    border-bottom: 1px solid;
}
.galerie .row-section.paire .section-desc{
    padding:3% 3% 3% 0;
}
.galerie .row-section .section-desc .desc-button{
    margin: 0 auto;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    color: #24292E;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    line-height: 20px;
    list-style: none;
    padding: 1% 5%;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    text-align: center;
    text-decoration: none;
}
.galerie .row-section .section-desc .desc-button:hover{
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
}
.galerie .row-section .section-desc .desc-button:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}
.galerie .row-section .section-desc .desc-button:focus {
    outline: 1px transparent;
}
  

/*CONTACT*/
.contact{
    padding:11vh 0;
    margin-top:30px;
    background: url("../images/slider/islande_avion-min.jpg") no-repeat center fixed;
    background-size: cover;
    background-image: center;
    display:flex;
    align-items: center;
    justify-content: space-between; 
}
.contact .container-contact{
    width:38%;
    color:rgb(35, 35, 35);
    background-color: rgba(148, 148, 148, 0.826);
    backdrop-filter: blur(5px);
    padding:20px;
    margin-left:7%;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px 2px rgb(63, 63, 63); 
    font-size:1.3rem;
}
.contact .container-contact .form-title{
    font-size:1.5rem;
    letter-spacing: .2rem;
    padding-bottom: 15px;
}

form {
    padding-top:10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 83px;
}
form .form-control {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
form input, form textarea {
    background: #ffffffa8;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
}
form input {
    height: 45px;
    padding-left: 10px;
}
form textarea {
    height: 130px;
    padding: 15px 0px 0px 10px;
    font-family: 'Raleway', sans-serif;
    resize: none;
}
form input:focus, form > textarea:focus {
    box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.652);
    outline:none;
}
form p {
    width: 100%;
    display: flex;
    text-align: justify;
    justify-content: center;
    align-items: flex-start;
    font-size: .9rem;
}
form p input {
    width: 20px;
    height: 20px;
    margin-right:7px;
}

form button {
    font-family: 'Raleway', sans-serif;
    display:block;
    margin:auto;
    margin-top:20px;
    width: 40%;
    height: 45px;
    font-weight: 700;
    font-size: 1rem;
    background: #efefef;
    border: rgba(48, 48, 48, 0.5) solid 1px;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.144);
    color: #373737;
}
form button:hover {
    background: #e8e8e8;
    box-shadow: 2px 4px 2px 0px rgba(0, 0, 0, 0.584);
}

.form-error{
    border:2px solid rgba(158, 0, 0, 0.712);
}
.check-error{
    text-decoration: underline;
}
.checkbox-error {
    box-shadow: 3px 3px 1px 0px rgba(158, 0, 0, 0.712);
}
.info-box  {
    display:flex;
    justify-content: space-between;
    gap:20px;
    border-radius:5px;
    padding:10px;
}
.info-box.success{
    background-color: rgba(142, 213, 142, 0.435);
    color:rgb(13, 133, 21);
}
.info-box.error{
    background-color: rgba(255, 0, 0, 0.205);
    color:rgb(133, 13, 13);
}
.info-box .close-button {
    cursor: pointer;
    font-weight: 600;
    color:rgb(35, 35, 35)
}
.hidden{
    display:none;

}


.contact .container-tarif{
    width:45%;
    padding:2% 0 2% 2%;
    background-color: rgba(255, 255, 255, 0.859);
    backdrop-filter: blur(5px);
    color: rgb(54, 54, 54);
    font-size:1.3rem;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    
}
.container-txt-tarif{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:30px 0;
}
.container-txt-tarif p{
    text-align: center;
}
.container-txt-tarif .up{
    font-size:2rem;
    text-align: left;
}
.container-btn-tarif{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-btn-tarif .btn {
    width: 60%;
    line-height: 50px;
	text-align: center;
	text-decoration: none;
    font-size:1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
	color: rgb(79, 79, 79);
	transition: all 0.4s;
	position: relative; 
}
.container-btn-tarif .btn span {
	transition: all 0.3s;
}
.container-btn-tarif .btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: rgb(54, 54, 54);
	border-bottom-color: rgb(54, 54, 54);
	transform: scale(0.1, 1);
}
.container-btn-tarif .btn:hover span {
	letter-spacing: 2px;
}
.container-btn-tarif .btn:hover::before {
	opacity: 1;	
	transform: scale(1, 1);	
}
.container-btn-tarif .btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.3s;
	background-color: rgba(118, 118, 118, 0.186);
}
.container-btn-tarif .btn:hover::after {
	opacity: 0;	
	transform: scale(0.1, 1);
}

 /*MENTIONS LEGALES*/
 .mentionslegales{
    padding:8vh 2vw 30px 2vw;
    width: 100%;
    min-height: 75vh;
    font-size:.8rem;
    color:rgb(92, 92, 92);
 }
p.ml-title{
    font-size:1.3rem;
    font-weight: 700;
    padding: 50px 0;
    text-align: center;
}
p.ml-subtitle{
    font-size:.9rem;
    font-weight: 600;
    margin-top: 10px;
}
p a{
    color:#745959;
    text-decoration: none;
}

/*FOOTER*/
footer{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    color:rgb(77, 77, 77);
    margin:7px 0;
}
footer div{
    min-width: 30%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:3%;
}
footer a{
    text-decoration: underline;
    color:rgb(110, 110, 110);
}

footer div.icons-contact{
    width: 30%;
    height: 55px;
}
footer div.icons-contact svg{
    width:20%;
    height: 100%;
}
footer div.icons-contact svg a.icon{
    transition: transform 0.2s;
}
footer div.icons-contact svg a.icon:hover{
    transform: scale(1.1);
}


@media screen and (max-width:1150px) {
    .about{
        flex-direction: column-reverse;
        padding-top:7vh;
        padding-bottom: 0;
        padding-right:3%;
        padding-left:3%;
        height:auto;
        min-height: 0;
    }
    .ident{
        width: 100%;
        height:50%;
        gap :10px;
        margin-top:20px;
    }
    .ident h6{
        font-size: 1.2em;
    }
    .ident p{
        text-align: center;
    }
    .ident .mobile-hide{
        display:none;
    }
    .ident .mobile-show{
        display: block;
    }
    .container-minigall{
        width: 100%;
        height: 250px;
        min-height:200px;
    }

}
@media screen and (max-width:820px) {
    body{
        overflow-x:hidden;
    }
    .maNav{
        height:8vh;
    }
    .sections{
        position: absolute;
        right : 0px;
        height: 45vh;
        top:0vh;
        padding: 0;
        background-color: rgba(255, 255, 255, 0.990);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        padding-top:4vh;
    }
    .maNav .sections li a{
        text-shadow: none;
        color:rgb(54, 54, 54);
    }
    .maNav .sections li{
        opacity:0;
        color: rgb(88, 88, 88);
    }
    .burger{
        display:block;
    }
    .heading{
        background-position: center center;
    }
    .heading-text h1{
        font-size:1.5em;
    }
    .dropdown:hover .dropmenu{
        display: none;
    }

    /*A PROPOS*/
    .about{
        flex-direction: column-reverse;
        padding-top:7vh;
        padding-bottom: 0;
        padding-right:3%;
        padding-left:3%;
        height:auto;
        min-height: 0;
    }
    .ident{
        width: 100%;
        height:50%;
        gap :10px;
        margin-top:20px;
    }
    .ident h6{
        font-size: 1.2em;
    }
    .ident p{
        text-align: center;
    }
    .ident .mobile-hide{
        display:none;
    }
    .ident .mobile-show{
        display: block;
    }
    .container-minigall{
        width: 100%;
        height: 250px;
        min-height:200px;
    }

    /*GALERIE*/
    .galerie .row-section{
        flex-direction: column;
        padding:0px 0;
    }
    .galerie .row-section.paire{
        flex-direction: column;
    }
    .galerie .row-section div{
        width: 100%;
        text-align: center;
    }
    .galerie .row-section .section-desc{
        background-color: rgb(245, 245, 245);;
        padding:10% 10px;
    }
    .galerie .row-section.paire .section-desc{
        padding:10% 10px;
    }

    /*CONTACT*/
    .contact{
        margin-top:0px;
        flex-direction: column;
    }
    .contact .container-contact{
        width: 90%;
        margin-left:0;
    }
    form button {
        width: 70%;
        height: 35px;
        font-size: 1rem;
    }
    .contact .container-tarif{
        margin-top:10vh;
        padding:4% 0 0 0;
        width: 90%;
        flex-direction: column;
    }
    .container-txt-tarif{
        width: 100%;
        text-align: center;
        padding:0 5%;
    }
    .container-btn-tarif{
        width: 100%;
        padding:8% 0;
    }

    /* FOOTER */
    footer{
        margin:0;
        flex-direction: column-reverse;
    }
    footer div{
        min-width: 100%;
        max-width: 100%;
        padding: 20px 0 10px 0;
    }
    footer div.icons-contact{
        width: 50%;
        height:80px;
    }

}



.nav-active{
    transform: translateX(0%)
}

@keyframes sectionsFade{
    from{
        opacity:0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


