@font-face{
    font-family:'Vazirmatn';
    src:url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight:400;
    font-style:normal;
}

@font-face{
    font-family:'Vazirmatn';
    src:url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight:500;
    font-style:normal;
}

@font-face{
    font-family:'Vazirmatn';
    src:url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight:700;
    font-style:normal;
}



:root{

--bg:#07111d;
--bg2:#0d1b2d;
--card:#13263b;
--card-hover:#17324d;

--primary:#00d4ff;
--secondary:#3f8cff;

--white:#ffffff;
--text:#c8d4df;

--radius:22px;

--shadow:0 18px 50px rgba(0,0,0,.28);

--transition:.35s;

--container:1280px;

}
*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{
    background: var(--bg);
    color: var(--white);
    font-family: 'Vazirmatn', sans-serif;
    overflow-x: hidden;
}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.nx-container{

width:min(var(--container),92%);

margin:auto;

}


