body{
    font-family: 'Inter', sans-serif;
    background:#ffffff;
    color:#111111;
}
*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:'Inter',sans-serif;

background:var(--background);

color:var(--text);

line-height:1.7;

font-size:16px;

overflow-x:hidden;

}

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

height:auto;

}

section{

padding:100px 0;

}

/* ==========================================================
   HEADER
========================================================== */

.eg-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    border-bottom:1px solid #e9ecef;
}

.eg-navbar{
    min-height:80px;
}

.eg-logo img{
    height:52px;
}

.eg-nav{
    gap:12px;
}

.eg-nav .nav-link{
    color:#222;
    font-weight:500;
    padding:12px 16px;
    transition:.3s;
}

.eg-nav .nav-link:hover,
.eg-nav .nav-link.active{
    color:#000;
}

.eg-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#000;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.eg-btn:hover{
    background:#222;
    color:#fff;
}

.eg-menu-btn{
    border:none;
    background:none;
    font-size:24px;
}

.eg-menu-btn:focus{
    box-shadow:none;
}

/*==================================================
    HEADER
==================================================*/

.eg-header{

    position:sticky;

    top:20px;

    z-index:999;

    padding-bottom:20px;

}

.eg-header-wrapper{

    height:var(--eg-header-height);

    display:grid;

    grid-template-columns:auto 1fr auto;

    align-items:center;

    gap:40px;

    padding:0 35px;

    background:var(--eg-header-bg);

    backdrop-filter:blur(var(--eg-header-blur));

    -webkit-backdrop-filter:blur(var(--eg-header-blur));

    border:var(--eg-header-border);

    border-radius:var(--eg-header-radius);

    box-shadow:var(--eg-header-shadow);

    transition:var(--eg-transition);

}

.eg-logo{

    display:flex;

    align-items:center;

}

.eg-logo img{

    display:block;

    height:56px;

    width:auto;

    max-width:240px;

    object-fit:contain;

}

.eg-navigation{

    display:flex;

    justify-content:center;

}

.eg-menu{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

    margin:0;

    padding:0;

}

.eg-menu a{

    position:relative;

    color:var(--eg-text);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:var(--eg-transition);

}

.eg-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#000;

    transition:var(--eg-transition);

}

.eg-menu a:hover::after,

.eg-menu a.active::after{

    width:100%;

}

.eg-menu a:hover{

    color:#000;

}

.eg-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.eg-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    height:var(--eg-btn-height);

    padding:0 28px;

    background:#000;

    color:#fff;

    border-radius:var(--eg-btn-radius);

    text-decoration:none;

    font-weight:600;

    transition:var(--eg-transition);

}

.eg-btn:hover{

    color:#fff;

    transform:translateY(-2px);

    box-shadow:var(--eg-shadow);

}

.eg-mobile-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:var(--eg-shadow);

    cursor:pointer;

}

.eg-mobile-toggle i{

    font-size:20px;

}

/*==================================================
    HEADER SCROLL
==================================================*/

.eg-header{

    transition:all .35s ease;

}

.eg-header.eg-header-scrolled{

    top:12px;

}

.eg-header.eg-header-scrolled .eg-header-wrapper{

    height:78px;

    box-shadow:0 16px 45px rgba(0,0,0,.12);

    background:rgba(255,255,255,.94);

}

.eg-header.eg-header-scrolled .eg-logo img{

    height:50px;

}