@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px !important;
    }
}
.post,
.page {
    margin: 0;
}
.page-content,
.entry-content,
.entry-summary,
.widget {
    margin: 0;
}
p {
    margin-bottom: 1.5em;
}
a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}
a:visited {
    color: inherit;
}
*{ 
    margin:0; 
    padding:0;
    box-sizing:border-box; 
    
}

html,
body{
    font-family: "Poppins", sans-serif;
}
body{ 
    overflow-x:hidden; 
    position:relative;
} 
.gradient-text {
    background: linear-gradient(90deg, #FFC400, #FEE594);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SVG en arrière-plan */
#timeline-svg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:10;
}
#timeline-line{ 
    stroke:#d8b000; 
    stroke-width:2; 
    fill:none; 
    stroke-linecap:round; 
} 
#timeline-dot{ 
    fill:#ffc400; 
    filter:drop-shadow(0 0 10px rgba(255,196,0,0.8)); 
    
}

/* header */
/**********/
.tbw-header{
    background:#111;
    position:relative;
    padding:20px;
    overflow-x: clip;
    overflow-y: visible;
}
.tbw-header .navbar-collapse{
    overflow: visible;
}
.tbw-header-logo{
    position:relative;
}
.tbw-header-logo .custom-logo{
    width:190px;
    max-width:100%;
    height:auto;
}
.tbw-header .navbar{
    color:#fff;
    font-size:14px;
    font-weight:700;
}
.tbw-header .navbar-nav{
    gap:20px;
}
.tbw-header .navbar-nav .nav-link{
    color:#fff;
    padding:.5rem .5rem;
    text-transform: uppercase;
}
.tbw-header .navbar-nav .nav-link.active, 
.tbw-header .navbar-nav .nav-link.show,
.tbw-header .navbar-nav .nav-link:hover{
    color:#ffc400;
}

/* ======================================================
   OFFCANVAS
====================================================== */

#mobileMenu .offcanvas-header{
    padding-inline:35px;
}
#mobileMenu .offcanvas-body{
    padding-inline:20px;
}
#mobileMenu .offcanvas-body ul{
    margin:0;
    padding:0;
    list-style:none;
}
.menu-toggle{
    width:50px;
    height:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    padding:0;
    border:0;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
}
.menu-toggle:focus{
    outline:none;
    box-shadow:none;
}
.menu-toggle span{
    width:26px;
    height:3px;
    border-radius:20px;
    background:#000;
    transition:.3s;
}
#mobileMenu .menu-item-inner{
    display:flex;
    align-items:center;
}
#mobileMenu .menu-item-inner>a{
    flex:1;
    padding:15px 20px;
    color:#222;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
}
#mobileMenu .dropdown-toggle{
    width:50px;
    border:0;
    background:none;
    cursor:pointer;
    align-self:stretch;
}
#mobileMenu .dropdown-toggle::after{
    display: none;
}
#mobileMenu .dropdown-toggle::before{
    content:"+";
    font-size:22px;
    transition:.3s;
}
#mobileMenu .menu-item.open>.menu-item-inner>.dropdown-toggle::before{
    content:"−";
}
/*.dropdown-toggle::before{*/
/*    content:"\f282"; */
/*    font-family:"bootstrap-icons";*/
/*    transition:.3s;*/
/*}*/

.menu-item.open > .menu-item-inner > .dropdown-toggle::before{
    transform:rotate(90deg);
}
#mobileMenu .sub-menu{
    display:none;
}
#mobileMenu .menu-item.open>.sub-menu{
    display:block;
}
/* Indentation */
#mobileMenu .sub-menu > li > .menu-item-inner > a{
    padding-left:35px;
}
#mobileMenu .sub-menu .sub-menu > li > .menu-item-inner > a{
    padding-left:55px;
}
#mobileMenu .sub-menu .sub-menu .sub-menu > li > .menu-item-inner > a{
    padding-left:75px;
}
@media (max-width: 1199.98px) {
    .tbw-header-logo .custom-logo {
        width: 150px;
    }
    
    .tbw-header .navbar-toggler{
        margin-left:auto;
    }
}
@media (max-width: 1199.98px) {
    .tbw-header {
        padding: 10px;
    }
}
/* ==========================
   Bootstrap menu : Desktop dropdown hover
========================== */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all .3s ease;
        margin-top: 0;
        z-index: 9999;
        width: auto;
        max-width: 170px;
        min-width: 170px;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        
    }
    .navbar-nav .dropdown-menu .dropdown-item{
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    /* Arrow position right */
    .navbar-nav .dropdown > a {
        position: relative;
        padding-right: 35px !important;
    }
    .navbar-nav .dropdown > a::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        border:0;
    }
    .navbar-nav .dropdown .dropdown > a::after {
        content: "\f105";
    }
    /* Sous-sous menu */
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        right:auto;
        margin-left: .1rem;
    }
    /* Inversion */
    .dropdown-submenu.open-left > .dropdown-menu{
        left:auto !important;
        right:100% !important;
        margin-left:0;
        margin-right:.1rem;
    }
    /* Sous menu niveau 2 */
    .navbar-nav .dropdown-submenu > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateX(15px);
        transition: all .3s ease;
    }
    .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .navbar-nav .sub-menu {
        top: 0;
        left: 100%;
    }
    /* a.dropdown-item style */
    .navbar-nav .dropdown-menu{
        padding: 0;
        border-radius: 0;
    }
    .navbar-nav .dropdown-item {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar-nav .dropdown-item{
         border-bottom: 1px solid #c4c4c4;
    }
    .dropdown-item.active, 
    .dropdown-item:active,
    .dropdown-item:hover {
        color: #000;
        background-color:#ffc400;
    }
    
    .dropdown-submenu{
        position: relative;
    }
    /* Zone invisible entre le parent et le sous-menu */
    .dropdown-submenu.open-left::before{
        content: "";
        position: absolute;
        top: 0;
        right: 100%;
        width: 80px;   /* augmente à 30px si nécessaire */
        height: 100%;
    }
    .dropdown-submenu.open-left > a::after{
        transform: translateY(-50%) scaleX(-1);
    }
}


/* Home slider */
.n2-ss-slide-background img {
    object-fit: cover !important;
}

/* age home section qui sommes nous */
@media (min-width: 767px) {
	.kb-row-layout-idblock-18_09ec64-4b > .kt-row-column-wrap{
		background: url(https://dev2.alghost.com/tbwadjaz/wp-content/uploads/2026/07/img-01.png);
		background-size: cover;
		background-position: 0% 50%;
		background-repeat: no-repeat;
	}
}
.about .eb-button-wrapper .eb-button-anchor{ 
    clip-path: polygon(
        0 0,
        92% 0,
        100% 100%,
        8% 100%
    );
    
} 
@media (max-width: 767px) {
    .about,
    .about p{
        text-align:center !important;
    }
    .about .eb-button-inner-wrapper {
        justify-content: center !important;
    }
   .about-col-01{
        ORDER: 2;
    }
}

/* page home section our work */
.tbw-home-our-work{
    padding: 70px 20px 50px 20px;
}
.work-img-item img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}
.homeWorkSwiper {
    visibility: hidden;
}
.homeWorkSwiper.swiper-initialized {
    visibility: visible;
}
.homeWorkSwiper{
    padding-bottom: 180px;
}
.homeWorkSwiper .swiper-wrapper{
    height: auto !important;
    align-items: flex-start;
}
.homeWorkSwiper .swiper-slide{
    height: auto !important;
    transition: transform .6s ease;
    will-change: transform;
}
.work-content-item{
    padding:30px 20px;
}
.tbw-home-our-work .work-content-item .category{
    display:inline-block;
    padding:3px 7px;
    text-transform:uppercase;
    font-size:12px;
    font-weight:700;
    background:#FFD800;
    margin-bottom:15px;
}
.tbw-home-our-work .work-content-item h3{
    font-size: 22px;
    text-transform: uppercase;
    font-weight:700;
}
.tbw-home-our-work .client{
    display:block;
    margin-top:10px;
    color:#ccc !important;
    font-weight:700;
}
.homeWorkSwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
}
.homeWorkSwiper .swiper-pagination-bullet-active {
    background: #FFC400;
     width:12px;
    height:12px;
}
/* decalage des items */
.homeWorkSwiper .swiper-slide-active {
    transform: translateY(0px) !important;
}
.homeWorkSwiper .swiper-slide-next {
    transform: translateY(80px) !important;
}
.homeWorkSwiper .swiper-slide-next + .swiper-slide {
    transform: translateY(160px) !important;
}
.all-work-btn{
    margin-top:20px;
}
.all-work-btn a{
    font-weight: 700;
    color: #000;
    font-size: 18px;
}
.all-work-btn a:hover{
    color:#ffd800;
}
@media (max-width: 1024.98px) {
    .homeWorkSwiper{
        padding-bottom: 100px;
    }
    .work-img-item img{
        height:320px;
    }
    .tbw-home-our-work .client{
        font-size:16px;
    }
}
@media (max-width: 599.98px) {
    .homeWorkSwiper{
        padding-bottom: 40px;
    }
    .tbw-home-our-work .work-content-item{
        text-align:center;
        padding-top:50px;
    }
    .tbw-home-our-work .work-content-item .category{
        font-size:10px;
        margin-bottom:20px;
    }
    .tbw-home-our-work .work-content-item h3{
        font-size: 20px;
    }
    .all-work-btn{
        margin-top:50px;
    }
    .all-work-btn a{
        font-size: 16px;
    }
}

/* footer */
.site-footer {
    background:#08090b;
    color:white;
    position:relative;
    overflow:hidden;
}
.tbw-footer {
    padding:70px 20px;
    position:relative;
    color: #fff;
}
.footer-section-01 p {
    color:white;
    font-size:18px;
    line-height:1.4;
}
.tbw-footer-logo img {
    width:190px;
    max-width:100%;
    margin-bottom:30px;
}
.footer-section-02 .eb-social-links-wrapper ul.eb-socials li a
{
    color: #000;
    background: #ffd800;
    text-decoration:none;
}
/* Formulaire Newsletter Minimal */
.site-footer .tnp-subscription-minimal,
.site-footer .tnp-subscription-minimal form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.site-footer .tnp-subscription-minimal input[type=email] {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
}
.site-footer .tnp-subscription-minimal .tnp-email{
    flex:1;
    border-radius: 7px !important;
}
.site-footer .tnp-subscription-minimal input[type=email]::placeholder {
    color: rgba(255,255,255,.6);
}
.site-footer .tnp-subscription-minimal input[type=submit] {
    background: transparent;
    border: none;
    color: #f4c400;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    transition: .3s;
}
.site-footer .tnp-subscription-minimal input[type=submit]:hover {
    color: #ffd700;
}
.site-footer .tnp-subscription-minimal .tnp-submit{
    width:auto !important;
    min-width:100px;
    white-space:nowrap;
    overflow:visible;
    padding:0;
    background:transparent;
    border:none;
    color:#f7c600;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    border-radius: 7px;
}
@media only screen and (max-width: 767px) {
    .site-footer .eb-social-links-wrapper ul.eb-socials,
    .site-footer .tnp-subscription-minimal,
    .site-footer .tnp-subscription-minimal form{
        justify-content: center;
    }
    .tbw-footer-logo {
        text-align: center;
    }
    .tbw-footer{
        max-width: 500;
        margin-left: auto;
        margin-right: auto;
    }
    .tbw-footer .sc-01{
        order:2;
        margin-top:30px;
    }
    
}

