.elementor-888 .elementor-element.elementor-element-e380b1e{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e380b1e *//*=========================================
 SV DIGITAL ADS
 HEADER CSS - PART 1
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#1f2937;
    background:#ffffff;
}

/*==========================
Container
==========================*/

.sv-container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/*==========================
Header
==========================*/

.sv-header{
    position:relative;
    width:100%;
    z-index:9999;
}

/*==========================
Top Bar
==========================*/

.sv-topbar{

    background:#0A66FF;

    color:#fff;

    font-size:13px;

    font-weight:500;

}

.sv-topbar .sv-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:40px;

}

/*==========================
Top Left
==========================*/

.sv-top-left{

    display:flex;

    align-items:center;

    gap:12px;

}

.sv-top-left a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.sv-top-left a:hover{

    opacity:.85;

}

.sv-divider{

    opacity:.5;

}

/*==========================
Top Center
==========================*/

.sv-top-center{

    display:flex;

    align-items:center;

}

.sv-top-center a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.sv-top-center a:hover{

    opacity:.85;

}

/*==========================
Top Right
==========================*/

.sv-top-right{

    display:flex;

    align-items:center;

    gap:14px;

}

.sv-top-right a{

    color:#fff;

    font-size:15px;

    transition:.3s;

}

.sv-top-right a:hover{

    transform:translateY(-2px);

}

/*==========================
Main Header
==========================*/

.sv-main-header{

    background:#fff;

    border-bottom:1px solid #E5E7EB;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.sv-main-header .sv-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:78px;

}

/*==========================
Logo Area
==========================*/

.sv-logo-area{

    display:flex;

    align-items:center;

    gap:15px;

}

.sv-logo img{
    width: 150px;
    height: auto;
}

.sv-logo-area{
    gap: 1px;
}

/*==========================
Brand
==========================*/

.sv-brand h2{

    font-size:24px;

    font-weight:700;

    color:#0F172A;

    line-height:1.1;

}

.sv-brand p{

    font-size:12px;

    color:#6B7280;

    margin-top:5px;

}
/*=========================================
SV DIGITAL ADS
HEADER CSS - PART 2
=========================================*/

/*==========================
Navigation
==========================*/

.sv-navbar{
    display:flex;
    align-items:center;
}

.sv-menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:28px;
}

.sv-menu>li{
    position:relative;
}

.sv-menu>li>a{
    display:flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#1F2937;
    font-size:15px;
    font-weight:600;
    padding:28px 0;
    transition:.35s ease;
}

.sv-menu>li>a:hover{
    color:#0A66FF;
}

.sv-menu>li>a i{
    font-size:11px;
}

/*==========================
Underline Animation
==========================*/

.sv-menu>li>a{
    position:relative;
}

.sv-menu>li>a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:20px;

    width:0;

    height:2px;

    background:#0A66FF;

    transition:.35s ease;

}

.sv-menu>li:hover>a::after{

    width:100%;

}

.sv-menu>li:hover>a{

    color:#0A66FF;

}

/*==========================
Dropdown
==========================*/

.sv-dropdown-menu{

    position:absolute;

    top:100%;

    left:0;

    min-width:280px;

    background:#fff;

    list-style:none;

    padding:10px 0;

    border-radius:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:999;

}

.sv-dropdown:hover>.sv-dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.sv-dropdown-menu li{

    position:relative;

}

.sv-dropdown-menu li a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-decoration:none;

    color:#374151;

    padding:12px 20px;

    font-size:14px;

    font-weight:500;

    transition:.30s;

}

.sv-dropdown-menu li:hover>a{

    background:#F3F8FF;

    color:#0A66FF;

}

/*==========================
Second Level Menu
==========================*/

.sv-submenu{

    position:absolute;

    top:0;

    left:100%;

    min-width:240px;

    background:#fff;

    list-style:none;

    border-radius:12px;

    padding:10px 0;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateX(15px);

    transition:.35s;

}

.sv-sub-dropdown:hover>.sv-submenu{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/*==========================
Active Link
==========================*/

.sv-menu .active>a{

    color:#0A66FF;

}

.sv-menu .active>a::after{

    width:100%;

}
/*=========================================
 SV DIGITAL ADS
 HEADER CSS - PART 3
=========================================*/

/*==========================
Sticky Header
==========================*/

.sv-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:all .35s ease;
}

.sv-header.sticky{

    background:#ffffff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==========================
Glass Effect
==========================*/

.sv-header.glass{

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

}

/*==========================
Mobile Toggle
==========================*/

.sv-menu-toggle{

    display:none;

    width:45px;

    height:45px;

    border:none;

    background:#0A66FF;

    border-radius:8px;

    cursor:pointer;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:5px;

}

.sv-menu-toggle span{

    width:22px;

    height:2px;

    background:#fff;

    transition:.35s;

}

/*==========================
Sticky Animation
==========================*/

@keyframes headerFade{

    from{

        opacity:0;

        transform:translateY(-15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.sv-header.sticky{

    animation:headerFade .35s ease;

}

/*==========================
Tablet
==========================*/

@media(max-width:1024px){

.sv-container{

    padding:0 15px;

}

.sv-menu{

    gap:18px;

}

.sv-brand h2{

    font-size:20px;

}

}

/*==========================
Mobile
==========================*/

@media(max-width:768px){

/* Top Bar */

.sv-topbar{

    display:none;

}

/* Header */

.sv-main-header .sv-container{

    min-height:70px;

}

/* Brand */

.sv-brand{

    display:none;

}

/* Toggle */

.sv-menu-toggle{

    display:flex;

}

/* Menu */

.sv-navbar{

    position:fixed;

    top:70px;

    right:-100%;

    width:300px;

    height:100vh;

    background:#ffffff;

    transition:.35s;

    box-shadow:-15px 0 40px rgba(0,0,0,.12);

    overflow:auto;

}

.sv-navbar.active{

    right:0;

}

.sv-menu{

    flex-direction:column;

    align-items:flex-start;

    padding:30px;

    gap:0;

    width:100%;

}

.sv-menu li{

    width:100%;

}

.sv-menu li a{

    width:100%;

    padding:15px 0;

    border-bottom:1px solid #eeeeee;

}

/* Dropdown */

.sv-dropdown-menu{

    position:static;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    box-shadow:none;

    border-radius:0;

    min-width:100%;

    padding-left:15px;

}

.sv-dropdown.active>.sv-dropdown-menu{

    display:block;

}

.sv-submenu{

    position:static;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    box-shadow:none;

    padding-left:15px;

}

.sv-sub-dropdown.active>.sv-submenu{

    display:block;

}

}/* End custom CSS */