@font-face {
    font-family: "Jost", sans-serif;
    ;
    src: url(fonts/Jost-Italic-VariableFont_wght.ttf);
    src: url(fonts/Jost-VariableFont_wght.ttf);
}

:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --accent: #2b7cff;
    --muted: #7282a0;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 28px;
    --radiusM: 12px;
    --radiusS: 8px;
    --gap: 16px;
    font-family: "Manrope", "Nunito", "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100vw;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

::-webkit-scrollbar {
    width: 2px;
    height: 5px;
}


::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.11);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb {
    background: #6b6b6b;
    border-radius: 5px;
}


::-webkit-scrollbar-thumb:hover {
    background: #444444;
}


/*header*/

header {
    scroll-snap-align: center;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 9px 8px 0px #0000000f;
    border-radius: 50px;
    min-width: 80vw;
    margin-top: 16px;
    padding: 0 20px;
    z-index: 1;
    /* background: #ffffff; */
    margin: 16px;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.TopNavbar {
    width: 90%;
    height: 30px;
    max-width: 1030px;
    margin: 0 10px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9f9;
    border-radius: 12px 12px 0px 0px;
    translate: 0 10px;
}

.TopNavbar p {
    color: #c1c1c1;
}

.navbar {
    width: 100%;
    height: 60px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.navbar .logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    cursor: pointer;
}

.navbar li {
    list-style: none;
}


.navbar .toggle_btn {
    color: #2f71ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;

}

.TopMainMenu {
    width: 90%;
    height: 30px;
    max-width: 1030px;
    margin: 0 10px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9f9;
    border-radius: 12px 12px 0px 0px;
    translate: 0 10px;
}

.TopMainMenu p {
    color: #c1c1c1;
}



.dropdown_menu {
    position: absolute;
    right: 2rem;
    top: 80px;
    height: 0px;
    width: 300px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8f9f9;
    border-radius: 15px;
    box-shadow: 1px 4px 5px #0000003b;
}

.dropdown_menu.open {
    height: 175PX;
    display: block;
    padding: 5px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    border-color: #7a7a7a;
}

.dropdown_menu a {
    color: #005395;
    font-weight: 500;
}

.dropdown_menu .action_btn {
    width: 80%;
    display: flex;
    justify-content: center;
}


.MainMenu {
    width: 100%;
    /* height: 60px; */
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.MainMenu .itemsDiv {
    display: flex;
    gap: 8px;

}

.MainMenu .itemsDiv .logo {
    display: flex;
    align-items: center;
}

.MainMenu .menuItems {
    display: flex;
    gap: 8px;
}

.MainMenu .menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.MainMenu .menu .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.MainMenu .menuItems .item {
    display: flex;
    gap: 2rem;
    cursor: pointer;
    align-items: center;
}

.MainMenu .menuItems .item a {
    text-decoration: none;
    color: rgb(37, 37, 37);
    font-size: 12px;
    font-weight: 500;
}

.MainMenu .toggle_btn {
    color: #2f71ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;

}

.toggle_btn .i {
    display: block;
}

.action_btn {
    background-color: #2f71ff;
    color: #fff;
    padding: 1em 2em;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    /*cursor: pointer;*/
}

.action_btn2 {
    background-color: #101010;
    color: #fff;
    padding: 1em 2em;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    /*cursor: pointer;*/
}


.dropdownMenu {
    position: absolute;
    right: 2rem;
    top: 80px;
    height: 0px;
    width: 300px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8f9f9;
    border-radius: 15px;
    box-shadow: 1px 4px 5px #0000003b;
}

.dropdownMenu.active {
    height: 175PX;
    display: block;
    padding: 5px;
}

.dropdownMenu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    border-color: #7a7a7a;
}

.dropdownMenu a {
    color: #005395;
    font-weight: 500;
}

.dropdownMenu .action_btn {
    width: 80%;
    display: flex;
    justify-content: center;
}

.Mob {
    display: none;
}

.desk {
    display: flex;
}

/*Mega Menu*/
.MegaMenu {
    width: 90%;
    max-width: 1200px;
    height: min-content;
    border-radius: 15px;
    box-shadow: 1px 4px 5px #0000003b;
    padding: 20px;
    position: relative;
    top: 75px;
    z-index: 2;
    background-color: var(--color);
}

.n {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 26px;
    left: 0;
    z-index: 1;
    justify-content: center;
}

.MegaMenu h2 {
    font-size: 1.2em;
    color: #5d5d5d;
    margin-bottom: 10px;
}

.MegaMenu p {
    color: #2f71ff;
}

.MegaMenu .section {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.MegaMenu .service {
    margin: 0 10px;
    padding: 0px 10px 0px 0px;
    width: 30%;

}

.service .H {
    margin: 10px 0px;

}

.service li {
    padding: 0px 5px;
    /* background: antiquewhite; */
    border-radius: 5px;
    margin: 2px 5px;
    transition: 150ms;
}

.MegaMenu .services {}

.services a {
    font-weight: 100;
    font-size: 1em;
    color: #7a7a7a;
    transition: 200ms;
}


/*hero*/
.hero {
    scroll-snap-align: center;
    height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.heroDiv {
    display: flex;
    width: 65%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    font-size: 2.2em;
    font-family: "Jost", sans-serif;
}

.hero p {
    font-size: 1rem;
}

.hero .action {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    ;
}

.actC {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 20px 0 0px 0;
}

.actR {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0px 0;


}

.btn {
    background-color: #f7f7f7;
    color: #2196F3;
    padding: 1em 2.5em 1em 2em;
    margin: 0.5rem 0.5rem 0.5rem 0rem;
    border: none;
    outline: none;
    border-radius: 3em;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    left: 19px;
}

.btn2 {
    background-color: #2f71ff;
    color: #ffffff;
    padding: 1em 2em;
    margin: 0.5rem 0.5rem 0.5rem 0rem;
    border: none;
    outline: none;
    border-radius: 3em;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    left: -19px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}




 footer {
            background-color: #f8f9fa;
            border-top: 1px solid #e0e0e0;
            width: 100vw;
        }

        .footer-wrapper {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 40px 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
                justify-content: center;

            gap: 40px;
        }

        .footer-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 20%;
            min-width: 200px;
        }

        .footer-service {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .footer-title a {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s ease;
        }

        .footer-title a:hover {
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links li {
            margin: 0;
        }

        .footer-links a {
            text-decoration: none;
            color: #555;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #000;
        }

        .footer-support {
            border: none;
        }

        .footer-support-lists {
            color: #000;
        }

        .footer-contact-info {
            margin: 15px 0;
        }

        .footer-contact-info p {
            margin: 8px 0;
            font-size: 14px;
        }

        .footer-contact-info a {
            text-decoration: none;
            color: #2f71ff;
            transition: color 0.3s ease;
        }

        .footer-contact-info a:hover {
            color: #1a4dbf;
        }

        .footer-cta {
            margin-top: 20px;
        }

        .footer-cta p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #555;
        }

        .footer-button-wrapper {
            margin: 20px 0;
        }

        .footer-cta-btn {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .footer-cta-btn:hover {
            background-color: #333;
        }

        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
            margin: 30px;
        }

        .footer-copyright p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }

        .footer-copyright a {
            text-decoration: none;
            color: #2f71ff;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #1a4dbf;
        }

        @media (max-width: 768px) {
            .footer-wrapper {
                padding: 30px 15px;
            }

            .footer-content {
                gap: 30px;
            }

            .footer-column {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-links a {
                font-size: 13px;
            }

            .footer-cta-btn {
                width: 100%;
            }
        }
.spinner {
    width: 12px;
    height: 12px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 
.loader {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: block;
  margin: 20px auto;
  position: relative;
  background: currentColor;
  color: #FFF;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}

.loader::after, .loader::before {
  content: '';
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  box-sizing: border-box;
  animation: animloader 0.3s  0.45s  linear infinite alternate;
}
.loader::before {
  left: -20px;
  animation-delay: 0s;
}

@keyframes animloader {
  0%   { height: 48px} 
  100% { height: 4px}
} */


@media screen and (max-width: 1024px) {
    nav .deskMainMenu {
        display: none;
    }

    nav .deskSubMenu {
        display: none;
    }

    nav .MobMainMenu {
        display: flex;
    }

    nav .MoSubnMenu {
        display: flex;
    }

    .hero .vp h2 {
        font-size: 27px;
    }

    footer .footerDiv {
        flex-direction: column;
    }

}

@media screen and (min-width: 1400px) {
    .hero {
        border-radius: 0 0 30px 30px;
    }


}

/*mobile*/

@media(max-width: 1000px) {
    .Mob {
        display: flex;
    }

    .desk {
        display: none;
    }

}

@media(max-width: 500px) {
    .dropdownMenu {
        left: 2rem;
        width: unset;
    }

    .heroDiv {
        width: 75%;
    }

    .hero h2 {
        font-size: 2em;
    }

    .btn {
        padding: 1em 2em;
        cursor: pointer;
        position: unset;

    }

    .btn2 {

        padding: 1em 2em;
        margin: 0.5rem 0.5rem 0.5rem 0rem;
        position: unset;

    }

    .overflowDiv {
        width: 92vw;
        translate: -10vw;
    }

    .branding .developpement .developpement {
        padding: 10vw;
        border-radius: 10vw;
    }
}




@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-75px);
    }

    80% {
        transform: translateY(-75px);
    }

    100% {
        transform: translateY(0);
    }
}


@keyframes rotate {
    0% {
        rotate: 0deg;
    }

    50% {
        rotate: 2deg;
    }

    100% {
        rotate: 0deg;
    }
}


@media(max-width: 1000px) {

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .branding .image,
    .branding .texte,
    .webdev .image,
    .webdev .texte,
    .consulting .image,
    .consulting .texte {
        min-width: 90vw;
        text-align: center;
        justify-content: center;

    }

    .hero h2 {
        font-size: 2.8em;
    }

    .btn {
        padding: 1em 2em;
        cursor: pointer;
        position: unset;
    }

    .btn2 {

        padding: 1em 2em;
        margin: 0.5rem 0.5rem 0.5rem 0rem;
        position: unset;

    }
}

@media(max-width: 500px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    .heroDiv {
        width: 90%;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .btn {
        padding: 1em 2em;
        cursor: pointer;
        position: unset;

    }

    .btn2 {

        padding: 1em 2em;
        margin: 0.5rem 0.5rem 0.5rem 0rem;
        position: unset;

    }

    .overflowDiv {
        width: 92vw;
        translate: -10vw;
    }

    .branding .developpement .developpement {
        padding: 10vw;
        border-radius: 10vw;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        /* Start at 0 degrees rotation */
    }

    100% {
        transform: rotate(360deg);
        /* End at 360 degrees rotation */
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

.tit {
    margin-bottom: 9px;
}