html {
    font-size: 16px
}

body {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    line-height: 1.6
}

h1 {
    font-size: 32px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    letter-spacing: 4px
}

@media (max-width: 35em) {
    h1 {
        font-size: 28px;
        letter-spacing: 3px
    }
}

h2 {
    font-size: 28px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata
}

@media (max-width: 35em) {
    h2 {
        font-size: 24px;
        letter-spacing: 2px
    }
}

p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 400;
    font-family: Roboto;
    color: #4b4b4d;
    line-height: 1.6
}

.container {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 148px
}

@media (max-width: 45em) {
    .container {
        margin-left: 10%;
        margin-right: 10%;
        max-width: 80%
    }
}

@media (max-width: 25em) {
    .container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
        padding-right: 5%;
        max-width: 90%
    }
}

.container-big {
    max-width: 1000px
}

@media (max-width: 75em) {
    .container-big {
        margin-left: 10%;
        margin-right: 10%;
        max-width: 80%
    }
}

@media (max-width: 25em) {
    .container-big {
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
        padding-right: 5%;
        max-width: 90%
    }
}

.main-color-med {
    color: #24407d
}

.neutral-color-white {
    color: #fff
}

.neutral-color-dark {
    color: #4b4b4d
}

.txt-center {
    text-align: center
}

@media (max-width: 25em) {
    .breakpoint-2-none {
        display: none
    }
}

.c-btn {
    display: inline-block;
    background-color: #c3314b;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    letter-spacing: .5px;
    font-style: normal;
    font-weight: 500;
    font-family: Roboto;
    padding: 10px 16px;
    border: 0;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer
}

.c-btn:hover {
    text-decoration: none;
    background-color: #870018;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 3px rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease
}

.c-icon-btn {
    padding: 10px 36px 10px 16px;
    position: relative
}

.c-icon-btn:after {
    content: '';
    position: absolute;
    top: 12px;
    right: 16px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/icons/email.svg);
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    transition: all 0.3s ease
}

.c-icon-btn:hover:after {
    transform: scale(1.2);
    transition: all 0.3s ease
}

.c-text-btn {
    display: inline;
    position: relative;
    color: #c3314b;
    padding: 10px 36px 10px 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none
}

.c-text-btn:hover {
    color: #870018;
    transition: all 0.3s ease
}

.c-text-btn::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 8px;
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icons/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease
}

.c-text-btn:hover:after {
    right: 4px;
    transition: all 0.3s ease
}

.close-btn {
    background-color: #c3314b;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer
}

.close-btn img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    display: block
}

.close-btn:hover {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 3px rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease
}

.close-btn:hover img {
    transform: rotate(90deg);
    transition: all 0.3s ease
}

.btn-disable {
    opacity: 0.5;
    box-shadow: none;
    cursor: not-allowed
}

.btn-disable:hover {
    box-shadow: none;
    background-color: #c3314b
}

.c-text-btn-invert {
    position: relative;
    color: #c3314b;
    padding: 10px 16px 10px 28px
}

.c-text-btn-invert::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c-text-btn-invert:hover:after {
    left: -4px
}

.unordered-lists {
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 400;
    font-family: Roboto;
    color: #4b4b4d;
    margin-top: 0;
    margin-bottom: 0
}

.unstyled-lists {
    padding-left: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 400;
    font-family: Roboto;
    color: #4b4b4d;
    margin-top: 0;
    margin-bottom: 0
}

.unstyled-lists li {
    list-style: none
}

.link-standard {
    position: relative;
    text-decoration: none;
    color: #c3314b;
    font-weight: bold;
    transition: all 0.3s ease
}

.link-standard:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #c3314b;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.link-standard:hover {
    text-decoration: none;
    color: #870018;
    transition: all 0.3s ease
}

.link-standard:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #870018
}

.iframe-container {
    margin: 56px auto 0 auto;
    position: relative;
    width: 100%;
    max-width: 1280px;
    max-height: 510px;
    min-height: 300px;
    padding-bottom: 0
}

.iframe-container iframe {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    max-width: 1440px;
    max-height: 510px
}

.form__block-radio-btn {
    margin-bottom: 32px;
    overflow: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2)
}

@media (max-width: 65em) {
    .form__block-radio-btn {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-bottom: 24px;
        margin-bottom: 24px
    }
}

.form__radio-btn {
    transition: all 0.3s ease;
    position: relative;
    display: block;
    margin-top: 6px
}

@media (max-width: 35em) {
    .form__radio-btn {
        margin-bottom: 8px
    }
}

@media (max-width: 480px) {
    .form__radio-btn {
        margin-bottom: 8px
    }
}

.form__radio-btn:first-of-type label {
    margin-left: 0
}

.form__radio-btn input {
    opacity: 0;
    z-index: 0;
    position: absolute;
    transition: all 0.3s ease
}

@media (max-width: 35em) {
    .form__radio-btn input {
        margin-left: 20px
    }
}

@media (max-width: 480px) {
    .form__radio-btn input {
        margin-left: 20px
    }
}

.form__radio-btn label {
    cursor: pointer;
    height: 24px;
    z-index: 1;
    position: relative;
    display: inline;
    float: left;
    font-weight: normal;
    padding: 2px 0 0 32px;
    margin-left: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease
}

@media (max-width: 35em) {
    .form__radio-btn label {
        float: none;
        margin-left: 0;
        padding-top: 5px
    }
}

@media (max-width: 480px) {
    .form__radio-btn label {
        float: none;
        margin-left: 0;
        padding-top: 5px
    }
}

.form__radio-btn label:before {
    display: inline-block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease
}

.form__radio-btn label:after {
    display: inline-block;
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    box-sizing: border-box;
    background-color: #5979be;
    transition: all 0.3s ease;
    transform: scale(0)
}

@media (max-width: 65em) {
    .form__radio-btn label {
        margin-left: 0;
        margin-bottom: 8px
    }
}

.form__radio-btn:hover label:before {
    background-color: #5979be;
    border-color: #5979be;
    transition: all 0.3s ease
}

.form__radio-btn input:checked+label:before {
    transition: all 0.3s ease;
    border-color: #5979be
}

.form__radio-btn input:checked+label:after {
    transition: all 0.3s ease;
    transform: scale(1)
}

.form__radio-btn input:checked:hover+label:after {
    background-color: #fff;
    transition: all 0.3s ease
}

.form__label {
    font-weight: bold;
    font-size: 11px;
    color: #4b4b4d;
    letter-spacing: 0.46px;
    text-transform: uppercase
}

.form__input,
.form__textarea {
    padding: 12px 16px;
    border-radius: 2px;
    border: 1px solid #4b4b4d;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.46px;
    color: #4b4b4d;
    margin-top: 4px;
    box-sizing: border-box
}

.form__input {
    margin-bottom: 16px
}

.form__textarea {
    margin-bottom: 16px;
    min-height: 250px
}

.form__input::placeholder,
.form__textarea::placeholder {
    opacity: 0.5;
    font-size: 16px;
    color: #4b4b4d;
    letter-spacing: 0.46px
}

.form-contact .c-btn {
    float: right
}

.img-600px-width {
    margin-top: 40px;
    width: 100%;
    height: auto;
    display: block
}

.img-circle {
    border-radius: 100%
}

.img-circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.img-circle-btn .img-circle {
    width: 200px;
    height: auto;
    margin-bottom: 32px
}

.title-img-circle-btn {
    text-transform: capitalize;
    text-align: center;
    font-size: 20px;
    line-height: normal;
    color: #000;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    color: #24407d;
    margin-bottom: 16px
}

.txt-img-circle-btn {
    text-align: center;
    margin-bottom: 24px
}

.img-circle-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 150px;
    margin-bottom: 56px
}

.img-circle-txt .img-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto
}

.title-img-circle {
    margin-top: 24px;
    font-size: 20px;
    line-height: normal;
    color: #000;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    text-align: center;
    text-transform: uppercase;
    color: #5d5e60;
    letter-spacing: 2px;
    line-height: 26px
}

.txt-img-circle {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
    color: #898a8c;
    letter-spacing: 1.56px;
    line-height: 20px
}

.img-circle-client {
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-left: 28px;
    padding-right: 28px
}

.img-circle-client img {
    width: 125px;
    height: 125px;
    display: block;
    margin-top: 80px;
    margin-bottom: 24px
}

@media (max-width: 639px) {
    .img-circle-client {
        padding: 0
    }
}

.title-img-circle-client {
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px
}

.img-circle-client__date {
    font-size: 14px;
    line-height: normal;
    text-align: center;
    letter-spacing: .5px;
    font-style: normal;
    font-weight: 500;
    font-family: Roboto;
    color: #898a8c;
    margin-bottom: 12px
}

.img-circle-client__description {
    text-align: center;
    font-size: 14px;
    height: 130px;
    overflow: hidden
}

.icon-bg-txt {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px
}

.icon-bg-txt .txt-icon-bg-txt .label,
.icon-bg-txt .txt-icon-bg-txt .value {
    color: #4b4b4d;
    letter-spacing: 0.39px;
    line-height: 1.1
}

.icon-bg-txt .txt-icon-bg-txt .label {
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase
}

.icon-bg-txt .txt-icon-bg-txt .value {
    font-size: 14px;
    text-transform: lowercase
}

.img-icon-bg-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    width: 40px;
    height: 40px;
    background-color: #5979be;
    border-radius: 100%
}

.img-icon-bg-txt img {
    width: 16px;
    height: 16px
}

.img-circle-title-txt-left,
.img-circle-title-txt-right {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 160px;
    max-width: 1000px;
    width: 100%;
    position: relative
}

.img-circle-title-txt-left:after,
.img-circle-title-txt-right:after {
    content: '';
    display: block;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -160px;
    width: 100%;
    height: 160px
}

.title-img-circle-title-txt-content {
    font-size: 24px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    margin-bottom: 16px;
    letter-spacing: 5px
}

.img-circle-title-txt-left .img-circle-title-txt-content {
    margin-left: 100px
}

.img-circle-title-txt-left .img-circle-title-txt-content .title-img-circle-title-txt-content {
    color: #5979be
}

.img-circle-title-txt-left:after {
    background-image: url(../images/img/gradient-path-left@2x.png)
}

.img-circle-title-txt-right .img-circle-title-txt-content {
    margin-right: 100px
}

.img-circle-title-txt-right .img-circle-title-txt-content .title-img-circle-title-txt-content {
    color: #c3314b
}

.img-circle-title-txt-right:after {
    background-image: url(../images/img/gradient-path-right@2x.png)
}

.downloadable-item {
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 12px 16px;
    position: relative;
    box-sizing: border-box
}

.type-downloadable-item {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px
}

.txt-downloadable-item {
    display: flex;
    flex-direction: column
}

.title-downloadable-item {
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    color: #2c3c5e;
    letter-spacing: 0.5px
}

.weight-downloadable-item {
    margin-top: 2px;
    line-height: 1;
    font-weight: normal;
    font-size: 11px;
    color: #2c3c5e;
    letter-spacing: 0.46px
}

.link-downloadable-item {
    background-image: url(../images/icons/download-red.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 12px;
    transition: all 0.3s ease
}

.link-downloadable-item:hover {
    transform: scale(1.2);
    transition: all 0.3s ease;
    opacity: .8
}

@media (max-width: 25em) {
    .downloadable-item {
        height: 80px;
        align-items: flex-start
    }
    .link-downloadable-item {
        background-image: url(../images/icons/download-white.svg);
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        height: 32px;
        background-size: 16px 16px;
        height: 32px;
        background-color: #c3314b;
        border-radius: 0 2px 2px 0
    }
    .link-downloadable-item:hover {
        transform: scale(1);
        opacity: 1
    }
}

.disable-downloadable-item {
    opacity: .5;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.2)
}

.disable-downloadable-item .link-downloadable-item {
    cursor: not-allowed
}

@media (max-width: 25em) {
    .disable-downloadable-item .link-downloadable-item {
        border: 2px solid #c3314b
    }
}

.disable-downloadable-item:hover {
    box-shadow: none
}

.disable-downloadable-item:hover .link-downloadable-item:hover {
    transform: none;
    opacity: 1
}

.testimonial {
    width: 100%;
    background-color: #5979be;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.description-testmonial {
    color: #fff;
    max-width: 600px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 38.83px;
    margin-bottom: 40px;
    text-align: center
}

@media (max-width: 45em) {
    .description-testmonial {
        margin-left: 10%;
        margin-right: 10%;
        max-width: 80%;
        font-size: 20px;
        line-height: 1.5
    }
}

@media (max-width: 25em) {
    .description-testmonial {
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
        padding-right: 5%;
        max-width: 90%;
        font-size: 18px
    }
}

.infos-testimonial {
    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width: 25em) {
    .infos-testimonial {
        flex-direction: column
    }
}

.img-testimonial {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 16px
}

@media (max-width: 25em) {
    .img-testimonial {
        margin-bottom: 16px
    }
}

.infos-testimonial-txt {
    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width: 25em) {
    .infos-testimonial-txt {
        flex-direction: column
    }
}

.name-testimonial,
.function-testimonial,
.firm-testimonial {
    color: #fff
}

.name-testimonial,
.function-testimonial {
    margin-right: 8px
}

.name-testimonial {
    font-weight: bold
}

@media (max-width: 25em) {
    .name-testimonial {
        margin-right: 0
    }
}

.infos-testimonial-function-firm {
    display: flex;
    flex-direction: row
}

.function-testimonial {
    opacity: .6
}

.navigation {
    height: 110px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 4
}

.nav-container {
    margin: 0 auto;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    /*align-items: center;
    justify-content: space-between;*/
    height: 100%
}

@media (max-width: 65em) {
    .nav-container {
        padding-left: 24px;
        position: relative
    }
}

.brand {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.4em;
    z-index: 4;
    display: flex;
    justify-content: space-between;
}

.brand a,
.brand a:visited {
    font-size: 11px;
    line-height: normal;
    text-align: left;
    color: #898a8c;
    letter-spacing: .45833px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-family: Roboto;
    text-decoration: none
}

.brand a {
    display: block
}

.brand strong{
  font-size: 0.4em;
}
.logo-compagny{margin-top: 5px;}
@media only screen and (max-width: 1100px){
  .contact-compagny{
    display: none;
  }
}

.brand .social a{float:right;margin-left: 15px;}
.brand .social .contact-us{color:white;}
.linkedlin:hover svg #svg-linkedin{fill:#0077B5;}

.header__innovatis-logo {
    width: 130px;
    height: 41px;
    display: block;
    transition: all 0.3s ease
}

.nav-list {
    padding: 0;
    list-style: none;
    margin: 0
}

.nav-list-item {
    float: left;
    position: relative;
}
.nav-list-item a{
    padding: 0 35px!important;
}
.list-society-title{padding: 0 40px!important;}
.list-society-title:first-child{padding-left:7px!important;}
.list-title,
.list-title:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    line-height: 64px;
    font-size: 11px;
    line-height: normal;
    text-align: left;
    color: #24407d;
    letter-spacing: .45833px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-family: Roboto;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease
}

.list-title:hover,
.list-title:visited:hover {
    font-size: 11px;
    line-height: normal;
    text-align: left;
    color: #c3314b;
    letter-spacing: .45833px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-family: Roboto;
    font-size: 14px;
    transition: all 0.3s ease
}

.list-title:not(:only-child):after,
.list-title:visited:not(:only-child):after {
    margin-top: -2px;
    display: block;
    padding-left: 6px;
    content: ' ▾'
}

.list-title:focus {
    color: #c3314b;
    transition: all 0.3s ease
}

.list-title:focus:not(:only-child):after {
    transform: rotate(180deg);
    padding-right: 6px;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: -2px
}

.nav-dropdown-items {
    min-width: 190px
}

.nav-dropdown-items-link {
    padding: 15px;
    line-height: 20px
}

.nav-dropdown {
    display: none;
    position: absolute;
    opacity: 1;
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    top: 24px;
    left: -8px;
    background-color: #fff
}

.nav-dropdown-items {
    width: 230px;
    height: 56px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.nav-dropdown-items-link {
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    text-align: left;
    display: block;
    width: 157px;
    height: 32px;
    font-size: 12px;
    color: #4B4B4D;
    letter-spacing: 1px;
    line-height: 16px;
    font-weight: 500;
    margin-left: 32px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease
}

.nav-dropdown-items-link:hover {
    color: #c3314b;
    transition: all 0.3s ease
}

.list-country{float:right;}
.list-country .list-country-title {
    font-weight: 500;
    color: #4b4b4d;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.list-country .list-country-title:focus {
    color: #c3314b;
    transition: all 0.3s ease
}

.list-country .nav-dropdown-items {
    width: 150px
}

.list-country .nav-dropdown-items .nav-dropdown-items-link {
    text-transform: capitalize;
    margin-left: 0;
    padding-left: 32px;
    border-left: 3px solid #fff;
    transition: all 0.3s ease
}

.list-country .nav-dropdown-items .nav-dropdown-items-link-active {
    border-color: #c3314b;
    font-weight: bold;
    transition: all 0.3s ease
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 25px;
    right: 16px;
    background: transparent;
    height: 14px;
    width: 16px
}

@media only screen and (max-width: 1100px) {
    .nav-mobile {
        display: block
    }
    .nav-header {
        width: 100%;
        height: 64px;
        position: absolute;
        left: 0
    }
    .nav-list {
        display: none;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 64px;
        left: 0;
        z-index: 2
    }
    .nav-list-item {
        float: none;
        padding: 24px 0 24px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2)
    }
    .nav-list-item:last-of-type {
        border-bottom: none
    }
    .list-title,
    .list-title:visited {
        padding: 0;
        justify-content: flex-end;
        padding-right: 18px
    }
    .nav-dropdown {
        position: static;
        border-radius: 0;
        box-shadow: none;
        margin-top: 16px;
        padding-top: 0;
        padding-bottom: 0
    }
    .nav-dropdown-items {
        width: 100%;
        justify-content: flex-end;
        height: 32px
    }
    .nav-dropdown-items-link {
        margin-right: 32px;
        justify-content: flex-end;
        font-size: 11px;
        line-height: normal;
        text-align: left;
        color: #24407d;
        letter-spacing: .45833px;
        text-transform: uppercase;
        font-style: normal;
        font-weight: bold;
        font-family: Roboto;
        font-size: 14px;
        text-align: right;
        color: #4b4b4d;
        font-weight: 400;
        text-transform: capitalize;
        width: 100%
    }
    .list-country .nav-dropdown {
        margin-top: 24px
    }
    .list-country .nav-dropdown-items {
        width: 100%;
        height: 40px
    }
    .list-country .nav-dropdown-items .nav-dropdown-items-link {
        margin-right: 0;
        padding-right: 32px;
        border-left: none;
        border-right: 3px solid #fff
    }
    .list-country .nav-dropdown-items .nav-dropdown-items-link-active {
        border-color: #c3314b
    }
}

@media screen and (min-width: 1101px) {
    .nav-list {
        display: block !important
    }
}

#nav-toggle {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 14px
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    background-color: #24407d;
    cursor: pointer;
    border-radius: 2px;
    height: 2px;
    width: 16px;
    font-size: 11px;
    line-height: normal;
    text-align: left;
    color: #898a8c;
    letter-spacing: .45833px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    font-family: Roboto;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out
}

#nav-toggle span {
    top: 6px
}

#nav-toggle span:before {
    top: -6px
}

#nav-toggle span:after {
    bottom: -6px
}

#nav-toggle.active span {
    background-color: transparent
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0
}

#nav-toggle.active span:before {
    transform: rotate(45deg)
}

#nav-toggle.active span:after {
    transform: rotate(-45deg)
}

footer {
    max-width: 1152px;
    width: 100%;
    padding-bottom: 16px;
    margin: 0 auto
}

@media (max-width: 75em) {
    footer {
        margin-left: 10%;
        margin-right: 10%;
        max-width: 80%
    }
}

@media (max-width: 35em) {
    footer {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 90%
    }
}

.footer-container {
    margin: 0 auto 48px auto;
    text-align: left;
    width: 100%
}

.footer-nav {
    padding-top: 0;
    border-top: 1px solid rgba(137, 138, 140, 0.5);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
}

.footer-nav__col {
    list-style: none;
    margin-top: 24px;
    margin-bottom: 0;
    padding: 0
}

.footer-nav__col .footer-nav__heading {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 14px;
    color: #4b4b4d;
    letter-spacing: 0.5px;
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 16px
}

.footer-nav__col a {
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    color: #898a8c;
    letter-spacing: 0.5px;
    transition: all 0.3s ease
}

.footer-nav__col a:hover {
    color: #4b4b4d;
    transition: all 0.3s ease
}

.footer-nav__address {
    margin-bottom: 8px
}

.subfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(137, 138, 140, 0.5);
    width: 100%
}

.subfooter .subfooter__text {
    font-size: 12px;
    color: rgba(137, 138, 140, 0.75);
    letter-spacing: 0.5px;
    line-height: 22.65px
}

.subfooter .subfooter__text a {
    color: #5d5e60;
    transition: all 0.3s ease
}

.subfooter .subfooter__text a:hover {
    color: #4b4b4d;
    transition: all 0.3s ease
}

.subfooter__img {
    width: auto;
    height: 24px
}

@media (max-width: 45em) {
    .subfooter {
        flex-direction: column
    }
    .subfooter .subfooter__img {
        margin-top: 16px
    }
}

.modal {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.modal-open {
    display: block
}

.modal .close-btn {
    position: absolute;
    right: 64px;
    top: 64px
}

@media (max-width: 55em) {
    .modal .close-btn {
        top: 32px;
        right: 40px;
        width: 40px;
        height: 40px
    }
    .modal .close-btn img {
        width: 16px;
        height: 16px
    }
}

.modal-client h2 {
    font-size: 28px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    margin-top: 64px;
    margin-bottom: 32px
}

@media (max-width: 55em) {
    .modal-client h2 {
        margin-top: 96px
    }
}

@media (max-width: 35em) {
    .modal-client h2 {
        font-size: 24px;
        letter-spacing: 2px
    }
}

.infos-client {
    padding-top: 20px;
    padding-bottom: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 56px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center
}

.infos-client-name,
.infos-client-year {
    margin-right: 32px
}

.infos-label {
    font-size: 12px;
    color: #24407d;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 4px
}

.infos-value {
    font-weight: 500;
    font-size: 16px;
    color: #4b4b4d;
    letter-spacing: 1px;
    line-height: 1
}

.component__formation {
    width: 100%;
    height: 105px;
    padding: 16px 16px 12px 24px;
    border-radius: 2px;
    border: 1px solid rgba(137, 138, 140, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 8px
}

.component__formation .c-btn {
    width: 175px;
    margin-left: 16px
}

.component__formation--infos {
    width: 100%
}

.component__formation--infos-title {
    font-weight: bold;
    font-size: 16px;
    color: #2c3c5e;
    letter-spacing: 1.78px;
    line-height: 29.12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(12, 34, 81, 0.5);
    margin-bottom: 8px
}

.component__formation--subinfos {
    display: flex;
    flex-direction: row;
    align-items: center
}

.component__formation--subinfos .downloadable-item {
    max-width: 236px;
    max-height: 30px;
    padding: 7px 8px;
    margin-right: 40px
}

.component__formation--subinfos .downloadable-item .type-downloadable-item {
    width: 16px;
    height: 16px
}

.component__formation--subinfos .downloadable-item .link-downloadable-item {
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    right: 8px;
    top: 7px
}

.component__formation--subinfos .downloadable-item .weight-downloadable-item {
    display: none
}

.component__formation--subinfos-ref,
.component__formation--subinfos-time {
    display: flex;
    flex-direction: row;
    align-items: center
}

.component__formation--subinfos-ref {
    margin-right: 40px
}

.component__formation--subinfos-ref-label,
.component__formation--subinfos-time-label {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #2c3c5e;
    letter-spacing: 1.78px;
    line-height: 29.12px;
    margin-right: 6px
}

.component__formation--subinfos-ref-value,
.component__formation--subinfos-time-value {
    display: block;
    opacity: 0.75;
    font-size: 16px;
    color: #2c3c5e;
    letter-spacing: 1.78px;
    line-height: 29.12px
}

@media (max-width: 65em) {
    .component__formation {
        width: 284px;
        height: 340px;
        display: flex;
        flex-direction: column;
        padding: 16px 24px;
        margin-bottom: 5%
    }
    .component__formation .c-btn {
        width: 150px;
        margin-right: 0;
        margin-left: auto
    }
    .component__formation--infos-title {
        text-align: center;
        width: 100%;
        height: 110px;
        letter-spacing: 1.33px;
        line-height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
        margin-bottom: 8px
    }
    .component__formation--subinfos {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(12, 34, 81, 0.5)
    }
    .component__formation--subinfos .downloadable-item {
        margin-right: 0;
        width: 100%;
        max-height: 48px;
        order: 3;
        margin-bottom: 16px
    }
    .component__formation--subinfos .downloadable-item .type-downloadable-item {
        width: 24px;
        height: 24px
    }
    .component__formation--subinfos .downloadable-item .link-downloadable-item {
        top: 16px
    }
    .component__formation--subinfos .downloadable-item .weight-downloadable-item {
        display: block
    }
    .component__formation--subinfos .component__formation--subinfos-ref {
        margin-right: 0
    }
    .component__formation--subinfos .component__formation--subinfos-time {
        margin-bottom: 8px
    }
}

@media (max-width: 25em) {
    .component__formation {
        height: 370px
    }
    .component__formation--subinfos .downloadable-item {
        max-height: none;
        padding-top: 12px
    }
    .component__formation--subinfos .downloadable-item .link-downloadable-item {
        width: 100%;
        top: auto;
        height: 32px
    }
}

.cover-top {
    width: 100%;
    height: 93vh;
    background-color: #5979be;
    position: relative;
    overflow: hidden
}

.cover-top-title {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 45%;
    transform: translateY(-50%);
    text-transform: uppercase
}

.cover-top__client {
    padding: 12px;
    position: absolute;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    animation-duration: 1s, 3s;
    animation-iteration-count: 1, infinite;
    transition: all 0.3s ease
}

.cover-top__client__img {
    width: 100%;
    height: auto;
    margin-top: 6px;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: pop-img
}

.cover-top__client--eads {
    top: 10%;
    left: 35%;
    height: 10vw;
    width: 10vw;
    animation-name: pop1, move1;
    padding: 16px
}

.cover-top__client--exosun {
    top: 40%;
    left: 20%;
    animation-name: pop2, move2;
    width: 8vw;
    height: 8vw
}

.cover-top__client--cnrs {
    top: 65%;
    left: 35%;
    animation-name: pop3, move3;
    width: 6.5vw;
    height: 6.5vw
}

.cover-top__client--cnrs .cover-top__client__img--cnrs {
    margin-top: 10px
}

.cover-top__client--schneider {
    top: 62.5%;
    left: 57.5%;
    animation-name: pop4, move4;
    width: 8.5vw;
    height: 8.5vw
}

.cover-top__client--thales {
    top: 25%;
    left: 65%;
    animation-name: pop5, move5;
    width: 9vw;
    height: 9vw
}

@keyframes pop-img {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

@keyframes pop1 {
    from {
        width: 0px;
        height: 0px
    }
    to {
        width: 10vw;
        height: 10vw
    }
}

@keyframes pop2 {
    from {
        width: 0px;
        height: 0px
    }
    to {
        width: 8vw;
        height: 8vw
    }
}

@keyframes pop3 {
    from {
        width: 0px;
        height: 0px
    }
    to {
        width: 6.5vw;
        height: 6.5vw
    }
}

@keyframes pop4 {
    from {
        width: 0px;
        height: 0px
    }
    to {
        width: 8.5vw;
        height: 8.5vw
    }
}

@keyframes pop5 {
    from {
        width: 0px;
        height: 0px
    }
    to {
        width: 9vw;
        height: 9vw
    }
}

@keyframes move1 {
    from {
        transform: translateX(0) translateY(0) scale(1)
    }
    50% {
        transform: translateX(8px) translateY(4px) scale(1.04)
    }
    to {
        transform: translateX(0) translateY(0) scale(1)
    }
}

@keyframes move2 {
    from {
        transform: translateX(0) translateY(0)
    }
    50% {
        transform: translateX(4px) translateY(8px) scale(0.98)
    }
    to {
        transform: translateX(0) translateY(0)
    }
}

@keyframes move3 {
    from {
        transform: translateX(0) translateY(0)
    }
    50% {
        transform: translateX(-4px) translateY(-8px) scale(1.03)
    }
    to {
        transform: translateX(0) translateY(0)
    }
}

@keyframes move4 {
    from {
        transform: translateX(0) translateY(0)
    }
    50% {
        transform: translateX(-8px) translateY(-4px) scale(0.95)
    }
    to {
        transform: translateX(0) translateY(0)
    }
}

@keyframes move5 {
    from {
        transform: translateX(0) translateY(0)
    }
    50% {
        transform: translateX(-8px) translateY(-8px) scale(1.05)
    }
    to {
        transform: translateX(0) translateY(0)
    }
}

@media (max-width: 65em) {
    .cover-top {
        height: 80vh
    }
    .cover-top-title {
        top: 50%;
        margin-top: 5px
    }
    .cover-top__client--eads {
        top: 17.5%;
        left: 35%;
        height: 126px;
        width: 126px
    }
    @keyframes pop1 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 126px;
            height: 126px
        }
    }
    .cover-top__client--exosun {
        top: 40%;
        left: 17.5%;
        width: 108px;
        height: 108px
    }
    @keyframes pop2 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 108px;
            height: 108px
        }
    }
    .cover-top__client--cnrs {
        top: 65%;
        left: 35%;
        width: 82px;
        height: 82px
    }
    @keyframes pop3 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 82px;
            height: 82px
        }
    }
    .cover-top__client--schneider {
        top: 60%;
        left: 60%;
        width: 114px;
        height: 114px
    }
    @keyframes pop4 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 114px;
            height: 114px
        }
    }
    .cover-top__client--thales {
        top: 30%;
        left: 67.5%;
        animation-name: pop5, move5;
        width: 120px;
        height: 120px
    }
    @keyframes pop5 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 120px;
            height: 120px
        }
    }
}

@media (max-width: 45em) {
    .cover-top__client--eads {
        top: 17.5%;
        left: 35%;
        height: 102px;
        width: 102px
    }
    @keyframes pop1 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 102px;
            height: 102px
        }
    }
    .cover-top__client--exosun {
        top: 40%;
        left: 10%;
        width: 84px;
        height: 84px
    }
    @keyframes pop2 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 84px;
            height: 84px
        }
    }
    .cover-top__client--cnrs {
        top: 65%;
        left: 32.5%;
        width: 58px;
        height: 58px
    }
    @keyframes pop3 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 58px;
            height: 58px
        }
    }
    .cover-top__client--schneider {
        top: 62.5%;
        left: 62.5%;
        width: 90px;
        height: 90px
    }
    @keyframes pop4 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 90px;
            height: 90px
        }
    }
    .cover-top__client--thales {
        top: 30%;
        left: 72.5%;
        animation-name: pop5, move5;
        width: 96px;
        height: 96px
    }
    @keyframes pop5 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 96px;
            height: 96px
        }
    }
}

@media (max-width: 35em) {
    .cover-top__client--eads {
        top: 10%;
        left: 20%;
        height: 102px;
        width: 102px
    }
    @keyframes pop1 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 102px;
            height: 102px
        }
    }
    .cover-top__client--exosun {
        top: 57.5%;
        left: 12.5%;
        width: 84px;
        height: 84px
    }
    @keyframes pop2 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 84px;
            height: 84px
        }
    }
    .cover-top__client--cnrs {
        top: 80%;
        left: 40%;
        width: 58px;
        height: 58px
    }
    @keyframes pop3 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 58px;
            height: 58px
        }
    }
    .cover-top__client--schneider {
        top: 62.5%;
        left: 62.5%;
        width: 90px;
        height: 90px
    }
    @keyframes pop4 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 90px;
            height: 90px
        }
    }
    .cover-top__client--thales {
        top: 25%;
        left: 60%;
        animation-name: pop5, move5;
        width: 96px;
        height: 96px
    }
    @keyframes pop5 {
        from {
            width: 0px;
            height: 0px
        }
        to {
            width: 96px;
            height: 96px
        }
    }
}

.container-img-circle-client {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center
}

.cover-list-img-page .c-btn {
    margin: 64px auto 0 auto;
    display: block;
    width: 200px
}

.txt-page h1 {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 64px;
    text-transform: uppercase
}

@media (max-width: 35em) {
    .txt-page h1 {
        margin-bottom: 32px
    }
}

.subtitle-part {
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 400;
    font-family: Roboto;
    font-weight: bold
}

.subsubtitle-part-container .subsubtitle-part {
    margin-top: 24px;
    font-weight: 400
}

.subsubtitle-part-container .subsubtitle-part:first-of-type {
    margin-top: 0
}

.subsubtitle-part-container .unordered-lists {
    padding-left: 32px
}

.simple-txt--margin-top {
    margin-top: 32px
}

.txt-img--margin-top {
    margin-top: 64px
}

.container-img-circle-btn {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between
}

@media (max-width: 65em) {
    .container-img-circle-btn {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }
}

.container-img-circle-btn .img-circle-btn {
    max-width: 300px
}

@media (max-width: 65em) {
    .container-img-circle-btn .img-circle-btn {
        margin-bottom: 64px;
        max-width: 400px
    }
}

.container-img-circle-btn .img-circle-btn .img-circle {
    border-radius: 0;
    width: auto;
    height: 170px
}

.container-img-circle-txt {
    margin-top: 48px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.container-img-circle-txt .img-circle-txt {
    width: 33.33%;
    max-width: none;
    box-sizing: border-box;
    padding: 0 16px
}

@media (max-width: 45em) {
    .container-img-circle-txt .img-circle-txt {
        width: 50%
    }
}

@media (max-width: 480px) {
    .container-img-circle-txt .img-circle-txt {
        width: 100%
    }
}

.title-part {
    font-size: 32px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase
}

@media (max-width: 35em) {
    .title-part {
        font-size: 32px;
        letter-spacing: 3px
    }
}

.downloadable-item--border-top {
    margin-top: 48px;
    border-top: 1px solid rgba(12, 34, 81, 0.5);
    padding-top: 32px
}

.formation-list-page {
    margin-bottom: 48px
}

.formation-list-page .unordered-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.formation-list-page .unordered-lists li {
    width: 50%
}

@media (max-width: 45em) {
    .formation-list-page .unordered-lists {
        flex-direction: column
    }
    .formation-list-page .unordered-lists li {
        width: 100%
    }
}

.formation-list--intro {
    margin-bottom: 40px
}

.formation-list--txt {
    margin-top: 40px
}

.container--component__formation {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 32px
}

@media (max-width: 45em) {
    .container--component__formation {
        padding-top: 16px
    }
}

.cat-title {
    font-size: 14px;
    font-weight: bold;
    color: #5979be;
    width: 100%
}

.container--cat__formation {
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (max-width: 45em) {
    .container--cat__formation {
        justify-content: center
    }
}

.filterDiv {
    display: none
}

.show {
    display: flex
}

.cat__formation {
    margin-top: 48px;
    color: #24407d;
    font-weight: bold;
    margin-bottom: 16px;
    flex: 100%
}

@media (max-width: 65em) {
    .cat__formation {
        justify-content: center;
        margin-top: 24px
    }
}

.formation-list-page-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 80px
}

.formation-list-page-bottom .txt-center {
    margin-bottom: 16px
}

.formation-list-page-bottom .c-icon-btn {
    margin-bottom: 56px;
    width: 200px;
    display: block
}

.formation-list-page-bottom hr {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 32px;
    opacity: .3
}

@media (max-width: 65em) {
    .container--component__formation {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width: 45em) {
    .container--component__formation {
        max-width: 80%;
        padding-left: 0;
        padding-right: 0
    }
}

.txt-page-formation h1 {
    text-transform: none;
    text-align: left;
    margin-bottom: 32px;
    font-size: 28px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata
}

@media (max-width: 35em) {
    .txt-page-formation h1 {
        font-size: 24px;
        letter-spacing: 2px
    }
}

.txt-page-formation .infos-formation {
    position: relative
}

.txt-page-formation .infos-formation .downloadable-item {
    max-width: 300px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

@media (max-width: 620px) {
    .txt-page-formation .infos-formation {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }
    .txt-page-formation .infos-formation .infos-ref,
    .txt-page-formation .infos-formation .infos-time {
        margin-bottom: 16px
    }
    .txt-page-formation .infos-formation .downloadable-item {
        position: relative;
        right: auto;
        top: auto;
        transform: none
    }
}

.txt-page-formation-details {
    margin-top: 36px
}

.txt-page-formation-details .c-text-btn-invert {
    font-weight: 400;
    font-size: 14px;
    padding-left: 24px
}

.txt-page-formation-details .c-text-btn-invert:after {
    width: 16px;
    height: 16px;
    background-size: 16px
}

.txt-page-formation-details h1 {
    margin-top: 24px
}

.homepage-container h2 {
    font-size: 28px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    text-align: center;
    color: #4b4b4d;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 64px
}

@media (max-width: 35em) {
    .homepage-container h2 {
        font-size: 24px
    }
}

.bx-wrapper .bx-controls-direction a {
    z-index: 1 !important
}

.bx-controls-direction .bx-prev,
.bx-controls-direction .bx-next {
    border-radius: 100%;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.bx-controls-direction .bx-prev:hover,
.bx-controls-direction .bx-next:hover {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 3px rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    transition: all 0.3s ease
}

.bx-controls-direction .bx-prev:after,
.bx-controls-direction .bx-next:after {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px
}

.bx-wrapper .bx-controls-direction .bx-next,
.bx-wrapper .bx-controls-direction .bx-prev {
    width: 50px;
    height: 50px;
    background-color: #24407d
}

@media (max-width: 45em) {
    .bx-wrapper .bx-controls-direction .bx-next,
    .bx-wrapper .bx-controls-direction .bx-prev {
        width: 40px;
        height: 40px;
        top: 10%
    }
    .bx-wrapper .bx-controls-direction .bx-next:after,
    .bx-wrapper .bx-controls-direction .bx-prev:after {
        width: 16px;
        height: 16px;
        background-size: 16px 16px
    }
}

.bx-wrapper .bx-controls-direction .bx-next {
    right: 32px
}

.bx-wrapper .bx-controls-direction .bx-next:after {
    background-image: url(../images/icons/next.svg);
    margin-left: 4px
}

@media (max-width: 45em) {
    .bx-wrapper .bx-controls-direction .bx-next {
        right: 35%
    }
}

.bx-wrapper .bx-controls-direction .bx-prev {
    left: 32px
}

.bx-wrapper .bx-controls-direction .bx-prev:after {
    background-image: url(../images/icons/next.svg);
    transform-origin: center;
    margin-right: 4px;
    transform: rotate(180deg)
}

@media (max-width: 45em) {
    .bx-wrapper .bx-controls-direction .bx-prev {
        left: 35%
    }
}

.slider-home .bx-wrapper {
    margin-bottom: 0;
    border: none
}

.slider-home .bx-wrapper img {
    max-width: none
}

.slider-home .bx-wrapper .bx-viewport {
    height: 100% !important
}

.slider-home .bx-wrapper .bx-viewport .slide {
    display: block;
    height: 80vh;
    background-color: #24407d;
    width: 100%;
    position: relative;
    overflow: hidden
}

@media (max-width: 1500px) {
    .slider-home .bx-wrapper .bx-viewport .slide {
        height: 70vh
    }
}

@media (max-width: 1300px) {
    .slider-home .bx-wrapper .bx-viewport .slide {
        height: 65vh
    }
}

@media (max-width: 1150px) {
    .slider-home .bx-wrapper .bx-viewport .slide {
        height: 60vh
    }
}

@media (max-width: 1000px) {
    .slider-home .bx-wrapper .bx-viewport .slide {
        height: 85vh
    }
}

@media (max-width: 45em) {
    .slider-home .bx-wrapper .bx-controls-direction .bx-next,
    .slider-home .bx-wrapper .bx-controls-direction .bx-prev {
        top: 90%
    }
}

.slide__img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: initial;
    width: 100%;
    height: auto;
    transform: translateX(-50%) translateY(-50%)
}

@media (max-width: 65em) {
    .slide__img {
        width: auto;
        height: 100%
    }
}

.slide__content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative
}

.slide__content:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #24407d;
    opacity: 0.5
}

.slide__content .slide__content--title,
.slide__content .slide__content--subtitle,
.slide__content .c-btn {
    z-index: 1
}

.slide__content .c-btn {
    text-transform: uppercase
}

.slide__content--title {
    font-size: 28px;
    line-height: normal;
    font-style: normal;
    font-weight: bold;
    font-family: Inconsolata;
    margin-top: 0;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px
}

.slide__content--subtitle {
    width: 100%;
    font-family: 'Inconsolata', serif;
    font-size: 24px;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    line-height: 35px;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 32px
}

@media (max-width: 25em) {
    .slide__content--subtitle {
        font-size: 18px;
        line-height: 1.5
    }
}

.clients-section {
    margin-left: auto;
    margin-right: auto;
    height: 136px;
    border-bottom: 1px solid #898a8c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.clients-section .container-logo-clients {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

@media (max-width: 55em) {
    .clients-section .container-logo-clients {
        flex-wrap: wrap;
        justify-content: center
    }
    .clients-section .container-logo-clients img {
        margin-right: 24px;
        margin-left: 24px;
        margin-bottom: 32px
    }
}

.clients-section .container-logo-clients img {
    transition: all 0.3s ease;
    display: block
}

.clients-section .c-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease
}

@media (max-width: 55em) {
    .clients-section .c-btn {
        position: relative;
        opacity: 1;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 32px
    }
}

.clients-section:hover .container-logo-clients img {
    filter: blur(2px);
    transition: all 0.3s ease
}

.clients-section:hover .c-btn {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    transition: all 0.3s ease
}

@media (max-width: 55em) {
    .clients-section {
        margin-top: 32px;
        height: 100%;
        flex-direction: column
    }
    .clients-section:hover .container-logo-clients img {
        filter: none
    }
    .clients-section:hover .c-btn {
        transform: none
    }
}

.engagements-section h1 {
    margin-top: 160px
}

.engagements-section .img-circle-title-txt-right:last-of-type:after {
    display: none
}

@media (max-width: 75em) {
    .engagements-section .img-circle-title-txt-right:after,
    .engagements-section .img-circle-title-txt-left:after {
        display: none
    }
}

@media (max-width: 65em) {
    .engagements-section .img-circle-title-txt-right,
    .engagements-section .img-circle-title-txt-left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px
    }
    .engagements-section .img-circle-title-txt-right .img-circle,
    .engagements-section .img-circle-title-txt-left .img-circle {
        margin-bottom: 40px
    }
    .engagements-section .img-circle-title-txt-right .img-circle-title-txt-content,
    .engagements-section .img-circle-title-txt-left .img-circle-title-txt-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px
    }
    .engagements-section .img-circle-title-txt-right .img-circle-title-txt-content .title-img-circle-title-txt-content,
    .engagements-section .img-circle-title-txt-left .img-circle-title-txt-content .title-img-circle-title-txt-content {
        text-align: center
    }
    .engagements-section .img-circle-title-txt-right .img-circle {
        order: 1
    }
    .engagements-section .img-circle-title-txt-right .img-circle-title-txt-content {
        order: 2
    }
}

@media (max-width: 25em) {
    .engagements-section .img-circle {
        width: 200px
    }
    .engagements-section .title-img-circle-title-txt-content {
        font-size: 24px
    }
}

@media (max-width: 360px) {
    .engagements-section .img-circle-title-txt-content {
        max-width: 250px
    }
    .engagements-section .img-circle-title-txt-content .title-img-circle-title-txt-content {
        letter-spacing: 2px
    }
}

.formations-section {
    height: 320px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../images/img/600x260.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.formations-section h2 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #fff
}

.formations-section:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #24407d;
    opacity: .7
}

.formations-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1
}

.txt-formations-home {
    width: 100%;
    font-family: 'Inconsolata', serif;
    font-size: 24px;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    line-height: 35px;
    /*padding-left: 10%;
    padding-right: 10%;*/
    margin-bottom: 32px
}

@media (max-width: 25em) {
    .txt-formations-home {
        font-size: 16px;
        line-height: 1.5
    }
}

.offers-items-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between
}

.offers-items-container .img-circle-btn {
    max-width: 200px
}

.offers-items-container .img-circle-btn .title-img-circle-btn {
    text-transform: uppercase;
    height: 60px
}

.offers-items-container .img-circle-btn .txt-img-circle-btn {
    height: 90px
}

@media (max-width: 55em) {
    .offers-items-container {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }
    .offers-items-container .img-circle-btn {
        max-width: 100%;
        margin-bottom: 48px
    }
    .offers-items-container .img-circle-btn .title-img-circle-btn {
        text-transform: uppercase;
        height: auto
    }
    .offers-items-container .img-circle-btn .txt-img-circle-btn {
        height: auto
    }
}

.testimonial-section .bx-wrapper {
    border: none
}

.testimonial-section .bx-wrapper .bx-viewport {
    height: 100%
}

.testimonial-section .bx-wrapper .bx-viewport .testimonial {
    height: 402px
}

@media (max-width: 35em) {
    .testimonial-section .bx-wrapper .bx-viewport .testimonial {
        height: 500px
    }
}

.contact-section h2,
.offres-section h2 {
    margin-top: 160px
}

@media (max-width: 55em) {
    .contact-section h2,
    .offres-section h2 {
        margin-top: 20%
    }
}

.contact-section .infos-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(116, 139, 190, 0.5);
    margin-bottom: 40px
}

.contact-form-maps {
    display: flex;
    flex-direction: row
}

.contact-form-maps .form-contact {
    width: 50%
}

.contact-form-maps .google-maps {
    width: 100%;
    padding-left: 32px
}

.contact-form-maps .google-maps .iframe-container {
    margin: auto;
    height: 671px;
    max-height: initial;
    min-height: initial
}

.contact-form-maps .google-maps .iframe-container iframe {
    max-height: initial
}

@media (max-width: 65em) {
    .contact-form-maps {
        flex-direction: column
    }
    .contact-form-maps .form-contact {
        width: 100%;
        margin-bottom: 32px
    }
    .contact-form-maps .google-maps {
        padding-left: 0
    }
    .contact-form-maps .google-maps .iframe-container {
        height: 500px
    }
}

#pagination{display:flex;justify-content: center;}

.container-client{
  margin-top:80px;
  display: flex;
  flex-direction: column;
}

.container-client .container-client-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-bottom: 1px solid #8080807a;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.container-client .container-client-row  > div {
  align-self: center;
  margin-left:50px;
}
.container-client .container-client-row  > div h2{
  color: gray;
  text-transform: uppercase;
}
