/*
Theme Name: Nom du client
Description: Inside Web - thème
Version: 1.0.0
Author: Inside Web
Author URI: https://www.insideweb.be
*/

/*Example to import font*/
/*@font-face {
  font-family: "Circular-Std";
  src: url("https://insideweb.be/layout/themes/insideweb/fonts/CircularStd-Black.ttf") format('truetype');
  font-weight: 700;
}*/

:root {
    --white: #ffffff;
    --black: #303030;
    --primary: #006643;
    --secondary: #b2b2b2;
}
body{
    font-family: 'Open Sans', sans-serif;	
    font-weight:400;
    margin: 0;
    overflow-y: scroll;
    font-size: 16px;
    color:var(--black);
}
a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}
a:hover {
    color: var(--secondary);
}
img {
    width: 100%;
}
p:last-child {
    margin-bottom: 0;
}
button, .button{
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.5s ease 0s;
    text-transform: uppercase;
}
button:hover, .button:hover{
    background: transparent;
    color: var(--primary);
}
.hide{
    display: none;
}
/*HEADER*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border: none;
    background: var(--white);
}
header .navbar-brand img{
    max-width: 200px;
}
/*FOOTER*/
footer{
    padding-top: 30px;
    border-top: solid 2px var(--primary);
}
footer img{
    max-width: 250px;
}
footer .copyright{
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
}
/*HOME*/
.header-page{
    margin-top: 85px;
    position: relative;
}
.header-page img{
    height: 66vh;
    min-height: 400px;
    object-fit: cover;
    filter: brightness(0.8);
}
.header-page .imgMobile{
    display: none;
}
.header-page .overlay-titre{
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%,50%);
}
h1{
    color: var(--white);
    font-family: "Source Sans 3", sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
h2{
    color: var(--primary);
    font-size: 30px;
    font-family: "Source Sans 3", sans-serif;
    margin-bottom: 0px;
}
h3{
    color: var(--primary);
    font-size: 20px;
    font-family: "Source Sans 3", sans-serif;
    margin-bottom: 0px;
    text-transform: uppercase;  
}
.form-page{
    margin-top: 60px;
    margin-bottom: 60px;
}
.form-page h2{
    text-align: center;
    margin-bottom: 30px;
}
.form-page h3{
    margin-bottom: 15px;
    margin-top: 30px;
}
input{
    color: var(--primary) !important;
    border-radius: unset !important;
    box-shadow: unset !important;
    background: var(--white);
    font-size: 16px !important;
    border-color: var(--primary)!important;
    margin-bottom: 15px;
}
.form-floating label{
    color: var(--black);
}
.invalidInput{
    margin-bottom: 30px;
    color: #F6281C;
}
.inputRadio{
    margin-bottom: 15px;
}
.inputRadio input{
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50% !important;
    outline: none;
    border: 1px solid var(--primary) !important;
    margin-right: 6px;
    cursor: pointer;
    margin-bottom: 0px;
}
.inputRadio input:before{
    content: '';
    display: block;
    width: 80%;
    height: 80%;
    margin: 10% auto;
    border-radius: 50%;
}
.inputRadio input:checked:before{
    background: var(--primary);
}
.inputRadio label{
    margin-right: 30px;
    cursor: pointer;
}
.inputRadio label:last-child{
    margin-right: 0px;
}
input[type="checkbox"] {
  display: none;
}
.interets{
    margin-bottom: 15px;
}
.interets .row{
    --bs-gutter-y:1.5rem;
    margin-bottom: 15px;
}
.interets img{
    max-width: 150px;
    margin-bottom: 30px;
}
.interetBox .checkboxLabel{
    display: flex;
    flex-direction: column;
    text-align: center;
    border: solid 1px var(--secondary);
    padding: 20px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    color: var(--black);
    font-size: 20px;
}

.interetBox .checkboxLabel:before {
  background-color: var(--white);
  color: var(--white);
  content: " ";
  display: block;
  position: absolute;
  top: 2.5%;
  right: 2.5%;
  width: 25px;
  height: 25px;
  text-align: center;
  transition-duration: 0.4s;
  transform: scale(0);
  font-size: 16px;
}

.interetBox :checked + .checkboxLabel:before {
  content: "✓";
  background-color: var(--primary);
  transform: scale(1);
}

.interetBox :checked + .checkboxLabel {
  border: solid 2px var(--primary);
  color: var(--primary);
}
form .message{
    margin-bottom: 15px;/*60px*/
}
form .message p{
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid 1px;
    margin-top: 30px;
}
form .message .error{
    color: #dc3545;
}
form .message .success{
    color: #198754;
}
.container{
    max-width: 1200px;
}
.info-input{
    margin-top: 20px;
}
.bar{
    height: 1px;
    width: 50%;
    background: var(--primary);
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 992px){ 
    .header-page .imgMobile{
        display: block;
    } 
    .header-page .imgDesktop{
        display: none;
    }
    .interets img{
        max-width: 100px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 768px) { 
    label{
        font-size: 14px;
    }
    header .navbar-brand img{
        max-width: 150px;
    }
    .header-page{
        margin-top: 71px;
    }
    footer img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 576px) { 

}