:root{
    --avantage-primary: #dd2a4a;
    --avantage-secondary: #0b4866;
    --avantage-font: 'Cairo', sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    overflow-x:hidden;
}

body{
    font-family: var(--avantage-font);
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

@media (max-width:576px){
    .container{
        padding:0 15px;
    }
}




.top-bar{
    background:var(--avantage-secondary);
    color:#fff;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:45px;
    width:90%;
}

.top-right i{
    color:var(--avantage-primary);
    font-size:18px;
    margin-left:5px;
}

.top-right{
    display:flex;
    align-items:center;
    direction:ltr;
    gap:25px;
}

.top-left{
    display:flex;
    align-items:center;
    direction:ltr;
    gap:25px;
}

.social{
    display:flex;
    gap:18px;
}

.social a{
    color:var(--avantage-primary);
    transition:.3s;
}

.social a:hover{
    color:#fff;
}




header{
    background:#ccc;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    position:relative;
    z-index:600; 
}

.header{
    height:100px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:90%;
}

.logo img{
    height:58px;
}


nav ul{
    list-style:none;
    margin:0;
    padding:0;
}


nav > ul{
    display:flex;
    gap:40px;
}

nav li{
    position:relative;
}

nav a{
    text-decoration:none;
    color:#222;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    position:relative;
    display:block;
}


nav > ul > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--avantage-primary);
    transition:.3s;
}

nav a:hover{
    color:var(--avantage-primary);
}

nav > ul > li > a:hover::after{
    width:100%;
}


nav li.menu-item-has-children > a::before{
    content:"\f107"; 
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    font-size:12px;
    margin-left:6px;
    vertical-align:middle;
    display:inline-block;
    transition:.3s;
}



nav .sub-menu{
    position:absolute;
    top:calc(100% + 14px);
    right:0;
    min-width:220px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    border-radius:6px;
    padding:8px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s ease;
    z-index:500;
}

nav .sub-menu .sub-menu{
    
    top:-8px;
    right:calc(100% + 10px);
}

nav li.menu-item-has-children:hover > .sub-menu,
nav li.menu-item-has-children:focus-within > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

nav .sub-menu li{
    width:100%;
}

nav .sub-menu a{
    font-size:15px;
    font-weight:500;
    padding:10px 20px;
    white-space:nowrap;
}

nav .sub-menu a::after{
    content:none; 
}

nav .sub-menu a:hover{
    background:#f7f7f7;
    color:var(--avantage-primary);
}

nav .sub-menu li.menu-item-has-children > a::before{
    content:"\f104"; 
    float:left;
    margin:3px 0 0;
}



.actions{
    display:flex;
    align-items:center;
    gap:22px;
}

.phone{
    background:var(--avantage-primary);
    color:#fff;
    text-decoration:none;
    padding:14px 26px;
    border-radius:3px;
    font-weight:700;
    transition:.3s;
}

.phone:hover{
    background:var(--avantage-primary);
}

.cart{
    position:relative;
    cursor:pointer;
    font-size:22px;
}

.cart span{
    position:absolute;
    top:-8px;
    right:-10px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--avantage-primary);
    color:#fff;
    font-size:12px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.search{
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.search:hover{
    color:var(--avantage-primary);
}

.menu-btn{
    background:none;
    border:none;
    font-size:35px;
    cursor:pointer;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:998;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-380px;
    width:360px;
    max-width:100%;
    height:100vh;
    background:#fff;
    transition:.4s;
    z-index:999;
    padding:30px;
    overflow:auto;
}

.mobile-menu .logo{

    text-align:center;
    margin-bottom:40px;

}

.mobile-menu .logo img{
    width:180px;
}

.mobile-menu ul{
    list-style:none;
}

.mobile-menu li{
    border-bottom:1px solid #ddd;
}

.mobile-menu a{
    display:block;
    padding:22px 15px;
    color:#222;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
}

.mobile-menu a.active{
    background:var(--avantage-primary);
    color:#fff;
}



.mobile-menu li.menu-item-has-children{
    position:relative;
}

.mobile-menu li.menu-item-has-children > a{
    padding-left:60px; 
}

.mobile-menu .submenu-toggle{
    position:absolute;
    left:0;
    top:0;
    width:60px;
    height:100%;
    background:none;
    border:none;
    border-right:1px solid #eee;
    color:#222;
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    -webkit-tap-highlight-color:rgba(0,0,0,.06);
    touch-action:manipulation;
}

.mobile-menu .submenu-toggle:active{
    background:#f0f0f0;
}

.mobile-menu .submenu-toggle i{
    font-size:18px;
    transition:transform .25s;
}

.mobile-menu li.submenu-open > .submenu-toggle i{
    transform:rotate(180deg);
}

.mobile-menu .sub-menu{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    background:#f7f7f7;
}

.mobile-menu li.submenu-open > .sub-menu{
    max-height:1000px; 
}

.mobile-menu .sub-menu a{
    padding-right:35px;
    font-size:15px;
    font-weight:600;
}

.mobile-menu .sub-menu .sub-menu a{
    padding-right:55px; 
    font-size:14px;
    font-weight:500;
}

.close-btn{
    position:absolute;
    left:20px;
    top:20px;
    background:none;
    border:none;
    font-size:35px;
    cursor:pointer;
}

.mobile-menu.open{
    right:0;
}

.overlay.show{
    opacity:1;
    visibility:visible;
}

.actions-mobile{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:20px; 
    margin-bottom:20px;   
}
.actions-mobile .phone-mobile{
    background:var(--avantage-primary);
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:3px;
    font-weight:700;
    transition:.3s;
}

.top-bar-mobile{
    margin-top: 20px;
    margin-bottom: -30px;
    margin-right: -30px;
    margin-left: -30px;
    padding-top: 30px;
    background: var(--avantage-secondary);
}

.top-right-mobile{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.top-right-mobile span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
}

.top-right-mobile i{
    color: var(--avantage-primary); 
    font-size: 20px;
}

.top-left-mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.top-left-mobile p{
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.top-left-mobile .social{
    display: flex;
    gap: 15px;
}

.top-left-mobile .social a{
    color: var(--avantage-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--avantage-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--avantage-primary)d6;
}
.back-to-top i {
    font-size: 14px;
}



header{
    background:#fff;
    height:100px;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:100%;
}

.menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:38px;
    color:var(--avantage-secondary);
    cursor:pointer;
}

.logo img{
    width:180px;
}


@media (max-width:991px){

.header{
    flex-direction:row-reverse;
    height:auto;
    padding:20px 0;
    gap:20px;
}

.top-bar{
    display:none;
}

nav,
.actions{
    display:none;
}

.menu-btn{
    display:block;
}

.logo img{
    width:170px;
}

}

@media (max-width:576px){

header{
    height:80px;
}

.header{
    padding:0 20px;
}

.logo img{
    width:150px;
}

.menu-btn{
    font-size:34px;
}
}


body{
    background:#f4f4f4;
}

footer{
    width:100%;
}



.footer-top{
    background:#173f59;
    color:#ffffff;
    padding:70px 5%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.footer-line{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:15px;
}

.footer-box h3{
    color:#ffffff;
    margin-bottom:20px;
    font-size:16px;
}

.footer-box h4{
    margin-bottom:15px;
    font-size:20px;
    color: var(--avantage-primary);
}

.small-title{
    color:var(--avantage-primary);
    margin-bottom:10px;
    position:relative;
    font-size:20px;
}

.line{
    display:flex;
    width:50px;
    height:2px;
    background:var(--avantage-primary);
    margin:15px 0;
    align-self:flex-start;
}

.footer-box p{
    line-height:1.9;
    color:#ffffff;
}



.contact-info{
    list-style:none;
    margin-top:20px;
}

.contact-info li{
    margin-bottom:12px;
}

.contact-info i{
    color:var(--avantage-primary);
    margin-left:8px;
}



.map-wrapper{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:30px;
    margin-top:25px;
}

.map-wrapper img {
  width: 280px;
  max-width: 100%;
  opacity: .9;
  position: relative;
  left: 20px !important;
}

.phones{
    width:230px;
}

.phones p{
    margin-bottom:15px;
    font-weight:400;
    font-size:12px;
}

.phones i{
    color:var(--avantage-primary);
}



.social-icons{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.social-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--avantage-primary);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ffffff;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
    background:#ffffff;
    color:var(--avantage-primary);
}



.footer-bottom{
    background:var(--avantage-primary);
    color:#ffffff;
    padding:22px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-menu{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.footer-menu a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-menu a:hover{
    opacity:.8;
    color: #ffffff !important;
}

.copyright{
    font-size:14px;
}

p a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

p a:hover {
    color: #ffffff; 
}

li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

li a:hover {
    color: var(--avantage-primary); 
}



@media (max-width:992px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .map-wrapper{
        flex-direction:column;
		justify-content:center;
		align-items:center
    }

    .phones{
        position:relative;
        left: 0px;
    }

    .social-icons{
        justify-content:center;
    }

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

    .footer-menu{
        justify-content:center;
    }
}



@media (max-width:576px){

    .footer-top{
        padding:50px 20px;
    }

    .footer-box h3{
        font-size:16px;
    }

    .social-icons a{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .footer-menu{
        gap:12px;
        font-size:14px;
    }

    .copyright{
        text-align:center;
    }
}


    .services-page{
    padding:100px 0;
    background:#f7f7f7;
}

.services-page .container{
    width:90%;
    max-width:1280px;
    margin:auto;
}


.section-title{
    text-align:center;
    max-width:720px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--avantage-primary);
    font-weight:700;
    font-size:16px;
    margin-bottom:16px;
}

.section-title span::before,
.section-title span::after{
    content:"";
    width:30px;
    height:2px;
    background:var(--avantage-primary);
}

.section-title h1,
.section-title h2{
    font-size:38px;
    color:var(--avantage-secondary);
    line-height:1.3;
}

.section-subtitle{
    margin-top:18px;
    color:#666;
    font-size:16px;
    line-height:1.9;
}

@media(max-width:768px){
    .section-title h1,
    .section-title h2{
        font-size:28px;
    }
    .section-title{
        margin-bottom:40px;
    }
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.service-card{
    background:#fff;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.service-card a{
    text-decoration:none;
    color:inherit;
}

.service-image{
    position:relative;
    overflow:hidden;
    height:230px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:rgba(221,42,74,.88);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.service-card:hover .service-overlay{
    opacity:1;
}

.service-overlay span{
    color:#fff;
    font-size:20px;
    font-weight:600;
    border:2px solid #fff;
    padding:12px 30px;
    transition:.3s;
}

.service-overlay span:hover{
    background:#fff;
    color:var(--avantage-primary);
}

.service-content{
    padding:35px;
}

.service-content h3{
    color:var(--avantage-secondary);
    font-size:28px;
    margin-bottom:20px;
    transition:.3s;
}

.service-card:hover h3{
    color:var(--avantage-primary);
}

.service-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}


.blog-pagination,
.services-pagination{
    display:flex;
    justify-content:center;
    margin-top:60px;
}

.page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:44px;
    height:44px;
    padding:0 8px;
    margin:0 4px;
    border-radius:6px;
    background:#fff;
    color:var(--avantage-secondary);
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    transition:.3s;
}

.page-numbers.current{
    background:var(--avantage-primary);
    color:#fff;
}

a.page-numbers:hover{
    background:var(--avantage-primary);
    color:#fff;
}

.page-numbers.dots{
    background:none;
}


.no-posts{
    text-align:center;
    padding:60px 20px;
    background:#fff;
    border-radius:10px;
}

.no-posts h2{
    color:var(--avantage-secondary);
    font-size:24px;
    margin-bottom:12px;
}

.no-posts p{
    color:#777;
    font-size:15px;
}

@media(max-width:992px){
.services-grid{
grid-template-columns:repeat(2,1fr) ;
}
}

@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
padding:0 20px ;
}

.service-image img{
height:250px ;
}

.service-content{
padding:25px ;
}
}


.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    border-radius:3px;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    border:2px solid transparent;
    transition:.3s;
    cursor:pointer;
}

.btn-primary{
    background:var(--avantage-primary);
    color:#fff;
}

.btn-primary:hover{
    filter:brightness(.9);
    transform:translateY(-2px);
}

.btn-outline{
    background:transparent;
    border-color:var(--avantage-secondary);
    color:var(--avantage-secondary);
}

.btn-outline:hover{
    background:var(--avantage-secondary);
    color:#fff;
}

.btn-white{
    background:#fff;
    color:var(--avantage-primary);
}

.btn-white:hover{
    transform:translateY(-2px);
    filter:brightness(.95);
}

.btn-block{
    width:100%;
}

.service-hero{
    padding:100px 0;
    background:#f5f5f5;
}

.service-hero .container{
    width:90%;
    max-width:1400px;
    margin:auto;
    direction:ltr;
}

.service-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
}

.service-hero-image{
    height:650px;
}

.service-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-hero-content{
    padding:70px;
    direction:rtl;
}

.service-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#888;
    margin-bottom:22px;
}

.service-breadcrumb a{
    color:#888;
    text-decoration:none;
    transition:.3s;
}

.service-breadcrumb a:hover{
    color:var(--avantage-primary);
}

.service-breadcrumb .current{
    color:var(--avantage-secondary);
    font-weight:600;
}

.service-hero-actions{
    display:flex;
    gap:16px;
    margin-top:35px;
}

.service-label{
    display:flex;
    align-items:center;
    gap:15px;
    color:#333;
    font-size:18px;
    margin-bottom:25px;
}

.service-label::before{
    content:"";
    width:60px;
    height:3px;
    background:var(--avantage-primary);
}

.service-hero-content h1{
    font-size:60px;
    color:var(--avantage-secondary);
    line-height:1.2;
    margin-bottom:30px;
}

.service-intro{
    font-size:21px;
    line-height:2;
    color:#222;
}

.hero-line{
    width:100%;
    height:1px;
    background:#ddd;
    margin:45px 0;
}

.service-text{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:40px;
}

.service-column{
    color:#666;
    line-height:2;
    font-size:17px;
}

.service-column p{
    margin-bottom:20px;
}


.service-details{
    padding:90px 0;
}

.service-details-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:start;
}

.service-body{
    color:#444;
    font-size:17px;
    line-height:2.1;
}

.sub-services{
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}
.sub-services h3{
    margin-bottom: 20px;
}

.service-body h2,
.service-body h3{
    color:var(--avantage-secondary);
    margin:35px 0 18px;
    line-height:1.4;
}

.service-body h2{ font-size:28px; }
.service-body h3{ font-size:22px; }

.service-body p{
    margin-bottom:18px;
}

.service-body ul,
.service-body ol{
    margin:0 0 22px;
    padding-right:22px;
}

.service-body li{
    margin-bottom:10px;
}

.service-body img{
    border-radius:6px;
    margin:20px 0;
}

.service-sidebar-card{
    position:sticky;
    top:30px;
    background:#f7f7f7;
    border-top:4px solid var(--avantage-primary);
    border-radius:6px;
    padding:35px;
}

.service-sidebar-card h3{
    color:var(--avantage-secondary);
    font-size:21px;
    margin-bottom:12px;
}

.service-sidebar-card > p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:24px;
}

.service-sidebar-card .btn{
    margin-bottom:14px;
}

.service-sidebar-meta{
    list-style:none;
    margin:26px 0 0;
    padding-top:26px;
    border-top:1px solid #e2e2e2;
}

.service-sidebar-meta li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#555;
    font-size:14px;
    margin-bottom:14px;
}

.service-sidebar-meta li i{
    color:var(--avantage-primary);
    width:16px;
    text-align:center;
}


.related-services{
    padding:90px 0;
}


.service-cta-banner{
    background:var(--avantage-secondary);
    padding:60px 0;
}

.service-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.service-cta-inner h2{
    color:#fff;
    font-size:30px;
    margin-bottom:10px;
}

.service-cta-inner p{
    color:rgba(255,255,255,.75);
    font-size:16px;
}

@media(max-width:992px){

.service-hero-wrapper{
grid-template-columns:1fr;
}

.service-hero-image{
height:400px;
}

.service-text{
grid-template-columns:1fr;
}

.service-hero-content{
padding:40px;
}

.service-hero-content h1{
font-size:40px;
}

.service-details-wrapper{
    grid-template-columns:1fr;
}

.service-sidebar-card{
    position:static;
}

.service-cta-inner{
    text-align:center;
    justify-content:center;
}
}

@media(max-width:576px){
    .service-hero-actions{
        flex-direction:column;
    }
    .service-details{
        padding:60px 0;
    }
}




.latest-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.latest-post-card{
    background:#fff;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.latest-post-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.latest-post-image{
    overflow:hidden;
}

.latest-post-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.latest-post-card:hover .latest-post-image img{
    transform:scale(1.08);
}

.latest-post-content{
    padding: 20px 20px;
}



.latest-post-cats{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
}

.latest-post-cat{
    background:none;
    padding:0;
    border:none;
    color:#222;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    text-decoration:none;
    letter-spacing:.5px;
}

.latest-post-cat:hover{
    color:var(--avantage-primary);
}

.latest-post-cats::before{
    content:"";
    width:34px;
    height:3px;
    background:var(--avantage-primary);
    display:block;
}



.latest-post-title{
    margin:0 0 18px;
}

.latest-post-title a{
    color:#222;
    font-size:38px;
    font-weight:700;
    line-height:1.25;
    text-decoration:none;
    transition:.3s;
}

.latest-post-title a:hover{
    color:var(--avantage-primary);
}



.latest-post-excerpt{
    color:#444;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}



.latest-post-footer{
    display:flex;
    justify-content:flex-start;
}

.latest-post-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0;
    background:none;
    color:var(--avantage-primary);
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.latest-post-btn i{
    font-size:13px;
    transition:.3s;
}

.latest-post-btn:hover{
    gap:14px;
    color:var(--avantage-primary);
}

@media(max-width:991px){
    .latest-posts-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .latest-posts-grid{
        grid-template-columns:1fr;
    }
}
.map-wrapper img {
  width: 280px;
  max-width: 100%;
  opacity: .9;

}



.service-hero,
.service-details,
.related-services,
.service-cta-banner{
    width:100%;
    overflow:hidden;
}

.service-hero .container,
.service-details .container,
.related-services .container,
.service-cta-banner .container{
    width:100%;
    max-width:1200px;
}

.service-hero-wrapper{
    min-width:0;
}

.service-hero-content,
.service-body,
.service-sidebar,
.service-cta-inner{
    min-width:0;
}
.service-body{
    overflow-wrap:anywhere;
    word-break:normal;
	width:70%;
}

.service-body img,
.service-body video,
.service-body iframe,
.service-body table{
    max-width:100%;
}

.service-body iframe{
    width:100%;
}

.service-body table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}
.service-details-wrapper{
    display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: start;
}
@media (max-width:1199px){

    .service-hero{
        padding:70px 0;
    }

    .service-hero-content{
        padding:50px;
    }

    .service-hero-content h1{
        font-size:48px;
    }

    .service-intro{
        font-size:19px;
    }

    .service-details-wrapper{
        gap:40px;
    }

    .service-sidebar-card{
        padding:28px;
    }
	    .service-hero-wrapper{
        grid-template-columns:1fr 1fr;
    }
	.service-body{
		width:100%;
	}
}

@media (max-width:1099px){

    .service-hero-wrapper{
        grid-template-columns:1fr 1fr;
    }

    .service-hero-image{
        height:520px;
    }

    .service-hero-content{
        padding:40px;
    }

    .service-hero-content h1{
        font-size:42px;
    }

    .service-details-wrapper{
        grid-template-columns:minmax(0, 1.7fr) minmax(260px, 1fr);
        gap:35px;
    }
		.service-body{
		width:100%;
	}
}

@media (max-width:991px){

    .service-hero{
        padding:50px 0;
    }

    .service-hero-wrapper{
        grid-template-columns:1fr;
		padding:0 10px;
    }

    .service-hero-image{
        height:auto;
        aspect-ratio:16 / 9;
        min-height:0;
        max-height:520px;
    }

    .service-hero-content{
        padding:40px;
    }

    .service-hero-content h1{
        font-size:40px;
    }

    .service-details{
        padding:65px 0;
    }
    .service-sidebar-card{
        position:static;
    }

    .related-services{
        padding:65px 0;
    }

    .service-cta-banner{
        padding:50px 0;
    }

    .service-cta-inner{
        justify-content:center;
        text-align:center;
    }
     .service-details-wrapper {
    flex-direction: column;
    width: 100%;
  }
	.service-body{
		width:100%;
	}
}

@media (max-width:767px){

    .service-hero{
        padding:30px 0;
    }

    .service-hero .container,
    .service-details .container,
    .related-services .container,
    .service-cta-banner .container{
        padding-left:15px;
        padding-right:15px;
    }

    .service-hero-image{
        aspect-ratio:4 / 3;
        max-height:none;
    }

    .service-hero-content{
        padding:28px 22px;
    }

    .service-breadcrumb{
        flex-wrap:wrap;
        row-gap:6px;
        font-size:13px;
    }

    .service-label{
        font-size:16px;
        margin-bottom:18px;
    }

    .service-label::before{
        width:40px;
    }

    .service-hero-content h1{
        font-size:32px;
        line-height:1.3;
        margin-bottom:20px;
    }

    .service-intro{
        font-size:17px;
        line-height:1.9;
    }

    .service-hero-actions{
        flex-direction:column;
        gap:10px;
        margin-top:25px;
    }

    .service-hero-actions .btn{
        width:100%;
    }

    .service-details{
        padding:50px 0;
    }

    .service-body{
        font-size:16px;
        line-height:2;
		width:100%;
    }

    .service-body h2{
        font-size:25px;
        margin-top:30px;
    }

    .service-body h3{
        font-size:21px;
    }

    .service-body ul,
    .service-body ol{
        padding-right:20px;
    }

    .service-sidebar-card{
        padding:25px 20px;
    }

    .service-sidebar-card h3{
        font-size:20px;
    }

    .related-services{
        padding:50px 0;
    }

    .related-services .services-grid{
        grid-template-columns:1fr;
        gap:25px;
        padding:0;
    }

    .related-services .service-image{
        height:auto;
        aspect-ratio:16 / 9;
    }

    .related-services .service-content{
        padding:25px 20px;
    }

    .related-services .service-content h3{
        font-size:23px;
        margin-bottom:14px;
    }

    .service-cta-banner{
        padding:45px 0;
    }

    .service-cta-inner{
        gap:22px;
    }

    .service-cta-inner h2{
        font-size:25px;
        line-height:1.5;
    }

    .service-cta-inner p{
        font-size:15px;
        line-height:1.8;
    }

    .service-cta-inner .btn{
        width:100%;
        max-width:320px;
    }
         .service-details-wrapper {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width:480px){

    .service-hero-content{
        padding:24px 18px;
    }

    .service-hero-content h1{
        font-size:28px;
    }

    .service-intro{
        font-size:16px;
    }

    .service-body{
        font-size:15px;
		width:100%;
    }

    .service-body h2{
        font-size:23px;
    }

    .service-body h3{
        font-size:20px;
    }

    .service-sidebar-card{
        padding:22px 16px;
    }

    .service-sidebar-card .btn{
        font-size:14px;
        padding:12px 15px;
    }

    .service-sidebar-meta li{
        font-size:13px;
        align-items:flex-start;
    }

    .service-cta-inner h2{
        font-size:22px;
    }
    .service-details-wrapper {
    flex-direction: column;
    width: 100%;
  }
}







/* ===========================================================
   Services dropdown - automatically populated from Services CPT
=========================================================== */
nav > ul > li.menu-item-has-children > a {
    padding-left: 2px;
}

nav > ul > li.menu-item-has-children > a::before {
    margin-left: 8px;
    font-size: 11px;
}

nav .sub-menu {
    min-width: 330px;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
}

nav .sub-menu li + li {
    border-top: 1px solid #f0f0f0;
}

nav .sub-menu a {
    padding: 13px 22px;
    line-height: 1.5;
    transition: .2s ease;
}

nav .sub-menu a:hover {
    padding-right: 28px;
    background: #fafafa;
}

@media (max-width: 767px) {
    .mobile-menu .sub-menu li + li {
        border-top: 1px solid #e5e5e5;
    }

    .mobile-menu .sub-menu a {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
