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 > div,
nav > div > div {
    display: inline-block;
}

.nav_left {
    float: left;
}

.nav_right {
    float: right;
}

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

.logo img {
    width: 100%;
}

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

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

.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_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;
}

.nav_cta a {
    background: #6E1AFF;
    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;
    right: -16px;
    top: 6px;
    z-index: 0;
    transform: rotate(225deg);
    opacity: 0;
}

.nav_cta span {
    position: relative;
}

.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{
    left: -10px;
}

.nav_cta a:hover::after{
    right: 6px;
    opacity: 1;
}

.nav_cta a,
.nav_cta a span,
.nav_cta a::after{
    transition: all 0.5s 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: 20px;
    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: 70px;
    color: #101010;
    font-weight: 800;
    margin: auto;
    max-width: 700px;
}

.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: 40px;
    top: -20px;
}

.home .main_title_img_right {
    right: 0px;
    top: 50px;
}

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

.main_title_cta a {
    background: #6e1aff;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px 10px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.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;
}

.main_title_cta a span {
    display: inline-block;
    position: relative;
    top: -10px;
    margin-right: 20px;
}

.formation_infos {
    padding-top: 160px;
}

.formation_infos_col {
    float: left;
    width: 360px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f2ebff;
}

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

.formation_infos_col img{
    width: 100%;
}

.formation_infos_row {
    margin-top: 40px;
}

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

.formation_infos_tag {
    display: inline-block;
    position: relative;
    top: -20px;
    left: 40px;
    background: #6e1aff;
    border-radius: 30px;
    padding: 5px 20px;
}

.formation_infos_tag p {
    margin-top: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.formation_infos_details {
    padding: 20px 40px 30px;
}

.formation_infos_details h3 {
    font-size: 20px;
    font-weight: 800;
    color: #101010;
}

.formation_infos_details p {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.formation_infos_details span {
    color: #f20286;
    font-weight: 600;
    font-size: 15px;
}

.formation_infos_cta a {
    border-bottom: 1px solid #6e1aff;
    display: inline-block;
    margin: 0px 40px 40px 40px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 800;
    color: #6e1aff;
}

.formation_infos_cta a::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 8px;
    position: relative;
    top: -1px;
    transform: rotate(45deg);
    border-top: 2px solid #6e1aff;
    border-right: 2px solid #6e1aff;
}

.formation_single .main_title .container::after {
    content: "";
    display: block;
    clear: both;
}

.formation_main_title_illustration {
    width: 200px;
    height: 200px;
    float: left;
    margin-right: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 100%;
}

.formation_main_title_illustration img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.formation_main_title_text {
    padding: 0px 0px 80px;
}

.formation_main_title_text span,
.formation_main_title_text h1,
.formation_main_title_text p {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.formation_main_title_text > span {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.3em;
    font-size: 12px;
    color: #6e1aff;
}

.formation_main_title_text h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

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

.main_title_img_right {
    right: 0;
    top: 60px;
}

.formations {
    padding-top: 160px;
}

.formations .formations_title {
    margin-bottom: 40px;
}

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

.formations_col {
    width: 360px;
    float: left;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1e9ff;
}

.formations_col img {
    width: 100%;
}

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

.formations_tag {
    display: inline-block;
    position: relative;
    top: -18px;
    left: 30px;
    background: #6e1aff;
    border-radius: 40px;
}

.formations_tag p {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 5px 20px;
}

.formations_details {
    padding: 10px 30px 30px;
}

.formations_details h3 {
    font-size: 18px;
    font-weight: 800;
}

.formations_details p {
    font-size: 14px;
    margin-bottom: 30px;
}

.formations_details span {
    color: #f20286;
    font-weight: 600;
    font-size: 14px;
}

.formations_cta {
    padding: 0px 30px 30px;
}

.formations_cta a {
    font-weight: 800;
    font-size: 15px;
    color: #6e1aff;
    display: inline-block;
    position: relative;
}

.formations_cta a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 101%;
    height: 1px;
    background-color: #6e1aff;
}

.formations_cta a::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-top: 2px solid #6e1aff;
    border-right: 2px solid #6e1aff;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 7px;
    position: relative;
    top: -2px;
}

.formations_row {
    margin-top: 40px;
}

.nav_mobile{
    display: none;
}

.nav_container {
    width: 100%;
    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;
}



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;
}

@media screen and (max-width: 1200px){
    .container,
    nav {
        max-width: 980px;
    }
    .logo {
        width: 200px;
    }
    .nav_items a {
        font-size: 13px;
        padding: 18px 8px;
    }
    .main_title h1 {
        font-size: 60px;
        max-width: 600px;
    }
    .main_title_img_right {
        right: -30px;
        top: 30px;
    }
    h2 {
        font-size: 36px;
    }
    .formations_col {
        width: 305px;
    }
}

@media screen and (max-width: 1050px){
    .nav_right {
        display: none;
    }
    .nav_container {
        max-width: 100%;
        top: 0;
        border-radius: 0;
    }
    .logo {
        width: 220px;
    }
    .nav_mobile {
        display: block;
        float: right;
    }
    .nav_mobile label {
        font-size: 26px;
        position: relative;
        top: 12px;
    }
    .nav_mobile label:hover {
        cursor: pointer;
    }
    .nav_mobile_submenu {
        position: absolute;
        left: 0;
        transform: translateY(30px);
        width: 100%;
        text-align: center;
        background: #f6f2ff;
        z-index: 0;
        opacity: 0;
        transition: 0.5s;
    }
    #hamburger:checked ~ .nav_mobile_submenu {
        transform: translateY(40px);
        opacity: 1;
    }
    .nav_mobile_submenu li {
        display: inline-block;
        padding: 15px;
    }
    .nav_mobile_submenu li a {
        font-size: 13px;
        color: #101010;
        font-weight: 500;
    }
    .nav_mobile input {
        display: none;
    }
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    .formations_col {
        width: 31%;
    }
}

@media screen and (max-width: 900px){
    .main_title_img_left,
    .main_title_img_right{
        display: none;
    }
    .formations_col {
        width: 100%;
        margin: 0 0 40px 0 !important;
    }
    .formations {
        padding-top: 200px;
        margin-top: -100px;
    }
}