.hero {
    background-image: url("img/background2-najac.jpg") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    justify-content: center !important;
}

header > div > img {
    background-color: var(--surface);
    padding: 3px;
    border-radius: 1rem;
}

.switchBox {
    display: inline-block;
    margin: 0px;
    position: relative;
    line-height: 1.3;
}

.switchBox input[type="checkbox"] {
    cursor: pointer;
    width: 50px;
    height: 48px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0px;
}

.switchBox .switchBox-inner {
    width: 240px;
    height: 48px;
    background-color: var(--button);
    padding: 0px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 20px;
}

.switchBox .switchBox-inner:before {
    content: attr(data-on);
    position: absolute;
    width: 120px;
    height: 16px;
    right: 2px;
    top: 3px;
    color: black;
    padding: 13px 0px;
    text-align: center;
    background-color: transparent;
    cursor: pointer;
}

.switchBox .switchBox-inner:after {
    content: attr(data-off);
    position: absolute;
    width: 120px;
    height: 16px;
    left: 2px;
    top: 3px;
    color: white;
    text-align: center;
    padding: 13px 0px;
    background-color: var(--primary);
    transition: all 0.3s ease;

    border-radius: 20px;
}

.switchBox input[type="checkbox"]:checked+.switchBox-inner:after {
    content: attr(data-on);
    left: 118px;
    background-color: #e30000;
}

.switchBox input[type="checkbox"]:checked+.switchBox-inner {
    background-color: #e5bbbb;
}

.switchBox input[type="checkbox"]:checked+.switchBox-inner:before {
    content: attr(data-off);
    left: 5px;
    right: auto;
}


.recap_item {
    text-align: center;
}





@media screen and (max-width: 1000px) {
    .title-page {
        font-size: 1.8rem;
    }
}

.input strong {
    display: flex;
    align-items: center;
}