
/* ---------- Global ---------- */
html {
    scroll-behavior: smooth;
  }
:root {
    --MainOrange :#ff3c00;
    --RvWhite :#F8F8F8;
    --RvBlue :#1F3EA3;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'system-ui', Courier, monospace;
}
body {
    background-color: var(--RvWhite);
}
a {
    text-decoration: none;
}
.P-60L {
    padding-left: 60px !important;
}
.Inactive {
    display: none!important;
}
.RequiredStar {
    color: red;
}
/* ____________________________________________ Home ____________________________________________*/
/* ---------- Nav Bar ---------- */
.MainNavbar {
    width: 100%;
    display: flex;
    height: 70px;
}
.NavLi {
    display: inline;
    text-align: center;
    padding: 0 15px;
}
.NavUl {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: center;
}
.LogoDiv {
    width: 20%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.FirstDiv {
    width: 50%;
}
.SecDiv {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.NavLi a {
    color: var(--RvBlue);
    font-size: 20px;
    padding: 30px 10px;
    text-align: center;
    transition: all .3s ease-in-out;
}
.NavLi a:hover {
    color: var(--MainOrange);
}
.LogoDiv a {
    font-size: 40px;
    font-family: cursive;
    font-weight: 900;
    background: -webkit-linear-gradient(var(--MainOrange), rgb(204 204 253));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.NavBtn {
    width: 170px;
    height: 40px;
    margin: 5px;
    outline: none;
    border-radius: 7px;
    border: 1px solid transparent;
    cursor: pointer;
    color: white;
    font-size: 17.5px;
}
.SignInBtn {
    background-color: var(--MainOrange);
    transition: all .3s ease-in-out;
}
.SignInBtn:hover {
    background-color: var(--RvBlue);
    border:1px solid var(--RvBlue);

}
.SignInBtn a {
    color: white;
}
.LogInBtn {
    background-color: transparent;
    border-color: var(--MainOrange);
    color: var(--MainOrange);
    transition: all .3s ease-in-out;
}
.LogInBtn.NavBtn:hover {
    background-color: var(--RvBlue);
    color: white;
    border-color: var(--RvBlue);
}

/* ---------- Main Section ---------- */
.MainSection {
    width: 100%;
    display: flex;
    padding: 3% 8%;
    flex-direction: column;
}
.MainSectionTow {
    width: 100%;
    display: flex;
}
.FirstChild {
    width: 50%;
}
.FirstChild img {
    width: 110%;
}
.H1Text {
    font-size: 50px;
    color: var(--RvBlue);
    font-weight: 500;
    padding-bottom: 25px;
}
h5.H5Text {
    font-size: 24px;
    color: #6278be;
}
p.pText {
    font-size: 20px;
    font-weight: 500;
}
.UlList li {
    list-style: none;
    font-size: 22px;
    margin-top: 10px;
}
.UlList li i ,
.UlList li svg {
    color: var(--MainOrange);
}
.InfoMd1 h4 {
    color: gray;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.InfoMd2 a {
    color: var(--RvBlue);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.InfoMd3 h5 {
    color: gray;
    font-size: 1.25rem;
    font-weight: 500;
}
/* ---------- Box Section ---------- */
.BoxHolder {
    padding: 10px 8%;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
}
.InfoBox {
    background-color: #eceaea;
    width: 32%;
    height: 230px;
    border-radius: 7px;
    cursor: pointer;
    padding: 20px;
    transition: all .3s ease-in-out;
}
.InfoBox:hover {
    box-shadow: 1px 1px 20px #d0d0d0;
    transform: scale(1.05);
}
.InfoBox svg ,
.InfoBox i {
    font-size: 3rem;
    color: var(--MainOrange);
    padding: 5px;
}
.InfoBox a h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--RvBlue);
    padding: 5px;
}
.InfoBox p {
    font-size: 15px;
    font-weight: 500;
    color: gray;
}
/* ---------- Prix Section ---------- */
.PrixSectin {
    padding: 10px 3% 40px;
    margin-top: 10px;
    background-color: #ececec;
}
.CardsHolder {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 20px;
}
.CadrBox {
    width: 32.5%;
    height: 100%;
    background-color: white;
    border-radius: 7px;
}
.Cadr {
    height: 18vh;
    width: 100%;
    background-size: 100% 100%;
    filter: contrast(150%);
    border-radius: 7px 7px 0 0;
}
.Cadr.Lvl1 {
    background-image: url(/assets/Img/Basic.png);
}
.Cadr.Lvl2 {
    background-image: url(/assets/Img/Starter.png);
}
.Cadr.Lvl3 {
    background-image: url(/assets/Img/perfo.png);
}
.InfoList {
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--RvBlue);
    line-height: 25px;
}
.InfoList svg ,
.InfoList i{
    font-size: 1.3rem;
    color: var(--MainOrange);
}
.DocInfo {
    color: var(--RvBlue);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}
.ListHolder {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 310px;
}

.ListHolder.expanded {
    max-height: 1300px;
}
.CartBtnHolder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.VueMore {
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 20px;
    color: var(--RvBlue);
    padding-bottom: 5px;
    cursor: pointer;
}
.Commander {
    border: none;
    outline: none;
    color: white;
    background-color: var(--MainOrange);
    padding: 10px;
    border-radius: 7px;
    width: 170px;
}
.PrixInfo h5 {
    font-size: 50px;
    font-weight: 900;
    color: var(--RvBlue);
    text-align: center;
}
.PrixInfo p {
    text-align: center;
}
.TextContainer {
    background-color: var(--MainOrange);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}
.TextContainer2 {
    padding: 10px;
    text-align: center;
    font-weight: 500;
}
.TextContainer p:first-child {
    font-size: 2.5rem;
}
.TextContainer p:nth-of-type(2) {
    font-size: 1.75rem;
}
.TextContainer2 p:first-child {
    color: var(--RvBlue);
    font-size: 50px;
}
.TextContainer2 p:nth-of-type(2) {
    font-size: 1.25rem;
    padding: 10px 50px;
}
/* ---------- Cards Section ---------- */
.CardsContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}
.CardBox {
    width: 45%;
    height: 150px;
    padding: 15px;
}
.CardRow {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}
.CardRow i ,
.CardRow svg {
    font-size: 3rem;
    padding: 15px;
    color: var(--MainOrange);
}
.RowInfo h4 {
    color: var(--RvBlue);
    font-size: 1.5rem;
    padding-bottom: 5px;
}
/* ---------- Last Section ---------- */
.TextContainer3 {
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.TextContainer3 p:first-child {
    font-size: 48px;
}
.TextContainer3 p:nth-of-type(2) {
    font-size: 40px;
}
.TextContainer3 p:nth-of-type(3) {
    font-size: 16px;
    color: gray;
}
.DemoBtn {
    width: 100%;
    padding-top: 25px;
    text-align: center;
}
.DemoBtn a {
    background-color: #3464ff;
    color: white;
    padding: 10px 25px;
    border-radius: 7px;
    font-size: 30px;
}
.DemoBtn p {
    color: gray;
    padding-top: 10px;
    border-radius: 7px;
    font-size: 16px
}
.AppStoreBtn {
    padding-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.AppStoreBtn a button {
    background-image: url(/assets/Img/play2.png);
    background-color: transparent;
    border: 0;
    width: 23%;
    height: 15vh;
    background-size: 100% 100%;
    margin-left: 30px;
}
/* ---------- Footer ---------- */
footer {
    display: flex;
    background-color: #1F3EA3;
    height: 300px;
}
.footer {
    height: 100%;
    width: 25%;
    text-align: center;
    padding: 30px;
}
.footer img {
    width: 90%;
    height: 18vh;
}
.footer p {
    color: white;
    font-size: 30px;
    padding-bottom: 10px;
}
.Links {
    display: flex;
    padding: 0 10px 0 50px;
    flex-direction: column;
    align-items: flex-start;
}
.Links a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 3px;
    font-weight: 600;
    line-height: 2;
}
/* ____________________________________________ Connexion ____________________________________________*/
/* ---------- Main Section ---------- */
.C_MainSection {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.C_FormHolder {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.C_logo {
    display: flex;
    justify-content: center;
}
.C_logo a{
    font-size: 70px;
    font-family: cursive;
    font-weight: 900;
    background: -webkit-linear-gradient(var(--MainOrange), rgb(204 204 253));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.C_Form {
    background-color: white;
    border-radius: 7px;
    box-shadow: 5px 10px 8px #888888;
    width: 100%;
    height: 70%;
    overflow: hidden;
}
.C_FormText {
    width: 100%;
    height: 30%;
    background-color: var(--MainOrange);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.C_FormText p {
    font-size: 28px;
    font-weight: 600;
    color: white;
    padding: 10px 0;
}
.C_LogInForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 70%;
    justify-content: center;
    align-items: center;
}
form.C_TheForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    padding: 20px 0;
}
.C_TheForm input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--MainOrange);
    margin-bottom: 10px;
    background-color: #fff2ee;
}
.C_CheckBoxHolder {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
}
.C_CheckBoxHolder input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}
.C_CheckBoxHolder label {
    font-size: 18px;
    padding-left: 10px;
}
.C_TheForm button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: var(--MainOrange);
    color: white !important;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.C_TheForm button:hover {
    background-color: #da0101;
    
}
.C_Infos {
    padding-top: 20PX;
    width: 80%;
    font-size: 17px;
}
.C_Infos a{
    color: blue;
}
.Gl_ErrorMessage {
    width: 100%;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #ffa2ab;
    color: #dc3545;
    font-size: 14px;
}
.Gl_ValidMessage {
    width: 100%;
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    font-size: 14px;
}
/* ____________________________________________ Forgot Password ____________________________________________*/
/* ---------- Main Section ---------- */
.FP_Form {
    height: 40%!important;
}
/* ____________________________________________ Inscription ____________________________________________*/
/* ---------- Main Section ---------- */
.I_FormHolder {
    height: auto;
}
.I_logo {
    height: 10%;
}
.I_Form {
    height: 80%;
}
.I_LogInForm {
    height: 85%;
    padding: 20px 0;
}
.I_FormText {
    height: 15%;
}
.I_PackSelect {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--MainOrange);
    margin-bottom: 10px;
    background-color: #fff2ee;
}
.I_TheForm p{
    font-size: 12px;
}
.I_CheckBoxHolder label,
.I_TheForm p a{
    color: blue;
    cursor: pointer;
    font-size: 14px;
}
/* ____________________________________________ Conditions ____________________________________________*/
/* ---------- Main Section ---------- */
.CO_TextHolder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 70px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.CO_TextTitle h1 {
    font-size: 40px;
    font-weight: 500;
}
.CO_TextDetail1 {
    text-align: justify;
    width: 80%;
    padding-top: 50px;
    font-size: 18px;
}
.CO_TextDetail2 {
    padding-top: 50px;
    width: 80%;
    text-align: justify;
}
.CO_TextDetail2 .CO_Title {
    width: 100%;
    text-align: center;
    font-size: 23px;
    font-weight: 400;
}
p.CO_NormalText {
    font-size: 18px;
    line-height: 1.6;
    padding-top: 15px;
}
.CO_Title2 {
    padding-top: 20px;
    font-size: 26px;
    font-weight: 400;
}
.CO_Title3 {
    width: 100%;
    padding-top: 10px;
    font-size: 20px;
}
/* --------------------------- */
.CompanyInfos {
    width: 100%;
    height: 100%;
    border: 1px solid var(--RvBlue);
}
.CompanyInfos p.pText {
    border: 1px solid var(--RvBlue);
    height: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.CompanyInfos2 {
    display: flex;
    border: 1px solid var(--RvBlue);
    width: 50%;
}
.CompanyInfos2 div{
        width: 50%;
}
.CompanyInfos2 p.pText {
    font-size: 20px;
    font-weight: 500;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--RvBlue);
    padding: 10px;
}