/* Permet d'inclure le padding dans la largeur */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media screen and (min-width: 1251px) {

/* Navbar */

.nav{
    margin: 0;
    width: 100%;
    height: 128px;
    position:absolute;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 167px;
}

.nav .logo img {
    width: 180px;
    height: auto;
}

.nav .links_div {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav .nav-item {
    list-style: none;
}

.nav .nav-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: "Manrope", sans-serif;
}

.btnnavcontact{
    background: linear-gradient(90deg, #159EA9 0%, #082459 100%);
    border-radius: 100px;
    padding: 16px 18px;
    flex-wrap: nowrap;
    display: flex;
}

.btnnavcontact:hover {
    background: linear-gradient(90deg, #1AD7E6 0%, #082459 100%);
}

/* Responsive Navbar */

.nav-hamburger {
    display: none;
}
.hamburger {
    display: none;
}

/* Responsive Navbar */


}

@media screen and (max-width: 1250px) {
    body{
        display: flex;
        flex-direction: column;
    }
    .nav { /* Barre de navigation de base cacher */
        display: none;
    }
    .nav-hamburger{
        display: block;
        position: fixed;
        background-color: white;
        width: 100vw;
        min-height: 5svh;
        height: fit-content;
        z-index: 1000;
    }
    .btn-hamburger {
        display: flex;
        justify-content: flex-start;
        padding: 10px;
        font-size: large;
        font-weight: bold;
        cursor: pointer;
    }
    .hamburger {
        display: none;
        width: 100vw;
        height: 100svh;
        padding: 3rem 20px 30rem 15px;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .hamburger .hamburger__item {
        width: 90%;
        display: flex;
        border-bottom: 1px solid #0000006b;
    }
    .hamburger .hamburger__item a {
        text-decoration: none;
        color: black;
        font-size: 20px;
        font-weight: bold;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: "Manrope", sans-serif;
    }
    .hamburger .hamburger__item a svg{
        margin: 0; 
        padding: 0;
        z-index: 0;
        position: relative;
        top: 0;
    }

    .hamburger .hamburger__item a.actif{
        color: #12a0a4;
        transition: all 0.3s ease-out;
    }

    .hamburger .hamburger__item a:hover{
        color: #12a0a4;
        transition: all 0.3s ease-out;
    }
    
}

/* Fin du code responsive Navbar */



/* Footer */

footer{
    display: flex;
    height: 520px;
    padding: 85px 80px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    background: linear-gradient(91deg, #159EA9 -25.64%, #082459 92.59%);
}

footer .footer_content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;

}

footer .footer_content .saftrick_info{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}


footer .footer_content .saftrick_info .saftrick_data{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

footer .footer_content .saftrick_info .saftrick_data{
    width: 350px;
}

footer .footer_content .saftrick_info .saftrick_data img{
    width: 100%;
    height: auto;
}

footer .footer_content .saftrick_info .saftrick_data .texte{
    color: var(--Blanc, #FFF);

    /* Small content */
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}

footer .footer_content .saftrick_info .saftrick_data .reseaux{
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer_content .saftrick_info .saftrick_data .reseaux a {
    display: flex;              /* centre l'icône */
    align-items: center;
    justify-content: center;
    width: 40px;                /* taille du cercle */
    height: 40px;
    background: white;          /* cercle blanc */
    border-radius: 50%;         /* arrondi total */
    color: #11768F;             /* couleur de l’icône */
    font-size: 20px;            /* taille de l’icône */
    text-decoration: none;
    transition: 0.3s ease;
}

footer .footer_content .saftrick_info .saftrick_data .reseaux a:hover {
    background: #159EA9;        /* couleur de fond au hover */
    color: white;               /* icône en blanc au hover */
}

footer .footer_content .saftrick_info .saftrick_data .reseaux a i{
    border-radius: 360px;
    aspect-ratio: 1/1;
}

footer .footer_content .saftrick_info .services_footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

footer .footer_content .saftrick_info .services_footer .titre{
    color: var(--Blanc, #FFF);

    /* Large emphasis content */
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px; /* 125% */
}

footer .footer_content .saftrick_info .services_footer .services {
    display: flex;
    align-items: center;
    gap: 54px;
}

footer .footer_content .saftrick_info .services_footer .services div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

footer .footer_content .saftrick_info .services_footer .services div span{
    color: var(--Blanc, #FFF);

    /* Medium content */
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 142.857% */
    letter-spacing: -1px;
}

footer .footer_content .ligne{
    background: #FFF;
    width: 100%;
    height: 1px;
}

footer .footer_content .contacts_footer{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    /* gap: 185px; */
    color: #FFF;
    /* Extrasmall content */
    font-family: "Manrope" ,sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

footer .footer_content .contacts_footer div a{
    color: #FFF;

    /* Extrasmall content */
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

footer .footer_content .contacts_footer .contacts a{
    font-weight: 700 !important;
}

/* Responsive footer */

@media screen and (max-width: 1230px) {
    footer{
        height: auto;
    }
    footer .footer_content .saftrick_info{
        align-items: flex-start;
    }
    footer .footer_content .saftrick_info .services_footer .services{
        flex-direction: column;
        gap: 0;
    }
    footer .footer_content .saftrick_info .services_footer .services div{
        width: 100%;
    }
    footer .footer_content .contacts_footer{
        flex-direction: column;
    }
}

@media screen and (max-width: 1000px) {
    footer{
        padding: 65px 18px;
    }
    footer .footer_content .saftrick_info{
        flex-direction: column;
        gap: 56px;
    }

    footer .footer_content .saftrick_info .saftrick_data{
        width: 66vw;
    }

    footer .footer_content .saftrick_info .services_footer .titre{
        font-size: 26px;
    }

    footer .footer_content .saftrick_info .services_footer .services div span{
        font-size: 22px;
    }
}


/* Responsive footer */

/* Footer */