/* 
 * Style.css
 *
 * Structure:
                #base
                #components
                #layout
                #utilities 
                #pages
*/
:root {
    --font-size: 13px;
    --visual-border-radius: 5rem;

    --bs-border-radius-xxl: var(--visual-border-radius);
}
html,
body {
    height: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                    #base                                   */
/* -------------------------------------------------------------------------- */
/**
*
*	Name:			AnjomanMax Fonts
*	Version:			2.4
*	Author:			Moslem Ebrahimi (moslemebrahimi.com)
*	Created on:		Apr 22, 2021
*	Updated on:		Jan 22, 2022
*	Website:			http://fontiran.com
*	Copyright:		Commercial/Proprietary Software
--------------------------------------------------------------------------------------
فونتایران سنس Xا یک نرم افزار مالکیتی محسوب می شود. جهت آگاهی از قوانین استفاده از این فونت ها لطفا به وب سایت (فونت ایران دات کام) مراجعه نمایید
--------------------------------------------------------------------------------------
AnjomanMax fonts are considered a proprietary software. To gain information about the laws regarding the use of these fonts, please visit www.fontiran.com 
--------------------------------------------------------------------------------------
This set of fonts are used in this project under the license: (.....)
------------------------------------------------------------------------------------- fonts/-
*	
**/

@font-face {
    font-family: AnjomanMax;
    font-style: normal;
    font-weight: 300;
    src: url("../vendor/fonts/Anjoman/woff/AnjomanMax-Light.woff") format("woff"), url("../vendor/fonts/Anjoman/woff2/AnjomanMax-Light.woff2") format("woff2");
}

@font-face {
    font-family: AnjomanMax;
    font-style: normal;
    font-weight: bold;
    src: url("../vendor/fonts/Anjoman/woff/AnjomanMax-Bold.woff") format("woff"), url("../vendor/fonts/Anjoman/woff2/AnjomanMax-Bold.woff2") format("woff2");
}

@font-face {
    font-family: AnjomanMax;
    font-style: normal;
    font-weight: normal;
    src: url("../vendor/fonts/Anjoman/woff/AnjomanMax-Regular.woff") format("woff"),
        url("../vendor/fonts/Anjoman/woff2/AnjomanMax-Regular.woff2") format("woff2");
}

/* font size */
html,
body {
    font-size: var(--font-size);
}

/* font family */
.tooltip,
body {
    font-family: iranyekanx, tahoma;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* image */
img {
    max-width: 100%;
}

/*
select every a, button or class start with link
*/
a,
button,
[class*="link"] {
    text-decoration: none;
}

/*
bootstrap btn class
*/
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                 #utilities                                 */
/* -------------------------------------------------------------------------- */
/* --------------------------------- #invert -------------------------------- */
.u-invert {
    -webkit-filter: invert(1);
    filter: invert(1);
}
/* --------------------------------- #clamp --------------------------------- */
.nt-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nt-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.nt-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* -------------------------------------------------------------------------- */
/*                                 #components                                */
/* -------------------------------------------------------------------------- */
/* ------------------------------- #pagination ------------------------------ */
/*  pagination main */
.pagination-main .page-link {
    --bs-pagination-border-width: 0;
    --bs-pagination-color: var(--bs-dark);
    --bs-pagination-border-radius: 100%;

    width: 2.5rem;
    height: 2.5rem;
    padding: 1rem;
    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
/* ---------------------------------- #step --------------------------------- */
.stepper-wrapper {
    padding: 4rem 1rem 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.stepper {
    position: relative;
    z-index: 1;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.stepper::before {
    content: "";
    width: 90%;
    height: 1px;
    border-bottom: 2px dashed var(--bs-primary);

    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
@media (min-width: 576px) {
    .stepper {
        gap: 2rem;
    }
}
@media (min-width: 992px) {
    .stepper {
        gap: 2.5rem;
    }
}
.stepper .step-item .step-circle.btn {
    z-index: 1;
    aspect-ratio: 1 / 1;
    width: 50px;
    height: 50px;
    border-radius: 100%;

    padding: 1rem;
    margin-bottom: 1rem;
}
.stepper .step-item .step-circle.btn.disabled {
    opacity: 1;
    background-color: var(--bs-light);
    border-color: var(--bs-light);
}
.stepper .step-item .step-label {
    text-align: center;
    font-weight: bold;
    color: var(--bs-primary);
}
/* --------------------------------- #break --------------------------------- */
.break {
    position: relative;
}
.break .break-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;

    text-align: center;
    line-height: 2;
    color: var(--bs-white);
    font-weight: bold;

    background-image: url("../img/break.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: background-image 0.3s ease;
}
.break .break-line {
    width: 100%;
    height: 3px;

    background-color: var(--bs-primary);
    border-radius: var(--bs-border-radius-pill);

    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

/* --------------------------------- #modal --------------------------------- */
.modal-dialog {
    --bs-modal-padding: 1.5rem;
    --bs-modal-header-padding: 1.5rem;
    --bs-modal-header-border-width: 0;
    --bs-modal-footer-border-width: 0;
}

/* custom modals */
.custom-modal .modal-content {
    background-color: transparent;
    color: var(--bs-white);

    border: none;
    border-radius: 0;

    text-align: center;
}
.custom-modal .modal-header,
.custom-modal .modal-footer {
    border: none;
    justify-content: center;
}
.custom-modal .btn-close {
    filter: invert(1);
}
.custom-modal .form-control {
    border-radius: var(--bs-border-radius-pill);
}
.modal-backdrop.show {
    opacity: 0.9;
    background-color: #000;
}

/* --------------------------------- #swiper -------------------------------- */
.swiper {
    --swiper-theme-color: var(--bs-primary);
}
/* 
 * vertical swiper
*/
.vertical-swiper {
    height: 700px;
    overflow: hidden;
    position: relative;
    padding-right: 2rem;
}
.vertical-swiper .swiper-wrapper {
    padding: 0.5rem;
}

.swiper-wrapper{
    height: auto !important;
}

.vertical-swiper .swiper-slide {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.vertical-swiper .slide-quote {
    opacity: 0.05;

    position: absolute;
    top: 0;
    left: 2%;
    z-index: 1;
}
.vertical-swiper .slide-body {
    width: 70%;
    background: var(--bs-light);

    transition: width 300ms ease, filter 300ms ease, opacity 300ms ease;

    opacity: 0.75;
    filter: blur(0.25rem);

    border-radius: var(--bs-border-radius-xxl);
    padding: 1rem 2rem;
}
.vertical-swiper .swiper-slide.is-main .slide-body {
    width: 98%;

    opacity: 1;
    filter: none;
}
.vertical-swiper .swiper-slide.is-below .slide-body,
.vertical-swiper .swiper-slide.is-above .slide-body {
    width: 90%;
}
.vertical-swiper .swiper-slide.is-far .slide-body {
    width: 82%;
}
.vertical-swiper .swiper-button-next::after,
.vertical-swiper .swiper-button-prev::after {
    display: none !important;
}
.vertical-swiper .swiper-button-next,
.vertical-swiper .swiper-button-prev {
    right: 0 !important;
    left: none !important;
}
.vertical-swiper .swiper-button-next {
    transform: translateY(2rem);
}
.vertical-swiper .swiper-button-prev {
    transform: translateY(-2rem);
}
/* 
* about swiper
*/
.about-swiper .slide-image {
    height: 300px;
    overflow: hidden;
}

.about-swiper .slide-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}
.about-swiper .slide-image img,
.about-swiper .slide-text {
    border-radius: var(--visual-border-radius);
}
.about-swiper .slide-text {
    height: 300px;
    background-color: var(--bs-secondary-bg-subtle);

    padding: 2rem;
    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.about-swiper .swiper-button-next::after,
.about-swiper .swiper-button-prev::after {
    display: none !important;
}
.about-swiper .swiper-button-next,
.about-swiper .swiper-button-prev {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);

    width: 50px;
    height: 50px;
}
.about-swiper .swiper-button-prev {
    transform: translateX(2rem) !important;
}
.about-swiper .swiper-button-next {
    transform: translateX(-2rem) !important;
}

/* 
* product
*/
.mySwiper2 {
    /* height: 80%; */
    width: 100%;
}
.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}
.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* -------------------------------- #actions -------------------------------- */
/* actions */
.actions {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
}
@media (min-width: 576px) {
    .actions {
        left: 2rem;
        gap: 1rem;
    }
}
@media (min-width: 992px) {
    .actions {
        left: 3rem;
        gap: 2rem;
    }
}
/* actions mini */
.actions-mini-wrapper {
    position: relative;

    padding-bottom: 4rem;
    margin-bottom: 5rem;

    border-bottom-left-radius: var(--visual-border-radius);
    border-bottom-right-radius: var(--visual-border-radius);
}
.actions-mini-wrapper.min-height {
    min-height: 200px;
}
.actions-mini {
    position: absolute;
    top: 2rem;
    left: 1rem;
    z-index: 10;

    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
}

.actions-mini2 {
    position: absolute;
    top: 2rem;
    right: 1rem;
    z-index: 10;

    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .actions-mini {
        gap: 1rem;
        left: 2rem;
    }
}
@media (min-width: 992px) {
    .actions-mini {
        gap: 2rem;
        left: 3rem;
    }
}

.actions-nav {
    position: absolute;
    left: 0;
    right: 35%;
    bottom: -1.5rem;

    padding-inline: 5rem;
    max-width: 100%;

    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;

    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.actions-nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;

    text-align: center;
    line-height: 2;
    color: var(--bs-white);
    font-weight: bold;

    background-image: url("../img/button.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: background-image 0.3s ease;
}

.actions-nav a.active,
.actions-nav a:hover {
    background-image: url("../img/button-active.webp");
}
/* search */
.search-wrapper {
    white-space: nowrap;

    background-color: var(--bs-light);
    border-radius: var(--bs-border-radius-pill);
}
.search-input {
    /* Hidden by default */
    width: 0;
    opacity: 0;

    padding-left: 0;
    padding-right: 0;
    margin-left: 0;

    transition: width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease, padding-left 0.3s ease, padding-right 0.3s ease;
}
.search-wrapper.is-open .search-input {
    /* When open: show the input */
    opacity: 1;
    width: 250px;

    margin-left: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
@media (max-width: 576px) {
    .search-wrapper.is-open .search-input {
        width: min(180px, 60vw);
    }
}
.search-input {
    background-color: transparent !important;
}

/* -------------------------------------------------------------------------- */
/*                                   #layout                                  */
/* -------------------------------------------------------------------------- */
/* -------------------------------- #wrapper -------------------------------- */
.wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;

    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 576px) {
    .wrapper {
        max-width: 600px;
    }
}

@media screen and (min-width: 768px) {
    .wrapper {
        max-width: 800px;
    }
}

@media screen and (min-width: 992px) {
    .wrapper {
        max-width: 1000px;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .wrapper {
        max-width: 1680px;
    }
}

.wrapper-xs {
    width: 100%;
  /*  max-width: 380px;*/
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-sm {
    width: 100%;
    /*max-width: 576px;*/
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-md {
    width: 100%;
  /*  max-width: 768px;*/
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-lg {
    width: 100%;
   /* max-width: 992px;*/
    position: relative;

    margin: 1.5rem auto;
}

/* -------------------------------- #overlay -------------------------------- */
#overlay {
    position: absolute;
    inset: 0;
    z-index: 20;

    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#overlay.overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* --------------------------------- #header -------------------------------- */
.header {
    position: relative;
    z-index: 50;
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    column-gap: 0.75rem;

    position: relative;
    overflow: visible;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("../img/header.jpg");

    height: 125px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}
@media (min-width: 576px) {
    .header-wrapper {
        height: 150px;
        margin-top: 3rem;
    }
}
@media (min-width: 992px) {
    .header-wrapper {
        height: 225px;
    }
}
.header-wrapper > .flex-grow-1 {
    grid-row: 2;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-center {
    grid-column: 2;
    grid-row: 1 / -1;
    justify-self: center;
    align-self: center;

    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.header-logo {
    width: 125px;

    display: flex;
    justify-self: center;
    align-self: center;

    transition: filter 0.3s ease-in-out;
    filter: drop-shadow(0 -1px 5px rgba(0, 0, 0, 0.8));
    z-index: 1;
}
@media (min-width: 576px) {
    .header-logo {
        width: 175px;
    }
}
@media (min-width: 992px) {
    .header-logo {
        width: 200px;
    }
}
.header-logo:hover,
.header-logo:focus {
    filter: drop-shadow(0 -1px 7px rgba(0, 0, 0, 1));
}
.header-logo img {
    display: block;
    height: auto;
    max-width: 100%;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.header-logo:hover img,
.header-logo:focus img {
    filter: grayscale(1);
}

.header-nav {
    list-style: none;
    margin-bottom: 0;

    margin-top: auto;
    height: 70px;
    padding: 0 2rem;

    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
@media (min-width: 992px) {
    .header-nav {
        height: 100px;
    }
}
.header-nav img {
    display: block;
    height: auto;
    max-width: 100%;
}

.header-nav li,
.header-nav a {
    height: 100%;
}
.header-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;

    -webkit-filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.5));

    transition: filter 0.3s ease-in-out;
}
.header-nav a:hover,
.header-nav a:focus {
    filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
/* submenu */
.header-nav > li {
    position: relative;
}
.header-nav > li > ul {
    display: none;

    width: 100%;
    min-width: 200px;
    background-color: var(--bs-secondary);
    background-color: #ad8668;
    padding: 1rem 0;
    border-bottom-right-radius: var(--bs-border-radius-xxl);
    border-bottom-left-radius: var(--bs-border-radius-xxl);

    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.header-nav > li:hover > ul,
.header-nav > li > ul:hover {
    display: block;
}
.header-nav > li > ul a {
    padding: 1rem;
    color: var(--bs-white);
    font-size: 1.5rem;
}
/* --------------------------------- #footer -------------------------------- */
.footer {
    padding: 2rem;
    border-top-left-radius: var(--visual-border-radius);
    border-top-right-radius: var(--visual-border-radius);
}
.footer-logo img {
    display: block;
    height: auto;
    max-width: 100%;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.footer-logo:hover img,
.footer-logo:focus img {
    filter: grayscale(1);
}

/* ---------------------------------- #main --------------------------------- */
.main {
    flex: 1;
    position: relative;
}

/* -------------------------------------------------------------------------- */
/*                                   #pages                                   */
/* -------------------------------------------------------------------------- */

/* --------------------------------- #index --------------------------------- */
.index-slider .swiper {
    position: relative;

    border-bottom-left-radius: var(--visual-border-radius);
    border-bottom-right-radius: var(--visual-border-radius);
}
.index-slider #overlay {
    border-bottom-left-radius: var(--visual-border-radius);
    border-bottom-right-radius: var(--visual-border-radius);
}

/* story */
.story-wrapper {
    width: 100%;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}
.story-wrapper .story-line {
    width: 100%;
    height: 3px;

    background-color: var(--bs-primary);
    border-radius: var(--bs-border-radius-pill);

    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

/* video */
.video-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    inset: 0;
    z-index: 0;
}
.video-hero-overlay {
    background: rgba(0, 0, 0, 0.55);

    position: absolute;
    inset: 0;
    z-index: 1;
}
.video-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* ---------------------------------- #shop --------------------------------- */

/* accordion */
.accordion-filters .accordion-item {
    border: 0;
    margin-bottom: 1rem;
}
.accordion-filters .accordion-button {
    box-shadow: none;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* --------------------------------- #about --------------------------------- */
/* capsule */
.capsule-item {
    position: relative;
    display: block;
    overflow: hidden;
}
.capsule-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}
.capsule-overlay {
    opacity: 0;
    transition: background 0.3s ease;
    background: rgba(0, 0, 0, 0);

    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}
.capsule-item:hover .capsule-overlay {
    background: rgba(0, 0, 0, 0.75);
    opacity: 1;
}
@media (min-width: 768px) {
    .capsule-start {
        border-radius: var(--visual-border-radius) 0 0 var(--visual-border-radius);
    }
    .capsule-end {
        border-radius: 0 var(--visual-border-radius) var(--visual-border-radius) 0;
    }
}
@media (max-width: 767.98px) {
    .capsule-start {
        border-radius: var(--visual-border-radius) var(--visual-border-radius) 0 0;
    }
    .capsule-end {
        border-radius: 0 0 var(--visual-border-radius) var(--visual-border-radius);
    }
}

/* tabs */
#aboutTabs .nav-link {
    border: none;
    border-radius: 0;
    background-color: transparent;

    padding: 0.5rem 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.25rem;
    border-bottom: 3px solid var(--bs-primary);

    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    #aboutTabs .nav-link {
        width: 75%;
    }
    #aboutTabs .nav-link.active {
        width: 100%;
    }
}
#aboutTabs .nav-link.active {
    background-color: transparent;

    color: var(--bs-primary);
    border-bottom-color: var(--bs-secondary);
}
#aboutTabs .nav-link:not(.active):hover {
    opacity: 0.5;
}

/* ------------------------------ #news-detail ------------------------------ */
.post .post-entry {
    padding: 1.5rem 0;
    margin-bottom: 3rem;
}
.post .post-entry p {
    font-size: 18px;
    line-height: 2;
}


.menu_font{

    color: white;
    font-size: 2.625rem;
    font-family: nastaligh;
    font-weight: bold



}
.accordion-button:not(.collapsed) {

color: black;


}
.text-justify-custom{
    text-align: justify;
    text-justify: inter-word;
}


@media (max-width: 767px) {

.actions-nav{
    right:0px !important;
}

}

@media (min-width: 768px) and (max-width:1023px){

    .actions-nav {
        right: 25% !important;
    }

}

@media (min-width: 1024px) and (max-width:1439px) {

    .actions-nav {
        right: 30% !important;
    }

}