header {
    background-color: #f6f6f6;
    -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 1000 !important;
    width: 100%;
    height: 62px;
}

header .header-inner {
    width: 90%;
    max-width: 1280px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    margin: auto;
}

@media (max-width: 1260px) {
    header .header-inner {
        width: 100%;
    }
}

header div.logo {
    display: flex;
    align-items: center;
}

header div.logo a,
header div.logo a img {
    display: block;
}

header div.logo a.text_header {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    color: #0b1074;
    font-size: 22px;
    line-height: 33px;
    cursor: pointer;
    position: relative;
}

header .buttons_flags {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

header .buttons_flags li {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

header ul.flags {
    display: flex;
    grid-gap: 15px;
}

header ul.flags li a {
    cursor: pointer;
    font-family: "Open-sans", sans-serif;
    display: block;
}

header ul.buttons {
    display: flex;
    grid-gap: 5px;
    font-family: "Open-sans", sans-serif;
}

header ul.buttons li a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    text-align: center;
    text-decoration: none !important;
    color: #fff;
    background: #0ca2e0;
    position: relative;
    border-radius: 8px;
    -webkit-box-shadow: 0px 3px 8px 0px #00000000;
    box-shadow: 0px 3px 8px 0px #00000000;
}

header ul.buttons li a.button:hover {
    -webkit-box-shadow: 0px 3px 8px 0px #808080b7;
    box-shadow: 0px 3px 8px 0px #808080b7;
}

header ul.buttons li a.button.logged {
    padding: 0 8px;
}

i.fa.fa-user-circle.logged-icon {
    font-size: 30px !important;
    position: relative;
}


header ul.buttons li a.button.btn_help {
    color: #387db8;
    width: auto;
    position: relative;
    border: 1px solid #387db8;
    border-radius: 6px;
    font-size: 18px;
    background: #fff;
    padding: 0 8px;
}
header ul.buttons li a.btn_help .fa-question-circle {
    font-size: 25px;
    position: relative;
}


nav.buttons_flags ul li a.button:hover {
    -webkit-box-shadow: 0px 3px 8px 0px #808080b7;
    box-shadow: 0px 3px 8px 0px #808080b7;
}

nav.buttons_flags ul li a.btn_help:hover {
    color: #0a487e;
}

nav.buttons_flags ul li a img {
    -webkit-box-shadow: 0px 3px 8px 0px #00000000;
    box-shadow: 0px 3px 8px 0px #00000000;
}

nav.buttons_flags ul li a img.active-brazil {
    -webkit-box-shadow: 0px 3px 8px 0px #1fdb3ebe;
    box-shadow: 0px 3px 8px 0px #1fdb3ebe;
}

nav.buttons_flags ul li a img.active-france {
    -webkit-box-shadow: 0px 3px 8px 0px #155bf3be;
    box-shadow: 0px 3px 8px 0px #155bf3be;
}

nav.buttons_flags ul li a img.active-uk {
    -webkit-box-shadow: 0px 3px 8px 0px #155bf3be;
    box-shadow: 0px 3px 8px 0px #155bf3be;
}

@media only screen and (min-width: 50px) and (max-width: 653px) {
    header {
        height: 110px;
    }

    .no_mobile {
        display: none;
    }

    .btn_help {
        display: none !important;
    }

    header {
        height: 110px;
    }

    header div.logo {
        position:absolute;
    }

    header .header-inner {
        align-items: flex-start;
        padding: 15px;
    }

    header .buttons_flags {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }

    ul.box-settings li.name {
        position: fixed;
        right: 5px;
        top: 45px;
    }

    .banner {
        margin-top: 50px;
    }
    .all_content section.banner div.inputs {
        margin-top: 20px;
    }

    .all_content section.banner span.banner_slogan p {
        margin-top: -20px;
    }
}

@media only screen and (min-width: 654px) and (max-width: 900px) {
    .no_mobile {
        display: none;
    }

    .btn_help {
        display: none;
    }


    ul.box-settings li.name {
        top: -25px;
    }
}

@media only screen and (min-width: 1099px) and (max-width: 1300px) {
    header nav {
        right: 20px;
    }
}

@media only screen and (min-width: 901px) and (max-width: 1100px) {
    .no_mobile {
        display: none;
    }

}

/*scroll top*/

html {
    scroll-behavior: smooth;
}

.hidden,
.hidden2 {
    display: none;
}

/* Scroll top */
a.scroll-top {
    position: fixed;
    right: 10px;
    bottom: 8px;
    padding: 10px 12px;
    background-color: #000;
    opacity: 0.6;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 100;
}

.active {
    animation-name: scrollTop;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

@keyframes scrollTop {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.6;
    }
}

/* end scroll */


.page-content {
    max-width: 1280px;
    padding: 15px;
    margin: 0 auto;
    width: 100%;

    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-content h1 {
    font-size: 24px;
}
.page-content h2 {
    font-size: 20px;
}

.page-content p,
.page-content ul {
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}
