html{
    scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
}

h2 {
    font-size: 50px;
    color: #101010;
    font-weight: 800;
}

h2 span {
    color: #6E1AFF;
    font-family: 'Courgette';
    font-weight: 400;
}

p{
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #101010;
    font-weight: 500;
}

p span{
    font-weight: 700;
}

section::after{
    content: "";
    display: block;
    clear: both;
}

nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1140px;
    width: 100%;
    border: 1px solid #E8DBFF;
    border-radius: 80px;
    padding: 15px 40px;
    box-shadow: 0px 4px 4px rgb(110 26 255 / 10%);
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(5px);
    z-index: 999;
}

nav > div,
nav > div > div {
    display: inline-block;
}

.nav_left {
    float: left;
}

.nav_right {
    float: right;
}

.logo {
    width: 180px;
    margin: 12px 0;
}

.logo img {
    width: 100%;
}

.nav_items li {
    display: inline-block;
    position: relative;
}

.nav_items a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    padding: 20px 10px;
}

.nav_items a.nav_item_active {
    color: #6e1aff;
    position: relative;
}

.nav_items a.nav_item_active::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 2px;
    background: #6e1aff;
    border-radius: 5px;
}

.nav_items a,
.nav_items a:hover {
    transition: 0.35s ease;
}

.nav_items a:hover {
    color: #6e1aff;
}

.nav_items > ul > li:first-child > a:hover {
    cursor: context-menu;
}

.nav_items > ul > li:first-child > a::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    border-right: 2px solid #101010;
    border-bottom: 2px solid #101010;
    transform: rotate(45deg);
    margin-left: 7px;
    border-radius: 1px;
    position: relative;
    top: -3px;
}

.nav_items > ul > li:first-child > a:hover::after {
    border-right: 2px solid #6e1aff;
    border-bottom: 2px solid #6e1aff;
}

.nav_social_items {
    margin-left: 20px;
    position: relative;
    top: 8px;
}

.nav_social_items div:first-child {
    margin-right: 10px;
}

.nav_social_items > div {
    display: inline-block;
    width: 28px;
}

.nav_social_items > div img {
    width: 100%;
}

.nav_cta {
    border-radius: 50px;
    position: relative;
    margin-left: 40px;
}

.nav_cta::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #FF3030;
    border-radius: 14px;
    border: 2px solid #fff;
    z-index: 9;
    animation: notificationBounce 2s ease infinite;
}

@keyframes notificationBounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-6px);}
    60% {transform: translateY(-3px);}
}



.nav_cta a {
    background: linear-gradient(90deg, #6E1AFF, #6E1AFF 100%);
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 17px 50px;
    border-radius: 40px;
}

.nav_cta a::after {
    content: "";
    display: block;
    width: 33px;
    height: 33px;
    background-image: url(images/cta-arrow-down.svg);
    background-size: cover;
    position: absolute;
    top: -4px;
    right: 0;
    z-index: 0;
    transform: rotate(225deg) translateX(-16px);
    opacity: 0;
}

.nav_cta span {
    position: relative;
    display: block;
    transform: translateX(0);
}

.nav_cta a:hover{
    background: linear-gradient(90deg, rgba(242, 2, 134, 1) 0%, rgba(110, 26, 255, 1) 100%);
}

.nav_cta a:hover span{
    transform: translateX(-10px);
}

.nav_cta a:hover::after {
    transform: rotate(225deg) translateX(10px);
    opacity: 1;
    top: 13px;
}

.nav_cta a,
.nav_cta a span,
.nav_cta a::after{
    transition: 0.35s ease-out;
}

ul.nav_items_subnav {
    position: absolute;
    display: block;
    width: 280px;
    background: #fff;
    border: 1px solid #E8DBFF;
    border-radius: 0 20px 20px 20px;
    left: 10px;
    padding: 30px;
    display: none;
}

ul.nav_items_subnav li:not(:last-child) {
    margin-bottom: 20px;
}

ul.nav_items_subnav a {
    font-size: 14px;
    padding: 0 0 0 15px;
    position: relative;
}

ul.nav_items_subnav a::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    top: 3px;
    left: 0;
}

ul.nav_items_subnav li:first-child a::before{
    background: #F20286;
}

ul.nav_items_subnav li:nth-child(2) a::before{
    background: #9313DD;
}

ul.nav_items_subnav li:nth-child(3) a::before{
    background: #6E1AFF;
}

.nav_items li:hover ul.nav_items_subnav{
    display: block;
}

.blank_nav {
    height: 200px;
}

.container{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.main_title h1 {
    text-align: center;
    font-size: 60px;
    color: #101010;
    font-weight: 800;
    margin: auto;
}

.main_title h1 strong,
.main_title h1 span {
    display: block;
    animation: text-focus-in 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.35s both;
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}



.tag_title_pu,
.tag_title_pi {
    font-family: Courgette; 
    font-weight: 400;
    position: relative;
}

.tag_title_pu {
    color: #6E1AFF;
    margin: 15px 0 5px;
}

.tag_title_pi {
    color: #F20286;
}

.home .tag_title_pu::after {
    width: 196px;
    height: 27px;
}

.home .tag_title_pi::after {
    width: 256px;
    height: 37px;
    bottom: -12px;
}

.main_title p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.4px;
    color: #101010;
    font-weight: 600;
    margin: 40px auto 0;
    text-align: center;
    max-width: 780px;
    width: 100%;
}

.main_title_img_left,
.main_title_img_right {
    position: absolute;
    top: 0;
}

.home .main_title_img_left {
    left: -100px;
    top: -50px;
}

.home .main_title_img_left::after {
    content: "";
    display: block;
    width: 90px;
    height: 57px;
    background-size: cover;
    background-image: url(images/home-title-illu-left-arrow.svg);
    bottom: -20px;
    right: -70px;
    position: absolute;
}

.home .main_title_img_right {
    right: -150px;
    top: 0px;
}

.main_title_cta {
    text-align: center;
    margin-top: 50px;
}

.main_title_cta a {
    background: linear-gradient(90deg, #6e1aff, #6e1aff 100%);
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px 10px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.main_title_cta a:hover {
    background: linear-gradient(90deg, rgba(242, 2, 134, 1) 0%, rgba(110, 26, 255, 1) 100%);
}

.main_title_cta a i.main_title_cta_icon {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(images/cta-arrow-down.svg);
    background-size: cover;
    transform: translateX(50px);
    opacity: 0;
}

.main_title_cta a span {
    display: inline-block;
    position: relative;
    top: -10px;
    transform: translateX(8px);
}

.main_title_cta a:hover span {
    transform: translateX(0px);
}

.main_title_cta a:hover i.main_title_cta_icon {
    transform: translateX(8px);
    opacity: 1;
}

.main_title_cta a,
.main_title_cta a span,
.main_title_cta a i.main_title_cta_icon{
    transition: 0.35s ease-out;
}

.tools {
    margin-top: 120px;
}

.tools_row {
    margin-top: 60px;
}

.tools_cols {
    width: 360px;
    float: left;
    border-radius: 40px;
    padding: 45px;
    position: relative;
    
}

.tools_cols:not(:first-child) {
    margin-left: 30px;
}

.tools_cols:first-child {
    background-color: #F20286;
}

.tools_cols:nth-child(2) {
    background-color: #AC0FE4;
}

.tools_cols:nth-child(3) {
    background-color: #6E1AFF;
}

.tools_cols_title h3 {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    line-height: 40px;
    margin-top: 25px;
}

.tools_cols_title h3 span {
    display: block;
    font-family: 'Courgette';
    font-weight: 400;
}

.tools_cols_text p {
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
    line-height: 18px;
}

.tools_cols_cta {
    margin-top: 40px;
}

.tools_cols_cta a {
    background: rgb(255 255 255 / 10%);
    border: 2px solid #fff;
    border-radius: 30px;
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.tools_cols_cta a span {
    position: relative;
    left: 5px;
}

.tools_cols_cta.cta_disabled a {
    opacity: 0.7;
}

i.cta_icon {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(images/cta-arrow-down.svg);
    background-size: cover;
    float: right;
    position: relative;
    top: -8px;
    right: -2px;
    transform: rotate(225deg);
}

.tools_cols_status {
    background: #EDE3FF;
    border: 2px solid #fff;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
}

.tools_cols_status p {
    font-size: 12px;
    font-weight: 600;
    color: #6E1AFF;
    padding: 10px 20px;
}

.tools_cols::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
    opacity: 0.15;
    border-top-right-radius: 40px;
}

.tools_cols:first-child::before {
    width: 113px;
    height: 165px;
    background-image: url(images/home-tools-1-bg.svg);
}

.tools_cols:nth-child(2)::before {
    width: 113px;
    height: 165px;
    background-image: url(images/home-tools-2-bg.svg);
}

.tools_cols:nth-child(3)::before {
    width: 113px;
    height: 165px;
    background-image: url(images/home-tools-3-bg.svg);
}

.general_content {
    padding-top: 160px;
}

.general_content_left {
    max-width: 680px;
    float: left;
    margin-right: 80px;
}

.general_content_text ul {
    margin: 20px 0 0 20px;
}

.general_content_text li {
    margin: 0;
    padding: 5px;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    color: #101010;
    font-weight: 500;
}

.general_content_text li span{
    color: #6E1AFF;
    font-weight: 700;
}

.general_content_text li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-size: cover;
    background-image: url(images/formations-check-dots.svg);
    margin-right: 7px;
}

.general_content_ctas {
    margin-top: 40px;
}

.general_content_cta {
    display: inline-block;
    margin-right: 10px;
}

.cta_general a {
    display: inline-block;
    font-size: 16px;
    padding: 8px 20px 8px 40px;
    border-radius: 60px;
    font-weight: 600;
}

.cta_general.cta_general_border a {
    border: 1px solid #6e1aff;
    color: #6e1aff;
}

.cta_general.cta_general_fill a {
    background: linear-gradient(90deg, #6e1aff, #6e1aff 100%);
    color: #fff;    
}

.cta_general.cta_general_fill a:hover {
    background: linear-gradient(90deg, rgba(242, 2, 134, 1) 0%, rgba(110, 26, 255, 1) 100%);
    color: #fff;    
}

.cta_general.cta_general_fill.cta_general_fill_white a {
    background: #ffffff;
    color: #6e1aff;    
}

.cta_general a span {
    position: relative;
    top: 8px;
    margin-right: 20px;
    transform: translateX(10px);
    display: inline-block;
}

.cta_general a:hover span {
    transform: translateX(0px);
}

.cta_general a i.cta_icon {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-size: cover;
    position: relative;
    top: -14px;
    right: -6px;
    transform: rotate(225deg) translateX(-20px);
    opacity: 0;
}

.cta_general a:hover i.cta_icon {
    top: 0px;
    transform: rotate(225deg) translateX(0px);
    opacity: 1;
}

.cta_general a,
.cta_general a span,
.cta_general a i.cta_icon{
    transition: 0.35s ease-out;
}

.cta_general i.cta_icon {
    background-image: url(images/cta-arrow-down.svg);
}

.cta_general i.cta_icon.cta_icon_color {
    background-image: url(images/cta-arrow-down-color.svg);
}

.general_content_right {
    float: left;
    max-width: 380px;
    position: relative;
}

.general_content_financements {
    padding: 30px;
    background: #6E1AFF;
    border-radius: 20px;
    min-height: 590px;
    position: relative;
    top: 10px;
}

.general_content_financements img {
    width: 100%;
}

.general_content_financements h3 {
    font-size: 32px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-top: 40px;
}

.general_content_financements h3 span {
    display: block;
    font-family: 'Courgette';
    font-weight: 400;
}

.general_content_financements p {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    margin-top: 20px;
    line-height: 20px;
    padding: 0 30px;
}

.general_content_financements .general_content_cta {
    margin-top: 30px;
    margin-right: 0;
    display: block;
    padding: 0 20px;
}

.general_content_financements .general_content_cta.cta_general a {
    font-size: 14px;
    font-weight: 800;
    width: 100%;
    text-align: center;
}

.general_content_financements .general_content_cta.cta_general a span{
    margin: 0;
}

.separator_line{
    width: 100%;
    height: 2px;
    background: #F2EAFF;
    margin-top: 160px;
}

.plateforme_cours {
    padding-top: 160px;
}

.plateforme_cours_title h2 {
    text-align: center;
}

.plateforme_cours_title h2 span {
    display: block;
}

.plateforme_cours_text p {
    text-align: center;
    width: 850px;
    margin: 20px auto 0;
}

.plateforme_cours_text p span {
    color: #6e1aff;
}

.plateforme_cours_steps::after {
    content: "";
    clear: both;
    display: block;
}

.plateforme_cours_steps_col {
    float: left;
    width: 300px;
    text-align: center;
    margin: 40px;
    padding-top: 60px;
    position: relative;
}

.plateforme_cours_steps_col::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
}

.plateforme_cours_steps_col:first-child::before{
    background-color: #f22086;
}

.plateforme_cours_steps_col:nth-child(2)::before{
    background-color: #AC0FE4;
}

.plateforme_cours_steps_col:nth-child(3)::before{
    background-color: #6E1AFF;
}

.plateforme_cours_steps_col h4,
.plateforme_cours_steps_col h4 span {
    font-size: 30px;
    font-family: 'Courgette';
    line-height: 40px;
}

.plateforme_cours_steps_col:first-child h4 span{
    color: #f22086;
}

.plateforme_cours_steps_col:nth-child(2) h4 span{
    color: #AC0FE4;
}

.plateforme_cours_steps_col:nth-child(3) h4 span{
    color: #6E1AFF;
}

.plateforme_cours_steps_col p {
    color: #565656;
    font-size: 15px;
    font-weight: 500;
}

.plateforme_cours_steps {
    position: relative;
}

.plateforme_cours_steps::before {
    content: "";
    display: block;
    width: 760px;
    height: 2px;
    background: #F2EAFF;
    position: absolute;
    top: 49px;
    left: 50%;
    transform: translateX(-50%);
}

.plateforme_cours .formations_cta {
    margin: 20px auto 0;
    display: block;
    text-align: center;
}

.formation_cta_banner {
    padding-top: 160px;
}

.formations_financements_left {
    float: left;
    width: 500px;
}

.formations_financements_right {
    float: right;
    width: 400px;
}

.formation_cta_banner .formations_financements::after{
    content: "";
    clear: both;
    display: block;
}

.formation_cta_banner .formations_financements {
    padding: 80px 60px;
    min-height: 0;
}

.formation_cta_banner .formations_financements h3,
.formation_cta_banner .formations_financements p {
    text-align: left;
    margin: 0;
    padding: 0;
}

.formation_cta_banner .formations_financements h3{
    margin-bottom: 15px;
}

.formation_cta_banner .formations_financements p{
    margin-bottom: 30px;
}

.formation_cta_banner .formations_financements .formations_cta {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.equipe {
    padding-top: 160px;
}

.equipe_left {
    float: left;
    width: 660px;
}

.equipe_right {
    float: right;
    width: 400px;
}

.equipe_right img{
    width: 100%;
}

.equipe_text p span {
    display: block;
    margin-top: 20px;
    text-decoration: underline;
    color: #6E1AFF;
}

.equipe_text ul {
    list-style: disc;
    margin-left: 40px;
    margin-bottom: 30px;
}

.equipe_text li {
    font-size: 16px;
    font-weight: 500;
    padding: 6px;
}

.temoignages {
    text-align: center;
    background: #FAF6FF;
    margin: 160px 0 0;
    padding: 160px 0;
}

.temoignages_text {
    max-width: 760px;
    margin: auto;
}

.temoignages_text span{
    color: #6e1aff;
}

.temoignages_col {
    float: left;
    width: 350px;
}

.temoignages_col:not(:first-child) {
    margin-left: 40px;
}

.temoignages_row {
    margin-top: 120px;
}

.temoignages_row::after {
    content: "";
    display: block;
    clear: both;
}

.temoignages_col_container {
    border: 2px solid #F2EAFF;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
}

.temoignages_col_text span {
    font-size: 15px;
    font-weight: 800;
}

.temoignages_col_text p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.temoignages_col_thumb img {
    width: 100px;
    border: 2px solid #ffff;
    border-radius: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.temoignages_col_thumb {
    margin-top: -90px;
    position: relative;
}

.temoignages_col_review {
    display: inline-block;
    background: #6e1aff;
    position: absolute;
    padding: 2px 10px;
    border-radius: 30px;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.temoignages_col_review p {
    margin: 0;
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.temoignages_col_review::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-size: cover;
    background-image: url(images/review-star.svg);
}

.temoignages_col_info_formation p {
    margin: 30px 0;
    font-size: 16px;
    font-weight: 800;
}

.temoignages_col_info_formation p span {
    font-weight: 600;
    color: #6e1aff;
}

footer {
    margin-top: 120px;
    padding: 80px 0;
    text-align: center;
    background: #6E1AFF;
}

.footer_title p {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
}

.footer_title p span {
    font-family: 'Courgette';
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.footer_legal_nav,
.footer_copyright {
    margin-top: 30px;
}

.footer_legal_nav li {
    display: inline-block;
    position: relative;
}

.footer_legal_nav li a {
    color: #fff;
    opacity: 0.7;
    padding: 0 20px;
    font-weight: 600;
    position: relative;
}

.footer_legal_nav li:not(:last-child) a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 0.7;
    border-radius: 100%;
    position: absolute;
    top: 6px;
    right: -5px;
}

.footer_copyright p {
    font-size: 16px;
    font-weight: 600;
    color: #140036;
}

.academy .general_content_financements img {
    width: 120px;
    display: block;
    margin: 15px auto 70px;
    position: relative;
}

.academy .general_content_financements::before {
    content: "";
    display: block;
    width: 140%;
    height: 270px;
    position: absolute;
    background: #fff;
    border-radius: 100%;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.1;
}

.academy {
    margin-bottom: 160px;
}

.financements_cta_banner {
    margin: 0px 0 20px;
    padding-top: 160px;
}

.financements_container {
    padding: 60px;
    background: #6e1aff;
    border-radius: 20px;
}

.financements_left {
    float: left;
    width: 560px;
    margin-right: 60px;
}

.financements_right {
    float: left;
    width: 400px;
}

.financements_right img{
    width: 100%;
}

.financements_container::after {
    content: "";
    display: block;
    clear: both;
}

.financements_left h3 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.financements_left h3 span{
    font-family: "Courgette";
    font-weight: 400;
}

.financements_left p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.formations .formations_cta {
    margin: 40px auto 0;
    text-align: center;
}

.plateforme_cours_cta {
    text-align: center;
}

.team_page .blank_nav,
.team_page .main_title,
.academy_page .blank_nav,
.academy_page .main_title {
    background: #F2EAFF;
}

.team_page .main_title > .container > span,
.academy_page .main_title > .container > span {
    color: #6E1AFF;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.team_page .main_title h1,
.academy_page .main_title h1 {
    max-width: 750px;
    animation: text-focus-in 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.35s both;
}

.team_page .main_title h1 span,
.academy_page .main_title h1 span {
    display: inline-block;
    font-family: "Courgette";
    font-weight: 400;
    color: #6E1AFF;
}

.team_page .main_title p,
.academy_page .main_title p {
    margin-top: 30px;
    max-width: 750px;
}

.team_page .main_title .main_title_cta,
.academy_page .main_title .main_title_cta {
    position: relative;
    top: 27px;
    margin-top: 25px;
}

.team_members {
    padding: 160px 0 40px;
}

.team_members_col {
    float: left;
    width: 530px;
}

.team_members_col:first-child {
    margin-right: 80px;
}

.team_members_row::after {
    content: "";
    display: block;
    clear: both;
}

.team_members_col img{
    width: 100%;
}

.team_members_col_left {
    width: 200px;
    float: left;
}

.team_members_col strong{
    font-weight: 800;
}

.team_members_col_right {
    width: 290px;
    float: left;
    margin-left: 40px;
}

.team_members_col_right h2 {
    font-size: 24px;
}

.team_members_col_right span {
    font-family: 'Courgette';
    color: #6e1aff;
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

.team_members_col_right p {
    font-size: 16px;
    line-height: 24px;
}

.team_members_row:not(:first-child) {
    margin-top: 120px;
}

.team_members_col_partner .team_members_col_right span {
    color: #F20286;
}

.team_members_col_linkedin a {
    padding: 20px 0;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

.team_members_col_linkedin a::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(images/linkedin-icon.svg);
    background-size: cover;
    margin-right: 6px;
    top: 3px;
    position: relative;
}

.team_members_col_partner .team_members_col_linkedin a::before {
    background-image: url(images/linkedin-icon-partner.svg);
}

.academy_page .main_title h1 {
    max-width: 820px;
}

.abonnements {
    padding: 160px 0;
}

.abonnements .abonnements_groupes_title{
    margin-bottom: 60px;
}

.abonnements_row::after{
    content: "";
    display: block;
    clear: both;
}

.abonnements_col {
    width: 346px;
    border-radius: 15px;
    float: left;
    padding: 50px;
    border: 1px solid rgb(110 26 255 / 10%);
}

.abonnements_col:not(:first-child){
    margin-left: 50px;
}

.abonnements_type {
    text-align: center;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.abonnements_price {
    text-align: center;
}

.abonnements_price span {
    font-size: 40px;
    font-weight: 800;
    display: inline-block;
}

.abonnements_price p {
    display: inline-block;
    position: relative;
    top: -10px;
    margin-left: 10px;
    color: #6e1aff;
    font-weight: 600;
}

.abonnements_intro p {
    font-size: 14px;
    text-align: center;
    line-height: normal;
}

.abonnements_intro p.abonnements_tag {
    background: rgb(110 26 255 / 15%);
    border-radius: 20px;
    color: #6E1AFF;
    font-size: 12px;
    font-weight: 800;
    padding: 5px;
    margin-bottom: 10px;
}

.abonnements_listing {
    margin-top: 30px;
}

.abonnements_intro img {
    width: 45px;
    display: block;
    margin: 0 auto 20px;
}

.abonnements_listing li {
    font-size: 14px;
    padding: 10px 0;
    font-weight: 500;
    color: #101010;
}

.abonnements_listing li::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background-size: cover;
    background-image: url(images/formations-check-dots.svg);
    margin-right: 5px;
}

.abonnements_listing li.abonnements_disabled {
    opacity: 0.5;
}

.abonnements_listing li.abonnements_disabled::before {
    background-image: url(images/check-dots-disabled.svg);
}

.abonnements .cta_general a {
    font-size: 14px;
}

.abonnements_groupes_title {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.abonnements_groupes_row::after {
    content: "";
    display: block;
    clear: both;
}

.abonnements_groupes_col {
    width: 540px;
    border-radius: 15px;
    float: left;
    padding: 50px;
    border: 1px solid rgb(110 26 255 / 10%);
}

.abonnements_groupes_col:first-child {
    margin-right: 50px;
}

.abonnements_groupes_row {
    margin-top: 60px;
}

.abonnements_groupes_col_left {
    width: 50px;
    float: left;
    margin-right: 30px;
}

.abonnements_groupes_col_left img{
    width: 100%;
}

.abonnements_groupes_col_right {
    float: left;
    width: 358px;
}

.abonnements_groupes_col_right_title p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.abonnements_groupes_col_right_title span {
    display: block;
}

.abonnements_groupes_col_right_title {
    margin-bottom: 20px;
}

.abonnements_groupes_col_right_calc input {
    width: 30px;
    padding: 5px;
    border: 1px solid #101010;
    border-radius: 4px;
}

.abonnements_groupes_col_right_calc input[type=number]::-webkit-inner-spin-button {
    opacity: 1
}

.abonnements_groupes_col_right_calc label {
    font-weight: 600;
    margin-left: 5px;
}

.abonnements_groupes_col_right_calc p {
    margin-bottom: 5px;
    font-weight: 800;
    color: #6e1aff;
}

.abonnements_groupes_col_right_price {
    margin-top: 20px;
}

.abonnements_groupes_col_right_price span,
.abonnements_groupes_col_right_price strong {
    font-size: 40px;
    font-weight: 800;
    display: inline-block;
}

.abonnements_groupes_col_right_price p {
    display: inline-block;
    position: relative;
    top: -10px;
    margin-left: 10px;
    color: #6e1aff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: normal;
}

.abonnements_groupes_col_right_tag p {
    background: rgb(110 26 255 / 15%);
    border-radius: 20px;
    color: #6E1AFF;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 20px;
    text-align: center;
    display: inline-block;
}

.abonnements_groupes_col_right_text p {
    font-size: 15px;
}

.abonnements_groupes_col_right_financement {
    background: rgb(33 150 243 / 10%);
    border-radius: 30px;
    padding: 5px 20px 5px 15px;
    margin-top: 10px;
    display: inline-block;
}

.abonnements_groupes_col_right_financement img {
    width: 17px;
    display: inline-block;
    margin-right: 2px;
    position: relative;
    top: 4px;
}

.abonnements_groupes_col_right_financement p {
    display: inline-block;
    font-size: 12px;
    color: #0763AC;
    margin: 0;
    font-weight: 800;
}

.abonnements_faq {
    background: #f9f6fd;
    padding: 120px 0;
    margin: 80px 0 -120px;
}

.abonnements_faq_section {
    margin: 30px auto 0;
}

.abonnements_faq_item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.abonnements_faq_question {
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.abonnements_faq_question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.abonnements_faq_item.active .abonnements_faq_question::after {
    content: "−";
}

.abonnements_faq_answer {
    display: none;
    margin-top: 10px;
    color: #444;
    color: #6e1aff;
    font-weight: 500;
    line-height: 1.35em;
}

.abonnements_faq_row::after {
    content: "";
    display: block;
    clear: both;
}

.abonnements_faq_left {
    float: left;
    max-width: 700px;
}

.abonnements_faq_right {
    float: right;
}

.abonnements_col .abonnements_groupes_col_right_financement {
    padding: 5px 10px;
    margin: 0;
}

.abonnements_col .abonnements_groupes_col_right_financement img {
    margin: 0;
    top: 2px;
}

.abonnements_col .abonnements_groupes_col_right_financement p{
    position: relative;
    top: -2px;
}

.abonnements_row .abonnements_col:last-child .abonnements_listing {
    margin-top: 20px;
}

.academy .general_content_text > ul > ul {
    margin: 0 20px;
}

.financement-page .general_content_financements {
    min-height: 460px;
}

header.main_title.main_legal {
    padding-bottom: 60px;
}

.formation_legal {
    padding-top: 60px;
}

.formation_legal .formation_infos_title {
    margin-top: 60px;
}

.formation_legal .formation_infos_title h2 {
    font-size: 30px;
}

.formation_legal .formation_infos_text p {
    font-size: 16px;
}

.formation_legal .formation_infos_text li {
    padding: 10px 0;
    list-style-type: disc;
    margin-left: 30px;
    line-height: 22px;
}

.formation_legal .formation_infos_text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.formation_legal .formation_infos_text ul ul {
    margin-left: 30px;
}

.cta_general a span.cta-visible {
    display: inline-block;
}

.cta_general a span.cta-hidden {
    display: none;
}

.cta_general.cta_general_fill a:hover span.cta-visible {
    display: none;
}

.cta_general.cta_general_fill a:hover span.cta-hidden {
    display: inline-block;
}

.cta_general a span,
.cta_general a:hover span {
    transition: 0.35s ease-out;
}











@media screen and (max-width: 1200px){
    .container{
        max-width: 750px;
    }
    nav {
        max-width: 750px;
    }
    .nav_left,
    .nav_right{
        float: none;
        text-align: center;
        display: block;
    }
    .nav_items a {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        padding: 20px 10px;
    }
    .main_title_img_left,
    .main_title_img_right {
        display: none;
    }
    .main_title h1 {
        width: 750px;
    }
    .tools_cols {
        width: 230px;
    }
    .tools_cols::before{
        content: none;
    }
    .tools_cols_title h3 {
        font-size: 22px;
        line-height: 30px;
        margin-top: 15px;
    }
    .tools_cols_img img {
        width: 60%;
    }
    .tools_cols_cta a {
        font-size: 12px;
    }
    .tools_cols_cta i.cta_icon{
        display: none;
    }
    .formations_left {
        margin-right: 0;
    }
    .formations_right {
        display: none;
    }
}


@media screen and (max-width: 600px){
    .container{
        max-width: 100%;
    }
    .nav_right {
        display: none;
    }
    nav {
        position: relative;
        top: 0;
        box-shadow: none;
        border: 0;
    }
    .blank_nav {
        display: none;
    }
    .home .main_title_img_left,
    .home .main_title_img_right {
        display: none;
    }
    .main_title h1 {
        width: auto;
        font-size: 46px;
        padding: 50px 30px 0;
    }
    section#formations-presentielles {
        background: rgb(110 26 255 / 5%);
        padding: 80px 30px;
        margin: 80px 0;
    }
    .general_content_left {
        max-width: 100%;
        float: left;
        margin-right: 0;
    }
    h2 {
        font-size: 36px;
    }
    .general_content_cta {
        margin: 10px auto;
        display: block;
        text-align: center;
    }
    .general_content_right {
        float: left;
        max-width: 100%;
        position: relative;
        margin-top: 50px;
    }
    .general_content_financements {
        padding: 50px 30px;
        top: 0;
    }
    .home section.separator {
        display: none;
    }
    .plateforme_cours {
        padding: 0 30px;
    }
    .plateforme_cours_text p {
        text-align: center;
        width: auto;
        margin: 20px auto 0;
    }
    .plateforme_cours_steps_col {
        width: auto;
        padding: 0;
    }
    .plateforme_cours_steps::before,
    .plateforme_cours_steps_col::before{
        content: none;
    }
    .financements_cta_banner {
        display: none;
    }
    .equipe {
        padding: 80px 30px;
        background: rgb(110 26 255 / 5%);
        margin: 80px 0;
    }
    .equipe_left {
        float: none;
        width: auto;
    }
    .equipe_right {
        float: none;
        width: 80%;
        margin: 70px auto 0;
    }
    .temoignages {
        text-align: center;
        background: #ffffff;
        margin: 80px 0 0;
        padding: 0 30px;
    }
    .temoignages_col {
        float: left;
        width: 100%;
    }
    .temoignages_col:not(:first-child) {
        margin-left: 0;
        margin-top: 100px;
    }
    .academy {
        margin-bottom: 0;
        background: rgb(110 26 255 / 5%);
        padding: 80px 30px;
        margin-top: 80px;
    }
    footer {
        padding: 80px 30px;
    }
    .home footer{
        margin-top: 0;
    }
}