body, html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    --main-color: #0d72ea;
    --text-color: #666;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    margin: 0;
    max-width: 100%;
}

/* ///////////////////////////////////////////////////
                        Header
//////////////////////////////////////////////////// */

header {
    padding: 10px 0;
    display: none;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    z-index: 100;
    animation: showHeader .2s ease-in-out forwards;
    opacity: 0;
}

@keyframes showHeader {
    100% {
        opacity: 1;
    }
}

header ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    transition: .3s;
}

header .move {
    transform: translateX(0) !important;
    display: flex;
}

header a {
    text-decoration: none;
    cursor: pointer !important;
    color: white;
}

header .dropdown img {
    width: 20px;
    height: 20px;
    padding-top: 5px;
}

header nav {
    width: 100%;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menu_btn {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    appearance: none;
    display: none;
    outline: none;
    cursor: pointer;
}

header .menu_btn span{
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 5px;
}

header .menu_btn span:nth-child(3) {
    width: 70%;
}

header .logo {
    width: 140px;
    height: 78px;
}

header .dropdown {
    position: relative;
    display: inline-block;
}

header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

header .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

header .dropdown-content a:hover {
    background-color: #f1f1f1
}

header .dropdown:hover .dropdown-content {
    display: block;
}

header ul li:last-child  {
    font-family: inherit;
    font-size: 20px;
    background: #105A93;
    color: white;
    padding: 0.4em 1em 0.4em 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

header ul li:last-child > div {
    padding: 0.4em 1em 0.4em 0.9em;
    display: flex;
}

header ul li:last-child img {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
    width: 26px;
    height: 26px;
}

header ul li:last-child:hover img {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

header ul li:last-child span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

header ul li:last-child:hover span {
    transform: translateX(7em);
}

header ul li:last-child:active {
    transform: scale(0.95);
}

header @keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

header #sign-out {
    display: none;
}

header #header-dashboard-btn {
    display: none;
}

/* ///////////////////////////////////////////////////
                       Cookie
//////////////////////////////////////////////////// */

.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    background-color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    border-radius: 20px;
}

.cookie-consent-popup p:first-of-type {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cookie-consent-popup p {
    color: #202531;
}

.cookie-consent-popup .cookie-desc {
    margin-bottom: 30px;
}

.cookie-consent-popup button {
    margin: 10px 0;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
}

.cookie-consent-popup .accept-btn {
    background-color: #e5f3ff;
    color: #0D4DA0;
}

.cookie-consent-popup .decline-btn {
    background-color: #fce5e8;
    color: #97112A;
}


/* ///////////////////////////////////////////////////
                        Home
//////////////////////////////////////////////////// */


.home * {
    color: white;
}

.home {
    background-color: #070809;
}

.home .container h2 {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 20px;
}

.home .section-description {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.home .container {
    margin: 0 auto;
    text-align: center;
    max-width: 1200px;
}

.home .container > div {
    margin-top: 150px;
}

.home .top-section {
    background: linear-gradient(246deg, #0178BB 3%, #6FD5F7 78.53%);
    height: 100vh;
    position: relative;
}

.home .top-section > div:first-of-type {
    text-align: center;
    transform: translateX(-15%) translateY(60%);
}

.home .top-section h1 {
    font-size: 130px;
    margin: -20px 0;
}

.home .swiss-made a {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.home .swiss-made img {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.home .outer {
    background-image: url(../src/icon/gray-star-icon.svg);
    height: 25px;
    width: 150px;
    background-size: 30px;
}

.home .inner {
    background-image: url(../src/icon/star-icon.svg);
    height: 25px;
    width: 0;
    background-size: 30px;
}

.home .stars-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    max-width: 200px;
}

.home .stars-container p {
    font-size: 20px;
    font-weight: 900;
}

.home #ratting {
    margin: 0 auto;
}

.home .castle-3d-image {
    width: 20%;
    position: absolute;
    bottom: 160px;
    right: 500px;
    float: right;
}

.home .clouds-image {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.home .functioning-section > div {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.home .functioning-section > div > div {
    background-color: #222429;
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding: 100px 20px 60px 20px;
    flex: 1;
    cursor: pointer;
    transition: 0.1s;
}

.home .functioning-section > div > div:hover {
    scale: 105%;
    background-color: #33363e;
}

.home .functioning-section > div > div p:first-of-type {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 5px;
}

.home .functioning-section > div > div p:nth-of-type(2) {
    font-size: 20px;
    opacity: 70%;
}

.home .functioning-section > div > div p:last-of-type {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 50%;
    font-size: 30px;
}

.home .functioning-section img {
    width: 130px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50px);
}

.home .plans-section > div {
    display: flex;
    gap: 30px;
}

.home .plans-section > div > div {
    background-size: cover;
    border-radius: 20px;
    width: 100%;
    padding: 25px 40px 60px 40px;
    cursor: pointer;
}

.home .plans-section button {
    border: none;
    background-color: white;
    width: 300px;
    color: #2D9399;
    border-radius: 10px;
    font-size: 24px;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
}

.home .plans-section > div:first-of-type > div:first-child {
    background-image: url("../src/image/plan-1-image.svg");
    height: calc(100% - 50px);
}

.home .plans-section > div:first-of-type > div:nth-child(2) {
    background-image: url("../src/image/plan-2-image.svg");
    height: calc(100% - 50px);
}

.home .plans-section > div:first-of-type > div:last-child {
    background-image: url("../src/image/plan-3-image.svg");
}

.home .plans-section .plans-section-price {
    font-size: 50px;
    font-weight: 900;
    margin: 35px 0;
}

.home .plans-section .plans-section-price span {
    font-size: 30px;
    font-weight: 700;
}

.home .plans-section > div > div p:first-child {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.home .plans-section .plans-section-description {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}

.home .plans-section li {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
    font-size: 20px;
}

.home .plans-section li img {
    fill: white;
    color: white;
    margin-right: 15px;
    width: 18px;
    height: 18px;
}

.home .plans-section .unavailable-plan {
    opacity: 30%;
}

.home .plans-section .heberg-plan {
    margin-top: 100px;
}

.home .plans-section .heberg-plan > div:first-of-type {
    text-align: left;
    max-width: 50%;
}

.home .plans-section .heberg-plan > div:first-of-type p:last-of-type {
    font-size: 20px;
    opacity: 80%;
}

.home .plans-section .heberg-plan > div:last-of-type {
    background-image: url("../src/image/heberg-plan-image.svg");
    background-size: cover;
    max-width: 375px;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50px;
}

.home .plans-section .heberg-plan > div:last-of-type p:first-of-type {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 20px;
}

.home .plans-section .heberg-plan li {
    font-size: 20px;
}

.home .plans-section .heberg-plan .price {
    font-size: 40px;
    font-weight: 900;
    margin: 35px 0;
}

.home .dashboard-container {
    position: relative;
}

.home .dashboard-info {
    position: absolute;
    bottom: 40px;
    left: 20px;
    text-align: left;
    max-width: 400px;
}

.home .dashboard-info button {
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    background-color: #C9C9C9;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    color: #0C0C0C;
    display: flex;
    align-items: center;
}

.home .dashboard-info button img {
    width: 10px;
    margin-left: 10px;
}

.home .dashboard-info button:hover {
    padding: 10px 30px;
}

.home .dashboard-info-title {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.home .dashboard-info-desc {
    font-size: 20px;
    margin-bottom: 10px;
}

.home .tools-section .cursor {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    mix-blend-mode: exclusion;
    transform: translate(-50%, -50%);
    transition: height 0.1s, width 0.1s;
    z-index: 10000;
}

.home .dashboard-image {
    height: 680px;
    width: 100%;
    background-image: url("../src/image/dashboard/dashboard-site-image.png");
    background-size: cover;
    background-position: center;

}

.home .tools-section .dashboard-image {
    cursor: none;
}

.dashboard-image:hover ~ .cursor {
    width: 80px;
    height: 80px;
}

.home .tools-section .dashboard-image {
    border: 2px solid #212121;
    border-radius: 10px;
}

.home .tools-section img {
    width: 100%;
    height: auto;
}

.home .tools-section > div:first-of-type {
    margin-bottom: 100px;
}

.home .tools-section .platform-container {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto;
    gap: 20px;
}

.home .tools-section .platform-container {
    margin-top: 25px;
}

.home .tools-section .platform-container a {
    all: inherit;
}

.home .tools-section .platform-container img {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: 0.2s;
}

.home .tools-section .platform-container a:nth-child(2) img {
    width: 80px;
}

.home .tools-section .platform-container img:hover {
    scale: 105%;
}

.home .skills-section > div {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.home .skills-section > div div:hover {
    scale: 105%;
    background-color: #1B1B1B;
}

.home .skills-section > div div {
    background-color: #161616;
    position: relative;
    max-width: 380px;
    border-radius: 20px;
    text-align: left;
    padding: 20px;
    cursor: pointer;
    transition: 0.1s;
}

.home .skills-section > div:first-of-type {
    margin-bottom: 30px;
}

.home .skills-section > div img:first-of-type {
    transition: 0.3s;
}

.home .skills-section > div img:first-of-type:hover {
    scale: 120%;
}

.home .skills-section > div div p:first-of-type {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
}

.home .skills-section > div div p:nth-child(2) {
    opacity: 50%;
}

.home .skills-section > div img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
}

.home .news-section > div {
    display: flex;
    gap: 25px;
    text-align: left;
}

.home .news-section .new {
    flex: 1;
    width: 100%;
}

.home .news-section .new img:first-of-type {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.home .news-section .new > div {
    position: relative;
}

.home .news-section .news-type {
    opacity: 50%;
    font-size: 16px;
}

.home .news-section .news-title {
    font-size:  30px;
    font-weight: 900;
    margin-bottom: 5px;
}

.home .news-section .new > div p:last-of-type {
    position: absolute;
    top: 5px;
    right: 0;
}

.home .securePaiement div {
    width: 100%;
    background-image: url("../src/image/secure-paiement-image.webp");
    height: 410px;
    border-radius: 19px;
    padding-left: 60px;
    padding-top: 50px;
    background-size: cover;
    background-position: right;
    text-align: left;
}

.home .securePaiement div p:first-child {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.home .securePaiement div p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 70px;
    max-width: 700px;
}

.home .securePaiement a {
    text-decoration: none;
    font-size: 25px;
    padding: 10px 80px;
    border-radius: 10px;
    background-color: #003F95;
}


/* ///////////////////////////////////////////////////
              Thermes d'utilisation
//////////////////////////////////////////////////// */

.terms {
    background-color: white;
}

.terms p, .terms span {
    color: black;
}

.terms main {
    letter-spacing: .3px;
    line-height: 35px;
    padding-bottom: 100px;
}

.terms h1 {
    font-size: 30px;
    margin-bottom: 50px;
}

.terms img {
    margin: 0 auto;
}

.terms span {
    font-weight: bold;
    margin: 0 0 10px;
    display: inherit;
    font-size: 22px;
}

.terms main a {
    color: dodgerblue;
}

.terms .title-bar {
    width: 500px;
    margin-top: 460px;
    position: fixed;
    top: -300px;
    left: 6%;
    z-index: 10;
}

.terms .title-bar a {
    text-decoration: none;
    display: block;
    text-align: left;
    color: #ccc;
}

.terms .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.terms .container-text {
    margin: 0 auto;
    text-align: center;
    max-width: 700px;
}

.terms .container-termes p, span {
    text-align: left;
}


.terms.container-termes p {
    margin: 10px 0 80px 0;
}

.terms .title-bar a.active {
    color: #000; /* Couleur au clic (noir) */
}

/* ///////////////////////////////////////////////////
                    Connexion
//////////////////////////////////////////////////// */

.pLogInSignIn {
    overflow: hidden;
}


.pLogInSignIn h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

.pLogInSignIn #progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    margin: 20px auto;
    background-color: #ccc;
    border-radius: 10px;
    height: 10px;
}

.pInscription .step {
    width: 25px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 14px;
    line-height: 40px;
    position: relative;
}

.pInscription .active {
    background-color: #007bff;
}

.pInscription .step span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    white-space: nowrap;
    color: black;
}

.pLogInSignIn #loginDivcontain .email {
    margin-bottom: 30px;
}

.pLogInSignIn #loginDivcontain {
    text-align: center;
}

.pLogInSignIn .loginContainer {
    text-align: left;
    margin-top: 20px;
}

.pLogInSignIn .password {
    margin-bottom: 10px;
}

.pInscription #retourButton {
    user-select: none;
    cursor: pointer;
    transform: translateY(30px);
    text-align: center;
    display: none;
}

.pLogInSignIn header img {
    margin: 30px 0 0 30px;
}

.pLogInSignIn input:not([type="checkbox"],[class="code-input"]) , select {
    width: 100%;
    height: 33px;
    background-color: #d8e0f0;
    border-radius: 5px;
    border: none;
    padding-left: 5px;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 30px !important;
    outline-color: #A0CFFF;
    max-width: 100%;
}

.pLogInSignIn .checkbox {
    display: flex;
}

.pLogInSignIn .checkbox label {
    margin-left: 5px;
}

.pLogInSignIn .code-input {
    height: 100px;
    width: 50px;
    font-size: 40px;
    text-align: center;
    background-color: #d8e0f0;
    border-radius: 5px;
    border: none;
}

.pLogInSignIn .code-input input[type="number"] {
    -moz-appearance: textfield;
}

.pLogInSignIn .pInscription .code-input input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#resend-email {
    cursor: pointer;
    color: #00a7ff;
}

#email-confirm p {
    margin-bottom: 10px;
}

#email-confirm input {
    margin-top: 20px;
    margin-bottom: 40px;
}

#email-confirm button {
    text-align: center;
    background-color: #007aff;
    height: 50px;
    width: 443px;
    border: 0;
    font-size: 15px;
    margin-top: 10px;
    border-radius: 10px;
    color: white;
}

.pLogInSignIn label {
    display: block;
}

.pLogInSignIn input[type="submit"] {
    width: 100%;
    height: 42px;
    background-color: #007aff;
    color: white;
    border-radius: 20px;
    border: none;
    margin-top: 30px;
    cursor: pointer;
}

.checkbox {
    display: flex;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

#back {
    background-color: transparent;
    border: none;
    color: #007aff;
    font-size: 18px;
    transform: translateY(15px);
    cursor: pointer;
}

.iti__selected-flag {
    top: 6px;
    height: 33px !important;
    border-radius: 4px;
    transition: .3s;
}

input#phone {
    padding-left: 47px !important;
    top: 6px;
    width: 443px;
}

.iti__country-list {
    border-radius: 4px !important;
    z-index: 999 !important;
    box-shadow: 0 0 16px 0 rgb(0 0 0 / 8%) !important;
    border: 1px solid #ececec !important;
    width: 270px !important;
}

.phonediv {
    margin-bottom: 40px;
}

.pLogInSignIn .inscriptionButton, .pLogInSignIn #next {
    border: none;
    background-color: #007aff;
    border-radius: 10px;
    color: white;
    height: 50px;
    width: 100%;
    font-size: 15px;
    position: relative;
    margin-top: 30px;
    cursor: pointer;
}

.pLogInSignIn #forgetMdp {
    margin-bottom: 30px;
    text-align: center;
    margin-top: 40px;
    opacity: 0.6;
}

.pLogInSignIn #emailResetMdpDiv {
    text-align: center;
}

.pLogInSignIn #forgotMdpButton {
    margin-top: 30px;
}

.pLogInSignIn .resetMdpContainer {
    padding-top: 20px;
}

.pLogInSignIn .textReset {
    margin-bottom: 20px;
}

.pLogInSignIn #emailResetMdpDiv p {
    text-align: left;
}

.pLogInSignIn #errorResetMail {
    color: red;
}

.pLogInSignIn a {
    text-decoration: none;
    color: #006DF0;
}

.pLogInSignIn .resetMdpDiv {
    text-align: center;
}

.pLogInSignIn .resetMdpDiv input {
    margin-bottom: 30px;
}

.pLogInSignIn .resetMdpDiv h1 {
    margin-bottom: 30px;
}

.pLogInSignIn .resetMdpDiv label {
    font-size: 25px;
}

.pLogInSignIn .resetMdpDiv .error {
    max-width: 300px;
    margin-bottom: 10px;
}

.pLogInSignIn .resetMdpDiv button {
    margin-top: 50px;
}

.pLogInSignIn .noAccountLogin {
    text-align: center;
    margin-top: 30px;
}
.pLogInSignIn hr {
    margin-top: 30px;
}

.pLogInSignIn #dejaIncrit {
    text-align: center;
    margin-top: 20px;
}



.pLogInSignIn .login {
    height: 550px;
    width: 373px;
    border-radius: 25px;
    background: #ffffff;
    box-shadow:  5px 5px 10px #d9d9d9,
    -5px -5px 10px #f0f0f0;
    margin: 0 auto;
    padding: 30px 44px 0 44px;
    transform: translateY(-50px);
}

.pLogInSignIn .loginDiv {
    padding-bottom: 200px;
}

.pLogInSignIn .login .error{
    display: none;
    color: #cd3d64;
    position: absolute;
    transform: translateY(-25px);
}

.pLogInSignIn #SignInDiv .error{
    display: none;
    color: #cd3d64;
    position: absolute;
    transform: translateY(-25px);
}

.pLogInSignIn #SignInDiv #errorTel{
    display: none;
    color: #cd3d64;
    transform: translateY(10px);
}

.pLogInSignIn .errorMdp{
    display: none;
    color: #cd3d64;
    position: absolute;
    transform: translateY(-10px) translateX(25px);
}

.pLogInSignIn #SignInDiv {
    text-align: center;
    margin: 75px auto 0 auto;
    width: 443px;
    transform: translateX(-200px);;
}

.pLogInSignIn #step1 div, #step2 div{
    text-align: left;
}

.pLogInSignIn .devCastleImage {
    float: right;
    bottom: 0;
    right: 0;
    position: absolute;
}

.pLogInSignIn .passwordDiv {
    position: relative;
    display: flex;
}

.pLogInSignIn .passwordDiv img {
    position: absolute;
    right: 0;
}

.pLogInSignIn .inscriptionButton-loading span{
    visibility: hidden;
    opacity: 0;
}

.pLogInSignIn .inscriptionButton-loading:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: inscriptionButton-loading 1s ease infinite;
}

@keyframes inscriptionButton-loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.pLogInSignIn main {
    display: flex;
    justify-content: space-between;
}


.pLogInSignIn .mouse_move img {
    position: absolute;
}

.pLogInSignIn #img1 {
    width: 500px;
    bottom: -50px;
    position: absolute;
}

.pInscription .bg {
    background-color: #0071CD;
    height: 100%;
    width: 29%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.pInscription .bg h2 {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    color: white;
    font-size: 35px;
    margin-top: 100px;
    z-index: 99;
    position: relative;
}


/* ///////////////////////////////////////////////////
                    Options
//////////////////////////////////////////////////// */

.pOptions {
    background-color: #070809;
    color: white;
    padding: 50px 80px 0 80px;
}

.pOptions .main-options-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pOptions .main-options-container > div:first-of-type {
    max-width: 500px;
    flex: 1;
}

.pOptions .main-options-container > div:first-of-type > p {
    font-size: 18px;
    margin-bottom: 60px;
}

.pOptions .options-container {
    display: flex;
    gap: 50px;
}

.pOptions .options-container div {
    background-size: cover;
    height: 600px;
    max-width: 450px;
    border-radius: 20px;
    text-align: center;
    padding: 20px 20px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.pOptions .options-container div:first-of-type {
    background-image: url("../src/image/option-1-image.svg");
}

.pOptions .options-container div:last-of-type {
    background-image: url("../src/image/option-2-image.svg");
}

.pOptions .options-container button {
    border: none;
    background-color: white;
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    font-size: 24px;
    padding: 15px;
    font-weight: 700;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.pOptions .options-container p {
    margin-bottom: 20px;
}

.pOptions .options-container h2 {
    font-size: 40px;
}

.pOptions .options-container ul {
    text-align: left;
    margin-left: 20px;
}

.pOptions h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.pOptions #timeModifDiv {
    background-color: indianred;
    border: 2px solid darkred;
    padding: 10px;
}

.pOptions .timeModifTitre {
    font-size: 24px;
    margin-left: 10px;
    font-weight: bold;
}

/* ///////////////////////////////////////////////////
                    Rendez-vous
//////////////////////////////////////////////////// */


.pRDV {
    padding: 50px 0;
}

.pRDV h1 {
    text-align: center;
    margin-bottom: 5px;
}

.pRDV .free {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.pRDV>p {
    text-align: center;
}

.pRDV .content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.pRDV .content h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.pRDV #methods {
    display: flex;
    justify-content: space-between;
}

.pRDV #methods button {
    font-size: 1rem;
    padding: 10px 30px;
    border-radius: 5px;
    width: 48%;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    cursor: pointer;
}

.pRDV #methods button.selected {
    background-color: #2C3973;
    color: white;
    border: 0;
}

.pRDV #adress input, .pRDV #adress textarea {
    padding: 7px 10px;
    width: 100%;
    border: 0;
    background-color: #d8e0f0;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    margin-top: 3px;
}

.pRDV #adress input {
    width: calc(100% - 125px);
}

.pRDV #adress textarea {
    resize: vertical;
    min-height: 100px;
}

.pRDV #adress input:first-of-type {
    width: 100px;
    margin-right: 20px;
}

.pRDV #video .plateforms {
    display: flex;
    justify-content: space-between;
}

.pRDV #video button {
    border: 0;
    font-size: 1rem;
    padding: 10px 30px;
    border-radius: 5px;
    width: 30%;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    cursor: pointer;
    margin-bottom: 40px;
}

.pRDV #video button.selected {
    background-color: #2C3973;
    color: white;
    border: 0;
}

.pRDV #video input {
    padding: 7px 10px;
    width: 100%;
    border: 0;
    background-color: #d8e0f0;
    border-radius: 5px;
    font-size: 16px;
}

.pRDV .datetime {
    width: fit-content;
    width: 100%;
}

.pRDV .datetime #datetime-name {
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.pRDV .datetime .selector {
    display: flex;
    justify-content: space-between;
}

.pRDV #calendar {
    width: 40%;
}

.pRDV #calendar .header {
    display: flex;
    width: 100%;
    padding: 5px;
    border-bottom: 2px solid black;
    margin-bottom: 10px;
}

.pRDV #calendar .header *:not(:first-child) {
    margin: 0 5px;
}

.pRDV #calendar .header p {
    font-size: 1.2rem;
}

.pRDV #calendar .header button {
    background: url("../src/Icons/nav-arrow-left.svg") no-repeat;
    background-size: 100%;
    border: 0;
    outline: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.pRDV #calendar .header button:nth-child(2) {
    background: url("../src/Icons/nav-arrow-right.svg");
}

.pRDV #calendar .daynames {
    display: flex;
    justify-content: space-between;
}

.pRDV #calendar .daynames * {
    text-align: center;
    width: 50px;
}

.pRDV #calendar .days {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.pRDV #calendar .days button {
    border: 0;
    outline: none;
    border-radius: 50%;
    aspect-ratio: 1;
    transform: scale(0.75);
    font-size: 1rem;
    cursor: pointer;
    background-color: transparent;
}

.pRDV #calendar .days button.selected {
    background-color: #2C3973;
    color: white;
}

.pRDV #time {
    width: 40%;
}

.pRDV #time .header {
    display: flex;
    width: 100%;
    padding: 5px;
    border-bottom: 2px solid black;
    margin-bottom: 10px;
}

.pRDV #time .header p {
    font-size: 1.2rem;
    height: 25px;
}

.pRDV #time .hours {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-content: flex-start;
    gap: 10px;
}

.pRDV #time .hours button {
    border: 1px solid black;
    border-radius: 5px;
    background-color: transparent;
    font-size: 1rem;
    padding: 10px 15px;
    cursor: pointer;
    height: fit-content;
    width: 100%;
}

.pRDV #time .hours button.selected {
    background-color: #2C3973;
    color: white;
}

.pRDV .infos {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.pRDV #infos-more {
    padding: 5px 10px;
    width: 100%;
    border: 0;
    background-color: #d8e0f0;
    border-radius: 5px;
    margin-bottom: 10px;
    resize: vertical;
    min-height: 100px;
    font-size: 16px;
}

.pRDV #error-message {
    color: #cf0000;
    text-align: center;
    margin-top: 25px;
}

.pRDV #submitButton {
    border: 0;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    width: fit-content;
    align-self: center;
    background-color: #2C3973;
    color: white;
    margin-top: 20px;
    cursor: pointer;
}

.pRDV #popup-ok {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pRDV #popup-ok div {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 50px black;
    padding: 20px;
    width: 50vw;
    height: 50vh;
    position: relative;
    z-index: 100;
}

.pRDV #popup-ok div p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pRDV #popup-ok div a {
    border: 1px solid black;
    border-radius: 5px;
    background-color: #2C3973;
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    width: fit-content;
    cursor: pointer;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

#retour .retourTxt {
    font-size: 23px;
}

#retour {
    cursor: pointer;
    position: absolute;
    top: 50px;
    left: 50px;
}

#retour .retourIcon {
    font-size: 30px;
    transform: translateY(5px);
    margin-right: 4px;
}

#errorTicket {
    text-align: center;
    margin-top: 35px;
}



.pSite-information {
    background: #0B0B0B;
    color: white;
    padding: 0 180px 0 180px;
}

.pSite-information #tabs {
    display: flex;
    justify-content: center;
}

.pSite-information #tabs button {
    background-color: #202020;
    color: white;
    border: 0;
    font-weight: bold;
    margin: 20px;
    padding: 10px;
    width: 240px;
    cursor: pointer;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.pSite-information #info1 {
    transform: translateY(30px) ;
}

.pSite-information #info2 {
    transform: translateY(30px) ;
}

.pSite-information #tabs button.active {
    border-bottom: 3px solid white;
}

.pSite-information #continue-button {
    background-color: white;
    border: none;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 50px;
    cursor: pointer;
    margin: 50px 0 50px 0;
    border-radius: 2px;
}
.pSite-information .numberColor {
    font-size: 20px;
    margin-bottom: 30px;
}

.pSite-information .required {
    color: indianred;
    font-size: 20px;
}

.pSite-information #delete-colors {
    background-color: white;
    color: black;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 0 0 30px;
    position: absolute;
}

.pSite-information input[type="text"], .pSite-information textarea {
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    font-size: 1rem;
    height: 40px;
    width: 300px;
    padding: 0 10px;
}

.pSite-information .page {
    background-color: #202020;
    padding: 60px 60px 150px 60px;
}

.pSite-information .iconSpace {
    height: 160px;
    width: 160px;
    border: 2px white solid;
}

.pSite-information .addIconButton {
    height: 50px;
    width: 160px;
    color: black;
}

.pSite-information .addIconButton img{
    height: 20px;
    width: 20px;
}

.pSite-information .addIconPart {
    display: flex;
}

.pSite-information hr {
    opacity: 20%;
    border: 1.5px solid ;
    margin-top: 50px;
    margin-bottom: 50px;
}

.pSite-information h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 64px;
    line-height: 78px;
}

.pSite-information #design h2 {
    margin-bottom: 20px;
}

.pSite-information #informations h2 {
    margin-bottom: 10px;
}

.pSite-information #informations .site-siteCommTitre {
    margin-top: 30px;
}

.pSite-information .site-textComm {
    margin-bottom: 20px;
}

.pSite-information textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 300px;
    background-color: #2C2C2C;
    color: white;
    font-size: 20px;
    padding: 20px;
}

.pSite-information .imageRecDiv {
    background-image: url("../src/Images/SuisseDrapeauImage.jpg");
    height: 200px;
    width: 400px;
    position: relative;
}

.pSite-information #site-icon-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.pSite-information #site-icon-cont img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
}

.pSite-information #site-icon-cont button {
    margin-top: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 20%;
    aspect-ratio: 1;
}

.pSite-information #site-icon-cont button img {
    width: 100%;
    height: 100%;
}

.pSite-information #site-images-cont {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 5%;
    overflow-y: auto;
    max-height: 750px;
}

.pSite-information input.file-input {
    background-color: white;
    color: black;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}

.pSite-information .site-images-elem img {
    width: 100%;
}

.pSite-information .site-images-elem div {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pSite-information .site-images-elem div button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 10%;
}

.pSite-information .suppImage:hover {
    background-color: black;
    opacity: 100%;
}

.pSite-information .suppImage {
    opacity: 0%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.pSite-information .info {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto;
    transform: translateY(90%);
    user-select: none;
}

.pSite-information label {
    font-size: 20px;
    max-width: 200px;
}

.pSite-information .trashButton {
    background-color: transparent;
    border: none;
    transition: 0.2s;
}

.pSite-information .trashButton:hover {
    scale: 110%;
}

.pSite-information .addColor {
    height: 5vw;
    width: 5vw;
    border: 2px solid white;
    background: url("../src/Icons/AddIcon.webp") no-repeat;
    background-size: 60%;
    background-position-x: 50%;
    background-position-y: 50%;
    cursor: pointer;
    padding: 0;
    opacity: 40%;
}

.pSite-information #palette input[type="color"] {
    height: 5.5vw;
    width: 5vw;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background-color: transparent;
    transform: translateY(2px);
    margin-right: 5px;
}

.pSite-information #palette input[type="color"]::-webkit-color-swatch {
    border: none;
}
.pSite-information #palette input[type="color"]::-moz-color-swatch {
    border: none;
}

/* ///////////////////////////////////////////////////
                    Maquette & dev
//////////////////////////////////////////////////// */

.pMaquette-Developpement body {
    background: linear-gradient(119.18deg, #0C1436 1.78%, #000000 105.13%), #FFFFFF;
    color: white;
    font-size: 20px;
    text-align: center;
    animation: apparition2 0.1s ease-in-out forwards;
}

.pMaquette-Developpement .page h1 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 40px;
}

.pMaquette-Developpement #imageView {
    width: 250px;
}

.pMaquette-Developpement .pagevi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    width: fit-content;
    margin: 20px auto;
}

.pMaquette-Developpement .pageViewer {
    padding: 30px;
}

.pMaquette-Developpement .pageViewer h2 {
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 100%;
    font-weight: normal;
    transition: 0.4s;
}

.pMaquette-Developpement .pageViewer a {
    display: block;
    height: fit-content;
}

.pMaquette-Developpement .pageViewer{
    transition: 0.3s;
}

.pMaquette-Developpement .pagevi:hover .pageViewer{
    opacity: .5;
    filter: blur(4px);
}

.pMaquette-Developpement .pagevi .pageViewer:hover{
    opacity: 1;
    filter: blur(0px);
    transform: scale(1.1);
}

.pMaquette-Developpement .separateur {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    opacity: 20%;
}

.pMaquette-Developpement .page #divStatus {
    width: 208px;
    height: 40px;
    background-color: #4F4F4F;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pMaquette-Developpement #modifDemande #modifButtonText {
    width: 300px;
    height: 200px;
    background-color: white;
    color: #0C1436;
}

.pMaquette-Developpement #modifDemande h2 {
    margin-bottom: 30px;
}

.pMaquette-Developpement #modifDemande p:nth-child(3) {
    margin-bottom: 30px;
}

.pMaquette-Developpement #modifDemande p {
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 20px;
    max-width: 1000px;
}

.pMaquette-Developpement .modifTitre {
    margin: 60px 0 20px 0;
}

.pMaquette-Developpement #modifText {
    opacity: 50%;
    max-width: 600px;
    margin: 0 auto 0 auto;
    text-align: center;
}

.pMaquette-Developpement .page #maquetteDate {
    font-size: 16px;
    opacity: 60%;
}

.pMaquette-Developpement .page .mailEnvoyeP {
    margin-top: 20px;
    margin-bottom: 40px;
}

.pMaquette-Developpement .page input {
    padding: 0 20px;
    height: 49px;
    background-color: #2C3973;
    border: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
    margin: 40px auto 0 auto;
    width: 400px;
}

.pMaquette-Developpement .page #nextStepButton {
    opacity: 50%;
    margin-bottom: 350px;
}

.pMaquette-Developpement main {
    padding-left: 60px;
    padding-right: 60px;
}

.pMaquette-Developpement main a {
    color: white;
}

.pMaquette-Developpement main .blueButton {
    color: white;
}

.pMaquette-Developpement #modifDemandeText {
    min-height: 300px;
    min-width: 800px;
    resize: both;
    padding: 10px;
    background-color: transparent;
    color: white;
    font-size: 16px;
}

/* ///////////////////////////////////////////////////
                    résiliation
//////////////////////////////////////////////////// */

.pResilisation main {
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
}

.pResilisation main a {
    color: black;
}

.pResilisation main .blueButton {
    color: white;
}

.pResilisation textarea {
    max-width: 800px;
    min-width: 800px;
    min-height: 300px;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.pResilisation .dashButton {
    display: block;
    margin: 100px auto 60px auto;
    width: 429px;
    height: 62px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 9px;
    font-size: 20px;
    background-color: #D9D9D9;
    cursor: pointer;
}

.pResilisation .retourAccueil {
    display: block;
    text-align: center;
    margin-bottom: 150px;
}

.pResilisation h1 {
    margin-top: 30px;
}

.pResilisation p {
    margin: 20px 0;
}

.pResilisation #sendResilisationButton {
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: #006DF0;
    color: white;
    font-size: 16px;
    margin-bottom: 70px;
}


/* ///////////////////////////////////////////////////
              Tableau de bord
//////////////////////////////////////////////////// */


.pDashboard ::-webkit-scrollbar {
    width: 10px;
}


/* Track */
.pDashboard ::-webkit-scrollbar-track {
    background: #232323;
}

/* Handle */
.pDashboard ::-webkit-scrollbar-thumb {
    background: white;
}

.pDashboard {
    background-color: #0C0C0C;
    display: flex;
}

/* panels */
.pDashboard .panels {
    height: 100vh;
    width: 17vw;
    border-right: #232323 solid 2px;
    padding: 10px 0;
    position: fixed;
}

.pDashboard .panels .list {
    display: flex;
    justify-content: space-between;
}

.pDashboard .panels ul li button {
    background-color: transparent;
    outline: none;
    border: none;
    margin: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: 200ms;
}

.pDashboard .panels ul li button.active {
    opacity: 1;
}

.pDashboard .panels ul li button span {
    font-size: 1.5rem;
    color: white;
}

.pDashboard .panels ul li button img {
    height: 30px;
    margin: 0 10px;
}

.pDashboard .panels .commandlist {
    width: 17vw;
    border-top: #232323 solid 2px;
    position: absolute;
    bottom: 0;
}

.pDashboard .panels #selector {
    width: 5px;
    background-color: white;
    transform: translateY(10px);
    transition: 200ms;
    border-radius: 5px 0 0 5px;
}

/* content */
.pDashboard .content {
    height: 100vh;
    width: 80vw;
    color: white;
    padding: 30px;
    margin-left: 17vw;
}

.pDashboard .content h1 {
    margin-bottom: 50px;
}

.pDashboard .content h2 {
    margin-top: 30px;
}

.pDashboard .content table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
}

.pDashboard .content table tr {
    border-top: 2px solid #232323;
    border-bottom: 2px solid #232323;
    height: 2.5rem;
}

.pDashboard .content table tr td:first-child {
    width: 20rem;
    opacity: 0.5;
}

.pDashboard .content table tr td:last-child {
    margin-right: 20%;

    cursor: pointer;
}

.modifMdpButton {
    border: none;
    width: 90px;
    height: 30px;
    margin: 10px 0;
    border-radius: 3px;
}

.pDashboard .content table tr img {
    height: 15px;
}

/* Compte */
.pDashboard .content .account p {
    opacity: 0.3;
}

/* Site */
.pDashboard .siteImage {
    height: 291px;
    width: 554px;
    border-radius: 20px;
    padding: 50px 30px;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
}

.pDashboard .siteImage img {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 0;
}

.pDashboard .siteImage .textContainer {
    position: absolute;
    z-index: 1;
}

.pDashboard .siteImage #siteNom {
    font-size: 40px;
    font-weight: 500;
}

.pDashboard .siteImage #siteUrl {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
    cursor: pointer;
}

.pDashboard .siteImage #reloadImageIcon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
    scale: 120%;
    font-weight: 300;
}

.pDashboard #noUrlSite {
    opacity: 50%;
    cursor: pointer;
}

.pDashboard .attenteDiv {
    height: 291px;
    width: 500px;
    background-color: #171717;
    border-radius: 10px;
    position: relative;
}

.pDashboard .attenteDiv #onStatus {
    padding-left: 30px;
    padding-top: 30px;
}

.pDashboard .attenteDiv #titreAttenteDiv {
    font-size: 35px;
    margin-bottom: 40px;
}

.pDashboard .attenteDiv .statusText {
    opacity: 50%;
    font-size: 18px;
}

.pDashboard .attenteDiv #statusAttenteDiv {
    font-size: 23px;
    margin-bottom: 30px;
}

.pDashboard .attenteDiv #dateAttenteDiv {
    opacity: 50%;
    font-size: 14px;
}

.pDashboard .attenteDiv .textAttenteDiv {
    opacity: 40%;
    font-size: 20px;
    text-align: center;
    transform: translateY(500%);
}

.pDashboard .hautPageSite {
    display: flex;
    justify-content: space-between;
}

.pDashboard .content .site #compteAccessSitePage p {
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 50px;
}

.pDashboard .content .site button {
    background-color: #232323;
    height: 50px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    color: white;
    border-radius: 5px;
    justify-content: center;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.pDashboard .content .site #statusGoButton  {
    position: absolute;
    top: 120px;
    right: 50px;
    width: 150px;
}

.pDashboard .content .site #statusPaiementButton  {
    position: absolute;
    top: 120px;
    left: 30px;
    width: 200px;
}

.pDashboard .content .site #statusGoButton .material-symbols-outlined  {
    margin: 0;
}

.pDashboard .content .site .infoDiv p {
    border-bottom: 2px solid #232323;
    display: block;
    width: fit-content;
    margin-top: 50px;
}

.pDashboard .content .site a img {
    height: 30px;
    margin-right: 5px;
}

.codeSource {
    margin-top: 30px;
    margin-bottom: 10px;
}

.downloadCodeIcon {
    margin-right: 5px;
}

/* Hebergement */
.pDashboard .content .hosting .columns {
    display: flex;
}

.pDashboard .card :first-child {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.pDashboard .card .price {
    margin: 30px 0;
    font-weight: 600;
}

.pDashboard .card :last-child {
    opacity: 0.5;
}

.pDashboard .hosting .infos {
    margin-left: 50px;
}

.pDashboard .hosting #hostingNoSub .container {
    display: flex;
}

.pDashboard .hosting #hostingNoSub .buttonContainer {
    display: flex;
    margin-top: 50px;
}

.pDashboard .card {
    background-color: #2C3973;
    width: 258px;
    min-width: 258px;
    text-align: center;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.pDashboard #hostingNoSub .card {
    height: 400px;
}

.pDashboard #hostingSub .card {
    height: 360px;
}

.pDashboard .card .price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.pDashboard .card img {
    margin-bottom: 30px;
    margin-top: 30px;
    width: 50%;
}

.pDashboard #hostingNoSub .noHostP {
    position: absolute;
    right: 40%;
    left: 40%;
    transform: translateY(100px);
    opacity: 40%;
}

.pDashboard #hostingNoSub #hostingDiv1, .hostingDiv2 {
    max-width: 600px;
    margin-left: 60px;
}

.pDashboard #hostingNoSub #hostingDiv1 .text {
    font-size: 18px;
}

.pDashboard #hostingNoSub #hostingDiv1 h2, .hostingDiv2 h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.pDashboard #hostingNoSub #hostButton {
    border: none;
    width: 232px;
    height: 45px;
    background: linear-gradient(252.04deg, #98BED3 8.82%, #51779C 99.46%), #D9D9D9;
    border-radius: 10px;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

.pDashboard #inResilDiv {
    opacity: 50%;
}

.pDashboard #resilDiv div {
    opacity: 50%;
}

.pDashboard #resiliationButton {
    width: 300px;
    height: 45px;
}

.pDashboard .resilDiv button {
    margin-top: 50px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background-color: #232323;
    color: white;
}

.pDashboard #hostingSub p{
    font-size: 22px;
}

.pDashboard #hostingSub .infoHeberg{
    margin-bottom: 20px;
}

.pDashboard #hostingSub .name {
    opacity: 40%;
}

.pDashboard #infoSupp {
    color: #A0CFFF;
    font-size: 18px;
    transform: translateX(20px) translateY(10px);
    cursor: pointer;
    user-select: none;
}

.pDashboard #hostingSub hr {
    opacity: 20%;
    margin: 0 50px 0 140px;
}

.pDashboard .hosting #tableDiv {
    transform: translateY(100px);
}

.pDashboard .hosting #tableDiv h2 {
    font-weight: 400;
}

.pDashboard .hosting #tableDiv table {
    font-weight: 100;
}

.pDashboard .hosting .tableHeader th {
    opacity: 50%;
}

.pDashboard .hosting th {
    font-weight: normal;
}

.pDashboard #popup-hebergement {
    background: linear-gradient(252.04deg, #2C3973 8.82%, #51779C 99.46%);
    border-radius: 14px;
    max-width: 891px;
    position: absolute;
    color: white;
    padding: 0 30px 50px 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}

.pDashboard .hebergStatus {
    display: flex;
}

.pDashboard #statusColorPoint {
    width: 10px;
    height: 10px;
    margin-left: 10px;
    margin-top: 9px;
    border-radius: 100%;
}

.pDashboard #popup-hebergement .textHebergPopup {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.pDashboard #popup-hebergement h1 {
    margin: 50px 0;
}

.pDashboard #popup-hebergement h2 {
    margin-bottom: 20px;
}

.pDashboard #popup-hebergement button {
    width: 40px;
    height: 20px;
}

/* Support */
.pDashboard .content .support .banner {
    background-color: #0071CD;
    padding: 30px 150px 30px 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.pDashboard .content .support .banner img {
    position: absolute;
    width: 465px;
    right: 0;
    bottom: 0;
}

.pDashboard .content .support .banner h1 {
    font-size: 50px;
    margin: 30px 0 20px 0;
    font-style: italic;
    font-weight: 700;
}

.pDashboard .content .support .banner p {
    font-size: 20px;
}


.pDashboard .content .support .h2p {
    display: flex;
    align-items: end;
    margin: 50px 0 20px;
}

.pDashboard .content .support .h2p h2 {
    margin: 0;
}

.pDashboard .content .support #tickets-list-answers {
    font-size: 16px;
}

.pDashboard .content .support .h2p p {
    margin-left: 15px;
    display: block;
    width: fit-content;
    opacity: 0.5;
    font-size: 0.7rem;
}

.pDashboard .content .support .columns {
    display: flex;
    align-items: center;
}

.pDashboard .content .support .new-ticket{
    background-color: #86B3DC;
    height: 50px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    color: white;
    border-radius: 5px;
    justify-content: center;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transform: translateX(50%);
}

.pDashboard .freePik {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 12px;
    opacity: 50%;
    margin: 20px 40px;
}

.pDashboard .freePik a {
    text-decoration: none;
    color: white;
}

.pDashboard .content .support .new-ticket span {
    margin-right: 10px;
    margin-left: 0;
}

.pDashboard .content .support .tickets {
    display: flex;
    height: 20vh;
    width: 50%;
    justify-content: space-between;
}

.pDashboard .content .support .tickets .scrollbar {
    width: 10px;
    height: calc(100% - 5px);
    background-color: #232323;
}

.pDashboard .content .support .tickets .scrollbar .handler {
    width: 100%;
    height: 20px;
    background-color: white;
    opacity: 0.5;
    cursor: pointer;
}

.pDashboard .content .support .tickets .list {
    width: calc(100% - 30px);
    overflow: auto;
    padding-right: 20px;
}

.pDashboard .content .support .tickets .list button {
    background-color: #232323;
    border: 0;
    color: white;
    padding: 10px 30px;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pDashboard .content .support .tickets .list button .reddot {
    background-color: #DB6262;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Popups */
#popup-blur {
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(4px);
}

.pDashboard .popup {
    background-color: #232323;
    height: 70vh;
    aspect-ratio: 3/2;
    position: absolute;
    margin: 50vh 0 0 50vw;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: white;
    padding: 1vw;
}

.pDashboard #tableDiv {
    margin-top: 100px;
}

.pDashboard #tableFactureListe .factureDownloadButton th {
    font-weight: normal;
}

.close {
    border: none;
    background-color: transparent;
    width: 1.5vw;
    position: absolute;
    right: 1vw;
    top: 1vw;
    opacity: 0.5;
    cursor: pointer;
}

.close img {
    width: 1.5vw;
    aspect-ratio: 1;
}

.pDashboard .popup h1 {
    max-width: 500px;
    line-break: anywhere;
}

.pDashboard .popup h2 {
    font-size: 1.3vw;
    margin-top: 3vw;
    margin-bottom: 0.5vw;
}

.pDashboard .popup input {
    background-color: transparent;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    border-radius: 0.25vw;
    color: white;
    padding: 0.5vw 1vw;
    resize: both;
}

.pDashboard .popup textarea {
    background-color: transparent;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    border-radius: 0.25vw;
    color: white;
    padding: 0.5vw 1vw;
    resize: vertical;
    height: 10vw;
}

.pDashboard .popup button:last-child {
    position: absolute;
    left: 50%;
    bottom: 1.2vw;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5vw 2vw;
    border-radius: 0.5vw;
    cursor: pointer;
    outline: none;
    border: none;
}

.pDashboard .popupmodif {
    background-color: #232323;
    height: 320px;
    width: 600px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: white;
    padding: 20px;
    text-align: center;
}

.pDashboard .popupmodif h1 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 30px;
}

.pDashboard .popupmodif input[type="text"], .pDashboard .popupmodif input[type="password"]{
    width: 350px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.pDashboard .buttonDiv {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    left: 150px;
    right: 150px;
}

.pDashboard #modifButton, #cancelButton {
    height: 50px;
    width: 120px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    border: none;
}

.pDashboard #suppAccountPopup {
    background-color: #232323;
    height: 320px;
    width: 600px;
    position: absolute;
    margin: 50vh 0 0 50vw;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: white;
    padding: 20px;
    text-align: center;
}

.pDashboard #suppAccount {
    width: 200px;
    height: 50px;
    border: none;
    background-color: #303134;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 50px;
    cursor: pointer;
}

.pDashboard #suppAccountButton {
    height: 40px;
    width: 120px;
    font-size: 20px;
    cursor: pointer;
}

.pDashboard #suppAccountPopup h1 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 30px;
}

.pDashboard #suppAccountPopup input[type="password"]{
    width: 350px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.pDashboard #suppAccountPopup p{
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.pDashboard #cancelSuppAccountButton {
    height: 40px;
    width: 120px;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
}

.pDashboard #portail-facture {
    height: 50px;
    width: 200px;
    border: none;
    border-radius: 10px;
}


/* ///////////////////////////////////////////////////
                     Bienvenue
//////////////////////////////////////////////////// */


.pSite-welcome h1 {
    font-size: 98px;
    animation: apparition 0.8s ease-in-out forwards;
}

.pSite-welcome  {
    background: linear-gradient(119.18deg, #0C1436 1.78%, #000000 105.13%);
    background-size: cover;
    height: 100%;
    color: white;
    font-size: 20px;
    padding: 100px;
    overflow: hidden;
}


.pSite-welcome p {
    max-width: 1400px;
    animation: apparition 0.8s 0.2s ease-in-out forwards;
    margin: 40px 0 80px 0;
}

.pSite-welcome button {
    font-family: 'Montserrat', sans-serif;
    padding: 15px 80px;
    background-color: white;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
}

.pSite-welcome img {
    width: 150px;
    opacity: 40%;
}

/* ///////////////////////////////////////////////////
                      Footer
//////////////////////////////////////////////////// */


@font-face {
    font-family: 'MaSuperPolice';
    src: url('./font/Lucida Bright Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

footer {
    background-color: #111216;
    height: 350px;
    text-align: center;
    color: #C9C9CA;
    padding-top: 60px;
    width: 100%;
    margin-top: 100px;
}

footer .footer-title {
    font-size: 48px;
    font-family: 'MaSuperPolice', sans-serif;
}

footer .pitchFooter {
    font-size: 18px;
    margin: 20px 0 70px 0;
}

footer div {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    color: #7D7D7D;
    font-size: 20px;
}

footer div a {
    text-decoration: none;
    color: #7D7D7D;
}


/* ///////////////////////////////////////////////////
                      Affiliation
//////////////////////////////////////////////////// */

.affiliation {
    background-color: #0C0C0C;
}




/* ///////////////////////////////////////////////////
                      Responsive
//////////////////////////////////////////////////// */

@media screen and (max-width: 992px) {

    /* ///////////////////////////////////////////////////
                      Header
//////////////////////////////////////////////////// */

    header nav {
        padding-inline: 20px;
    }

    header ul {
        flex-direction: column;
        justify-content: flex-start;
        background-color: #60c9ff ;
        width: 250px;
        height: 100vh;
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1;
        transform: translateX(140%);
        padding-top: 100px;
        transition: 0.3s;
    }

    header .menu_btn {
        z-index: 1000;
        display: block;
    }

    header .menu_btn>span {
        z-index: 1000;
        display: block;
        margin-top: 5px;
    }

    header .menu_btn.activeMenu>span:nth-child(2) {
        display: none;
    }

    header .menu_btn.activeMenu>span:nth-child(3) {
        width: 100%;
        transform: rotate(45deg) translateY(-5px);
    }

    header .menu_btn.activeMenu>span:nth-child(1) {
        transform: rotate(-45deg) translateY(5px);
    }

    header .nav_list img {
        width: 90px;
    }

    /* ///////////////////////////////////////////////////
                  Home
//////////////////////////////////////////////////// */

    .home .container {
        padding: 20px;
    }

    .home .container > div {
        margin-top: 100px;
    }

    .home .stars-container {
        scale: 60%;
    }

    .home .section-description {
        font-size: 16px;
    }

    .home .plans-section > div {
        display: block;
    }

    .home .plans-section button {
        margin-top: 0;
        font-size: 16px;
    }

    .home .plans-section > div > div {
        padding: 5px 40px 20px 40px;
        margin-bottom: 20px;
    }

    .home .plans-section > div > div p:first-child {
        margin-bottom: 5px;
    }

    .home .plans-section li {
        font-size: 17px;
    }

    .home .plans-section .heberg-plan li {
        font-size: 17px;
    }

    .home .plans-section .plans-section-description-plan {
        margin-bottom: 30px;
    }

    .home .plans-section ul {
        margin-bottom: 20px;
    }

    .home .plans-section .heberg-plan > div:first-of-type {
        max-width: inherit;
        text-align: center;
    }

    .home .top-section {
        text-align: center;
        padding-top: 50px;
        height: 60vh !important;
    }

    .home .castle-3d-image {
        right: 50px !important;
        bottom: 30px;
        width: 35%;
    }

    .home .swiss-made a {
        font-size: 12px;
        bottom: 5px;
        left: 5px;
    }

    .home .container {
        padding: 20px;
    }

    .home .container > div {
        margin-top: 100px;
    }

    .home .stars-container {
        scale: 60%;
    }

    .home .plans-section > div {
        display: block;
    }

    .home .plans-section button {
        margin-top: 0;
        font-size: 16px;
    }

    .home .plans-section .plans-section-price {
        font-size: 50px;
        margin: 20px 0;
    }

    .home .plans-section .plans-section-price span {
        font-size: 20px;
    }

    .home .plans-section > div > div {
        padding: 5px 40px 20px 40px;
        margin-bottom: 20px;
    }

    .home .plans-section > div > div p:first-child {
        margin-bottom: 5px;
    }

    .home .plans-section, li {
        font-size: 17px;
    }

    .home .plans-section .plans-section-description {
        text-align: center;
    }

    .home .plans-section ul {
        margin-bottom: 20px;
    }

    .home .plans-section .heberg-plan > div:last-of-type {
        text-align: center;
        padding-bottom: 20px;
    }

    .home .plans-section .heberg-plan > div:first-of-type p:last-of-type {
        font-size: 16px;
    }

    .home .dashboard-image {
        height: 300px;
    }

    .home .top-section > div:first-of-type {
        transform: translateY(50%);
    }

    .home .top-section {
        text-align: center;
        padding-top: 50px;
        height: 70vh !important;
    }

    .home .castle-3d-image {
        right: 50px !important;
        bottom: 20px;
        width: 50%;
    }

    .home .swiss-made a {
        font-size: 12px;
        bottom: 5px;
        left: 5px;
    }

    .home .clouds-image {
        width: 170%;
        transform: translateX(-90px);
        position: absolute;
    }

    .home .swiss-made img {
        width: 15px;
        height: 15px;
    }

    .home .dashboard-info {
        position: static;
    }

    .home .dashboard-info-title {
        font-size: 22px;
        margin-top: 10px;
    }

    .home .dashboard-info-desc {
        font-size: 18px;
    }

    .home .outer {
        background-image: url(../src/icon/gray-star-icon.svg);
        height: 25px;
        width: 150px;
        background-size: 30px;
    }

    .home .inner {
        background-image: url(../src/icon/star-icon.svg);
        height: 25px;
        width: 90px;
        background-size: 30px;
    }

    .home h1 {
        font-size: 50px !important;
        text-align: center;
        margin: -10px 0 !important;
    }

    .home .top-section h2 {
        font-size: 16px !important;
    }

    .home .container h2 {
        font-size: 25px !important;

    }

    .home .functioning-section > div {
        gap: 15px;
    }

    .home .functioning-section > div > div p:first-of-type {
        font-size: 20px;
    }

    .home .functioning-section > div > div p:last-of-type {
        font-size: 40px;
    }

    .home .functioning-section  > div > div p:nth-child(3) {
        font-size: 15px;
        text-align: left;
    }

    .home .functioning-section img {
        width: 100px;
    }

    .home .news-title {
        font-size:  20px;
        font-weight: 900;
        margin-bottom: 20px;
    }

    .home .news-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .home .skills-section > div {
        display: block;
    }

    .home .news-section .new img:first-of-type {
        height: 200px;
    }

    .home .news-section .new {
        margin-bottom: 60px;
    }

    .home .skills-section > div div {
        margin-bottom: 20px;
    }

    .home .news-section > div {
        display: block;
    }

    .home .securePaiement div {
        background-position-x: -500px;
        padding: 20px;
        text-align: center;
    }

    .pSite-welcome {
        padding: 20px;
        text-align: center;
    }

    .pSite-welcome h1 {
        font-size: 60px;
    }

    .pSite-welcome .normal {
        display: none;
    }

    .pSite-welcome .mobile-alert {
        display: block !important;
    }

}

@media screen and (max-width: 1600px) {
    .home .castle-3d-image {
        right: 300px;
    }
}
