├── .github └── workflows │ └── azure-static-web-apps-ashy-bay-000a36e10.yml ├── assets ├── css │ ├── animate.css │ ├── bootsnav.css │ ├── bootstrap.min.css │ ├── flaticon.css │ ├── font-awesome.min.css │ ├── linearicons.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── responsive.css │ └── style.css ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.svg │ ├── Flaticon.ttf │ ├── Flaticon.woff │ ├── FontAwesome.otf │ ├── Linearicons-Free.eot │ ├── Linearicons-Free.svg │ ├── Linearicons-Free.ttf │ ├── Linearicons-Free.woff │ ├── Linearicons-Free.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── brand │ │ ├── br1.png │ │ ├── br2.png │ │ ├── br3.png │ │ ├── br4.png │ │ ├── br5.png │ │ └── br6.png │ ├── clients │ │ ├── c1.png │ │ ├── c2.png │ │ └── c3.png │ ├── featured-cars │ │ ├── fc1.png │ │ ├── fc2.png │ │ ├── fc3.png │ │ ├── fc4.png │ │ ├── fc5.png │ │ ├── fc6.png │ │ ├── fc7.png │ │ └── fc8.png │ ├── new-cars-model │ │ ├── ncm1.png │ │ ├── ncm2.png │ │ └── ncm3.png │ └── welcome-hero │ │ └── welcome-banner.jpg ├── js │ ├── bootsnav.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── feather.min.js │ ├── jquery.js │ └── owl.carousel.min.js └── logo │ └── favicon.png ├── index.html └── readme.txt /.github/workflows/azure-static-web-apps-ashy-bay-000a36e10.yml: -------------------------------------------------------------------------------- 1 | name: Azure Static Web Apps CI/CD 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [opened, synchronize, reopened, closed] 9 | branches: 10 | - master 11 | 12 | jobs: 13 | build_and_deploy_job: 14 | if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') 15 | runs-on: ubuntu-latest 16 | name: Build and Deploy Job 17 | steps: 18 | - uses: actions/checkout@v3 19 | with: 20 | submodules: true 21 | lfs: false 22 | - name: Build And Deploy 23 | id: builddeploy 24 | uses: Azure/static-web-apps-deploy@v1 25 | with: 26 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_ASHY_BAY_000A36E10 }} 27 | repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) 28 | action: "upload" 29 | ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### 30 | # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig 31 | app_location: "/" # App source code path 32 | api_location: "" # Api source code path - optional 33 | output_location: "." # Built app content directory - optional 34 | ###### End of Repository/Build Configurations ###### 35 | 36 | close_pull_request_job: 37 | if: github.event_name == 'pull_request' && github.event.action == 'closed' 38 | runs-on: ubuntu-latest 39 | name: Close Pull Request Job 40 | steps: 41 | - name: Close Pull Request 42 | id: closepullrequest 43 | uses: Azure/static-web-apps-deploy@v1 44 | with: 45 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_ASHY_BAY_000A36E10 }} 46 | action: "close" 47 | -------------------------------------------------------------------------------- /assets/css/flaticon.css: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 23/05/2018 10:29 4 | */ 5 | 6 | @font-face { 7 | font-family: "Flaticon"; 8 | src: url("../fonts/Flaticon.eot"); 9 | src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), 10 | url("../fonts/Flaticon.woff") format("woff"), 11 | url("../fonts/Flaticon.ttf") format("truetype"), 12 | url("../fonts/Flaticon.svg#Flaticon") format("svg"); 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | @media screen and (-webkit-min-device-pixel-ratio:0) { 18 | @font-face { 19 | font-family: "Flaticon"; 20 | src: url("../fonts/Flaticon.svg#Flaticon") format("svg"); 21 | } 22 | } 23 | 24 | [class^="flaticon-"]:before, [class*=" flaticon-"]:before, 25 | [class^="flaticon-"]:after, [class*=" flaticon-"]:after { 26 | font-family: Flaticon; 27 | font-size: 20px; 28 | font-style: normal; 29 | margin-left: 0px; 30 | } 31 | 32 | .flaticon-car-1:before { content: "\f100"; } 33 | .flaticon-car-repair:before { content: "\f101"; } 34 | .flaticon-car:before { content: "\f102"; } 35 | .flaticon-arrow-down-angle:before { content: "\f103"; } -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /assets/css/linearicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Linearicons-Free'; 3 | src:url('../fonts/Linearicons-Free.eot?w118d'); 4 | src:url('../fonts/Linearicons-Free.eot?#iefixw118d') format('embedded-opentype'), 5 | url('../fonts/Linearicons-Free.woff2?w118d') format('woff2'), 6 | url('../fonts/Linearicons-Free.woff?w118d') format('woff'), 7 | url('../fonts/Linearicons-Free.ttf?w118d') format('truetype'), 8 | url('../fonts/Linearicons-Free.svg?w118d#Linearicons-Free') format('svg'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | .lnr { 14 | font-family: 'Linearicons-Free'; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Better Font Rendering =========== */ 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | .lnr-home:before { 28 | content: "\e800"; 29 | } 30 | .lnr-apartment:before { 31 | content: "\e801"; 32 | } 33 | .lnr-pencil:before { 34 | content: "\e802"; 35 | } 36 | .lnr-magic-wand:before { 37 | content: "\e803"; 38 | } 39 | .lnr-drop:before { 40 | content: "\e804"; 41 | } 42 | .lnr-lighter:before { 43 | content: "\e805"; 44 | } 45 | .lnr-poop:before { 46 | content: "\e806"; 47 | } 48 | .lnr-sun:before { 49 | content: "\e807"; 50 | } 51 | .lnr-moon:before { 52 | content: "\e808"; 53 | } 54 | .lnr-cloud:before { 55 | content: "\e809"; 56 | } 57 | .lnr-cloud-upload:before { 58 | content: "\e80a"; 59 | } 60 | .lnr-cloud-download:before { 61 | content: "\e80b"; 62 | } 63 | .lnr-cloud-sync:before { 64 | content: "\e80c"; 65 | } 66 | .lnr-cloud-check:before { 67 | content: "\e80d"; 68 | } 69 | .lnr-database:before { 70 | content: "\e80e"; 71 | } 72 | .lnr-lock:before { 73 | content: "\e80f"; 74 | } 75 | .lnr-cog:before { 76 | content: "\e810"; 77 | } 78 | .lnr-trash:before { 79 | content: "\e811"; 80 | } 81 | .lnr-dice:before { 82 | content: "\e812"; 83 | } 84 | .lnr-heart:before { 85 | content: "\e813"; 86 | } 87 | .lnr-star:before { 88 | content: "\e814"; 89 | } 90 | .lnr-star-half:before { 91 | content: "\e815"; 92 | } 93 | .lnr-star-empty:before { 94 | content: "\e816"; 95 | } 96 | .lnr-flag:before { 97 | content: "\e817"; 98 | } 99 | .lnr-envelope:before { 100 | content: "\e818"; 101 | } 102 | .lnr-paperclip:before { 103 | content: "\e819"; 104 | } 105 | .lnr-inbox:before { 106 | content: "\e81a"; 107 | } 108 | .lnr-eye:before { 109 | content: "\e81b"; 110 | } 111 | .lnr-printer:before { 112 | content: "\e81c"; 113 | } 114 | .lnr-file-empty:before { 115 | content: "\e81d"; 116 | } 117 | .lnr-file-add:before { 118 | content: "\e81e"; 119 | } 120 | .lnr-enter:before { 121 | content: "\e81f"; 122 | } 123 | .lnr-exit:before { 124 | content: "\e820"; 125 | } 126 | .lnr-graduation-hat:before { 127 | content: "\e821"; 128 | } 129 | .lnr-license:before { 130 | content: "\e822"; 131 | } 132 | .lnr-music-note:before { 133 | content: "\e823"; 134 | } 135 | .lnr-film-play:before { 136 | content: "\e824"; 137 | } 138 | .lnr-camera-video:before { 139 | content: "\e825"; 140 | } 141 | .lnr-camera:before { 142 | content: "\e826"; 143 | } 144 | .lnr-picture:before { 145 | content: "\e827"; 146 | } 147 | .lnr-book:before { 148 | content: "\e828"; 149 | } 150 | .lnr-bookmark:before { 151 | content: "\e829"; 152 | } 153 | .lnr-user:before { 154 | content: "\e82a"; 155 | } 156 | .lnr-users:before { 157 | content: "\e82b"; 158 | } 159 | .lnr-shirt:before { 160 | content: "\e82c"; 161 | } 162 | .lnr-store:before { 163 | content: "\e82d"; 164 | } 165 | .lnr-cart:before { 166 | content: "\e82e"; 167 | } 168 | .lnr-tag:before { 169 | content: "\e82f"; 170 | } 171 | .lnr-phone-handset:before { 172 | content: "\e830"; 173 | } 174 | .lnr-phone:before { 175 | content: "\e831"; 176 | } 177 | .lnr-pushpin:before { 178 | content: "\e832"; 179 | } 180 | .lnr-map-marker:before { 181 | content: "\e833"; 182 | } 183 | .lnr-map:before { 184 | content: "\e834"; 185 | } 186 | .lnr-location:before { 187 | content: "\e835"; 188 | } 189 | .lnr-calendar-full:before { 190 | content: "\e836"; 191 | } 192 | .lnr-keyboard:before { 193 | content: "\e837"; 194 | } 195 | .lnr-spell-check:before { 196 | content: "\e838"; 197 | } 198 | .lnr-screen:before { 199 | content: "\e839"; 200 | } 201 | .lnr-smartphone:before { 202 | content: "\e83a"; 203 | } 204 | .lnr-tablet:before { 205 | content: "\e83b"; 206 | } 207 | .lnr-laptop:before { 208 | content: "\e83c"; 209 | } 210 | .lnr-laptop-phone:before { 211 | content: "\e83d"; 212 | } 213 | .lnr-power-switch:before { 214 | content: "\e83e"; 215 | } 216 | .lnr-bubble:before { 217 | content: "\e83f"; 218 | } 219 | .lnr-heart-pulse:before { 220 | content: "\e840"; 221 | } 222 | .lnr-construction:before { 223 | content: "\e841"; 224 | } 225 | .lnr-pie-chart:before { 226 | content: "\e842"; 227 | } 228 | .lnr-chart-bars:before { 229 | content: "\e843"; 230 | } 231 | .lnr-gift:before { 232 | content: "\e844"; 233 | } 234 | .lnr-diamond:before { 235 | content: "\e845"; 236 | } 237 | .lnr-linearicons:before { 238 | content: "\e846"; 239 | } 240 | .lnr-dinner:before { 241 | content: "\e847"; 242 | } 243 | .lnr-coffee-cup:before { 244 | content: "\e848"; 245 | } 246 | .lnr-leaf:before { 247 | content: "\e849"; 248 | } 249 | .lnr-paw:before { 250 | content: "\e84a"; 251 | } 252 | .lnr-rocket:before { 253 | content: "\e84b"; 254 | } 255 | .lnr-briefcase:before { 256 | content: "\e84c"; 257 | } 258 | .lnr-bus:before { 259 | content: "\e84d"; 260 | } 261 | .lnr-car:before { 262 | content: "\e84e"; 263 | } 264 | .lnr-train:before { 265 | content: "\e84f"; 266 | } 267 | .lnr-bicycle:before { 268 | content: "\e850"; 269 | } 270 | .lnr-wheelchair:before { 271 | content: "\e851"; 272 | } 273 | .lnr-select:before { 274 | content: "\e852"; 275 | } 276 | .lnr-earth:before { 277 | content: "\e853"; 278 | } 279 | .lnr-smile:before { 280 | content: "\e854"; 281 | } 282 | .lnr-sad:before { 283 | content: "\e855"; 284 | } 285 | .lnr-neutral:before { 286 | content: "\e856"; 287 | } 288 | .lnr-mustache:before { 289 | content: "\e857"; 290 | } 291 | .lnr-alarm:before { 292 | content: "\e858"; 293 | } 294 | .lnr-bullhorn:before { 295 | content: "\e859"; 296 | } 297 | .lnr-volume-high:before { 298 | content: "\e85a"; 299 | } 300 | .lnr-volume-medium:before { 301 | content: "\e85b"; 302 | } 303 | .lnr-volume-low:before { 304 | content: "\e85c"; 305 | } 306 | .lnr-volume:before { 307 | content: "\e85d"; 308 | } 309 | .lnr-mic:before { 310 | content: "\e85e"; 311 | } 312 | .lnr-hourglass:before { 313 | content: "\e85f"; 314 | } 315 | .lnr-undo:before { 316 | content: "\e860"; 317 | } 318 | .lnr-redo:before { 319 | content: "\e861"; 320 | } 321 | .lnr-sync:before { 322 | content: "\e862"; 323 | } 324 | .lnr-history:before { 325 | content: "\e863"; 326 | } 327 | .lnr-clock:before { 328 | content: "\e864"; 329 | } 330 | .lnr-download:before { 331 | content: "\e865"; 332 | } 333 | .lnr-upload:before { 334 | content: "\e866"; 335 | } 336 | .lnr-enter-down:before { 337 | content: "\e867"; 338 | } 339 | .lnr-exit-up:before { 340 | content: "\e868"; 341 | } 342 | .lnr-bug:before { 343 | content: "\e869"; 344 | } 345 | .lnr-code:before { 346 | content: "\e86a"; 347 | } 348 | .lnr-link:before { 349 | content: "\e86b"; 350 | } 351 | .lnr-unlink:before { 352 | content: "\e86c"; 353 | } 354 | .lnr-thumbs-up:before { 355 | content: "\e86d"; 356 | } 357 | .lnr-thumbs-down:before { 358 | content: "\e86e"; 359 | } 360 | .lnr-magnifier:before { 361 | content: "\e86f"; 362 | } 363 | .lnr-cross:before { 364 | content: "\e870"; 365 | } 366 | .lnr-menu:before { 367 | content: "\e871"; 368 | } 369 | .lnr-list:before { 370 | content: "\e872"; 371 | } 372 | .lnr-chevron-up:before { 373 | content: "\e873"; 374 | } 375 | .lnr-chevron-down:before { 376 | content: "\e874"; 377 | } 378 | .lnr-chevron-left:before { 379 | content: "\e875"; 380 | } 381 | .lnr-chevron-right:before { 382 | content: "\e876"; 383 | } 384 | .lnr-arrow-up:before { 385 | content: "\e877"; 386 | } 387 | .lnr-arrow-down:before { 388 | content: "\e878"; 389 | } 390 | .lnr-arrow-left:before { 391 | content: "\e879"; 392 | } 393 | .lnr-arrow-right:before { 394 | content: "\e87a"; 395 | } 396 | .lnr-move:before { 397 | content: "\e87b"; 398 | } 399 | .lnr-warning:before { 400 | content: "\e87c"; 401 | } 402 | .lnr-question-circle:before { 403 | content: "\e87d"; 404 | } 405 | .lnr-menu-circle:before { 406 | content: "\e87e"; 407 | } 408 | .lnr-checkmark-circle:before { 409 | content: "\e87f"; 410 | } 411 | .lnr-cross-circle:before { 412 | content: "\e880"; 413 | } 414 | .lnr-plus-circle:before { 415 | content: "\e881"; 416 | } 417 | .lnr-circle-minus:before { 418 | content: "\e882"; 419 | } 420 | .lnr-arrow-up-circle:before { 421 | content: "\e883"; 422 | } 423 | .lnr-arrow-down-circle:before { 424 | content: "\e884"; 425 | } 426 | .lnr-arrow-left-circle:before { 427 | content: "\e885"; 428 | } 429 | .lnr-arrow-right-circle:before { 430 | content: "\e886"; 431 | } 432 | .lnr-chevron-up-circle:before { 433 | content: "\e887"; 434 | } 435 | .lnr-chevron-down-circle:before { 436 | content: "\e888"; 437 | } 438 | .lnr-chevron-left-circle:before { 439 | content: "\e889"; 440 | } 441 | .lnr-chevron-right-circle:before { 442 | content: "\e88a"; 443 | } 444 | .lnr-crop:before { 445 | content: "\e88b"; 446 | } 447 | .lnr-frame-expand:before { 448 | content: "\e88c"; 449 | } 450 | .lnr-frame-contract:before { 451 | content: "\e88d"; 452 | } 453 | .lnr-layers:before { 454 | content: "\e88e"; 455 | } 456 | .lnr-funnel:before { 457 | content: "\e88f"; 458 | } 459 | .lnr-text-format:before { 460 | content: "\e890"; 461 | } 462 | .lnr-text-format-remove:before { 463 | content: "\e891"; 464 | } 465 | .lnr-text-size:before { 466 | content: "\e892"; 467 | } 468 | .lnr-bold:before { 469 | content: "\e893"; 470 | } 471 | .lnr-italic:before { 472 | content: "\e894"; 473 | } 474 | .lnr-underline:before { 475 | content: "\e895"; 476 | } 477 | .lnr-strikethrough:before { 478 | content: "\e896"; 479 | } 480 | .lnr-highlight:before { 481 | content: "\e897"; 482 | } 483 | .lnr-text-align-left:before { 484 | content: "\e898"; 485 | } 486 | .lnr-text-align-center:before { 487 | content: "\e899"; 488 | } 489 | .lnr-text-align-right:before { 490 | content: "\e89a"; 491 | } 492 | .lnr-text-align-justify:before { 493 | content: "\e89b"; 494 | } 495 | .lnr-line-spacing:before { 496 | content: "\e89c"; 497 | } 498 | .lnr-indent-increase:before { 499 | content: "\e89d"; 500 | } 501 | .lnr-indent-decrease:before { 502 | content: "\e89e"; 503 | } 504 | .lnr-pilcrow:before { 505 | content: "\e89f"; 506 | } 507 | .lnr-direction-ltr:before { 508 | content: "\e8a0"; 509 | } 510 | .lnr-direction-rtl:before { 511 | content: "\e8a1"; 512 | } 513 | .lnr-page-break:before { 514 | content: "\e8a2"; 515 | } 516 | .lnr-sort-alpha-asc:before { 517 | content: "\e8a3"; 518 | } 519 | .lnr-sort-amount-asc:before { 520 | content: "\e8a4"; 521 | } 522 | .lnr-hand:before { 523 | content: "\e8a5"; 524 | } 525 | .lnr-pointer-up:before { 526 | content: "\e8a6"; 527 | } 528 | .lnr-pointer-right:before { 529 | content: "\e8a7"; 530 | } 531 | .lnr-pointer-down:before { 532 | content: "\e8a8"; 533 | } 534 | .lnr-pointer-left:before { 535 | content: "\e8a9"; 536 | } -------------------------------------------------------------------------------- /assets/css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.0 3 | * Copyright 2013-2016 David Deutsch 4 | * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE) 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /assets/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} -------------------------------------------------------------------------------- /assets/css/responsive.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width:1680px){ 2 | 3 | }/*max-width:1680px*/ 4 | @media screen and (max-width:1440px){ 5 | .welcome-hero-txt {padding: 268px 0px 122px;} 6 | .model-search-content {position: relative;bottom: 0;top: 100px;} 7 | }/*max-width:1440px*/ 8 | 9 | @media screen and (max-width:1199px){ 10 | .welcome-hero-txt h2{font-size: 40px;} 11 | .welcome-btn.model-search-btn {margin-left: 28px;} 12 | .featured-cars-img {padding: 0 10px;} 13 | }/*max-width:1199px*/ 14 | 15 | @media screen and (max-width:1024px){ 16 | 17 | }/*max-width:1024px*/ 18 | 19 | @media screen and (max-width:1008px){ 20 | 21 | }/*max-width:1008px*/ 22 | 23 | @media screen and (max-width:992px){ 24 | nav.navbar.bootsnav .navbar-collapse.collapse.in {padding-bottom: 30px;} 25 | nav.navbar.bootsnav {background-color:#000;} 26 | .wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a {padding: 18px 0px;} 27 | nav.navbar.bootsnav .navbar-brand {padding: 25px;} 28 | nav.navbar.bootsnav ul.nav > li > a {padding: 15px 0px;border: transparent;} 29 | }/*max-width:992px*/ 30 | 31 | @media screen and (max-width:991px){ 32 | .welcome-hero-txt h2 {line-height: 1.6;} 33 | 34 | .model-search-content .col-sm-12 {padding: 0 40px;} 35 | .single-model-search:last-child {margin-bottom: 30px;} 36 | .welcome-btn.model-search-btn {margin: 0;} 37 | 38 | .single-new-cars-item {max-width: 450px; margin: 0 auto;} 39 | .new-cars-txt {margin: 30px 0;} 40 | }/*max-width:991px*/ 41 | 42 | @media screen and (max-width:768px){ 43 | 44 | }/*max-width:768px*/ 45 | 46 | @media screen and (max-width:767px){ 47 | .single-service-item {max-width: 350px;margin: 30px auto;} 48 | .single-featured-cars {max-width: 350px;margin: 0 auto;} 49 | .footer-social {text-align: left;} 50 | .footer-social a i {margin-right: 16px;margin-left: 0;} 51 | .hm-foot-email {max-width: 300px;} 52 | }/*max-width:767px*/ 53 | 54 | @media screen and (max-width: 660px){ 55 | 56 | }/*max-width:660px*/ 57 | 58 | @media screen and (max-width: 640px){ 59 | .single-testimonial-box {max-width: 350px;margin: 0 auto;} 60 | }/*max-width:640px*/ 61 | 62 | @media screen and (max-width: 580px){ 63 | 64 | }/*max-width:580px*/ 65 | 66 | @media screen and (max-width: 540px){ 67 | 68 | }/*max-width:540px*/ 69 | 70 | @media screen and (max-width: 480px){ 71 | .welcome-hero h2 {font-size: 30px;} 72 | .single-model-search h2 {font-size:16px;} 73 | }/*max-width:480px*/ 74 | 75 | @media screen and (max-width: 440px){ 76 | .welcome-hero-txt h2,{font-size: 24px;line-height: 1.5;} 77 | 78 | }/*max-width:400px*/ 79 | 80 | @media screen and (max-width: 399px){ 81 | .testimonial-carousel .col-sm-3, .testimonial-carousel .col-xs-12 {width: 260px;} 82 | .single-service-item h2 a {line-height: 1.5;} 83 | .section-header h2 {font-size: 30px;} 84 | }/*max-width:399px*/ 85 | 86 | @media screen and (max-width:350px){ 87 | nav.navbar.bootsnav .navbar-toggle {margin-right: -25px;left:-10px;} 88 | nav.navbar.bootsnav .navbar-brand {padding:25px 0;font-size: 20px;} 89 | .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand, .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {padding: 25px 0px;} 90 | }/*max-width:350px*/ 91 | 92 | @media screen and (max-width: 320px){ 93 | 94 | }/*max-width:320px*/ 95 | 96 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | /*================================== 2 | * Author : "ThemeSine" 3 | * Template Name : CarVilla HTML Template 4 | * Version : 1.0 5 | ==================================== */ 6 | 7 | /*================================== 8 | font-family: 'Poppins', sans-serif; 9 | font-family: 'Rufina', serif; 10 | ==================================== */ 11 | 12 | 13 | /*=========== TABLE OF CONTENTS =========== 14 | 1. General css (Reset code) 15 | 2. Top-area 16 | 3. Welcome-hero 17 | 4. Model-search 18 | 5. Service 19 | 6. New-cars 20 | 7. Featured-cars 21 | 8. Client-say 22 | 9. Brand 23 | 10. Blog 24 | 11. Contact 25 | ==========================================*/ 26 | 27 | /*------------------------------------- 28 | 1.General css (Reset code) 29 | --------------------------------------*/ 30 | *{ 31 | padding: 0; 32 | margin: 0; 33 | } 34 | 35 | *{ 36 | -webkit-box-sizing:border-box; 37 | -moz-box-sizing:border-box; 38 | -o-box-sizing:border-box; 39 | -ms-box-sizing:border-box; 40 | box-sizing:border-box; 41 | } 42 | body{ 43 | font-family: 'Poppins', sans-serif; 44 | font-size:16px; 45 | color:#818998; 46 | text-transform:initial; 47 | max-width:1920px; 48 | margin:0 auto; 49 | overflow-x:hidden; 50 | } 51 | 52 | a,a:hover,a:active,a:focus { 53 | display:inline-block; 54 | text-decoration:none; 55 | color: #444a57; 56 | font-size:20px; 57 | padding:0; 58 | font-weight: 500; 59 | text-transform: capitalize; 60 | } 61 | h1,h2,h3,h4,h5,h6 { 62 | margin: 0; 63 | color:#444a57; 64 | font-size: 20px; 65 | font-weight: 500; 66 | text-transform: capitalize; 67 | } 68 | p { 69 | margin: 0; 70 | color:#818998; 71 | font-size:16px; 72 | line-height: 1.8; 73 | text-transform: initial; 74 | } 75 | img{border:none;max-width:100%; height:auto;} 76 | ul{ 77 | padding: 0; 78 | margin: 0 auto; 79 | list-style: none; 80 | } 81 | ul li { 82 | list-style: none; 83 | display: inline-block; 84 | 85 | } 86 | select,input,textarea,button,.form-control{box-shadow:none;outline:0!important;} 87 | button {background: transparent;border: 0;font-size: 16px;text-transform: capitalize;} 88 | 89 | html,body{height: 100%;} 90 | 91 | [placeholder]:focus::-webkit-input-placeholder { 92 | -webkit-transition: opacity 0.3s 0.3s ease; 93 | -moz-transition: opacity 0.3s 0.3s ease; 94 | -ms-transition: opacity 0.3s 0.3s ease; 95 | -o-transition: opacity 0.3s 0.3s ease; 96 | transition: opacity 0.3s 0.3s ease; 97 | opacity: 0; 98 | } 99 | .owl-carousel {z-index: 0;} 100 | /* section-header */ 101 | .section-header{ 102 | position: relative; 103 | text-align: center; 104 | } 105 | .section-header h2{ 106 | position: relative; 107 | font-size: 36px; 108 | font-weight: 500; 109 | padding-bottom: 35px; 110 | } 111 | .section-header h2:before { 112 | position: absolute; 113 | content: ""; 114 | width: 80px; 115 | height: 2px; 116 | bottom: 0; 117 | left: 50%; 118 | margin-left: -42px; 119 | background: #4e4ffa; 120 | } 121 | .section-header p{color: #444a57;text-transform: capitalize;margin-bottom:10px;} 122 | .section-header h2 span,.section-header p span{text-transform: lowercase;} 123 | 124 | /* section-header */ 125 | 126 | /*=============Style css=========*/ 127 | 128 | 129 | /*------------------------------------- 130 | 2. Top-area 131 | --------------------------------------*/ 132 | nav.navbar.bootsnav { 133 | background-color: transparent; 134 | border-bottom: transparent; 135 | } 136 | .wrap-sticky nav.navbar.bootsnav.sticked {background-color: #000;box-shadow: 0 2px 5px rgba(0,0,0,.2);} 137 | 138 | /*.navbar-brand*/ 139 | .navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus{ 140 | display: inline-block; 141 | color: #fff; 142 | font-size: 24px; 143 | letter-spacing: 3px; 144 | font-family: 'Rufina', serif; 145 | font-weight: 700; 146 | padding: 45px 0px; 147 | text-transform:uppercase; 148 | } 149 | .navbar-header a.navbar-brand span{display: inline-block;color:#4e4ffa;text-transform:capitalize;} 150 | 151 | .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {padding:30px 0px;} 152 | /*.navbar-brand*/ 153 | 154 | /*.nav li*/ 155 | nav.navbar.bootsnav ul.nav > li > a { 156 | color: #f5f7fa; 157 | font-size: 16px; 158 | font-weight: 500; 159 | text-transform:uppercase; 160 | -webkit-transition: 0.3s linear; 161 | -moz-transition: 0.3s linear; 162 | -ms-transition: 0.3s linear; 163 | -o-transition: 0.3s linear; 164 | transition: 0.3s linear; 165 | } 166 | nav.navbar.bootsnav ul.nav > li > a {padding: 48px 21px;} 167 | nav.navbar.bootsnav ul.nav > li > a:hover,nav.navbar.bootsnav ul.nav > li > a:focus{color:#4e4ffa;} 168 | nav.navbar.bootsnav ul.nav > li.active>a {color: #4e4ffa;} 169 | 170 | nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after { 171 | content: ""; 172 | } 173 | nav.navbar.bootsnav ul.nav > li.dropdown span { 174 | font-size: 8px; 175 | margin-left: 15px; 176 | } 177 | .wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a{padding:30px 25px;} 178 | /*.nav li*/ 179 | 180 | /*.menu-ui-design*/ 181 | .menu-ui-design{overflow-y:scroll;height: 350px;} 182 | .menu-ui-design::-webkit-scrollbar { 183 | width:5px; 184 | } 185 | .menu-ui-design::-webkit-scrollbar-track { 186 | -webkit-box-shadow: inset 0 0 8px #000; 187 | } 188 | .menu-ui-design::-webkit-scrollbar-thumb { 189 | background-color: #4e4ffa; 190 | } 191 | /*.menu-ui-design*/ 192 | 193 | /*.navbar-toggle */ 194 | nav.navbar.bootsnav .navbar-toggle { 195 | position: relative; 196 | background-color: transparent; 197 | border: 1px solid #4e4ffa; 198 | padding: 10px; 199 | top: 0; 200 | } 201 | nav.navbar.bootsnav .navbar-toggle i{color: #4e4ffa;} 202 | /*.navbar-toggle */ 203 | 204 | /*------------------------------------- 205 | 3. Welcome-hero 206 | --------------------------------------*/ 207 | .welcome-hero { 208 | position: relative; 209 | background:url(../images/welcome-hero/welcome-banner.jpg)no-repeat; 210 | background-position: center; 211 | background-size: cover; 212 | z-index: 1; 213 | } 214 | .welcome-hero:before { 215 | position: absolute; 216 | content: ""; 217 | top: 0; 218 | left: 0; 219 | width: 100%; 220 | height: 100%; 221 | background: rgba(42,45,84,.60); 222 | } 223 | .header-area{position: absolute;top:0;left:0;width: 100%;z-index: 99;} 224 | 225 | /*.welcome-hero-txt*/ 226 | .welcome-hero-txt{text-align: center;padding:290px 0 372px;} 227 | .welcome-hero-txt h2 { 228 | font-size: 42px; 229 | color: #fff; 230 | font-weight: 700; 231 | text-transform: uppercase; 232 | margin-bottom: 45px; 233 | } 234 | .welcome-hero-txt p { 235 | font-size: 18px; 236 | text-transform: initial; 237 | color: #fff; 238 | font-weight: 500; 239 | max-width: 735px; 240 | margin: 0 auto; 241 | } 242 | .welcome-btn { 243 | display: inline-block; 244 | width: 230px; 245 | height: 60px; 246 | background: #4e4ffa; 247 | color: #fff; 248 | border-radius: 3px; 249 | margin-top: 55px; 250 | -webkit-transition: .3s linear; 251 | -moz-transition:.3s linear; 252 | -ms-transition:.3s linear; 253 | -o-transition:.3s linear; 254 | transition: .3s linear; 255 | } 256 | .welcome-btn:hover{ 257 | background: #0102fa; 258 | } 259 | /*.welcome-hero-txt*/ 260 | 261 | /*------------------------------------- 262 | 4. Model-Search 263 | --------------------------------------*/ 264 | .model-search-content .col-sm-12 {padding: 0;} 265 | .model-search-content { 266 | padding: 40px 0; 267 | background: #fff; 268 | box-shadow:0 10px 40px 0px rgba(38,40,64,.2); 269 | position: absolute; 270 | bottom: -150px; 271 | width: 100%; 272 | border-radius: 3px; 273 | } 274 | 275 | /*.single-model-search*/ 276 | .single-model-search{margin-bottom: 30px;} 277 | .single-model-search:last-child {margin-bottom: 0;} 278 | 279 | .single-model-search h2 { 280 | font-size: 16px; 281 | font-weight: 400; 282 | text-transform: capitalize; 283 | margin-bottom: 20px; 284 | } 285 | /*model-select-icon*/ 286 | .model-select-icon{ 287 | position:relative; 288 | } 289 | .model-select-icon .form-control { 290 | outline: 0!important; 291 | box-shadow: none; 292 | border: 1px solid #f8f8f8; 293 | background: #f8f8f8; 294 | height: 60px; 295 | } 296 | .model-select-icon select { 297 | font-size: 16px; 298 | color: #888f9d; 299 | text-transform: capitalize; 300 | } 301 | .model-select-icon:after{ 302 | position: absolute; 303 | content: "\f103"; 304 | right: 0px; 305 | top: 0; 306 | font-size: 10px; 307 | color: #888f9d; 308 | background: #f8f8f8; 309 | height: 60px; 310 | line-height: 60px; 311 | width: 50px; 312 | text-align: center; 313 | font-family: "Flaticon"; 314 | pointer-events: none; 315 | border: transparent; 316 | }/*model-select-icon*/ 317 | .welcome-btn.model-search-btn { 318 | width: 160px; 319 | margin-top: 80px; 320 | margin-left: 53px; 321 | } 322 | 323 | /*.single-model-search*/ 324 | 325 | /*------------------------------------- 326 | 5. Service 327 | --------------------------------------*/ 328 | .service { padding: 260px 0 87px;} 329 | 330 | .single-service-item{ 331 | text-align: center; 332 | padding:55px 30px 60px; 333 | border-radius: 3px; 334 | margin-bottom: 30px; 335 | border: 1px solid #dadfe9; 336 | -webkit-transition: .3s linear; 337 | -moz-transition:.3s linear; 338 | -ms-transition:.3s linear; 339 | -o-transition:.3s linear; 340 | transition: .3s linear; 341 | } 342 | 343 | .single-service-icon { 344 | display: inline-block; 345 | color: #50616c; 346 | } 347 | .single-service-item h2 a { 348 | font-size:20px; 349 | margin: 35px 0 20px; 350 | } 351 | .single-service-item h2 a span {text-transform: lowercase;} 352 | .single-service-item p {padding-bottom: 35px;text-transform: initial;position: relative;} 353 | .single-service-item p:before { 354 | position: absolute; 355 | content: ""; 356 | width: 20px; 357 | height: 3px; 358 | background: #3030ea; 359 | bottom: 0; 360 | left: 50%; 361 | margin-left: -10px; 362 | } 363 | 364 | .single-service-icon [class^="flaticon-"]:before,.single-service-icon[class*=" flaticon-"]:before,.single-service-icon [class^="flaticon-"]:after,.single-service-icon [class*=" flaticon-"]:after {font-size:60px;} 365 | .single-service-item:hover .single-service-icon [class^="flaticon-"]:before,.single-service-item:hover .single-service-icon [class*=" flaticon-"]:before,.single-service-item:hover .single-service-icon [class^="flaticon-"]:after,.single-service-item:hover .single-service-icon [class*=" flaticon-"]:after {color:#fff;} 366 | 367 | 368 | .single-service-item:hover h2 a,.single-service-item:hover p{color: #fff;} 369 | .single-service-item:hover p:before {background: #fff;} 370 | .single-service-item:hover{box-shadow: 0 12px 30px 0px rgba(0,1,193,.2);background: #4e4ffa;border: 1px solid #4e4ffa;} 371 | 372 | 373 | /*------------------------------------- 374 | 6. New-cars 375 | --------------------------------------*/ 376 | .new-cars{ 377 | background: #f8f9fb; 378 | padding:112px 0 120px; 379 | } 380 | .new-cars-content{padding-top:96px;} 381 | /*.new-cars-txt*/ 382 | .new-cars-txt {margin-left: 29px;margin-bottom: 30px;} 383 | .new-cars-txt h2 a { 384 | font-size: 30px; 385 | font-weight: 500; 386 | margin-bottom: 26px; 387 | } 388 | .new-cars-txt h2 a span {text-transform: uppercase;} 389 | .new-cars-para2 {margin-top: 30px;} 390 | .welcome-btn.new-cars-btn { 391 | width: 176px; 392 | margin-top: 32px; 393 | } 394 | /*.new-cars-txt*/ 395 | 396 | /*.owl-dots */ 397 | .new-cars .owl-theme .owl-dots .owl-dot span { 398 | width: 8px; 399 | height: 8px; 400 | margin: 0px 4px; 401 | background: transparent; 402 | border: 1px solid #6a7781; 403 | border-radius: 50%; 404 | } 405 | .new-cars .owl-theme .owl-dots .owl-dot.active span,.new-cars .owl-theme .owl-dots .owl-dot:hover span {background: #6a7781;} 406 | .new-cars .owl-theme .owl-nav.disabled+.owl-dots {margin-top: 62px;} 407 | /*.owl-dots */ 408 | 409 | /*------------------------------------- 410 | 7. Featured-cars 411 | --------------------------------------*/ 412 | .featured-cars{ 413 | padding:112px 0 120px; 414 | } 415 | .featured-cars-content{padding-top:96px;} 416 | 417 | /*.single-featured-cars*/ 418 | .featured-img-box { 419 | border: 1px solid #dadfe9; 420 | } 421 | .featured-cars-img { 422 | display: flex; 423 | align-items: center; 424 | justify-content: center; 425 | padding: 0 30px; 426 | height: 220px; 427 | border-bottom: 1px solid #dadfe9; 428 | } 429 | .featured-model-info{padding:12px 7px;} 430 | .featured-model-info p { 431 | font-size: 12px; 432 | color: #8c92a0; 433 | text-transform: capitalize; 434 | } 435 | .featured-mi-span{display: inline-block;margin:0 10px;} 436 | .featured-hp-span{display: inline-block;margin-right: 10px;} 437 | .featured-cars-txt{margin:21px 0 47px;} 438 | .featured-cars-txt h2 a{font-size: 16px;margin-bottom: 15px;} 439 | .featured-cars-txt h2 a span{text-transform: uppercase;} 440 | .featured-cars-txt h3{margin-bottom: 10px;} 441 | .featured-cars-txt h3,.featured-cars-txt p{font-size: 13px;} 442 | /*.single-featured-cars*/ 443 | 444 | /*------------------------------------- 445 | 8. Clients-say 446 | --------------------------------------*/ 447 | .clients-say{padding:115px 0 80px;background: #f8f9fb;} 448 | 449 | /*single-testimonial-box */ 450 | .single-testimonial-box { 451 | padding: 50px 30px 57px; 452 | text-align: center; 453 | border: 1px solid #dadfe9; 454 | overflow-x: hidden; 455 | -webkit-transition: .3s; 456 | -moz-transition:.3s; 457 | -ms-transition:.3s; 458 | -o-transition:.3s; 459 | transition: .3s; 460 | } 461 | 462 | /*testimonial-description*/ 463 | .clients-say .testimonial-carousel .col-sm-3, 464 | .clients-say .testimonial-carousel .col-xs-12{ 465 | width:100%; 466 | height:auto; 467 | } 468 | /* testimonial-info */ 469 | .testimonial-img { 470 | margin-right: 5px; 471 | border-radius:50%; 472 | -webkit-transition: .3s; 473 | -moz-transition:.3s; 474 | -ms-transition:.3s; 475 | -o-transition:.3s; 476 | transition: .3s; 477 | } 478 | .testimonial-person h2 a,.testimonial-person h4 { 479 | font-size: 16px; 480 | color: #5e6778; 481 | font-weight: 600; 482 | } 483 | .testimonial-person h4{ 484 | margin-top: 10px; 485 | }/* testimonial-info */ 486 | 487 | 488 | /* testimonial-comment */ 489 | .testimonial-comment p { 490 | font-size: 16px; 491 | color: #5e6778; 492 | margin-top: 30px; 493 | margin-bottom: 25px; 494 | }/* testimonial-comment */ 495 | 496 | 497 | /*testimonial-description*/ 498 | .single-testimonial-box:hover h2 a,.single-testimonial-box:hover h4, .single-testimonial-box:hover p{color: #fff;} 499 | .single-testimonial-box:hover{ 500 | background: #4e4ffa; 501 | border: 1px solid #4e4ffa; 502 | box-shadow: 0 12px 30px 0px rgba(0,1,193,.2); 503 | } 504 | 505 | /*owl carousel*/ 506 | .clients-say .owl-carousel .owl-stage { 507 | position: relative; 508 | padding: 100px 0 40px; 509 | } 510 | .clients-say .owl-carousel .owl-item img { 511 | display: block; 512 | width: 70px; 513 | height: 70px; 514 | border-radius:50%; 515 | margin:0 auto; 516 | } 517 | /*owl carousel*/ 518 | 519 | /*------------------------------------- 520 | 9. Brand 521 | --------------------------------------*/ 522 | .brand{ 523 | padding: 120px 0; 524 | } 525 | .brand-area { 526 | position:relative; 527 | } 528 | .brand-area .item { 529 | padding: 0 40px 0; 530 | } 531 | 532 | .brand .brand-area .owl-carousel .owl-item img { 533 | display: block; 534 | width: 100%; 535 | height:72px; 536 | border-radius:0; 537 | } 538 | /*------------------------------------- 539 | 10. Blog 540 | --------------------------------------*/ 541 | 542 | /*------------------------------------- 543 | 12. Contact 544 | --------------------------------------*/ 545 | .contact { 546 | background: #2a2d54; 547 | } 548 | .footer-top {padding: 112px 0 72px;} 549 | 550 | /*.footer-logo*/ 551 | .footer-logo a,.footer-logo a:hover,.footer-logo a:focus{ 552 | display: inline-block; 553 | color: #fff; 554 | font-size: 24px; 555 | letter-spacing: 3px; 556 | font-family: 'Rufina', serif; 557 | font-weight: 700; 558 | text-transform:uppercase; 559 | } 560 | .single-footer-widget p { 561 | font-size: 14px; 562 | color: #eeeff6; 563 | max-width: 300px; 564 | margin:40px 0 20px; 565 | } 566 | .footer-contact p { 567 | margin: 0; 568 | color: #d1d7e9; 569 | } 570 | /*.footer-logo*/ 571 | 572 | .single-footer-widget {margin-bottom: 40px;} 573 | .single-footer-widget h2 { 574 | font-size: 14px; 575 | color: #fff; 576 | text-transform: uppercase; 577 | margin-bottom: 43px; 578 | } 579 | .single-footer-widget ul li { 580 | display: inherit; 581 | -webkit-transition: .5s; 582 | -moz-transition:.5s; 583 | -ms-transition:.5s; 584 | -o-transition:.5s; 585 | transition: .5s; 586 | } 587 | .single-footer-widget ul li:hover{ 588 | -webkit-transform:translateX(10px); 589 | -moz-transform:translateX(10px); 590 | -ms-transform:translateX(10px); 591 | -o-transform:translateX(10px); 592 | transform:translateX(10px); 593 | } 594 | .single-footer-widget ul li a { 595 | font-size: 14px; 596 | color: #cfd0e3; 597 | font-weight: 300; 598 | padding-bottom: 13px; 599 | } 600 | .single-footer-widget ul li a span {text-transform: lowercase;} 601 | .footer-newsletter p{ 602 | color: #aeafc2; 603 | font-size: 14px; 604 | font-weight: 300; 605 | margin: 0 0 15px; 606 | } 607 | /*hm-foot-email*/ 608 | .hm-foot-email{position: relative;} 609 | .foot-email-box .form-control { 610 | background:#26294d; 611 | display: block; 612 | padding: 15px 20px; 613 | outline:0!important; 614 | box-shadow:0 5px 15px rgba(0,0,0,.2); 615 | border:0; 616 | } 617 | .foot-email-box input[type="text"]{ 618 | font-size: 12px; 619 | color: #666c81; 620 | font-weight: 300; 621 | } 622 | .foot-email-subscribe { 623 | position: absolute; 624 | top: 0; 625 | right: 0; 626 | width: 50px; 627 | height: 100%; 628 | background: transparent; 629 | color: #666c81; 630 | font-size: 12px; 631 | display: flex; 632 | align-items: center; 633 | justify-content: center; 634 | } 635 | .foot-email-box .form-control:hover{ 636 | box-shadow:0 5px 15px rgba(0,0,0,.4); 637 | } 638 | /*hm-foot-email*/ 639 | /*.footer-copyright */ 640 | .footer-copyright { 641 | padding: 20px 0 17px; 642 | border-top: 1px solid #434859; 643 | } 644 | .footer-copyright p,.footer-copyright p a { 645 | color: #a8a9bf; 646 | font-size: 14px; 647 | font-weight: 400; 648 | text-transform: capitalize; 649 | } 650 | .footer-social{text-align: right;} 651 | .footer-social a i { 652 | color: #fff; 653 | opacity: .40; 654 | font-size: 14px; 655 | margin-left: 16px; 656 | -webkit-transition: .3s; 657 | -moz-transition:.3s; 658 | -ms-transition:.3s; 659 | -o-transition:.3s; 660 | transition: .3s; 661 | } 662 | .footer-social i:hover{opacity: .70;} 663 | /*.footer-copyright */ 664 | 665 | /*=============================== 666 | Scroll Top 667 | ===============================*/ 668 | #scroll-Top .return-to-top { 669 | position: fixed; 670 | right: 30px; 671 | bottom: 30px; 672 | display: none; 673 | width: 40px; 674 | line-height: 40px; 675 | height: 40px; 676 | text-align: center; 677 | font-size: 20px; 678 | cursor: pointer; 679 | color: #fff; 680 | background:#4e4ffa; 681 | border:1px solid #4e4ffa; 682 | border-radius:50%; 683 | -webkit-transition: .5s; 684 | -moz-transition:.5s; 685 | -ms-transition:.5s; 686 | -o-transition:.5s; 687 | transition: .5s; 688 | z-index: 2; 689 | } 690 | #scroll-Top .return-to-top:hover { 691 | background:#fff; 692 | color: #4e4ffa; 693 | border:1px solid #4e4ffa; 694 | } 695 | 696 | #scroll-Top .return-to-top i{ 697 | position:relative; 698 | bottom:0; 699 | 700 | } 701 | 702 | #scroll-Top .return-to-top i{ 703 | position: relative; 704 | animation-name: example; 705 | animation-direction: alternate; 706 | animation-iteration-count: infinite; 707 | animation-duration:1s; 708 | } 709 | @keyframes example { 710 | 0% {bottom:0px;} 711 | 100% {bottom:7px;} 712 | } 713 | /*========================Thank you================= -------------------------------------------------------------------------------- /assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /assets/fonts/Flaticon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Created by FontForge 20160405 at Wed May 23 10:29:49 2018 9 | By Apache 10 | Copyright (c) 2018, Apache 11 | 12 | 13 | 14 | 27 | 28 | 30 | 47 | 50 | 68 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Linearicons-Free.eot -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Linearicons-Free.ttf -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Linearicons-Free.woff -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/images/brand/br1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br1.png -------------------------------------------------------------------------------- /assets/images/brand/br2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br2.png -------------------------------------------------------------------------------- /assets/images/brand/br3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br3.png -------------------------------------------------------------------------------- /assets/images/brand/br4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br4.png -------------------------------------------------------------------------------- /assets/images/brand/br5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br5.png -------------------------------------------------------------------------------- /assets/images/brand/br6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/brand/br6.png -------------------------------------------------------------------------------- /assets/images/clients/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/clients/c1.png -------------------------------------------------------------------------------- /assets/images/clients/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/clients/c2.png -------------------------------------------------------------------------------- /assets/images/clients/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/clients/c3.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc1.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc2.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc3.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc4.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc5.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc6.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc7.png -------------------------------------------------------------------------------- /assets/images/featured-cars/fc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/featured-cars/fc8.png -------------------------------------------------------------------------------- /assets/images/new-cars-model/ncm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/new-cars-model/ncm1.png -------------------------------------------------------------------------------- /assets/images/new-cars-model/ncm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/new-cars-model/ncm2.png -------------------------------------------------------------------------------- /assets/images/new-cars-model/ncm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/new-cars-model/ncm3.png -------------------------------------------------------------------------------- /assets/images/welcome-hero/welcome-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/images/welcome-hero/welcome-banner.jpg -------------------------------------------------------------------------------- /assets/js/bootsnav.js: -------------------------------------------------------------------------------- 1 | // ------------------------------------------------------------------------------ // 2 | // 3 | // Template name : Bootsnav - Multi Purpose Header 4 | // Categorie : Bootstrap Menu in CSS 5 | // Author : adamnurdin01 6 | // Version : v.1.2 7 | // Created : 2016-06-02 8 | // Last update : 2016-10-19 9 | // 10 | // ------------------------------------------------------------------------------ // 11 | 12 | (function ($) { 13 | "use strict"; 14 | 15 | var bootsnav = { 16 | initialize: function() { 17 | this.event(); 18 | this.hoverDropdown(); 19 | this.navbarSticky(); 20 | this.navbarScrollspy(); 21 | }, 22 | event : function(){ 23 | 24 | // ------------------------------------------------------------------------------ // 25 | // Variable 26 | // ------------------------------------------------------------------------------ // 27 | var getNav = $("nav.navbar.bootsnav"); 28 | 29 | // ------------------------------------------------------------------------------ // 30 | // Navbar Sticky 31 | // ------------------------------------------------------------------------------ // 32 | var navSticky = getNav.hasClass("navbar-sticky"); 33 | if( navSticky ){ 34 | // Wraped navigation 35 | getNav.wrap("
"); 36 | } 37 | 38 | // ------------------------------------------------------------------------------ // 39 | // Navbar Center 40 | // ------------------------------------------------------------------------------ // 41 | if( getNav.hasClass("brand-center")){ 42 | var postsArr = new Array(), 43 | index = $("nav.brand-center"), 44 | $postsList = index.find('ul.navbar-nav'); 45 | 46 | index.prepend(""); 47 | 48 | //Create array of all posts in lists 49 | index.find('ul.navbar-nav > li').each(function(){ 50 | if( $(this).hasClass("active") ){ 51 | var getElement = $("a", this).eq(0).text(); 52 | $(".storage-name").html(getElement); 53 | } 54 | postsArr.push($(this).html()); 55 | }); 56 | 57 | //Split the array at this point. The original array is altered. 58 | var firstList = postsArr.splice(0, Math.round(postsArr.length / 2)), 59 | secondList = postsArr, 60 | ListHTML = ''; 61 | 62 | var createHTML = function(list){ 63 | ListHTML = ''; 64 | for (var i = 0; i < list.length; i++) { 65 | ListHTML += '
  • ' + list[i] + '
  • ' 66 | } 67 | } 68 | 69 | //Generate HTML for first list 70 | createHTML(firstList); 71 | $postsList.html(ListHTML); 72 | index.find("ul.nav").first().addClass("navbar-left"); 73 | 74 | //Generate HTML for second list 75 | createHTML(secondList); 76 | //Create new list after original one 77 | $postsList.after('').next().html(ListHTML); 78 | index.find("ul.nav").last().addClass("navbar-right"); 79 | 80 | //Wrap navigation menu 81 | index.find("ul.nav.navbar-left").wrap("
    "); 82 | index.find("ul.nav.navbar-right").wrap("
    "); 83 | 84 | //Selection Class 85 | index.find('ul.navbar-nav > li').each(function(){ 86 | var dropDown = $("ul.dropdown-menu", this), 87 | megaMenu = $("ul.megamenu-content", this); 88 | dropDown.closest("li").addClass("dropdown"); 89 | megaMenu.closest("li").addClass("megamenu-fw"); 90 | }); 91 | 92 | var getName = $(".storage-name").html(); 93 | if( !getName == "" ){ 94 | $( "ul.navbar-nav > li:contains('" + getName + "')" ).addClass("active"); 95 | } 96 | } 97 | 98 | 99 | // ------------------------------------------------------------------------------ // 100 | // Navbar Sidebar 101 | // ------------------------------------------------------------------------------ // 102 | if( getNav.hasClass("navbar-sidebar")){ 103 | // Add Class to body 104 | $("body").addClass("wrap-nav-sidebar"); 105 | getNav.wrapInner("
    "); 106 | }else{ 107 | $(".bootsnav").addClass("on"); 108 | } 109 | 110 | // ------------------------------------------------------------------------------ // 111 | // Menu Center 112 | // ------------------------------------------------------------------------------ // 113 | if( getNav.find("ul.nav").hasClass("navbar-center")){ 114 | getNav.addClass("menu-center"); 115 | } 116 | 117 | // ------------------------------------------------------------------------------ // 118 | // Navbar Full 119 | // ------------------------------------------------------------------------------ // 120 | if( getNav.hasClass("navbar-full")){ 121 | // Add Class to body 122 | $("nav.navbar.bootsnav").find("ul.nav").wrap("
    "); 123 | $(".wrap-full-menu").wrap(""); 124 | $("ul.nav.navbar-nav").prepend("
  • "); 125 | }else if( getNav.hasClass("navbar-mobile")){ 126 | getNav.removeClass("no-full"); 127 | }else{ 128 | getNav.addClass("no-full"); 129 | } 130 | 131 | // ------------------------------------------------------------------------------ // 132 | // Navbar Mobile 133 | // ------------------------------------------------------------------------------ // 134 | if( getNav.hasClass("navbar-mobile")){ 135 | // Add Class to body 136 | $('.navbar-collapse').on('shown.bs.collapse', function() { 137 | $("body").addClass("side-right"); 138 | }); 139 | $('.navbar-collapse').on('hide.bs.collapse', function() { 140 | $("body").removeClass("side-right"); 141 | }); 142 | 143 | $(window).on("resize", function(){ 144 | $("body").removeClass("side-right"); 145 | }); 146 | } 147 | 148 | // ------------------------------------------------------------------------------ // 149 | // Navbar Fixed 150 | // ------------------------------------------------------------------------------ // 151 | if( getNav.hasClass("no-background")){ 152 | $(window).on("scroll", function(){ 153 | var scrollTop = $(window).scrollTop(); 154 | if(scrollTop >34){ 155 | $(".navbar-fixed").removeClass("no-background"); 156 | }else { 157 | $(".navbar-fixed").addClass("no-background"); 158 | } 159 | }); 160 | } 161 | 162 | // ------------------------------------------------------------------------------ // 163 | // Navbar Fixed 164 | // ------------------------------------------------------------------------------ // 165 | if( getNav.hasClass("navbar-transparent")){ 166 | $(window).on("scroll", function(){ 167 | var scrollTop = $(window).scrollTop(); 168 | if(scrollTop >34){ 169 | $(".navbar-fixed").removeClass("navbar-transparent"); 170 | }else { 171 | $(".navbar-fixed").addClass("navbar-transparent"); 172 | } 173 | }); 174 | } 175 | 176 | // ------------------------------------------------------------------------------ // 177 | // Button Cart 178 | // ------------------------------------------------------------------------------ // 179 | $(".btn-cart").on("click", function(e){ 180 | e.stopPropagation(); 181 | }); 182 | 183 | // ------------------------------------------------------------------------------ // 184 | // Toggle Search 185 | // ------------------------------------------------------------------------------ // 186 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 187 | $("li.search > a", this).on("click", function(e){ 188 | e.preventDefault(); 189 | $(".top-search").slideToggle(); 190 | }); 191 | }); 192 | $(".input-group-addon.close-search").on("click", function(){ 193 | $(".top-search").slideUp(); 194 | }); 195 | 196 | // ------------------------------------------------------------------------------ // 197 | // Toggle Side Menu 198 | // ------------------------------------------------------------------------------ // 199 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 200 | $("li.side-menu > a", this).on("click", function(e){ 201 | e.preventDefault(); 202 | $("nav.navbar.bootsnav > .side").toggleClass("on"); 203 | $("body").toggleClass("on-side"); 204 | }); 205 | }); 206 | $(".side .close-side").on("click", function(e){ 207 | e.preventDefault(); 208 | $("nav.navbar.bootsnav > .side").removeClass("on"); 209 | $("body").removeClass("on-side"); 210 | }); 211 | 212 | 213 | 214 | // ------------------------------------------------------------------------------ // 215 | // Wrapper 216 | // ------------------------------------------------------------------------------ // 217 | $("body").wrapInner( "
    "); 218 | }, 219 | 220 | 221 | // ------------------------------------------------------------------------------ // 222 | // Change dropdown to hover on dekstop 223 | // ------------------------------------------------------------------------------ // 224 | hoverDropdown : function(){ 225 | var getNav = $("nav.navbar.bootsnav"), 226 | getWindow = $(window).width(), 227 | getHeight = $(window).height(), 228 | getIn = getNav.find("ul.nav").data("in"), 229 | getOut = getNav.find("ul.nav").data("out"); 230 | 231 | if( getWindow < 991 ){ 232 | 233 | // Height of scroll navigation sidebar 234 | $(".scroller").css("height", "auto"); 235 | 236 | // Disable mouseenter event 237 | $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseenter"); 238 | $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseleave"); 239 | $("nav.navbar.bootsnav ul.nav").find(".title").off("mouseenter"); 240 | $("nav.navbar.bootsnav ul.nav").off("mouseleave"); 241 | $(".navbar-collapse").removeClass("animated"); 242 | 243 | // Enable click event 244 | $("nav.navbar.bootsnav ul.nav").each(function(){ 245 | $(".dropdown-menu", this).addClass("animated"); 246 | $(".dropdown-menu", this).removeClass(getOut); 247 | 248 | // Dropdown Fade Toggle 249 | $("a.dropdown-toggle", this).off('click'); 250 | $("a.dropdown-toggle", this).on('click', function (e) { 251 | e.stopPropagation(); 252 | $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle().toggleClass(getIn); 253 | $(this).closest("li.dropdown").first().toggleClass("on"); 254 | return false; 255 | }); 256 | 257 | // Hidden dropdown action 258 | $('li.dropdown', this).each(function () { 259 | $(this).find(".dropdown-menu").stop().fadeOut(); 260 | $(this).on('hidden.bs.dropdown', function () { 261 | $(this).find(".dropdown-menu").stop().fadeOut(); 262 | }); 263 | return false; 264 | }); 265 | 266 | // Megamenu style 267 | $(".megamenu-fw", this).each(function(){ 268 | $(".col-menu", this).each(function(){ 269 | $(".content", this).addClass("animated"); 270 | $(".content", this).stop().fadeOut(); 271 | $(".title", this).off("click"); 272 | $(".title", this).on("click", function(){ 273 | $(this).closest(".col-menu").find(".content").stop().fadeToggle().addClass(getIn); 274 | $(this).closest(".col-menu").toggleClass("on"); 275 | return false; 276 | }); 277 | 278 | $(".content", this).on("click", function(e){ 279 | e.stopPropagation(); 280 | }); 281 | }); 282 | }); 283 | }); 284 | 285 | // Hidden dropdown 286 | var cleanOpen = function(){ 287 | $('li.dropdown', this).removeClass("on"); 288 | $(".dropdown-menu", this).stop().fadeOut(); 289 | $(".dropdown-menu", this).removeClass(getIn); 290 | $(".col-menu", this).removeClass("on"); 291 | $(".col-menu .content", this).stop().fadeOut(); 292 | $(".col-menu .content", this).removeClass(getIn); 293 | } 294 | 295 | // Hidden om mouse leave 296 | $("nav.navbar.bootsnav").on("mouseleave", function(){ 297 | cleanOpen(); 298 | }); 299 | 300 | // Enable click atribute navigation 301 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 302 | $(".dropdown-menu", this).removeClass("animated"); 303 | $("li.dropdown", this).off("mouseenter"); 304 | $("li.dropdown", this).off("mouseleave"); 305 | $("a.dropdown-toggle", this).off('click'); 306 | $("a.dropdown-toggle", this).on('click', function (e) { 307 | e.stopPropagation(); 308 | $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle(); 309 | $(".navbar-toggle").each(function(){ 310 | $(".fa", this).removeClass("fa-times"); 311 | $(".fa", this).addClass("fa-bars"); 312 | $(".navbar-collapse").removeClass("in"); 313 | $(".navbar-collapse").removeClass("on"); 314 | }); 315 | }); 316 | 317 | $(this).on("mouseleave", function(){ 318 | $(".dropdown-menu", this).stop().fadeOut(); 319 | $("li.dropdown", this).removeClass("on"); 320 | return false; 321 | }); 322 | }); 323 | 324 | // Toggle Bars 325 | $(".navbar-toggle").each(function(){ 326 | $(this).off("click"); 327 | $(this).on("click", function(){ 328 | $(".fa", this).toggleClass("fa-bars"); 329 | $(".fa", this).toggleClass("fa-times"); 330 | cleanOpen(); 331 | }); 332 | }); 333 | 334 | }else if( getWindow > 991 ){ 335 | // Height of scroll navigation sidebar 336 | $(".scroller").css("height", getHeight + "px"); 337 | 338 | // Navbar Sidebar 339 | if( getNav.hasClass("navbar-sidebar")){ 340 | // Hover effect Sidebar Menu 341 | $("nav.navbar.bootsnav ul.nav").each(function(){ 342 | $("a.dropdown-toggle", this).off('click'); 343 | $("a.dropdown-toggle", this).on('click', function (e) { 344 | e.stopPropagation(); 345 | }); 346 | 347 | $(".dropdown-menu", this).addClass("animated"); 348 | $("li.dropdown", this).on("mouseenter", function(){ 349 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 350 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 351 | $(this).addClass("on"); 352 | return false; 353 | }); 354 | 355 | $(".col-menu").each(function(){ 356 | $(".content", this).addClass("animated"); 357 | $(".title", this).on("mouseenter", function(){ 358 | $(this).closest(".col-menu").find(".content").stop().fadeIn().addClass(getIn); 359 | $(this).closest(".col-menu").addClass("on"); 360 | return false; 361 | }); 362 | }); 363 | 364 | $(this).on("mouseleave", function(){ 365 | $(".dropdown-menu", this).stop().removeClass(getIn); 366 | $(".dropdown-menu", this).stop().addClass(getOut).fadeOut(); 367 | $(".col-menu", this).find(".content").stop().fadeOut().removeClass(getIn); 368 | $(".col-menu", this).removeClass("on"); 369 | $("li.dropdown", this).removeClass("on"); 370 | return false; 371 | }); 372 | }); 373 | }else{ 374 | // Hover effect Default Menu 375 | $("nav.navbar.bootsnav ul.nav").each(function(){ 376 | $("a.dropdown-toggle", this).off('click'); 377 | $("a.dropdown-toggle", this).on('click', function (e) { 378 | e.stopPropagation(); 379 | }); 380 | 381 | $(".megamenu-fw", this).each(function(){ 382 | $(".title", this).off("click"); 383 | $("a.dropdown-toggle", this).off("click"); 384 | $(".content").removeClass("animated"); 385 | }); 386 | 387 | $(".dropdown-menu", this).addClass("animated"); 388 | $("li.dropdown", this).on("mouseenter", function(){ 389 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 390 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 391 | $(this).addClass("on"); 392 | return false; 393 | }); 394 | 395 | $("li.dropdown", this).on("mouseleave", function(){ 396 | $(".dropdown-menu", this).eq(0).removeClass(getIn); 397 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 398 | $(this).removeClass("on"); 399 | }); 400 | 401 | $(this).on("mouseleave", function(){ 402 | $(".dropdown-menu", this).removeClass(getIn); 403 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 404 | $("li.dropdown", this).removeClass("on"); 405 | return false; 406 | }); 407 | }); 408 | } 409 | 410 | // ------------------------------------------------------------------------------ // 411 | // Hover effect Atribute Navigation 412 | // ------------------------------------------------------------------------------ // 413 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 414 | $("a.dropdown-toggle", this).off('click'); 415 | $("a.dropdown-toggle", this).on('click', function (e) { 416 | e.stopPropagation(); 417 | }); 418 | 419 | $(".dropdown-menu", this).addClass("animated"); 420 | $("li.dropdown", this).on("mouseenter", function(){ 421 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 422 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 423 | $(this).addClass("on"); 424 | return false; 425 | }); 426 | 427 | $("li.dropdown", this).on("mouseleave", function(){ 428 | $(".dropdown-menu", this).eq(0).removeClass(getIn); 429 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 430 | $(this).removeClass("on"); 431 | }); 432 | 433 | $(this).on("mouseleave", function(){ 434 | $(".dropdown-menu", this).removeClass(getIn); 435 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 436 | $("li.dropdown", this).removeClass("on"); 437 | return false; 438 | }); 439 | }); 440 | } 441 | 442 | // ------------------------------------------------------------------------------ // 443 | // Menu Fullscreen 444 | // ------------------------------------------------------------------------------ // 445 | if( getNav.hasClass("navbar-full")){ 446 | var windowHeight = $(window).height(), 447 | windowWidth = $(window).width(); 448 | 449 | $(".nav-full").css("height", windowHeight + "px"); 450 | $(".wrap-full-menu").css("height", windowHeight + "px"); 451 | $(".wrap-full-menu").css("width", windowWidth + "px"); 452 | 453 | $(".navbar-collapse").addClass("animated"); 454 | $(".navbar-toggle").each(function(){ 455 | var getId = $(this).data("target"); 456 | $(this).off("click"); 457 | $(this).on("click", function(e){ 458 | e.preventDefault(); 459 | $(getId).removeClass(getOut); 460 | $(getId).addClass("in"); 461 | $(getId).addClass(getIn); 462 | return false; 463 | }); 464 | 465 | $("li.close-full-menu").on("click", function(e){ 466 | e.preventDefault(); 467 | $(getId).addClass(getOut); 468 | setTimeout(function(){ 469 | $(getId).removeClass("in"); 470 | $(getId).removeClass(getIn); 471 | }, 500); 472 | return false; 473 | }); 474 | }); 475 | } 476 | }, 477 | 478 | // ------------------------------------------------------------------------------ // 479 | // Navbar Sticky 480 | // ------------------------------------------------------------------------------ // 481 | navbarSticky : function(){ 482 | var getNav = $("nav.navbar.bootsnav"), 483 | navSticky = getNav.hasClass("navbar-sticky"); 484 | 485 | if( navSticky ){ 486 | 487 | // Set Height Navigation 488 | var getHeight = getNav.height(); 489 | $(".wrap-sticky").height(getHeight); 490 | 491 | // Windown on scroll 492 | var getOffset = $(".wrap-sticky").offset().top; 493 | $(window).on("scroll", function(){ 494 | var scrollTop = $(window).scrollTop(); 495 | if(scrollTop > getOffset){ 496 | getNav.addClass("sticked"); 497 | }else { 498 | getNav.removeClass("sticked"); 499 | } 500 | }); 501 | } 502 | }, 503 | 504 | // ------------------------------------------------------------------------------ // 505 | // Navbar Scrollspy 506 | // ------------------------------------------------------------------------------ // 507 | navbarScrollspy : function(){ 508 | var navScrollSpy = $(".navbar-scrollspy"), 509 | $body = $('body'), 510 | getNav = $('nav.navbar.bootsnav'), 511 | offset = getNav.outerHeight(); 512 | 513 | if( navScrollSpy.length ){ 514 | $body.scrollspy({target: '.navbar', offset: offset }); 515 | 516 | // Animation Scrollspy 517 | $('.scroll').on('click', function(event) { 518 | event.preventDefault(); 519 | 520 | // Active link 521 | $('.scroll').removeClass("active"); 522 | $(this).addClass("active"); 523 | 524 | // Remove navbar collapse 525 | $(".navbar-collapse").removeClass("in"); 526 | 527 | // Toggle Bars 528 | $(".navbar-toggle").each(function(){ 529 | $(".fa", this).removeClass("fa-times"); 530 | $(".fa", this).addClass("fa-bars"); 531 | }); 532 | 533 | // Scroll 534 | var scrollTop = $(window).scrollTop(), 535 | $anchor = $(this).find('a'), 536 | $section = $($anchor.attr('href')).offset().top, 537 | $window = $(window).width(), 538 | $minusDesktop = getNav.data("minus-value-desktop"), 539 | $minusMobile = getNav.data("minus-value-mobile"), 540 | $speed = getNav.data("speed"); 541 | 542 | if( $window > 992 ){ 543 | var $position = $section - $minusDesktop; 544 | }else{ 545 | var $position = $section - $minusMobile; 546 | } 547 | 548 | $('html, body').stop().animate({ 549 | scrollTop: $position 550 | }, $speed); 551 | }); 552 | 553 | // Activate Navigation 554 | var fixSpy = function() { 555 | var data = $body.data('bs.scrollspy'); 556 | if (data) { 557 | offset = getNav.outerHeight(); 558 | data.options.offset = offset; 559 | $body.data('bs.scrollspy', data); 560 | $body.scrollspy('refresh'); 561 | } 562 | } 563 | 564 | // Activate Navigation on resize 565 | var resizeTimer; 566 | $(window).on('resize', function() { 567 | clearTimeout(resizeTimer); 568 | var resizeTimer = setTimeout(fixSpy, 200); 569 | }); 570 | } 571 | } 572 | }; 573 | 574 | // Initialize 575 | $(document).ready(function(){ 576 | bootsnav.initialize(); 577 | }); 578 | 579 | // Reset on resize 580 | $(window).on("resize", function(){ 581 | bootsnav.hoverDropdown(); 582 | setTimeout(function(){ 583 | bootsnav.navbarSticky(); 584 | }, 500); 585 | 586 | // Toggle Bars 587 | $(".navbar-toggle").each(function(){ 588 | $(".fa", this).removeClass("fa-times"); 589 | $(".fa", this).addClass("fa-bars"); 590 | $(this).removeClass("fixed"); 591 | }); 592 | $(".navbar-collapse").removeClass("in"); 593 | $(".navbar-collapse").removeClass("on"); 594 | $(".navbar-collapse").removeClass("bounceIn"); 595 | }); 596 | 597 | }(jQuery)); 598 | 599 | -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2016 Twitter, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
    ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | "use strict"; 3 | 4 | /*================================== 5 | * Author : "ThemeSine" 6 | * Template Name : CarVilla HTML Template 7 | * Version : 1.0 8 | ==================================== */ 9 | 10 | 11 | 12 | 13 | /*=========== TABLE OF CONTENTS =========== 14 | 1. Scroll To Top 15 | 2. welcome animation support 16 | 3. owl carousel 17 | ======================================*/ 18 | 19 | // 1. Scroll To Top 20 | $(window).on('scroll',function () { 21 | if ($(this).scrollTop() > 300) { 22 | $('.return-to-top').fadeIn(); 23 | } else { 24 | $('.return-to-top').fadeOut(); 25 | } 26 | }); 27 | $('.return-to-top').on('click',function(){ 28 | $('html, body').animate({ 29 | scrollTop: 0 30 | }, 1500); 31 | return false; 32 | }); 33 | 34 | // 2. welcome animation support 35 | 36 | $(window).load(function(){ 37 | $(".welcome-hero-txt h2,.welcome-hero-txt p").removeClass("animated fadeInUp").css({'opacity':'0'}); 38 | $(".welcome-hero-txt button").removeClass("animated fadeInDown").css({'opacity':'0'}); 39 | }); 40 | 41 | $(window).load(function(){ 42 | $(".welcome-hero-txt h2,.welcome-hero-txt p").addClass("animated fadeInUp").css({'opacity':'0'}); 43 | $(".welcome-hero-txt button").addClass("animated fadeInDown").css({'opacity':'0'}); 44 | }); 45 | 46 | 47 | // 3. owl carousel 48 | 49 | // i. new-cars-carousel 50 | 51 | $("#new-cars-carousel").owlCarousel({ 52 | items: 1, 53 | autoplay:true, 54 | loop: true, 55 | dots:true, 56 | mouseDrag:true, 57 | nav:false, 58 | smartSpeed:1000, 59 | transitionStyle:"fade", 60 | animateIn: 'fadeIn', 61 | animateOut: 'fadeOutLeft' 62 | // navText:["",""] 63 | }); 64 | 65 | 66 | // ii. .testimonial-carousel 67 | 68 | 69 | var owl=$('.testimonial-carousel'); 70 | owl.owlCarousel({ 71 | items:3, 72 | margin:0, 73 | 74 | loop:true, 75 | autoplay:true, 76 | smartSpeed:1000, 77 | 78 | //nav:false, 79 | //navText:["",""], 80 | 81 | dots:false, 82 | autoplayHoverPause:false, 83 | 84 | responsiveClass:true, 85 | responsive:{ 86 | 0:{ 87 | items:1 88 | }, 89 | 640:{ 90 | items:2 91 | }, 92 | 992:{ 93 | items:3 94 | } 95 | } 96 | 97 | 98 | }); 99 | 100 | // iii. .brand-item (carousel) 101 | 102 | $('.brand-item').owlCarousel({ 103 | items:6, 104 | loop:true, 105 | smartSpeed: 1000, 106 | autoplay:true, 107 | dots:false, 108 | autoplayHoverPause:false, 109 | responsive:{ 110 | 0:{ 111 | items:2 112 | }, 113 | 415:{ 114 | items:2 115 | }, 116 | 600:{ 117 | items:3 118 | }, 119 | 1000:{ 120 | items:6 121 | } 122 | } 123 | }); 124 | 125 | 126 | $('.play').on('click',function(){ 127 | owl.trigger('play.owl.autoplay',[1000]) 128 | }) 129 | $('.stop').on('click',function(){ 130 | owl.trigger('stop.owl.autoplay') 131 | }) 132 | 133 | }); -------------------------------------------------------------------------------- /assets/logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selva-vignesh-7/demo/e2c7e81c24fa9828c2d41de4fba52488bdbc5196/assets/logo/favicon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | CarVilla 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 61 | 64 | 65 | 66 |
    67 | 68 | 69 |
    70 |
    71 | 72 | 99 | 100 |
    101 |
    102 | 103 |
    104 | 105 | 106 |
    107 |
    108 |

    get your desired car in resonable price

    109 |

    110 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. 111 |

    112 | 113 |
    114 |
    115 | 116 |
    117 |
    118 |
    119 |
    120 |
    121 |
    122 | 137 | 152 |
    153 |
    154 | 169 | 184 |
    185 |
    186 | 201 | 216 |
    217 |
    218 | 223 |
    224 |
    225 |
    226 |
    227 |
    228 |
    229 | 230 |
    231 | 232 | 233 | 234 |
    235 |
    236 |
    237 |
    238 |
    239 |
    240 |
    241 | 242 |
    243 |

    largest dealership of car

    244 |

    245 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 246 |

    247 |
    248 |
    249 |
    250 |
    251 |
    252 | 253 |
    254 |

    unlimited repair warrenty

    255 |

    256 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 257 |

    258 |
    259 |
    260 |
    261 |
    262 |
    263 | 264 |
    265 |

    insurence support

    266 |

    267 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 268 |

    269 |
    270 |
    271 |
    272 |
    273 |
    274 | 275 |
    276 | 277 | 278 | 279 |
    280 |
    281 |
    282 |

    checkout the latest cars

    283 |

    newest cars

    284 |
    285 |
    286 | 363 |
    364 |
    365 | 366 |
    367 | 368 | 369 | 370 | 577 | 578 | 579 | 580 |
    581 |
    582 |
    583 |

    what our clients say

    584 |
    585 |
    586 | 648 |
    649 |
    650 | 651 |
    652 | 653 | 654 | 655 |
    656 |
    657 |
    658 | 692 |
    693 | 694 |
    695 | 696 |
    697 | 698 | 699 | 700 |
    701 | 702 | 703 | 704 |
    705 |
    706 | 780 | 798 |
    799 | 800 |
    801 |
    802 | 803 |
    804 | 805 |
    806 | 807 |
    808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | ----------------------- 2 | # README 3 | ----------------------- 4 | CarVilla is a one page bootstrap 3 based Car Dealer Automotive website template. 5 | 6 | 7 | Template Info: 8 | ----------------------- 9 | Name: CarVilla - Free Bootstrap One Page Car Dealer Automotive website template 10 | Version: 1.0 11 | Author: ThemeSINE 12 | Website: https://www.themesine.com/ 13 | 14 | 15 | Changelog: 16 | ----------------------- 17 | Version 1.0 13-06-2018 18 | - initial release 19 | 20 | 21 | Credits: 22 | ----------------------- 23 | - Twitter Bootstrap http://getbootstrap.com 24 | - jQuery http://jquery.org 25 | - Modernizr https://modernizr.com/ 26 | - Sticky.js http://stickyjs.com/ 27 | - JQuery easing https://github.com/gdsmith/jquery.easing 28 | - Bootsnav http://bootsnav.danurstrap.com/ 29 | - Pexels https://www.pexels.com/ 30 | - Unsplash https://unsplash.com/ 31 | 32 | License: 33 | ----------------------- 34 | This template is under Free License - https://www.themesine.com/license/ --------------------------------------------------------------------------------