:root {
    /* colors */
    --color-background: #e5e5e5;
    --color-darker: #344D59;
    --color-medium-dark: #137C8B;
    --color-medium-light: #709CA7;
    --color-lighter: #B8CBD0;

    /* fonts */
    --text-font-size: 16px; /* Voir vidéo */
    --calligraphy-family-font: 'Tangerine', cursive;
    --default-family-font: 'Raleway', sans-serif;

    /* sizes */
    --grid-item-size: 300px;
    --grid-item-big-size: calc(10px + 2*var(--grid-item-size));

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--default-family-font);
    font-size: var(--text-font-size);
}

b {
    font-size: inherit;
}

body {
    background-color: var(--color-background);
    width: 100%;
}

header {
    width: inherit;
    z-index: 1;
}


.header-gallery h1, .header-title-only h1 {
    text-align: center;
    padding: 2em 0 1em 0;
    font-size: 3em;
    color: var(--color-darker);
}
.header-gallery .description {
    width: inherit;
    height: 15em;
    padding: 3em 1em;
    background-color: var(--color-darker);
    color: var(--color-background);
    display: flex;
    justify-content: center;
}
.header-gallery .description p {
    text-align: center;
}


/* Header Accueil */

.header-homepage {
    height: 100vh;
    /* margin-bottom: 2em; */
    /* background-color: gray; */
}
.slideShow-div {
    width: inherit;
    height: 100%;
    position: relative;
    /* background-color: #137C8B; */
}
.slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: 50% 35%;
    transition: 1.5s;
    /* background-color: #137C8B; */
}
/* .slide img {
    width: 100%;
    height: 100%;
} */
.slideShow-dot {
    width: 100%;
    position: absolute;
    text-align: center;
    transform: translateY(2em);
    z-index: 2;
}
.dot {
    width: 15px;
    height: 15px;
    margin: 0 2px;
    background-color: var(--color-background);
    border: 1px solid var(--color-lighter);
    border-radius: 50%;
    display: inline-block;
    transition: border-color 0.6 ease;
}
.dot-selected {
    border-color: var(--color-darker);
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 6s;
    animation-name: fade;
    animation-duration: 6s;
}

@-webkit-keyframes fade {
    0% {opacity: 0.2}
    20% {opacity: 1}
    90% {opacity: 1}
    100% {opacity: 0.2}
}

@keyframes fade {
    0% {opacity: 0.2}
    20% {opacity: 1}
    90% {opacity: 1}
    100% {opacity: 0.2}
}

.text-homepage {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 2em;
    background-color: rgba(229, 229, 229,0.6);
    /* clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); */
    border-radius: 50% 50% 0 0;
    z-index: 2;
}
.text-homepage h1, .text-homepage p {
    font-size: 9em;
    font-family: var(--calligraphy-family-font);
    color: var(--color-darker);
}
.text-homepage p {
    font-size: 4rem;
    padding: 0;
}

.welcome {
    width: inherit;
    height: 45%;
    /* background-color: #137C8B; */
    position: relative;
}
.welcome p, .welcome h1 {
    height: auto;
    /* width: 100%; */
    font-family: var(--calligraphy-family-font);
    color: var(--color-darker);
    font-weight: bold;
}
.welcome p:nth-child(1) {
    font-size: 7em;
    /* font-size: 14vmin; */
    /* font-size: 9em; */
    padding-left: 4rem;
}
.welcome p:nth-child(2) {
    font-size: 4em;
    /* font-size: 7vmin; */
    /* font-size: 4.5em; */
    padding-left: 20rem;
}
.welcome h1 {
    font-size: 9em;
    /* font-size: 11vmin; */
    /* font-size: 6em; */
    /* padding-right: 20rem;
    text-align: right; */
    position: absolute;
    top: 2rem;
    right: 4rem;
}
.welcome p:nth-child(4) {
    font-size: 4em;
    /* font-size: 7vmin; */
    /* font-size: 4.5em; */
    text-align: center;
}
.scroll-down-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.scroll-down {
    height: 5%;
    width: 2em;
    margin: 0 2em;
    /* display: flex;
    justify-content: center; */
    color: var(--color-darker);
    position: relative;
    transform: translateY(-2em);
    z-index: 2;
}
.fa-chevron-down {
    position: absolute;
    font-size: 2em;
    opacity: 0;
}
.scroll-down .fa-chevron-down:nth-child(1) {
    animation: 2.5s linear 1s infinite scroll-down;
}
.scroll-down .fa-chevron-down:nth-child(2) {
    transform: translateY(-0.5em);
    animation: 2.5s linear 0.5s infinite scroll-down;
}
.scroll-down .fa-chevron-down:nth-child(3) {
    transform: translateY(-1em);
    animation: 2.5s linear infinite scroll-down;
}
@-webkit-keyframes scroll-down {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scroll-down {
    from {opacity: 0;}
    to {opacity: 1;}
}


/* ************************** */




.menu-space {
    height: calc(51.2px + 1em);
}

.main {
    width: inherit;
    padding: 0;
    z-index: 1;
}

.sacred-art {
    width: 100%;
    margin-top: 5em;
    clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 90%);
    background-color: var(--color-darker);
    padding: 5em 0;
}
.deco-art {
    width: 100%;
    clip-path: polygon(0% 0%, 100% 20%, 100% 90%, 0% 100%);
    background-color: var(--color-lighter);
    padding: 5em 0;
}
.sacred-art h2, .deco-art h2 {
    width: 100%;
    padding: 1em 0;
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    color: var(--color-background);
}
.deco-art h2 {
    color: var(--color-darker);
    padding-top: 2em;
}
.categories-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.categories-container div {
    width: 300px;
    height: 400px;
    margin: 1em;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.categories-container div img {
    width: 100%;
    height: auto;
}
.categories-container div a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.2em;
    color: var(--color-darker);
    text-decoration: none;
    background-color: rgba(229, 229, 229,0.6);
    transition: 0.3s;
    cursor: pointer;
}
.categories-container div a:hover {
    background-color: transparent;
    color: transparent;
    transition: 0.3s;
}

.categories {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5em;
    padding: 5em 3em;
    background-color: var(--color-darker);
}
.categories div {
    position: relative;
    width: 40vw;
    height: 30vw;
    overflow: hidden;
    margin: 2em;
    background-color: var(--color-background);
}
/* .categories div:nth-child(1) {
    background-image: url("./img/anges/two_angels.png");
    background-size: cover;
}
.categories div:nth-child(2) {
    background-image: url("./img/decoratif/sea.jpg");
    background-size: cover;
} */
.categories div img {
    width: 100%;
    height: auto;
    opacity: 0.2;
}
.categories div p {
    font-size: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.args {
    padding: 10em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 5px;
}
.arg {
    width: 300px;
    height: 250px;
    padding: 2em;
    margin: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
}
.artisanat {
    background-color: var(--color-lighter);
    color: var(--color-darker);
}
.surmesure {
    background-color: var(--color-medium-light);
    color: var(--color-background);
}
.commande {
    background-color: var(--color-medium-dark);
    color: var(--color-background);
}
.args hr {
    width: 1px;
    height: 100px;
    margin: 0 1em;
    border-color: rgba(184,203,208,0.4);
}
.arg h3 {
    font-size: 2em;
    text-align: center;
}
.arg h3 span {
    font-weight: normal;
    font-size: 1em;
}
.arg p {
    font-size: 1.2em;
    text-align: center;
}
.artisanat p {
    height: 100px;
}
.surmesure ul {
    margin: 1em;
}
.surmesure li {
    font-size: 1.2em;
}
.commande a {
    width: 80%;
    text-decoration: none;
    color: var(--color-darker);
}
.commande div {
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    background-color: var(--color-lighter);
    border: 1px solid var(--color-medium-dark);
    font-size: 1.2em;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}
.commande div:hover {
    background-color: var(--color-medium-light);
    color: var(--color-background);
    border: 1px solid var(--color-background);
    cursor: pointer;
    transition: 0.3s;
}
.quotation {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10em;
    color: var(--color-darker);
}
.quotation p .fa-quote-left:nth-child(1) {
    position: absolute;
    font-size: 1em;
    left: 1em;
    top: -0.5em;
}
.quotation p .fa-quote-right:nth-child(2) {
    position: absolute;
    font-size: 1em;
    right: 1em;
    bottom: -0.5em;
}
.quotation p {
    width: 80%;
    padding: 2rem;
    background-color: rgba(184,203,208,0.4);
    color: var(--color-darker);
    text-align: center;
    border-radius: 50px;
    font-family: var(--calligraphy-family-font);
    font-size: 4em;
    position: relative;
}
/* .quotation::before {
    content: '"';
    font-size: 150px;
    font-family: 'Sorts Mill Goudy', serif;
    font-style: italic;
    font-weight: normal;
    position: absolute;
    top: -0.3em;
    left: 2em;
}
.quotation::after {
    content: '"';
    font-size: 150px;
    font-family: 'Sorts Mill Goudy', serif;
    font-style: italic;
    font-weight: normal;
    position: absolute;
    bottom: -1em;
    right: 2em;
} */


/* Main Parcours */
.parcours-section {
    width: inherit;
    max-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
}
.introduction, .conclusion {
    padding: 3em;
    background-color: var(--color-lighter);
    color: var(--color-darker);
}
.introduction {
    margin-bottom: 2em;
}
.conclusion {
    margin-top: 2em;
}
.parcours-section:nth-child(3) {
    flex-direction: row-reverse;
}
.parcours-text {
    height: 400px;
    max-width: 50%;
    width: 50%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin: 1em;
    color: var(--color-darker);
}
/* .parcours-text hr {
    width: 70%;
    height: 10px;
    margin: 1em 0;
    background-color: var(--color-medium-dark);
} */
.parcours-img {
    max-height: inherit;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em;
}
.img-parcours-large {
    width: 100%;
}
.parcours-img img {
    max-height: inherit;
    /* width: 300px; */
}

.parcours-section p, .parcours-section .parcours-text p, .introduction p, .conclusion p {
    font-size: 1.2em;
}

/* Main contact */
.main-contact-page {
    width: inherit;
    min-height: calc(100vh - 200px);
    padding: 1em 0;
    background-color: var(--color-darker);
    display: flex;
    flex-wrap: wrap;
    font-size: 2em;
}
.message-contact-page {
    width: 100%;
    order: 1;
    font-size: inherit;
    padding-bottom: 1em;
    color: var(--color-background);
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
}
.message-contact-page p {
    font-size: inherit;
}
.message-contact-page .message {
    width: 80%;
}
.follow {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.follow .fa-facebook {
    color: var(--color-background);
    font-size: 1.5em;
}
.follow a {
    padding: 0 1em;
    color: var(--color-background);
    text-decoration: none;
}
.form-contact-page {
    order: 2;
}
.form-contact {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}
.form-contact h3 {
    color: var(--color-background);
    font-size: 2em;
    font-weight: 600;
    padding: 2em 1em;
}
.form-contact .contact-input {
    width: 100%;
    height: 2em;
    display: flex;
}
.form-contact .contact-input:nth-child(2) {
    margin: 1em 0;
}
.form-contact .contact-input p {
    width: 40%;
    color: var(--color-background);
    display: flex;
    align-items: center;
    padding: 0 1em;
}
.form-contact .contact-input p:nth-child(1) {
    flex-direction: row-reverse;
}
.form-contact .contact-input input {
    width: 60%;
    border-radius: 5px;
    border: none;
    padding: 0 1em;
}
.form-contact textarea {
    width: 100%;
    border-radius: 5px;
    padding: 1em;
}
.form-contact .contact-send {
    width: 30%;
    border-radius: 5px;
    border: 1px solid var(--color-darker);
    background-color: var(--color-lighter);
    color: var(--color-darker);
    margin-top: 1em;
    padding: 1em;
    text-align: center;
    transition: 0.3s;
}
.form-contact .contact-send:hover {
    background-color: var(--color-darker);
    color: var(--color-lighter);
    border: 1px solid var(--color-lighter);
    cursor: pointer;
    transition: 0.3s;
}
.form-contact .data-infos{
    position: relative;
    width: 100%;
    /* background-color: var(--color-lighter); */
    border-radius: 5px;
    display: block;
    align-items: center;
}
.form-contact .data-infos i {
    color: var(--color-lighter);
    /* color: var(--color-darker); */
    padding-top: 1em;
    margin-right: 1em;
    display: inline;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}
.form-contact .data-infos div {
    display: none;
    color: var(--color-darker);
    background-color: var(--color-lighter);
    padding: 0.5em 1em;
    border-radius: 50px;
}
.form-contact .data-infos div p {
    font-size: 0.8em;
}
.form-contact .info-active {
    margin-top: 1em;
    display: flex;
}
.form-contact .info-active i {
    position: relative;
    padding: 0;
}
.form-contact .info-active div {
    display: inline;
}
.square-contact-page {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: inherit;
    order: 3;
}
.square-contact-page div {
    width: auto;
    font-size: inherit;
    background-color: var(--color-lighter);
    color: var(--color-darker);
    border-radius: 5px;
    text-align: center;
    padding: 3em;

}



/* Main Gallery */
.grid {
    line-height: 0;
    -webkit-column-count: 5;
    -webkit-column-gap: 10px;
    -moz-column-count: 5;
    -moz-column-gap: 10px;
    column-count: 5;
    column-gap: 10px;
    transform: translateY(-100px);
    margin: 0 10px;
}
.grid img {
    width: 100% !important;
    height: auto !important;
    margin: 5px 0;
    cursor: pointer;
}
/*
.grid {
    max-width: 1300px;
    width: 90%;
    /* min-height: 300vh; *
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-template-rows: repeat(auto-fill, fit-content);
    gap: 10px;

    transform: translateY(-100px);
    grid-auto-flow: dense;
    justify-content: center;
}
.grid-item {
    /* background-color: #137C8B; *
    border: 1px solid black;
    height: fit-content;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* background-size: contain; */
    /* background-position: center; */
    /* background-repeat: no-repeat; *
    background-color: rgba(184, 203, 208, 0.5);
    /* background-image: url(//unsplash.it/300/300); *
}
.long {
    grid-row: span 2;
    grid-column: span 1;
    height: var(--grid-item-big-size);
    background-image: url(//unsplash.it/300/610);
}*/
/* .large {
    grid-row: span 1;
    grid-column: span 2;
    width: var(--grid-item-big-size);
    background-image: url(//unsplash.it/410/200);
}
.xxl {
    grid-row: span 2;
    grid-column: span 2;
    height: var(--grid-item-big-size);
    width: var(--grid-item-big-size);
    background-image: url(//unsplash.it/410/410);
} */
/* .grid-item img {
    width: inherit;
    height: inherit;
} */

/*.grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    width: 80%;
    transform: translateY(-100px);
}
.grid-item {
    width: var(--grid-item-size);
    height: var(--grid-item-size);
    background-color: #137C8B;
    border: 1px solid black;
    margin: 0.5em;
}
.long {
    height: calc(2*var(--grid-item-size));
}

footer {
    height: 500px;
    background-color: var(--color-darker);
}*/
/* .grid-item img {
    max-width: 300px;
} */

/* End main */


/* Menu bar */
.menu-div {
    width: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    position: sticky;
    top: 1em;
    transition: top 300ms;
    z-index: 2;
}
.menu-item {
    color: var(--color-darker);
    text-decoration: none;
    text-align: center;
    padding: 1em 2em;
    transition: 300ms;
}
.menu-item:hover {
    background-color: var(--color-darker);
    color: var(--color-lighter);
}
.menu-bar {
    min-width: fit-content;
    max-width: 80%;
    height: fit-content;
    background-color: var(--color-lighter);
    border-radius: 50px;
    display: flex;
    justify-content: center;
}
.menu-bar-item {
    display: inline-block;
    position: relative;
}
.menu-bar-item:nth-child(1) {
    border-radius: 50px 0 0 50px;
}
.dropdown .menu-bar-item {
    border-radius: 0;
}
.menu-bar-item:nth-child(5) {
    border-radius: 0 50px 50px 0;
}
/* .menu-bar-item:nth-child(3)::after {
    content: '\f107';
    color: #fff;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1em;
    top: 50%;

} */
.menu-bar-item:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-bar-item i {
    color: inherit;
    width: 1em;
    height: 1em;
    padding-left: 0.5em;
    pointer-events: none;
}
.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.dropdown-content {
    position: absolute;
    background-color: var(--color-lighter);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: max-content;
    display: none;
}
.dropdown-item {
    display: block;
}
.hidden {
    top: -60px;
}
.toggle-menu {
    display: none;
}
/* end Menu */

/* Modal */
.card-modal {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
}
.card-modal .fa-times {
    position: absolute;
    top: 0.7em;
    right: 1.5em;
    font-size: 2em;
    color: var(--color-lighter);
    cursor: pointer;
}
.card {
    background-color: var(--color-lighter);
    padding: 5px;
    border-radius: 5px;
    width: min-content;
}
.img-card-container {
    display: flex;
    justify-content: center;
}
.img-card-container img {
    max-width: 85vw;
    max-height: 80vh;
}
.text-card-container {
    width: auto;
    padding: 1em;
    /* background-color: var(--color-lighter); */
    /* display: flex;
    flex-wrap: wrap; */
    /* border-radius: 0 0 5px 5px; */
    position: relative;
}
.text-card-container p {
    /* width: 100%; */
    color: var(--color-darker);
    font-weight: bold;
}
.text-card-container p:nth-child(1) {
    /* text-align: right; */
    float: right;
    padding: 0 0 1em 1em;
}
.text-card-container p:nth-child(3) {
    margin-top: 1em;
}

/* Footer */
footer {
    width: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--color-darker);
}
.social-media {
    width: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5em 0 0 0;
}
.social-media p, .social-media a {
    color: var(--color-background);
    text-align: center;
}
.social-media p:nth-child(1) {
    padding-bottom: 1em;
}
.social-media .fa-facebook {
    font-size: 2em;
}
.footer-contact {
    width: inherit;
    display: flex;
    padding: 0 0 3em 0;
}
.visit-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.visit-card img {
    width: 300px;
    padding-bottom: 1em;
    filter: brightness(0) invert(90%);
    -webkit-filter: brightness(0) invert(90%);
    /* filter: invert(50%); */
}
.visit-card p {
    color: var(--color-background);
    font-size: 1.5em;
    text-align: center;
}
.visit-card hr {
    width: 1em;
    color: var(--color-background);
    margin: 1em;
}
.visit-card a {
    text-decoration: none;
    color: var(--color-background);
}
/* .form-contact {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}
.form-contact h3 {
    color: var(--color-background);
    font-size: 2em;
    font-weight: 600;
    padding: 2em;
}
.form-contact .contact-input {
    width: 100%;
    height: 2em;
    display: flex;
}
.form-contact .contact-input:nth-child(3) {
    margin: 1em 0;
}
.form-contact .contact-input p {
    width: 40%;
    color: var(--color-background);
    display: flex;
    align-items: center;
    padding: 0 1em;
}
.form-contact .contact-input p:nth-child(1) {
    flex-direction: row-reverse;
}
.form-contact .contact-input input {
    width: 60%;
    border-radius: 5px;
    border: none;
    padding: 0 1em;
}
.form-contact textarea {
    width: 100%;
    border-radius: 5px;
    padding: 1em;
}
.form-contact .contact-send {
    width: 30%;
    border-radius: 5px;
    border: 1px solid var(--color-darker);
    background-color: var(--color-lighter);
    color: var(--color-darker);
    margin-top: 1em;
    padding: 1em;
    text-align: center;
    transition: 0.3s;
}
.form-contact .contact-send:hover {
    background-color: var(--color-darker);
    color: var(--color-lighter);
    border: 1px solid var(--color-lighter);
    cursor: pointer;
    transition: 0.3s;
} */
.form-contact-footer .contact-input:nth-child(3) {
    margin: 1em 0;
}
.form-contact-footer .contact-input:nth-child(2) {
    margin: 0 0;
}
footer hr {
    width: 70%;
    background-color: var(--color-background);
}
footer .credits {
    color: var(--color-background);
    text-align: center;
    padding: 3em 1em;
}

.feedback-request {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 1em;
    z-index: 10;
}
.feedback-request p {
    padding: 1em 2em;
    text-align: center;
    border-radius: 50px;
    position: relative;
}
.feedback-request-ok p {
    background-color: rgba(184,203,208);
    color: #344D59;
    border: 1px solid #344D59;
}
.feedback-request-none p {
    background-color: rgb(208, 184, 184);
    color: #593434;
    border: 1px solid #593434;
}
.feedback-request p .fa-times {
    padding: 1em 1.2em;
    position: absolute;
    border-radius: 50px;
    right: -0.5em;
    top: -1em;
    font-size: 0.7em;
    cursor: pointer;
}
.feedback-request-ok p .fa-times {
    color: rgba(184,203,208);
    background-color: #344D59;
    border: 2px solid rgba(184,203,208);
}
.feedback-request-none p .fa-times {
    color: rgba(208, 184, 184);
    background-color: #593434;
    border: 2px solid rgba(208, 184, 184);
}

@media (max-width: 1200px) {
    .grid {
        -moz-column-count:    4;
        -webkit-column-count: 4;
        column-count:         4;
    }
}


@media only screen and (max-width: 1060px) {
    .grid {
        -moz-column-count:    3;
        -webkit-column-count: 3;
        column-count:         3;
    }

    .menu-item {
        padding: 1em 0.8em;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    .visit-card {
        padding-top: 2em;
        width: inherit;
    }
    .form-contact {
        width: inherit;
    }
    .form-contact .contact-send {
        width: 40%;
    }
    .main-contact-page {
        max-height: auto;

        flex-direction: column;
        flex-wrap: nowrap;
        font-size: 1.5em;
    }
    .contact-page-div {
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .message-contact-page {
        flex-direction: column;
        order: 2;
    }
    .message-contact-page .message {
        width: 100%;
        padding: 0 1em;
    }
    .follow {
        padding: 1em 0;
        width: 100%;
    }
    .form-contact-page {
        order: 3;
    }
    .square-contact-page {
        width: 100%;
        order: 1;
    }

}

@media only screen and (max-width: 800px) {
    .header-title-only h1, .header-gallery h1{
        padding-top: 1em;
    }
    .text-homepage h1, .text-homepage p {
        font-size: 5em;
    }
    .text-homepage p {
        font-size: 3rem;
    }
    .grid {
        -moz-column-count:    2;
        -webkit-column-count: 2;
        column-count:         2;
    }

    .menu-div {
        width: 300px;
        position: fixed;
        justify-content: stretch;
        align-items: stretch;
        top: 0.5em;
        left: 1em;
        transform: translateX(-200px);
        transition: 0.4s ease-in-out;
        margin: 0!important;
    }
    .menu-item {
        padding: 1em 2em;
    }
    .menu-bar {
        flex-direction: column;
    }
    .menu-bar-item {
        display: block;
    }
    .menu-bar-item:nth-child(1) {
        border-radius: 50px 50px 0 0;
    }
    .menu-bar-item:nth-child(6) {
        border-radius: 0 0 50px 50px;
    }
    .dropdown .menu-bar-item {
        border-radius: 0;
    }
    .dropdown-content {
        position: relative;
        width: inherit;
    }
    .dropdown-item {
        padding: 1em;
        width: inherit;
    }
    .toggle-menu {
        background-color: var(--color-lighter);
        display: inline;
        width: 50px;
        height: 50px;
        margin-left: 2em;
        cursor: pointer;
        border-radius: 5px;
        position: relative;
        z-index: 2;
    }
    .burger {
        width: 30px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    .line {
        position: absolute;
        border-radius: 10px;
        width: 30px;
        height: 3px;
        background-color: var(--color-darker);
    }
    .toggle-menu .line:nth-child(1) {
        top: 0px;
        transform: rotate(0deg);
        transition:
        transform 0.4s ease-in-out,
        top 0.4s 0.4s ease-in-out;
    }
    .toggle-menu .line:nth-child(2) {
        top: 10px;
        transition: opacity 0.4s 0.4s ease-in-out;
    }
    .toggle-menu .line:nth-child(3) {
        top: 20px;
        transform: rotate(0deg);
        transition:
        transform 0.4s ease-in-out,
        top 0.4s 0.4s ease-in-out;
    }
    /* animation menu*/
    .menu-on {
        transform: translateX(0);
        transition: 0.4s 0.4s ease-in-out;
    }
    .toggle-menu.active .line:nth-child(1){
        top: 10px;
        transform: rotate(45deg);
        transition:
         top 0.4s ease-in-out,
         transform 0.4s 0.4s ease-in-out;
    }
    .toggle-menu.active .line:nth-child(2){
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
    }
    .toggle-menu.active .line:nth-child(3){
        top: 10px;
        transform: rotate(-45deg);
        transition:
        top 0.4s ease-in-out,
        transform 0.4s 0.4s ease-in-out;
    }
    /* end */


    .sacred-art, .deco-art {
        clip-path: none;
        margin: 0;
        padding: 2em 0;
    }
    .sacred-art h2,.deco-art h2 {
        padding: 2em;
    }


    .parcours-section {
        flex-direction: column;
        max-height: none;
        padding: 1em;
    }
    .parcours-section:nth-child(3) {
        flex-direction: column;
    }
    .parcours-text {
        height: auto;
        max-width: none;
        width: inherit;
    }
    .parcours-img {
        width: inherit;
    }
    .parcours-img img {
        width: 70%;
    }
    .parcours-section p, .parcours-section .parcours-text p, .introduction p, .conclusion p {
        font-size: 1em;
    }


    .card-modal {
        align-items: center;
    }
    .card-modal .fa-times {
        top: 0.2em;
        right: 0.5em;
    }
    .img-card-container img {
        max-height: 60vh;
    }

}

@media only screen and (max-width: 400px) {
    .text-homepage h1, .text-homepage p {
        font-size: 4em;
    }
    .text-homepage p {
        font-size: 2rem;
    }
    .grid {
        -moz-column-count:    1;
        -webkit-column-count: 1;
        column-count:         1;
    }
}