/* فونت‌ها با woff2 و fallback به woff */
@font-face {
    font-family: 'yekan-ultralight';
    src: url('/font/woff2/IRANYekanX-UltraLight.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-UltraLight.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-light';
    src: url('/font/woff2/IRANYekanX-Light.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'thin';
    src: url('/font/woff2/IRANYekanX-Thin.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Thin.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-regular';
    src: url('/font/woff2/IRANYekanX-Regular.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-medium';
    src: url('/font/woff2/IRANYekanX-Medium.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'bold';
    src: url('/font/woff2/IRANYekanX-Bold.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-demibold';
    src: url('/font/woff2/IRANYekanX-DemiBold.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-DemiBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-extrabold';
    src: url('/font/woff2/IRANYekanX-ExtraBold.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-ExtraBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-black';
    src: url('/font/woff2/IRANYekanX-Black.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Black.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'yekan-heavy';
    src: url('/font/woff2/IRANYekanX-Heavy.woff2') format('woff2'),
    url('/font/woff/IRANYekanX-Heavy.woff') format('woff');
    font-display: swap;
}

/* اعداد فارسی */
.ss02 {
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
}

/*
===============
Variables
===============
*/

/*کلاس  عموم فونت ها*/
.yekan-light {
    font-family: yekan-light;
}

.yekan-regular {
    font-family: yekan-regular;
}

.yekan-demibol {
    font-family: yekan-demibold;
}

.yekan-black {
    font-family: yekan-black;
}

:root {

    --clr-primary-1: #5a189a;
    --clr-primary-2: #7b2cbf;
    --clr-primary-3: #9d4edd;
    --clr-primary-4: #10002b;
    --clr-grey-1: #102a42;
    --clr-grey-2: #3b3b3b;
    --clr-grey-3: #9eb2c7;
    --clr-grey-4: #f1f5f8;
    --clr-white: #fff;
    --ff-primary: "yekan-demibold", sans-serif;
    --transition: all 0.3s linear;
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ff-primary);
    background: var(--clr-white);
    color: var(--clr-grey-1);
    line-height: 1.5;
    font-size: 0.875rem;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}


h1, h2, h3, h4, h5 {
    margin: 0;
}

p {
    margin-bottom: 1.25rem;
    color: var(--clr-grey-2);
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.4rem;
    }

    .h5 {
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 800px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1rem;
    }

    body {
        font-size: 1rem;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 2.5rem;
    }
}

.btn1 {
    background: var(--clr-primary-1);
    color: var(--clr-white);
    padding: 0.375rem 0.7rem;
    display: inline-block;
    transition: var(--transition);
    font-size: 0.875rem;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;

}

.btn1:hover {
    color: var(--clr-primary-1);
    background: var(--clr-primary-3);
}

.section {
    padding: 3.5rem 0;
}

.section2 {
    padding: 3.5rem 0;
}

.section-titel {
    text-align: center;
    margin-bottom: 4rem;
}

.blue {
    color: var(--clr-primary-2);
}

.section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
}

@media screen and (min-width: 992px) {
    .section-center {
        width: 95vw;

    }
}

.nodata {
    color: red;
    background: #eaeaff;
    padding: 2rem;
    border-radius: 1rem;
    margin: 0 auto;
}

.denger {
    color: red;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}


.h7 {
    font-size: 0.9rem;
}
.h8 {
    font-size: 0.8rem;
}

.h9 {
    font-size: 0.7rem;
}

.h10 {
    font-size: 0.6rem;
}


.text-secondary2 {
    color: #1f0093;
}
.text-secondary3 {
    color:#23254e;
}
.text-secondary4 {
    color:#c0c2c5;
}
.bg-red2 {
    background: #d32f2f;
}

.mt-6 {
    margin-top: 6rem;
}

.icon_danger {
    color: red;
    font-size: 2rem;
}
hr{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #4d7bba;
}

@media (min-width: 768px) {
    .w-md-25 {
        width: 25% !important;
    }
}
.bg-light-blue {
    background: #d6e6ff;
}
.pointer {
    cursor: pointer;
}
.rounded-4 {
    border-radius: 0.4rem;
}
.rounded-5 {
    border-radius: 0.5rem;
}
.rounded-6{
    border-radius: 0.6rem;
}
.rounded-7 {
    border-radius: 0.7rem;
}
.lh-9 {
    line-height: 0.9rem;
}
/*استایل های لودینگ*/
.loading_page {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease, height 0s 0.5s, width 0s 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.timer {
    direction: ltr;
    position: absolute;
    top: 25px;
    scale: 0.6;
    width: 100%;
}
.timer-TutorialPlus {
    direction: ltr;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .timer {
        top: -2px;
    }
}

.loading_circle {
    width: 70px;
    height: 70px;
    border: 3px solid blue;
    border-radius: 50%;
    border-bottom: none;
    border-left: none;
    animation-name: loader;
    animation-iteration-count: infinite;
    animation-duration: 0.5s;
    animation-timing-function: linear;
}

@keyframes loader {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.loaded {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
}

.no-scroll {
    overflow: hidden;
}

.loading_text {
    color: var(--clr-primary-2);
    direction: rtl;


}

.loading_text span {
    display: inline-block;
    width: 1em;

}

p[data-f-id="pbf"] {
    display: none;
}

/* استایل های مربوط به منو*/
.baner_top {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.icon_sidebar {
    display: flex;
}

.navbar {
    padding: 0.5rem 0rem;
    position: fixed;
    top: 59px;
    right: 0;
    background: var(--clr-white);
    width: 100%;
    box-shadow: var(--dark-shadow);
    z-index: 1000;
}

.navbar-center {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 3rem;
}

.nav-icons {
    display: none;
}

.navbar_panel_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem;
}

.logo {
    width: 7rem
}

.nav-toggle {
    background: transparent;
    border: transparent;
    color: var(--clr-primary-2);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

#nav-toggle:hover {
    transform: scale(1.2);
}

.nav-link {
    display: block;
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    font-family: yekan-regular;

}



.nav-link:hover {
    color: var(--clr-primary-1);

}

.nav-links-body {
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    width: 14rem;
    background: #1e0342;
    position: absolute;
    top: -59px;
    z-index: 101;
!important;
    color: white;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

}

.nav-links {
    display: flex;
    flex-direction: column;
}


.uk-icon {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
}

.uk-offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 20px;
    left: 20px;
    padding: 5px;
}


.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

@media screen and (min-width: 1199px) {
    .navbar {
        padding: 0.3rem 1rem
    }

    .nav-toggle {
        display: none
    }

    .nav-links {
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 0;

    }

    .navbar-center {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-icons {
        display: flex;
    }


    .nav-link {
        padding: 0;
        margin: 0.75rem;
        font-size: .9rem;
        color: var(--clr-grey-1);
        font-family: yekan-demibold;

    }

    .nav-link:hover {
        padding: 0;
        background: transparent;
        color: var(--clr-primary-2);
    }

    .nav-icon {
        color: var(--clr-primary-2);
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }

    .nav-icon:hover {
        color: var(--clr-primary-3);
    }

    .icon_sidebar {
        display: none;
    !important;
    }

}

.btn-register {
    position: relative;
}
.btn-register2 {
    display: none;

}

.icon_nav_mobile {
    font-size: 1.3rem;
}

@media screen and (min-width: 1199px) {
    .btn-register {
        display: none;
        top: 0px;


    }

    .btn-register2 {
        display: block;

    }

    .icon_nav_mobile {
        display: none;

    }

    .nav-links-body {
        display: block;
        height: auto;
        width: fit-content;
        position: static;
        background: transparent;
    }

    #close {
        display: none;

    }
}

@media screen and (max-width: 280px) {
    .btn-register {
        display: none;
    }

}

.icon {
    color: var(--clr-primary-2);
    font-size: 1.2rem;
}

.form-control::placeholder {
    color: #bebebe;
    font-size: 0.8rem;
}

.carousel-caption2 {
    position: absolute;
    left: 15%;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
.carousel-caption2 {
    background: rgb(255 255 255 / 70%);
    border-radius: 1rem;
    top: 11rem;
}
@media screen and (min-width: 768px) {
    .carousel-caption2 {
        top: 14rem;
    }
}
@media screen and (min-width: 768px) {
    .carousel-caption2 {
        top:10rem;
    }
}
.carousel-caption3 {
    bottom: 10rem;
    position: absolute;
    left: 15%;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}


/*کلاس های مربوط به هیرو*/
.hiro {
    height: 100vh;
}

.hiro p {
    color: var(--clr-white);
}

.hiro-baner {
    line-height: 1.9rem;
}

.hiro-baner h2 {
    margin-bottom: 1.5rem;

}

.hiro-baner p {
    margin-bottom: 2.5rem;

}


.btn-hiro {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    background: var(--clr-white);
    color: var(--clr-primary-2);
}

.btn-hiro:hover {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid var(--clr-white);
}

@media screen and (min-width: 100px) {
    .hiro {
        background: linear-gradient(rgb(199, 125, 255, 0.7), rgba(0, 0, 0, 0.7)), url(../image/main.jpg) center/cover no-repeat;
    }
}

@media screen and (min-width: 768px) {
    .hiro-baner {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/*استایل های درباره ما*/
.btn-about {
    text-align: center;
    margin-top: 2rem;

}

.about-photo {
    border-radius: 10px;
}

.about-img {
    margin-bottom: 2rem
}

@media screen and (min-width: 992px) {
    .about-center {
        display: flex;
        justify-content: space-between;
    }

    .about-img {
        margin-bottom: 0;
    }

    .about-img, .about-info {
        flex: 0 0 calc(50% - 2rem);
        align-self: center;

    }

    .btn-about {
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    .about-img {
        position: relative;
    }

    .about-img::before {
        content: '';
        border: 0.5rem solid var(--clr-primary-2);
        width: 100%;
        height: 100%;
        position: absolute;
        box-sizing: border-box;
        top: -1rem;
        right: -1rem;
        z-index: -1;
        border-radius: 10px;
    }

}

.justify {
    text-align: justify;
}

/*استایل های خدمات ما*/
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.service {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-container {
        padding: 20px;
    }
}
.bg-bllue2 {
    background: #f1f5f8;
}

.service {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon {
    background: var(--clr-primary-2);
    color: var(--clr-white);
    font-size: 2rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-radius: 5px;
}

.service-text {
    max-width: 25rem;
    margin: auto;
    font-family: yekan-regular;
    text-align: justify;
}

@media screen and (min-width: 576px) {
    .section-center {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .service {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media screen and (min-width: 992px) {
    .service {
        flex: 0 0 calc(25% - 2rem);
    }
}

@media screen and (min-width: 1170px) {
    .service {
        display: flex;
        align-items: flex-start;
        gap: 0 1rem;
    }

    .service-icon {

        padding: 1rem 0.6rem;
        align-self: center;
    }

    .service-text {
        max-width: 50rem;

    }

    .section-center {
        max-width: 1600px;
    }

    .service-titel {
        text-align: right
    }
}

/* استایل های مقالات*/
.article-card {
    background: var(--clr-grey-4);
    margin-bottom: 2rem;
    box-shadow: var(--light-shadow);
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
}

.articles-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
}

.article-card:hover {
    box-shadow: var(--dark-shadow);
    transform: scale(1.02);
}

.article-img {
    height: 15rem;
    object-fit: cover;
}

.atricle-img-container {
    position: relative;
    overflow: hidden;
}

.article-category {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--clr-primary-3);
    color: var(--clr-white);
    padding: 0.2rem 0.5rem;
    border-top-left-radius: 0.5rem;
}

.articl-info {
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.article-titel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-titel p, h4 {
    margin-bottom: 0.75rem;

}

.article-footer {
    display: flex;
    justify-content: space-between;
}

.article-footer p {
    margin: 0;
    color: var(--clr-primary-2);
}

.btn-article {
    text-align: center
}

@media screen and (min-width: 600px) {
    .articles-center {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .article-card {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media screen and (min-width: 1170px) {

    .article-card {
        flex: 0 0 calc(33.3333% - 2rem);
    }

    .articles-center {
        width: 95vw;
        max-width: 1600px;

    }
}

/*استایل های ارتباط با ما*/

.contact {
    background: var(--clr-primary-2);
}

.contact-title, .contact-title p {
    color: var(--clr-white);
    text-align: center;
    line-height: 1.5rem;
}

.contact-form {
    display: flex;
    position: relative;
    flex-direction: column;
}

.form-control1 {
    flex: 1 1 auto;
    color: var(--clr-grey-2);
    border-radius: 5px;
    padding: 0.75rem 0.75rem;

}

.form-control1, .btn-submit {
    direction: rtl;
    font-size: 1rem;
    border: transparent;
    margin-bottom: 1rem;
}

.form-control1::placeholder {
    font-family: var(--ff-primary);
    color: inherit;
    font-family: yekan-regular;
}

.btn-submit {
    font-family: var(--ff-primary);
    background: var(--clr-primary-3);
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.75rem 0.75rem;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;


}

.btn-submit:hover {
    background: var(--clr-primary-1);
}


.contact-form {
    align-self: flex-start;
    flex: 1 1 auto;
    margin-right: 0.5rem;
}

.form-control1:focus {
    outline: 2px solid var(--clr-primary-3);
}

@media screen and (min-width: 992px) {
    .contact-center {
        display: flex;
        /* justify-content: space-between; */
        gap: 2rem;
    }

    .contact-form {
        align-self: center;
        flex: 1 1 auto;
    }
}

.error-message {
    position: absolute;
    bottom: -44px;
    text-align: center;
    width: 24rem;
    background: #fbfffb;
    margin-top: 0.8rem;
    color: red;
    padding: 0.5rem 0.5rem;
    border-radius: 9px;
}

/*استایل های بنر */
.flip {
    position: relative;
}

#timer {
    direction: ltr;
    transform: scale(21%);
    position: absolute;
    bottom: 32px;
    left: -243px;
    width: 653px;
    height: 0px;
}

@media screen and (min-width: 460px) {
    #timer {
        direction: ltr;
        transform: scale(31%);
        position: absolute;
        bottom: 42px;
        left: -214px;
        width: 653px;
        height: 0px;
    }
}

@media (max-width: 920px) {
    .img-baner {
        content: url(../image/img-6.jpg);
    }
}

/*استایل های اموزشها */
@media (min-width: 992px) {
    .Tutorial-info {
        min-height: 199px;
    }
}

.Tutorial {
    background: var(--clr-grey-4);
    margin-bottom: 2rem;
    box-shadow: var(--light-shadow);
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}
.TutorialPlus{
    background: var(--clr-grey-4);
    margin-bottom: 2rem;
    box-shadow: var(--light-shadow);
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.Tutorial:hover,
.TutorialPlus:hover {
    box-shadow: var(--dark-shadow);
    transform: scale(1.02);
}
@media screen and (min-width: 600px) {
    .articles-center {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .Tutorial {
        flex: 0 0 calc(50% - 2rem);
    }
}

.slider {
    min-height: 25px;
}
@media screen and (min-width: 1170px) {

    .Tutorial {
        flex: 0 0 calc(25% - 2rem);
    }

}

.Tutorial-titel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.Tutorial-titel a {
    margin-bottom: 0.75rem;

}

.Tutorial-info {
    padding: 1.25rem 1.5rem;
}

.Tutorial-footer {
    text-align: justify;
    font-size: 14px;
    color: #383838;
    font-family: yekan-regular;
}

label.error {
    color: red;
    font-size: 0.9em;
}
/*استایل های اخبار*/
.News_item:hover{
    background: #e3daff;
    scale: 105%;
    transition: 0.1s ease;

}
.News_item {
    background: #f8f8f8;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

/*استایل های فوتر*/
.footer {
    background: var(--clr-primary-4);
    text-align: center;
    padding: 1rem 2rem;
    position: relative;
}

@media screen and (max-width: 490px) {
    .footer {

        padding: 1rem 0.7rem;
    }
}


.footer-links, .footer_icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    gap: 0 1rem;
}

.footer-link {
    color: var(--clr-white);
    font-size: 0.8rem;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--clr-primary-2);

}

.footer-icon {
    color: #00caff;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-icon:hover {
    color: var(--clr-primary-2);

}

.copyright {
    color: var(--clr-white);
    font-size: 0.5rem;
    margin: 0;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0.5rem 1.5rem;
    justify-content: center;
}

.phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.2rem;
    flex-direction: column;
}

.tel-info {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 0.6rem;
}

.mobile {
    color: var(--clr-white);
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 1px;
}

@media screen and (min-width: 920px) {
    .mobile {
        letter-spacing: 3px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .footer-icon {
        font-size: 1.5rem;
    }

    .footer_icons {
        gap: 0 1.5rem;
    }

    .footer-links, .footer_icons {
        margin-bottom: 1rem;
    }
}

/*استایل های عملیات موفق*/
.sucsess {
    display: flex;
    /* max-width: 450px; */
    height: 100vh;
    align-items: center;
    justify-content: center;

}

.sucsess-center {
    background: var(--clr-grey-4);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.sucsess_logo {
    width: 90px;
    margin-bottom: 1rem;
}

/*استایل های تماس ثابت*/
.enemad {
    display: block;
    background: #ffffff26;
    border-radius: 2rem;
}


/*استایل های صفحه نمایش ویدئو*/
.main_video {
    flex-direction: column;
}

.item_video {
    display: flex;
    flex: 0 0 50%;
}

.right_main_video {
    background: #ccf3ff;;
    border-radius: 10px;
    display: flex;
    flex: 0 0 50%;
}

.left_main_video {
    display: flex;
    justify-content: center;
    flex: 0 0 calc(33.3333% - 2rem);

}

.video_info {
    margin-bottom: 2rem;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
}

.video-center {
    gap: 1.5rem;
    justify-content: center;
    margin-top: 5rem;
}

@media screen and (min-width: 992px) {
    .video-center {
        display: flex;
        justify-content: space-between;
    }

    .video_info {
        margin-bottom: 0;
    }

    .video_show {
        flex: 0 0 65%;
        align-self: center;
    }
 .image_show {
        flex: 0 0 65%;
        align-self: center;
    }

    .video_info {
        flex: 0 0 calc(35% - 2rem);
    }

    .btn-about {
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    .video_info {
        position: relative;
    }


}

@media screen and (min-width: 992px) {
    .icon-titels {
        flex-direction: column;
    }


}

@media screen and (min-width: 1170px) {

    .icon-titels {
        flex-direction: row;
    }

}


.video_show {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-direction: column;
}
.label_news {
    position: absolute;
    bottom: 5px;
    background: #f3ffbcb3;
    border-radius: 0.3rem;
    padding: 0.2rem;
}
.video_show h1 {
    background: #f1f1f1;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 0.4rem;
}

.image_show {
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 0;
}

.info_me {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.info_line1 span {
    font-family: yekan-regular;
}

.mypic {
    border-radius: 10px;
    width: 60px;
    height: 60px;
}

.video {
    border-radius: 10px;
}

.video-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.video-icons li {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.video-icon {
    color: var(--clr-primary-2);
    font-size: 2rem;
}

.video-icon:hover {
    color: var(--clr-primary-3);
}

.video_contact_us {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video_contact_us span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    border: 1px dashed #e4e4e4;
}

.video_info_titel {
    font-family: yekan-demibold;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.video_info_titel_titel {
    color: #000b68;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 0;
}

.icon-titels {
    display: flex;
    color: var(--clr-primary-2);
    font-size: 2rem;
    justify-content: space-around;
}

.text-bold {
    font-size: 0.5em;
    margin-bottom: 0;
}

.text-thin {
    font-size: 0.4em;
    margin-bottom: 0;

}

.icon_titel {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/*استایل های بخش توضیات  نمایش ویدئو*/
.video_description {
    text-align: justify;
    line-height: 34px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: yekan-regular

}

.video_description h3 {
    margin: 0;

}

.video_description p {
    margin: 0;
}

.video_description ul {
    list-style-type: disc;
    padding: 0 1rem;

}

@media screen and (min-width: 920px) {

    .video_description {
        padding: 1rem 5rem;
    }

}

@media screen and (min-width: 1170px) {

    .video_description {
        padding: 1rem 7rem;
    }

}

/*استایل های بخش کامنت های ویدئو*/
.comments {
    width: 100%;
}

.comment_send_form {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: yekan-regular;
    border: 1px solid rgba(0, 0, 0, 0.175);;
}

@media screen and (min-width: 920px) {

    .comments {
        padding: 1rem 5rem;
    }

}

@media screen and (min-width: 1170px) {

    .comments {
        padding: 1rem 1rem;
    }

}

.comment_titel {
    font-family: yekan-demibold;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.comment_received {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.175);;

}

.comment_name_sender {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.comment_received_card {
    font-family: yekan-regular;
}

.comment_name_sender i {
    font-size: 2.5rem;

}

.no_comment {
    background: #ffe5d0;
    padding: 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.175);;

}

.creat_at {
    padding-right: 1rem;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
    margin: 0;
}

@media screen and (min-width: 920px) {

    .answer {
        padding-right: 3rem;
    }

}

@media screen and (max-width: 920px) {

    .answer h5, h6 {
        font-size: 0.8rem;
    }

}

.answer li {
    border: 2px dashed #f4f4f4;

}
.titel-product {
    background: #fff4ff;
    padding: 1rem;
    border-radius: 1rem;
}
/*استایل های ثبت نام باربرگ*/
.plak > input, .plak > select, .plakAzad input, .plakAzad select {
    border: none;
    background-color: transparent !important;
    text-align: center;
    padding: 0;
    font-size: 20px;
}

.plak {
    background: url(../image/plaque.png) no-repeat top center;
    background-size: 100%;
    padding: 15px 5px 2px 25px;
    width: 260px;
    height: 60px;
}

.no-outline:focus-visible {
    outline: none; /* حذف اثر سایه */
}

.form-barbarg_info {
    margin-bottom: 0;
}

.form-barbarg {
    flex: 0 0 70%;
}

.form-barbarg_info {
    flex: 0 0 calc(30% - 2rem);
}

.form-barbarg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.form-barbarg-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-direction: column-reverse;
    margin-top: 5rem;
}

.form-barbarg_info {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.175);
    height: fit-content;
}

@media screen and (min-width: 992px) {
    .form-barbarg_info {
        position: sticky; /* موقعیت ثابت */
        top: 135px; /* فاصله از بالای صفحه */
        background: #f8f8f8;
        padding: 1rem;
        border-radius: 0.7rem;
        border: 1px solid rgba(0, 0, 0, 0.175);
        height: fit-content;
    }
}


}

.form-control:focus {
    outline: none;
!important;

}

#pelakCharacter {
    white-space: normal; /* تنظیم white-space برای اجازه دادن به شکست خط */
    line-height: 1.2; /* تنظیم فاصله‌ی خط (line-height) */
    font-size: 0.8rem;
}

@media screen and (min-width: 992px) {
    .form-barbarg-center {
        flex-direction: row;
        justify-content: space-between;

    }
}

.form-control {
    appearance: auto;
}

.line_holder {
    background: #bfd7ef;
    padding: 2.1rem 0.15rem;
    border-radius: 9px;
}

.line_holder-1 {
    background: #bfd7ef;
    padding: 4.5rem 0.15rem;
    border-radius: 9px;
}

.price_titel {
    position: absolute;
    top: 4px;
    background: #f8f8f8;
    padding: 0 1rem;
    color: red;
}

.price {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    border: 3px dashed #d5d5d5;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.dflex {
    display: none;
}

.max-whidth-11 {
    max-width: 9rem;

}

/*استایل های سوالات متوادل*/


@media screen and (min-width: 992px) {
    .question-center {
        width: 90vw;

    }
}

.border-complete-b-200 {
    border-bottom: 1px solid #c9c9c9;
}

/*استایل های صفحه محصولات*/

@media (min-width: 1400px) {
    .container_product {
        max-width: 1600px;
        padding: 1rem;
    }
}

.btn-success2:hover {
    color: #fff;
    background-color: #1620cc;
    border-color: #5f00cc;
}

.product-cards:hover {
    box-shadow: var(--dark-shadow);
    transition: all 0.1s linear;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -6px);
}
.swiper-button-next,.swiper-button-prev {
    color: var(--swiper-navigation-color, #007aff38);
}

.product-discount {
    position: absolute;
    top: 15px;
    transform: rotate(45deg);
    right: -31px;
    background: #ff3232;
    color: var(--clr-white);
    padding: 0.2rem 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 1);
}
.product-discription {
    position: absolute;
    top: 53px;
    transform: rotate(312deg);
    left: -56px;
    background: #cc0000; /* تیره‌تر از ff3232 */
    color: #ffffff;
    padding: 0.2rem 2.5rem;
    overflow: hidden;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* کمک به خوانایی */
}

.product-titel-img {
    align-items: center;
    background: #fff;
    border-radius: 9px;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.product_titel_basic {
    align-items: center;
    background: #fafafa;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 10px 9px;
    position: relative;
    transition: all .2s;
    width: 100%;
}


.product_titel_premium {
    background: url(../image/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    border-radius: 12px;
}


@media (min-width: 768px) {
    .min {
        min-height: 122px;
    }
}

}

.letter-space1 {
    letter-spacing: 2px;
}

/*استایل های chekout*/
.timer-expiryTimeOrder{
    direction: ltr;
}
.chekout {
    max-width: 900px;
}

.titel_chekout {
    background: #fff2f2;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    color: #38009e;
}

.image-contaner-chkout {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .image-contaner-chkout {
        flex-direction: row;
    }
}

.chekout_product_titel {
    display: flex;
}
.copy-button {
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}
.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.copy-button .tooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-button.show-tooltip .tooltip {
    visibility: visible;
    opacity: 1;
}
.info_card{
    display: none;
}
/*استایلهای صفحه پرداخت*/
.purchase-steps{
    list-style: none;
    padding: 0;
}
.back-icon{
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #df8625;
    font-size: 2em;
    font-style: normal;
    justify-content: center;
    align-items: center;


}
.bg-danger-light{
    background: #d28694 ;
}
.bg-light2{
    background: #f9fbfd !important;
}
.card-body{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border: 1px solid #edf2f9;
    border-radius: .5rem;
    background-color: #EDF2F9;
    align-items: center;

}

/*جدول حالت موبایل*/
@media (max-width: 768px) {
    table.table.my-responsive-table { /* فقط جدول‌های با کلاس خاص */
        display: block;
        width: 100%;
    }

    table.table.my-responsive-table thead {
        display: none;
    }

    table.table.my-responsive-table tbody tr {
        display: flex;
        flex-direction: column;
        border: 1px solid #dee2e6;
        margin-bottom: 1rem;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    table.table.my-responsive-table tbody tr td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f1f1;
        width: 100%;
        border: none;
    }

    table.table.my-responsive-table tbody tr td:last-child {
        border-bottom: none;
    }

    table.table.my-responsive-table tbody tr td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
        margin-left: 2rem;
    }

    table.table.my-responsive-table tbody {
        display: block;
    }
}
/*استایلهای صفحه کارت بکار*/

.icons_holder {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media (min-width: 768px) {
    .icons_holder {
        width: 75%;
          }
}

/*استایل های صفحه تعهد نامه */
.emza{
    border: 2px dashed #9b9191;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    position: relative;
    background: #def0ff99;
}
/*استایل های مشخات محصولات */
.custom-quota-small-card {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.custom-quota-small-card:hover {
    background-color: #e2e6ea;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.custom-quota-small-card i {
    flex-shrink: 0;
}

.custom-quota-small-card p {
    font-weight: 600;
    font-size: 0.9rem;
    color: #212529;
}

/*استایل های بخش توضیات  نمایش ویدئو*/
.product_description {
    text-align: justify;
    line-height: 34px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: yekan-regular

}

.product_description h3 {
    margin: 0;

}

.product_description p {
    margin: 0;
}

.product_description ul {
    list-style-type: disc;
    padding: 0 1rem;

}

@media screen and (min-width: 920px) {

    .product_description {
        padding: 4rem 5rem;
    }

}

@media screen and (min-width: 1170px) {

    .product_description {
        padding: 4rem 5rem;
    }

}
.card-description{
    display: flex;
    border-radius: 1rem;
    flex-direction: column;
    gap: 1rem;
    background: white;
    align-items:center;
}
@media screen and (min-width: 720px) {

    .card-description {
        flex-direction: row;
    }

}
.image-contanar {
    width: 80%;
}
@media screen and (min-width: 720px) {

    .image-contanar {
        width: 50%;
    }

}