├── .gitignore ├── LICENSE ├── README.md ├── factor-template ├── Factor-Informal.html ├── Factor-Official.html ├── Factor-Personal.html ├── assets │ ├── css │ │ ├── style.css │ │ └── style.css.map │ ├── images │ │ ├── factor-informal.png │ │ ├── factor-official.png │ │ └── factor-personal.png │ └── scss │ │ └── style.scss ├── package-lock.json └── package.json ├── footer-1 ├── Readme.md ├── assets │ ├── css │ │ ├── footer.css │ │ └── footer.css.map │ ├── img │ │ ├── 24-hours-support.svg │ │ ├── L-1.png │ │ ├── L-2.png │ │ ├── delivery-truck.svg │ │ ├── easy-return.svg │ │ ├── income.svg │ │ └── original.svg │ └── scss │ │ └── footer.scss ├── footer-screen.png ├── footer.html ├── package-lock.json └── package.json ├── footer-2 ├── Footer-Dark-Screen.png ├── Readme.md ├── assets │ ├── 4xmen-logo.svg │ ├── css │ │ ├── footer.css │ │ └── footer.css.map │ └── scss │ │ └── footer.scss ├── footer.html ├── package-lock.json └── package.json ├── footer-3 ├── assets │ ├── css │ │ ├── footer-dark-purple.css │ │ └── footer-dark-purple.css.map │ ├── img │ │ └── 4xmen-logo.svg │ └── scss │ │ └── footer-dark-purple.scss ├── footer-dark-purple.html ├── footer-dark-purple.png ├── package-lock.json └── package.json ├── footer-4 ├── assets │ ├── css │ │ ├── footer-4.css │ │ └── footer-4.css.map │ ├── img │ │ └── logo.svg │ └── sass │ │ └── footer-4.scss ├── footer-4-screen.png └── footer-4.html ├── login-form-1 ├── LICENSE ├── README.md ├── assets │ ├── css │ │ ├── style.css │ │ ├── style.css.map │ │ └── style.scss │ ├── img │ │ ├── contact.png │ │ └── readme-contact.png │ └── scss │ │ └── style.scss ├── contact.html ├── package-lock.json └── package.json ├── mega-menu-1 ├── LICENSE ├── Mega-Menu-Screen.png ├── README.md ├── assets │ ├── css │ │ ├── mega-menu.css │ │ └── mega-menu.css.map │ ├── img │ │ ├── mahlogo.svg │ │ ├── main2.jpeg │ │ ├── main3.jpeg │ │ └── main5.jpg │ ├── js │ │ └── mega-menu.js │ └── scss │ │ └── mega-menu.scss ├── mega-menu.html ├── package-lock.json └── package.json ├── mega-menu-2 ├── assets │ ├── css │ │ ├── mega-menu-2.css │ │ └── mega-menu-2.css.map │ ├── js │ │ └── mega-menu.js │ ├── media │ │ ├── best_league.jpg │ │ ├── best_steam_selling.webp │ │ ├── d4_2.webp │ │ ├── d4_3.webp │ │ └── d4_4.webp │ └── scss │ │ └── mega-menu-2.scss ├── mega-menu-2-screen.png ├── mega-menu-2.html └── package.json ├── mega-menu-3 ├── assets │ ├── css │ │ ├── mega-menu-3.css │ │ └── mega-menu-3.css.map │ ├── img │ │ ├── 4xmen-logo.svg │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ └── site.webmanifest │ │ └── logo │ │ │ ├── bootstrap-original.svg │ │ │ ├── css3-plain.svg │ │ │ ├── debian-plain.svg │ │ │ ├── html5-plain.svg │ │ │ ├── java-plain.svg │ │ │ ├── javascript-plain.svg │ │ │ ├── laravel-plain.svg │ │ │ ├── linux-original.svg │ │ │ ├── mysql-plain.svg │ │ │ ├── php-plain.svg │ │ │ ├── react-original.svg │ │ │ └── vuejs-original.svg │ └── scss │ │ └── mega-menu-3.scss ├── mega-menu-3-screen.png └── mega-menu-3.html ├── mega-menu-4 ├── assets │ ├── css │ │ ├── mega-menu-4.css │ │ └── mega-menu-4.css.map │ ├── js │ │ └── mega-menu-4.js │ └── scss │ │ └── mega-menu-4.scss ├── mega-menu-4-screen.png └── mega-menu-4.html ├── navbar-1 ├── 4xmen-logo.svg ├── Navbar-screen.png ├── README.md ├── navbar-1.html ├── package-lock.json └── package.json ├── package.json ├── pricing-1 ├── assets │ ├── css │ │ ├── pricing.css │ │ └── pricing.css.map │ ├── js │ │ └── pricing.js │ └── scss │ │ └── _pricing.scss ├── pricing-1-screen.png └── pricing-1.html ├── template-1 ├── assets │ ├── css │ │ ├── inex.css │ │ ├── main.css │ │ └── particles.css │ ├── images │ │ ├── 4xmen.svg │ │ ├── bg-body.png │ │ ├── bg2.svg │ │ └── xmen-wave.svg │ ├── temp │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ └── vendor │ │ ├── bulma │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bulma.sass │ │ ├── css │ │ │ ├── bulma-rtl.css │ │ │ ├── bulma-rtl.css.map │ │ │ ├── bulma-rtl.min.css │ │ │ ├── bulma.css │ │ │ ├── bulma.css.map │ │ │ └── bulma.min.css │ │ ├── package.json │ │ └── sass │ │ │ ├── base │ │ │ ├── _all.sass │ │ │ ├── animations.sass │ │ │ ├── generic.sass │ │ │ ├── helpers.sass │ │ │ └── minireset.sass │ │ │ ├── components │ │ │ ├── _all.sass │ │ │ ├── breadcrumb.sass │ │ │ ├── card.sass │ │ │ ├── dropdown.sass │ │ │ ├── level.sass │ │ │ ├── media.sass │ │ │ ├── menu.sass │ │ │ ├── message.sass │ │ │ ├── modal.sass │ │ │ ├── navbar.sass │ │ │ ├── pagination.sass │ │ │ ├── panel.sass │ │ │ └── tabs.sass │ │ │ ├── elements │ │ │ ├── _all.sass │ │ │ ├── box.sass │ │ │ ├── button.sass │ │ │ ├── container.sass │ │ │ ├── content.sass │ │ │ ├── form.sass │ │ │ ├── icon.sass │ │ │ ├── image.sass │ │ │ ├── notification.sass │ │ │ ├── other.sass │ │ │ ├── progress.sass │ │ │ ├── table.sass │ │ │ ├── tag.sass │ │ │ └── title.sass │ │ │ ├── form │ │ │ ├── _all.sass │ │ │ ├── checkbox-radio.sass │ │ │ ├── file.sass │ │ │ ├── input-textarea.sass │ │ │ ├── select.sass │ │ │ ├── shared.sass │ │ │ └── tools.sass │ │ │ ├── grid │ │ │ ├── _all.sass │ │ │ ├── columns.sass │ │ │ └── tiles.sass │ │ │ ├── helpers │ │ │ ├── _all.sass │ │ │ ├── color.sass │ │ │ ├── flexbox.sass │ │ │ ├── float.sass │ │ │ ├── other.sass │ │ │ ├── overflow.sass │ │ │ ├── position.sass │ │ │ ├── spacing.sass │ │ │ ├── typography.sass │ │ │ └── visibility.sass │ │ │ ├── layout │ │ │ ├── _all.sass │ │ │ ├── footer.sass │ │ │ ├── hero.sass │ │ │ └── section.sass │ │ │ └── utilities │ │ │ ├── _all.sass │ │ │ ├── animations.sass │ │ │ ├── controls.sass │ │ │ ├── derived-variables.sass │ │ │ ├── extends.sass │ │ │ ├── functions.sass │ │ │ ├── initial-variables.sass │ │ │ └── mixins.sass │ │ ├── particle-footer │ │ └── footer.js │ │ ├── particle-header │ │ ├── TweenMax.min.js │ │ ├── easeljs-0.7.1.min.js │ │ └── part-header.js │ │ └── vazirmatn │ │ ├── AUTHORS.txt │ │ ├── CHANGELOG.md │ │ ├── OFL.txt │ │ ├── README.md │ │ ├── Round-Dots │ │ ├── Vazirmatn-RD-font-face.css │ │ ├── fonts │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-Black.ttf │ │ │ │ ├── Vazirmatn-RD-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-Light.ttf │ │ │ │ ├── Vazirmatn-RD-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-Thin.ttf │ │ │ ├── variable │ │ │ │ └── Vazirmatn-RD[wght].ttf │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-SemiBold.woff2 │ │ │ │ ├── Vazirmatn-RD-Thin.woff2 │ │ │ │ └── Vazirmatn-RD[wght].woff2 │ │ └── misc │ │ │ ├── Farsi-Digits-Non-Latin │ │ │ ├── Vazirmatn-RD-FD-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-Black.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-Light.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-FD-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-FD-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-FD-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-RD-FD-NL-Thin.woff2 │ │ │ ├── Farsi-Digits │ │ │ ├── Vazirmatn-RD-FD-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-FD-Black.ttf │ │ │ │ ├── Vazirmatn-RD-FD-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-FD-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-FD-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-FD-Light.ttf │ │ │ │ ├── Vazirmatn-RD-FD-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-FD-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-FD-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-FD-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-FD-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-FD-SemiBold.woff2 │ │ │ │ └── Vazirmatn-RD-FD-Thin.woff2 │ │ │ ├── Non-Latin │ │ │ ├── Vazirmatn-RD-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-NL-Black.ttf │ │ │ │ ├── Vazirmatn-RD-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-NL-Light.ttf │ │ │ │ ├── Vazirmatn-RD-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-NL-Thin.ttf │ │ │ │ ├── variable │ │ │ │ └── Vazirmatn-RD-NL[wght].ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-SemiBold.woff2 │ │ │ │ ├── Vazirmatn-RD-NL-Thin.woff2 │ │ │ │ └── Vazirmatn-RD-NL[wght].woff2 │ │ │ ├── UI-Farsi-Digits-Non-Latin │ │ │ ├── Vazirmatn-RD-UI-FD-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Black.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Light.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-UI-FD-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-RD-UI-FD-NL-Thin.woff2 │ │ │ ├── UI-Farsi-Digits │ │ │ ├── Vazirmatn-RD-UI-FD-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-Black.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-Light.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-UI-FD-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-UI-FD-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-UI-FD-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-FD-SemiBold.woff2 │ │ │ │ └── Vazirmatn-RD-UI-FD-Thin.woff2 │ │ │ ├── UI-Non-Latin │ │ │ ├── Vazirmatn-RD-UI-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-Black.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-Light.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-RD-UI-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-RD-UI-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-RD-UI-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-RD-UI-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-RD-UI-NL-Thin.woff2 │ │ │ └── UI │ │ │ ├── Vazirmatn-RD-UI-font-face.css │ │ │ └── fonts │ │ │ ├── ttf │ │ │ ├── Vazirmatn-RD-UI-Black.ttf │ │ │ ├── Vazirmatn-RD-UI-Bold.ttf │ │ │ ├── Vazirmatn-RD-UI-ExtraBold.ttf │ │ │ ├── Vazirmatn-RD-UI-ExtraLight.ttf │ │ │ ├── Vazirmatn-RD-UI-Light.ttf │ │ │ ├── Vazirmatn-RD-UI-Medium.ttf │ │ │ ├── Vazirmatn-RD-UI-Regular.ttf │ │ │ ├── Vazirmatn-RD-UI-SemiBold.ttf │ │ │ └── Vazirmatn-RD-UI-Thin.ttf │ │ │ └── webfonts │ │ │ ├── Vazirmatn-RD-UI-Black.woff2 │ │ │ ├── Vazirmatn-RD-UI-Bold.woff2 │ │ │ ├── Vazirmatn-RD-UI-ExtraBold.woff2 │ │ │ ├── Vazirmatn-RD-UI-ExtraLight.woff2 │ │ │ ├── Vazirmatn-RD-UI-Light.woff2 │ │ │ ├── Vazirmatn-RD-UI-Medium.woff2 │ │ │ ├── Vazirmatn-RD-UI-Regular.woff2 │ │ │ ├── Vazirmatn-RD-UI-SemiBold.woff2 │ │ │ └── Vazirmatn-RD-UI-Thin.woff2 │ │ ├── Vazirmatn-Variable-font-face.css │ │ ├── Vazirmatn-font-face.css │ │ ├── fonts │ │ ├── ttf │ │ │ ├── Vazirmatn-Black.ttf │ │ │ ├── Vazirmatn-Bold.ttf │ │ │ ├── Vazirmatn-ExtraBold.ttf │ │ │ ├── Vazirmatn-ExtraLight.ttf │ │ │ ├── Vazirmatn-Light.ttf │ │ │ ├── Vazirmatn-Medium.ttf │ │ │ ├── Vazirmatn-Regular.ttf │ │ │ ├── Vazirmatn-SemiBold.ttf │ │ │ └── Vazirmatn-Thin.ttf │ │ ├── variable │ │ │ └── Vazirmatn[wght].ttf │ │ └── webfonts │ │ │ ├── Vazirmatn-Black.woff2 │ │ │ ├── Vazirmatn-Bold.woff2 │ │ │ ├── Vazirmatn-ExtraBold.woff2 │ │ │ ├── Vazirmatn-ExtraLight.woff2 │ │ │ ├── Vazirmatn-Light.woff2 │ │ │ ├── Vazirmatn-Medium.woff2 │ │ │ ├── Vazirmatn-Regular.woff2 │ │ │ ├── Vazirmatn-SemiBold.woff2 │ │ │ ├── Vazirmatn-Thin.woff2 │ │ │ └── Vazirmatn[wght].woff2 │ │ ├── misc │ │ ├── Farsi-Digits-Non-Latin │ │ │ ├── Vazirmatn-FD-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-FD-NL-Black.ttf │ │ │ │ ├── Vazirmatn-FD-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-FD-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-FD-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-FD-NL-Light.ttf │ │ │ │ ├── Vazirmatn-FD-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-FD-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-FD-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-FD-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-FD-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-FD-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-FD-NL-Thin.woff2 │ │ ├── Farsi-Digits │ │ │ ├── Vazirmatn-FD-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-FD-Black.ttf │ │ │ │ ├── Vazirmatn-FD-Bold.ttf │ │ │ │ ├── Vazirmatn-FD-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-FD-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-FD-Light.ttf │ │ │ │ ├── Vazirmatn-FD-Medium.ttf │ │ │ │ ├── Vazirmatn-FD-Regular.ttf │ │ │ │ ├── Vazirmatn-FD-SemiBold.ttf │ │ │ │ └── Vazirmatn-FD-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-FD-Black.woff2 │ │ │ │ ├── Vazirmatn-FD-Bold.woff2 │ │ │ │ ├── Vazirmatn-FD-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-FD-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-FD-Light.woff2 │ │ │ │ ├── Vazirmatn-FD-Medium.woff2 │ │ │ │ ├── Vazirmatn-FD-Regular.woff2 │ │ │ │ ├── Vazirmatn-FD-SemiBold.woff2 │ │ │ │ └── Vazirmatn-FD-Thin.woff2 │ │ ├── Non-Latin │ │ │ ├── Vazirmatn-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-NL-Black.ttf │ │ │ │ ├── Vazirmatn-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-NL-Light.ttf │ │ │ │ ├── Vazirmatn-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-NL-Thin.ttf │ │ │ │ ├── variable │ │ │ │ └── Vazirmatn-NL[wght].ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-NL-SemiBold.woff2 │ │ │ │ ├── Vazirmatn-NL-Thin.woff2 │ │ │ │ └── Vazirmatn-NL[wght].woff2 │ │ ├── UI-Farsi-Digits-Non-Latin │ │ │ ├── Vazirmatn-UI-FD-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-Black.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-Light.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-UI-FD-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-UI-FD-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-UI-FD-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-UI-FD-NL-Thin.woff2 │ │ ├── UI-Farsi-Digits │ │ │ ├── Vazirmatn-UI-FD-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-UI-FD-Black.ttf │ │ │ │ ├── Vazirmatn-UI-FD-Bold.ttf │ │ │ │ ├── Vazirmatn-UI-FD-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-UI-FD-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-UI-FD-Light.ttf │ │ │ │ ├── Vazirmatn-UI-FD-Medium.ttf │ │ │ │ ├── Vazirmatn-UI-FD-Regular.ttf │ │ │ │ ├── Vazirmatn-UI-FD-SemiBold.ttf │ │ │ │ └── Vazirmatn-UI-FD-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-UI-FD-Black.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-Bold.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-Light.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-Medium.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-Regular.woff2 │ │ │ │ ├── Vazirmatn-UI-FD-SemiBold.woff2 │ │ │ │ └── Vazirmatn-UI-FD-Thin.woff2 │ │ ├── UI-Non-Latin │ │ │ ├── Vazirmatn-UI-NL-font-face.css │ │ │ └── fonts │ │ │ │ ├── ttf │ │ │ │ ├── Vazirmatn-UI-NL-Black.ttf │ │ │ │ ├── Vazirmatn-UI-NL-Bold.ttf │ │ │ │ ├── Vazirmatn-UI-NL-ExtraBold.ttf │ │ │ │ ├── Vazirmatn-UI-NL-ExtraLight.ttf │ │ │ │ ├── Vazirmatn-UI-NL-Light.ttf │ │ │ │ ├── Vazirmatn-UI-NL-Medium.ttf │ │ │ │ ├── Vazirmatn-UI-NL-Regular.ttf │ │ │ │ ├── Vazirmatn-UI-NL-SemiBold.ttf │ │ │ │ └── Vazirmatn-UI-NL-Thin.ttf │ │ │ │ └── webfonts │ │ │ │ ├── Vazirmatn-UI-NL-Black.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-Bold.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-ExtraBold.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-ExtraLight.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-Light.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-Medium.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-Regular.woff2 │ │ │ │ ├── Vazirmatn-UI-NL-SemiBold.woff2 │ │ │ │ └── Vazirmatn-UI-NL-Thin.woff2 │ │ └── UI │ │ │ ├── Vazirmatn-UI-font-face.css │ │ │ └── fonts │ │ │ ├── ttf │ │ │ ├── Vazirmatn-UI-Black.ttf │ │ │ ├── Vazirmatn-UI-Bold.ttf │ │ │ ├── Vazirmatn-UI-ExtraBold.ttf │ │ │ ├── Vazirmatn-UI-ExtraLight.ttf │ │ │ ├── Vazirmatn-UI-Light.ttf │ │ │ ├── Vazirmatn-UI-Medium.ttf │ │ │ ├── Vazirmatn-UI-Regular.ttf │ │ │ ├── Vazirmatn-UI-SemiBold.ttf │ │ │ └── Vazirmatn-UI-Thin.ttf │ │ │ └── webfonts │ │ │ ├── Vazirmatn-UI-Black.woff2 │ │ │ ├── Vazirmatn-UI-Bold.woff2 │ │ │ ├── Vazirmatn-UI-ExtraBold.woff2 │ │ │ ├── Vazirmatn-UI-ExtraLight.woff2 │ │ │ ├── Vazirmatn-UI-Light.woff2 │ │ │ ├── Vazirmatn-UI-Medium.woff2 │ │ │ ├── Vazirmatn-UI-Regular.woff2 │ │ │ ├── Vazirmatn-UI-SemiBold.woff2 │ │ │ └── Vazirmatn-UI-Thin.woff2 │ │ └── package.json ├── index.html └── xmen-template.png └── xUtA0PwF.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/README.md -------------------------------------------------------------------------------- /factor-template/Factor-Informal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/Factor-Informal.html -------------------------------------------------------------------------------- /factor-template/Factor-Official.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/Factor-Official.html -------------------------------------------------------------------------------- /factor-template/Factor-Personal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/Factor-Personal.html -------------------------------------------------------------------------------- /factor-template/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/css/style.css -------------------------------------------------------------------------------- /factor-template/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/css/style.css.map -------------------------------------------------------------------------------- /factor-template/assets/images/factor-informal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/images/factor-informal.png -------------------------------------------------------------------------------- /factor-template/assets/images/factor-official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/images/factor-official.png -------------------------------------------------------------------------------- /factor-template/assets/images/factor-personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/images/factor-personal.png -------------------------------------------------------------------------------- /factor-template/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/assets/scss/style.scss -------------------------------------------------------------------------------- /factor-template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/package-lock.json -------------------------------------------------------------------------------- /factor-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/factor-template/package.json -------------------------------------------------------------------------------- /footer-1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/Readme.md -------------------------------------------------------------------------------- /footer-1/assets/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/css/footer.css -------------------------------------------------------------------------------- /footer-1/assets/css/footer.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/css/footer.css.map -------------------------------------------------------------------------------- /footer-1/assets/img/24-hours-support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/24-hours-support.svg -------------------------------------------------------------------------------- /footer-1/assets/img/L-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/L-1.png -------------------------------------------------------------------------------- /footer-1/assets/img/L-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/L-2.png -------------------------------------------------------------------------------- /footer-1/assets/img/delivery-truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/delivery-truck.svg -------------------------------------------------------------------------------- /footer-1/assets/img/easy-return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/easy-return.svg -------------------------------------------------------------------------------- /footer-1/assets/img/income.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/income.svg -------------------------------------------------------------------------------- /footer-1/assets/img/original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/img/original.svg -------------------------------------------------------------------------------- /footer-1/assets/scss/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/assets/scss/footer.scss -------------------------------------------------------------------------------- /footer-1/footer-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/footer-screen.png -------------------------------------------------------------------------------- /footer-1/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/footer.html -------------------------------------------------------------------------------- /footer-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/package-lock.json -------------------------------------------------------------------------------- /footer-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-1/package.json -------------------------------------------------------------------------------- /footer-2/Footer-Dark-Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/Footer-Dark-Screen.png -------------------------------------------------------------------------------- /footer-2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/Readme.md -------------------------------------------------------------------------------- /footer-2/assets/4xmen-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/assets/4xmen-logo.svg -------------------------------------------------------------------------------- /footer-2/assets/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/assets/css/footer.css -------------------------------------------------------------------------------- /footer-2/assets/css/footer.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/assets/css/footer.css.map -------------------------------------------------------------------------------- /footer-2/assets/scss/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/assets/scss/footer.scss -------------------------------------------------------------------------------- /footer-2/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/footer.html -------------------------------------------------------------------------------- /footer-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/package-lock.json -------------------------------------------------------------------------------- /footer-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-2/package.json -------------------------------------------------------------------------------- /footer-3/assets/css/footer-dark-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/assets/css/footer-dark-purple.css -------------------------------------------------------------------------------- /footer-3/assets/css/footer-dark-purple.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/assets/css/footer-dark-purple.css.map -------------------------------------------------------------------------------- /footer-3/assets/img/4xmen-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/assets/img/4xmen-logo.svg -------------------------------------------------------------------------------- /footer-3/assets/scss/footer-dark-purple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/assets/scss/footer-dark-purple.scss -------------------------------------------------------------------------------- /footer-3/footer-dark-purple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/footer-dark-purple.html -------------------------------------------------------------------------------- /footer-3/footer-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/footer-dark-purple.png -------------------------------------------------------------------------------- /footer-3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/package-lock.json -------------------------------------------------------------------------------- /footer-3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-3/package.json -------------------------------------------------------------------------------- /footer-4/assets/css/footer-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/assets/css/footer-4.css -------------------------------------------------------------------------------- /footer-4/assets/css/footer-4.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/assets/css/footer-4.css.map -------------------------------------------------------------------------------- /footer-4/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/assets/img/logo.svg -------------------------------------------------------------------------------- /footer-4/assets/sass/footer-4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/assets/sass/footer-4.scss -------------------------------------------------------------------------------- /footer-4/footer-4-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/footer-4-screen.png -------------------------------------------------------------------------------- /footer-4/footer-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/footer-4/footer-4.html -------------------------------------------------------------------------------- /login-form-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/LICENSE -------------------------------------------------------------------------------- /login-form-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/README.md -------------------------------------------------------------------------------- /login-form-1/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/assets/css/style.css -------------------------------------------------------------------------------- /login-form-1/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/assets/css/style.css.map -------------------------------------------------------------------------------- /login-form-1/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /login-form-1/assets/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/assets/img/contact.png -------------------------------------------------------------------------------- /login-form-1/assets/img/readme-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/assets/img/readme-contact.png -------------------------------------------------------------------------------- /login-form-1/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/assets/scss/style.scss -------------------------------------------------------------------------------- /login-form-1/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/contact.html -------------------------------------------------------------------------------- /login-form-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/package-lock.json -------------------------------------------------------------------------------- /login-form-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/login-form-1/package.json -------------------------------------------------------------------------------- /mega-menu-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/LICENSE -------------------------------------------------------------------------------- /mega-menu-1/Mega-Menu-Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/Mega-Menu-Screen.png -------------------------------------------------------------------------------- /mega-menu-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/README.md -------------------------------------------------------------------------------- /mega-menu-1/assets/css/mega-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/css/mega-menu.css -------------------------------------------------------------------------------- /mega-menu-1/assets/css/mega-menu.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/css/mega-menu.css.map -------------------------------------------------------------------------------- /mega-menu-1/assets/img/mahlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/img/mahlogo.svg -------------------------------------------------------------------------------- /mega-menu-1/assets/img/main2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/img/main2.jpeg -------------------------------------------------------------------------------- /mega-menu-1/assets/img/main3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/img/main3.jpeg -------------------------------------------------------------------------------- /mega-menu-1/assets/img/main5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/img/main5.jpg -------------------------------------------------------------------------------- /mega-menu-1/assets/js/mega-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/js/mega-menu.js -------------------------------------------------------------------------------- /mega-menu-1/assets/scss/mega-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/assets/scss/mega-menu.scss -------------------------------------------------------------------------------- /mega-menu-1/mega-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/mega-menu.html -------------------------------------------------------------------------------- /mega-menu-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/package-lock.json -------------------------------------------------------------------------------- /mega-menu-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-1/package.json -------------------------------------------------------------------------------- /mega-menu-2/assets/css/mega-menu-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/css/mega-menu-2.css -------------------------------------------------------------------------------- /mega-menu-2/assets/css/mega-menu-2.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/css/mega-menu-2.css.map -------------------------------------------------------------------------------- /mega-menu-2/assets/js/mega-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/js/mega-menu.js -------------------------------------------------------------------------------- /mega-menu-2/assets/media/best_league.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/media/best_league.jpg -------------------------------------------------------------------------------- /mega-menu-2/assets/media/best_steam_selling.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/media/best_steam_selling.webp -------------------------------------------------------------------------------- /mega-menu-2/assets/media/d4_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/media/d4_2.webp -------------------------------------------------------------------------------- /mega-menu-2/assets/media/d4_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/media/d4_3.webp -------------------------------------------------------------------------------- /mega-menu-2/assets/media/d4_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/media/d4_4.webp -------------------------------------------------------------------------------- /mega-menu-2/assets/scss/mega-menu-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/assets/scss/mega-menu-2.scss -------------------------------------------------------------------------------- /mega-menu-2/mega-menu-2-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/mega-menu-2-screen.png -------------------------------------------------------------------------------- /mega-menu-2/mega-menu-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/mega-menu-2.html -------------------------------------------------------------------------------- /mega-menu-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-2/package.json -------------------------------------------------------------------------------- /mega-menu-3/assets/css/mega-menu-3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/css/mega-menu-3.css -------------------------------------------------------------------------------- /mega-menu-3/assets/css/mega-menu-3.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/css/mega-menu-3.css.map -------------------------------------------------------------------------------- /mega-menu-3/assets/img/4xmen-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/4xmen-logo.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /mega-menu-3/assets/img/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/favicon/site.webmanifest -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/bootstrap-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/bootstrap-original.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/css3-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/css3-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/debian-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/debian-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/html5-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/html5-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/java-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/java-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/javascript-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/javascript-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/laravel-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/laravel-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/linux-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/linux-original.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/mysql-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/mysql-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/php-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/php-plain.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/react-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/react-original.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/img/logo/vuejs-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/img/logo/vuejs-original.svg -------------------------------------------------------------------------------- /mega-menu-3/assets/scss/mega-menu-3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/assets/scss/mega-menu-3.scss -------------------------------------------------------------------------------- /mega-menu-3/mega-menu-3-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/mega-menu-3-screen.png -------------------------------------------------------------------------------- /mega-menu-3/mega-menu-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-3/mega-menu-3.html -------------------------------------------------------------------------------- /mega-menu-4/assets/css/mega-menu-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/assets/css/mega-menu-4.css -------------------------------------------------------------------------------- /mega-menu-4/assets/css/mega-menu-4.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/assets/css/mega-menu-4.css.map -------------------------------------------------------------------------------- /mega-menu-4/assets/js/mega-menu-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/assets/js/mega-menu-4.js -------------------------------------------------------------------------------- /mega-menu-4/assets/scss/mega-menu-4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/assets/scss/mega-menu-4.scss -------------------------------------------------------------------------------- /mega-menu-4/mega-menu-4-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/mega-menu-4-screen.png -------------------------------------------------------------------------------- /mega-menu-4/mega-menu-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/mega-menu-4/mega-menu-4.html -------------------------------------------------------------------------------- /navbar-1/4xmen-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/navbar-1/4xmen-logo.svg -------------------------------------------------------------------------------- /navbar-1/Navbar-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/navbar-1/Navbar-screen.png -------------------------------------------------------------------------------- /navbar-1/README.md: -------------------------------------------------------------------------------- 1 | # نوبار-۱ 2 | 3 | 4 | -------------------------------------------------------------------------------- /navbar-1/navbar-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/navbar-1/navbar-1.html -------------------------------------------------------------------------------- /navbar-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/navbar-1/package-lock.json -------------------------------------------------------------------------------- /navbar-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/navbar-1/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/package.json -------------------------------------------------------------------------------- /pricing-1/assets/css/pricing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/assets/css/pricing.css -------------------------------------------------------------------------------- /pricing-1/assets/css/pricing.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/assets/css/pricing.css.map -------------------------------------------------------------------------------- /pricing-1/assets/js/pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/assets/js/pricing.js -------------------------------------------------------------------------------- /pricing-1/assets/scss/_pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/assets/scss/_pricing.scss -------------------------------------------------------------------------------- /pricing-1/pricing-1-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/pricing-1-screen.png -------------------------------------------------------------------------------- /pricing-1/pricing-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/pricing-1/pricing-1.html -------------------------------------------------------------------------------- /template-1/assets/css/inex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/css/inex.css -------------------------------------------------------------------------------- /template-1/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/css/main.css -------------------------------------------------------------------------------- /template-1/assets/css/particles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/css/particles.css -------------------------------------------------------------------------------- /template-1/assets/images/4xmen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/images/4xmen.svg -------------------------------------------------------------------------------- /template-1/assets/images/bg-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/images/bg-body.png -------------------------------------------------------------------------------- /template-1/assets/images/bg2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/images/bg2.svg -------------------------------------------------------------------------------- /template-1/assets/images/xmen-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/images/xmen-wave.svg -------------------------------------------------------------------------------- /template-1/assets/temp/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/temp/1.jpg -------------------------------------------------------------------------------- /template-1/assets/temp/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/temp/2.jpg -------------------------------------------------------------------------------- /template-1/assets/temp/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/temp/3.jpg -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/LICENSE -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/README.md -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/bulma.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/bulma.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma-rtl.css -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma-rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma-rtl.css.map -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma-rtl.min.css -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma.css -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma.css.map -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/css/bulma.min.css -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/package.json -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/base/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/base/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/base/animations.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/base/animations.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/base/generic.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/base/generic.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/base/helpers.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/base/helpers.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/base/minireset.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/base/minireset.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/breadcrumb.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/breadcrumb.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/card.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/card.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/dropdown.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/dropdown.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/level.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/level.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/media.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/media.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/menu.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/menu.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/message.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/message.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/modal.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/modal.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/navbar.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/navbar.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/pagination.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/pagination.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/panel.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/panel.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/components/tabs.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/components/tabs.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/box.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/box.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/button.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/button.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/container.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/container.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/content.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/content.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/form.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/form.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/icon.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/icon.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/image.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/image.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/notification.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/notification.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/other.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/other.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/progress.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/progress.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/table.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/table.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/tag.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/tag.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/elements/title.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/elements/title.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/checkbox-radio.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/checkbox-radio.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/file.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/file.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/input-textarea.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/input-textarea.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/select.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/select.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/shared.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/shared.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/form/tools.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/form/tools.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/grid/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/grid/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/grid/columns.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/grid/columns.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/grid/tiles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/grid/tiles.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/color.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/color.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/flexbox.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/flexbox.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/float.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/float.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/other.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/other.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/overflow.sass: -------------------------------------------------------------------------------- 1 | .is-clipped 2 | overflow: hidden !important 3 | -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/position.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/position.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/spacing.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/spacing.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/typography.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/typography.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/helpers/visibility.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/helpers/visibility.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/layout/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/layout/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/layout/footer.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/layout/footer.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/layout/hero.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/layout/hero.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/layout/section.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/layout/section.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/_all.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/animations.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/animations.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/controls.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/controls.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/derived-variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/derived-variables.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/extends.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/extends.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/functions.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/functions.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/initial-variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/initial-variables.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/bulma/sass/utilities/mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/bulma/sass/utilities/mixins.sass -------------------------------------------------------------------------------- /template-1/assets/vendor/particle-footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/particle-footer/footer.js -------------------------------------------------------------------------------- /template-1/assets/vendor/particle-header/TweenMax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/particle-header/TweenMax.min.js -------------------------------------------------------------------------------- /template-1/assets/vendor/particle-header/easeljs-0.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/particle-header/easeljs-0.7.1.min.js -------------------------------------------------------------------------------- /template-1/assets/vendor/particle-header/part-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/particle-header/part-header.js -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/AUTHORS.txt -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/CHANGELOG.md -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/OFL.txt -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/README.md -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/Vazirmatn-RD-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/Vazirmatn-RD-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/ttf/Vazirmatn-RD-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/variable/Vazirmatn-RD[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/variable/Vazirmatn-RD[wght].ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/fonts/webfonts/Vazirmatn-RD[wght].woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/Vazirmatn-RD-FD-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/Vazirmatn-RD-FD-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-FD-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-FD-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/Vazirmatn-RD-FD-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/Vazirmatn-RD-FD-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/ttf/Vazirmatn-RD-FD-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-RD-FD-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/Vazirmatn-RD-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/Vazirmatn-RD-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/ttf/Vazirmatn-RD-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/variable/Vazirmatn-RD-NL[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/variable/Vazirmatn-RD-NL[wght].ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/Non-Latin/fonts/webfonts/Vazirmatn-RD-NL[wght].woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/Vazirmatn-RD-UI-FD-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/Vazirmatn-RD-UI-FD-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-FD-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-FD-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/Vazirmatn-RD-UI-FD-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/Vazirmatn-RD-UI-FD-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-RD-UI-FD-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-RD-UI-FD-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/Vazirmatn-RD-UI-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/Vazirmatn-RD-UI-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-RD-UI-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-RD-UI-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/Vazirmatn-RD-UI-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/Vazirmatn-RD-UI-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/ttf/Vazirmatn-RD-UI-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Round-Dots/misc/UI/fonts/webfonts/Vazirmatn-RD-UI-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Vazirmatn-Variable-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Vazirmatn-Variable-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/Vazirmatn-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/Vazirmatn-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/ttf/Vazirmatn-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/variable/Vazirmatn[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/variable/Vazirmatn[wght].ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/fonts/webfonts/Vazirmatn[wght].woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/Vazirmatn-FD-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/Vazirmatn-FD-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-FD-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/Vazirmatn-FD-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/Vazirmatn-FD-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/ttf/Vazirmatn-FD-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Farsi-Digits/fonts/webfonts/Vazirmatn-FD-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/Vazirmatn-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/Vazirmatn-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/ttf/Vazirmatn-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/variable/Vazirmatn-NL[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/variable/Vazirmatn-NL[wght].ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/Non-Latin/fonts/webfonts/Vazirmatn-NL[wght].woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/Vazirmatn-UI-FD-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/Vazirmatn-UI-FD-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/ttf/Vazirmatn-UI-FD-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-UI-FD-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/Vazirmatn-UI-FD-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/Vazirmatn-UI-FD-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/ttf/Vazirmatn-UI-FD-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Farsi-Digits/fonts/webfonts/Vazirmatn-UI-FD-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/Vazirmatn-UI-NL-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/Vazirmatn-UI-NL-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/ttf/Vazirmatn-UI-NL-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI-Non-Latin/fonts/webfonts/Vazirmatn-UI-NL-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/Vazirmatn-UI-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/Vazirmatn-UI-font-face.css -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Black.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Bold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-ExtraBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-ExtraLight.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Light.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Medium.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Regular.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-SemiBold.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/ttf/Vazirmatn-UI-Thin.ttf -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Black.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Bold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-ExtraBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-ExtraLight.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Light.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Medium.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Regular.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-SemiBold.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/misc/UI/fonts/webfonts/Vazirmatn-UI-Thin.woff2 -------------------------------------------------------------------------------- /template-1/assets/vendor/vazirmatn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/assets/vendor/vazirmatn/package.json -------------------------------------------------------------------------------- /template-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/index.html -------------------------------------------------------------------------------- /template-1/xmen-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/template-1/xmen-template.png -------------------------------------------------------------------------------- /xUtA0PwF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4xmen/Web-Package-RTL/HEAD/xUtA0PwF.gif --------------------------------------------------------------------------------