html {
    /*background: var(--color-gradient);*/
    background-color: #f5f5f5;
}

body {
    margin: 0;
}

#page-wrapper {
    overflow: hidden;
}

.fade-section {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.8s ease, filter 0.8s ease;
}
.fade-section:not(#page-header) {
    padding-top: 45px;
    padding-bottom: 30px;
}
.fade-section.show {
    opacity: 1;
    filter: blur(0);
}
.fade-section .title {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}
h2.title {
    color: #6bd2e3;
    padding-bottom: 25px;
}

#page-header {
    position: relative;
    background-color: #023B5E;
    background-image: url(../img/bluenet-trading-bg.png);
    justify-content: space-around;
}

.tri-clips {
    z-index: 0;
    position: absolute;
}
.tri-clip {
    position: absolute;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: .5;
    animation: float 5s ease-in-out infinite;
}
/* Animation flottante */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(180deg);
    }
    50% {
        transform: translateY(-50px) rotate(10deg);
    }
}
.tri-clip.tri-1 {
    width: 60px;
    height: 60px;
    background: #072842;
    top: 150px;
    left: 50px;
    transform: rotate(60deg);
    animation-duration: 6s;
}
.tri-clip.tri-2 {
    width: 20px;
    height: 20px;
    background: #08739F;
    top: 50px;
    left: 160px;
    transform: rotate(120deg);
    animation-duration: 6.5s;
    animation-delay: 1.5s;
}
.tri-clip.tri-3 {
    width: 80px;
    height: 80px;
    background: #04436E;
    bottom: 10px;
    left: 300px;
    transform: rotate(167deg);
    animation-duration: 8s;
    animation-delay: 0.5s;
}
.tri-clip.tri-4 {
    width: 30px;
    height: 30px;
    background: #697a87;
    bottom: 0px;
    left: 380px;
    transform: rotate(0deg);
    animation-duration: 5s;
    animation-delay: 2s;
}
.tri-clip.tri-5 {
    width: 40px;
    height: 40px;
    background: #08739F;
    top: 120px;
    right: 70px;
    transform: rotate(45deg);
    animation-duration: 7s;
    animation-delay: 1s;
}
.tri-clip.tri-6 {
    width: 10px;
    height: 10px;
    background: #db9090;
    top: 60px;
    right: 20px;
    transform: rotate(0deg);
    animation-duration: 9s;
    animation-delay: 3s;
}

/* Visual Identity */
#page-header .v-identity {
    z-index: 1;
    position: relative;
    text-align: center;
}
#page-header .v-identity a.logo img {
    width: 300px;
}
#page-header .v-identity .baseline {
    display: block;
    margin-top: 25px;
}
#page-header .v-identity .baseline .cie-name {
    display: none;
    color: #0c4a7e;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}
#page-header .v-identity .baseline .cie-slogan {
    color: #08739f;
    display: block;
    margin-top: 5px;
    font-weight: bold;
    font-style: italic
}
#page-header .v-identity .baseline .cie-slogan::after {
    content: "";
    display: block;
    display: none;
    width: 60px;
    margin: 15px auto 0;
    border: 1px solid #a6d7f7;
}

/* Nav */
nav.menu {
    text-align: center;
}
nav.menu ul li {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}
nav.menu ul li.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
nav.menu ul li:not(:last-child)::after {
    content: "•";
    color: #0a5f93;
    margin: 0 1px;
}
nav.menu ul li a {
    color: #a3c5d9;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: capitalize;
}
nav.menu ul li a:hover {
    color: #0FACE1;
}
nav.menu ul li a.active {
    cursor: default;
}
nav.menu ul li a i {
    display: none;
}

/* par défaut, le sticky-menu est vide donc invisible */
#sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: #0F4566;
    display: none; /* caché au départ */
}
#sticky-bar.sticky {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    animation: slideDown 0.4s ease forwards;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 6px 9px 0px;
}
#sticky-bar .logo {
    width: 120px;
    display: inline-block;
}
#sticky-bar .logo img {
    width: 100%;
    height: auto;
    animation-delay: .5s;
    animation-duration: .5s
}
#sticky-bar .menu ul li a:hover {
    cursor: pointer;
}
#sticky-bar .menu ul li a.active {
    color: #fff;
    font-weight: bold;
}
@keyframes slideDown {
from { transform: translateY(-100%); }
to { transform: translateY(0); }
}

#page-header nav.main-menu {
    z-index: 1;
    position: relative;
    -webkit-animation: pulse .5s linear 2;
    animation: pulse .5s linear 2;
}
#page-header nav.main-menu .bg {
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
    position: absolute;
    background: transparent;
    /*box-shadow: inset 0px 0px 5px 4px rgb(34 24 24 / 9%);*/
}
#page-header nav.main-menu ul {
    z-index: 1;
    position: relative;
}

/* About Us */
#about-us {
    background-color: #eaf5f3;
}
#about-us .content {
    width: 40%;
}
#about-us .content p {
    line-height: 1.6;
    font-weight: bold;
    text-align: justify;
    color: #0f4566;
}
#about-us .illustration {
    width: 40%;
}
#about-us .illustration img {
    width: 100%;
}

/* Products */
#product-ranges {
    background-color: #fff;
}

#product-ranges .range {
    padding: 15px;
}

#product-ranges .range>.title {
    display: block;
    text-align: center;
    font-size: 1.7rem;
    text-transform: uppercase;
}

#product-ranges .range.barres-tendres>.title {
    color: #6ba549;
}
#product-ranges .range.barres-tendres>.title.ulined::after {
    border-color: #6ba549;
}

#product-ranges .range.chocolats>.title {
    color: #623e05;
}
#product-ranges .range.chocolats>.title.ulined::after {
    border-color: #623e05;
}

#product-ranges .range.confitures>.title {
    color: #e9d432;
}
#product-ranges .range.confitures>.title.ulined::after {
    border-color: #e9d432;
}

#product-ranges {
    justify-content: space-around;
}

#product-ranges a,
#product-ranges a * {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
#product-ranges a {
    padding: 0;
    width: 350px;
    overflow: hidden;
    text-align: center;
    position: relative;
    text-decoration: none;
    background-color: transparent;
}
#product-ranges a img {
    left: 0;
    position: relative;
    border: 1px solid #aacbdf;
}
#product-ranges a:hover img {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}
#product-ranges a h3 {
    text-align: center;
    color: #0a7fca;
    font-weight: bold;
    text-transform: uppercase;
}
#product-ranges a:hover h3 {
    font-size: 115%;
}
#product-ranges a h4 {
    color: #888;
    font-weight: normal;
    font-style: italic
}

#product-ranges .offer-download {
    margin: 30px 0;
    padding-top: 53px;
    text-align: center;
    font-size: 25px;
    border-top: 1px solid #e9eef1;
}
#product-ranges .offer-download a {
    color: #0f4566
}
#product-ranges .offer-download a i {
    color: #0a7fca
}


/* Partners */
#partners a {
    width: 200px;
    text-align: center;
    vertical-align: top;
    text-decoration: none
}


/* Contacts */
#contacts {
    line-height: 1.2;
    font-weight: bold;
    background-color: #fff;
}
#contacts .contact-us .row {
    display: block;
    padding: 3px 0;
    color: #0f4566;
}
#contacts .contact-us .row i {
    font-size: 20px;
    color: #0b96ed
}
#contacts .contact-us .row a {
    color: #0f4566;
    text-decoration: none;
}

#contacts .newsletter form input {
    width: 350px;
    height: 35px;
    display: block;
    margin-top: 5px;
    border: 1px solid #cdc7c7;
}
#contacts .newsletter form input.error {
    border-color: #cd0d0d;
}
#contacts .newsletter form input[type="text"] {
    padding: 0 5px;
}
#contacts .newsletter form input[type="submit"] {
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    font-weight: bold;
    font-style: italic;
    background-color: #41ab13;
}
#contacts .newsletter form input[type="submit"]:disabled {
    cursor: wait; /*not-allowed*/
}
#contacts .newsletter form .form-notifs {
    width: 100%;
    padding: 10px;
    font-size: .9em;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: center;
    display: none;
}
#contacts .newsletter form .form-notifs.is-notified {
    display: block;
 }
#contacts .newsletter form .form-notifs.success {
    color: #0fbd4e;
    background-color: #EBFBD8;
    animation: fadeIn .3s;
}
#contacts .newsletter form .form-notifs.error{
    color: #cd0d0d;
    background-color: #fff4f4;
    animation: fadeIn .3s;
 }

/* Copyright */
#copyright {
    color: #999;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    font-weight: normal;
    background-color: #2d3d46;
}