:root {
    /* Colors */
    --primary-color: #d21a1a;
    --white: white;
    --black: black;
    --gray: #f2f2f2;
    --mid-gray: #646464;
    --light-gray: #d6d6d6;
    --dark-gray: #888888;
    --border-color: #e5e5e5;
    --heading-color: var(--black);
    --link-color: var(--mid-gray);
    --link-hover-color: var(--primary-color);
    --background-color: var(--white);
    /* Typography */
    --font-family: 'IRANSans';
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --h5-size: 1.125rem;
    --h6-size: 1rem;
    --p-size: 0.9rem;
    --font-weight-ultralight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --small-size: 0.8rem;
    --extra-small-size: 0.6rem;
    --line-height: 1.8;
    /* UI & Effects */
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
}

body {
    font-family: var(--font-family), sans-serif;
    background-color: var(--background-color);
    color: var(--black);
    font-size: var(--p-size);
    line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight-bold);
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

p {
    font-size: var(--p-size);
}

ol,
ul {
    box-sizing: border-box;
    font-size: var(--p-size);
}

a {
    position: relative;
    color: var(--link-color);
    text-decoration: none;
    transition: all var(--transition);
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.section {
    padding: 2em 0;
    position: relative;
    overflow-x: hidden;
}

/* start header styles */
.header {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.header .header-wrapper {
    padding: 1em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-logo {
    width: 120px;
    height: 50px;
}

.header .header-logo .header-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.header .header-logo .header-logo-link:after {
    display: none;
}

.header .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
}

.header .main-nav {
    position: relative;
}

.header .main-menu {
    display: flex;
    align-items: center;
    gap: 2em;
    list-style: none;
}

.header .main-menu .menu-item {
    position: relative;
}

.header .main-menu .menu-item .menu-item-link {
    gap: 0.5em;
    display: flex;
    color: var(--black);
    align-items: center;
    text-decoration: none;
    transition: all var(--transition);
}

.header .main-menu .menu-item .menu-item-link:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5px;
    opacity: 0;
    transform: translateY(-200%);
    transition: all var(--transition);
    background-color: var(--primary-color);
}

.header .main-menu .menu-item .menu-item-link:hover {
    color: var(--primary-color);
}

.header .main-menu .menu-item .menu-item-link:hover:after {
    transform: translateY(0);
    opacity: 1;
}

.header .main-menu .menu-item .menu-item-icon {
    width: 13px;
    height: 13px;
}

.header .main-menu .menu-item .menu-item-icon {
    width: 13px;
    height: 13px;
}

.header .main-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    min-width: 150px;
    margin-top: 0.5em;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0.75em 1em;
    border-radius: 0.5em;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 1px 1px 8px #00000012;
    gap: 0.5em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20%);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.header .main-menu .sub-menu:before {
    content: '';
    position: absolute;
    right: 0;
    top: -20px;
    width: 100%;
    height: 25px;
}

.header .main-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header .main-menu .sub-menu .sub-menu-item {
    position: relative;
}

.header .main-menu .sub-menu .sub-menu-item .sub-menu-item-link {
    color: var(--black);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.8rem;
}

.header .main-menu .sub-menu .sub-menu-item .sub-menu-item-link:hover {
    color: var(--primary-color);
}

.header .main-menu .sub-menu .sub-menu-item .sub-menu-item-link:after {
    display: none;
}

.mobile-nav-wrapper,
.mobile-bg {
    display: none;
}

.header .header-search {
    width: 200px;
    height: 40px;
}

.header .header-search .search-form {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    border: 1px solid var(--border-color);
    background-color: #f6f6f6;
}

.header .header-search .search-form .search-submit {
    position: absolute;
    left: 0.4em;
    width: 20%;
    height: 70%;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    z-index: 2;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    transition: all var(--transition);
}

.header .header-search .search-form .search-submit:hover {
    background-color: #b01515;
}

.header .header-search .search-form .search-submit .search-submit-icon {
    width: 15px;
    height: 15px;
}

.header .header-search .search-form label {
    width: 100%;
    height: 100%;
}

.header .header-search .search-form .search-field {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: transparent;
    font-size: var(--small-size);
}

.menu-toggle {
    display: none;
}

/* end header styles */
/* start post styles */
/* ---- General ---- */
.post .post-meta {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.post .post-meta svg {
    width: 22px;
    padding: 0.35em;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0.5em;
}

.post .post-title-link:after {
    display: none;
}

.post .post-excerpt {
    color: var(--light-gray);
    font-size: var(--small-size);
}

/* ---- General ---- */
/* ---- overlay ---- */
.post-overlay-card {
    position: relative;
    width: 100%;
    height: 490px;
}

.post-overlay-card .post-overlay-figure {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.post-overlay-card .post-overlay-figure:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0000003d;
}

.post-overlay-card .post-overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay-card .post-overlay-content {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.post-overlay-card .post-overlay-content .post-meta {
    color: var(--white);
    font-size: 0.7rem;
}

.post-overlay-card .post-overlay-content .post-meta svg {
    width: 18px;
}

.post-overlay-card .post-overlay-content .post-overlay-link {
    color: var(--white);
}

.post-overlay-card .post-overlay-content .post-overlay-title {
    font-size: 1.2rem;
}

/* ---- overlay ---- */
/* ---- simple ---- */
.post-simple-card {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    border-bottom: 1px solid var(--border-color);
    padding: 1em 0;
}

.post-simple-card .post-simple-category {
    font-size: 0.7rem;
}

.post-simple-card .post-simple-category svg {
    width: 18px;
}

.post-simple-card .post-title-link {
    color: var(--black);
}

.post-simple-card .post-simple-title {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.post-simple-card .post-simple-excerpt {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

/* ---- simple ---- */
/* ---- compact ---- */
.post-compact-card {
    display: flex;
    align-items: center;
    gap: 1em;
}

.post-compact-card .post-compact-figure {
    width: 25%;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.post-compact-card .post-compact-figure .post-compact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-compact-card .post-compact-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.post-compact-card .post-compact-content .post-meta {
    font-size: 0.7rem;
}

.post-compact-card .post-compact-content .post-meta svg {
    width: 18px;
}

.post-compact-card .post-compact-content .post-title-link {
    color: var(--black);
}

.post-compact-card .post-compact-content .post-compact-title {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

/* ---- compact ---- */
/* ---- compact pro ---- */
.post-compact-pro-card .post-compact-content .post-compact-title {
    font-size: 1.2rem;
}

.post-compact-pro-card .post-compact-content .post-excerpt {
    color: var(--dark-gray);
}

/* ---- compact pro ---- */
/* ---- classic ---- */
.post-classic-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.post-classic-card .post-classic-link {
    display: block;
    color: var(--black);
}

.post-classic-card .post-classic-link .post-classic-figure {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.post-classic-card .post-classic-link .post-classic-figure .post-classic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-classic-card .post-classic-content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.post-classic-card .post-classic-content .post-meta {
    font-size: 0.7rem;
}

.post-classic-card .post-classic-content .post-meta svg {
    width: 18px;
}

.post-classic-card .post-classic-title {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.post-classic-card .post-excerpt {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

/* ---- classic ---- */
/* end post styles */
/* start layout styles */
.grid {
    display: grid;
    gap: 2em;
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.grid-col.grid-col-2-span {
    grid-column: span 2 / span 2;
}

/* end layout styles */
/* start footer styles */
/* start footer styles */
.footer {
    position: relative;
    margin-top: 4em;
    color: var(--white);
    background-color: #232323;
}

.footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.footer .footer-wrapper .footer-top {
    padding: 4em 0;
    background-color: #383838;
}

.footer .footer-wrapper .footer-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footer-last-post {
    display: flex;
    gap: 1em;
    flex-direction: column;
    width: 70%;
}

.footer .footer-last-post .footer-last-post-title {
    font-size: var(--h3-size);
    white-space: nowrap;
}

.footer .footer-last-post .footer-last-post-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
}

.footer .footer-last-post .footer-last-post-item {
    padding: 0.5em 1em;
    background-color: #232323;
    border-radius: 0.5rem;
}

.footer .footer-last-post .footer-last-post-item .footer-last-post-link {
    color: var(--white);
}

.footer .footer-last-post .footer-last-post-item-title {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 400;
}

.footer .footer-last-post .footer-last-post-item-title .bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.footer .footer-search {
    width: 250px;
    height: 50px;
}

.footer .footer-search .search-form {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    background-color: #232323;
}

.footer .footer-search .search-form label {
    width: 100%;
    height: 100%;
}

.footer .footer-search .search-form .search-field {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: transparent;
    font-size: var(--small-size);
    color: var(--white);
}

.footer .footer-search .search-form .search-submit {
    position: absolute;
    left: 0.6em;
    width: 20%;
    height: 65%;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    z-index: 2;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    transition: all var(--transition);
}

.footer .footer-search .search-form .search-submit-icon {
    width: 15px;
    height: 15px;
}

.footer .footer-main {}

.footer .footer-main-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em;
}

.footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.footer .footer-brand .footer-logo {
    width: 150px;
    height: 70px;
}

.footer .footer-brand .footer-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.footer .footer-brand .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.footer .footer-links h3 {
    font-size: var(--h4-size);
}

.footer .footer-nav {}

.footer .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.footer .footer-menu .menu-item {}

.footer .footer-menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 0.75em;
    color: var(--white);
}

.footer .footer-menu .menu-item .footer-contact-icon {
    object-fit: contain;
    width: 24px;
    height: 25px;
    padding: 0.35em;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0.5em;
}

.footer .footer-bottom {
    padding: 1em 0;
    background-color: #383838;
}

.footer .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footer-bottom-wrapper a {
    color: var(--primary-color)
}

/* end footer styles */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 992px;
    }

    /* start header styles */
    .header .header-logo {
        width: 100px;
        height: 45px;
    }

    .header .main-menu {
        gap: 1.5em;
    }

    .header .main-menu .menu-item .menu-item-link {
        font-size: 0.8rem;
    }

    .header .header-search {
        width: 160px;
        height: 35px;
    }

    .header .header-search .search-form {
        padding: 0.25em 1em;
    }

    /* end header styles */
}

@media (max-width: 992px) {
    :root {
        --h1-size: 1.75rem;
        --h2-size: 1.5rem;
        --h3-size: 1.375rem;
        --h4-size: 1.125rem;
        --h5-size: 1rem;
        --h6-size: 0.875rem;
    }

    .container {
        max-width: 880px;
    }

    /* start header styles */
    .header .main-nav,
    .header .header-search {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.75em;
        background: transparent;
        border: none;
        padding: 0;
    }

    .menu-toggle .menu-toggle-icon {
        width: 35px;
        height: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-toggle .menu-toggle-icon span {
        width: 100%;
        height: 1px;
        background-color: var(--black);
    }

    .mobile-bg {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        backdrop-filter: blur(10px);
        background-color: #00000047;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--transition) ease;
    }

    .mobile-bg.active {
        opacity: 1;
        visibility: visible;
        pointer-events: unset;
    }

    .mobile-nav-wrapper {
        position: fixed;
        right: 0;
        top: 0;
        width: 40%;
        z-index: 2;
        height: 100%;
        background-color: #fff;
        padding: 2em;
        box-shadow: -2px 0 10px #0000001f;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-wrapper.active {
        transform: translateX(0%);
        visibility: visible;
    }

    .mobile-nav-wrapper .mobile-nav {
        position: relative;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        list-style: none;

    }

    .mobile-menu .mobile-menu-item {
        position: relative;
        display: flex;
        flex-direction: column;
        font-size: 0.9rem;
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-link {
        display: flex;
        font-size: 0.8rem;
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75em 1em;
        border-bottom: 1px solid var(--border-color);
        transition: all var(--transition);
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-inner.active {
        background-color: var(--gray);
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-button {
        aspect-ratio: 1 / 1;
        border-right: 1px solid var(--border-color);
        border-left: 1px solid var(--border-color);
        border-top: none;
        border-bottom: none;
        background-color: transparent;
        position: absolute;
        left: 0;
        top: 0;
        padding: 0;
        height: 100%;
        max-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-icon {
        width: 15px;
        transition: all var(--transition);
    }

    .mobile-menu .mobile-menu-item .mobile-menu-item-button.active .mobile-menu-item-icon {
        transform: rotate(90deg);
    }

    .mobile-menu .mobile-sub-menu {
        display: none;
        flex-direction: column;
        list-style: none;
    }

    .mobile-menu .mobile-sub-menu.active {
        display: flex;
    }

    .mobile-menu .mobile-sub-menu .mobile-sub-menu-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75em 1em;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.8rem;
    }

    .mobile-search {
        width: 100%;
        height: 50px;
    }

    .mobile-search .search-form {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0.5em 1em;
        border: 1px solid var(--border-color);
        background-color: #f6f6f6;
    }

    .mobile-search .search-form .search-submit {
        aspect-ratio: 1 / 1;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 0;
        margin: 0;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        cursor: pointer;
        background-color: transparent;
        color: #000;
        transition: all var(--transition);
    }

    .mobile-search .search-form .search-submit:hover {
        background-color: #b01515;
    }

    .mobile-search .search-form .search-submit .search-submit-icon {
        width: 15px;
        height: 15px;
    }

    .mobile-search .search-form label {
        width: 100%;
        height: 100%;
    }

    .mobile-search .search-form .search-field {
        border: none;
        outline: none;
        width: 90%;
        height: 100%;
        padding: 0;
        background-color: transparent;
        font-size: var(--small-size);
    }

    /* end header styles */
    .grid-3-col {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid {
        gap: 4em;
    }

    .grid-col.grid-col-2-span {
        grid-column: span 1;
    }

    .footer .footer-wrapper .footer-top-wrapper {
        gap: 1em;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    /* start header styles */
    .mobile-nav-wrapper {
        width: 50%;
    }

    /* end header styles */
    /* start footer styles */
    .footer .footer-main-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .footer-brand {
        grid-column: span 2;
    }

    /* end footer styles */
}

@media (max-width: 600px) {
    .container {
        max-width: 540px;
    }

    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.375rem;
        --h3-size: 1.25rem;
        --h4-size: 1rem;
        --h5-size: 0.875rem;
        --h6-size: 0.75rem;
    }

    /* start header styles */
    .mobile-nav-wrapper {
        width: 75%;
    }

    /* end header styles */
    /* ----start overlay ---- */
    .post-overlay-card {
        height: 100%;
    }

    /* ----end overlay ---- */
    .post .post-excerpt {
        font-size: .6rem;
    }

    .post-overlay-card .post-overlay-content .post-overlay-title {
        font-size: .9rem;
    }

    .post-overlay-card .post-overlay-content {
        gap: 0;
    }

    .post-compact-card .post-compact-content .post-compact-title {
        font-size: 0.6rem;
    }

    .post-compact-card .post-compact-content .post-meta {
        font-size: 0.5rem;
    }

    .post-classic-card .post-classic-content .post-meta {
        font-size: 0.5rem;
    }

    .post-compact-card .post-compact-figure {
        width: 20%;
    }

    .post-compact-pro-card .post-compact-figure {
        width: 40%;
    }

    .post-compact-card {
        gap: .5em;
    }

    .post-classic-card .post-classic-title {
        font-size: 0.65rem;
    }

    .post-simple-card .post-simple-title {
        font-size: 0.7rem;
    }

    .post-simple-card .post-simple-category {
        font-size: 0.6rem;
    }

    .post-simple-card {
        padding: 0;
        border: none;
    }

}

@media (max-width: 480px) {


    /* start footer style */
    .footer .footer-wrapper .footer-top-wrapper {
        flex-flow: column;
        display: flex;
        align-items: flex-start;
    }

    .footer .footer-last-post .footer-last-post-item-title {
        font-size: 0.7rem;
    }

    .footer .footer-menu .menu-item a {
        display: block;
    }

    .footer-copyright,
    .footer-design {
        font-size: .6rem;
    }

    /* end footer style */
}

@media (max-width: 425px) {
    .container {
        max-width: 400px;
    }
}

@media (max-width: 375px) {
    .container {
        max-width: 350px;
    }
}

@media (max-width: 320px) {
    .container {
        max-width: 300px;
    }
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/IRANSansWeb_UltraLight_FaNum.eot');
    src: url('../fonts/IRANSansWeb_UltraLight_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_UltraLight_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_UltraLight_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_UltraLight_FaNum.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/IRANSansWeb_Light_FaNum.eot');
    src: url('../fonts/IRANSansWeb_Light_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_Light_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_Light_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_Light_FaNum.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/IRANSansWeb_FaNum.eot');
    src: url('../fonts/IRANSansWeb_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_FaNum.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/IRANSansWeb_Medium_FaNum.eot');
    src: url('../fonts/IRANSansWeb_Medium_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_Medium_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_Medium_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_Medium_FaNum.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/IRANSansWeb_Bold_FaNum.eot');
    src: url('../fonts/IRANSansWeb_Bold_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_Bold_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_Bold_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_Bold_FaNum.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/IRANSansWeb_Black_FaNum.eot');
    src: url('../fonts/IRANSansWeb_Black_FaNum.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_Black_FaNum.woff2') format('woff2'),
        url('../fonts/IRANSansWeb_Black_FaNum.woff') format('woff'),
        url('../fonts/IRANSansWeb_Black_FaNum.ttf') format('truetype');
}