@charset "UTF-8";

@keyframes shake {

    0%,
    to {
        transform: translateX(0)
    }

    20%,
    60% {
        transform: translateX(5px)
    }

    40%,
    80% {
        transform: translateX(-5px)
    }
}

@keyframes wave {
    0% {
        transform: scale(1) rotate(-3deg)
    }

    20% {
        transform: scale(1.07, .93) rotate(2deg)
    }

    40% {
        transform: scale(.96, 1.08) rotate(-3deg)
    }

    60% {
        transform: scale(1.06, .95) rotate(2deg)
    }

    80% {
        transform: scale(1.01) rotate(-2deg)
    }

    to {
        transform: scale(1) rotate(0)
    }
}

@keyframes blink {

    0%,
    to {
        opacity: 1
    }

    90% {
        opacity: .75
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

:root {
    --color-foreground: #152035;
    --color-background: #fff6ef;
    --color-primary: #f08e80;
    --color-primary-strong: #eb6552;
    --color-primary-soft: #ed7a69;
    --color-highlight: #ef8677;
    --color-success: #4caf50;
    --color-error: #f44336;
    --color-warning: #ff9800;
    --color-foreground-secondary: rgba(21, 32, 53, 0.7);
    --color-shadow: rgba(22, 28, 45, 0.1)
}

:root,
body {
    direction: rtl
}

.h1,
h1 {
    font-size: 40px
}

@media (max-width:1200px) {

    .h1,
    h1 {
        font-size: 36px
    }
}

@media (max-width:992px) {

    .h1,
    h1 {
        font-size: 32px
    }
}

@media (max-width:768px) {

    .h1,
    h1 {
        font-size: 28px
    }
}

.h2,
h2 {
    font-size: 32px
}

@media (max-width:992px) {

    .h2,
    h2 {
        font-size: 28px
    }
}

@media (max-width:768px) {

    .h2,
    h2 {
        font-size: 24px
    }
}

.h3,
h3 {
    font-size: 26px
}

@media (max-width:992px) {

    .h3,
    h3 {
        font-size: 22px
    }
}

@media (max-width:768px) {

    .h3,
    h3 {
        font-size: 20px
    }
}

.h4,
h4 {
    font-size: 22px
}

@media (max-width:768px) {

    .h4,
    h4 {
        font-size: 18px
    }
}

.h5,
h5 {
    font-size: 18px
}

.h6,
h6 {
    font-size: 16px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    font-family: "Vazirmatn RD", sans-serif;
    color: var(--color-foreground)
}

:focus,
a:focus,
button:focus {
    outline: 0
}

a {
    transition: all .3s;
    text-decoration: none
}

a,
a:hover {
    color: #000
}

li,
ul {
    padding: 0;
    margin: 0;
    list-style-position: inside
}

body {
    color: #505050;
    background-color: var(--color-background);
    font-size: 16px;
    line-height: 1.65;
    text-align: right;
    font-family: "Vazirmatn RD", sans-serif;
    -webkit-font-feature-settings: "ss01";
    -moz-font-feature-settings: "ss01";
    font-feature-settings: "ss01"
}

@media (max-width:767px) {
    body {
        font-size: 15px
    }
}

p {
    line-height: 1.8
}

::selection {
    color: #fff;
    background-color: var(--color-primary-soft);
    text-shadow: none
}

.section {
    padding: 60px 0
}

@media (max-width:767px) {
    .section {
        padding: 100px 0
    }
}

.section-sm {
    padding: 90px 0
}

@media (max-width:767px) {
    .section-sm {
        padding: 80px 0
    }
}

.section-title {
    position: relative;
    margin-bottom: 80px
}

@media (max-width:767px) {
    .section-title {
        margin-bottom: 55px
    }
}

.section-title span {
    background-image: url("data:image/svg+xml,%3Csvg width='298' height='32' viewBox='0 0 298 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 17.1944C62.6418 7.28318 174.478 -8.49028 296 27' stroke='%23F6BFB3' stroke-width='9'/%3E%3C/svg%3E%0A");
    background-size: 260px;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0 12px
}

@media (max-width:767px) {
    .section-title span {
        background-size: 180px
    }
}

.btn {
    padding: 11px 28px;
    color: #fff;
    border: 0;
    transition: .2s ease-out;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media (max-width:767px) {
    .btn {
        font-size: 15px;
        padding: 11px 22px
    }
}

.btn:active,
.btn:focus {
    border: 0;
    box-shadow: none !important
}

.btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.btn.btn-sm {
    padding: 10px 18px
}

.btn.btn-lg {
    padding: 14px 34px
}

@media (max-width:1199px) {
    .btn.btn-lg {
        padding: 12px 28px
    }
}

.btn.btn-primary {
    background-color: var(--color-primary) !important;
    border: 2px solid var(--color-primary)
}

.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: var(--color-foreground) !important;
    color: #fff;
    border-color: var(--color-foreground)
}

.btn.btn-outline-primary {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: transparent !important
}

.btn.btn-outline-primary::after {
    background-color: var(--color-primary) !important
}

.btn.btn-outline-primary:active,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--color-primary) !important
}

.btn i {
    transform: translateY(1px);
    display: inline-block
}

.social-links a,
.social-share li {
    font-size: 18px;
    padding: 7px;
    color: rgba(0, 0, 0, .8);
    display: inline-block
}

.social-links a:hover,
button.input-group-text:hover {
    color: var(--color-primary)
}

.social-share li {
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.social-share li:hover {
    color: #fff;
    background-color: var(--color-primary)
}

.social-links.icon-box li a,
.social-share.icon-box li {
    height: 42px;
    width: 42px;
    line-height: 42px;
    border: 1px solid #ddd;
    padding: 0
}

.social-share.icon-box li:hover {
    border-color: var(--color-primary)
}

.is-hoverable:hover {
    opacity: .75
}

.content * {
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 25px
}

.archive-block h2:first-child,
.content :first-child {
    margin-top: 0
}

.content :last-child {
    margin-bottom: 0 !important
}

.content .lightense-wrap,
.search-block .card-meta-tag ul {
    margin-bottom: 0 !important
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-top: 35px
}

.breadcrumb-menu span:hover,
.content a {
    text-decoration: underline
}

.content a:hover {
    color: #000
}

.content a:not(.btn):hover {
    opacity: .75
}

.content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 20px
}

.content figure img {
    margin-bottom: 10px
}

.content figure figcaption {
    text-align: center
}

.content .gallery {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-content: center;
    grid-gap: 20px
}

@media (max-width:991px) {
    .content .gallery {
        grid-template-columns: repeat(2, auto)
    }
}

.content .gallery * {
    margin-bottom: 0
}

.content ol li,
.content ul li {
    margin-bottom: 10px !important
}

.content ol,
.content ul {
    padding-right: 0
}

.content ul {
    margin-bottom: 20px;
    list-style-type: none
}

.content ul li {
    padding-right: 22px;
    position: relative
}

.content ul li::after,
.content ul li::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    right: 7px;
    top: 11px
}

.content ul li::before {
    height: 12px;
    width: 12px;
    background: rgba(240, 142, 128, .5);
    right: 3px;
    top: 7px
}

.content table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    background-color: #fff
}

.content table>:not(:first-child) {
    border-top: 2px solid #ddd
}

.content table,
.content tbody,
.content td,
.content tfoot,
.content th,
.content thead,
.content tr {
    word-break: initial
}

.content table td,
.content table th {
    padding: .6rem 1.2rem;
    vertical-align: top;
    margin-bottom: 0;
    border-right: 1px solid #ddd
}

.content tr:not(:last-child) {
    border-bottom: 1px solid #ddd
}

.content th {
    font-weight: 600
}

.content tbody,
.content thead {
    margin-bottom: 0
}

.content thead tr {
    border-bottom: 1px solid #ddd
}

.content tbody {
    background: #fff
}

.content pre {
    display: block;
    padding: 20px 25px;
    margin: 10px 0;
    white-space: pre-wrap;
    border: 1px solid #e9e9e9
}

.content code {
    margin-bottom: 0 !important;
    font-size: 100%
}

.pagination {
    padding: 8px 1px
}

.pagination .page-item {
    margin: 0 3px
}

.pagination .page-link {
    padding: 0;
    color: var(--color-foreground);
    border: 0;
    margin: 0 4px;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center
}

.pagination .page-link.active,
.pagination .page-link:focus,
.pagination .page-link:hover {
    box-shadow: none;
    color: #fff;
    background-color: var(--color-primary)
}

.pagination .page-link.arrow {
    font-size: 26px;
    width: auto
}

.pagination .page-link.arrow:hover {
    color: var(--color-primary);
    background-color: #fff
}

.pagination .page-item.active .page-link {
    box-shadow: none;
    color: #fff;
    background-color: var(--color-primary)
}

.pagination li.active .page-link {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    border: 1px solid var(--color-primary);
    box-shadow: none
}

.breadcrumb-menu {
    display: inline-block;
    margin-top: 10px
}

.breadcrumb-menu li:last-child a {
    opacity: .7;
    pointer-events: none
}

.form-control {
    border: 1px solid #ddd;
    transition: .3s ease;
    padding: 12px 16px
}

.form-control:not(textarea) {
    height: 50px
}

.form-control:focus {
    box-shadow: none;
    color: var(--color-foreground)
}

.form-control:focus,
.form-control:focus~.input-group-append .input-group-text {
    border-color: var(--color-primary)
}

textarea {
    resize: none
}

.input-group-text {
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    border-radius: 0 !important;
    transition: .3s ease
}

.input-group-text .icon {
    font-size: 22px
}

.font-primary,
.font-secondary {
    font-family: "Vazirmatn RD", sans-serif
}

.btn,
.card-meta .card-meta-author img,
.card.post-card .post-image::before,
.content img,
.content pre,
.form-control,
.newsletter-block .input-group-text,
.post-meta-tag a,
.rounded,
.search-results::-webkit-scrollbar-thumb,
.search-results::-webkit-scrollbar-track,
.search-toggle,
.social-share li,
footer .icon-box a,
header .dropdown-item,
header .nav-item .nav-link {
    border-radius: 4px !important
}

.text-primary {
    color: var(--color-primary) !important
}

a.text-primary:hover {
    color: var(--color-primary-strong) !important
}

.bg-primary {
    background-color: var(--color-primary) !important
}

.newsletter-block button.input-group-text,
.text-dark {
    color: var(--color-foreground)
}

.card-meta .card-meta-author:hover span,
a.text-dark:hover,
header .nav-item.active .nav-link {
    color: var(--color-primary) !important
}

.bg-light {
    background-color: #fafafa !important
}

.bg-dark {
    background-color: var(--color-foreground) !important
}

.card.post-card .card-body a:hover .post-title,
.text-gray:hover {
    color: var(--color-primary)
}

footer {
    background: #fff;
    background: linear-gradient(-180deg, var(--color-background)0, #fff 55%)
}

.copyright-text,
.copyright-text a,
.footer-menu li a,
footer .icon-box a {
    color: var(--color-foreground-secondary)
}

footer .icon-box a:hover {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

footer .section-title {
    margin-top: -7px
}

@media (max-width:767px) {
    footer .section-title {
        margin-top: -3px
    }
}

.footer-menu li,
header .nav-item.dropdown .nav-link {
    position: relative
}

.footer-menu li::after {
    content: "|";
    margin-left: 15px;
    margin-right: 18px
}

.footer-menu li:last-child::after {
    display: none
}

.footer-menu li a:hover {
    color: var(--color-primary);
    text-decoration: underline
}

h1.page-not-found-title {
    font-size: 120px;
    font-weight: bolder;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0-6px 0#212121, 0-6px 0#212121, 0 6px 0#212121, 0 6px 0#212121, 6px 0 0#212121, -6px 0 0#212121, 6px 0 0#212121, -6px 0 0#212121, 6px -6px 0#212121, -6px -6px 0#212121, 6px 6px 0#212121, -6px 6px 0#212121, 6px 18px 0#212121, 0 18px 0#212121, -6px 18px 0#212121, 0 19px 1px rgba(0, 0, 0, .1), 0 0 6px rgba(0, 0, 0, .1), 0 6px 3px rgba(0, 0, 0, .3), 0 12px 6px rgba(0, 0, 0, .2), 0 18px 18px rgba(0, 0, 0, .25), 0 24px 24px rgba(0, 0, 0, .2), 0 36px 36px rgba(0, 0, 0, .15)
}

.header-height-fix {
    height: 110px
}

@media (max-width:767px) {
    .header-height-fix {
        height: 90px
    }
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-background);
    padding: 50px 0 20px;
    transition: .4s cubic-bezier(.2, 1, .2, 1);
    background-color: rgba(255, 246, 239, .9);
    backdrop-filter: blur(16px)
}

@media (max-width:767px) {
    header {
        padding: 30px 0
    }
}

header.header-nav-unpinned {
    transform: translateY(-100%)
}

header.header-sticky-top {
    box-shadow: 0 0 50px -30px rgba(240, 142, 128, .5);
    padding: 20px 0
}

header .nav-item.dropdown .nav-link::after {
    position: absolute;
    left: 18px;
    top: calc(50% - 7px);
    display: inline-block;
    vertical-align: .255em;
    content: "";
    height: 9px;
    width: 9px;
    border: 2px solid;
    border-right: 0;
    border-top: 0;
    border-color: inherit;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: 0s
}

@media (max-width:991px) {
    header .nav-item.dropdown .nav-link::after {
        position: static;
        margin-right: 8px;
        vertical-align: .18em
    }
}

header .nav-item .nav-link {
    color: var(--color-foreground) !important;
    padding: 10px 20px !important
}

header .nav-item:hover .nav-link {
    background-color: rgba(240, 142, 128, .1);
    color: var(--color-foreground) !important
}

@media (min-width:991px) {
    header .nav-item.dropdown .nav-link.dropdown-toggle {
        padding-left: 35px !important
    }

    header .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        width: 220px;
        transition: .2s;
        right: 50%;
        transform: translate(50%, 5px)
    }

    header .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        box-shadow: 0 10px 30px var(--color-shadow);
        transform: translate(50%, -5px)
    }
}

header .dropdown-menu {
    border: 0;
    padding: 12px 8px;
    margin-top: 7px
}

header .dropdown-menu[data-bs-popper] {
    right: 50%;
    margin-top: 7px
}

header .dropdown-item {
    font-size: 16px;
    padding: 7px 14px
}

header .dropdown-item.active,
header .dropdown-item:active {
    color: var(--color-primary);
    background-color: transparent
}

header .dropdown-item:focus,
header .dropdown-item:hover {
    color: var(--color-primary);
    background-color: rgba(240, 142, 128, .1)
}

header .navbar-light .navbar-toggler {
    border-color: transparent;
    padding: 0;
    font-size: 38px;
    color: var(--color-foreground);
    transition: .3s ease
}

header .navbar-light .navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border: 0 !important
}

.navbar-toggler .menu-close,
.navbar-toggler .menu-open {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    font-size: 38px
}

.navbar-toggler.collapsed .menu-open {
    opacity: 1;
    transform: translate(50%, -50%) rotate(0)
}

.navbar-toggler.collapsed .menu-close {
    opacity: 0;
    transform: translate(50%, -50%) rotate(90deg)
}

.navbar-toggler:not(.collapsed) .menu-open {
    opacity: 0;
    transform: translate(50%, -50%) rotate(-90deg)
}

.navbar-toggler:not(.collapsed) .menu-close {
    opacity: 1;
    transform: translate(50%, -50%) rotate(0)
}

@media (max-width:991px) {
    header .navbar-nav {
        max-width: 300px;
        text-align: center;
        padding-top: 20px
    }

    header .navbar-right {
        text-align: center;
        margin-top: 20px;
        padding-bottom: 30px
    }

    header .dropdown-menu {
        padding: 5px;
        text-align: center;
        background: rgba(240, 142, 128, .05)
    }

    header .nav-item .nav-link {
        padding: 7px 20px !important
    }
}

.search-toggle {
    background-color: transparent;
    border: 0;
    transition: .3s ease;
    padding: 0 20px 0 15px;
    height: 42px
}

.card-meta>li,
.search-toggle span {
    vertical-align: middle
}

@media (max-width:575px) {
    .search-toggle span {
        display: none
    }

    .search-toggle {
        padding: 0 15px
    }

    .search-toggle svg {
        height: 30px;
        width: 30px
    }
}

.search-toggle:hover {
    background-color: rgba(240, 142, 128, .1);
    color: var(--color-foreground)
}

.banner .wave {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
    opacity: .13
}

.image-grid-2 img {
    margin-top: 50px
}

@media (max-width:991px) {
    .image-grid-2 img {
        margin-top: 0
    }
}

.image-grid-3 img {
    margin-top: 10px
}

@media (max-width:991px) {
    .image-grid-3 img {
        margin-top: 0
    }
}

.card.post-card {
    padding: 0 30px
}

@media (max-width:575px) {
    .card.post-card {
        padding: 0 10px
    }
}

.card.post-card .card-body {
    padding: 0
}

.card.post-card .card-body a:hover {
    color: inherit
}

.card.post-card .post-image {
    z-index: 1;
    margin-bottom: 50px
}

@media (max-width:575px) {
    .card.post-card .post-image {
        margin-bottom: 30px
    }
}

.card.post-card .post-image img {
    filter: grayscale(1);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.card.post-card .post-image::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: calc(100% + 60px);
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    z-index: -1;
    pointer-events: none;
    transition: .3s
}

@media (max-width:575px) {
    .card.post-card .post-image::before {
        bottom: -10px;
        right: -10px;
        width: calc(100% + 20px)
    }
}

.card.post-card:hover .post-image img {
    transform: translateY(-5px);
    filter: grayscale(0)
}

@media (max-width:575px) {
    .card.post-card:hover .post-image img {
        transform: translateY(0)
    }
}

.card.post-card:hover .post-image::before {
    background-color: #fff
}

.post-title {
    color: var(--color-foreground);
    transition: .3s
}

.card-meta>li {
    line-height: 1
}

.card-meta>li i {
    font-size: 1rem;
    vertical-align: bottom
}

@media (max-width:767px) {
    .card-meta>li i {
        font-size: 18px
    }
}

.card-meta a {
    color: #505050
}

.card-meta .list-inline-item:not(:last-child) {
    margin-left: 1rem
}

@media (max-width:767px) {
    .card-meta .list-inline-item:not(:last-child) {
        margin-left: .7rem
    }
}

.card-meta .card-meta-author {
    display: inline-block
}

.card-meta .card-meta-author span {
    transition: .2s;
    vertical-align: middle
}

.card-meta .card-meta-author:hover {
    color: #505050
}

.card-meta .card-meta-author img {
    height: 26px;
    margin-left: 6px;
    background-color: gray
}

.card-meta .card-meta-tag .list-inline-item:not(:last-child) {
    margin: .8rem
}

.card-meta .card-meta-tag a {
    background-color: rgba(240, 142, 128, .1);
    color: #505050;
    padding: 6px 10px;
    border-radius: 2px;
    transition: .15s
}

.card-meta .card-meta-tag a:hover {
    background-color: var(--color-primary);
    color: #fff !important
}

.post-share-block {
    width: 174px
}

@media (max-width:991px) {
    .post-share-block {
        width: 100%
    }
}

.post-content-block {
    width: calc(83.33333334% - 174px)
}

@media (max-width:991px) {
    .post-content-block {
        width: 100%
    }
}

.post-meta-tag a {
    display: inline-block;
    background-color: var(--color-background);
    color: #505050;
    padding: 6px 13px;
    font-size: 15px
}

.post-meta-tag a:hover {
    background-color: transparent;
    color: var(--color-primary)
}

.archive-block h2 {
    margin-top: 40px;
    line-height: 1;
    margin-bottom: 20px;
    position: relative
}

.archive-block h2 i {
    position: absolute;
    font-size: 80px;
    opacity: .05;
    top: -27px;
    right: -25px
}

.archive-block .archive-post-item {
    font-size: 18px
}

@media (max-width:767px) {
    .archive-block .archive-post-item {
        font-size: 16px
    }
}

.archive-block .archive-post-item:last-child,
.comment-content p:last-child,
.custom-text-box p:last-child {
    margin-bottom: 0
}

.archive-block .archive-post-item span {
    margin: 0 20px
}

@media (max-width:767px) {
    .archive-block .archive-post-item span {
        display: none
    }

    .archive-block .archive-post-item a {
        display: block
    }
}

.newsletter-block .form-control,
.newsletter-block .input-group-text {
    background-color: transparent
}

.newsletter-block .form-control {
    margin-left: 12px
}

@media (max-width:575px) {
    .newsletter-block .form-control {
        margin-left: 0
    }
}

.newsletter-block .input-group-text {
    padding: 0 1.5rem;
    height: 50px
}

.newsletter-block .form-control:focus {
    border-color: var(--color-primary)
}

.newsletter-block .form-control:focus~.input-group-append .input-group-text {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff
}

.newsletter-block ::-webkit-input-placeholder {
    color: var(--color-foreground-secondary)
}

.newsletter-block :-ms-input-placeholder {
    color: var(--color-foreground-secondary)
}

.newsletter-block ::placeholder {
    color: var(--color-foreground-secondary)
}

.newsletter-block button.input-group-text:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff
}

.card.post-card .post-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 4px !important;
    height: 250px
}

.card.post-card:hover .post-image img {
    transform: scale(1.03)
}

@supports (object-fit:cover) {
    .card.post-card .post-image {
        height: 0;
        padding-top: 56.25%
    }
}

.card.post-card .post-image.portrait img {
    object-fit: contain;
    background: var(--color-background)
}

.simple-modal {
    position: fixed;
    top: 20px;
    right: 50%;
    transform: translateX(50%);
    background: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    display: none
}

.simple-modal.success {
    border-right: 4px solid var(--color-success)
}

.simple-modal.error {
    border-right: 4px solid var(--color-error)
}

.shake {
    animation: shake .5s
}

.search-block {
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    width: 100vw;
    background-color: #fff;
    z-index: 9999988999889;
    padding: 45px 50px;
    transform: translateY(-100%);
    transition: transform .3s cubic-bezier(.85, 0, .15, 1)
}

.search-block.is-visible {
    transform: translateY(0)
}

@media (max-width:575px) {
    .search-block {
        padding: 25px 30px
    }
}

.search-block form {
    position: relative;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center
}

.search-block input {
    border: 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    width: 200px;
    max-width: 100%;
    padding-bottom: 12px;
    margin: auto;
    border-radius: 0;
    letter-spacing: -1px;
    transition: .3s ease width .3s
}

@media (max-width:767px) {
    .search-block input {
        font-size: 16px
    }
}

.search-block.is-visible input {
    width: calc(100% - 50px)
}

.search-block input:focus {
    border-bottom-color: var(--color-primary)
}

.search-block [data-toggle=search-close] {
    font-size: 34px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    left: 45px
}

@media (max-width:575px) {
    .search-block [data-toggle=search-close] {
        left: 25px;
        top: 15px
    }
}

.search-results {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 125px)
}

.search-results::-webkit-scrollbar {
    width: 7px
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1
}

.search-results::-webkit-scrollbar-thumb {
    background: #ddd
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8
}

.search-results a {
    display: block
}

.search-results a:hover {
    opacity: .8
}

@media (max-width:575px) {
    .search-results a {
        margin-bottom: 15px
    }

    .search-results img {
        height: 80px;
        object-fit: cover
    }

    .search-results .search-result-card {
        width: 50%
    }
}

@media (max-width:400px) {
    .search-results .search-result-card {
        width: 100%
    }
}

.banner {
    padding-bottom: 50px
}

@media (max-width:767px) {
    .banner {
        padding-bottom: 110px
    }
}

.search-block .search-form-full,
.search-block.is-visible input.form-control {
    width: calc(100% - 35px)
}

.search-block .search-close {
    color: var(--color-primary);
    opacity: .8;
    transition: opacity .3s
}

.search-block .search-close:hover {
    opacity: 1
}

.gallery-item a,
.pagination-bg {
    border-radius: 4px;
    background-color: var(--color-background)
}

.pagination-bg {
    padding: 1rem
}

.navbar-nav .nav-item.active>.nav-link {
    color: var(--color-primary-strong) !important;
    background-color: rgba(240, 142, 128, .1);
    border-radius: 4px !important
}

.post-gallery-section {
    margin-top: 60px
}

.post-gallery-section .section-title {
    text-align: center;
    margin-bottom: 50px
}

.custom-gallery {
    display: grid;
    gap: 20px
}

.custom-gallery.gallery-grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.custom-gallery.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.custom-gallery.gallery-grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

.gallery-item a {
    display: block;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--color-shadow)
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 0 !important;
    filter: grayscale(100%);
    transition: transform .3s ease, filter .3s ease
}

@media (max-width:991px) {
    .custom-gallery.gallery-grid-4 {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:767px) {

    .custom-gallery.gallery-grid-3,
    .custom-gallery.gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-item img {
        height: 200px
    }
}

@media (max-width:575px) {
    .custom-gallery {
        grid-template-columns: 1fr;
        gap: 15px
    }
}

img.author-lists {
    transition: filter 300ms ease-in-out, transform 300ms ease-in-out
}

.gallery-item a:hover img,
a:hover img.author-lists {
    filter: grayscale(0%);
    transform: scale(1.05)
}

.lightbox,
.lightboxOverlay {
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
    opacity: 1 !important
}

@media (max-width:767px) {

    footer .copyright-text,
    footer .footer-menu {
        display: block !important;
        text-align: center
    }

    footer .footer-menu {
        margin-top: 20px
    }

    footer .footer-menu li {
        display: inline-block;
        margin: 5px 8px
    }

    footer .footer-menu li::after {
        display: none
    }

    footer .copyright-text {
        margin-top: 30px;
        padding-bottom: 20px;
        font-size: 14px
    }
}

.footer-about {
    text-align: center
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: inline-block;
    filter: grayscale(1);
    transition: filter .3s ease-in-out, transform .3s ease-in-out
}

.footer-logo:hover {
    transform: scale(1.05)
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-foreground-secondary);
    margin-top: 20px
}

header .logo {
    height: 40px;
    width: auto;
    filter: grayscale(1);
    transition: filter .3s ease-in-out
}

.footer-logo:hover,
header .logo:hover {
    filter: grayscale(0)
}

.single-post-author .flex-shrink-0 {
    margin-left: 2rem
}

.text-right {
    text-align: right
}

.minimal-results-list {
    list-style: none;
    padding-right: 0;
    margin-top: 40px
}

.minimal-results-list li {
    border-bottom: 1px solid rgba(21, 32, 53, .08)
}

.minimal-results-list a {
    display: block;
    padding: 20px 10px;
    font-size: 20px;
    font-family: inherit;
    color: var(--color-foreground);
    text-decoration: none;
    transition: all .25s ease
}

.minimal-results-list a:hover {
    color: var(--color-primary);
    background-color: rgba(240, 142, 128, .05);
    transform: translateX(8px);
    border-radius: 4px
}

.error-page-container {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.error-code {
    font-size: 8em;
    color: font-weight: 900;
    letter-spacing: 6px;
    margin: 0 0 .2em;
    user-select: none;
    animation: wave 1.8s infinite alternate, blink 1s infinite steps(2, start)
}

.error-message {
    font-size: 1.3em;
    color: margin-top: 0.5em;
    max-width: 90vw;
    line-height: 2
}

#comments {
    font-family: var(--font-family-base)
}

.comments-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0
}

.comment-sort-options {
    display: flex;
    gap: .5rem
}

.sort-btn {
    background: #f1f3f5;
    border: 0;
    padding: .5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: .875rem;
    color: var(--color-foreground-secondary);
    transition: all .2s
}

.sort-btn.active,
.sort-btn:hover {
    background: var(--color-primary);
    color: #fff
}

#comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    transition: background-color .3s;
    border-right: 2px solid rgba(240, 142, 128, .5)
}

.comment-list-item {
    list-style-type: none;
    margin-bottom: 1.5rem
}

.comment-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover
}

.comment-body {
    flex: 1
}

.comment-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    flex-wrap: wrap
}

.comment-author {
    font-weight: 600;
    color: var(--color-foreground)
}

.comment-time {
    font-size: .875rem;
    color: var(--color-foreground-secondary)
}

.btn-reply a,
.comment-badge {
    padding: .25rem .5rem;
    border-radius: 4px
}

.comment-badge {
    font-size: .75rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 500
}

.comment-content {
    line-height: 1.7;
    color: var(--color-foreground);
    margin-bottom: 1rem
}

.comment-content p {
    margin: 0 0 1em
}

.comment-actions {
    display: flex;
    gap: 1rem
}

.btn-reply a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: 100%0;
    border: 0;
    color: var(--color-foreground-secondary);
    cursor: pointer;
    font-size: .875rem;
    transition: all .2s;
    text-decoration: none
}

.btn-reply a:hover {
    color: var(--color-primary);
    background: rgba(240, 142, 128, .1)
}

.comment-replies {
    margin-top: 1.5rem
}

.comment-replies .comment-list-item {
    margin-right: 3rem
}

.comment-replies .comment {
    background-color: #f8f9fa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08)
}

.comment-form {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    border-right: 2px solid rgba(240, 142, 128, .5)
}

.comment-form-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.comment-form-title {
    font-size: 1.25rem;
    color: var(--color-foreground);
    margin: 0
}

.logged-in-as {
    font-size: .9rem;
    color: var(--color-foreground-secondary)
}

.cancel-comment-reply a {
    font-size: .9rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border .2s;
    background: #fdfdfd;
    box-sizing: border-box
}

.form-group textarea {
    min-height: 150px;
    resize: vertical
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--color-primary);
    background: #fff
}

.btn-submit {
    background: var(--color-primary);
    color: #fff;
    border: 0;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background .2s;
    font-weight: 500;
    margin-top: 1rem;
    margin-right: auto;
    margin-left: 0
}

.btn-submit:hover {
    background: var(--color-primary-strong)
}

.comments-closed-title,
.page-navigator li a {
    color: var(--color-foreground-secondary);
    text-align: center
}

.comments-closed-title {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 2rem
}

.page-navigator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 1rem
}

.page-navigator li a {
    display: block;
    padding: .6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    background-color: #f1f3f5;
    transition: all .2s ease-in-out;
    font-size: .9rem;
    min-width: 38px
}

.page-navigator li a:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px)
}

.page-navigator li.current a {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 2px 8px rgba(240, 142, 128, .4)
}

.page-navigator li.current a:hover {
    transform: none
}

@media (max-width:768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0
    }

    .form-row .form-group {
        margin-bottom: 1rem
    }

    .comment-replies .comment-list-item {
        margin-right: 1.5rem
    }

    .comment-header {
        gap: .5rem
    }

    .comments-header {
        flex-direction: column;
        align-items: flex-start
    }

    .page-navigator {
        flex-wrap: wrap
    }
}

.ct {
    margin: 5rem auto 1rem
}

#scrollTopBottomContainer {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease-in-out
}

#scrollTopBottomContainer.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#image-viewer,
#scrollTopBottomContainer button {
    display: flex;
    align-items: center;
    justify-content: center
}

#scrollTopBottomContainer button {
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 12px var(--color-shadow);
    transition: background-color .3s ease, transform .2s ease
}

#scrollTopBottomContainer button:hover {
    background-color: var(--color-primary-strong);
    transform: scale(1.1)
}

.image-viewer-hidden {
    display: none
}

#image-viewer {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(21, 32, 53, .9);
    animation: fadeIn .3s ease
}

.viewer-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--color-shadow);
    animation: zoomIn .3s ease
}

.viewer-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    transition: .3s;
    cursor: pointer
}

.viewer-close:focus,
.viewer-close:hover {
    color: var(--color-primary-soft);
    text-decoration: none
}

.custom-text-box,
.custom-text-box a {
    border-bottom: 1px dashed var(--color-primary)
}

.custom-text-box {
    border-right: 1px dashed var(--color-primary);
    padding: 25px 30px;
    margin: 40px 0;
    line-height: 1.8;
    color: var(--color-foreground-secondary);
    position: relative
}

.custom-text-box a {
    color: var(--color-primary-strong);
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease-in-out
}

.custom-text-box a:hover {
    color: var(--color-foreground);
    border-bottom-color: var(--color-foreground)
}

.content blockquote {
    padding: 25px 60px 25px 30px;
    margin: 5px 0;
    background-color: #fff;
    position: relative;
    color: var(--color-foreground);
    border-radius: 4px;
    font-style: normal;
    border: 1px solid rgba(240, 142, 128, .2);
    border-right: 2px solid rgba(240, 142, 128, .5);
    box-shadow: 0 8px 25px var(--color-shadow);
    overflow: hidden
}

.content blockquote::after,
.content blockquote::before {
    position: absolute;
    font-family: "Vazirmatn RD", sans-serif;
    font-size: 120px;
    color: rgba(240, 142, 128, .15);
    line-height: 0;
    z-index: 0
}

.content blockquote::before {
    content: "“";
    top: 20px;
    left: 20px
}

.content blockquote::after {
    content: "”";
    bottom: 10px;
    right: 10px
}

.content blockquote cite,
.content blockquote p {
    font-family: "Vazirmatn RD", sans-serif;
    position: relative;
    z-index: 1
}

.content blockquote p {
    margin-bottom: 0 !important;
    font-size: 24px;
    line-height: 1.9;
    font-weight: 500;
    color: var(--color-foreground);
    padding: 0 20px
}

.content blockquote cite {
    display: inline-block;
    margin-top: 25px;
    font-style: normal;
    font-size: 16px;
    color: var(--color-primary-strong);
    background-color: rgba(240, 142, 128, .1);
    padding: 8px 20px;
    border-radius: 30px
}

.content blockquote cite::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: var(--color-primary);
    vertical-align: middle;
    margin-left: 8px
}

.content blockquote:hover::after,
.content blockquote:hover::before {
    color: rgba(240, 142, 128, .25);
    transform: scale(1.05);
    transition: all .3s ease
}

@media (max-width:767px) {
    .content blockquote {
        padding: 30px 25px;
        margin: 40px 0
    }

    .content blockquote p {
        font-size: 20px
    }

    .content blockquote::after,
    .content blockquote::before {
        font-size: 80px
    }

    .content blockquote::before {
        top: 15px;
        right: 15px
    }

    .content blockquote::after {
        bottom: 5px;
        left: 15px
    }
}

.avatar-bg {
    background-color: gray
}

img.zoomable {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto
}