:root {

    --brand-color-primary: #0A5CFF;
    --brand-color-secondary: #0F172A;
    --brand-color-cta-accent: #22C55E;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Vazirmatn", serif;
}

html {
    color-scheme: light;
}

body {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.8rem;
}

main {
    width: min(160ch, 100%);
    margin-inline: auto;
    margin-block: 20px;
    padding: 8px;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    text-wrap: balance;
    text-wrap: pretty;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;

}

p {

    text-wrap: pretty;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;

}

img {
    max-width: 100%;
    display: block;

}



.line {
    border-bottom: solid 1px rgba(180, 180, 180, 0.2);
    margin-block: 10px;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: var(--brand-color-primary);
    text-decoration: underline;
    cursor: pointer;
}

select {
    color: lightgray;

}

label {
    color: white;
}

hr {

    border: 1px dashed rgb(240, 240, 240);
    margin-block: 20px;
}





.nav {
    box-shadow: 0px 0px 4px lightgray;
    min-height: 80px;
    display: flex;
    align-items: center;

}

.navinner {
    padding: 1rem;
    width: min(140ch, 100%);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
}

.navinner .left button {
    padding: 10px 16px 8px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    background-color: var(--brand-color-primary);
    color: white;
    box-shadow: 0px 0px 2px var(--brand-color-primary);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    min-height: 45px;
}

.navinner .right {
    display: flex;

    gap: 4rem;




}

.nav-items a {
    color: gray;
    font-size: 15px;
    font-weight: bold;
}

.seprator {
    border: 1px solid rgb(204, 204, 204);
    height: 100%;
}



nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}





.footer {}

.footer>* {
    padding: 12px;
}

.footer .footertop {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}


.footer .footertop {
    border-top: 1px solid lightgray;
    background: linear-gradient(135deg, #f0f0f0, #f7f7f7);
}


.footer .footertop .footertopcol {
    color: rgb(100, 100, 100);
    flex-basis: 33%;
    padding: 1rem;
    line-height: 2rem;
    font-size: 1rem;

}


.footer .footertop .footertopcol a {
    color: rgb(100, 100, 100);
}

.footer .copyright {
    color: gray;
    text-align: center;
}

ul {
    padding: 20px 40px;
}



.logo {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9em;
    color: white;

    padding-top: 1rem;
}

.footerlogocont {
    width: 80px;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
}

.social-media-icons>* {
    max-width: 30px;
}

.footercoverimgcont {
    display: flex;
    justify-content: center;
}

.main {
    min-height: 100svh;
}








@media only screen and (max-width: 768px) {
    nav {
        font-size: 1rem;
    }


    .footer .footertop {
        flex-direction: column;
    }
}