├── README.md ├── assets ├── css │ └── style.css ├── img │ ├── apple-touch-icon.png │ ├── clients │ │ ├── client-1.png │ │ ├── client-2.png │ │ ├── client-3.png │ │ ├── client-4.png │ │ ├── client-5.png │ │ └── client-6.png │ ├── counts-img.svg │ ├── cta-bg.jpg │ ├── favicon.png │ ├── hero-img.png │ ├── illustration-6.svg │ ├── more-services-1.jpg │ ├── more-services-2.jpg │ ├── more-services-3.jpg │ ├── more-services-4.jpg │ ├── portfolio │ │ ├── portfolio-1.jpg │ │ ├── portfolio-10.png │ │ ├── portfolio-11.jpg │ │ ├── portfolio-12.jpg │ │ ├── portfolio-13.jpg │ │ ├── portfolio-14.jpg │ │ ├── portfolio-15.jpg │ │ ├── portfolio-16.jpg │ │ ├── portfolio-17.jpg │ │ ├── portfolio-18.jpg │ │ ├── portfolio-19.jpg │ │ ├── portfolio-2.jpg │ │ ├── portfolio-20.jpg │ │ ├── portfolio-21.jpg │ │ ├── portfolio-22.jpg │ │ ├── portfolio-23.jpg │ │ ├── portfolio-24.jpg │ │ ├── portfolio-25.jpg │ │ ├── portfolio-26.jpg │ │ ├── portfolio-27.jpg │ │ ├── portfolio-28.jpg │ │ ├── portfolio-29.jpg │ │ ├── portfolio-3.jpg │ │ ├── portfolio-30.jpg │ │ ├── portfolio-31.jpg │ │ ├── portfolio-32.png │ │ ├── portfolio-33.jpg │ │ ├── portfolio-34.jpg │ │ ├── portfolio-35.jpg │ │ ├── portfolio-36.jpg │ │ ├── portfolio-37.jpg │ │ ├── portfolio-38.jpg │ │ ├── portfolio-39.jpg │ │ ├── portfolio-4.jpg │ │ ├── portfolio-40.jpg │ │ ├── portfolio-41.jpg │ │ ├── portfolio-42.jpg │ │ ├── portfolio-43.jpg │ │ ├── portfolio-44.jpg │ │ ├── portfolio-45.jpg │ │ ├── portfolio-46.jpg │ │ ├── portfolio-47.jpg │ │ ├── portfolio-48.jpg │ │ ├── portfolio-49.jpg │ │ ├── portfolio-5.jpg │ │ ├── portfolio-50.jpg │ │ ├── portfolio-51.jpeg │ │ ├── portfolio-6.jpg │ │ ├── portfolio-7.jpg │ │ ├── portfolio-8.jpg │ │ └── portfolio-9.jpg │ ├── skills.png │ └── why-us.png ├── js │ └── main.js └── vendor │ ├── aos │ ├── aos.css │ └── aos.js │ ├── bootstrap-icons │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 │ └── index.html │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── boxicons │ ├── css │ │ ├── animations.css │ │ ├── boxicons.css │ │ ├── boxicons.min.css │ │ └── transformations.css │ └── fonts │ │ ├── boxicons.eot │ │ ├── boxicons.svg │ │ ├── boxicons.ttf │ │ ├── boxicons.woff │ │ └── boxicons.woff2 │ ├── glightbox │ ├── css │ │ ├── glightbox.css │ │ ├── glightbox.min.css │ │ ├── plyr.css │ │ └── plyr.min.css │ └── js │ │ ├── glightbox.js │ │ └── glightbox.min.js │ ├── isotope-layout │ ├── isotope.pkgd.js │ └── isotope.pkgd.min.js │ ├── php-email-form │ └── validate.js │ ├── purecounter │ └── purecounter_vanilla.js │ ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.less │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 │ ├── swiper │ ├── swiper-bundle.min.css │ ├── swiper-bundle.min.js │ └── swiper-bundle.min.js.map │ └── waypoints │ └── noframework.waypoints.js └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/clients/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-1.png -------------------------------------------------------------------------------- /assets/img/clients/client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-2.png -------------------------------------------------------------------------------- /assets/img/clients/client-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-3.png -------------------------------------------------------------------------------- /assets/img/clients/client-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-4.png -------------------------------------------------------------------------------- /assets/img/clients/client-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-5.png -------------------------------------------------------------------------------- /assets/img/clients/client-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/clients/client-6.png -------------------------------------------------------------------------------- /assets/img/counts-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/counts-img.svg -------------------------------------------------------------------------------- /assets/img/cta-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/cta-bg.jpg -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/hero-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/hero-img.png -------------------------------------------------------------------------------- /assets/img/illustration-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/illustration-6.svg -------------------------------------------------------------------------------- /assets/img/more-services-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/more-services-1.jpg -------------------------------------------------------------------------------- /assets/img/more-services-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/more-services-2.jpg -------------------------------------------------------------------------------- /assets/img/more-services-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/more-services-3.jpg -------------------------------------------------------------------------------- /assets/img/more-services-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/more-services-4.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-10.png -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-11.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-12.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-13.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-14.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-15.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-16.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-17.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-18.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-19.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-20.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-21.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-22.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-23.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-24.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-25.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-26.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-27.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-28.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-29.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-30.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-31.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-32.png -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-33.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-34.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-35.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-36.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-37.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-38.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-39.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-40.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-41.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-42.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-43.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-44.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-45.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-46.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-47.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-48.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-49.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-50.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-51.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-51.jpeg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/portfolio/portfolio-9.jpg -------------------------------------------------------------------------------- /assets/img/skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/skills.png -------------------------------------------------------------------------------- /assets/img/why-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/img/why-us.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/aos/aos.css -------------------------------------------------------------------------------- /assets/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/aos/aos.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap-icons/index.html -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/css/glightbox.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/css/glightbox.min.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/css/plyr.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/plyr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/css/plyr.min.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/js/glightbox.js -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/glightbox/js/glightbox.min.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /assets/vendor/purecounter/purecounter_vanilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/purecounter/purecounter_vanilla.js -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/swiper/swiper-bundle.min.css -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/swiper/swiper-bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/swiper/swiper-bundle.min.js.map -------------------------------------------------------------------------------- /assets/vendor/waypoints/noframework.waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/assets/vendor/waypoints/noframework.waypoints.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/CryptDarshan/HEAD/index.html --------------------------------------------------------------------------------