/***** animation *****/
.animate.fade_in					{ opacity:0; transition:opacity 800ms ease-out; transition-delay:0ms;}
.animate.fade_in.play				{ opacity:1;}
.animate.fade_up					{ opacity:0; transition:opacity 800ms ease-out, transform 800ms ease-out; transition-delay:0ms;}
.animate.fade_up.play				{ opacity:1; transform:translateY(0);}

@media (min-width:1201px) {
.animate.fade_up					{ transform:translateY(40px);}

.animate.clip_ttb					{ clip-path:inset(0 0 100% 0); transition:clip-path 800ms ease-out;}
.animate.clip_ttb.play				{ clip-path:inset(-1px -1px -1px -1px);}
.animate.clip_btt					{ clip-path:inset(100% 0 0 0); transition:clip-path 800ms ease-out;}
.animate.clip_btt.play				{ clip-path:inset(-1px -1px -1px -1px);}
.animate.clip_ltr					{ clip-path:inset(0 100% 0 0); transition:clip-path 800ms ease-out;}
.animate.clip_ltr.play				{ clip-path:inset(-1px -1px -1px -1px);}
.animate.clip_rtl					{ clip-path:inset(0 0 0 100%); transition:clip-path 800ms ease-out;}
.animate.clip_rtl.play				{ clip-path:inset(-1px -1px -1px -1px);}

.animate.delay-200 					{ transition-delay: 200ms;}
.animate.delay-300 					{ transition-delay: 300ms;}
.animate.delay-400 					{ transition-delay: 400ms;}
.animate.delay-600					{ transition-delay: 600ms;}
.animate.delay-800					{ transition-delay: 800ms;}
.animate.delay-1000					{ transition-delay: 1000ms;}
.animate.delay-1200					{ transition-delay: 1200ms;}
}
@media (max-width:1200px) {
.animate.fade_in.play,			 
.animate.fade_up.play				{ transition-delay:300ms;}

.animate.clip_ttb,					
.animate.clip_ltr,					
.animate.clip_rtl					{ opacity:0; transition:opacity 800ms ease-out; transition-delay:0ms;}
.animate.clip_ttb.play,	 
.animate.clip_ltr.play, 
.animate.clip_rtl.play				{ opacity:1; transition-delay:300ms;}
}

/***** animation *****/
.service_propose {
    opacity: 0;
    transform: translateY(30px); /* Départ de l'élément décalé vers le bas */
    transition: opacity 3s ease-out, transform 1s ease-out;
}

/* Ajouter la classe 'play' pour animer */
.service_propose.play {
    opacity: 1;
    transform: translateY(0); /* L'élément remontera */
}

@media (min-width:1201px) {
    .service_propose {
        transform: translateY(40px);
    }
}

/* Ajouter des délais pour chaque élément dans la file */
.service_propose:nth-child(1) {
    transition-delay: 400ms;
}
.service_propose:nth-child(2) {
    transition-delay: 1000ms;
}
.service_propose:nth-child(3) {
    transition-delay: 1400ms;
}
.service_propose:nth-child(4) {
    transition-delay: 1800ms;
}
.service_propose:nth-child(5) {
    transition-delay: 2000ms;
}
@import url("https://fonts.googleapis.com/css?family=Barlow:400,500,600,700&display=swap");

body, ul, li, ol, form, h1, h2, h3, h4, h5, h6, div, span, p { 
    padding: 0; 
    margin: 0; 
    border: 0; 
    -webkit-text-size-adjust: none; 
    -moz-text-size-adjust: none; 
    text-size-adjust: none; 
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { 
    display: block; 
}

input, textarea { 
    -webkit-appearance: none; 
    -ms-appearance: none; 
    appearance: none; 
    -moz-appearance: none; 
    -o-appearance: none; 
    border-radius: 0; 
}

* { 
    outline: none; 
}

strong, b { 
    font-weight: 500; 
}

ul { 
    list-style-type: none; 
}

body { 
    font: 400 15px/30px "Barlow"; 
    letter-spacing: 0.4px; 
    color: #1e2a35; 
    background: #00467f; 
    position: relative; 
}

body.active_overflow { 
    height: 100vh; 
    overflow: hidden; 
}

a { 
    text-decoration: none; 
    color: #222; 
    position: relative; 
}

img { 
    border: none; 
}

main { 
    position: relative; 
    z-index: 10; 
    background: #fff; 
}

#wrapper { 
    min-width: 320px; 
    max-width: 2600px; 
    margin: 0 auto; 
    overflow: hidden; 
    position: relative; 
}

#wrapper * { 
    box-sizing: border-box; 
}

.flex_header_sticky{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/***** scrollbar *****/
::-webkit-scrollbar { 
    width: 10px; 
    background-color: grey; 
}

::-webkit-scrollbar-thumb { 
    background-color: #8bb33de5; 
}

/***** transition *****/
@media (min-width: 1201px) {
    .link, .slick-arrow, :before, :after, a, a span, .sub { 
        transition: all 400ms ease-in-out; 
    }
}

/***** class *****/
.wrapper { 
    width: 1200px; 
    margin: 0 auto; 
    position: relative; 
}

.clear { 
    clear: both; 
    display: block; 
}

.titre_sup { 
    font: italic 700 20px/26px "Barlow"; 
    letter-spacing: 0.6px; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    display: block; 
}

.titre_main { 
    font: italic 700 40px/50px "Barlow"; 
    text-transform: uppercase; 
    margin-bottom: 20px;  
    position: relative;
    color: grey;
}

.titre_main.line:after { 
    content: ""; 
    display: block; 
    width: 150px; 
    height: 4px; 
    background: linear-gradient(to right, #00467f, #87CEFA); /* Dégradé de bleu foncé à bleu clair */
    margin: 30px 0; 
}


.sous_titre { 
    font: italic 600 25px/35px "Barlow"; 
    color: #8bb33de5; 
    position: relative; 
    margin-bottom: 20px; 
}

.intro_header { 
    font: 400 18px/32px "Barlow"; 
}

.link { 
    font: italic 700 16px/48px "Barlow"; 
    letter-spacing: 0.6px; 
    height: 50px; 
    border: none; 
    display: inline-block; 
    vertical-align: middle; 
    color: #1e2a35; 
    text-transform: uppercase; 
    padding-left: 50px; 
    padding-right: 35px; 
}

.link:before { 
    content: ""; 
    position: absolute; 
    width: 50px; 
    height: 50px; 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/arrow_right.svg) no-repeat left 25px center ; 
    left: 0; 
}

.link span { 
    display: inline-block; 
    color: grey; 
    position: relative; 
    z-index: 5; 
}

.link i { 
    color: #8bb33de5; 
}

.icone { 
    width: 160px;
    margin-bottom: 30px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.icone svg{
    color: #8bb33de5;
}
.icone img {
width: 100%;
padding-left: 50px;
}

.icone img.svg { 
    width: 100%; 
    display: block; 
}

@media (min-width: 1201px) {
    .link:hover:before { 
        width: 100%; 
        color: #00467f;
    }

    .link:hover span { 
        color: #00467f; 
    }

}

@media (max-width: 1400px) {
    /* .wrapper { 
        width: 1080px; 
    } */
}

@media (max-width: 1200px) {
    
    
    .chapo { 
        font-size: 15px; 
        line-height: 30px; 
    }

    .icone img.svg { 
        width: 150px; 
    }
}

@media (max-width: 1000px) {
    

    .titre_sup { 
        font-size: 18px; 
        line-height: 28px; 
        margin-bottom: 5px; 
    }

    .titre_main { 
        font-size: 30px; 
        line-height: 40px; 
    }
}

@media (min-width: 300px) and (max-width: 999px) {
    .wrapper { 
        width: 85vw; 
        display: none;
    }

    .titre_sup { 
        font-size: 16px; 
        line-height: 26px; 
    }

    .titre_main { 
        font-size: 25px; 
        line-height: 35px; 
    }

    .titre_main.line:after { 
        margin: 20px 0; 
    }

    .sous_titre { 
        font-size: 20px; 
        line-height: 30px; 
    }

    .icone { 
        margin-bottom: 25px; 
    }

    .icone img.svg { 
        width: 130px; 
    }
}

/***** header et menu *****/
.header { 
    width: 100%; 
    font-size: 0; 
    line-height: 0; 
    text-align: right; 
    position: fixed; 
    left: 0; 
    top: 0; 
    z-index: 100; 
    transition: all 400ms ease-in-out; 
}

.header .wrapper { 
    padding-bottom: 30px; 
    transition: padding 400ms ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header .logo { 
    width: 10%; 
    position: absolute;  
    left: 43%;
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 90; 
}

.header .logo img { 
    width: 100%; 
    height: auto; 
    transition: opacity 400ms ease-in-out; 
}

.header .logo .sticky_logo { 
    position: absolute; 
    top: 0; 
    left: 0; 
    opacity: 0; 
    transition: opacity 400ms ease-in-out; 
}

.header_top { 
    display: inline-block; 
    vertical-align: middle; 
    position: relative; 
    margin-left: 10px; 
    margin-right: 10px;
    padding-top: 40px;
    z-index: 120; 
}

.header_top .tel { 
    display: block; 
    padding: 0 5px; 
    font: italic 700 13px/58px "Barlow"; 
    height: 60px; 
    color: #1e2a35; 
    background: #8bb33de5; 
    max-width: 190px; 
    margin-left: auto; 
}

.header_top .espace_client { 
    display: inline-block; 
    vertical-align: middle; 
    font: 400 16px/58px "Barlow"; 
    height: 60px; 
    padding-left: 30px; 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/espace_client.svg) no-repeat left center; 
    color: black; 
    margin-left: 30px; 
    z-index: 150; 
    position: relative; 
}

.header_top .espace_client.suivi { 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/suivi_colis.svg) no-repeat left center; 
}

.header_nav { 
    /* display: inline-block; 
    vertical-align: middle; 
    z-index: 135;  */
    margin-top: 40px; 
    /* position: absolute; 
    right: 220px;  */
}

.header_nav .menu { 
    position: relative; 
}

.header_nav .menu li { 
    display: inline-block; 
    vertical-align: middle; 
    position: relative; 
    margin-left: 10px; 
    border-radius: 10px;
}

.header_nav .menu li a { 
    font: italic 700 14px/60px "Barlow"; 
    color: #8cb33d; 
    text-transform: uppercase; 
    height: 60px; 
    display: block; 
    transition-property: color, background, height, line-height; 
    letter-spacing: 1px; 
}

.header_nav .menu>li.active>a { 
    color: #00467f; 
    background-color: rgba(128, 128, 128, 0.428);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.header_nav .sub { 
    width: 210px; 
    text-align: center; 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    margin-left: -105px; 
    display: block; 
    visibility: hidden; 
    opacity: 0; 
    background: #8bb33de5; 
    padding: 10px 0; 
}

.header_nav .sub li { 
    width: 100%; 
    margin: 0; 
}

.header_nav .sub li a { 
    width: 100%; 
    font: italic 700 14px/38px "Barlow"; 
    height: 40px; 
    letter-spacing: 1px; 
    color: #fff; 
    padding: 0 30px; 
}

.header_nav .menu li:hover .sub { 
    opacity: 1; 
    visibility: visible; 
    z-index: 999; 
}

.header_nav .menu .sub li.active a { 
    color: #1e2a35; 
}

.langues {
    font-size: 0;  
    width: 30px; 
    height: 60px; 
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Style de base pour le lien "Langues" */
.langues {
    cursor: pointer;
}

/* Style du sous-menu */
.langue-submenu {
    display: none; /* Masqué par défaut */
    position: absolute;
    top: 80%;
    right: 0;
    background-color: #8cb33d;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100px;
    padding: 10px 0;
    list-style-type: none;
    margin: 0;
    z-index: 9999;
}

.langue-submenu li a {
    padding: 8px 15px;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    text-align: left;
}

/* Change couleur au survol */
.langue-submenu li a:hover {
    color: #00467f;
}


@media (min-width: 1201px) {
    .header_nav .menu .vue_mobile,
    .menu_mobile { 
        display: none; 
    }

    .sticky .header { 
        background: whitesmoke; 
        transform: translateY(-60px); 
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .sticky .header .wrapper { 
        padding-bottom: 0; 
    }

    .sticky .header .logo img { 
        opacity: 0; 
    }

    .sticky .header .logo { 
        width: 130px; 
        margin-top: 50px; 
        left: 1%;
        top: 30%;
    }

    .sticky .header .logo .sticky_logo { 
        opacity: 1; 
    }

    .sticky .header_top .tel { 
        margin: 15px 0 15px auto; 
    }

    .sticky .header_nav > .menu > li > a { 
        height: 60px;
        border-radius: 10px;
    }

    .header_top .tel:hover { 
        background: #fff; 
    }

    .header_top .espace_client:hover { 
        color: #8bb33de5; 
    }

    .header_nav .menu > li:hover > a { 
        color: #8bb33de5; 
    }

    .header_nav .sub li a:hover { 
        color: #1e2a35; 
    }

    .sub li:nth-child(2):after { 
        width: 10px; 
        height: 10px; 
        position: absolute; 
        left: 50%; 
        top: -15px; 
        margin: 0 0 0 -5px; 
        transform: rotate(45deg); 
        z-index: -1; 
        background: #8bb33de5; 
        content: ""; 
    }
    .langues {
        justify-content: flex-end;
    }
}

@media (max-width: 1200px) {
    .header { 
        background: #fff; 
    }

    .sticky .header { 
        box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%); 
    }

    .header .wrapper { 
        padding: 0; 
        width: 100%; 
        max-width: 100%; 
    }

    .header .logo { 
        width: 120px; 
        left: 5vw; 
    }

    .header_top { 
        padding: 0 5vw; 
    }

    .header_top .espace_client { 
        color: #1e2a35; 
    }

    .header_top .tel { 
        display: inline-block; 
        vertical-align: middle; 
        margin: 0 5vw 0 30px; 
    }

    .menu_mobile { 
        width: 60px; 
        height: 100px; 
        display: inline-block; 
        vertical-align: middle; 
        cursor: pointer; 
        position: relative; 
        margin: 0 -15px; 
    }

    .menu_mobile div { 
        width: 30px; 
        height: 2px; 
        background: grey; 
        position: absolute; 
        right: 50%; 
        top: 50%; 
        margin: -1px -15px 0 0; 
    }

    .menu_mobile div:before { 
        width: 100%; 
        height: 2px; 
        background: grey; 
        position: absolute; 
        right: 0; 
        top: 8px; 
        content: ""; 
    }

    .menu_mobile div:after { 
        width: 100%; 
        height: 2px; 
        background: grey; 
        position: absolute; 
        right: 0; 
        top: -8px; 
        content: ""; 
    }

    .menu_mobile.active div { 
        height: 0; 
    }

    .menu_mobile.active div:before { 
        top: 0; 
        transform: rotate(45deg); 
    }

    .menu_mobile.active div:after { 
        top: 0; 
        transform: rotate(-45deg); 
    }

    .header_nav { 
        width: 100%; 
        height: 100vh; 
        border-top: 100px solid rgba(128, 128, 128, 0.414); 
        background: #fff; 
        position: fixed; 
        right: -100%; 
        top: 0; 
        overflow-y: scroll; 
        display: grid; 
        z-index: 50; 
        margin: 0; 
        transition: right 400ms ease-in-out 400ms; 
    }

    .header_nav::-webkit-scrollbar { 
        display: none; 
    }

    .header_nav.active { 
        right: 0; 
        transition-delay: 200ms; 
    }

    .header_nav.active .menu { 
        opacity: 1; 
        margin-top: 0; 
        transition-delay: 600ms; 
    }

    .header_nav .menu { 
        width: 100%; 
        text-align: center; 
        padding: 5vw; 
        align-self: center; 
        opacity: 0; 
        margin-top: 40px; 
        transition: all 400ms ease-in-out 0ms; 
    }

    .header_nav .menu li { 
        width: 100%; 
        display: block; 
        margin: 0; 
    }

    .header_nav .menu li a { 
        font-size: 20px; 
        line-height: 58px; 
        height: 60px; 
    }

    .header_nav .menu li i { 
        width: 100%; 
        height: 60px; 
        position: absolute; 
        left: 0; 
        top: 0; 
    }

    .header_nav .menu li i:after { 
        width: 10px; 
        height: 10px; 
        transform: rotate(45deg); 
        position: absolute; 
        left: 50%; 
        bottom: -21px; 
        margin-left: -5px; 
        opacity: 0; 
        transition: all 300ms ease-in-out; 
        background: #8bb33de5; 
        content: ""; 
    }

    .header_nav .menu li i.active:after { 
        opacity: 1; 
    }

    .header_nav .menu .sub { 
        width: auto; 
        visibility: visible; 
        position: relative; 
        left: auto; 
        top: auto; 
        padding: 25px 0; 
        margin: 15px 0; 
        opacity: 1; 
        display: none; 
    }

    .header_nav .menu .sub li a { 
        font-size: 16px; 
        line-height: 48px; 
        height: 50px; 
    }

    .header_nav .menu .sub li.active a { 
        background: none; 
        color: #8bb33de5; 
    }
}

@media (max-width: 1000px) {
    .header_top .espace_client { 
        font-size: 0; 
        padding: 0; 
        width: 30px; 
        height: 40px; 
        background-size: 30px 30px; 
    }
}

@media (max-width: 600px) {
    .header .logo { 
        width: 100px; 
        left: 7.5vw; 
    }

    .header_top { 
        padding: 0 7.5vw; 
    }

    .header_top .tel { 
        font-size: 0;  
        width: 20px; 
        height: 20px; 
        background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/phone_icone.svg) no-repeat center; 
        padding: 0; 
        margin: 0 7.5vw 0 12px; 
    }

    .header_top .langues {
        font-size: 0;  
        width: 20px; 
        height: 20px; 
        background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/langues.svg) no-repeat center; 
        padding: 0;  
    }

    .header_top .espace_client { 
        margin-left: 15px; 
    }

    .header_top .suivi { 
        display: none; 
    }

    .menu_mobile { 
        height: 80px; 
    }

    .header_nav { 
        border-width: 80px; 
    }

    .header_nav .menu { 
        padding: 7.5vw; 
    }

    .header_nav .menu .sub { 
        margin: 15px -7.5vw; 
    }
}




/***** footer*****/
.footer { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    position: relative; 
    z-index: 30; 
    color: #fff; 
    font-size: 0; 
}

.footer .wrapper{
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #00467f;
    margin: 0;
    padding: 50px;
}

.footer .logo { 
    width: 180px; 
    height: auto; 
    display: block;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.footer .logo img{
    width: 100%;
    height: 100%;
}

.footer .bloc_footer { 
    display: inline-block; 
    vertical-align: top; 
}

.footer .bloc_footer p { 
    font-size: 15px; 
}

.footer .bloc_footer li a { 
    color: #fff; 
    font-size: 15px; 
    line-height: 25px; 
    padding-left: 20px; 
    display: inline-block; 
}

.footer ul.bloc_footer { 
    margin: 0 0 0 100px; 
}

.footer .footer_contact svg{
    width: 30px;
}
.footer .footer_contact li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer.rs { 
    position: absolute; 
    right: 0; 
    top: 0; 
}

.footer.rs a { 
    width: 50px; 
    height: 50px; 
    display: inline-block; 
    vertical-align: middle; 
    margin-left: 10px; 
}

.footer.rs .linkedin { 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/linkedin.svg) 50% no-repeat #fbbb18; 
}

.footer.rs .facebook { 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/facebook.svg) 50% no-repeat #fbbb18; 
}

.footer.rs .scroll { 
    background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/scrolltop.svg) 50% no-repeat #fff; 
}
 .mentions_legales{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 0 auto;
 }

.footer_bottom { 
    padding: 10px 0; 
    line-height: 0; 
}

.footer_bottom li { 
    color: #00467f;
    font-weight: bold;
    display: inline-block; 
    font-size: 14px; 
    line-height: 20px; 
    letter-spacing: 0.6px; 
    margin-right: 25px; 
    position: relative; 
}

.footer_bottom li:after { 
    width: 2px; 
    height: 13px; 
    content: ""; 
    position: absolute; 
    right: -13px; 
    top: 5px; 
    background: #8bb33de5; 
}

.footer_bottom li:last-child:after { 
    display: none; 
}

.footer_bottom li a { 
    color: #00467f; 
}

.footer .bloc_adresse{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 300px;
}

.footer .bloc_adresse svg{
    width: 80px;
    color: #8bb33de5;
}

.footer .footer_contact .adresse_sagitta_mobile{
    display: none;
}

.toponweb { 
    display: block; 
    z-index: 85; 
    position: absolute; 
    right: 0; 
    bottom: -65px; 
    transition: bottom 400ms ease-in-out; 
}

.toponweb span { 
    width: auto; 
    height: 60px; 
    display: block; 
    padding: 20px; 
    background: linear-gradient(to left, #8bb33de5 0%, #8bb33de5 50%, #ffffff 50%, #ffffff 100%); 
    background-size: 200% 100%; 
    background-position: 100% 0; 
}

.toponweb img { 
    width: 74px; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}

.toponweb.show { 
    bottom: 0; 
}

@media (min-width: 1201px) {
    .footer .bloc_footer p a:hover,
    .footer .bloc_footer li a:hover,
    .footer_bottom li a:hover { 
        color: #8bb33de5; 
    }

    .footer.rs .facebook:hover,
    .footer.rs .linkedin:hover { 
        background-color: #fff; 
    }

    .footer.rs .scroll:hover { 
        background-color: #8bb33de5; 
    }

    .toponweb:hover span { 
        background-position: 0 0; 
    }
}

@media (max-width: 1200px) {
    .footer ul.bloc_footer { 
        margin: 0 0 0 80px; 
    }
}

@media (max-width: 1000px) {
    .footer ul.bloc_footer:not(.footer_contact) { 
        display: none; 
    }

    .footer_bottom { 
        margin-top: 60px; 
    }
}

@media (max-width: 600px) {

    .footer .wrapper {
        flex-direction: column;
    }

    .footer .logo { 
        width: 100px; 
    }

    .footer ul.footer_contact { 
        margin: 25px 0 20px; 
        display: block; 
    }

    .footer ul.footer_contact li{
        display: flex;
       align-items: center;
       margin-bottom: 15px;
    }

    .footer ul.footer_contact svg{
        width: 20px;
    }

    .footer.rs { 
        position: relative; 
        right: auto; 
        top: auto; 
    }

    .footer .bloc_footer li a{
        background: none;
        font-size: 12px;
        margin-bottom: 0;
    }

    .footer .bloc_adresse svg{
        width: 30px;
    }

    .footer .bloc_adresse{
        display: none;
    }
    .footer .footer_contact .adresse_sagitta_mobile{
        display: flex;
    }
    .footer ul.footer_contact .adresse_sagitta_mobile svg{
        width: 30px;
    }

    .footer .bloc_footer p{
        font-size: 12px;
        padding-left: 20px;
    }

    .footer.rs a { 
        margin: 0 10px 0 0; 
    }

    .footer_bottom { 
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: left; 
        margin-top: 20px; 
        padding-bottom: 40px; 
        width: 100%;
    }

    .footer_bottom li { 
        display: block; 
        margin-right: 0; 
        line-height: 30px; 
        font-size: 10px;
    }

    .footer_bottom li:after { 
        display: none; 
    }

    
}

/* Styles pour le bouton Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: grey;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
    display: none; /* Caché par défaut */
    z-index: 1000; /* Pour qu'il reste au-dessus des autres éléments */
    transition: opacity 0.3s ease;
}

.back-to-top:hover {
    background-color: #8cb33d;
}

@media (max-width:600px) {
   .back-to-top{
    width: 40px;
    height: 40px;
    line-height: 40px;
   }
}
/***** Bloc Grid *****/
.bloc_grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
    position: relative;
    margin: 100px 0;
}

.bloc_grid.align_top {
    align-items: start;
}

.bloc_grid :last-child {
    margin-bottom: 0;
}

.bloc_grid .photo {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.bloc_grid .photo img {
    width: 100%;
    min-height: 100%;
 
    object-fit: cover;
}

.bloc_grid .texte {
    position: relative;
}

.bloc_grid img {
    height: auto;
    object-fit: cover;
    line-height: 0;
    font-size: 0;
    position: relative;
    z-index: 10;
}

.bloc_grid p {
    margin-bottom: 20px;
}

.bloc_grid .link, .banner .link {
    margin-top: 30px;
    margin-bottom: 20px;
    border: 3px solid #8bb33de5;
    border-radius: 10px;
    transition: all 0.3s ease; /* Transitions douces pour d'autres effets */
    animation: pulse 1s ease-in-out infinite; /* Animation de pulsation */
}
@keyframes pulse {
    0% {
        transform: scale(1); /* Taille originale */
    }
    50% {
        transform: scale(1.2); /* Augmenter la taille */
    }
    100% {
        transform: scale(1); /* Retour à la taille originale */
    }
}

@media (max-width: 1600px){
    .bloc_grid .link {
        margin-top: 30px;
        margin-bottom: 20px;
        border: 3px solid #8bb33de5;
        border-radius: 10px;
        transition: all 0.3s ease; /* Transitions douces pour d'autres effets */
        animation: pulse 1s ease-in-out infinite; /* Animation de pulsation */
    }
    @keyframes pulse {
        0% {
            transform: scale(1); /* Taille originale */
        }
        50% {
            transform: scale(1.1); /* Augmenter la taille */
        }
        100% {
            transform: scale(1); /* Retour à la taille originale */
        }
    }
}

.bloc_grid.reverse{
    grid-template-columns: 1fr 0.7fr;
}

.bloc_grid.reverse .texte {
    grid-area: 1 / 1;
}

.bloc_grid.reverse .photo {
    grid-area: 1 / 2;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/***** Media Queries *****/
@media (max-width: 1200px) {
    .bloc_grid {
        grid-gap: 60px;
        margin: 80px 0;
    }

    /* .bloc_grid .photo img {
        clip-path: initial;
    } */

    /* .bloc_grid .photo:before {
        display: none;
    } */
}

@media (max-width: 1000px) {
    .bloc_grid {
        grid-template-columns: 1fr;
        grid-gap: 80px;
    }

    .bloc_grid.reverse .texte {
        grid-area: 2;
    }

    .bloc_grid.reverse .photo {
        grid-area: 1;
    }

    .bloc_grid .photo img {
        max-height: 65vw;
    }
}

@media (max-width: 600px) {
    .bloc_grid {
        margin: 50px 0;
        grid-gap: 50px;
    }
}
.nom_societe{
    color: #004085;
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
}
/***** banner *****/
.banner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    align-items: center;
    justify-items: center;
    width: 100%; 
    height: 1200px; 
    position: relative; 
    overflow: hidden; 
    /* padding-top: 100px;  */
}

.banner .wrapper {
    height: 100%; 
    width: 100%;
    /* background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/cliente_reception_debout_souriante.jpg) center/cover no-repeat; */
    border-right: 10px solid #8cb33d;
    z-index: 20;
    
}
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* swiper */

  .swiper-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .swiper-slide {
    width: 100%;
    height: 100%;
  }
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.banner .wrapper:before {
    content: ""; 
    position: absolute; 
    width: 3000px; 
    height: 3000px; 
    transform: rotate(-10deg); 
    transform-origin: left top;
    background-color: #fff;
    border-left: 10px solid grey;
    z-index: 30; 
}

.banner .img {
    position: absolute; 
    top: 30%; 
    right: -50px;
    width: 50%; 
    height: 100%;
    z-index: 50;
}

.banner .content {
    width: 80%;
    position: relative; 
    z-index: 50; 
}

.banner .content .intro_header {
    margin-bottom: 35px; 
}

.banner .content .link {
    font-size: 22px; 
}

@media (max-width: 2000px) {
    .banner {
        height: 100vh; 
    }
    .banner .wrapper:before {
       left: 700px;
       top: -20%;
    }
}
@media (min-width: 1401px) and (max-width: 1699px){
    .banner{
        height: 100vh;
    }
    .banner .wrapper:before {
        left: 600px;
        top: -10%;
     }
}
@media (min-width: 1200px) and (max-width: 1400px){
    .banner{
        height: 100vh;
    }
    .banner .wrapper:before {
        left: 500px;
        top: -10%;
     }
     .banner .content{
        width: 90%;
        top: -5%;
     }
}

@media (max-width: 1199px) {
    .banner {
        grid-template-columns: 1fr 1fr;
        height: 100vh; 
        padding-top: 100px; 
    }
    .banner .img {
        position: static; 
        width: 100%; 
        height: 100vh; 
        margin: 0; 
        background-position: center; 
    }
    .banner .wrapper:before {
        display: none; 
    }
    .banner .content {
        width: 90%; 
        padding: 60px 0; 
        margin: 0 auto;
    }
    .banner .content br {
        display: none; 
    }
    .banner .content .intro_header{
        margin-bottom: 25px; 
    }
    .banner .link {
        padding: 0 0 0 35px; 
    }
    .banner .link:before {
        width: 15px; 
        background-position: 50% 50%; 
        padding-left: 10px;
    }
    .banner .link span {
        color: grey;
        padding-right: 10px; 
    }
}


@media (max-width: 999px) {
    .banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px; 
        height: 50vh;
    }
    .banner .img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        background-color: #8bb33de5;
        /* background: url(//www.sagittaexpress.be/wp-content/themes/theme_sagitta/images/livreur_chez_client_souriant_blackgilet.jpg) center/cover; */
    }
    .banner .content {
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #ffffffe6;
        margin: 60px 0;
        padding: 30px;
        border-radius: 20px;
        overflow: hidden;
        /* padding: 40px 0;  */
    }
    
    .banner .content .titre_main:after, 
    .banner .content .intro_header {
        display: none; 
    }
    .banner .content .link {
        font-size: 13px; 
        margin-top: -10px; 
    }
    .service .link{
        font-size: 13px;
    }
}

/***** shapes *****/

.shape_grey {
    position: absolute; 
    width: 3500px; 
    height: 3500px; 
    top: -600px; 
    right: -835px; 
    margin-left: 0; 
    transform: rotate(310deg); 
    transform-origin: right top; 
    border: 100px solid #00467f; 
    border-radius: 40%;
    z-index: 25;

}

/* .shape_grey:after {
    content: ""; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: -3%; 
    left: 0; 
    border: 70px solid #8cb33d; 
    border-radius: 40%;

} */

@media (max-width: 2000px) {
    .shape_grey {
        top: -1000px; 
    }
}

@media (max-width: 1600px) {
    .shape_grey {
        top: -895px; 
    }
}


@media (max-width: 1200px) {
    .shape_grey {
        display: none; 
    }
}

/***** content home *****/
.content_home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 5px 0; 
    position: relative; 
    z-index: 30;
    background-color: rgba(255, 255, 255, 0.5); /* Ajoute un fond semi-transparent pour mieux voir le flou */
}

.content_home::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    width: 100%;
    height: 100%; 
    background: linear-gradient(to top, #8cb33d, #00467f); 
    z-index: -1; 
}

@media (max-width: 600px) {
    .content_home {
        padding: 10px 0 5px 0; 
    }
}

/***** services *****/
.service{
    width: 98%;
    min-height: 600px;
    /* max-height: 1000px; */
    margin-top: 200px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
}
.service .titre_main {
    font-size: 25px; 
    line-height: 35px; 
}

.service .info {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 20; 
    font: italic 700 20px/180px "Barlow"; 
    text-transform: uppercase; 
    color: #8bb33de5; 
    margin: auto; 
    width: 180px; 
    text-align: center; 
    background: rgba(0, 0, 0, 0.8); 
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); 
}

.service .texte{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 8px;
}

.service .photo{
    overflow: hidden;
    /* max-height: 1000px; */
}

.service .photo img{
    width: 100%;
    height: 100%;
}
.service_description{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 50%;
    max-width: 98%;
}
.service_description p{
width: 80%;
}
.services_proposes{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.services_proposes h3{
    color: #00467f;
    font-size: 15px;
    line-height: 1rem;
    min-height: 35px;
}
.services_proposes p{
    width: 95%;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5rem;
    font-size: 13px;
    padding-top: 10px;
}

.service_propose{
    border-radius: 10px;
    background-color: #8cb33d46;
    display: flex;  
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 20px;
    }

@media (max-width: 800px) {
    .service{
        width: 95%;
    }
    .service_description{
        max-width: 100%;
    }
    .service_description p{
        width: 90%;
    }
    .services_proposes{
        display: flex;
        flex-direction: column;
    }
    
}

@media (max-width: 1200px) {
    .service {
        display: block; 
        margin: 60px 0; 
    }
    .service .info {
        right: auto; 
        clip-path: initial; 
        width: 160px; 
        line-height: 80px; 
    }
    .service .photo {
        display: none; 
    }
}

@media (max-width: 1000px) {
    .service {
        display: block; 
        margin: 60px 0; 
    }
    .service .photo {
        display: none; 
    }
    .service .texte {
        padding-bottom: 60px; 
    }
    .service.last .texte {
        border-bottom: none; 
        padding-bottom: 20px; 
    }
    .service .titre_main {
        font-size: 20px; 
        line-height: 30px; 
    }
}

@media (max-width: 600px) {
    .service {
        margin: 50px 0; 
    }
    .service .titre_main {
        margin-bottom: 15px; 
    }
}

/***** about *****/
.about {
    position: relative; 
    margin-top: 120px; 
}

.about .titre_main {
    font-size: 30px; 
    line-height: 40px; 
}

.about .link {
    margin-top: 30px; 
}

.a_propos p {
    width: 80%;
}

@media (max-width: 1000px) {
    .about {
        background: #eee; 
        padding: 80px 20vw; 
        margin: 0 -20vw; 
    }
}

@media (max-width: 600px) {
    .about {
        padding: 50px 20vw; 
    }
    .about .titre_main {
        font-size: 25px; 
        line-height: 35px; 
        margin-bottom: 10px; 
    }
    .about .titre_main:after {
        display: none; 
    }
    .a_propos p{
        width: 90%;
    }
}

.partner-logos {
    display: flex;
    overflow: hidden; 
    position: relative;
    width: 60%;
    margin: 0 auto;
    padding: 20px 0; 
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scroll-logos 10s linear infinite; 
}

.logo-container img {
    max-height: 80px; /* Ajustez la taille du logo */
    margin: 0 40px; /* Espace entre les logos */
    opacity: 0.8;
    transition: transform 0.8s ease, opacity 0.5s ease;
    text-transform: ;
}

.logo-container img:hover {
    transform: scale(1.1); /* Agrandir légèrement le logo au survol */
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px){
    .partner-logos{
        width: 100%;
    }
}

/***** devis *****/

.devis{
    height: 1200px;
}
.devis .contact-form-container{
    background-color: #fff;
}
/***** contact *****/

.contact-container {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    background-color: #f4f4f4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px){
    .devis{
        height: auto;
    }
    .contact-container{
        flex-direction: column;
    }
}

/* coordonnées */
.contact-info, .contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding: 20px;
    background-color: #f4f4f4;
}


.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.contact-info a {
    color: #0066cc;
}
.contact-form {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-container h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #00467f;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #05386e;
    margin-bottom: 8px;
}

/* Inputs et Textarea */
.form-control {
    width: 100%;
    font-family: serif;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    color: #555;
    outline: none;
    
}

.form-control:focus {
    border-color: #8cb33d;
  
}

textarea {
    resize: vertical;
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    background-color: #004085;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #007bff;
}

.btn:active {
    background-color: #004085;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info, .contact-form-container{
        width: 100%;
        padding: 0;
       
    }
    .contact-form {
        padding: 20px;
        margin: 20px;
    }

    .contact-container h3 {
        font-size: 22px;
    }

    .form-control {
        font-size: 14px;
        padding: 10px;
    }

    .btn {
        font-size: 16px;
    }
}

/*jobs */

.jobs{
    width: 100%;
    background-color: white;
    margin: 0 auto;
}
.jobs_list{
    max-width: 90%;
    padding-top: 150px;
    padding-bottom: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.job_grid{
    max-width: 500px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 3px solid #8cb33d;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.job_grid:hover{
    border-color: #003b66;
}
.job_grid:hover a {
    background-color: #8cb33d;
}
.job_grid h1, .single_job h1{
    padding-left: 10px;
    color: #003b66;
}

.job_grid h1:hover{
    cursor: pointer;
    color: #8cb33d;
}
.job_image {
    width: 100%; 
    max-width: 300px; 
   max-height: 350px; 
    margin: 0 auto;
    overflow: hidden; 
}

.job_image img {
    width: 100%;  
    height: 100%; 
    object-fit: cover;
}

@media (max-width: 768px) { 
    .job_image {
        max-width: 100%;  
        height: 200px;    
    }
}

@media (min-width: 1200px) { 
    .job_image {
        max-width: 400px;  
        height: 350px;     
    }
}


.job_text{
    text-align: justify;
    padding: 10px;
}

.job_grid a {
    height: 50px;
    width: 200px;
    display: block;
    text-align: center;
    margin : 0 auto;
    padding: 10px;
    background-color: #00467f;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.job_grid a:hover {
    color: #003b66;
}


.single_job{
    width: 80%;
    padding-top: 50px;
    padding-bottom: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.single_job_content{
    font-size: 18px;
    max-width: 80%;
    margin-top: 10px;
    margin-bottom: 40px;
    padding: 20px;
    color: #003b66;
    background-color: #ccc;
    border-radius: 5px;
  
}

.arrow {
    display: inline-block;
    font-size: 2rem;
    color: #8cb33d;
    animation: arrow-move 1s ease-in-out infinite; 
}

@keyframes arrow-move {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.single_job_return{
    width: 300px;
    padding-top: 20px;
    padding-left: 20px;
}

.single_job_return a {
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #8cb33d;
    display: flex;
    gap : 10px
}

.single_job_return a:hover{
    color: #003b66;
}