@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --whitebackground: #ffffff;
    --blueText: #38b0d1;
    --noir: hsl(255, 6%, 26%);
    --lineaOneBlue: #38b0d1;
    --linearTwoBlue: #50bee4;
    --lineaOneBlueHover: #4ba7f8;
    --linearTwoBlueHover: #5ac9f1;
    --cardsColorTwo: #fffbfb;
    --orangeBackground: #ffc336;
    --blueBackground: #38b0d1;
    --box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

* {
    text-decoration: none;
    color: var(--noir);
    font-family: "Urbanist", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to right,
        var(--lineaOneBlue),
        var(--linearTwoBlue)
    );
    border-radius: 12px;
}

body {
    background-color: var(--whitebackground);
    overflow-x: hidden;
}

nav {
    display: flex;
    padding-top: 38px;
    padding-left: 0px;
}

.Nav-scrolled {
    background-color: white;
    box-shadow: 0 4px 10px -2px #ccc;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

nav img {
    width: 107px;
    cursor: pointer;
}

nav .elements {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

nav .elements ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

#menu > ul > * {
    font-size: 17px;
    font-weight: 700;
}

nav .elements ul a:hover {
    text-decoration: underline;
}

#menu > div > a {
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: 17px;
    font-weight: 700;
}

#menu > div {
    display: flex;
    gap: 20px;
}

#menu > div > a:nth-child(1):hover {
    text-decoration: underline;
}

#menu > div > a:nth-child(2) {
    background: linear-gradient(
        to right,
        var(--lineaOneBlue),
        var(--linearTwoBlue)
    );
    color: white;
    padding: 6px 12px;
    font-weight: 600;
}

#menu > div > a:nth-child(2):hover {
    background: linear-gradient(
        to right,
        var(--lineaOneBlueHover),
        var(--linearTwoBlueHover)
    );
}

.elements ul:hover {
    cursor: pointer;
}

a:hover {
    text-decoration: none !important;
}

.elements ul li span:hover a {
    color: var(--blueText) !important;
    text-decoration: none !important;
}

.elements ul #navProduct .text-product span:hover {
    color: var(--blueText) !important;
}

.elements ul #navProduct .text-product svg > .cls-90:hover + span {
    fill: var(--blueText) !important;
}

.elements ul #navProduct .text-product span:hover + svg > .cls-90 {
    stroke: var(--blueText) !important;
}

.elements ul #navRessources .text-ressources span:hover {
    color: var(--blueText) !important;
}

.elements ul #navRessources .text-ressources span:hover + svg > .cls-91 {
    stroke: var(--blueText) !important;
}

.elements ul #navProduct:hover #productDropdown {
    display: block !important;
}

.elements ul #navRessources:hover #ressourcesDropdown {
    display: block !important;
}

nav .icon-menu {
    display: none;
}

.tarification {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding: 99px 23px 0 23px;
}
.tarification .section-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
}
.tarification .section-one > .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--blueText);
}
.tarification .section-one > .title h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: inherit;
}
.tarification .section-one > .title > div {
    display: flex;
    flex-direction: column;
    color: inherit;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}
.tarification .section-one > .title > div > p {
    color: inherit;
}
.tarification .section-one .packs {
    position: relative;
    width: 100%;
    min-height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.tarification .section-one .packs .card {
    width: 340px;
    height: 1100px;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.tarification .section-one .packs .card .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    margin-top: 40px;
    color: white;
    background: linear-gradient(
        0.87turn,
        var(--lineaOneBlue),
        var(--linearTwoBlue)
    );
    box-shadow: var(--box-shadow);
}
.tarification .section-one .packs .card .title * {
    color: inherit;
    font-size: 28px;
}
.tarification .section-one .packs .card .title p {
    font-weight: 600;
}
.tarification .section-one .packs .card .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 40px 16px;
}
.tarification .section-one .packs .card .description .price {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 10px 14px;
    color: var(--blueText);
    border-bottom: 1px solid var(--blueText);
}

.tarification .section-one .packs .card .description .price * {
    color: inherit;
}
.tarification .section-one .packs .card .description .price h2 {
    position: relative;
    display: flex;
    flex-direction: row;
    height: fit-content;
    line-height: 23px;
    padding-top: 14px;
}
.tarification
    .section-one
    .packs
    .card
    .description
    .price
    h2
    > span:first-child {
    font-size: 80px;
    font-weight: 700;
}
.tarification
    .section-one
    .packs
    .card
    .description
    .price
    h2
    > span:nth-child(2) {
    height: fit-content;
    margin-left: 5px;
    display: flex;
    flex-direction: column-reverse;
    font-weight: 700;
    font-size: 20px;
}
.tarification .section-one .packs .card .description .price p {
    width: 100%;
}

.tarification .section-one .packs .pack-gestion-pro {
    height: 1200px !important;
    width: 440px !important;
    min-height: fit-content;
    border-radius: 8px;
    background: linear-gradient(
        0.87turn,
        var(--lineaOneBlue),
        var(--linearTwoBlue)
    );
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    z-index: 1;
}
.tarification .section-one .packs .pack-gestion-pro .most-requested {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: var(--orangeBackground);
}
.tarification .section-one .packs .pack-gestion-pro .most-requested p {
    color: white;
    font-weight: 700;
    font-size: 24px !important;
}
.tarification .section-one .packs .pack-gestion-pro .title {
    background: white !important;
    color: var(--blueText);
    margin-top: unset !important;
}
.tarification .section-one .packs .pack-gestion-pro .title * {
    font-size: 32px !important;
}
.tarification .section-one .packs .pack-gestion-pro .description .price {
    color: white !important;
}
.tarification .section-one .packs .pack-gestion-pro .description .price {
    border-color: white !important;
}
.tarification
    .section-one
    .packs
    .pack-gestion-pro
    .description
    .price
    h2
    > span:first-child {
    font-size: 100px !important;
}
.tarification
    .section-one
    .packs
    .pack-gestion-pro
    .description
    .price
    h2
    > span:nth-child(2) {
    font-size: 22px !important;
}

.tarification .section-one .packs .card .description ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 40px 8px;
    color: var(--blueText);
}
.tarification .section-one .packs .card .description ul li {
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.tarification .section-one .packs .card .description ul li * {
    font-size: 18px;
    color: var(--blueText);
}
.tarification .section-one .packs .card .subscribe {
    align-self: center;
    color: white;
    background-color: var(--blueBackground);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 5px;
    font-size: 20px;
    padding: 7px 40px;
    margin-bottom: 13px;
    margin-top: auto;
    border-radius: 6px;
}

.tarification .section-one .packs .pack-gestion-pro ul li * {
    color: white !important;
    font-size: 22px !important;
}
.tarification .section-one .packs .pack-gestion-pro .subscribe {
    color: var(--blueText) !important;
    background: white !important;
    font-size: 24px !important;
}
.tarification .section-two {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 55px;
    padding: 99px 0;
}
.tarification .section-two .title {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    color: var(--blueText);
}
.tarification .section-two .title * {
    font-size: 25px;
    font-weight: 500;
    color: inherit;
    letter-spacing: 3px;
}
.tarification .section-two .title h2 {
    width: fit-content;
    text-align: center;
    align-self: center;
    padding: 3px 14px;
    color: white !important;
    box-shadow: var(--box-shadow);
    background: linear-gradient(0, var(--lineaOneBlue), var(--linearTwoBlue));
}
.tarification .section-two .description {
    width: 80%;
    max-width: 1629px;
    min-height: fit-content;
    min-height: 120px;
    background: white;
    box-shadow: var(--box-shadow);
    background: linear-gradient(0, var(--lineaOneBlue), var(--linearTwoBlue));
}
.tarification .section-two .description .shape {
    background: white;
    width: 100%;
    height: 16px;
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
}
.tarification .section-two .description ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 60px 30px;
    gap: 30px;
}
.tarification .section-two .description ul div {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}
.tarification .section-two .description div li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    font-size: 20px;
}
.tarification .section-two .description div li * {
    color: white;
}
.tarification .section-two .description div svg {
    width: 40px;
    height: auto;
}

footer {
    padding: 50px 200px 0 200px;
    background: linear-gradient(
        to right,
        var(--lineaOneBlue),
        var(--linearTwoBlue)
    );
}
footer img {
    margin-top: -34px;
}

.badge {
    border: solid 1px white;
    border-radius: 2rem;
    padding: 2px 10px;
    background-color: white;
    color: #ffc336 !important;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1061px) {
    .tarification .section-two .description {
        width: 100%;
    }
    .tarification .section-one .packs .card {
        height: 1260px;
    }
    .tarification .section-one .packs .pack-gestion-pro {
        height: 1360px !important;
    }
}
@media (max-width: 968px) {
    nav {
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 23px;
    }

    nav .elements {
        box-shadow: 0 4px 10px -2px #ccc;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        border-radius: 20px;
        width: 95%;
        right: 16px;
        left: 9px;
        align-items: start;
        padding: 25px;
        display: none;
        z-index: 1;
    }

    a:hover {
        text-decoration: none !important;
    }

    .elements ul li span:hover a {
        color: var(--blueText) !important;
        text-decoration: none !important;
    }

    nav .elements ul {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 0px;
        width: 100%;
    }

    #menu > ul > a {
        width: 100%;
        padding: 6px;
    }

    #menu > ul > a:nth-child(1) {
        background: linear-gradient(
            to right,
            var(--lineaOneBlue),
            var(--linearTwoBlue)
        );
    }

    #menu ul a:nth-child(1) li {
        color: white;
    }

    nav .elements ul a:hover {
        text-decoration: none;
    }

    nav .elements ul a:hover {
        background: #e4e2e2ad;
    }

    #menu .btn-auth {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        gap: 12px;
        justify-content: center;
    }

    nav .icon-menu {
        display: inline;
        font-size: 21px;
        color: white;
        cursor: pointer;
        padding: 17px;
        color: var(--blueText);
        font-weight: 700;
    }

    .activeMenu {
        display: flex !important;
        transition: dispaly 0.5s ease;
    }

    footer {
        padding: 0 0 0 15px;
    }
    footer img {
        margin-top: auto;
    }
}
@media (max-width: 889px) {
    .tarification .section-one .packs {
        flex-direction: column;
        padding: 0 40px;
        gap: 35px;
    }
    .tarification .section-one .packs .card {
        height: auto !important;
        width: 100% !important;
    }
}
@media (max-width: 789px) {
    .tarification .section-two .description ul {
        flex-direction: column;
    }
    .tarification .section-two .description ul div {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 501px) {
    .tarification .section-one .packs {
        padding: unset;
    }
    .tarification .section-one .packs .card .description ul li * {
        font-size: 16px;
    }
    .tarification .section-one .packs .pack-gestion-pro ul li * {
        font-size: 18px !important;
    }
    .tarification .section-two .description div li {
        font-size: 16px;
    }
    .tarification .section-two .description ul {
        padding: 60px 10px;
    }
    .tarification .section-two .description div svg {
        width: 30px;
    }
}
