/* Montserrat از گوگل */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap');

/* YekanBakh از لوکال */
@font-face {
  font-family: 'YekanBakh';
  src: url('/blog/wp-content/themes/nerko/assets/fonts/yekanbakh/YekanBakhFaNum-VF.woff2') format('woff2'),
       url('/blog/wp-content/themes/nerko/assets/fonts/yekanbakh/YekanBakhFaNum-VF.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
    --app-font: 'Montserrat', 'YekanBakh', sans-serif;
}

html, body {
    font-family: 'Montserrat', 'YekanBakh', sans-serif !important;
}

button, input, select, textarea,
p, a, li, dt, dd, th, td, label,
h1, h2, h3, h4, h5, h6,
small, strong, em, code, pre, blockquote {
    font-family: var(--app-font) !important;
}

/* PinkiFil Styles */
/* Colors */

.pinkifil-red-primary {
    color: #f43a3a !important;
}

.pinkifil-pink-primary {
    color: #f43a75 !important;
}

.pinkifil-purple-primary {
    color: #9f00ff !important;
}

.pinkifil-orange-primary {
    color: #ff9117 !important;
}

.pinkifil-gold-primary {
    color: #FFD700 !important;
}

.pinkifil-green-primary {
    color: #3af4bd !important;
}

.pinkifil-blue-primary {
    color: #17b2ff !important;
}

.pinkifil-opacity-50 {
    opacity: 0.5;
}

/* PinkiFil Buttons */

.pinkifil-btn-pink-primary {
    padding: 1rem;
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(244, 58, 117, 0.8);
    color: #eee;
    font-weight: bold;
    border-radius: 20px;
    border: 1px solid #f43a75;
    transition: 0.6s;
}

.pinkifil-btn-pink-primary:hover {
    background-color: rgba(245, 100, 149, 0.8);
    color: #eee;
    box-shadow: 0px 10px 20px -10px #f43a75;
}

.pinkifil-btn-gold-primary {
    padding: 1rem;
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.8);
    color: #eee;
    font-weight: bold;
    border-radius: 20px;
    border: 1px solid #ffd700;
    transition: 0.6s;
}

.pinkifil-btn-gold-primary:hover {
    background-color: rgba(255, 232, 110, 0.8);
    color: #eee;
    box-shadow: 0px 10px 20px -10px #ffd700;
}

.pinkifil-btn-blue-primary {
    padding: 1rem;
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(23, 178, 255, 0.8);
    color: #eee;
    font-weight: bold;
    border-radius: 20px;
    border: 1px solid #17b2ff;
    transition: 0.6s;
}

.pinkifil-btn-blue-primary:hover {
    background-color: rgba(110, 207, 255, 0.8);
    color: #eee;
    box-shadow: 0px 10px 20px -10px #17b2ff;
}

/* Price Card List */
.pinkifil-price {
    display: flex;
    flex-direction: column;
}

.pinkifil-price div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pinkifil-price i {
    font-size: 24px;
}

.pinkifil-price span {
    line-height: normal;
    font-weight: 600;
}

.pinkifil-price-container {
    font-size: small;
    padding: 20px !important;
}

.pinkifil-price-container span {
    text-align: center;
}

.pinkifil-price-container-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pinkifil-pill-primary {
    text-align: center;
    font-size: 12px;
    border-radius: 14px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.pinkifil-pill-green {
    background-color: rgba(58, 244, 189, 0.2);
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    color: #3af4bd;
    font-size: medium;
}

.pinkifil-pill-red {
background-color: rgba(244, 58, 58, 0.2);
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    color: #f43a3a;
    font-size: medium;
}

.pinkifil-price-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pinkifil-price-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    line-height: normal;
    font-weight: bold;
}


/* Divider */
.ui-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #f43a75 25%,
        #f43a75 75%,
        transparent
    );
    margin: 40px 0;
    border-radius: 2px;
}

.separator-pink {
    background: linear-gradient(
        to right,
        transparent,
        #f43a75 25%,
        #f43a75 75%,
        transparent
    );
}

.separator-purple {
    background: linear-gradient(
        to right,
        transparent,
        #9f00ff 25%,
        #9f00ff 75%,
        transparent
    );
}

.separator-orange {
    background: linear-gradient(
        to right,
        transparent,
        #ff9117 25%,
        #ff9117 75%,
        transparent
    );
}

.separator-gold {
    background: linear-gradient(
        to right,
        transparent,
        #FFD700 25%,
        #FFD700 75%,
        transparent
    );
}

.separator-green {
    background: linear-gradient(
        to right,
        transparent,
        #3af4bd 25%,
        #3af4bd 75%,
        transparent
    );
}

.separator-blue {
    background: linear-gradient(
        to right,
        transparent,
        #17b2ff 25%,
        #17b2ff 75%,
        transparent
    );
}








.transparent-header {
    left: unset;
    right: 0;
}

.tgmenu__navbar-wrap ul {
    margin: 0 auto 0 0;
}

.tgmenu__navbar-wrap ul li .sub-menu {
    left: unset;
    right: 0;
}

.tgmenu__navbar-wrap ul li .sub-menu li {
    margin-right: 0;
    text-align: right;
}

.tgmenu__navbar-wrap ul li .sub-menu li a {
    padding: 7px 25px 7px 15px !important;
}

.tg-header__area .mobile-nav-toggler {
    float: left;
}

.tgmobile__menu .navigation li > a {
    padding: 10px 25px 10px 60px;
}

.tgmobile__menu .nav-logo {
    text-align: center;
}

.roadmap__wrapper-two .roadmap__card.style-two:nth-child(even)
 {
    margin-right: auto;
    margin-left: unset;
}

.roadmap__card.style-two::after {
    right: unset;
    left: 0;
    transform: translate(calc(-100% + -18px), -50%);
}

.roadmap__wrapper-two .roadmap__card.style-two:nth-child(even)::after
 {
    left: auto;
    right: 0;
    transform: translate(calc(100% + 18px), -50%);
}

.roadmap__percent
 {
    right: unset;
    left: 0;
}

.roadmap__card p {
    text-align: justify;
}

.tgmenu__action > ul {
    margin-left: unset;
    margin-right: 40px;
}

.tgmenu__action > ul .header-btn {
    margin-left: unset;
    margin-right: 30px;
}

.roadmap__step span {
    line-height: unset;
}

.roadmap__lists li i {
    margin-right: unset;
    margin-left: 8px;
}

.roadmap__heading {
    text-align: center;
    line-height: normal;
}

.tgmenu__navbar-wrap ul li a {
    font-size: 16px !important;
}

.btn i {
    line-height: normal;
    margin-left: 8px;
    margin-right: 8px;
}

.about-style-two .about__content .section__title .sub-title {
    font-family: var(--app-font);
}

.about__content {
    margin-left: unset;
    margin-right: 40px;
}

.about__img {
    margin-right: unset;
    margin-left: 50px;
}

.about-style-two .about__content > p {
    text-align: justify;
}

.faq__wrapper .accordion-body p:last-child {
    text-align: justify;
}


/* BLOG */
.blog-post-meta .list-wrap li i {
    margin-right: unset;
    margin-left: 10px;
}

.sidebar-search-form input {
    text-align: center;
}

.blog-sidebar .widget_categories ul li .float-right {
    margin-left: unset;
    margin-right: auto;
    right: unset;
    left: 18px;
}

.rc-post-content .date i {
    margin-right: unset;
    margin-left: 5px;
}

.rc-post-thumb {
    margin-right: unset;
    margin-left: 20px;
}

.post-text p:last-child {
    text-align: justify;
}

[tg-theme=dark] .banner__background-wrap .background {
    opacity: 0.5;
}

.tgmobile__menu .close-btn {
    right: unset;
    left: 6px;
    top: 20px;
}

.modal__body .privacy-text {
    font-size: 12px;
}

.pinkifil-discount-text {
    text-decoration: line-through;
    text-decoration-color: red;
    opacity: 0.75;
    font-weight: 400;
}


.blog-card .elementor-post__read-more {
    background-color: #741FF5;
    padding: 6px 10px;
    border-radius: 8px;
    color: #eee !important;
    float: left;
    transition: 0.4s;
}

.blog-card .elementor-post__read-more:hover {
    background-color: #9727d3;
}

.blog-card .elementor-post__excerpt {
    margin-bottom: 12px;
    text-align: justify;
    direction: rtl;
}





