├── images ├── favicon.png ├── hero-bg.png └── slider-img.png ├── js ├── custom.js └── jquery-3.4.1.min.js ├── README.md ├── css ├── responsive.css ├── style.css.map ├── style.scss ├── style.css └── font-awesome.min.css └── index.html /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/learn-github-pages/main/images/favicon.png -------------------------------------------------------------------------------- /images/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/learn-github-pages/main/images/hero-bg.png -------------------------------------------------------------------------------- /images/slider-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/learn-github-pages/main/images/slider-img.png -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- 1 | // to get current year 2 | function getYear() { 3 | var currentDate = new Date(); 4 | var currentYear = currentDate.getFullYear(); 5 | document.querySelector("#displayYear").innerHTML = currentYear; 6 | } 7 | 8 | getYear(); 9 | 10 | 11 | // client section owl carousel 12 | $(".client_owl-carousel").owlCarousel({ 13 | loop: true, 14 | margin: 20, 15 | dots: false, 16 | nav: true, 17 | navText: [], 18 | autoplay: true, 19 | autoplayHoverPause: true, 20 | navText: [ 21 | '', 22 | '' 23 | ], 24 | responsive: { 25 | 0: { 26 | items: 1 27 | }, 28 | 600: { 29 | items: 2 30 | }, 31 | 1000: { 32 | items: 2 33 | } 34 | } 35 | }); 36 | 37 | 38 | 39 | /** google_map js **/ 40 | function myMap() { 41 | var mapProp = { 42 | center: new google.maps.LatLng(40.712775, -74.005973), 43 | zoom: 18, 44 | }; 45 | var map = new google.maps.Map(document.getElementById("googleMap"), mapProp); 46 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How to Host an HTML File on GitHub Pages 2 | 3 | This guide will walk you through the process of forking a repository containing an HTML file and then hosting it using GitHub Pages. 4 | 5 | ## Prerequisites: 6 | - A GitHub account. If you don't have one, [sign up](https://github.com/join) for free. 7 | 8 | ## Steps: 9 | 10 | ### 1. Fork the Repository 11 | - Navigate to the repository you wish to fork on GitHub. 12 | - Click on the 'Fork' button at the top right corner of the page. This will create a copy of the repository in your GitHub account. 13 | 14 | ### 2. Set up GitHub Pages 15 | - Navigate to your forked repository on the GitHub website. 16 | - Go to the 'Settings' tab, located at the top-right corner of the page. 17 | - Scroll down to the 'Pages' section. 18 | - Under 'Branch', select the branch you want to use for GitHub Pages (change `None` to `main`). 19 | - Click 'Save'. 20 | - Wait a few minutes for your page to be deployed. 21 | 22 | ### 3. Access Your Hosted HTML File 23 | - Refresh the page and you will find a link to your hosted page at the top. 24 | - After configuring GitHub Pages, GitHub will provide you with a link to your live site. It usually looks something like: `https://yourusername.github.io/forked-repo-name/` 25 | 26 | ### 4. Editing Files 27 | - Since you have already hosted your website via GitHub pages, let's edit it and view it live. 28 | - For this open the `/index.html` file and edit the text **Github Pages** in line number 96 to **Github Page by [Your Name]**. 29 | - Once you have edited the file, click on the commit changes button on the top right of the editor to commit your changes. 30 | - Enter a commit message and click commit changes once again to confirm your changes. 31 | - Now, within a few minutes, your edit will be visible on the website. 32 | 33 | 34 | ### Conclusion 35 | That's it! You have successfully forked a repository and hosted an HTML file using GitHub Pages without cloning locally. Enjoy your live site! 36 | 37 | ### Sample Message 38 | 39 | #ge-learn-ghpages 40 | 41 | Hey, I have completed the Learn Github Pages task, and here is the hosted link to my task. 42 | Hosted Link: `https://yourusername.github.io/forked-repo-name/` 43 | -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 1300px) {} 2 | 3 | @media (max-width: 1120px) {} 4 | 5 | @media (max-width: 992px) { 6 | .hero_area { 7 | min-height: auto; 8 | } 9 | 10 | .hero_area { 11 | background: linear-gradient(130deg, #231a6f, #0f054c); 12 | } 13 | 14 | .hero_area .hero_bg_box { 15 | display: none; 16 | } 17 | 18 | .slider_section { 19 | padding: 45px 0 75px 0; 20 | } 21 | 22 | .custom_nav-container .navbar-nav { 23 | padding-top: 15px; 24 | align-items: center; 25 | } 26 | 27 | 28 | .custom_nav-container .navbar-nav .nav-item .nav-link { 29 | padding: 5px 25px; 30 | margin: 5px 0; 31 | } 32 | 33 | 34 | } 35 | 36 | @media (max-width: 768px) { 37 | .about_section .img-box { 38 | margin-bottom: 45px; 39 | } 40 | 41 | } 42 | 43 | @media (max-width: 576px) { 44 | .header_section .header_top .contact_nav a span { 45 | display: none; 46 | } 47 | 48 | 49 | .client_section .client_container { 50 | width: 100%; 51 | } 52 | 53 | .client_section .box { 54 | margin: 0; 55 | } 56 | 57 | .owl-nav { 58 | display: flex; 59 | justify-content: center; 60 | margin-top: 45px; 61 | } 62 | 63 | .client_section .owl-carousel .owl-nav .owl-prev, 64 | .client_section .owl-carousel .owl-nav .owl-next { 65 | position: unset; 66 | margin: 0 2.5px; 67 | } 68 | } 69 | 70 | @media (max-width: 480px) { 71 | .slider_section .detail-box h1 { 72 | font-size: 2rem; 73 | } 74 | 75 | .track_section form { 76 | flex-direction: column; 77 | align-items: flex-start; 78 | } 79 | 80 | .track_section form input { 81 | width: 100%; 82 | } 83 | 84 | .track_section form button { 85 | padding: 10px 60px; 86 | margin-top: 10px; 87 | } 88 | } 89 | 90 | @media (max-width: 420px) { 91 | .service_section .box { 92 | flex-direction: column; 93 | } 94 | 95 | .service_section .box .img-box { 96 | justify-content: flex-start; 97 | margin-bottom: 15px; 98 | } 99 | } 100 | 101 | @media (max-width: 376px) {} 102 | 103 | @media (min-width: 1200px) { 104 | .container { 105 | max-width: 1170px; 106 | } 107 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | MuLearn 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 |
47 |
48 |
49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 80 |
81 |
82 | 83 | 84 |
85 | 182 |
183 | 184 |
185 | 186 | 187 | 188 | 189 | 194 | 195 | 196 | 197 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | -------------------------------------------------------------------------------- /css/style.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAQA,OAAO,CAAC,oHAAI;AAyBZ,AAAA,IAAI,CAAC;EAtBH,WAAW,EAAE,uBAAuB;EAwBpC,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;EACzB,UAAU,EAAE,MAAM;CACnB;;AAED,AAAA,eAAe,CAAC;EACd,OAAO,EAAE,MAAM;CAChB;;AAED,AAAA,gBAAgB,CAAC;EACf,OAAO,EAAE,MAAM;CAChB;;AAED,AAAA,oBAAoB,CAAC;EACnB,WAAW,EAAE,IAAI;CAClB;;AAED,AAAA,uBAAuB,CAAC;EACtB,cAAc,EAAE,IAAI;CACrB;;AAED,AAAA,mBAAmB,CAAC;EAClB,WAAW,EAAE,IAAI;CAClB;;AAED,AAAA,sBAAsB,CAAC;EACrB,cAAc,EAAE,IAAI;CACrB;;AAED,AAAA,kBAAkB,CAAC;EACjB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,UAAU;CAqBxB;;AAxBD,AAKE,kBALgB,CAKhB,EAAE,CAAC;EACD,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,CAAC;CAKjB;;AAbH,AAUI,kBAVc,CAKhB,EAAE,CAKA,IAAI,CAAC;EACH,KAAK,EAxEA,OAAO;CAyEb;;AAZL,AAeE,kBAfgB,CAehB,CAAC,CAAC;EACA,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,CAAC;CACjB;;AAlBH,AAoBE,kBApBgB,AAoBf,eAAe,CAAC;EACf,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;CACnB;;AAGH,AAAA,CAAC;AACD,CAAC,AAAA,MAAM;AACP,CAAC,AAAA,MAAM,CAAC;EACN,eAAe,EAAE,IAAI;CACtB;;AAED,AAAA,CAAC,AAAA,MAAM;AACP,CAAC,AAAA,MAAM,CAAC;EACN,KAAK,EAAE,OAAO;CACf;;AAED,AAAA,IAAI;AACJ,IAAI,AAAA,MAAM,CAAC;EACT,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,IAAI;CACjB;;AAED,kBAAkB;AAClB,AAAA,UAAU,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,KAAK;EACjB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;CAwBvB;;AA5BD,AAME,UANQ,CAMR,YAAY,CAAC;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,QAAQ;EACrB,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,EAAE;CAWZ;;AA3BH,AAkBI,UAlBM,CAMR,YAAY,CAYV,WAAW,CAAC;EACV,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI;CACjB;;AArBL,AAuBI,UAvBM,CAMR,YAAY,CAiBV,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI;CACjB;;AAIL,AACE,SADO,CACP,UAAU,CAAC;EACT,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,yCAAyC;CAKtD;;AARH,AAKI,SALK,CACP,UAAU,CAIR,YAAY,CAAC;EACX,OAAO,EAAE,IAAI;CACd;;AAKL,AAAA,eAAe,CAAC;EACd,OAAO,EAAE,MAAM;CAMhB;;AAPD,AAGE,eAHa,CAGb,gBAAgB,CAAC;EACf,aAAa,EAAE,IAAI;EACnB,YAAY,EAAE,IAAI;CACnB;;AAGH,AACE,aADW,CACX,IAAI,CAAC;EACH,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,KAAK,EAnKD,OAAO;CAoKZ;;AAGH,AAAA,qBAAqB,CAAC;EACpB,OAAO,EAAE,CAAC;CA6BX;;AA9BD,AAGE,qBAHmB,CAGnB,WAAW,CAAC;EACV,WAAW,EAAE,IAAI;CAyBlB;;AA7BH,AAOM,qBAPe,CAGnB,WAAW,CAGT,SAAS,CACP,SAAS,CAAC;EACR,OAAO,EAAE,QAAQ;EACjB,KAAK,EAhLL,OAAO;EAiLP,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,SAAS;EACzB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,QAAQ;CACrB;;AAdP,AAkBQ,qBAlBa,CAGnB,WAAW,CAGT,SAAS,AAUN,MAAM,CAEL,SAAS,EAlBjB,qBAAqB,CAGnB,WAAW,CAGT,SAAS,AAWN,OAAO,CACN,SAAS,CAAC;EACR,KAAK,EAvLJ,OAAO;CAwLT;;AApBT,AAwBQ,qBAxBa,CAGnB,WAAW,CAGT,SAAS,AAiBN,OAAO,CACN,SAAS,CAAC;EACR,WAAW,EAAE,GAAG;CACjB;;AAMT,AAAA,qBAAqB,CAAC,eAAe,CAAC;EACpC,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,IAAI;EACZ,KAAK,EA5MC,OAAO;CAiNd;;AAVD,AAOE,qBAPmB,CAAC,eAAe,AAOlC,MAAM,CAAC;EACN,KAAK,EA5ME,OAAO;CA6Mf;;AAGH,AAAA,qBAAqB,CAAC,eAAe,CAAC;EACpC,OAAO,EAAE,IAAI;CACd;;AAED,AAAA,qBAAqB,CAAC,eAAe,CAAC;EACpC,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,QAAQ;CAgDrB;;AApDD,AAME,qBANmB,CAAC,eAAe,CAMnC,IAAI,CAAC;EACH,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,GAAG;EACX,gBAAgB,EAjOZ,OAAO;EAkOX,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,QAAQ;EACpB,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,QAAQ;CAkBrB;;AAjCH,AAiBI,qBAjBiB,CAAC,eAAe,CAMnC,IAAI,AAWD,QAAQ,EAjBb,qBAAqB,CAAC,eAAe,CAMnC,IAAI,AAYD,OAAO,CAAC;EACP,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EA/Od,OAAO;EAgPT,GAAG,EAAE,KAAK;EACV,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,QAAQ;CACrB;;AA5BL,AA8BI,qBA9BiB,CAAC,eAAe,CAMnC,IAAI,AAwBD,OAAO,CAAC;EACP,GAAG,EAAE,IAAI;CACV;;AAhCL,AAmCE,qBAnCmB,CAAC,eAAe,CAmClC,AAAA,aAAC,CAAc,MAAM,AAApB,EAAsB;EACtB,SAAS,EAAE,cAAc;CAa1B;;AAjDH,AAsCI,qBAtCiB,CAAC,eAAe,CAmClC,AAAA,aAAC,CAAc,MAAM,AAApB,EAGA,IAAI,CAAC;EACH,SAAS,EAAE,aAAa;CAOzB;;AA9CL,AAyCM,qBAzCe,CAAC,eAAe,CAmClC,AAAA,aAAC,CAAc,MAAM,AAApB,EAGA,IAAI,AAGD,QAAQ,EAzCf,qBAAqB,CAAC,eAAe,CAmClC,AAAA,aAAC,CAAc,MAAM,AAApB,EAGA,IAAI,AAID,OAAO,CAAC;EACP,SAAS,EAAE,aAAa;EACxB,GAAG,EAAE,CAAC;CACP;;AASP,sBAAsB;AAEtB,oBAAoB;AACpB,AAAA,eAAe,CAAC;EACd,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,cAAc;CA4FxB;;AAjGD,AAOE,eAPa,CAOb,IAAI,CAAC;EACH,WAAW,EAAE,MAAM;CACpB;;AATH,AAWE,eAXa,CAWb,gBAAgB,CAAC;EACf,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,KAAK;CAChB;;AAdH,AAgBE,eAhBa,CAgBb,WAAW,CAAC;EACV,KAAK,EA7RE,OAAO;CA+Tf;;AAnDH,AAmBI,eAnBW,CAgBb,WAAW,CAGT,EAAE,CAAC;EACD,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,SAAS;EACzB,aAAa,EAAE,IAAI;EACnB,KAAK,EAxSH,OAAO;CAySV;;AAzBL,AA2BI,eA3BW,CAgBb,WAAW,CAWT,CAAC,CAAC;EACA,KAAK,EAAE,OAAO;EACd,SAAS,EAAE,IAAI;CAChB;;AA9BL,AAgCI,eAhCW,CAgBb,WAAW,CAgBT,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,MAAM;EACd,UAAU,EAAE,IAAI;CAejB;;AAlDL,AAqCM,eArCS,CAgBb,WAAW,CAgBT,QAAQ,CAKN,CAAC,CAAC;EACA,MAAM,EAAE,GAAG;EACX,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,KAAK;CACb;;AAzCP,AA2CM,eA3CS,CAgBb,WAAW,CAgBT,QAAQ,CAWN,KAAK,CAAC;EA5SV,OAAO,EAAE,YAAY;EACrB,OAAO,EA4SoC,IAAI,CAAE,IAAI;EA3SrD,gBAAgB,EAdP,OAAO;EAehB,KAAK,EAlBC,OAAO;EAmBb,aAAa,EAyS0C,CAAC;EAxSxD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;CAwSP;;AA7CP,AAzPE,eAyPa,CAgBb,WAAW,CAgBT,QAAQ,CAWN,KAAK,AApSR,MAAM,CAAC;EACN,gBAAgB,EAAE,OAAkC;CACrD;;AAuPH,AA+CM,eA/CS,CAgBb,WAAW,CAgBT,QAAQ,CAeN,KAAK,CAAC;EAhTV,OAAO,EAAE,YAAY;EACrB,OAAO,EAgTiC,IAAI,CAAE,IAAI;EA/SlD,gBAAgB,EAhBV,OAAO;EAiBb,KAAK,EAlBC,OAAO;EAmBb,aAAa,EA6SuC,CAAC;EA5SrD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;CA4SP;;AAjDP,AAzPE,eAyPa,CAgBb,WAAW,CAgBT,QAAQ,CAeN,KAAK,AAxSR,MAAM,CAAC;EACN,gBAAgB,EAAE,KAAkC;CACrD;;AAuPH,AAqDE,eArDa,CAqDb,QAAQ,CAAC;EACP,MAAM,EAAE,MAAM;CAOf;;AA7DH,AAwDI,eAxDW,CAqDb,QAAQ,CAGN,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,kBAAkB;CAC9B;;AAIH,UAAU,CAAV,MAAU;EACR,EAAE;IACA,SAAS,EAAE,iBAAiB;;EAG9B,GAAG;IACD,SAAS,EAAE,gBAAgB;;EAG7B,IAAI;IACF,SAAS,EAAE,iBAAiB;;;;AAzElC,AA6EE,eA7Ea,CA6Eb,oBAAoB,CAAC;EACnB,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,CAAC;EACT,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;CAepB;;AAhGH,AAmFI,eAnFW,CA6Eb,oBAAoB,CAMlB,EAAE,CAAC;EACD,gBAAgB,EApWd,OAAO;EAqWT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,IAAI;EACnB,OAAO,EAAE,CAAC;CAOX;;AA/FL,AA0FM,eA1FS,CA6Eb,oBAAoB,CAMlB,EAAE,AAOC,OAAO,CAAC;EACP,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,gBAAgB,EA1Wb,OAAO;CA2WX;;AASP,AAAA,gBAAgB,CAAC;EACf,QAAQ,EAAE,QAAQ;CAyDnB;;AA1DD,AAGE,gBAHc,CAGd,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;EAChB,gBAAgB,EAAE,OAAO;EACzB,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,GAAG;CAoCnB;;AA/CH,AAaI,gBAbY,CAGd,IAAI,CAUF,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,UAAU;EACvB,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,IAAI;CAOpB;;AA3BL,AAsBM,gBAtBU,CAGd,IAAI,CAUF,QAAQ,CASN,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,QAAQ;CACrB;;AA1BP,AA8BM,gBA9BU,CAGd,IAAI,CA0BF,WAAW,CACT,EAAE,CAAC;EACD,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,SAAS;CAC1B;;AAjCP,AAqCM,gBArCU,CAGd,IAAI,CA0BF,WAAW,CAQT,CAAC,CAAC;EACA,KAAK,EAzZF,OAAO;EA0ZV,WAAW,EAAE,GAAG;CAKjB;;AA5CP,AAyCQ,gBAzCQ,CAGd,IAAI,CA0BF,WAAW,CAQT,CAAC,AAIE,MAAM,CAAC;EACN,KAAK,EA9ZJ,OAAO;CA+ZT;;AA3CT,AAiDE,gBAjDc,CAiDd,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,UAAU,EAAE,IAAI;CAKjB;;AAzDH,AAsDI,gBAtDY,CAiDd,QAAQ,CAKN,CAAC,CAAC;EA9ZJ,OAAO,EAAE,YAAY;EACrB,OAAO,EA8ZkC,IAAI,CAAE,IAAI;EA7ZnD,gBAAgB,EAdP,OAAO;EAehB,KAAK,EAlBC,OAAO;EAmBb,aAAa,EA2ZwC,CAAC;EA1ZtD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;CA0ZT;;AAxDL,AAhWE,gBAgWc,CAiDd,QAAQ,CAKN,CAAC,AAtZF,MAAM,CAAC;EACN,gBAAgB,EAAE,OAAkC;CACrD;;AA6ZH,AAAA,cAAc,CAAC;EACb,gBAAgB,EAnbP,OAAO;EAobhB,KAAK,EAxbC,OAAO;CAsdd;;AAhCD,AAIE,cAJY,CAIZ,kBAAkB,CAAC;EACjB,aAAa,EAAE,IAAI;CACpB;;AANH,AAQE,cARY,CAQZ,IAAI,CAAC;EACH,WAAW,EAAE,MAAM;CACpB;;AAVH,AAaI,cAbU,CAYZ,QAAQ,CACN,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;CAChB;;AAfL,AAmBI,cAnBU,CAkBZ,WAAW,CACT,EAAE,CAAC;EACD,WAAW,EAAE,IAAI;CAClB;;AArBL,AAuBI,cAvBU,CAkBZ,WAAW,CAKT,CAAC,CAAC;EACA,UAAU,EAAE,IAAI;CACjB;;AAzBL,AA2BI,cA3BU,CAkBZ,WAAW,CAST,CAAC,CAAC;EAlcJ,OAAO,EAAE,YAAY;EACrB,OAAO,EAkckC,IAAI,CAAE,IAAI;EAjcnD,gBAAgB,EAdP,OAAO;EAehB,KAAK,EAlBC,OAAO;EAmBb,aAAa,EA+bwC,GAAG;EA9bxD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;EA8bR,UAAU,EAAE,IAAI;CACjB;;AA9BL,AA/ZE,cA+ZY,CAkBZ,WAAW,CAST,CAAC,AA1bF,MAAM,CAAC;EACN,gBAAgB,EAAE,OAAkC;CACrD;;AAmcH,AAEE,YAFU,CAEV,IAAI,CAAC;EACH,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;CA6BnB;;AApCH,AASI,YATQ,CAEV,IAAI,CAOF,QAAQ,CAAC;EACP,aAAa,EAAE,IAAI;EACnB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,KAAK;EACb,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,KAAK;EACjB,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,GAAG,CAAC,KAAK,CAxeZ,OAAO;EAyeZ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;CAOpB;;AA1BL,AAqBM,YArBM,CAEV,IAAI,CAOF,QAAQ,CAYN,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,IAAI,EAhfD,OAAO;CAifX;;AAzBP,AA4BI,YA5BQ,CAEV,IAAI,CA0BF,EAAE,CAAC;EACD,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAI;CACpB;;AA/BL,AAiCI,YAjCQ,CAEV,IAAI,CA+BF,CAAC,CAAC;EACA,aAAa,EAAE,CAAC;CACjB;;AAnCL,AAsCE,YAtCU,CAsCV,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,UAAU,EAAE,IAAI;CAKjB;;AA9CH,AA2CI,YA3CQ,CAsCV,QAAQ,CAKN,CAAC,CAAC;EAxfJ,OAAO,EAAE,YAAY;EACrB,OAAO,EAwfkC,IAAI,CAAE,IAAI;EAvfnD,gBAAgB,EAdP,OAAO;EAehB,KAAK,EAlBC,OAAO;EAmBb,aAAa,EAqfwC,CAAC;EApftD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;CAofT;;AA7CL,AArcE,YAqcU,CAsCV,QAAQ,CAKN,CAAC,AAhfF,MAAM,CAAC;EACN,gBAAgB,EAAE,OAAkC;CACrD;;AAsfH,iBAAiB;AAEjB,AAAA,aAAa,CAAC;EACZ,UAAU,EAAE,MAAM;EAClB,gBAAgB,EA/gBP,OAAO;EAghBhB,KAAK,EAphBC,OAAO;CAglBd;;AA/DD,AAKE,aALW,CAKX,kBAAkB,CAAC;EACjB,eAAe,EAAE,MAAM;CACxB;;AAPH,AASE,aATW,CASX,eAAe,CAAC;EACd,OAAO,EAAE,MAAM;CAkDhB;;AA5DH,AAYI,aAZS,CASX,eAAe,CAGb,IAAI,CAAC;EACH,OAAO,EAAE,UAAU;EACnB,aAAa,EAAE,GAAG;EAClB,QAAQ,EAAE,MAAM;EAChB,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,IAAI;EAEhB,UAAU,EAAE,4CAA0G;CAwCvH;;AA3DL,AAqBM,aArBO,CASX,eAAe,CAGb,IAAI,CASF,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;CAQpB;;AAhCP,AA0BQ,aA1BK,CASX,eAAe,CAGb,IAAI,CASF,QAAQ,CAKN,GAAG,CAAC;EACF,KAAK,EAAE,KAAK;EACZ,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,GAAG,CAAC,KAAK,CA9iBnB,OAAO;CA+iBN;;AA9BT,AAkCM,aAlCO,CASX,eAAe,CAGb,IAAI,CAsBF,WAAW,CAAC;EACV,MAAM,EAAE,MAAM;CAQf;;AA3CP,AAqCQ,aArCK,CASX,eAAe,CAGb,IAAI,CAsBF,WAAW,CAGT,EAAE,CAAC;EACD,KAAK,EApjBJ,OAAO;EAqjBR,WAAW,EAAE,GAAG;EAChB,QAAQ,EAAE,QAAQ;CACnB;;AAzCT,AA6CM,aA7CO,CASX,eAAe,CAGb,IAAI,CAiCF,WAAW,CAAC;EACV,OAAO,EAAE,mBAAmB;EAC5B,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;CAU/B;;AA1DP,AAkDQ,aAlDK,CASX,eAAe,CAGb,IAAI,CAiCF,WAAW,CAKT,CAAC,CAAC;EACA,KAAK,EApkBP,OAAO;EAqkBL,SAAS,EAAE,IAAI;CAKhB;;AAzDT,AAsDU,aAtDG,CASX,eAAe,CAGb,IAAI,CAiCF,WAAW,CAKT,CAAC,AAIE,MAAM,CAAC;EACN,KAAK,EArkBN,OAAO;CAskBP;;AASX,oBAAoB;AAEpB,0BAA0B;AAE1B,AACE,eADa,CACb,kBAAkB,CAAC;EACjB,aAAa,EAAE,IAAI;CACpB;;AAHH,AAKE,eALa,CAKb,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,IAAI;CA8Cb;;AAtDH,AAUI,eAVW,CAKb,IAAI,CAKF,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,KAAK;EACZ,aAAa,EAAE,KAAK;EACpB,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;CAKnB;;AAvBL,AAoBM,eApBS,CAKb,IAAI,CAKF,QAAQ,CAUN,GAAG,CAAC;EACF,aAAa,EAAE,IAAI;CACpB;;AAtBP,AAyBI,eAzBW,CAKb,IAAI,CAoBF,UAAU,CAAC;EACT,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;CAe/B;;AA1CL,AA8BQ,eA9BO,CAKb,IAAI,CAoBF,UAAU,CAIR,YAAY,CACV,EAAE,CAAC;EACD,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,GAAG;CACnB;;AAjCT,AAmCQ,eAnCO,CAKb,IAAI,CAoBF,UAAU,CAIR,YAAY,CAMV,CAAC,CAAC;EACA,aAAa,EAAE,CAAC;EAChB,SAAS,EAAE,IAAI;EACf,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;CACpB;;AAxCT,AA4CI,eA5CW,CAKb,IAAI,CAuCF,WAAW,CAAC;EACV,gBAAgB,EAnoBd,OAAO;EAooBT,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAc,mBAAO;EAC3C,OAAO,EAAE,mBAAmB;CAM7B;;AArDL,AAiDM,eAjDS,CAKb,IAAI,CAuCF,WAAW,CAKT,CAAC,CAAC;EACA,KAAK,EApoBF,OAAO;EAqoBV,aAAa,EAAE,IAAI;CACpB;;AApDP,AAyDI,eAzDW,CAwDb,aAAa,CACX,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,UAAU,EAAE,IAAI;CAiBjB;;AA7EL,AA8DM,eA9DS,CAwDb,aAAa,CACX,QAAQ,CAKN,SAAS;AA9Df,eAAe,CAwDb,aAAa,CACX,QAAQ,CAMN,SAAS,CAAC;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAxpBhB,OAAO;EAypBP,KAAK,EAxpBL,OAAO;EAypBP,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,GAAG;EACX,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAc,mBAAO;CAK3C;;AA5EP,AAyEQ,eAzEO,CAwDb,aAAa,CACX,QAAQ,CAKN,SAAS,AAWN,MAAM;AAzEf,eAAe,CAwDb,aAAa,CACX,QAAQ,CAMN,SAAS,AAUN,MAAM,CAAC;EACN,KAAK,EA5pBJ,OAAO;CA6pBT;;AAMT,wBAAwB;AAGxB,AAAA,aAAa,CAAC;EACZ,gBAAgB,EAvqBP,OAAO;EAwqBhB,KAAK,EA5qBC,OAAO;EA6qBb,OAAO,EAAE,aAAa;CA0FvB;;AA7FD,AAKE,aALW,CAKX,EAAE,CAAC;EACD,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,IAAI;CACpB;;AARH,AAUE,aAVW,CAUX,SAAS,CAAC;EACR,aAAa,EAAE,IAAI;CACpB;;AAZH,AAeI,aAfS,CAcX,aAAa,CACX,iBAAiB,CAAC;EAChB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;CAcvB;;AA/BL,AAmBM,aAnBO,CAcX,aAAa,CACX,iBAAiB,CAIf,CAAC,CAAC;EACA,MAAM,EAAE,KAAK;EACb,KAAK,EA/rBL,OAAO;CAwsBR;;AA9BP,AAuBQ,aAvBK,CAcX,aAAa,CACX,iBAAiB,CAIf,CAAC,CAIC,CAAC,CAAC;EACA,YAAY,EAAE,GAAG;CAClB;;AAzBT,AA2BQ,aA3BK,CAcX,aAAa,CACX,iBAAiB,CAIf,CAAC,AAQE,MAAM,CAAC;EACN,KAAK,EAnsBJ,OAAO;CAosBT;;AA7BT,AAkCE,aAlCW,CAkCX,YAAY,CAAC;EACX,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;CAepB;;AApDH,AAuCI,aAvCS,CAkCX,YAAY,CAKV,CAAC,CAAC;EACA,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EArtBH,OAAO;EAstBT,aAAa,EAAE,IAAI;EACnB,YAAY,EAAE,IAAI;EAClB,SAAS,EAAE,IAAI;CAKhB;;AAnDL,AAgDM,aAhDO,CAkCX,YAAY,CAKV,CAAC,AASE,MAAM,CAAC;EACN,KAAK,EAxtBF,OAAO;CAytBX;;AAlDP,AAsDE,aAtDW,CAsDX,WAAW,CAAC;EACV,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,SAAS,EAAE,IAAI;CAYhB;;AArEH,AA2DI,aA3DS,CAsDX,WAAW,CAKT,CAAC,CAAC;EACA,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,aAAa,EAAE,IAAI;EACnB,KAAK,EAzuBH,OAAO;CA8uBV;;AApEL,AAiEM,aAjEO,CAsDX,WAAW,CAKT,CAAC,AAME,MAAM,CAAC;EACN,KAAK,EAzuBF,OAAO;CA0uBX;;AAnEP,AAwEI,aAxES,CAuEX,IAAI,CACF,KAAK,CAAC;EACJ,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,GAAG,CAAC,KAAK,CApvBtB,OAAO;EAqvBT,gBAAgB,EAAE,WAAW;EAC7B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,KAAK,EAxvBH,OAAO;EAyvBT,OAAO,EAAE,IAAI;CAKd;;AApFL,AAiFM,aAjFO,CAuEX,IAAI,CACF,KAAK,AASF,aAAa,CAAC;EACb,KAAK,EA5vBL,OAAO;CA6vBR;;AAnFP,AAsFI,aAtFS,CAuEX,IAAI,CAeF,MAAM,CAAC;EACL,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAnvBtB,OAAO,EAAE,YAAY;EACrB,OAAO,EAmvBkC,IAAI,CAAE,IAAI;EAlvBnD,gBAAgB,EAdP,OAAO;EAehB,KAAK,EAlBC,OAAO;EAmBb,aAAa,EAgvBwC,CAAC;EA/uBtD,UAAU,EAAE,QAAQ;EACpB,MAAM,EAAE,IAAI;EA+uBR,UAAU,EAAE,IAAI;CACjB;;AA3FL,AAnpBE,aAmpBW,CAuEX,IAAI,CAeF,MAAM,AAzuBP,MAAM,CAAC;EACN,gBAAgB,EAAE,OAAkC;CACrD;;AAkvBH,mBAAmB;AAEnB,AAAA,eAAe,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,gBAAgB,EA/wBV,OAAO;EAgxBb,UAAU,EAAE,MAAM;CAWnB;;AAdD,AAKE,eALa,CAKb,CAAC,CAAC;EACA,KAAK,EA/wBE,OAAO;EAgxBd,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,CAAC;CAKV;;AAbH,AAUI,eAVW,CAKb,CAAC,CAKC,CAAC,CAAC;EACA,KAAK,EAAE,OAAO;CACf", 4 | "sources": [ 5 | "style.scss" 6 | ], 7 | "names": [], 8 | "file": "style.css" 9 | } -------------------------------------------------------------------------------- /css/style.scss: -------------------------------------------------------------------------------- 1 | $white: #ffffff; 2 | $black: #000000; 3 | // $primary1: #0cb1a8; 4 | $primary1: #00bbf0; 5 | $primary2: #00204a; 6 | $textCol: #1f1f1f; 7 | 8 | // import fonts - font-family: 'Open Sans', sans-serif; 9 | @import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap"); 10 | 11 | @mixin main-font { 12 | font-family: "Open Sans", sans-serif; 13 | } 14 | 15 | @mixin hero_btn($col1, $col2, $pad1, $pad2, $bRadius) { 16 | display: inline-block; 17 | padding: $pad1 $pad2; 18 | background-color: $col1; 19 | color: $col2; 20 | border-radius: $bRadius; 21 | transition: all 0.3s; 22 | border: none; 23 | 24 | &:hover { 25 | background-color: darken($color: $col1, $amount: 15); 26 | } 27 | } 28 | 29 | @mixin upperBold { 30 | text-transform: uppercase; 31 | font-weight: bold; 32 | } 33 | 34 | body { 35 | @include main-font; 36 | color: #0c0c0c; 37 | background-color: #ffffff; 38 | overflow-x: hidden; 39 | } 40 | 41 | .layout_padding { 42 | padding: 90px 0; 43 | } 44 | 45 | .layout_padding2 { 46 | padding: 75px 0; 47 | } 48 | 49 | .layout_padding2-top { 50 | padding-top: 75px; 51 | } 52 | 53 | .layout_padding2-bottom { 54 | padding-bottom: 75px; 55 | } 56 | 57 | .layout_padding-top { 58 | padding-top: 90px; 59 | } 60 | 61 | .layout_padding-bottom { 62 | padding-bottom: 90px; 63 | } 64 | 65 | .heading_container { 66 | display: flex; 67 | flex-direction: column; 68 | align-items: flex-start; 69 | 70 | h2 { 71 | position: relative; 72 | font-weight: bold; 73 | margin-bottom: 0; 74 | 75 | span { 76 | color: $primary1; 77 | } 78 | } 79 | 80 | p { 81 | margin-top: 10px; 82 | margin-bottom: 0; 83 | } 84 | 85 | &.heading_center { 86 | align-items: center; 87 | text-align: center; 88 | } 89 | } 90 | 91 | a, 92 | a:hover, 93 | a:focus { 94 | text-decoration: none; 95 | } 96 | 97 | a:hover, 98 | a:focus { 99 | color: initial; 100 | } 101 | 102 | .btn, 103 | .btn:focus { 104 | outline: none !important; 105 | box-shadow: none; 106 | } 107 | 108 | /*header section*/ 109 | .hero_area { 110 | position: relative; 111 | min-height: 100vh; 112 | display: flex; 113 | flex-direction: column; 114 | 115 | .hero_bg_box { 116 | position: absolute; 117 | top: 0; 118 | left: 0; 119 | width: 100%; 120 | height: 100%; 121 | display: flex; 122 | justify-content: center; 123 | align-items: flex-end; 124 | overflow: hidden; 125 | z-index: -1; 126 | 127 | .bg_img_box { 128 | min-width: 100%; 129 | min-height: 100%; 130 | } 131 | 132 | img { 133 | min-width: 100%; 134 | min-height: 100%; 135 | } 136 | } 137 | } 138 | 139 | .sub_page { 140 | .hero_area { 141 | min-height: auto; 142 | background: linear-gradient(130deg, #231a6f, #0f054c); 143 | 144 | .hero_bg_box { 145 | display: none; 146 | } 147 | } 148 | 149 | } 150 | 151 | .header_section { 152 | padding: 15px 0; 153 | 154 | .container-fluid { 155 | padding-right: 25px; 156 | padding-left: 25px; 157 | } 158 | } 159 | 160 | .navbar-brand { 161 | span { 162 | font-weight: bold; 163 | font-size: 24px; 164 | color: $white; 165 | } 166 | } 167 | 168 | .custom_nav-container { 169 | padding: 0; 170 | 171 | .navbar-nav { 172 | margin-left: auto; 173 | 174 | .nav-item { 175 | .nav-link { 176 | padding: 5px 20px; 177 | color: $white; 178 | text-align: center; 179 | text-transform: uppercase; 180 | border-radius: 5px; 181 | transition: all 0.3s; 182 | } 183 | 184 | &:hover, 185 | &.active { 186 | .nav-link { 187 | color: $primary1; 188 | } 189 | } 190 | 191 | &.active { 192 | .nav-link { 193 | font-weight: 600; 194 | } 195 | } 196 | } 197 | } 198 | } 199 | 200 | .custom_nav-container .nav_search-btn { 201 | width: 35px; 202 | height: 35px; 203 | padding: 0; 204 | border: none; 205 | color: $white; 206 | 207 | &:hover { 208 | color: $primary1; 209 | } 210 | } 211 | 212 | .custom_nav-container .navbar-toggler { 213 | outline: none; 214 | } 215 | 216 | .custom_nav-container .navbar-toggler { 217 | padding: 0; 218 | width: 37px; 219 | height: 42px; 220 | transition: all 0.3s; 221 | 222 | span { 223 | display: block; 224 | width: 35px; 225 | height: 4px; 226 | background-color: $white; 227 | margin: 7px 0; 228 | transition: all 0.3s; 229 | position: relative; 230 | border-radius: 5px; 231 | transition: all 0.3s; 232 | 233 | &::before, 234 | &::after { 235 | content: ""; 236 | position: absolute; 237 | left: 0; 238 | height: 100%; 239 | width: 100%; 240 | background-color: $white; 241 | top: -10px; 242 | border-radius: 5px; 243 | transition: all 0.3s; 244 | } 245 | 246 | &::after { 247 | top: 10px; 248 | } 249 | } 250 | 251 | &[aria-expanded="true"] { 252 | transform: rotate(360deg); 253 | 254 | span { 255 | transform: rotate(45deg); 256 | 257 | &::before, 258 | &::after { 259 | transform: rotate(90deg); 260 | top: 0; 261 | } 262 | } 263 | 264 | 265 | } 266 | 267 | 268 | } 269 | 270 | /*end header section*/ 271 | 272 | /* slider section */ 273 | .slider_section { 274 | flex: 1; 275 | display: flex; 276 | align-items: center; 277 | position: relative; 278 | padding: 45px 0 145px 0; 279 | 280 | .row { 281 | align-items: center; 282 | } 283 | 284 | #customCarousel1 { 285 | width: 100%; 286 | position: unset; 287 | } 288 | 289 | .detail-box { 290 | color: $primary2; 291 | 292 | h1 { 293 | font-size: 3rem; 294 | font-weight: bold; 295 | text-transform: uppercase; 296 | margin-bottom: 15px; 297 | color: $white; 298 | } 299 | 300 | p { 301 | color: #fefefe; 302 | font-size: 14px; 303 | } 304 | 305 | .btn-box { 306 | display: flex; 307 | margin: 0 -5px; 308 | margin-top: 25px; 309 | 310 | a { 311 | margin: 5px; 312 | text-align: center; 313 | width: 165px; 314 | } 315 | 316 | .btn1 { 317 | @include hero_btn($primary1, $white, 10px, 15px, 0); 318 | } 319 | 320 | .btn2 { 321 | @include hero_btn($black, $white, 10px, 15px, 0); 322 | } 323 | } 324 | } 325 | 326 | .img-box { 327 | margin: 45px 0; 328 | 329 | img { 330 | width: 100%; 331 | animation: upDown 5s infinite; 332 | } 333 | 334 | } 335 | 336 | @keyframes upDown { 337 | 0% { 338 | transform: translateY(-45px); 339 | } 340 | 341 | 50% { 342 | transform: translateY(45px); 343 | } 344 | 345 | 100% { 346 | transform: translateY(-45px); 347 | } 348 | } 349 | 350 | .carousel-indicators { 351 | position: unset; 352 | margin: 0; 353 | justify-content: center; 354 | align-items: center; 355 | 356 | li { 357 | background-color: $white; 358 | width: 12px; 359 | height: 12px; 360 | border-radius: 100%; 361 | opacity: 1; 362 | 363 | &.active { 364 | width: 20px; 365 | height: 20px; 366 | background-color: $primary1; 367 | } 368 | } 369 | } 370 | } 371 | 372 | // end slider section 373 | 374 | // service section 375 | 376 | .service_section { 377 | position: relative; 378 | 379 | .box { 380 | display: flex; 381 | flex-direction: column; 382 | align-items: center; 383 | text-align: center; 384 | margin-top: 45px; 385 | background-color: #f8f8f9; 386 | padding: 20px; 387 | border-radius: 5px; 388 | 389 | .img-box { 390 | display: flex; 391 | justify-content: center; 392 | align-items: flex-start; 393 | width: 125px; 394 | min-width: 75px; 395 | height: 75px; 396 | margin-bottom: 15px; 397 | 398 | img { 399 | max-width: 100%; 400 | max-height: 100%; 401 | transition: all 0.3s; 402 | } 403 | } 404 | 405 | .detail-box { 406 | h5 { 407 | font-weight: bold; 408 | text-transform: uppercase; 409 | } 410 | 411 | p {} 412 | 413 | a { 414 | color: $primary2; 415 | font-weight: 600; 416 | 417 | &:hover { 418 | color: $primary1; 419 | } 420 | } 421 | } 422 | 423 | } 424 | 425 | .btn-box { 426 | display: flex; 427 | justify-content: center; 428 | margin-top: 45px; 429 | 430 | a { 431 | @include hero_btn($primary1, $white, 10px, 45px, 0); 432 | } 433 | } 434 | } 435 | 436 | // end service section 437 | 438 | // about section 439 | .about_section { 440 | background-color: $primary2; 441 | color: $white; 442 | 443 | .heading_container { 444 | margin-bottom: 45px; 445 | } 446 | 447 | .row { 448 | align-items: center; 449 | } 450 | 451 | .img-box { 452 | img { 453 | max-width: 100%; 454 | } 455 | } 456 | 457 | .detail-box { 458 | h3 { 459 | font-weight: bold; 460 | } 461 | 462 | p { 463 | margin-top: 15px; 464 | } 465 | 466 | a { 467 | @include hero_btn($primary1, $white, 10px, 45px, 0px); 468 | margin-top: 15px; 469 | } 470 | } 471 | } 472 | 473 | // end about section 474 | 475 | // why section 476 | 477 | .why_section { 478 | 479 | .box { 480 | margin-top: 45px; 481 | display: flex; 482 | flex-direction: column; 483 | align-items: center; 484 | text-align: center; 485 | 486 | .img-box { 487 | margin-bottom: 20px; 488 | width: 120px; 489 | height: 120px; 490 | min-width: 120px; 491 | min-height: 120px; 492 | border-radius: 100%; 493 | border: 5px solid $primary2; 494 | display: flex; 495 | justify-content: center; 496 | align-items: center; 497 | 498 | img { 499 | width: 55px; 500 | height: auto; 501 | fill: $primary2; 502 | } 503 | } 504 | 505 | h5 { 506 | font-weight: bold; 507 | margin-bottom: 10px; 508 | } 509 | 510 | p { 511 | margin-bottom: 0; 512 | } 513 | } 514 | 515 | .btn-box { 516 | display: flex; 517 | justify-content: center; 518 | margin-top: 45px; 519 | 520 | a { 521 | @include hero_btn($primary1, $white, 10px, 45px, 0); 522 | } 523 | } 524 | } 525 | 526 | // end why section 527 | 528 | /*team section */ 529 | 530 | .team_section { 531 | text-align: center; 532 | background-color: $primary2; 533 | color: $white; 534 | 535 | .heading_container { 536 | justify-content: center; 537 | } 538 | 539 | .team_container { 540 | padding: 0 15px; 541 | 542 | .box { 543 | padding: 35px 0 0 0; 544 | border-radius: 5px; 545 | overflow: hidden; 546 | transition: all .1s; 547 | margin-top: 45px; 548 | // background-color: #053068; 549 | background: linear-gradient(to bottom, lighten($color: $primary2, $amount: 3), lighten($color: $primary2, $amount: 5)); 550 | 551 | .img-box { 552 | display: flex; 553 | justify-content: center; 554 | align-items: center; 555 | 556 | img { 557 | width: 120px; 558 | border-radius: 100%; 559 | border: 5px solid $white; 560 | } 561 | 562 | } 563 | 564 | .detail-box { 565 | margin: 25px 0; 566 | 567 | h5 { 568 | color: $primary1; 569 | font-weight: 600; 570 | position: relative; 571 | } 572 | 573 | } 574 | 575 | .social_box { 576 | padding: 10px 45px 20px 45px; 577 | display: flex; 578 | justify-content: space-between; 579 | 580 | a { 581 | color: $white; 582 | font-size: 22px; 583 | 584 | &:hover { 585 | color: $primary1; 586 | } 587 | } 588 | } 589 | } 590 | } 591 | 592 | 593 | } 594 | 595 | /*team section end*/ 596 | 597 | /* client section start */ 598 | 599 | .client_section { 600 | .heading_container { 601 | margin-bottom: 30px; 602 | } 603 | 604 | .box { 605 | display: flex; 606 | flex-direction: column; 607 | margin: 15px; 608 | 609 | .img-box { 610 | position: relative; 611 | display: flex; 612 | justify-content: center; 613 | align-items: center; 614 | width: 100px; 615 | margin-bottom: -50px; 616 | margin-left: 25px; 617 | position: relative; 618 | 619 | img { 620 | border-radius: 100%; 621 | } 622 | } 623 | 624 | .client_id { 625 | display: flex; 626 | justify-content: space-between; 627 | 628 | .client_info { 629 | h6 { 630 | font-weight: 600; 631 | margin-bottom: 5px; 632 | } 633 | 634 | p { 635 | margin-bottom: 0; 636 | font-size: 15px; 637 | font-size: 14px; 638 | margin-bottom: 10px; 639 | } 640 | } 641 | } 642 | 643 | .detail-box { 644 | background-color: $white; 645 | box-shadow: 0 0 15px 0 rgba($color: #000000, $alpha: 0.15); 646 | padding: 75px 25px 25px 25px; 647 | 648 | i { 649 | color: $primary2; 650 | margin-bottom: 10px; 651 | } 652 | } 653 | } 654 | 655 | .owl-carousel { 656 | .owl-nav { 657 | display: flex; 658 | justify-content: center; 659 | margin-top: 45px; 660 | 661 | .owl-prev, 662 | .owl-next { 663 | width: 55px; 664 | height: 55px; 665 | background-color: $white; 666 | color: $black; 667 | outline: none; 668 | bottom: 0px; 669 | font-size: 24px; 670 | box-shadow: 0 0 5px 0 rgba($color: #000000, $alpha: 0.25); 671 | 672 | &:hover { 673 | color: $primary2; 674 | } 675 | } 676 | } 677 | } 678 | } 679 | 680 | /* client section end */ 681 | 682 | // info section 683 | .info_section { 684 | background-color: $primary2; 685 | color: $white; 686 | padding: 45px 0 15px 0; 687 | 688 | h4 { 689 | font-weight: 600; 690 | margin-bottom: 20px; 691 | } 692 | 693 | .info_col { 694 | margin-bottom: 30px; 695 | } 696 | 697 | .info_contact { 698 | .contact_link_box { 699 | display: flex; 700 | flex-direction: column; 701 | 702 | a { 703 | margin: 5px 0; 704 | color: $white; 705 | 706 | i { 707 | margin-right: 5px; 708 | } 709 | 710 | &:hover { 711 | color: $primary1; 712 | } 713 | } 714 | } 715 | } 716 | 717 | .info_social { 718 | display: flex; 719 | margin-top: 20px; 720 | margin-bottom: 10px; 721 | 722 | a { 723 | display: flex; 724 | justify-content: center; 725 | align-items: center; 726 | color: $white; 727 | border-radius: 100%; 728 | margin-right: 10px; 729 | font-size: 24px; 730 | 731 | &:hover { 732 | color: $primary1; 733 | } 734 | } 735 | } 736 | 737 | .info_links { 738 | display: flex; 739 | flex-direction: column; 740 | flex-wrap: wrap; 741 | 742 | a { 743 | display: flex; 744 | align-items: center; 745 | margin-bottom: 15px; 746 | color: $white; 747 | 748 | &:hover { 749 | color: $primary1; 750 | } 751 | } 752 | } 753 | 754 | form { 755 | input { 756 | border: none; 757 | border-bottom: 1px solid $white; 758 | background-color: transparent; 759 | width: 100%; 760 | height: 45px; 761 | color: $white; 762 | outline: none; 763 | 764 | &::placeholder { 765 | color: $white; 766 | } 767 | } 768 | 769 | button { 770 | width: 100%; 771 | text-align: center; 772 | @include hero_btn($primary1, $white, 10px, 55px, 0); 773 | margin-top: 15px; 774 | } 775 | } 776 | } 777 | 778 | // end info section 779 | 780 | /* footer section*/ 781 | 782 | .footer_section { 783 | position: relative; 784 | background-color: $white; 785 | text-align: center; 786 | 787 | p { 788 | color: $primary2; 789 | padding: 25px 0; 790 | margin: 0; 791 | 792 | a { 793 | color: inherit; 794 | } 795 | } 796 | } 797 | 798 | // end footer section -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap"); 2 | body { 3 | font-family: "Open Sans", sans-serif; 4 | color: #0c0c0c; 5 | background-color: #ffffff; 6 | overflow-x: hidden; 7 | } 8 | 9 | .layout_padding { 10 | padding: 90px 0; 11 | } 12 | 13 | .layout_padding2 { 14 | padding: 75px 0; 15 | } 16 | 17 | .layout_padding2-top { 18 | padding-top: 75px; 19 | } 20 | 21 | .layout_padding2-bottom { 22 | padding-bottom: 75px; 23 | } 24 | 25 | .layout_padding-top { 26 | padding-top: 90px; 27 | } 28 | 29 | .layout_padding-bottom { 30 | padding-bottom: 90px; 31 | } 32 | 33 | .heading_container { 34 | display: -webkit-box; 35 | display: -ms-flexbox; 36 | display: flex; 37 | -webkit-box-orient: vertical; 38 | -webkit-box-direction: normal; 39 | -ms-flex-direction: column; 40 | flex-direction: column; 41 | -webkit-box-align: start; 42 | -ms-flex-align: start; 43 | align-items: flex-start; 44 | } 45 | 46 | .heading_container h2 { 47 | position: relative; 48 | font-weight: bold; 49 | margin-bottom: 0; 50 | } 51 | 52 | .heading_container h2 span { 53 | color: #00bbf0; 54 | } 55 | 56 | .heading_container p { 57 | margin-top: 10px; 58 | margin-bottom: 0; 59 | } 60 | 61 | .heading_container.heading_center { 62 | -webkit-box-align: center; 63 | -ms-flex-align: center; 64 | align-items: center; 65 | text-align: center; 66 | } 67 | 68 | a, 69 | a:hover, 70 | a:focus { 71 | text-decoration: none; 72 | } 73 | 74 | a:hover, 75 | a:focus { 76 | color: initial; 77 | } 78 | 79 | .btn, 80 | .btn:focus { 81 | outline: none !important; 82 | -webkit-box-shadow: none; 83 | box-shadow: none; 84 | } 85 | 86 | /*header section*/ 87 | .hero_area { 88 | position: relative; 89 | min-height: 100vh; 90 | display: -webkit-box; 91 | display: -ms-flexbox; 92 | display: flex; 93 | -webkit-box-orient: vertical; 94 | -webkit-box-direction: normal; 95 | -ms-flex-direction: column; 96 | flex-direction: column; 97 | } 98 | 99 | .hero_area .hero_bg_box { 100 | position: absolute; 101 | top: 0; 102 | left: 0; 103 | width: 100%; 104 | height: 100%; 105 | display: -webkit-box; 106 | display: -ms-flexbox; 107 | display: flex; 108 | -webkit-box-pack: center; 109 | -ms-flex-pack: center; 110 | justify-content: center; 111 | -webkit-box-align: end; 112 | -ms-flex-align: end; 113 | align-items: flex-end; 114 | overflow: hidden; 115 | z-index: -1; 116 | } 117 | 118 | .hero_area .hero_bg_box .bg_img_box { 119 | min-width: 100%; 120 | min-height: 100%; 121 | } 122 | 123 | .hero_area .hero_bg_box img { 124 | min-width: 100%; 125 | min-height: 100%; 126 | } 127 | 128 | .sub_page .hero_area { 129 | min-height: auto; 130 | background: linear-gradient(130deg, #231a6f, #0f054c); 131 | } 132 | 133 | .sub_page .hero_area .hero_bg_box { 134 | display: none; 135 | } 136 | 137 | .header_section { 138 | padding: 15px 0; 139 | } 140 | 141 | .header_section .container-fluid { 142 | padding-right: 25px; 143 | padding-left: 25px; 144 | } 145 | 146 | .navbar-brand span { 147 | font-weight: bold; 148 | font-size: 24px; 149 | color: #ffffff; 150 | } 151 | 152 | .custom_nav-container { 153 | padding: 0; 154 | } 155 | 156 | .custom_nav-container .navbar-nav { 157 | margin-left: auto; 158 | } 159 | 160 | .custom_nav-container .navbar-nav .nav-item .nav-link { 161 | padding: 5px 20px; 162 | color: #ffffff; 163 | text-align: center; 164 | text-transform: uppercase; 165 | border-radius: 5px; 166 | -webkit-transition: all 0.3s; 167 | transition: all 0.3s; 168 | } 169 | 170 | .custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link { 171 | color: #00bbf0; 172 | } 173 | 174 | .custom_nav-container .navbar-nav .nav-item.active .nav-link { 175 | font-weight: 600; 176 | } 177 | 178 | .custom_nav-container .nav_search-btn { 179 | width: 35px; 180 | height: 35px; 181 | padding: 0; 182 | border: none; 183 | color: #ffffff; 184 | } 185 | 186 | .custom_nav-container .nav_search-btn:hover { 187 | color: #00bbf0; 188 | } 189 | 190 | .custom_nav-container .navbar-toggler { 191 | outline: none; 192 | } 193 | 194 | .custom_nav-container .navbar-toggler { 195 | padding: 0; 196 | width: 37px; 197 | height: 42px; 198 | -webkit-transition: all 0.3s; 199 | transition: all 0.3s; 200 | } 201 | 202 | .custom_nav-container .navbar-toggler span { 203 | display: block; 204 | width: 35px; 205 | height: 4px; 206 | background-color: #ffffff; 207 | margin: 7px 0; 208 | -webkit-transition: all 0.3s; 209 | transition: all 0.3s; 210 | position: relative; 211 | border-radius: 5px; 212 | transition: all 0.3s; 213 | } 214 | 215 | .custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after { 216 | content: ""; 217 | position: absolute; 218 | left: 0; 219 | height: 100%; 220 | width: 100%; 221 | background-color: #ffffff; 222 | top: -10px; 223 | border-radius: 5px; 224 | -webkit-transition: all 0.3s; 225 | transition: all 0.3s; 226 | } 227 | 228 | .custom_nav-container .navbar-toggler span::after { 229 | top: 10px; 230 | } 231 | 232 | .custom_nav-container .navbar-toggler[aria-expanded="true"] { 233 | -webkit-transform: rotate(360deg); 234 | transform: rotate(360deg); 235 | } 236 | 237 | .custom_nav-container .navbar-toggler[aria-expanded="true"] span { 238 | -webkit-transform: rotate(45deg); 239 | transform: rotate(45deg); 240 | } 241 | 242 | .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after { 243 | -webkit-transform: rotate(90deg); 244 | transform: rotate(90deg); 245 | top: 0; 246 | } 247 | 248 | /*end header section*/ 249 | /* slider section */ 250 | .slider_section { 251 | -webkit-box-flex: 1; 252 | -ms-flex: 1; 253 | flex: 1; 254 | display: -webkit-box; 255 | display: -ms-flexbox; 256 | display: flex; 257 | -webkit-box-align: center; 258 | -ms-flex-align: center; 259 | align-items: center; 260 | position: relative; 261 | padding: 45px 0 145px 0; 262 | } 263 | 264 | .slider_section .row { 265 | -webkit-box-align: center; 266 | -ms-flex-align: center; 267 | align-items: center; 268 | } 269 | 270 | .slider_section #customCarousel1 { 271 | width: 100%; 272 | position: unset; 273 | } 274 | 275 | .slider_section .detail-box { 276 | color: #00204a; 277 | } 278 | 279 | .slider_section .detail-box h1 { 280 | font-size: 3rem; 281 | font-weight: bold; 282 | text-transform: uppercase; 283 | margin-bottom: 15px; 284 | color: #ffffff; 285 | } 286 | 287 | .slider_section .detail-box p { 288 | color: #fefefe; 289 | font-size: 14px; 290 | } 291 | 292 | .slider_section .detail-box .btn-box { 293 | display: -webkit-box; 294 | display: -ms-flexbox; 295 | display: flex; 296 | margin: 0 -5px; 297 | margin-top: 25px; 298 | } 299 | 300 | .slider_section .detail-box .btn-box a { 301 | margin: 5px; 302 | text-align: center; 303 | width: 165px; 304 | } 305 | 306 | .slider_section .detail-box .btn-box .btn1 { 307 | display: inline-block; 308 | padding: 10px 15px; 309 | background-color: #00bbf0; 310 | color: #ffffff; 311 | border-radius: 0; 312 | -webkit-transition: all 0.3s; 313 | transition: all 0.3s; 314 | border: none; 315 | } 316 | 317 | .slider_section .detail-box .btn-box .btn1:hover { 318 | background-color: #007fa4; 319 | } 320 | 321 | .slider_section .detail-box .btn-box .btn2 { 322 | display: inline-block; 323 | padding: 10px 15px; 324 | background-color: #000000; 325 | color: #ffffff; 326 | border-radius: 0; 327 | -webkit-transition: all 0.3s; 328 | transition: all 0.3s; 329 | border: none; 330 | } 331 | 332 | .slider_section .detail-box .btn-box .btn2:hover { 333 | background-color: black; 334 | } 335 | 336 | .slider_section .img-box { 337 | margin: 45px 0; 338 | } 339 | 340 | .slider_section .img-box img { 341 | width: 100%; 342 | -webkit-animation: upDown 5s infinite; 343 | animation: upDown 5s infinite; 344 | } 345 | 346 | @-webkit-keyframes upDown { 347 | 0% { 348 | -webkit-transform: translateY(-45px); 349 | transform: translateY(-45px); 350 | } 351 | 50% { 352 | -webkit-transform: translateY(45px); 353 | transform: translateY(45px); 354 | } 355 | 100% { 356 | -webkit-transform: translateY(-45px); 357 | transform: translateY(-45px); 358 | } 359 | } 360 | 361 | @keyframes upDown { 362 | 0% { 363 | -webkit-transform: translateY(-45px); 364 | transform: translateY(-45px); 365 | } 366 | 50% { 367 | -webkit-transform: translateY(45px); 368 | transform: translateY(45px); 369 | } 370 | 100% { 371 | -webkit-transform: translateY(-45px); 372 | transform: translateY(-45px); 373 | } 374 | } 375 | 376 | .slider_section .carousel-indicators { 377 | position: unset; 378 | margin: 0; 379 | -webkit-box-pack: center; 380 | -ms-flex-pack: center; 381 | justify-content: center; 382 | -webkit-box-align: center; 383 | -ms-flex-align: center; 384 | align-items: center; 385 | } 386 | 387 | .slider_section .carousel-indicators li { 388 | background-color: #ffffff; 389 | width: 12px; 390 | height: 12px; 391 | border-radius: 100%; 392 | opacity: 1; 393 | } 394 | 395 | .slider_section .carousel-indicators li.active { 396 | width: 20px; 397 | height: 20px; 398 | background-color: #00bbf0; 399 | } 400 | 401 | .service_section { 402 | position: relative; 403 | } 404 | 405 | .service_section .box { 406 | display: -webkit-box; 407 | display: -ms-flexbox; 408 | display: flex; 409 | -webkit-box-orient: vertical; 410 | -webkit-box-direction: normal; 411 | -ms-flex-direction: column; 412 | flex-direction: column; 413 | -webkit-box-align: center; 414 | -ms-flex-align: center; 415 | align-items: center; 416 | text-align: center; 417 | margin-top: 45px; 418 | background-color: #f8f8f9; 419 | padding: 20px; 420 | border-radius: 5px; 421 | } 422 | 423 | .service_section .box .img-box { 424 | display: -webkit-box; 425 | display: -ms-flexbox; 426 | display: flex; 427 | -webkit-box-pack: center; 428 | -ms-flex-pack: center; 429 | justify-content: center; 430 | -webkit-box-align: start; 431 | -ms-flex-align: start; 432 | align-items: flex-start; 433 | width: 125px; 434 | min-width: 75px; 435 | height: 75px; 436 | margin-bottom: 15px; 437 | } 438 | 439 | .service_section .box .img-box img { 440 | max-width: 100%; 441 | max-height: 100%; 442 | -webkit-transition: all 0.3s; 443 | transition: all 0.3s; 444 | } 445 | 446 | .service_section .box .detail-box h5 { 447 | font-weight: bold; 448 | text-transform: uppercase; 449 | } 450 | 451 | .service_section .box .detail-box a { 452 | color: #00204a; 453 | font-weight: 600; 454 | } 455 | 456 | .service_section .box .detail-box a:hover { 457 | color: #00bbf0; 458 | } 459 | 460 | .service_section .btn-box { 461 | display: -webkit-box; 462 | display: -ms-flexbox; 463 | display: flex; 464 | -webkit-box-pack: center; 465 | -ms-flex-pack: center; 466 | justify-content: center; 467 | margin-top: 45px; 468 | } 469 | 470 | .service_section .btn-box a { 471 | display: inline-block; 472 | padding: 10px 45px; 473 | background-color: #00bbf0; 474 | color: #ffffff; 475 | border-radius: 0; 476 | -webkit-transition: all 0.3s; 477 | transition: all 0.3s; 478 | border: none; 479 | } 480 | 481 | .service_section .btn-box a:hover { 482 | background-color: #007fa4; 483 | } 484 | 485 | .about_section { 486 | background-color: #00204a; 487 | color: #ffffff; 488 | } 489 | 490 | .about_section .heading_container { 491 | margin-bottom: 45px; 492 | } 493 | 494 | .about_section .row { 495 | -webkit-box-align: center; 496 | -ms-flex-align: center; 497 | align-items: center; 498 | } 499 | 500 | .about_section .img-box img { 501 | max-width: 100%; 502 | } 503 | 504 | .about_section .detail-box h3 { 505 | font-weight: bold; 506 | } 507 | 508 | .about_section .detail-box p { 509 | margin-top: 15px; 510 | } 511 | 512 | .about_section .detail-box a { 513 | display: inline-block; 514 | padding: 10px 45px; 515 | background-color: #00bbf0; 516 | color: #ffffff; 517 | border-radius: 0px; 518 | -webkit-transition: all 0.3s; 519 | transition: all 0.3s; 520 | border: none; 521 | margin-top: 15px; 522 | } 523 | 524 | .about_section .detail-box a:hover { 525 | background-color: #007fa4; 526 | } 527 | 528 | .why_section .box { 529 | margin-top: 45px; 530 | display: -webkit-box; 531 | display: -ms-flexbox; 532 | display: flex; 533 | -webkit-box-orient: vertical; 534 | -webkit-box-direction: normal; 535 | -ms-flex-direction: column; 536 | flex-direction: column; 537 | -webkit-box-align: center; 538 | -ms-flex-align: center; 539 | align-items: center; 540 | text-align: center; 541 | } 542 | 543 | .why_section .box .img-box { 544 | margin-bottom: 20px; 545 | width: 120px; 546 | height: 120px; 547 | min-width: 120px; 548 | min-height: 120px; 549 | border-radius: 100%; 550 | border: 5px solid #00204a; 551 | display: -webkit-box; 552 | display: -ms-flexbox; 553 | display: flex; 554 | -webkit-box-pack: center; 555 | -ms-flex-pack: center; 556 | justify-content: center; 557 | -webkit-box-align: center; 558 | -ms-flex-align: center; 559 | align-items: center; 560 | } 561 | 562 | .why_section .box .img-box img { 563 | width: 55px; 564 | height: auto; 565 | fill: #00204a; 566 | } 567 | 568 | .why_section .box h5 { 569 | font-weight: bold; 570 | margin-bottom: 10px; 571 | } 572 | 573 | .why_section .box p { 574 | margin-bottom: 0; 575 | } 576 | 577 | .why_section .btn-box { 578 | display: -webkit-box; 579 | display: -ms-flexbox; 580 | display: flex; 581 | -webkit-box-pack: center; 582 | -ms-flex-pack: center; 583 | justify-content: center; 584 | margin-top: 45px; 585 | } 586 | 587 | .why_section .btn-box a { 588 | display: inline-block; 589 | padding: 10px 45px; 590 | background-color: #00bbf0; 591 | color: #ffffff; 592 | border-radius: 0; 593 | -webkit-transition: all 0.3s; 594 | transition: all 0.3s; 595 | border: none; 596 | } 597 | 598 | .why_section .btn-box a:hover { 599 | background-color: #007fa4; 600 | } 601 | 602 | /*team section */ 603 | .team_section { 604 | text-align: center; 605 | background-color: #00204a; 606 | color: #ffffff; 607 | } 608 | 609 | .team_section .heading_container { 610 | -webkit-box-pack: center; 611 | -ms-flex-pack: center; 612 | justify-content: center; 613 | } 614 | 615 | .team_section .team_container { 616 | padding: 0 15px; 617 | } 618 | 619 | .team_section .team_container .box { 620 | padding: 35px 0 0 0; 621 | border-radius: 5px; 622 | overflow: hidden; 623 | -webkit-transition: all .1s; 624 | transition: all .1s; 625 | margin-top: 45px; 626 | background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64)); 627 | background: linear-gradient(to bottom, #002759, #002b64); 628 | } 629 | 630 | .team_section .team_container .box .img-box { 631 | display: -webkit-box; 632 | display: -ms-flexbox; 633 | display: flex; 634 | -webkit-box-pack: center; 635 | -ms-flex-pack: center; 636 | justify-content: center; 637 | -webkit-box-align: center; 638 | -ms-flex-align: center; 639 | align-items: center; 640 | } 641 | 642 | .team_section .team_container .box .img-box img { 643 | width: 120px; 644 | border-radius: 100%; 645 | border: 5px solid #ffffff; 646 | } 647 | 648 | .team_section .team_container .box .detail-box { 649 | margin: 25px 0; 650 | } 651 | 652 | .team_section .team_container .box .detail-box h5 { 653 | color: #00bbf0; 654 | font-weight: 600; 655 | position: relative; 656 | } 657 | 658 | .team_section .team_container .box .social_box { 659 | padding: 10px 45px 20px 45px; 660 | display: -webkit-box; 661 | display: -ms-flexbox; 662 | display: flex; 663 | -webkit-box-pack: justify; 664 | -ms-flex-pack: justify; 665 | justify-content: space-between; 666 | } 667 | 668 | .team_section .team_container .box .social_box a { 669 | color: #ffffff; 670 | font-size: 22px; 671 | } 672 | 673 | .team_section .team_container .box .social_box a:hover { 674 | color: #00bbf0; 675 | } 676 | 677 | /*team section end*/ 678 | /* client section start */ 679 | .client_section .heading_container { 680 | margin-bottom: 30px; 681 | } 682 | 683 | .client_section .box { 684 | display: -webkit-box; 685 | display: -ms-flexbox; 686 | display: flex; 687 | -webkit-box-orient: vertical; 688 | -webkit-box-direction: normal; 689 | -ms-flex-direction: column; 690 | flex-direction: column; 691 | margin: 15px; 692 | } 693 | 694 | .client_section .box .img-box { 695 | position: relative; 696 | display: -webkit-box; 697 | display: -ms-flexbox; 698 | display: flex; 699 | -webkit-box-pack: center; 700 | -ms-flex-pack: center; 701 | justify-content: center; 702 | -webkit-box-align: center; 703 | -ms-flex-align: center; 704 | align-items: center; 705 | width: 100px; 706 | margin-bottom: -50px; 707 | margin-left: 25px; 708 | position: relative; 709 | } 710 | 711 | .client_section .box .img-box img { 712 | border-radius: 100%; 713 | } 714 | 715 | .client_section .box .client_id { 716 | display: -webkit-box; 717 | display: -ms-flexbox; 718 | display: flex; 719 | -webkit-box-pack: justify; 720 | -ms-flex-pack: justify; 721 | justify-content: space-between; 722 | } 723 | 724 | .client_section .box .client_id .client_info h6 { 725 | font-weight: 600; 726 | margin-bottom: 5px; 727 | } 728 | 729 | .client_section .box .client_id .client_info p { 730 | margin-bottom: 0; 731 | font-size: 15px; 732 | font-size: 14px; 733 | margin-bottom: 10px; 734 | } 735 | 736 | .client_section .box .detail-box { 737 | background-color: #ffffff; 738 | -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); 739 | box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); 740 | padding: 75px 25px 25px 25px; 741 | } 742 | 743 | .client_section .box .detail-box i { 744 | color: #00204a; 745 | margin-bottom: 10px; 746 | } 747 | 748 | .client_section .owl-carousel .owl-nav { 749 | display: -webkit-box; 750 | display: -ms-flexbox; 751 | display: flex; 752 | -webkit-box-pack: center; 753 | -ms-flex-pack: center; 754 | justify-content: center; 755 | margin-top: 45px; 756 | } 757 | 758 | .client_section .owl-carousel .owl-nav .owl-prev, 759 | .client_section .owl-carousel .owl-nav .owl-next { 760 | width: 55px; 761 | height: 55px; 762 | background-color: #ffffff; 763 | color: #000000; 764 | outline: none; 765 | bottom: 0px; 766 | font-size: 24px; 767 | -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25); 768 | box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25); 769 | } 770 | 771 | .client_section .owl-carousel .owl-nav .owl-prev:hover, 772 | .client_section .owl-carousel .owl-nav .owl-next:hover { 773 | color: #00204a; 774 | } 775 | 776 | /* client section end */ 777 | .info_section { 778 | background-color: #00204a; 779 | color: #ffffff; 780 | padding: 45px 0 15px 0; 781 | } 782 | 783 | .info_section h4 { 784 | font-weight: 600; 785 | margin-bottom: 20px; 786 | } 787 | 788 | .info_section .info_col { 789 | margin-bottom: 30px; 790 | } 791 | 792 | .info_section .info_contact .contact_link_box { 793 | display: -webkit-box; 794 | display: -ms-flexbox; 795 | display: flex; 796 | -webkit-box-orient: vertical; 797 | -webkit-box-direction: normal; 798 | -ms-flex-direction: column; 799 | flex-direction: column; 800 | } 801 | 802 | .info_section .info_contact .contact_link_box a { 803 | margin: 5px 0; 804 | color: #ffffff; 805 | } 806 | 807 | .info_section .info_contact .contact_link_box a i { 808 | margin-right: 5px; 809 | } 810 | 811 | .info_section .info_contact .contact_link_box a:hover { 812 | color: #00bbf0; 813 | } 814 | 815 | .info_section .info_social { 816 | display: -webkit-box; 817 | display: -ms-flexbox; 818 | display: flex; 819 | margin-top: 20px; 820 | margin-bottom: 10px; 821 | } 822 | 823 | .info_section .info_social a { 824 | display: -webkit-box; 825 | display: -ms-flexbox; 826 | display: flex; 827 | -webkit-box-pack: center; 828 | -ms-flex-pack: center; 829 | justify-content: center; 830 | -webkit-box-align: center; 831 | -ms-flex-align: center; 832 | align-items: center; 833 | color: #ffffff; 834 | border-radius: 100%; 835 | margin-right: 10px; 836 | font-size: 24px; 837 | } 838 | 839 | .info_section .info_social a:hover { 840 | color: #00bbf0; 841 | } 842 | 843 | .info_section .info_links { 844 | display: -webkit-box; 845 | display: -ms-flexbox; 846 | display: flex; 847 | -webkit-box-orient: vertical; 848 | -webkit-box-direction: normal; 849 | -ms-flex-direction: column; 850 | flex-direction: column; 851 | -ms-flex-wrap: wrap; 852 | flex-wrap: wrap; 853 | } 854 | 855 | .info_section .info_links a { 856 | display: -webkit-box; 857 | display: -ms-flexbox; 858 | display: flex; 859 | -webkit-box-align: center; 860 | -ms-flex-align: center; 861 | align-items: center; 862 | margin-bottom: 15px; 863 | color: #ffffff; 864 | } 865 | 866 | .info_section .info_links a:hover { 867 | color: #00bbf0; 868 | } 869 | 870 | .info_section form input { 871 | border: none; 872 | border-bottom: 1px solid #ffffff; 873 | background-color: transparent; 874 | width: 100%; 875 | height: 45px; 876 | color: #ffffff; 877 | outline: none; 878 | } 879 | 880 | .info_section form input::-webkit-input-placeholder { 881 | color: #ffffff; 882 | } 883 | 884 | .info_section form input:-ms-input-placeholder { 885 | color: #ffffff; 886 | } 887 | 888 | .info_section form input::-ms-input-placeholder { 889 | color: #ffffff; 890 | } 891 | 892 | .info_section form input::placeholder { 893 | color: #ffffff; 894 | } 895 | 896 | .info_section form button { 897 | width: 100%; 898 | text-align: center; 899 | display: inline-block; 900 | padding: 10px 55px; 901 | background-color: #00bbf0; 902 | color: #ffffff; 903 | border-radius: 0; 904 | -webkit-transition: all 0.3s; 905 | transition: all 0.3s; 906 | border: none; 907 | margin-top: 15px; 908 | } 909 | 910 | .info_section form button:hover { 911 | background-color: #007fa4; 912 | } 913 | 914 | /* footer section*/ 915 | .footer_section { 916 | position: relative; 917 | background-color: #ffffff; 918 | text-align: center; 919 | } 920 | 921 | .footer_section p { 922 | color: #00204a; 923 | padding: 25px 0; 924 | margin: 0; 925 | } 926 | 927 | .footer_section p a { 928 | color: inherit; 929 | } 930 | /*# sourceMappingURL=style.css.map */ -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ 2 | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0