@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

::-webkit-scrollbar {
    width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ed1b2f;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ed1b2f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(#ed1b2f, 0.8);
}

body {
    font-size: 1.6rem;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

/* h1, h2, h3, h4, h5, h6 {
} */

p {
    margin-bottom: 0;
    font-size: 16px;
    /* font-weight: 300; */
    /* line-height: 2.5rem; */
}

@media only screen and (max-width: 62em) {
    p {
        font-size: initial;
    }
}

ul {
    list-style: none;
    padding-left: 0;
}

button {
    border: none;
    cursor: pointer;
    background-color: none;
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

@media only screen and (max-width: 767px) {
    .header1 {
        padding: 10px;
        /* background-color: #F1551A; */
    }
}

h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 40px;
        /* font-weight: 900; */
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        /* font-weight: 900; */
    }
}

/* section {
  padding: 6rem 0;
} */

/* Navigation */
.navigation {
    background-color: #ffffff;
    padding: 2rem 0;
}

.navigation .logo {
    height: 6rem;
}

.navigation .logo img {
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 600px) {
    .navigation .logo {
        height: 4rem;
    }
}

/* Header*/

.header {
    background: url(/img/645b56968c028_Vector.svg);
    background-repeat: no-repeat;
    background-size: initial;
    background-position: 0% 0%;
}

.header img {
    /* width: 100%; */
    object-fit: cover;
    height: 530px;
}

/* .header h1{
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
} */

.header p {
    margin-bottom: 20px;
}

.header1 h2 {
    font-weight: 600;
}

@media only screen and (max-width: 991px) {
    .header1 {
        padding: 0px;
        /* background-color: #F1551A; */
    }
}

@media only screen and (max-width: 767px) {
    .header {
        padding-top: 30px;
        /*text-align: center;*/
        /* background-color: #F1551A; */
    }

    .header img {
        width: 100%;
        object-fit: cover;
        height: auto;
    }
}

@media only screen and (max-width: 500px) {
}

/* BgGreen */
.bgGreen {
    background-color: #ed1b2f;
    padding: 60px;
}

@media only screen and (max-width: 991px) {
    .bgGreenE {
        background-color: #ed1b2f;
    }

    .bgGreen {
        padding: 45px 0;
    }
}

.bgGreen--title {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.bgGreen--card {
    background-color: white;
    padding: 36px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}

/* FormB */

.formB {
    background-color: #f6f8fa;
    /*padding:  60px;*/
}

.formB--group {
    /*width: 50%;*/
    margin: 0 auto;
}

.formB img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    /*height: 530px;*/
}

@media only screen and (max-width: 991px) {
    .formB--group {
        /*width: 70%;*/
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .formB--group {
        /*width: 90%;*/
        margin: 0 auto;
    }
}

.formB--groupTitle {
    font-size: 30px;
    /* font-weight: bold; */
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .formB--groupTitle {
        font-size: 20px;
    }
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    width: 100%;
    background-color: #ed1b2f;
    color: white;
    padding: 15px 20px;
    /* border-radius: 4px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.radio-option:hover .check::after {
    content: "✔";
    color: #ed1b2f; /* coche légère au hover */
    /* background-color: #ed1b2f; */
}

.radio-option .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.radio-option.selected .check::after {
    content: "✔";
    color: #ed1b2f;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section {
    display: none;
    /* margin-top: 20px; */
}

.form-section button {
    background-color: #ed1b2f;
    padding: 15px;
    font-size: 20px;
    color: white;
    width: 100%;
}

.form-section label {
    font-weight: 600;
    font-size: 14px;
}

.form-section input {
    width: 100%;
    padding: 12px 0px;
    outline: none;
    text-indent: 10px;
    appearance: none;
    text-overflow: ellipsis;
    font-size: 15px;
    border-color: rgb(176, 186, 202);
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

.form-section select {
    width: 100%;
    padding: 12px 0px;
    outline: none;
    text-indent: 10px;
    /* appearance: none; */
    text-overflow: ellipsis;
    font-size: 18px;
    border-color: rgb(176, 186, 202);
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
    .formB img {
        display: none;
    }
}

/* Radio group 1 */

.radio-group1 label {
    background-color: #ed1b2f;
    width: 100%;
    padding: 20px;
    display: flex;
    color: white;
    margin-bottom: 15px;
    justify-content: space-between;
    align-items: center;
}

.radio-group1 .option-input {
    appearance: none;
    position: relative;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #fff;
    border: none;
    color: #ed1b2f;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}
.radio-group1 .option-input:hover {
    background: #fff;
}
.radio-group1 .option-input:checked {
    background: #fff;
}
.radio-group1 .option-input:checked::before {
    width: 15px;
    height: 15px;
    display: flex;
    content: "\f00c";
    font-size: 15px;
    top: 3px;
    left: 3px;
    font-weight: bold;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 5 Free";
}
.radio-group1 .option-input:checked::after {
    background: #ed1b2f;
    content: "";
    display: block;
    position: relative;
    z-index: 100;
}
.radio-group1 .option-input.radio {
    border-radius: 50%;
}
.radio-group1 .option-input.radio::after {
    border-radius: 50%;
}

.form-section1 button {
    background-color: #ed1b2f;
    padding: 15px;
    font-size: 16px;
    color: white;
    width: 98%;
    margin: 0 auto;
}

.form-section1 label {
    font-weight: bold;
    font-size: 14px;
}

.form-section1 input {
    width: 100%;
    padding: 12px 0px;
    outline: none;
    text-indent: 10px;
    appearance: none;
    text-overflow: ellipsis;
    font-size: 16px;
    border-color: rgb(176, 186, 202);
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

.form-section1 select {
    width: 100%;
    padding: 12px 0px;
    outline: none;
    text-indent: 10px;
    /* appearance: none; */
    text-overflow: ellipsis;
    font-size: 16px;
    border-color: rgb(176, 186, 202);
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}
