/*   =========== GLOBAL =============*/

* {
    padding: 0;
    margin: 0;
    box-sizing: content-box;
}
.orange {
    color: #e84e0e;
}
h1,h2,h3,p,a,li, label, input {
    font-family: 'Encode Sans Semi Expanded', sans-serif;
    color: #0c3451;
}

.tel {
    font-weight: 600;
    font-size: 1.2em;
}
html,body {
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

h1 {
    font-size: 2.6em;
    font-weight: bold;
}

h2 {
    font-weight: normal;
    margin-top: 76px;
    font-size: 2.3em;
}

h3 {
    font-size: 1.3em;
}

/*   ===================== HEADER =================== */

header #mobile {
    display: none;
}

header {
    display: flex;
    background-color: #e84e0e;
    justify-content: space-between;
    padding: 85px 84px 151px 91px;
}
header a {
    color: white;
}

header .tel {
    align-self: flex-end;
}

#cordonnes {
    display: flex;
    flex-direction: column;
}

#cordonnes a:nth-child(2) {
    width: 300px;
    margin-top: 32px;
    text-align: right;
    font-size: 1.2em;
}

a.facebookLink {
	text-align:right;
}

/* ========================= SECTION DESCRIPTION ======= */

#section-description {
    display: flex;
    padding: 30px 77px 65px 91px;
}

#contenu-textuelle {
    flex-direction: column;
    margin-right: 44px;
    margin-top: 20px
}

#contenu-textuelle h3 {
    margin-top: 30px;
}
#contenu-textuelle p {
    font-weight: 501;
	line-height: 1.5em;
}
#conteneur-liste {
    margin-top: 20px;
}
.rangee {
    display: flex;
    align-items: center;
}
.rangee img{
    margin-right: 21px;
}

.conteneur-arrets {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.conteneur-arrets img {
    margin-right: 20px;
}

#contenu-images {
    flex-direction: column;
}

#contenu-images h3 {
    margin-top: 72px;
}

#contenu-images img {
    margin-top: -118px;
}

#lien-site-externe {
    display: flex;
    margin-top: 8px;
    font-weight: 501;
}

.conteneur-img-promenade {
    margin-top: 140px;
}

/* =================== SECTION PLAN ========= */
#conteneur-plan img {
    margin-top: 107px;
    width: 97%;
}
#conteneur-plan img:nth-of-type(2), #conteneur-plan img:nth-of-type(3) {
    display: none;
}
/* =================== SECTION GALLERIE ========= */
#section-gallerie h3 {
    display: flex;
    padding-left: 91px;
    margin-bottom: 20px;
}
#gallerie-rang1 img, #gallerie-rang2 img {
    margin-right: 9px;
    cursor: pointer;
} 

#gallerie-rang1 {
    display: flex;
    text-align: right;
    margin-bottom: 10px;
    overflow-x: hidden;
    margin-bottom: 20px;
}
#gallerie-rang2 {
    display: flex;
    overflow-x: hidden;
}



.conteneur-gallerie-1{
    display: flex;
    animation: defile1 25s linear infinite;
}

.conteneur-gallerie-2 {
    display: flex;
    animation: defile2 25s linear infinite;
}

@keyframes defile1 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


@keyframes defile2 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

#modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #000000e3;
}
#modal img {
    width: 38%;
}
#conteneur-plan {
    display: flex;
    justify-content: center;
}

/* ====================== SECTION CONTACT ============ */

.g-recaptcha {
    margin-bottom: 20px;
}

#section-contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*padding: 81px 20px 20px 104px;*/
    padding-top: 81px;
    padding-right: 105px;
}
#col-contact-1 {
    width: 812px;
    display: flex;
    flex-direction: column;
}
input[name="name"]{
    display: none;
}

#col-contact-1 p {
    margin-top: 30px;
}

#col-contact-1 a {
    width: 320px;
    margin-top: 32px;
    font-size: 1.3em;
}

#col-contact-1 a:last-of-type {
    margin-top: 40px;
}

form h3 {
    margin-bottom: 41px;
}

.rang-form {
    display: flex;
    margin: 15px 0;
}
.rang-form input:nth-child(2)  {
    width: 299px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.rang-form:nth-child(6) {
    padding-bottom: 30px;
}
label {
    width: 158px;
    font-weight: 600;
}

input {
    border-radius: 6px;
}

input[type="submit"] {
    background-color: #e74e0f;
    color: white;
    padding: 6px 30px 6px 30px;
    font-size: 1.4em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;

}

/* ======================= FOOTER =================== */
footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 63px;
    padding-left: 91px;
    padding-right: 70px;
    padding-top: 112px;
    font-weight: 501;
}

@media (max-width:1684px) {
    h1 {
        font-size: 2.5em;
    }
    #section-description {
        padding-right: 26px;
        padding-left: 52px;
    }
    #grand-image {
        width: 813px;
    }
    .conteneur-img-promenade img {
        width: 33%;
    }

    #modal img {
        width: 727px;
    }

    #section-contact {
        padding-right: 25px;
    }
}
@media (max-width: 1368px) {

    h1 {
        font-size: 1.7em;
    }
    h2 {
        font-size: 1.6em;
        margin-top: 46px;
    }
    h3 {
        font-size: 1.1em;
    }
    #grand-image {
        width: 619px;
    }
    #col-contact-1 {
        width: 547px;
    }
    .conteneur-img-promenade img {
        width: 32%;
    }
    .rang-form:nth-child(6) {
        padding-bottom: 15px;
    }
}
@media (max-width:1080px) {

    h3 {
        font-size: 1.3em;
    }

    header {
        padding-left: 18px;
        padding-right: 23px;
    }

    #logo1 {
        width: 405px;
    }

    #section-description {
        flex-direction: column;
    }
    #contenu-textuelle {
        order: 1;
    }
    #contenu-images {
       order: 0;
       display: flex;
       align-items: center;
    }
    #contenu-images h3 {
        margin-top: 39px;
    }
    #contenu-textuelle {
        margin-top: 81px;
    }
    #conteneur-liste {
        margin-left: 46px;
    }
    .conteneur-arrets {
        margin-top: 50px;
        justify-content: center;
        margin-right: -44px;
    }
    #section-gallerie h3 {
        padding-left: 52px;
    }
    #gallerie-rang1 img, #gallerie-rang2 img {
        width: 323px;
    }
    
    #modal img {
        width: 57%;
    }

    #conteneur-plan img {
        margin-top: 69px;
    }

    .rang-form input:nth-child(2) {
        width:234px;
    }
    form h3 {
        font-size: 1.1em;
    }
    #col-contact-1 {
        margin-top: 37px;
        padding-left: 20px;
    }
    #section-contact {
        flex-direction: column;
    }
    #col-contact-1 {
        width: unset;
        order: 1;
    }
    #col-contact-2 {
        order: 0;
    }
    form h3 {
        font-size: 1.3em;
    }
    .rang-form input:nth-child(2) {
        flex: 1;
    }
    #col-contact-2 {
        padding-left: 20px;
    }
/*   ===================== FOOTER =================== */
    footer {
        padding-left: 21px;
        padding-right: 30px;
    }    
}

@media (max-width:760px) {

    h1 {
        font-size: 1.4em;
    }
    h2 {
        font-size: 1.2em;
    }

/*   ===================== HEADER =================== */
    header {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 130px;
    }
    #logo1 {
        width: 54%;
    }
    header #mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
	header #mobile img {
		margin:0 auto;
		width: 80%;
	}
	
    header #logo1 {
        display: none;
    }
	
	a.facebookLink {
		text-align: center;
	}
	.rangee {
		
		align-items: flex-start;
	}
    #cordonnes {
        justify-content: space-between;
        margin-top: 46px;
		text-align: center;
    }

    #cordonnes a:nth-of-type(1) {
        /*display: none;*/
    }
    header .tel {
        align-self: unset;
    }
    #cordonnes a:nth-child(2) {
        width: unset;
        margin-top: unset;
        text-align: center;
        font-size: 1em;
    }
/*   ===================== DESCRIPTION =================== */

    #grand-image {
        width: 100%;
    }
    #section-description {
        padding-left: 20px;
        padding-right: 20px;
    }
    #lien-site-externe p {
        font-size: 0.9em;
    }

    .conteneur-img-promenade {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
		text-align: center;

    }

    .conteneur-img-promenade img {
        width:100%;
        margin-top: 10px;
		margin-bottom:130px;
        /*padding: 20px;*/
    }
	
	.conteneur-img-promenade img.derniereImg {
        
		margin-bottom:0;
      
    }
	
	.conteneur-img-promenade picture {
		width: 80%;
	}

    #conteneur-plan {
        flex-direction: column;
    }
    #conteneur-plan img {
        width: 98%;
    }
    #conteneur-plan img:nth-of-type(1) {
        display: none;
    }
    #conteneur-plan img:nth-of-type(2) {
        align-self: flex-end;
    }
    #conteneur-plan img:nth-of-type(2), #conteneur-plan img:nth-of-type(3) {
        display: block;
    }

/*   ===================== GALLERIE =================== */
#modal img {
    width: 81%;
}
    #gallerie-rang1 img, #gallerie-rang2 img{
        width: 242px;
    }

    #section-gallerie h3 {
        padding-left: 20px;
        padding-right: 10px;
    }

/*   ===================== FOOTER =================== */
    footer {
        font-size: 0.9em;
        flex-wrap: wrap;
        padding-top: 67px;
    }
    footer p:nth-of-type(1) {
        margin-right: 15px;
    }
}
@media (max-width:462px) { 
    #col-contact-1 a {
        font-size: 1.1em;
    }

    h1 {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.1em;
    }

    h3 {
        font-size: 1.1em;
    }
/*   ===================== HEADER =================== */
    .tel {
        font-size: 1em;
    }
    #cordonnes a:nth-child(2) {
        font-size: 0.9em;
    }
/*   ===================== DESCRIPTION =================== */

   
    #lien-site-externe p {
        font-size: 0.8em;
    }

    #conteneur-liste { 
        margin-left: 10px;
    }
    #contenu-images {
        align-items: unset;
    }
    #contenu-images h3 {
        font-size: 1em;
        margin-top: 21px;
    }
    .conteneur-img-promenade img {
        width: 87%;
    }
    #contenu-textuelle {
        margin-right: 10px;
    }
    #contenu-textuelle p {
        margin-bottom: 10px;
        font-size: 0.9em;
    }
    .conteneur-arrets {
        margin-right: -18px;
        margin-left: -10px;
    }
/*   ===================== CONTACT =================== */



    #col-contact-1 {
        width: 93%;
        padding-right: 10px;
    }
    label {
        font-size: 0.9em;
    }
    #col-contact-1 {
        padding-left: 20px;
    }
    .rang-form {
        flex-direction: column;
    }
    .rang-form input:nth-child(2) {
        width: unset;
    }
    .rangee {
        margin-bottom: 13px;
    }


/*   ===================== FOOTER =================== */
footer {
    padding-bottom: 20px;
}
}