/*8888888888888888888888888888  Autres  888888888888888888888888888888*/

@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
body {
    color: #4b5b68;
    font-family: rubik, sans-serif;
    margin: 0;
}
h1 {
    font-size: 50px;
}
h2 {
    font-weight: lighter;
}
hr {
    width: 250px;
    border: none;
    border-top: 2px solid #4b5b6850;
}
p {
    color: #475462;
    text-align: center;
}
a {
    color: inherit;
    text-decoration: none;
}
textarea {
    width: 100%;
    min-height: 200px;
    max-height: 600px;
    margin-block: 10px;
    padding: 20px;
    resize: vertical;
}
.wrap {
    margin-inline: auto;
    max-width: 1200px;
}
.flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*8888888888888888888888888888  Header  888888888888888888888888888888*/

header { 
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
#header-bar {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    height: 70px;
    padding: 16px;
    margin: auto;
}
#header-bar img {
    width: 154px;
    height: 70px;
}
#header-link {
    display: flex;
    align-items: center;
}
#header-link div {
    font-size: larger;
    padding: 20px;
}
#header-link div:hover {
    color: hsl(200, 80%, 50%);
    cursor: pointer;
}
#select {
    color: #19a1e6;
}

/*8888888888888888888888888888  banniere  888888888888888888888888888888*/

.hero-image {
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-text {
    position: absolute;
    color: white;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*8888888888888888888888888888  button  888888888888888888888888888888*/

button, [type="submit"], .valider {
    color: hsl(200, 80%, 50%);
    font-size: 18px;
    padding: 16px 32px;
    border: 1px solid hsl(200, 80%, 50%);
    border-radius: 100px;
    background-color: transparent;
    transition: all .3s;
}
button {
    display: block;
    margin: auto;
    width: max-content;
}
button:hover {
    color: white;
    background-color: hsl(200, 80%, 50%);
    cursor: pointer;
    transition: all .3s;
}
[type=button] {
    padding: 10px 20px;
    transition: all .3s;
}
[type=button]:hover, [type="submit"]:hover, button:hover {
    color: white;
    background-color: hsl(200, 80%, 50%);
    cursor: pointer;
    transition: all .3s;
}
.btn-plein {
    color: white;
    border: 3px solid hsl(200, 80%, 50%);
    background-color: hsl(200, 80%, 50%);
}
.btn-plein:hover {
    border: 3px solid white;
}
.valider {
    display: flex;
    align-items: center;
    cursor: pointer;
}
#chargement {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    transform: rotate(0);
    animation: rotation 2s infinite linear;
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(359deg);}
}

/*8888888888888888888888888888  Footer  888888888888888888888888888888*/

#footer-blue {
    height: 5px;
    background: linear-gradient(45deg, #27f1ff, #3781af);
}
#footer-bgc {
    color: #76BFEF;
    background-color: #2b2b2b;
}
#footer-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#footer-wrap > div {
    padding: 40px 60px;
}
#footer-wrap a {
    color: #76BFEF;
    text-decoration: none;
}
#footer-wrap a:hover {
    color: #3781af;
    text-decoration: none;
}
#punch-line {
    color: #76BFEF;
}
#punch-line img {
    width: 157px;
    height: 70px;
}
h4 {
    font-size: 20px;
}
.footer-link {
    display: flex;
    align-items: center;
    margin-block: 10px;
}
.footer-link img {
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
#droit-bgc {
    background-color: white;
    padding: 16px 0;
}
#droit {
    margin: 0 auto;
}

/*8888888888888888888888888888  responsive  888888888888888888888888888888*/

@media only screen and (max-width: 768px) {
    #header-bar {
        flex-direction: column;
        height: fit-content;
        align-items: center;
    }
    #punch-line {
        margin: 0;
    }
}