├── .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 | 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 += '110 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. 111 |
112 | 113 |245 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 246 |
247 |256 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 257 |
258 |267 | Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut den fugit sed quia. 268 |
269 |checkout the latest cars
283 |299 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 300 |
301 |302 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium doloremque laudantium. 303 |
304 | 307 |324 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 325 |
326 |327 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium doloremque laudantium. 328 |
329 | 332 |349 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 350 |
351 |352 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium doloremque laudantium. 353 |
354 | 357 |checkout the featured cars
374 |386 | model: 2017 387 | 3100 mi 388 | 240HP 389 | automatic 390 |
391 |397 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 398 |
399 |410 | model: 2017 411 | 3100 mi 412 | 240HP 413 | automatic 414 |
415 |421 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 422 |
423 |434 | model: 2017 435 | 3100 mi 436 | 240HP 437 | automatic 438 |
439 |445 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 446 |
447 |458 | model: 2017 459 | 3100 mi 460 | 240HP 461 | automatic 462 |
463 |469 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 470 |
471 |484 | model: 2017 485 | 3100 mi 486 | 240HP 487 | automatic 488 |
489 |495 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 496 |
497 |508 | model: 2017 509 | 3100 mi 510 | 240HP 511 | automatic 512 |
513 |519 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 520 |
521 |532 | model: 2017 533 | 3100 mi 534 | 240HP 535 | automatic 536 |
537 |543 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 544 |
545 |556 | model: 2017 557 | 3100 mi 558 | 240HP 559 | automatic 560 |
561 |567 | Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non. 568 |
569 |617 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium dolor laudan rem aperiam, eaque ipsa quae ab illo inventore verit. 618 |
619 |637 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium dolor laudan rem aperiam, eaque ipsa quae ab illo inventore verit. 638 |
639 |
597 | Sed ut pers unde omnis iste natus error sit voluptatem accusantium dolor laudan rem aperiam, eaque ipsa quae ab illo inventore verit. 598 |
599 |