@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

body {
    margin: 0;
    font-family: "Varela Round", sans-serif;
    color: #413f60;
}

.blue {
    color: #6bc3ce;
}

.black {
    color: #413f60;
}

.underline {
    text-decoration: underline;
}

.mainBtn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fad248;
    font-size: 18px;
    color: #413f60;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 33px;
    display: block;
    max-width: 100%;
    min-width: 150px;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 900px) {
    .mainBtn {
        font-size: 14px;
    }
}

.mainBtn:hover {
    background-color: #ffc600;
}

.mainBtn:disabled {
    background-color: #dadada;
    color: #4d4d4d;
}

.mainBtn.grey {
    background-color: #eeeef8;
}

.mainBtn.grey:hover {
    background-color: #e1dfef;
}

.mainBtn.purple {
    background-color: #413f60;
    color: #ffffff;
}

.mainBtn.purple:hover {
    background-color: #8e8eba;
}

.mainBtn.yellow {
    color: #fad248;
}

.mainBtn.yellow:hover {
    background-color: #636090;
}

@media (max-width: 1050px) {
    .mainBtn.mobile {
        display: none;
    }
}

.mainBtn.btnFormations {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.h1 {
    font-size: 40px;
    line-height: 55px;
    font-weight: bold;
}

@media (max-width: 900px) {
    .h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

.h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
}

@media (max-width: 900px) {
    .h2 {
        font-size: 20px;
        line-height: 27px;
    }
}

.size {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.size.v-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.size.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.size.right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.size .s_90 {
    width: 90%;
}

.size .s_80 {
    width: 80%;
}

.size .s_85 {
    width: 85%;
}

.size .s_75 {
    width: 75%;
}

.size .s_70 {
    width: 70%;
}

.size .s_60 {
    width: 60%;
}

.size .s_55 {
    width: 50%;
}

.size .s_50 {
    width: 50%;
}

.size .s_45 {
    width: 45%;
}

.size .s_40 {
    width: 40%;
}

.size .s_30 {
    width: 30%;
}

.size .s_30.max {
    width: 30%;
}

.size .s_25 {
    width: 25%;
}

.size .s_20 {
    width: 20%;
    max-width: 20%;
}

.size .s_15 {
    width: 15%;
}

.size .s_10 {
    width: 10%;
}

.size .s_5 {
    width: 5%;
}

.form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form .field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.form .field label {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
}

@media (max-width: 900px) {
    .form .field label {
        font-size: 14px;
    }
}

.form .field input {
    background-color: #ffffff;
    border: 1px solid #c3c3c3;
    border-radius: 22px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 22px;
    width: 100%;
    margin-bottom: 15px;
}

.form .field input::-webkit-input-placeholder {
    color: #c3c3c3;
}

.form .field input::-moz-placeholder {
    color: #c3c3c3;
}

.form .field input:-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field input::-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field input::placeholder {
    color: #c3c3c3;
}

.form .field input:invalid {
    background-color: #ffd2d2;
    border: 1px solid #ff6868;
}

.form .field a {
    color: #413f60;
}

.form .field textarea {
    border: 1px solid #c3c3c3;
    padding: 10px;
    padding-left: 15px;
    border-radius: 22px;
    width: 100%;
}

@media (max-width: 900px) {
    .form .field textarea {
        width: 90%;
    }
}

.form .field textarea::-webkit-input-placeholder {
    color: #c3c3c3;
}

.form .field textarea::-moz-placeholder {
    color: #c3c3c3;
}

.form .field textarea:-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field textarea::-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field textarea::placeholder {
    color: #c3c3c3;
}

.form .field select {
    border: 1px solid #c3c3c3;
    padding: 10px;
    padding-left: 15px;
    border-radius: 22px;
    width: 100%;
}

.form .field select::-webkit-input-placeholder {
    color: #c3c3c3;
}

.form .field select::-moz-placeholder {
    color: #c3c3c3;
}

.form .field select:-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field select::-ms-input-placeholder {
    color: #c3c3c3;
}

.form .field select::placeholder {
    color: #c3c3c3;
}

.form .field select option {
    font-size: 18px;
}

.form .field.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.form .field.checkbox input {
    width: initial;
}

.form .field.checkbox .cText {
    font-size: 12px;
    line-height: 18px;
    counter-reset: #8e8eba;
}

.form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 900px) {
    .form .row.mobile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .form .row.mobile .field {
        width: 100%;
    }
}

.form .row .field {
    width: 48%;
}

.arrowSlider {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fad248;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 900px) {
    .arrowSlider {
        width: 30px;
        height: 30px;
    }
}

.arrowSlider:hover {
    background-color: #ffc600;
}

.arrowSlider img {
    height: 25px;
}

@media (max-width: 900px) {
    .arrowSlider img {
        height: 20px;
    }
}

.arrowSlider.left {
    left: -110px;
    top: 100px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .arrowSlider.left {
        left: -50px;
        top: 130px;
    }
}

.arrowSlider.right {
    right: -110px;
    top: 100px;
}

@media (max-width: 900px) {
    .arrowSlider.right {
        right: -50px;
        top: 130px;
    }
}

.firstTitle {
    max-width: 718px;
}

.header {
    position: relative;
}

.header .hMenu {
    height: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #413f60;
    padding-left: 5%;
    padding-right: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1050px) {
    .header .hMenu {
        height: 20px;
    }
}

@media (max-width: 1330px) {
    .header .hMenu.hMWrap {
        height: 60px;
    }
}

@media (max-width: 1050px) {
    .header .hMenu.hMWrap {
        height: 20px;
    }
}


.header .hMenu .hMLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1050px) {
    .header .hMenu .hMLinks {
        display: none;
    }
}

.header .hMenu .hMLinks .hMLLink {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    cursor: pointer;
}

.header .hMenu .hMLinks .hMLLink.active {
    color: #fad248;
    text-decoration: underline;
}

.header .hMenu .hMMobile {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1050px) {
    .header .hMenu .hMMobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header .hMenu .hMMobile .hMMImg {
    max-width: 30px;
}

.header .hConnect {
    padding: 15px;
    background-color: #fad248;
    border-radius: 20px;
    width: 300px;
    position: absolute;
    top: 25px;
    right: 10%;
    z-index: 2;
}

@media (max-width: 1050px) {
    .header .hConnect {
        display: none;
    }
}

.header .hConnect .hCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .hConnect .hCBlock a {
    margin-top: 8px;
    color: #413f60;
    font-size: 12px;
    line-height: 20px;
}

@media (max-width: 1050px) {
    .header .hConnect .hCBlock a {
        font-size: 10px;
        line-height: 16px;
    }
}

.header .hConnect .hCBlock input {
    background-color: #ffffff;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.header .hConnect .hCBlock input::-webkit-input-placeholder {
    color: #8e8eba;
}

.header .hConnect .hCBlock input::-moz-placeholder {
    color: #8e8eba;
}

.header .hConnect .hCBlock input:-ms-input-placeholder {
    color: #8e8eba;
}

.header .hConnect .hCBlock input::-ms-input-placeholder {
    color: #8e8eba;
}

.header .hConnect .hCBlock input::placeholder {
    color: #8e8eba;
}

.header .hConnect.hCShow {
    display: none;
}

.header .hBanner {
    background-image: url("../assets/2022/background_header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding-top: 130px;
    padding-bottom: 70px;
    position: relative;
}

.header .hBanner:after {
    content: "";
    height: 13px;
    width: 100%;
    background: url("../assets/2022/background_border.svg");
    position: absolute;
    bottom: 0;
}

.header .hBanner .hBImg img {
    width: 200px;
}

.headerMobileBlock {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 10;
    padding: 36px;
    padding-top: 120px;
}

.headerMobileBlock.hide {
    display: none;
}

.headerMobileBlock.headerMobileBlockConnect {
    background-color: #fad248;
}

.headerMobileBlock.headerMobileBlockConnect .hMBLinks {
    padding-bottom: 0;
}

.headerMobileBlock.headerMobileBlockConnect .hMBConnect {
    margin-top: 0;
}

.headerMobileBlock.headerMobileBlockConnect .hMBConnect .hMBCTitle {
    text-align: center;
    font-size: 20px;
    padding-bottom: 25px;
    font-weight: bold;
}

.headerMobileBlock.headerMobileBlockConnect .hMBConnect button {
    margin-top: 15px;
}

.headerMobileBlock .hMBLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid #d0d0d0;
    width: 100%;
}

.headerMobileBlock .hMBLinks .hMBLClose {
    position: absolute;
    top: 26px;
    right: 22px;
}

.headerMobileBlock .hMBLinks .hMBLink {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #413f60;
    text-decoration: none;
}

.headerMobileBlock .hMBConnect {
    margin-top: 50px;
    padding: 18px;
    background-color: #fad248;
    border-radius: 20px;
    width: 300px;
    z-index: 2;
}

.headerMobileBlock .hMBConnect .hMBCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.headerMobileBlock .hMBConnect .hMBCBlock a {
    margin-bottom: 10px;
    color: #413f60;
}

.headerMobileBlock .hMBConnect .hMBCBlock input {
    background-color: #ffffff;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.headerMobileBlock .hMBConnect .hMBCBlock input::-webkit-input-placeholder {
    color: #8e8eba;
}

.headerMobileBlock .hMBConnect .hMBCBlock input::-moz-placeholder {
    color: #8e8eba;
}

.headerMobileBlock .hMBConnect .hMBCBlock input:-ms-input-placeholder {
    color: #8e8eba;
}

.headerMobileBlock .hMBConnect .hMBCBlock input::-ms-input-placeholder {
    color: #8e8eba;
}

.headerMobileBlock .hMBConnect .hMBCBlock input::placeholder {
    color: #8e8eba;
}

.footer {
    background-color: #413f60;
    position: relative;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer:before {
    content: "";
    height: 13px;
    width: 100%;
    background: url("../assets/2022/background_border.svg");
    position: absolute;
    top: 0;
}

.footer .fInfo {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    width: 100%;
    gap: 40px;
}

@media (max-width: 1050px) {
    .footer .fInfo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
}

.footer .fInfo .fILeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-left: 10%;
}

@media (max-width: 1050px) {
    .footer .fInfo .fILeft {
        border-right: 0;
        padding-bottom: 50px;
        margin-left: 0;
        width: 100%;
    }
}

.footer .fInfo .fILeft .fILTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.footer .fInfo .fILeft .fILTop img {
    width: 94px;
}

.footer .fInfo .fILeft .fILTop .fILTText {
    font-size: 30px;
    line-height: 40px;
}

@media (max-width: 1050px) {
    .footer .fInfo .fILeft .fILTop .fILTText {
        font-size: 20px;
        line-height: 27px;
    }
}

.footer .fInfo .fILeft .fILBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.footer .fInfo .fILeft .fILBottom img {
    width: 45px;
}

.footer .fInfo .fILeft .fILBottom .fILBText {
    font-size: 16px;
    line-height: 25px;
}

.footer .fInfo .fILeft .fILBottom .fILBText a {
    color: #ffffff;
}

.footer .fInfo .fICenter {
    height: 150px;
    width: 2px;
    background-color: #ffffff;
}

@media (max-width: 1050px) {
    .footer .fInfo .fICenter {
        height: 1px;
        width: 230px;
    }
}

.footer .fInfo .fIRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-right: 10%;
}

@media (max-width: 1050px) {
    .footer .fInfo .fIRight {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        padding-top: 40px;
        margin-right: 0;
    }
}

.footer .fInfo .fIRight .fIRContact,
.footer .fInfo .fIRight .fIRMail {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding-left: 100px;
    padding-bottom: 20px;
}

@media (max-width: 1050px) {
    .footer .fInfo .fIRight .fIRContact,
    .footer .fInfo .fIRight .fIRMail {
        padding-left: 0;
    }
}

.footer .fInfo .fIRight .fIRSocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding-left: 100px;
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 1050px) {
    .footer .fInfo .fIRight .fIRSocial {
        font-size: 14px;
        line-height: 20px;
        padding-left: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.footer .fInfo .fIRight .fIRSocial .fIRSLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
}

.footer .fPartner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    border-radius: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 40px;
    height: 80px;
    margin-left: 10%;
    margin-right: 10%;
}

@media (max-width: 1050px) {
    .footer .fPartner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        gap: 25px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.footer .fPartner a img {
    max-width: 120px;
    max-height: 70px;
}

.footer .fLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 100px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 50px;
    margin-bottom: 35px;
}

@media (max-width: 1050px) {
    .footer .fLinks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }
}

.footer .fLinks a {
    color: #6bc3ce;
    text-decoration: none;
}

.footer .fLinks a:hover {
    text-decoration: underline;
}

.presentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 45px;
    margin-bottom: 45px;
}

.presentation .pTitle {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50px;
    position: relative;
}

@media (max-width: 900px) {
    .presentation .pTitle {
        font-size: 20px;
        line-height: 27px;
        margin-left: 0;
        margin-right: 0;
    }
}

.presentation .pTitle:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -35px;
}

.presentation .pTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: -15px;
}

.presentation .pContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .presentation .pContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }
}

.presentation .pContent .pCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    background-color: #8e8eba;
    -webkit-box-shadow: 10px 10px 5px #e2e2f7;
    box-shadow: 10px 10px 5px #e2e2f7;
    color: #ffffff;
    padding: 25px;
    border-radius: 30px;
    max-width: 320px;
    margin-left: 60px;
    margin-right: 60px;
    text-decoration: none;
    height: 175px;
}

.presentation .pContent .pCBlock:hover {
    background-color: #606099;
}

@media (max-width: 1170px) {
    .presentation .pContent .pCBlock {
        height: 215px;
    }
}

@media (max-width: 900px) {
    .presentation .pContent .pCBlock {
        margin-left: 0;
        margin-right: 0;
        height: auto;
    }
}

.presentation .pContent .pCBlock .pCBText {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 900px) {
    .presentation .pContent .pCBlock .pCBText {
        font-size: 14px;
        line-height: 20px;
    }
}

.presentation .pContent .pCBlock:first-child {
    background-color: #6bc3ce;
    -webkit-box-shadow: 10px 10px 5px #ddf5f8;
    box-shadow: 10px 10px 5px #ddf5f8;
    margin-left: 0;
    margin-right: 0;
}

.presentation .pContent .pCBlock:first-child:hover {
    background-color: #3BA4B2;
}

.presentation .pContent .pCBlock:last-child {
    background-color: #413f60;
    -webkit-box-shadow: 10px 10px 5px #e1dfef;
    box-shadow: 10px 10px 5px #e1dfef;
    margin-left: 0;
    margin-right: 0;
}

.presentation .pContent .pCBlock:last-child:hover {
    background-color: #605d8e;
}

.movement {
    background-color: #eeeef8;
    padding: 115px;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 65px;
}

.movement .mContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .movement .mContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.movement .mContainer .mLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 40%;
}

@media (max-width: 900px) {
    .movement .mContainer .mLeft {
        width: 100%;
        padding-bottom: 45px;
    }
}

.movement .mContainer .mLeft .mLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    padding-top: 30px;
}

@media (max-width: 900px) {
    .movement .mContainer .mLeft .mLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.movement .mContainer .mLeft .mLTitle {
    font-size: 60px;
    line-height: 64px;
}

@media (max-width: 900px) {
    .movement .mContainer .mLeft .mLTitle {
        font-size: 40px;
        line-height: 40px;
    }
}

.movement .mContainer .mRight {
    width: 50%;
}

@media (max-width: 900px) {
    .movement .mContainer .mRight {
        width: 100%;
    }
}

.movement .mContainer .mRight .mRText {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 45px;
}

@media (max-width: 900px) {
    .movement .mContainer .mRight .mRText {
        font-size: 14px;
        line-height: 20px;
    }
}

.partner {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 65px;
    margin-bottom: 65px;
}

.partner .pText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .partner .pText {
        font-size: 14px;
        line-height: 20px;
    }
}

.partner .pTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .partner .pTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.partner .pLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 70px;
}

@media (max-width: 900px) {
    .partner .pLogo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 20px;
    }
}

.partner .pLogo .slider-partner-logo {
    display: block;
    width: 100%;
}

.partner .pLogo .slider-partner-logo .slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}

.avis {
    background-color: rgba(250, 210, 72, 0.3);
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 70px;
    padding-bottom: 50px;
}

.avis .aText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    margin-left: 10%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .avis .aText {
        font-size: 14px;
        line-height: 20px;
    }
}

.avis .aTitle {
    font-size: 40px;
    line-height: 55px;
    margin-left: 10%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .avis .aTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.avis .aBlock {
    margin-right: auto;
    margin-left: auto;
    position: relative;
    max-width: 650px;
}

.avis .aBlock .aBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.avis .aBlock .aBContent .aBCText {
    font-size: 18px;
    line-height: 30px;
    max-width: 650px;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .avis .aBlock .aBContent .aBCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.avis .aBlock .aBContent .aBCAuthor {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .avis .aBlock .aBContent .aBCAuthor {
        font-size: 14px;
        line-height: 20px;
    }
}

.ressources {
    padding-left: 10%;
    padding-right: 10%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.ressources .rText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .ressources .rText {
        font-size: 14px;
        line-height: 20px;
    }
}

.ressources .rTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .ressources .rTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.ressources .rBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 60px;
    margin-top: 50px;
}

.ressources .rBlock .rBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

@media (max-width: 900px) {
    .ressources .rBlock .rBContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.ressources .rBlock .rBContent img {
    width: 260px;
}

.ressources .rBlock .rBContent .rBCText {
    font-size: 18px;
    line-height: 25px;
    max-width: 400px;
}

@media (max-width: 900px) {
    .ressources .rBlock .rBContent .rBCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.linestie {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
    padding-bottom: 130px;
    background-color: #8e8eba;
    color: #ffffff;
    margin-bottom: 150px;
    position: relative;
}

@media (max-width: 900px) {
    .linestie {
        padding-bottom: 60px;
    }
}

.linestie .lContainer {
    max-width: 1300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .linestie .lContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .linestie .lContainer .lLeft {
        width: 100%;
        padding-bottom: 30px;
    }
}

.linestie .lContainer .lLeft .lLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .linestie .lContainer .lLeft .lLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.linestie .lContainer .lLeft .lLTitle {
    font-size: 60px;
    line-height: 64px;
}

@media (max-width: 900px) {
    .linestie .lContainer .lLeft .lLTitle {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .linestie .lContainer .lRight {
        width: 100%;
    }
}

.linestie .lContainer .lRight .lRText {
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    .linestie .lContainer .lRight .lRText {
        font-size: 14px;
        line-height: 20px;
    }
}

.linestie .linestieBlock {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -60px;
    width: 670px;
    padding: 10px;
    background-color: #ffffff;
    border: 2px solid #fad248;
}

@media (max-width: 900px) {
    .linestie .linestieBlock {
        width: 300px;
        bottom: -45px;
    }
}

.linestie .linestieBlock .lBLogos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 45px;
}

@media (max-width: 900px) {
    .linestie .linestieBlock .lBLogos {
        gap: 20px;
    }
}

.linestie .linestieBlock .lBLogos img {
    max-width: 200px;
}

@media (max-width: 900px) {
    .linestie .linestieBlock .lBLogos img {
        max-width: 90px;
        max-height: 45px;
    }
}

.linestie .linestieBlock .lBLogos:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -45px;
    left: -45px;
}

@media (max-width: 900px) {
    .linestie .linestieBlock .lBLogos:before {
        background-size: 50%;
        top: -30px;
        left: -30px;
    }
}

.values {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 60px;
    margin-bottom: 60px;
}

.values .vText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    margin-right: auto;
    margin-left: auto;
    max-width: 1430px;
}

@media (max-width: 900px) {
    .values .vText {
        font-size: 14px;
        line-height: 20px;
    }
}

.values .vTitle {
    font-size: 40px;
    line-height: 55px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1430px;
}

@media (max-width: 900px) {
    .values .vTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.values .vContent {
    font-size: 18px;
    line-height: 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1430px;
}

@media (max-width: 900px) {
    .values .vContent {
        font-size: 14px;
        line-height: 20px;
    }
}

.values .vBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 65px;
    max-width: 1300px;
}

@media (min-width: 1800px) {
    .values .vBlock {
        margin-left: auto;
        margin-right: auto;
    }
}

.values .vBlock .vBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 900px) {
    .values .vBlock .vBContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 40px;
    }
}

.values .vBlock .vBContent .vBCPart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

@media (max-width: 900px) {
    .values .vBlock .vBContent .vBCPart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
}

.values .vBlock .vBContent .vBCPart img {
    max-width: 50px;
}

.values .vBlock .vBContent .vBCPart .vBCPContent .vBCPCTitle {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    .values .vBlock .vBContent .vBCPart .vBCPContent .vBCPCTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.values .vBlock .vBContent .vBCPart .vBCPContent .vBCPCText {
    font-size: 18px;
    line-height: 30px;
    max-width: 375px;
}

@media (max-width: 900px) {
    .values .vBlock .vBContent .vBCPart .vBCPContent .vBCPCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.talk {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 20px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: rgba(250, 210, 72, 0.3);
}

.talk .tText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .talk .tText {
        font-size: 14px;
        line-height: 20px;
    }
}

.talk .tTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .talk .tTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.talk .tLogo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 65px;
    margin-bottom: 65px;
    width: 100%;
}

@media (max-width: 900px) {
    .talk .tLogo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
    }
}

.talk .tLogo img {
    max-width: 100px;
}

.talk .mainBtn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.popIn {
    width: 100%;
    height: 100vh;
    background-color: rgba(101, 101, 101, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 6;
}

.popIn.popDesactive {
    display: none;
}

.popIn .pIContent {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 2%;
    margin-bottom: 2%;
    background-color: #ffffff;
    border-radius: 22px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 50px;
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

@media (max-width: 900px) {
    .popIn .pIContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        overflow: auto;
        height: 80%;
    }
}

.popIn .pIContent .pIClose {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #413f60;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.popIn .pIContent .pICLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    max-width: 35%;
}

@media (max-width: 900px) {
    .popIn .pIContent .pICLeft {
        max-width: 100%;
    }
}

.popIn .pIContent .pICLeft .pICLTitle {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 900px) {
    .popIn .pIContent .pICLeft .pICLTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.popIn .pIContent .pICLeft .pICLText {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 900px) {
    .popIn .pIContent .pICLeft .pICLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.popIn .pIContent .pICRight {
    max-width: 50%;
}

@media (max-width: 900px) {
    .popIn .pIContent .pICRight {
        max-width: 100%;
    }
}

.popIn .pIContent .pICRight .pLeft {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.popIn .pIContent .pICRight .pLeft.pLBtn {
    margin-top: 20px;
}

.popIn .pIContent.pIStep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.popIn .pIContent.pIStep .pITitle {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 900px) {
    .popIn .pIContent.pIStep .pITitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.popIn .pIContent.pIStep .pICheck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.popIn .pIContent.pIStep .pIText {
    font-size: 18px;
    line-height: 30px;
    color: #51bfa0;
    text-align: center;
}

@media (max-width: 900px) {
    .popIn .pIContent.pIStep .pIText {
        font-size: 14px;
        line-height: 20px;
    }
}

.popIn .pIContent.pIStep.pIStepNone {
    display: none;
}

.downloadBook,
.downloadGuide {
    display: none;
}

.overflowPopin {
    max-height: 75vh;
    overflow: auto;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.appli {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.appli.podcast {
    margin-bottom: 0;

}
@media (min-width: 900px) {
    .features.podcast {
        padding-bottom: 50px;
        display: flex;
        flex: auto;
        align-items: start;
    }
    .features.podcast .ausha-player {
        width: 50%;
    }
    .features.podcast .youtube-player {
        padding: 10px;
        width: 50%;
    }
}



.plateformList {
    padding: 0;
}

.plateformList li {
    display: inline;
    margin-right: 15px;
}

.plateformList svg {
    height: 40px;
}

.appli .aTitle {
    font-size: 30px;
    line-height: 40px;
    position: relative;
    text-align: center;
}

@media (max-width: 900px) {
    .appli .aTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.appli .aTitle:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -30px;
}

.appli .aTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: -30px;
}

.appli .aPresentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 70px;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 1300px;
}

@media (max-width: 1000px) {
    .appli .aPresentation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px;
    }
}

.appli .aPresentation img {
    max-width: 460px;
}

@media (max-width: 900px) {
    .appli .aPresentation img {
        max-width: 300px;
    }

    .podcast .aPresentation img {
        margin-bottom: 20px;
    }
}

.appli .aPresentation .aPContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.appli .aPresentation .aPContent .aPCText {
    font-size: 18px;
    line-height: 25px;
}

@media (max-width: 900px) {
    .appli .aPresentation .aPContent .aPCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.appli .aPresentation .aPContent .aPCText span {
    color: #6bc3ce;
}

.appli .aUse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .appli .aUse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 900px) and (max-width: 1300px) {
    .appli .aUse {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 155px;
        -moz-column-gap: 155px;
        column-gap: 155px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.appli .aUse .aUBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 245px;
    position: relative;
}

.appli .aUse .aUBlock:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -15px;
}

.appli .aUse .aUBlock .aUBNumber {
    font-size: 35px;
    line-height: 22px;
}

.appli .aUse .aUBlock .aUBText {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 900px) {
    .appli .aUse .aUBlock .aUBText {
        font-size: 14px;
        line-height: 20px;
    }
}

.features {
    padding-right: 10%;
    padding-left: 10%;
    background-color: #eeeef8;
    padding-top: 50px;
    padding-bottom: 90px;
}

.features .fText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .features .fText {
        font-size: 14px;
        line-height: 20px;
    }
}

.features .fTitle {
    font-size: 40px;
    line-height: 55px;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .features .fTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.features .fContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1250px) {
    .features .fContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 1050px) {
    .features .fContent {
        display: none;
    }
}

.features .fContent .fLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 850px;
}

@media (max-width: 1250px) {
    .features .fContent .fLeft {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.features .fContent .fLeft .fLBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.features .fContent .fLeft .fLBlock .fLBImg {
    max-width: 90px;
}

.features .fContent .fLeft .fLBlock .fLBImg img {
    max-width: 40px;
}

.features .fContent .fLeft .fLBlock .fLBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    max-width: 270px;
}

.features .fContent .fLeft .fLBlock .fLBContent .fLBCFeature {
    color: #ffffff;
    background-color: #413f60;
    padding: 15px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 25px;
}

.fLBCFeature {
    height: 80px;
    width: 100%;
}

@media (max-width: 900px) {
    .features .fContent .fLeft .fLBlock .fLBContent .fLBCFeature {
        font-size: 14px;
        line-height: 20px;
    }
}

.features .fContent .fLeft .fLBlock .fLBContent .fLBCText {
    font-size: 16px;
    line-height: 25px;
}

@media (max-width: 900px) {
    .features .fContent .fLeft .fLBlock .fLBContent .fLBCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.features .fContent .fRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.features .fContent .fRight .fRDownload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.features .fContent .fRight .fRDownload img {
    max-width: 125px;
    cursor: pointer;
}

.features .fContentMobile {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1050px) {
    .features .fContentMobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.features .fContentMobile .fCMTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;
}

.features .fContentMobile .fCMTop .fCMTLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    width: 50%;
}

.features .fContentMobile .fCMTop .fCMTLeft .fCMTLImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 130px;
}

.features .fContentMobile .fCMTop .fCMTRight {
    width: 50%;
}

.features .fContentMobile .fCMTop .fCMTRight img {
    max-width: 270px;
    width: 125%;
}

.features .fContentMobile .fCMBottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 40px;
}

.features .fContentMobile .fCMBottom .fCMBImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 120px;
}

.features .fContentMobile .fCMDownload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.features .fContentMobile .fCMDownload img {
    max-width: 140px;
    cursor: pointer;
}

.percent {
    padding-left: 10%;
    padding-right: 10%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.percent .pText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .percent .pText {
        font-size: 14px;
        line-height: 20px;
    }
}

.percent .pTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .percent .pTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.percent .pBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
}

.percent .pBlock .pBTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 45px;
    gap: 10px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBTop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.percent .pBlock .pBTop .pBTContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBTop .pBTContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
    }
}

.percent .pBlock .pBTop .pBTContent .pBTCText {
    font-size: 18px;
    line-height: 30px;
    max-width: 320px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBTop .pBTContent .pBTCText {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
}

.percent .pBlock .pBBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBBottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.percent .pBlock .pBBottom .pBBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBBottom .pBBContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
    }
}

.percent .pBlock .pBBottom .pBBContent .pBBCText {
    font-size: 18px;
    line-height: 30px;
    max-width: 320px;
}

@media (max-width: 900px) {
    .percent .pBlock .pBBottom .pBBContent .pBBCText {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
}

.appliFormation {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    background-color: rgba(250, 210, 72, 0.3);
}

.appliFormation.podcast {
    background-color: white;
}

@media (max-width: 900px) {
    .appliFormation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 35px;
    }
}

.appliFormation .aFPlus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fad248;
    border-radius: 50%;
    width: 90px;
    min-width: 90px;
    height: 90px;
    color: #ffffff;
    font-size: 60px;
}

.appliFormation .aFText {
    font-size: 18px;
    line-height: 30px;
    max-width: 620px;
}

@media (max-width: 900px) {
    .appliFormation .aFText {
        font-size: 14px;
        line-height: 20px;
    }
}

.solution {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.solution .sText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .solution .sText {
        font-size: 14px;
        line-height: 20px;
    }
}

.solution .sTitle {
    font-size: 40px;
    line-height: 55px;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .solution .sTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.solution .sContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .solution .sContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.solution .sContent .sCRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    width: 310px;
    min-width: 310px;
}

@media (min-width: 900px) and (max-width: 1300px) {
    .solution .sContent .sCRight {
        width: 200px;
        min-width: 200px;
    }
}

.solution .sContent .sCRight .sCRText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    line-height: 30px;
    gap: 20px;
    width: 345px;
    height: 60px;
}

@media (min-width: 900px) and (max-width: 1100px) {
    .solution .sContent .sCRight .sCRText {
        height: 140px;
        width: 200px;
    }
}

@media (min-width: 1100px) and (max-width: 1300px) {
    .solution .sContent .sCRight .sCRText {
        height: 140px;
        width: 260px;
    }
}

.solution .sContent .sCRight .sCRText img {
    width: 100px;
}

@media (max-width: 900px) {
    .solution .sContent .sCRight .sCRText {
        font-size: 14px;
        line-height: 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media (max-width: 900px) {
    .solution .sContent .sCRight .sCRText .sDotTurnMobile {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.solution .sContent .sCMiddle img {
    max-width: 360px;
}

.solution .sContent .sCLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    width: 310px;
    min-width: 310px;
}

@media (min-width: 900px) and (max-width: 1300px) {
    .solution .sContent .sCLeft {
        width: 200px;
        min-width: 200px;
    }
}

.solution .sContent .sCLeft .sCLText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 30px;
    gap: 20px;
    width: 345px;
    height: 60px;
}

@media (min-width: 900px) and (max-width: 1100px) {
    .solution .sContent .sCLeft .sCLText {
        height: 140px;
        width: 200px;
    }
}

@media (min-width: 1100px) and (max-width: 1300px) {
    .solution .sContent .sCLeft .sCLText {
        height: 140px;
        width: 260px;
    }
}

.solution .sContent .sCLeft .sCLText img {
    width: 100px;
}

@media (max-width: 900px) {
    .solution .sContent .sCLeft .sCLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.solution .sContent .sCLeft .sCLText .sDotTurn {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.btnDevis {
    position: fixed;
    top: 100px;
    right: 0;
    background-color: #6bc3ce;
    padding: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    z-index: 40;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    color: #413f60;
}

.btnDevis .bDText {
    display: none;
}

.btnDevis .bDIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btnDevis .bDIcon img {
    max-height: 25px;
}

.btnDevis:hover .bDText {
    display: block;
}

.btnDevis:hover .bDIcon {
    display: none;
}

.linestieFormation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 100px;
}

.linestieFormation .lFTitle {
    font-size: 30px;
    line-height: 40px;
    position: relative;
    text-align: center;
}

@media (max-width: 900px) {
    .linestieFormation .lFTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.linestieFormation .lFTitle:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: 0;
}

@media (max-width: 900px) {
    .linestieFormation .lFTitle:before {
        left: -35px;
    }
}

@media (max-width: 420px) {
    .linestieFormation .lFTitle:before {
        left: -20px;
    }
}

.linestieFormation .lFTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: 0;
}

@media (max-width: 900px) {
    .linestieFormation .lFTitle:after {
        right: -35px;
    }
}

@media (max-width: 420px) {
    .linestieFormation .lFTitle:after {
        right: -20px;
    }
}

.linestieFormation .lFPresentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 70px;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 1300px;
}

@media (max-width: 1000px) {
    .linestieFormation .lFPresentation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 40px;
    }
}

.linestieFormation .lFPresentation img {
    max-width: 460px;
}

@media (max-width: 900px) {
    .linestieFormation .lFPresentation img {
        max-width: 300px;
    }
}

.linestieFormation .lFPresentation .lFPContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.linestieFormation .lFPresentation .lFPContent .lFPCText {
    font-size: 18px;
    line-height: 25px;
}

@media (max-width: 900px) {
    .linestieFormation .lFPresentation .lFPContent {
        align-items: center;
    }

    .linestieFormation .lFPresentation .lFPContent .lFPCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.linestieFormation .lFPresentation .lFPContent .mainBtn {
    font-size: 20px;
    padding: 20px 75px;
}

.linestieFormation .lFList {
    width: 100%;
    font-size: 18px;
}

.linestieFormation .lFList .lFListText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

.linestieFormation .lFList .lFListTitle {
    font-size: 40px;
    line-height: 55px;
}

.linestieFormation .lFList .lFLContent {
    border: 1px solid #8D8FB7;
    border-radius: 17px;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .linestieFormation .lFList .lFLContent {
        flex-direction: column;
        gap: 20px;
        font-size: 14px;
    }

}

.linestieFormation .lFList .lFLContent .lFLCLblock {
    display: flex;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .linestieFormation .lFList .lFLContent .lFLCLblock {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.linestieFormation .lFList .lFLContent .lFLCLblock .lFLCPlus {
    margin-right: 20px;
}

.who {
    padding-left: 10%;
    padding-right: 10%;
    background-color: #eeeef8;
    padding-top: 50px;
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 90px;
}

@media (max-width: 900px) {
    .who {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.wLeft {
    align-self: flex-start;
}

.who .wLeft .wLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .who .wLeft .wLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.who .wLeft .wLTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .who .wLeft .wLTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.who .wRight {
    max-width: 660px;
}

.who .wRight .wRText {
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 30px;
}

.who .wRight .wRText span {
    color: #6bc3ce;
}

@media (max-width: 900px) {
    .who .wRight .wRText {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalogue {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 20px;
    margin-bottom: 80px;
}

.catalogue .cHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
}

.catalogue .cHeader .cHContent .cHCText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .catalogue .cHeader .cHContent .cHCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalogue .cHeader .cHContent .cHCTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .catalogue .cHeader .cHContent .cHCTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .catalogue .cHeader .mainBtn {
        display: none;
    }
}

.catalogue .cContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 80px;
    row-gap: 40px;
    margin-top: 130px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1401px) {
    .catalogue .cContent {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .catalogue .cContent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 50px;
    }
}

.catalogue .cContent .cCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    padding-top: 70px;
    padding-bottom: 20px;
    background-color: #8e8eba;
    border-radius: 20px;
    gap: 10px;
    margin-bottom: 50px;
    color: #ffffff;
    width: 27%;
    height: 300px;
    font-size: 18px;
    line-height: 30px;
    -webkit-box-shadow: 10px 10px 5px #e3e3e3;
    box-shadow: 10px 10px 5px #e3e3e3;
}

 .askQuote {
    display: flex;
    justify-content: center;
    margin: 70px 0 70px 0;
}

.catalogue .cCErasmus {

    position: relative;
    text-align: left;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    border-radius: 20px;
    margin-bottom: 50px;

    line-height: 30px;
    -webkit-box-shadow: 10px 10px 5px #e3e3e3;
    box-shadow: 10px 10px 5px #e3e3e3;
    border: 1px solid #8E8EBA;
}

.cCErasmus .cCBTheme {
    position: absolute;
    top: -5%;
    left: 5%;
}
@media (max-width: 900px) {
    .cCErasmus .cCBTheme {
        position: absolute;
        top: -2%;
        left: 7%;
    }
}

.cCErasmus .cCBTheme .cCBTItem {
    background-color: #6bc3ce;
    display: inline-block;
    padding: 5px 100px 5px 8px;
    border-radius: 10px;
    color: #413F60;
    font-size: 18px;
}

.cCErasmusContent {
    display: flex;
    padding: 0 40px;
}

@media (max-width: 900px) {
    .cCErasmusContent {
        flex-direction: column;
        padding: 0;
    }
}

.cCErasmusTitle {
    font-size: 20px;
    padding: 10px 0;
}

.cCErasmusText {
    font-size: 16px;
    padding-right: 50px;
}

@media (max-width: 900px) {
    .cCErasmusText {
        padding-right: 0;
    }
}

.cCErasmusTextBtn {
    display: flex;
    justify-content: center;
}

.cCErasmusTextBtn .btnFormations {
    padding: 5px 60px;
}

@media (max-width: 900px) {
    .cCErasmusTextBtn .btnFormations {
        padding: 5px;
    }
}

.cCErasmusRea {
    display: flex;
    font-size: 12px;
    margin-bottom: 20px;
}

.cCErasmusIcon {
    padding: 0 15px;
}

.catalogue .cContent .cCBlock .cCBTheme {
    position: absolute;
    top: -30%;
    left: 25%;
}
@media (max-width: 900px) {
    .catalogue .cContent .cCBlock .cCBTheme {
        position: static;
    }
}

.catalogue .cContent .cCBlock .cCBTItem {
    display: inline-block;
    padding: 5px 100px 5px 8px;
    border-radius: 10px;
    color: #413F60;
}

@media (max-width: 900px) {
    .catalogue .cContent .cCBlock {
        font-size: 14px;
        line-height: 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: column;
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        padding: 25px 15px;
        border-radius: 10px;
        gap: 20px;
        height: 100%;
    }
}

.catalogue .cContent .cCBlock img {
    max-width: 110px;
}

@media (max-width: 900px) {
    .catalogue .cContent .cCBlock img {
        margin-top: 0;
        width: 45px;
    }
}

.catalogue .cContent .cCBlock .cCBText {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .catalogue .cContent .cCBlock .cCBText {
        font-size: 14px;
        line-height: 30px;
    }
}


.catalogue .cText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .catalogue .cText {
        width: 100%;
    }
}

.catalogue .cText .cTSubtitle {
    font-size: 22px;
    line-height: 30px;
    color: #6bc3ce;
    max-width: 600px;
}

@media (max-width: 900px) {
    .catalogue .cText .cTSubtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalogue .cText .cTSubtitle {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .catalogue .cText .cTSubtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalogue .cText .cTText {
    font-size: 18px;
    line-height: 30px;
}

.financement {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    background-color: rgba(250, 210, 72, 0.3);
}

@media (max-width: 900px) {
    .financement {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 35px;
        align-items: start;
    }
}

.financement .fContent {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.financement .fContent .fCText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media (max-width: 900px) {
    .financement .fContent .fCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.financement .fContent .fCTitle {
    font-size: 40px;
    line-height: 55px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media (max-width: 900px) {
    .financement .fContent .fCTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.financement .fText {
    font-size: 18px;
    line-height: 30px;
    max-width: 620px;
}

@media (max-width: 900px) {
    .financement .fText {
        font-size: 14px;
        line-height: 20px;
    }
}

.financement img {
    max-width: 175px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.testimony {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 100px;
    margin-bottom: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .testimony {

        margin: 30px 0 30px 0;

    }
    .testimony .mainBtn{
        width: 80%;
    }
}
.testimony .tContainer {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.testimony .tContainer .tText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .testimony .tContainer .tText {
        font-size: 14px;
        line-height: 20px;
    }
}

.testimony .tContainer .tTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.testimony .tContainer .tBlock {
    position: relative;
    margin-bottom: 45px;
    margin-right: auto;
    margin-left: auto;
    max-width: 650px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock {
        max-width: 260px;
    }
}

.testimony .tContainer .tBlock .tBArrow {
    position: absolute;
}

.testimony .tContainer .tBlock .tBArrow img {
    width: 60px;
    height: 60px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock .tBArrow img {
        width: 30px;
        height: 30px;
    }
}

.testimony .tContainer .tBlock .tBArrow.left {
    left: -110px;
    top: 100px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock .tBArrow.left {
        left: -50px;
        top: 130px;
    }
}

.testimony .tContainer .tBlock .tBArrow.right {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    right: -110px;
    top: 100px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock .tBArrow.right {
        right: -50px;
        top: 130px;
    }
}

.testimony .tContainer .tBlock .tBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.testimony .tContainer .tBlock .tBContent .tBCText {
    font-size: 18px;
    line-height: 30px;
    max-width: 650px;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock .tBContent .tBCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.testimony .tContainer .tBlock .tBContent .tBCAuthor {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .testimony .tContainer .tBlock .tBContent .tBCAuthor {
        font-size: 14px;
        line-height: 20px;
    }
}

.testimony .tBtn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.percentQualiopi {
    padding-left: 10%;
    padding-right: 10%;
    background-color: #eeeef8;
    padding-top: 50px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
}

@media (max-width: 900px) {
    .percentQualiopi {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.percentQualiopi .pQBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.percentQualiopi .pQBlock .pQBPercent {
    font-size: 30px;
    line-height: 40px;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .percentQualiopi .pQBlock .pQBPercent {
        font-size: 20px;
        line-height: 27px;
    }
}

.percentQualiopi .pQBlock .pQBText {
    font-size: 18px;
    line-height: 25px;
    max-width: 330px;
}

@media (max-width: 900px) {
    .percentQualiopi .pQBlock .pQBText {
        max-width: 230px;
        font-size: 14px;
        line-height: 20px;
    }
}

.contact {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 40px;
    padding-bottom: 100px;
    background-color: #eeeef8;
}

.contactResponseOk {
    display: none;
}

@media (max-width: 1050px) {
    .contact {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.contact .cBlock {
    background-color: #ffffff;
    border-radius: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 160px;
    padding-right: 80px;
    padding-top: 35px;
    padding-bottom: 35px;
}

@media (max-width: 1050px) {
    .contact .cBlock {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1050px) and (max-width: 1200px) {
    .contact .cBlock {
        padding-left: 60px;
        padding-left: 60px;
    }
}

.contact .cBlock .cBTitle {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBTitle {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 50px;
        margin-top: 35px;
    }
}

.contact .cBlock .cBTitle .cBTText {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBTitle .cBTText {
        font-size: 14px;
        line-height: 20px;
    }
}

.contact .cBlock .cBTitle .cBTText:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -40px;
}

.contact .cBlock .cBTitle .cBTTitle {
    position: relative;
    font-size: 40px;
    line-height: 55px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBTitle .cBTTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.contact .cBlock .cBTitle .cBTTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: -40px;
}

.contact .cBlock .cBForm {
    width: 70%;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBForm {
        width: 100%;
    }
}

.contact .cBlock .cBForm .btnForm {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 20px;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBForm .btnForm {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}

.contact .cBlock .cBForm .formValidateText {
    display: none;
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 1050px) {
    .contact .cBlock .cBForm .formValidateText {
        font-size: 14px;
        line-height: 20px;
    }
}

.atelier {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 70px;
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.atelier .aTitle {
    font-size: 30px;
    line-height: 40px;
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .atelier .aTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.atelier .aTitle:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -15px;
}

.atelier .aTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: -15px;
}

.atelier .aSteps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    position: relative;
    max-width: 1500px;
}

@media (max-width: 900px) {
    .atelier .aSteps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.atelier .aSteps .aSBlock {
    width: 240px;
    background-color: #8e8eba;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    padding: 40px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    z-index: 2;
}

@media (max-width: 1245px) {
    .atelier .aSteps .aSBlock {
        height: 90px;
    }
}

@media (max-width: 900px) {
    .atelier .aSteps .aSBlock {
        font-size: 14px;
        line-height: 20px;
        height: auto;
    }
}

.atelier .aSteps .aSLine {
    width: 90%;
    height: 4px;
    background-color: #8e8eba;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 900px) {
    .atelier .aSteps .aSLine {
        width: 4px;
        height: 90%;
    }
}

.enjeux {
    padding-left: 10%;
    padding-right: 10%;
    background-color: #eeeef8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 180px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 900px) {
    .enjeux {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }
}

.enjeux .eLeft .eLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .enjeux .eLeft .eLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.enjeux .eLeft .eLTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .enjeux .eLeft .eLTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.enjeux .eRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 430px;
    gap: 30px;
}

.enjeux .eRight .eRBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
}

.enjeux .eRight .eRBlock .eRBText {
    font-size: 18px;
}

.steps {
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 60px;
    padding-bottom: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.steps .sTitle {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

@media (max-width: 900px) {
    .steps .sTitle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}

@media (min-width: 2300px) {
    .steps .sTitle {
        margin-left: 5%;
    }
}

.steps .sTitle .sTText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .steps .sTitle .sTText {
        font-size: 14px;
        line-height: 20px;
    }
}

.steps .sTitle .sTTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .steps .sTitle .sTTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.steps .sContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 70px;
    position: relative;
    width: 100%;
    max-width: 1700px;
}

@media (max-width: 900px) {
    .steps .sContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 50px;
        margin-top: 60px;
    }
}

.steps .sContent .sCLine {
    width: 86%;
    height: 2px;
    background-color: #fad248;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: -54px;
    z-index: 1;
}

@media (max-width: 900px) {
    .steps .sContent .sCLine {
        width: 2px;
        height: 90%;
        top: 10px;
        left: 32px;
        margin-left: 0;
    }
}

.steps .sContent .sCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 300px;
}

@media (max-width: 900px) {
    .steps .sContent .sCBlock {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 70px;
        gap: 15px;
    }
}

.steps .sContent .sCBlock .sCBNumber {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fad248;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    font-size: 30px;
    top: -85px;
    z-index: 2;
}

@media (max-width: 900px) {
    .steps .sContent .sCBlock .sCBNumber {
        position: relative;
        top: 0;
    }
}

@media (max-width: 900px) {
    .steps .sContent .sCBlock .sCBImg {
        display: none;
    }
}

.steps .sContent .sCBlock .sCBText {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    max-width: 170px;
    padding-top: 30px;
}

@media (max-width: 900px) {
    .steps .sContent .sCBlock .sCBText {
        font-size: 14px;
        line-height: 20px;
        max-width: 200px;
        padding-top: 0;
        text-align: left;
    }
}

.steps .sBtn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.workshop {
    padding-left: 10%;
    padding-right: 10%;
    background-color: rgba(250, 210, 72, 0.3);
    padding-top: 70px;
    padding-bottom: 80px;
}

.workshop .wText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .workshop .wText {
        font-size: 14px;
        line-height: 20px;
    }
}

.workshop .wTitle {
    font-size: 40px;
    line-height: 55px;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .workshop .wTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.workshop .wContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding-top: 60px;
}

@media (max-width: 900px) {
    .workshop .wContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.workshop .wContent .wCLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    width: 350px;
}

@media (max-width: 900px) {
    .workshop .wContent .wCLeft {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.workshop .wContent .wCLeft .wCLText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    line-height: 25px;
    gap: 20px;
    text-align: right;
}

.workshop .wContent .wCLeft .wCLText img {
    width: 50px;
}

@media (max-width: 900px) {
    .workshop .wContent .wCLeft .wCLText {
        font-size: 14px;
        line-height: 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        text-align: left;
    }
}

@media (max-width: 900px) {
    .workshop .wContent .wCLeft .wCLText .wDotTurnMobile {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.workshop .wContent .wCMiddle {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

@media (max-width: 900px) {
    .workshop .wContent .wCMiddle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}

@media (max-width: 900px) {
    .workshop .wContent .wCMiddle img {
        max-width: 320px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.workshop .wContent .wCRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    width: 350px;
}

.workshop .wContent .wCRight .wCRText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    gap: 20px;
}

.workshop .wContent .wCRight .wCRText img {
    width: 50px;
}

@media (max-width: 900px) {
    .workshop .wContent .wCRight .wCRText {
        font-size: 14px;
        line-height: 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.workshop .wContent .wCRight .wCRText .wDotTurn {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.compagnon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 45px;
    margin-bottom: 70px;
}

.compagnon .cTitle {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .compagnon .cTitle {
        font-size: 20px;
        line-height: 27px;
    }
}

.compagnon .cTitle:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: -35px;
}

.compagnon .cTitle:after {
    content: "";
    height: 50px;
    width: 50px;
    background: url("../assets/2022/yellow_line.svg");
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -35px;
    right: -15px;
}

.compagnon .cPresentation {
    margin-top: 40px;
}

.compagnon .cPresentation .cPText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPText {
        font-size: 14px;
        line-height: 20px;
    }
}

.compagnon .cPresentation .cPTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.compagnon .cPresentation .cPContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.compagnon .cPresentation .cPContainer .cPCLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    width: 50%;
    padding-left: 70px;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer .cPCLeft {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
}

.compagnon .cPresentation .cPContainer .cPCLeft .cPCLBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.compagnon .cPresentation .cPContainer .cPCLeft .cPCLBlock .cPCLBText {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer .cPCLeft .cPCLBlock .cPCLBText {
        font-size: 14px;
        line-height: 20px;
    }
}

.compagnon .cPresentation .cPContainer .cPCLeft .cPCLBlock:nth-child(3) {
    margin-bottom: 50px;
}

.compagnon .cPresentation .cPContainer .cPCRight {
    position: relative;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer .cPCRight {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.compagnon .cPresentation .cPContainer .cPCRight img {
    z-index: 2;
}

.compagnon .cPresentation .cPContainer .cPCRight img:last-child {
    z-index: 1;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer .cPCRight img {
        display: none;
    }
}

.compagnon .cPresentation .cPContainer .cPCRight .cPCRCompagnon {
    position: absolute;
    top: -150px;
    right: 60px;
}

@media (max-width: 900px) {
    .compagnon .cPresentation .cPContainer .cPCRight .cPCRCompagnon {
        position: relative;
        top: 0;
        right: 0;
        display: block;
    }
}

.explication {
    padding-left: 10%;
    padding-right: 10%;
    background-color: #eeeef8;
    padding-top: 50px;
    padding-bottom: 50px;
}

.explication .eContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 90px;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .explication .eContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}

.explication .eContainer .eLeft img {
    max-width: 315px;
    border-radius: 13px;
}

.explication .eContainer .eRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 50px;
}

.explication .eContainer .eRight .eRText {
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 900px) {
    .explication .eContainer .eRight .eRText {
        font-size: 14px;
        line-height: 20px;
    }
}

.explication .eContainer .eRight .eRText span {
    color: #6bc3ce;
}

.cFonctionality {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.cFonctionality .cFText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 1125px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .cFonctionality .cFText {
        font-size: 14px;
        line-height: 20px;
    }
}

.cFonctionality .cFTitle {
    font-size: 40px;
    line-height: 55px;
    max-width: 1125px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .cFonctionality .cFTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.cFonctionality .cFContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1250px;
    margin-top: 60px;
    gap: 30px;
    row-gap: 50px;
    margin-left: auto;
    margin-right: auto;
}

.cFonctionality .cFContainer .cFCBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 130px;
}

.cFonctionality .cFContainer .cFCBlock .cFCBImg {
    max-width: 90px;
}

.cFonctionality .cFContainer .cFCBlock .cFCBImg img {
    max-width: 40px;
}

.cFonctionality .cFContainer .cFCBlock .cFCBContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    max-width: 300px;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.cFonctionality .cFContainer .cFCBlock .cFCBContent .cFCBCFeature {
    color: #ffffff;
    background-color: #413f60;
    padding: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 13px;
    font-size: 18px;
    line-height: 25px;
}

.cFCBCFeature {
    height: 70px;
    width: 100%;
}

@media (max-width: 900px) {
    .cFonctionality .cFContainer .cFCBlock .cFCBContent .cFCBCFeature {
        font-size: 14px;
        line-height: 20px;
    }

    .cFCBCFeature {
        height: auto;
    }
}

.cFonctionality .cFContainer .cFCBlock .cFCBContent .cFCBCText {
    font-size: 16px;
    line-height: 25px;
}

@media (max-width: 900px) {
    .cFonctionality .cFContainer .cFCBlock .cFCBContent .cFCBCText {
        font-size: 14px;
        line-height: 20px;
    }
}

.power {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: rgba(250, 210, 72, 0.3);
}

.power .pContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

@media (max-width: 900px) {
    .power .pContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.power .pContainer .pCLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 33%;
}

@media (max-width: 900px) {
    .power .pContainer .pCLeft {
        width: 100%;
        padding-bottom: 25px;
    }
}

.power .pContainer .pCLeft img {
    padding-left: 25px;
}

@media (max-width: 900px) {
    .power .pContainer .pCLeft img {
        max-width: 60px;
    }
}

.power .pContainer .pCLeft .pCLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    padding-top: 30px;
}

@media (max-width: 900px) {
    .power .pContainer .pCLeft .pCLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.power .pContainer .pCLeft .pCLTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .power .pContainer .pCLeft .pCLTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.power .pContainer .pCRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 66%;
}

@media (max-width: 900px) {
    .power .pContainer .pCRight {
        width: 100%;
    }
}

.power .pContainer .pCRight .pCRText {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .power .pContainer .pCRight .pCRText {
        font-size: 14px;
        line-height: 20px;
    }
}

.support {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 40px;
    max-width: 1300px;
    gap: 40px;
}

@media (max-width: 900px) {
    .support {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
}

.support .sLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .support .sLeft {
        width: 100%;
    }
}

.support .sLeft .sLText {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    padding-top: 30px;
}

@media (max-width: 900px) {
    .support .sLeft .sLText {
        font-size: 14px;
        line-height: 20px;
    }
}

.support .sLeft .sLTitle {
    font-size: 40px;
    line-height: 55px;
}

@media (max-width: 900px) {
    .support .sLeft .sLTitle {
        font-size: 30px;
        line-height: 40px;
    }
}

.support .sRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 50px;
    gap: 15px;
    width: 75%;
}

@media (max-width: 900px) {
    .support .sRight {
        width: 100%;
    }
}

.support .sRight .sRBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.support .sRight .sRBlock:last-child {
    margin-top: 25px;
}

.support .sRight .sRBlock .sRBImg img {
    max-width: 120px;
}

@media (max-width: 900px) {
    .support .sRight .sRBlock .sRBImg img {
        max-width: 80px;
    }
}

.support .sRight .sRBlock .sRBText {
    font-size: 18px;
    line-height: 25px;
    max-width: 650px;
}

@media (max-width: 900px) {
    .support .sRight .sRBlock .sRBText {
        font-size: 10px;
        line-height: 16px;
    }
}

.formationPerso {
    padding-left: 15%;
    padding-right: 15%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    margin-top: 40px;
    margin-bottom: 80px;
}
@media (max-width: 900px) {
    .formationPerso {
        padding: 0;
    }
}
.formationPerso .title{
    text-align: center;
    color: #6bc3ce;
   font-size: 20px;
}
.formationPerso .txt{
    text-align: center;
    font-size: 18px;
}

.pourQui{
    display: flex;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #EEEEF8;

}
@media (max-width: 900px) {
    .pourQui{
        display: block;
    }
}
.pourQui .title {
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    width: 23%;
}
@media (max-width: 900px) {
    .pourQui .title{
        display: block;
        margin: 0 auto 50px auto;
    }
}
.pourQui .upTitle {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}
.pourQui .downtitle {
    font-size: 40px;
    line-height: 55px;
}
.pourQui .txt {
    font-size: 18px;
    line-height: 30px;
    max-width: 620px;
}
.blue {
    color: #6bc3ce;
}


.warning {
    background-color: #fad248;
    padding-left: 5%;
    padding-right: 10%;
    padding-top:10px;
    padding-bottom:10px;
    font-weight: bold;
}
#conenct-list a, #conenct-list-mobile a{
    color: #413F60;
}