html, body {    
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth !important;
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
}

a {
    color: inherit;       /* Hérite de la couleur du texte parent */
    text-decoration: none; /* Supprime le soulignement */
    cursor: pointer;      /* Optionnel : curseur pointeur */
}

.non-selectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wbi-sec{
    display: inline-block;
    width: 100%;
    height: 450px;
    padding: 50px 0px;
    margin: 50px 0;
}

#content{
    display: inline-block;
    width: 100%;
    min-height: calc(100vh - 450px);
}

.ver-center{
    position:absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

}

.hor-center{
    position:absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.box-con{
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
}

.vh-center{
    position:absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


a{
    text-decoration: none;
}

.top{
    position: absolute;
    top: 0%;
}

.bottom{
    position: absolute;
    bottom: 0%;
}

.left{
    position: absolute;
    left: 0%;
}

.right{
    position: absolute;
    right: 0%;
}

.inline-block{
    display: inline-block;
}

.hide{
    display: none;
}

.full-dim{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.full-width{
    display: inline-block;
    width: 100%;
}

.full-height{
    display: inline-block;
    height: 100%;
}

.half-width{
    display: inline-block;
    width: 50%;
}

.half-height{
    display: inline-block;
    height: 50%;
}

.main-dim{
    display: inline-block;
    width: 80%;
    height: 100%;
    position: relative;
    left: 10%;
}

li,a {
    list-style-type: none;
    text-decoration: none;
}

h1,h2,h3,h4,h5,ul{
    display: inline-block;
    padding: 0;
    margin: 0;
}

.cursor-pointer{
    cursor: pointer;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type=number] {
  -moz-appearance: textfield;
}

.sec-title{
    font-weight: normal;
    font-size: 28px;
    text-align: center;
}

button{
    border: none;
}

.nowrap{
    white-space: nowrap;
}

.white{
    color: white;
}

#footer-section{
    padding-bottom: 0%;
}

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


@media screen and (max-width:360px){
    .sec-title{
        font-size: 18px;
    }
}

@media screen and (min-width:361px) and (max-width:640px){
    .sec-title{
        font-size: 22px;
    }
}

@media screen and (min-width:641px) and (max-width:768px){
    .sec-title{
        font-size: 25px;
    }
}

