* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'regular';
    src: url("../font/Sora/Sora-Regular.ttf");
}

@font-face {
    font-family: 'bold';
    src: url("../font/Sora/Sora-SemiBold.ttf");
}

@font-face {
    font-family: 'light';
    src: url("../font/Sora/Sora-Light.ttf");
}

@font-face {
    font-family: 'light italic';
    src: url("../font/muli/Muli-LightItalic.ttf");
}

body {
    font-family: 'regular';
    overflow-x: hidden;
    color: #3d3d3d;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5em;
    position: relative;
}

.visible {
    display: block !important;
}

/* ###########
    HOME - NAV
############## */
nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99 !important;
    padding-top: 23px !important;
    padding-bottom: 23px !important;
    background-color: white;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}


nav .logo-container a img {
    width: 128px;
    /*width: 19.134%;*/
}

nav .end {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

nav .end img {
    width: 20px;
    margin-right: 0.5em;
}

nav .end a {
    margin-right: 32px;
    text-decoration: none;
    color: black;
    transition: 0.3s;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

nav .end a:last-child {
    margin-right: 64px;
}

nav .end a:hover {
    opacity: 0.6;
}

nav .open,
nav .tool {
    display: none;
}

nav .logo-container{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 20%;
    margin-left: 64px;
}

nav .logo-container > a{
    display: flex;

}

nav .langs{
    display: flex;
    justify-content: space-between;
    width: 3%;
    background: white;
    margin-left: 2em;
}
nav .langs:hover{
    cursor: pointer;
}
nav .langs:hover .langs-choice-hidden{
    display: flex;
}
nav .langs-choice{
    display: flex;
    flex-direction: column;
    height: 1.5em;
    position: relative;
}
nav .langs-choice a img{
    width: 1.5em;
    margin: 0;
}
.langs-choice-hidden{
    top: 1.5em;
    left: -1em;
    position: absolute;
    display: flex;
    flex-direction: column;
    display: none;
    background: white;
    padding: 0 1em 1em 1em;
    border-radius: 1vh;
}
.langs-choice-hidden a{
    height: 1.5em;
}
#arrow{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#arrow img{
    width: 1em;
}
main {
    width: 80%;
    margin: auto;
}

img#covid {
    position: absolute;
    right: 5%;
    top: 3%;
    width: 8em;
    cursor: pointer;
}

img#burger {
    display: none;
}

/* HEADER */
/* ## PAGE ACCUEIL ## */
p#catchline {
    width: 60%;
    margin: 10vh auto;
    color: #42563d;
    text-align: center;
    font-size: 1.1em;
    letter-spacing: 1.2px;
}

header {
    height: 80vh;
    background-image: url('../../img/business/bannieres/concierge.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #929292 !important;
    background-blend-mode: multiply;
    background-position: 100% 30%;
}

header h1 {
    color: white;
    font-family: 'regular';
    line-height: 1.5em;
}

/* ## BANNIERE ACCUEIL SEULEMENT ## */
.banniere-accueil {
    justify-content: inherit;
}

.banniere-bloc {
    width: 25%;
    margin-left: 10%;
}

.banniere-bloc h1 {
    font-size: 1.5em;
}

.banniere-bloc a {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 1vh;
    border-radius: 2em;
    border: 1px solid white;
    margin-top: 5vh;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


.slideshow {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.slideshow ul {
    /* 4 images donc 4 x 100% */
    width: 800%;
    height: 200px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slideshow li {
    float: left;
    height: 100%;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545;
}

.slideshow img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.form-modale,
.modale-covid {
    position: fixed;
    width: 50%;
    left: 30%;
    top: 10%;
    background-color: white;
    padding: 1em;
    box-sizing: border-box;
    z-index: 101;
    border-radius: 1vh;
    transition: 1s;
    display: none;
    font-size: 0.9em;
    height: 80vh;
}

.form-modale > div,
.modale-covid div {
    height: 100%;
    width: 100%;
    overflow: scroll;
    margin-bottom: 50%;
}

.form-modale img,
.modale-covid img {
    position: absolute;
    top: -1em;
    right: -1em;
    width: 2em;
    background: black;
    border-radius: 1em;
    padding: 0.3em;
    box-sizing: border-box;
    cursor: pointer;
}

.form-modale-background,
.modale-covid-background {
    background-color: #00000099;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.form-modale form {
    padding: 1em;
    box-sizing: border-box;
}

.form-modale form input[type="submit"] {
    display: block;
    margin: 3vh auto;
}


/* MODALE : CLIC SUR TELECHARGER PLAQUETTE TARIFS */
.modale-covid.download {
    height: 70vh;
    width: 25%;
    left: 37.5%;
}

.form-modale {
    width: 30%;
    left: 35%;
    top: 5%;
    height: 90vh;
}

.form-modale h2 {
    font-size: 1.1em;
    text-align: center;
    margin: 1vh auto;
}

.form-modale label {
    font-family: 'bold';
}

.modale-covid.download div {
    overflow: inherit;
    text-align: center;
    margin-bottom: 2vh;
}

.modale-covid.download .buttons {
    height: auto;
}


/* #### CONTACT #### */

main#contact {
    background-image: url('/IMG/business/contact/background.jpg'), linear-gradient(180deg, #42563d 0%, #ffffff 100%) !important;
    background-blend-mode: overlay;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: inherit;
    min-height: auto;
    background-size: 100% 50%;
}

main#contact h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 30vh;
    color: white;
}

.form {
    width: 80%;
    margin: 15vh auto;
    display: flex;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0px 10px 60px 0px rgba(71, 74, 182, 0.12);
}

.form h2 {
    font-size: 2em;
}

.form form {
    width: 65%;
}

.form form textarea {
    width: 100%;
    box-sizing: border-box;
}

.form form,
.form .informations {
    padding: 1em 2em;
    box-sizing: border-box;
}

.form form > div:nth-child(2) {
    display: flex;
    justify-content: space-between;
    width: 90%;
    flex-wrap: wrap;
}

.form form > div:nth-child(2) div {
    width: 65%;
}

.form form > div:nth-child(2) div:nth-child(2) {
    width: 30%;
}

.form-group {
    margin-bottom: 1vh;
    width: 90%;
}

.form-group select,
.form-group input {
    width: 100%;
    box-sizing: border-box;
}

label {
    display: inline-block;
    margin-bottom: 0.5vh;
    text-transform: uppercase;
    font-size: 0.8em;
}

.form-control {
    display: block;
    width: 100%;
    padding: .300rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-check {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 3vh auto;
}

.form-check input {
    width: 1em;
    margin-right: 0.5em;
}

.form-check label {
    line-height: 1em;
    font-weight: bold;
    font-size: 0.8em;
    width: 90%;
}

.form-check a {
    color: #2ea3f2;
    text-decoration: none;
}

form input[type="submit"] {
    background-color: #42563d;
    color: white;
    border: none;
    border-radius: 3em;
    padding: 1em;
    margin-top: 2vh;
    font-size: 0.8em;
}

.form .invalid-feedback {
    width: 100% !important;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

form label span {
    color: red;
    margin-left: 0.5em;
}


.informations {
    background: #42563d;
    width: 35%;
    color: white;
}

.informations div {
    display: flex;
    margin-top: 5vh;
}

.informations div p {
    line-height: 2em;
}

.informations div img {
    height: 3em;
    margin-right: 1em;
}

.informations div:nth-child(5) {
    margin-top: 50%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.informations div:nth-child(5) a {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.informations div:nth-child(5) a img {
    height: 1em;
}