/* -- Reset -- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* -- End Reset -- */
a{
    transition: opacity 0.3s ease;
}
.flexRow{
    display: flex;
}
.topBar{
    background-color: transparent;
    background-image: linear-gradient(90deg, rgb(18, 32, 83) 50%, rgb(0, 167, 227) 100%);

    padding: 15px;
}
.topBar a{
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    margin-left: 15px;
}
.topBar a:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}
.topBar svg{
    fill: #fff;
    height: 18px;
    vertical-align: -2px;
}
.topBar .middleTopBar{
    display: flex;
    color: #fff;
    justify-content: flex-end;
}
.mainNavBar{
    height: 100%;
}
.navBar{
    position: relative;
    top: 0;
    z-index: 999;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 17px -7px;
    background: #fff; /* important pour ne pas voir le contenu derrière */
    transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.navBar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff; /* important pour ne pas voir le contenu derrière */
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 17px -7px;
}

.navBar ul{
    margin-bottom: 0;
    display: flex;
    height: 100%;
    justify-content: flex-end;
}
.navBar ul li{
    margin-left: 20px;
    display: flex;
    align-items: center;
}
.navBar ul a{
    color:rgb(1, 1, 4);
    text-decoration: none;
    font-family:"Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.navBar ul a:hover{
    opacity: 0.7;
}

.responsive-nav-service-client {
    display: none !important;
}

.main-section__advantages{
    display: none !important;
}

.main-container {
    padding-top: 0px !important;
}

footer {
    margin-top: 2em;
    background-color: #0c1e5d;
}
.footer .footerLogo {
    background-image: url(/assets/img/logo-footer.svg);
}
.footer .footerLogo {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 48px;
    left: auto;
    position: static;
    translate: none;
    width: 132px;
}
footer > div {
    padding: 20px;
}

footer a,
footer a:hover {
    color: #fff !important;
}

.footer .ui-h4+ul li a {
    color: #babfd6 !important;
}
.flexFooter{
    display: flex;
    justify-content: space-between;
}