/**
 * FILE: /home2/albassa2/public_html/albassami_v2/website/includes/header/css/header_css.css
 * VERSION: v3.1-global-header-stable-shared
 */

:root{
    --abv-wine:#C60D18;
    --abv-wine-dark:#A30B14;
    --abv-gold:#C9963A;
    --abv-bg:#FAFAFA;
    --abv-surface:#FFFFFF;
    --abv-border:rgba(0,0,0,.08);
    --abv-text:#171717;
    --abv-muted:rgba(23,23,23,.62);
    --abv-shadow:0 10px 30px rgba(0,0,0,.06);
}

html,
body{
    margin:0;
    padding:0;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

.abv-body{
    font-family:'Cairo', sans-serif;
    background:var(--abv-bg);
    color:var(--abv-text);
    min-height:100vh;
    overflow-x:hidden;
    transition:background .22s ease,color .22s ease;
}

body[data-theme="dark"].abv-body{
    --abv-bg:#070707;
    --abv-surface:#111111;
    --abv-border:rgba(255,255,255,.08);
    --abv-text:#F3F3F3;
    --abv-muted:rgba(243,243,243,.62);
    --abv-shadow:0 12px 32px rgba(0,0,0,.28);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.abv-container{
    width:min(1200px, calc(100% - 32px));
    margin:0 auto;
}

.abv-page-shell{
    padding-top:82px;
    min-height:100vh;
}

@media (max-width:700px){
    .abv-container{
        width:min(1200px, calc(100% - 24px));
    }

    .abv-page-shell{
        padding-top:76px;
    }
}

