@import url("../fontawesome/css/all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro|Raleway");
@import url("https://fonts.googleapis.com/css?family=Montserrat|Roboto");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "Montserrat", sans-serif;
    margin: unset;
}


/* Header */

header {
    display: flex;
}


/* Navigation bar and menu */

.nav-home {
    padding: 1em;
}

.nav-menu {
    background: #ffffff;
    color: black;
    margin-left: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: unset;
    padding: unset;
    background: inherit;
}

.nav-menu .selected a {
    font-weight: bolder;
    color: rgba(28,28,28,1);
}

.nav-menu a {
    color: inherit;
    display: inline-block;
    padding: 1em;
    text-decoration: none;
}

.nav-menu a:hover {
    background: #dddddd;
}

.nav-menu .nav-button {
    background: unset;
    border: unset;
    cursor: pointer;
    display: none;
    font-size: medium;
    padding: 1em;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 300px ) {
    .nav-home {
        display: none;
    }

    .nav-menu .nav-button {
        display: block;
    }
}

@media screen and (max-width: 850px ) {
    .nav-menu .nav-button {
        display: block;
    }

    .nav-menu ul {
        display: none;
    }

    .nav-menu.open ul {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .nav-menu.open a {
        display: block;
    }
}


/* Main */

main {
    overflow-y: auto;
    top: 3.5em;
    left: 0;
    right: 0;
    bottom: 0;
  }

main a {
    color: inherit;
}

.center {
    text-align: center;
 }

section p, section article {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 1em;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

section article p {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

strong, b {
    color: #3c3b3b;
    font-weight: 700;
    font-style: italic;
}

main section .title {
    align-items: center;
    background-color: black;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../../images/bandeau.png');
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
}

main section .title.small {
    height: 15em;
}

main section .title h1{
    color: white;
    font-size: 36.0pt;
    font-weight: 700;
    letter-spacing: 0.10em;
}

h3 {
    margin-block-start: 1.4em;
}

main li {
    margin-bottom: 0.2em;
}

.pa-carousel-widget {
    margin-left: auto;
    margin-right: auto;
}

.amount {
    padding-left: 2em;
    text-align: end;
}

div.marques {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    width: 100%;
}

div.marques .row {
    align-items: center;
    display: flex;
    margin-bottom: 3em;
    width: 100%;
}

div.marques .row div {
    flex-basis: 25%;
    flex-grow: 1;
    padding: 1em;
    text-align: center;
}

div.marques .row div img {
    max-width: 100%;
}

@media screen and (max-width: 300px ) {
    div.marques .row {
        display: block;
        margin-bottom: 0;
    }
}


/* Footer */

footer {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2em;
    padding-bottom: 2em;
    color: rgb(170, 170, 170);
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  footer ul {
    list-style: none;
    padding-left: 0;
    font-size: 2em;
    margin-bottom: 2em;
  }

  footer ul li {
    display: inline-block;
    padding: 0 1em 0 0;
  }

  footer ul li:last-child {
    padding-right: 0;
  }

  footer ul a {
    text-decoration: none;
  }

  footer p {
    font-size: 0.8em;
  }

  footer a {
    color: inherit;
    text-decoration-style: dotted;
    text-decoration-thickness: from-font;
  }

