├── README.md ├── .DS_Store ├── assets ├── .DS_Store ├── js │ ├── .DS_Store │ ├── main.js │ └── wow.min.js ├── css │ ├── .DS_Store │ ├── lineicons.css │ └── main.css ├── img │ ├── .DS_Store │ ├── favicon.png │ ├── hero │ │ ├── sglbtr.png │ │ ├── hero-img.png │ │ ├── arrow-up-right.png │ │ ├── hero-bg.svg │ │ ├── hero-shape.svg │ │ └── whatsapp.svg │ ├── logo │ │ ├── .DS_Store │ │ ├── logo.svg │ │ └── logo-2.svg │ ├── about │ │ ├── about-1.png │ │ ├── about-2.png │ │ ├── epsinm.png │ │ ├── sglbtr_1.png │ │ ├── dailyservice.png │ │ ├── about-right-shape.svg │ │ ├── about-left-shape.svg │ │ ├── left-dots.svg │ │ └── right-dots.svg │ ├── testimonial │ │ ├── testimonial-1.png │ │ ├── testimonial-2.png │ │ ├── testimonial-3.png │ │ ├── testimonial-shape.svg │ │ └── testimonial-dots.svg │ ├── favicon.svg │ ├── footer │ │ └── footer-bg.svg │ └── subscribe │ │ └── subscribe-bg.svg └── fonts │ ├── LineIcons.eot │ ├── LineIcons.ttf │ ├── LineIcons.woff │ └── LineIcons.woff2 ├── LICENSE ├── es └── index.html └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Personal Web 2 | My personal website 3 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/.DS_Store -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/js/.DS_Store -------------------------------------------------------------------------------- /assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/css/.DS_Store -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/fonts/LineIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/fonts/LineIcons.eot -------------------------------------------------------------------------------- /assets/fonts/LineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/fonts/LineIcons.ttf -------------------------------------------------------------------------------- /assets/img/hero/sglbtr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/hero/sglbtr.png -------------------------------------------------------------------------------- /assets/img/logo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/logo/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/LineIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/fonts/LineIcons.woff -------------------------------------------------------------------------------- /assets/fonts/LineIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/fonts/LineIcons.woff2 -------------------------------------------------------------------------------- /assets/img/about/about-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/about/about-1.png -------------------------------------------------------------------------------- /assets/img/about/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/about/about-2.png -------------------------------------------------------------------------------- /assets/img/about/epsinm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/about/epsinm.png -------------------------------------------------------------------------------- /assets/img/about/sglbtr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/about/sglbtr_1.png -------------------------------------------------------------------------------- /assets/img/hero/hero-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/hero/hero-img.png -------------------------------------------------------------------------------- /assets/img/about/dailyservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/about/dailyservice.png -------------------------------------------------------------------------------- /assets/img/hero/arrow-up-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/hero/arrow-up-right.png -------------------------------------------------------------------------------- /assets/img/testimonial/testimonial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/testimonial/testimonial-1.png -------------------------------------------------------------------------------- /assets/img/testimonial/testimonial-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/testimonial/testimonial-2.png -------------------------------------------------------------------------------- /assets/img/testimonial/testimonial-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmarrero14/web/HEAD/assets/img/testimonial/testimonial-3.png -------------------------------------------------------------------------------- /assets/img/favicon.svg: -------------------------------------------------------------------------------- 1 | Saas -------------------------------------------------------------------------------- /assets/img/hero/hero-bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/about/about-right-shape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/testimonial/testimonial-shape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/about/about-left-shape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/footer/footer-bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Adrián Marrero 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/img/subscribe/subscribe-bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/hero/hero-shape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/hero/whatsapp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/about/left-dots.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/about/right-dots.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | //===== Prealoder 3 | 4 | window.onload = function () { 5 | window.setTimeout(fadeout, 500); 6 | }; 7 | 8 | function fadeout() { 9 | document.querySelector(".preloader").style.opacity = "0"; 10 | document.querySelector(".preloader").style.display = "none"; 11 | } 12 | 13 | /*===================================== 14 | Sticky 15 | ======================================= */ 16 | window.onscroll = function () { 17 | const header_navbar = document.querySelector(".navbar-area"); 18 | const sticky = header_navbar.offsetTop; 19 | const logo = document.querySelector(".navbar-brand img"); 20 | 21 | if (window.pageYOffset > sticky) { 22 | header_navbar.classList.add("sticky"); 23 | // logo.src = "assets/img/logo/logo-2.svg"; 24 | } else { 25 | header_navbar.classList.remove("sticky"); 26 | // logo.src = "assets/img/logo/logo.svg"; 27 | } 28 | 29 | // show or hide the back-top-top button 30 | const backToTo = document.querySelector(".scroll-top"); 31 | if ( 32 | document.body.scrollTop > 50 || 33 | document.documentElement.scrollTop > 50 34 | ) { 35 | backToTo.style.display = "flex"; 36 | } else { 37 | backToTo.style.display = "none"; 38 | } 39 | }; 40 | 41 | // for menu scroll 42 | const pageLink = document.querySelectorAll(".page-scroll"); 43 | 44 | pageLink.forEach((elem) => { 45 | elem.addEventListener("click", (e) => { 46 | e.preventDefault(); 47 | document.querySelector(elem.getAttribute("href")).scrollIntoView({ 48 | behavior: "smooth", 49 | offsetTop: 1 - 60, 50 | }); 51 | }); 52 | }); 53 | 54 | // section menu active 55 | function onScroll(event) { 56 | const sections = document.querySelectorAll(".page-scroll"); 57 | const scrollPos = 58 | window.pageYOffset || 59 | document.documentElement.scrollTop || 60 | document.body.scrollTop; 61 | 62 | for (let i = 0; i < sections.length; i++) { 63 | const currLink = sections[i]; 64 | const val = currLink.getAttribute("href"); 65 | const refElement = document.querySelector(val); 66 | const scrollTopMinus = scrollPos + 73; 67 | if ( 68 | refElement.offsetTop <= scrollTopMinus && 69 | refElement.offsetTop + refElement.offsetHeight > scrollTopMinus 70 | ) { 71 | document.querySelector(".page-scroll").classList.remove("active"); 72 | currLink.classList.add("active"); 73 | } else { 74 | currLink.classList.remove("active"); 75 | } 76 | } 77 | } 78 | 79 | window.document.addEventListener("scroll", onScroll); 80 | 81 | //===== close navbar-collapse when a clicked 82 | let navbarToggler = document.querySelector(".navbar-toggler"); 83 | const navbarCollapse = document.querySelector(".navbar-collapse"); 84 | 85 | document.querySelectorAll(".page-scroll").forEach((e) => 86 | e.addEventListener("click", () => { 87 | navbarToggler.classList.remove("active"); 88 | navbarCollapse.classList.remove("show"); 89 | }) 90 | ); 91 | navbarToggler.addEventListener("click", function () { 92 | navbarToggler.classList.toggle("active"); 93 | }); 94 | 95 | // WOW active 96 | new WOW().init(); 97 | })(); 98 | -------------------------------------------------------------------------------- /assets/img/testimonial/testimonial-dots.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/logo/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/logo/logo-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW wow.js - v1.3.0 - 2016-10-04 2 | * https://wowjs.uk 3 | * Copyright (c) 2016 Thomas Grainger; Licensed MIT */!function(a,b){if("function"==typeof define&&define.amd)define(["module","exports"],b);else if("undefined"!=typeof exports)b(module,exports);else{var c={exports:{}};b(c,c.exports),a.WOW=c.exports}}(this,function(a,b){"use strict";function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function d(a,b){return b.indexOf(a)>=0}function e(a,b){for(var c in b)if(null==a[c]){var d=b[c];a[c]=d}return a}function f(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)}function g(a){var b=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],c=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],d=arguments.length<=3||void 0===arguments[3]?null:arguments[3],e=void 0;return null!=document.createEvent?(e=document.createEvent("CustomEvent"),e.initCustomEvent(a,b,c,d)):null!=document.createEventObject?(e=document.createEventObject(),e.eventType=a):e.eventName=a,e}function h(a,b){null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)&&a["on"+b]()}function i(a,b,c){null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c}function j(a,b,c){null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]}function k(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight}Object.defineProperty(b,"__esModule",{value:!0});var l,m,n=function(){function a(a,b){for(var c=0;c=0){var b=a.target||a.srcElement;b.className=b.className.replace(this.config.animateClass,"").trim()}}},{key:"customStyle",value:function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a}},{key:"vendorSet",value:function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];a[""+c]=d;for(var e=0;e=e&&f>=c}},{key:"disabled",value:function(){return!this.config.mobile&&f(navigator.userAgent)}}]),a}();b["default"]=r,a.exports=b["default"]}); -------------------------------------------------------------------------------- /es/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Adrián 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | 41 | 42 | 43 |
44 | 94 | 95 |
96 | 97 | 98 | 99 |
100 |
101 |
102 |
103 |
104 |

105 | Soy Adrián Marrero 106 |

107 |

108 | 4+ años de experiencia como Desarrollador Full Stack. 109 |

110 | Mirar CV 116 | 117 | 123 | Whatsapp 124 | 125 | 126 | 127 | 128 |
129 |
130 |
131 |
132 | 133 |
134 |
135 |
136 |
137 |
138 | 139 | 140 | 141 |
142 | 143 |
144 |

145 | Experiencia 146 |

147 |
148 |
149 |
150 |
151 |
152 |
153 | 154 |
155 |
156 |

Angular

157 |

158 | Desarrollo de interfaces, consultas a APIs y consumo de servicios en tiempo real. 159 |

160 |
161 |
162 |
163 |
164 |
165 |
166 | 167 |
168 |
169 |

Laravel

170 |

171 | Desarrollo de APIs, servicios y consultas a base de datos para servir a distintos clientes. 172 |

173 |
174 |
175 |
176 |
177 |
178 |
179 | 180 |
181 |
182 |

PostgreSQL

183 |

184 | Creación de tablas, vistas, funciones y procedimientos. 185 |

186 |
187 |
188 |
189 |
190 |
191 |
192 | 193 | 194 | 195 |
196 |
197 |
198 |
199 |
200 |
201 |

202 | Otras tecnologías que he aprendido. 203 |

204 | 207 |
208 |
209 |
210 | 211 |
212 |
213 |
214 |
215 | 216 |
217 |
218 |

React

219 | 223 |
224 |
225 |
226 |
227 |
228 |
229 | 230 |
231 |
232 |

Vue JS

233 | 237 |
238 |
239 |
240 |
241 |
242 |
243 | 244 |
245 |
246 |

Node JS

247 | 251 |
252 |
253 |
254 |
255 |
256 |
257 | 258 |
259 |
260 |

Python

261 | 265 |
266 |
267 |
268 |
269 |
270 |
271 | 272 |
273 |
274 |

AWS

275 | 279 |
280 |
281 |
282 |
283 |
284 |
285 | 286 |
287 |
288 |

Docker

289 | 293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 | 301 | 302 | 303 |
304 |
305 |
306 |
307 |
308 | 309 | 314 | 319 |
320 |
321 |
322 |
323 |
324 |

325 | SGLBTR 326 |

327 | 330 |
331 |
    332 |
  • Desarrollo y mantenimiento de interfaz.
  • 333 |
  • Desarrollo de servicios a nivel de backend.
  • 334 |
  • Desarrollo y mantenimiento de base de datos.
  • 335 |
336 |
337 |
338 |
339 |
340 |
341 | 342 | 343 | 344 |
345 |
346 |
347 |
348 |
349 |
350 |

351 | EPSINM 352 |

353 | 356 |
357 |
    358 |
  • Desarrollo y mantenimiento de interfaz.
  • 359 |
  • Desarrollo de servicios a nivel de backend.
  • 360 |
  • Desarrollo y mantenimiento de base de datos.
  • 361 |
362 |
363 |
364 |
365 |
366 | 367 | 372 |
373 |
374 |
375 |
376 |
377 | 378 | 379 | 380 |
381 |
382 |
383 |
384 |
385 | 386 | 387 | 392 | 397 |
398 |
399 |
400 |
401 |
402 |

403 | Daily Service 404 |

405 | 408 |
409 |
    410 |
  • Desarrollo y mantenimiento de interfaz.
  • 411 |
  • Desarrollo de servicios a nivel de backend.
  • 412 |
  • Desarrollo y mantenimiento de base de datos.
  • 413 |
414 |
415 |
416 |
417 |
418 |
419 | 420 | 421 | 422 | 452 | 453 | 454 | 455 |
456 |
457 |
458 |
459 |
460 | 495 |
496 | 497 |
498 | 507 |
508 | 509 |
510 | 519 |
520 | 521 |
522 | 531 |
532 |
533 |
534 |
535 |
536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 551 | 552 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 570 | 571 | 572 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Adrián 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | 41 | 42 | 43 |
44 | 94 | 95 |
96 | 97 | 98 | 99 |
100 |
101 |
102 |
103 |
104 |

105 | I'm Adrián Marrero 106 |

107 |

108 | 4+ years of experience as a Full Stack Developer. 109 |

110 | 117 | 123 | Whatsapp 124 | Call me 125 | 126 | 127 | 128 | 129 |
130 |
131 |
132 |
133 | 134 |
135 |
136 |
137 |
138 |
139 | 140 | 141 | 142 |
143 |
144 |

145 | Experience 146 |

147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 | 155 |
156 |
157 | 158 |
159 |
160 |
161 |

Angular & React

162 |

163 | Development of interfaces, queries to APIs and consumption of services in real time. 164 |

165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 | 173 |
174 |
175 | 176 |
177 |
178 |
179 |

Express & Laravel

180 |

181 | Development of APIs, services and database queries to serve different clients. 182 |

183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 | 191 |
192 |
193 | 194 |
195 |
196 |
197 |

PostgreSQL & MongoDB

198 |

199 | Creation of tables, views, functions and procedures. 200 |

201 |
202 |
203 |
204 |
205 |
206 |
207 | 208 | 209 | 210 |
211 |
212 |
213 |
214 |
215 |
216 |

217 | I have also worked with 218 |

219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 | 227 |
228 |
229 |

NextJS

230 |
231 |
232 |
233 |
234 |
235 |
236 | 237 |
238 |
239 |

Vue JS

240 |
241 |
242 |
243 |
244 |
245 |
246 | 247 |
248 |
249 |

Python

250 | 254 |
255 |
256 |
257 |
258 |
259 |
260 | 261 |
262 |
263 |

AWS

264 |
265 |
266 |
267 |
268 |
269 |
270 | 271 |
272 |
273 |

Docker

274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 | 282 | 283 |
284 |
285 |

286 | Projects 287 |

288 |
289 |
290 | 291 | 292 | 293 |
294 |
295 |
296 |
297 |
298 | 299 | 304 | 309 |
310 |
311 |
312 |
313 |
314 |

315 | SGLBTR 316 |

317 | 320 |
321 |
    322 |
  • Development and interface maintenance.
  • 323 |
  • Development of services at the backend level.
  • 324 |
  • Database development and maintenance.
  • 325 |
326 |
327 |
328 |
329 |
330 |
331 | 332 | 333 | 334 |
335 |
336 |
337 |
338 |
339 |
340 |

341 | EPSINM 342 |

343 | 346 |
347 |
    348 |
  • Development and interface maintenance.
  • 349 |
  • Development of services at the backend level.
  • 350 |
  • Database development and maintenance.
  • 351 |
352 |
353 |
354 |
355 |
356 | 357 | 362 |
363 |
364 |
365 |
366 |
367 | 368 | 369 | 370 |
371 |
372 |
373 |
374 |
375 | 376 | 377 | 382 | 387 |
388 |
389 |
390 |
391 |
392 |

393 | Daily Service 394 |

395 | 398 |
399 |
    400 |
  • Development and interface maintenance.
  • 401 |
  • Development of services at the backend level.
  • 402 |
  • Database development and maintenance.
  • 403 |
404 |
405 |
406 |
407 |
408 |
409 | 410 | 411 | 412 | 442 | 443 | 444 | 445 |
446 |
447 |
448 |
449 |
450 | 485 |
486 | 487 |
488 | 497 |
498 | 499 |
500 | 509 |
510 | 511 |
512 | 521 |
522 |
523 |
524 |
525 |
526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 541 | 542 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 560 | 561 | 562 | -------------------------------------------------------------------------------- /assets/css/lineicons.css: -------------------------------------------------------------------------------- 1 | /*-------------------------------- 2 | 3 | LineIcons Web Font 4 | Author: lineicons.com 5 | 6 | -------------------------------- */ 7 | @font-face { 8 | font-family: 'LineIcons'; 9 | src: url('../fonts/LineIcons.eot'); 10 | src: url('../fonts/LineIcons.eot') format('embedded-opentype'), url('../fonts/LineIcons.woff2') format('woff2'), url('../fonts/LineIcons.woff') format('woff'), url('../fonts/LineIcons.ttf') format('truetype'), url('../fonts/LineIcons.svg') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | /*------------------------ 15 | base class definition 16 | -------------------------*/ 17 | .lni { 18 | display: inline-block; 19 | font: normal normal normal 1em/1 'LineIcons'; 20 | color: inherit; 21 | flex-shrink: 0; 22 | speak: none; 23 | text-transform: none; 24 | line-height: 1; 25 | vertical-align: -.125em; 26 | /* Better Font Rendering */ 27 | -webkit-font-smoothing: antialiased; 28 | -moz-osx-font-smoothing: grayscale; 29 | } 30 | /*------------------------ 31 | change icon size 32 | -------------------------*/ 33 | /* relative units */ 34 | .lni-sm { 35 | font-size: 0.8em; 36 | } 37 | .lni-lg { 38 | font-size: 1.2em; 39 | } 40 | /* absolute units */ 41 | .lni-16 { 42 | font-size: 16px; 43 | } 44 | .lni-32 { 45 | font-size: 32px; 46 | } 47 | 48 | /*------------------------ 49 | spinning icons 50 | -------------------------*/ 51 | .lni-is-spinning { 52 | animation: lni-spin 1s infinite linear; 53 | } 54 | @keyframes lni-spin { 55 | 0% { 56 | transform: rotate(0deg); 57 | } 58 | 100% { 59 | transform: rotate(360deg); 60 | } 61 | } 62 | /*------------------------ 63 | rotated/flipped icons 64 | -------------------------*/ 65 | .lni-rotate-90 { 66 | transform: rotate(90deg); 67 | } 68 | .lni-rotate-180 { 69 | transform: rotate(180deg); 70 | } 71 | .lni-rotate-270 { 72 | transform: rotate(270deg); 73 | } 74 | .lni-flip-y { 75 | transform: scaleY(-1); 76 | } 77 | .lni-flip-x { 78 | transform: scaleX(-1); 79 | } 80 | /*------------------------ 81 | icons 82 | -------------------------*/ 83 | 84 | .lni-500px::before { 85 | content: "\ea03"; 86 | } 87 | 88 | .lni-add-files::before { 89 | content: "\ea01"; 90 | } 91 | 92 | .lni-adobe::before { 93 | content: "\ea06"; 94 | } 95 | 96 | .lni-agenda::before { 97 | content: "\ea02"; 98 | } 99 | 100 | .lni-airbnb::before { 101 | content: "\ea07"; 102 | } 103 | 104 | .lni-alarm-clock::before { 105 | content: "\ea08"; 106 | } 107 | 108 | .lni-alarm::before { 109 | content: "\ea04"; 110 | } 111 | 112 | .lni-amazon-original::before { 113 | content: "\ea05"; 114 | } 115 | 116 | .lni-amazon-pay::before { 117 | content: "\ea09"; 118 | } 119 | 120 | .lni-amazon::before { 121 | content: "\ea0a"; 122 | } 123 | 124 | .lni-ambulance::before { 125 | content: "\ea0b"; 126 | } 127 | 128 | .lni-amex::before { 129 | content: "\ea0c"; 130 | } 131 | 132 | .lni-anchor::before { 133 | content: "\ea0d"; 134 | } 135 | 136 | .lni-android-original::before { 137 | content: "\ea0e"; 138 | } 139 | 140 | .lni-android::before { 141 | content: "\ea0f"; 142 | } 143 | 144 | .lni-angellist::before { 145 | content: "\ea10"; 146 | } 147 | 148 | .lni-angle-double-down::before { 149 | content: "\ea11"; 150 | } 151 | 152 | .lni-angle-double-left::before { 153 | content: "\ea12"; 154 | } 155 | 156 | .lni-angle-double-right::before { 157 | content: "\ea13"; 158 | } 159 | 160 | .lni-angle-double-up::before { 161 | content: "\ea14"; 162 | } 163 | 164 | .lni-angular::before { 165 | content: "\ea15"; 166 | } 167 | 168 | .lni-apartment::before { 169 | content: "\ea16"; 170 | } 171 | 172 | .lni-app-store::before { 173 | content: "\ea17"; 174 | } 175 | 176 | .lni-apple-music::before { 177 | content: "\ea18"; 178 | } 179 | 180 | .lni-apple-pay::before { 181 | content: "\ea19"; 182 | } 183 | 184 | .lni-apple::before { 185 | content: "\ea1a"; 186 | } 187 | 188 | .lni-archive::before { 189 | content: "\ea1f"; 190 | } 191 | 192 | .lni-arrow-down-circle::before { 193 | content: "\ea1b"; 194 | } 195 | 196 | .lni-arrow-down::before { 197 | content: "\ea1c"; 198 | } 199 | 200 | .lni-arrow-left-circle::before { 201 | content: "\ea1d"; 202 | } 203 | 204 | .lni-arrow-left::before { 205 | content: "\ea1e"; 206 | } 207 | 208 | .lni-arrow-right-circle::before { 209 | content: "\ea20"; 210 | } 211 | 212 | .lni-arrow-right::before { 213 | content: "\ea21"; 214 | } 215 | 216 | .lni-arrow-top-left::before { 217 | content: "\ea22"; 218 | } 219 | 220 | .lni-arrow-top-right::before { 221 | content: "\ea23"; 222 | } 223 | 224 | .lni-arrow-up-circle::before { 225 | content: "\ea24"; 226 | } 227 | 228 | .lni-arrow-up::before { 229 | content: "\ea25"; 230 | } 231 | 232 | .lni-arrows-horizontal::before { 233 | content: "\ea26"; 234 | } 235 | 236 | .lni-arrows-vertical::before { 237 | content: "\ea27"; 238 | } 239 | 240 | .lni-atlassian::before { 241 | content: "\ea28"; 242 | } 243 | 244 | .lni-aws::before { 245 | content: "\ea29"; 246 | } 247 | 248 | .lni-azure::before { 249 | content: "\ea2a"; 250 | } 251 | 252 | .lni-backward::before { 253 | content: "\ea2b"; 254 | } 255 | 256 | .lni-baloon::before { 257 | content: "\ea2c"; 258 | } 259 | 260 | .lni-ban::before { 261 | content: "\ea2d"; 262 | } 263 | 264 | .lni-bar-chart::before { 265 | content: "\ea2e"; 266 | } 267 | 268 | .lni-basketball::before { 269 | content: "\ea2f"; 270 | } 271 | 272 | .lni-behance-original::before { 273 | content: "\ea30"; 274 | } 275 | 276 | .lni-behance::before { 277 | content: "\ea31"; 278 | } 279 | 280 | .lni-bi-cycle::before { 281 | content: "\ea32"; 282 | } 283 | 284 | .lni-bitbucket::before { 285 | content: "\ea33"; 286 | } 287 | 288 | .lni-bitcoin::before { 289 | content: "\ea34"; 290 | } 291 | 292 | .lni-blackboard::before { 293 | content: "\ea35"; 294 | } 295 | 296 | .lni-blogger::before { 297 | content: "\ea36"; 298 | } 299 | 300 | .lni-bluetooth-original::before { 301 | content: "\ea37"; 302 | } 303 | 304 | .lni-bluetooth::before { 305 | content: "\ea38"; 306 | } 307 | 308 | .lni-bold::before { 309 | content: "\ea39"; 310 | } 311 | 312 | .lni-bolt-alt::before { 313 | content: "\ea3a"; 314 | } 315 | 316 | .lni-bolt::before { 317 | content: "\ea40"; 318 | } 319 | 320 | .lni-book::before { 321 | content: "\ea3b"; 322 | } 323 | 324 | .lni-bookmark-alt::before { 325 | content: "\ea3c"; 326 | } 327 | 328 | .lni-bookmark::before { 329 | content: "\ea3d"; 330 | } 331 | 332 | .lni-bootstrap::before { 333 | content: "\ea3e"; 334 | } 335 | 336 | .lni-bricks::before { 337 | content: "\ea3f"; 338 | } 339 | 340 | .lni-bridge::before { 341 | content: "\ea41"; 342 | } 343 | 344 | .lni-briefcase::before { 345 | content: "\ea42"; 346 | } 347 | 348 | .lni-brush-alt::before { 349 | content: "\ea43"; 350 | } 351 | 352 | .lni-brush::before { 353 | content: "\ea44"; 354 | } 355 | 356 | .lni-btc::before { 357 | content: "\ea45"; 358 | } 359 | 360 | .lni-bubble::before { 361 | content: "\ea46"; 362 | } 363 | 364 | .lni-bug::before { 365 | content: "\ea47"; 366 | } 367 | 368 | .lni-bulb::before { 369 | content: "\ea48"; 370 | } 371 | 372 | .lni-bullhorn::before { 373 | content: "\ea49"; 374 | } 375 | 376 | .lni-burger::before { 377 | content: "\ea4a"; 378 | } 379 | 380 | .lni-bus::before { 381 | content: "\ea4b"; 382 | } 383 | 384 | .lni-cake::before { 385 | content: "\ea4c"; 386 | } 387 | 388 | .lni-calculator::before { 389 | content: "\ea4d"; 390 | } 391 | 392 | .lni-calendar::before { 393 | content: "\ea4e"; 394 | } 395 | 396 | .lni-camera::before { 397 | content: "\ea4f"; 398 | } 399 | 400 | .lni-candy-cane::before { 401 | content: "\ea50"; 402 | } 403 | 404 | .lni-candy::before { 405 | content: "\ea51"; 406 | } 407 | 408 | .lni-capsule::before { 409 | content: "\ea52"; 410 | } 411 | 412 | .lni-car-alt::before { 413 | content: "\ea53"; 414 | } 415 | 416 | .lni-car::before { 417 | content: "\ea54"; 418 | } 419 | 420 | .lni-caravan::before { 421 | content: "\ea55"; 422 | } 423 | 424 | .lni-cart-full::before { 425 | content: "\ea56"; 426 | } 427 | 428 | .lni-cart::before { 429 | content: "\ea57"; 430 | } 431 | 432 | .lni-certificate::before { 433 | content: "\ea58"; 434 | } 435 | 436 | .lni-check-box::before { 437 | content: "\ea59"; 438 | } 439 | 440 | .lni-checkmark-circle::before { 441 | content: "\ea5a"; 442 | } 443 | 444 | .lni-checkmark::before { 445 | content: "\ea5b"; 446 | } 447 | 448 | .lni-chef-hat::before { 449 | content: "\ea5c"; 450 | } 451 | 452 | .lni-chevron-down-circle::before { 453 | content: "\ea5d"; 454 | } 455 | 456 | .lni-chevron-down::before { 457 | content: "\ea5e"; 458 | } 459 | 460 | .lni-chevron-left-circle::before { 461 | content: "\ea5f"; 462 | } 463 | 464 | .lni-chevron-left::before { 465 | content: "\ea60"; 466 | } 467 | 468 | .lni-chevron-right-circle::before { 469 | content: "\ea61"; 470 | } 471 | 472 | .lni-chevron-right::before { 473 | content: "\ea62"; 474 | } 475 | 476 | .lni-chevron-up-circle::before { 477 | content: "\ea63"; 478 | } 479 | 480 | .lni-chevron-up::before { 481 | content: "\ea64"; 482 | } 483 | 484 | .lni-chrome::before { 485 | content: "\ea65"; 486 | } 487 | 488 | .lni-chromecast::before { 489 | content: "\ea66"; 490 | } 491 | 492 | .lni-circle-minus::before { 493 | content: "\ea67"; 494 | } 495 | 496 | .lni-circle-plus::before { 497 | content: "\ea68"; 498 | } 499 | 500 | .lni-clipboard::before { 501 | content: "\ea69"; 502 | } 503 | 504 | .lni-close::before { 505 | content: "\ea6a"; 506 | } 507 | 508 | .lni-cloud-check::before { 509 | content: "\ea6b"; 510 | } 511 | 512 | .lni-cloud-download::before { 513 | content: "\ea6c"; 514 | } 515 | 516 | .lni-cloud-network::before { 517 | content: "\ea6d"; 518 | } 519 | 520 | .lni-cloud-sync::before { 521 | content: "\ea6e"; 522 | } 523 | 524 | .lni-cloud-upload::before { 525 | content: "\ea6f"; 526 | } 527 | 528 | .lni-cloud::before { 529 | content: "\ea70"; 530 | } 531 | 532 | .lni-cloudflare::before { 533 | content: "\ea71"; 534 | } 535 | 536 | .lni-cloudy-sun::before { 537 | content: "\ea72"; 538 | } 539 | 540 | .lni-code-alt::before { 541 | content: "\ea73"; 542 | } 543 | 544 | .lni-code::before { 545 | content: "\ea74"; 546 | } 547 | 548 | .lni-codepen::before { 549 | content: "\ea75"; 550 | } 551 | 552 | .lni-coffee-cup::before { 553 | content: "\ea76"; 554 | } 555 | 556 | .lni-cog::before { 557 | content: "\ea77"; 558 | } 559 | 560 | .lni-cogs::before { 561 | content: "\ea78"; 562 | } 563 | 564 | .lni-coin::before { 565 | content: "\ea79"; 566 | } 567 | 568 | .lni-comments-alt::before { 569 | content: "\ea7a"; 570 | } 571 | 572 | .lni-comments-reply::before { 573 | content: "\ea7b"; 574 | } 575 | 576 | .lni-comments::before { 577 | content: "\ea7c"; 578 | } 579 | 580 | .lni-compass::before { 581 | content: "\ea7d"; 582 | } 583 | 584 | .lni-connectdevelop::before { 585 | content: "\ea7e"; 586 | } 587 | 588 | .lni-construction-hammer::before { 589 | content: "\ea7f"; 590 | } 591 | 592 | .lni-construction::before { 593 | content: "\ea80"; 594 | } 595 | 596 | .lni-consulting::before { 597 | content: "\ea81"; 598 | } 599 | 600 | .lni-control-panel::before { 601 | content: "\ea82"; 602 | } 603 | 604 | .lni-cool::before { 605 | content: "\ea83"; 606 | } 607 | 608 | .lni-cpanel::before { 609 | content: "\ea84"; 610 | } 611 | 612 | .lni-creative-commons::before { 613 | content: "\ea85"; 614 | } 615 | 616 | .lni-credit-cards::before { 617 | content: "\ea86"; 618 | } 619 | 620 | .lni-crop::before { 621 | content: "\ea87"; 622 | } 623 | 624 | .lni-cross-circle::before { 625 | content: "\ea88"; 626 | } 627 | 628 | .lni-crown::before { 629 | content: "\ea89"; 630 | } 631 | 632 | .lni-css3::before { 633 | content: "\ea8a"; 634 | } 635 | 636 | .lni-cup::before { 637 | content: "\ea8b"; 638 | } 639 | 640 | .lni-customer::before { 641 | content: "\ea8c"; 642 | } 643 | 644 | .lni-cut::before { 645 | content: "\ea8d"; 646 | } 647 | 648 | .lni-dashboard::before { 649 | content: "\ea8e"; 650 | } 651 | 652 | .lni-database::before { 653 | content: "\ea8f"; 654 | } 655 | 656 | .lni-delivery::before { 657 | content: "\ea90"; 658 | } 659 | 660 | .lni-dev::before { 661 | content: "\ea91"; 662 | } 663 | 664 | .lni-diamond-alt::before { 665 | content: "\ea92"; 666 | } 667 | 668 | .lni-diamond::before { 669 | content: "\ea93"; 670 | } 671 | 672 | .lni-digitalocean::before { 673 | content: "\ea94"; 674 | } 675 | 676 | .lni-diners-club::before { 677 | content: "\ea95"; 678 | } 679 | 680 | .lni-dinner::before { 681 | content: "\ea96"; 682 | } 683 | 684 | .lni-direction-alt::before { 685 | content: "\ea97"; 686 | } 687 | 688 | .lni-direction-ltr::before { 689 | content: "\ea98"; 690 | } 691 | 692 | .lni-direction-rtl::before { 693 | content: "\ea99"; 694 | } 695 | 696 | .lni-direction::before { 697 | content: "\ea9a"; 698 | } 699 | 700 | .lni-discord::before { 701 | content: "\ea9b"; 702 | } 703 | 704 | .lni-discover::before { 705 | content: "\ea9c"; 706 | } 707 | 708 | .lni-display-alt::before { 709 | content: "\ea9d"; 710 | } 711 | 712 | .lni-display::before { 713 | content: "\ea9e"; 714 | } 715 | 716 | .lni-docker::before { 717 | content: "\ea9f"; 718 | } 719 | 720 | .lni-dollar::before { 721 | content: "\eaa0"; 722 | } 723 | 724 | .lni-domain::before { 725 | content: "\eaa1"; 726 | } 727 | 728 | .lni-download::before { 729 | content: "\eaa2"; 730 | } 731 | 732 | .lni-dribbble::before { 733 | content: "\eaa3"; 734 | } 735 | 736 | .lni-drop::before { 737 | content: "\eaa4"; 738 | } 739 | 740 | .lni-dropbox-original::before { 741 | content: "\eaa5"; 742 | } 743 | 744 | .lni-dropbox::before { 745 | content: "\eaa6"; 746 | } 747 | 748 | .lni-drupal-original::before { 749 | content: "\eaa7"; 750 | } 751 | 752 | .lni-drupal::before { 753 | content: "\eaa8"; 754 | } 755 | 756 | .lni-dumbbell::before { 757 | content: "\eaa9"; 758 | } 759 | 760 | .lni-edge::before { 761 | content: "\eaaa"; 762 | } 763 | 764 | .lni-empty-file::before { 765 | content: "\eaab"; 766 | } 767 | 768 | .lni-enter::before { 769 | content: "\eaac"; 770 | } 771 | 772 | .lni-envato::before { 773 | content: "\eaad"; 774 | } 775 | 776 | .lni-envelope::before { 777 | content: "\eaae"; 778 | } 779 | 780 | .lni-eraser::before { 781 | content: "\eaaf"; 782 | } 783 | 784 | .lni-euro::before { 785 | content: "\eab0"; 786 | } 787 | 788 | .lni-exit-down::before { 789 | content: "\eab1"; 790 | } 791 | 792 | .lni-exit-up::before { 793 | content: "\eab2"; 794 | } 795 | 796 | .lni-exit::before { 797 | content: "\eab3"; 798 | } 799 | 800 | .lni-eye::before { 801 | content: "\eab4"; 802 | } 803 | 804 | .lni-facebook-filled::before { 805 | content: "\eab5"; 806 | } 807 | 808 | .lni-facebook-messenger::before { 809 | content: "\eab6"; 810 | } 811 | 812 | .lni-facebook-original::before { 813 | content: "\eab7"; 814 | } 815 | 816 | .lni-facebook-oval::before { 817 | content: "\eab8"; 818 | } 819 | 820 | .lni-facebook::before { 821 | content: "\eab9"; 822 | } 823 | 824 | .lni-figma::before { 825 | content: "\eaba"; 826 | } 827 | 828 | .lni-files::before { 829 | content: "\eabb"; 830 | } 831 | 832 | .lni-firefox-original::before { 833 | content: "\eabc"; 834 | } 835 | 836 | .lni-firefox::before { 837 | content: "\eabd"; 838 | } 839 | 840 | .lni-fireworks::before { 841 | content: "\eabe"; 842 | } 843 | 844 | .lni-first-aid::before { 845 | content: "\eabf"; 846 | } 847 | 848 | .lni-flag-alt::before { 849 | content: "\eac0"; 850 | } 851 | 852 | .lni-flag::before { 853 | content: "\eac1"; 854 | } 855 | 856 | .lni-flags::before { 857 | content: "\eac2"; 858 | } 859 | 860 | .lni-flickr::before { 861 | content: "\eac3"; 862 | } 863 | 864 | .lni-flower::before { 865 | content: "\eac4"; 866 | } 867 | 868 | .lni-folder::before { 869 | content: "\eac5"; 870 | } 871 | 872 | .lni-forward::before { 873 | content: "\eac6"; 874 | } 875 | 876 | .lni-frame-expand::before { 877 | content: "\eac7"; 878 | } 879 | 880 | .lni-fresh-juice::before { 881 | content: "\eac8"; 882 | } 883 | 884 | .lni-friendly::before { 885 | content: "\eac9"; 886 | } 887 | 888 | .lni-full-screen::before { 889 | content: "\eaca"; 890 | } 891 | 892 | .lni-funnel::before { 893 | content: "\eacb"; 894 | } 895 | 896 | .lni-gallery::before { 897 | content: "\eacc"; 898 | } 899 | 900 | .lni-game::before { 901 | content: "\eacd"; 902 | } 903 | 904 | .lni-gatsby::before { 905 | content: "\eace"; 906 | } 907 | 908 | .lni-gift::before { 909 | content: "\eacf"; 910 | } 911 | 912 | .lni-git::before { 913 | content: "\ead0"; 914 | } 915 | 916 | .lni-github-original::before { 917 | content: "\ead1"; 918 | } 919 | 920 | .lni-github::before { 921 | content: "\ead2"; 922 | } 923 | 924 | .lni-goodreads::before { 925 | content: "\ead3"; 926 | } 927 | 928 | .lni-google-drive::before { 929 | content: "\ead4"; 930 | } 931 | 932 | .lni-google-pay::before { 933 | content: "\ead5"; 934 | } 935 | 936 | .lni-google-wallet::before { 937 | content: "\ead6"; 938 | } 939 | 940 | .lni-google::before { 941 | content: "\ead7"; 942 | } 943 | 944 | .lni-graduation::before { 945 | content: "\ead8"; 946 | } 947 | 948 | .lni-graph::before { 949 | content: "\ead9"; 950 | } 951 | 952 | .lni-grid-alt::before { 953 | content: "\eada"; 954 | } 955 | 956 | .lni-grid::before { 957 | content: "\eadb"; 958 | } 959 | 960 | .lni-grow::before { 961 | content: "\eadc"; 962 | } 963 | 964 | .lni-hacker-news::before { 965 | content: "\eadd"; 966 | } 967 | 968 | .lni-hammer::before { 969 | content: "\eade"; 970 | } 971 | 972 | .lni-hand::before { 973 | content: "\eadf"; 974 | } 975 | 976 | .lni-handshake::before { 977 | content: "\eae0"; 978 | } 979 | 980 | .lni-happy::before { 981 | content: "\eae1"; 982 | } 983 | 984 | .lni-harddrive::before { 985 | content: "\eae2"; 986 | } 987 | 988 | .lni-headphone-alt::before { 989 | content: "\eae3"; 990 | } 991 | 992 | .lni-headphone::before { 993 | content: "\eae4"; 994 | } 995 | 996 | .lni-heart-filled::before { 997 | content: "\eae5"; 998 | } 999 | 1000 | .lni-heart-monitor::before { 1001 | content: "\eae6"; 1002 | } 1003 | 1004 | .lni-heart::before { 1005 | content: "\eae7"; 1006 | } 1007 | 1008 | .lni-helicopter::before { 1009 | content: "\eae8"; 1010 | } 1011 | 1012 | .lni-helmet::before { 1013 | content: "\eae9"; 1014 | } 1015 | 1016 | .lni-help::before { 1017 | content: "\eaea"; 1018 | } 1019 | 1020 | .lni-highlight-alt::before { 1021 | content: "\eaeb"; 1022 | } 1023 | 1024 | .lni-highlight::before { 1025 | content: "\eaec"; 1026 | } 1027 | 1028 | .lni-home::before { 1029 | content: "\eaed"; 1030 | } 1031 | 1032 | .lni-hospital::before { 1033 | content: "\eaee"; 1034 | } 1035 | 1036 | .lni-hourglass::before { 1037 | content: "\eaef"; 1038 | } 1039 | 1040 | .lni-html5::before { 1041 | content: "\eaf0"; 1042 | } 1043 | 1044 | .lni-image::before { 1045 | content: "\eaf1"; 1046 | } 1047 | 1048 | .lni-imdb::before { 1049 | content: "\eaf2"; 1050 | } 1051 | 1052 | .lni-inbox::before { 1053 | content: "\eaf3"; 1054 | } 1055 | 1056 | .lni-indent-decrease::before { 1057 | content: "\eaf4"; 1058 | } 1059 | 1060 | .lni-indent-increase::before { 1061 | content: "\eaf5"; 1062 | } 1063 | 1064 | .lni-infinite::before { 1065 | content: "\eaf6"; 1066 | } 1067 | 1068 | .lni-information::before { 1069 | content: "\eaf7"; 1070 | } 1071 | 1072 | .lni-instagram-filled::before { 1073 | content: "\eaf8"; 1074 | } 1075 | 1076 | .lni-instagram-original::before { 1077 | content: "\eaf9"; 1078 | } 1079 | 1080 | .lni-instagram::before { 1081 | content: "\eafa"; 1082 | } 1083 | 1084 | .lni-invention::before { 1085 | content: "\eafb"; 1086 | } 1087 | 1088 | .lni-invest-monitor::before { 1089 | content: "\eafc"; 1090 | } 1091 | 1092 | .lni-investment::before { 1093 | content: "\eafd"; 1094 | } 1095 | 1096 | .lni-island::before { 1097 | content: "\eafe"; 1098 | } 1099 | 1100 | .lni-italic::before { 1101 | content: "\eaff"; 1102 | } 1103 | 1104 | .lni-java::before { 1105 | content: "\eb00"; 1106 | } 1107 | 1108 | .lni-javascript::before { 1109 | content: "\eb01"; 1110 | } 1111 | 1112 | .lni-jcb::before { 1113 | content: "\eb02"; 1114 | } 1115 | 1116 | .lni-joomla-original::before { 1117 | content: "\eb03"; 1118 | } 1119 | 1120 | .lni-joomla::before { 1121 | content: "\eb04"; 1122 | } 1123 | 1124 | .lni-jsfiddle::before { 1125 | content: "\eb05"; 1126 | } 1127 | 1128 | .lni-juice::before { 1129 | content: "\eb06"; 1130 | } 1131 | 1132 | .lni-key::before { 1133 | content: "\eb07"; 1134 | } 1135 | 1136 | .lni-keyboard::before { 1137 | content: "\eb08"; 1138 | } 1139 | 1140 | .lni-keyword-research::before { 1141 | content: "\eb09"; 1142 | } 1143 | 1144 | .lni-laptop-phone::before { 1145 | content: "\eb0a"; 1146 | } 1147 | 1148 | .lni-laptop::before { 1149 | content: "\eb0b"; 1150 | } 1151 | 1152 | .lni-laravel::before { 1153 | content: "\eb0c"; 1154 | } 1155 | 1156 | .lni-layers::before { 1157 | content: "\eb0d"; 1158 | } 1159 | 1160 | .lni-layout::before { 1161 | content: "\eb0e"; 1162 | } 1163 | 1164 | .lni-leaf::before { 1165 | content: "\eb0f"; 1166 | } 1167 | 1168 | .lni-library::before { 1169 | content: "\eb10"; 1170 | } 1171 | 1172 | .lni-license::before { 1173 | content: "\eb11"; 1174 | } 1175 | 1176 | .lni-lifering::before { 1177 | content: "\eb12"; 1178 | } 1179 | 1180 | .lni-line-dashed::before { 1181 | content: "\eb13"; 1182 | } 1183 | 1184 | .lni-line-dotted::before { 1185 | content: "\eb14"; 1186 | } 1187 | 1188 | .lni-line-double::before { 1189 | content: "\eb15"; 1190 | } 1191 | 1192 | .lni-line-spacing::before { 1193 | content: "\eb16"; 1194 | } 1195 | 1196 | .lni-line::before { 1197 | content: "\eb17"; 1198 | } 1199 | 1200 | .lni-lineicons-alt::before { 1201 | content: "\eb18"; 1202 | } 1203 | 1204 | .lni-lineicons::before { 1205 | content: "\eb19"; 1206 | } 1207 | 1208 | .lni-link::before { 1209 | content: "\eb1a"; 1210 | } 1211 | 1212 | .lni-linkedin-original::before { 1213 | content: "\eb1b"; 1214 | } 1215 | 1216 | .lni-linkedin::before { 1217 | content: "\eb1c"; 1218 | } 1219 | 1220 | .lni-list::before { 1221 | content: "\eb1d"; 1222 | } 1223 | 1224 | .lni-lock-alt::before { 1225 | content: "\eb1e"; 1226 | } 1227 | 1228 | .lni-lock::before { 1229 | content: "\eb1f"; 1230 | } 1231 | 1232 | .lni-magento::before { 1233 | content: "\eb20"; 1234 | } 1235 | 1236 | .lni-magnet::before { 1237 | content: "\eb21"; 1238 | } 1239 | 1240 | .lni-magnifier::before { 1241 | content: "\eb22"; 1242 | } 1243 | 1244 | .lni-mailchimp::before { 1245 | content: "\eb23"; 1246 | } 1247 | 1248 | .lni-map-marker::before { 1249 | content: "\eb24"; 1250 | } 1251 | 1252 | .lni-map::before { 1253 | content: "\eb25"; 1254 | } 1255 | 1256 | .lni-markdown::before { 1257 | content: "\eb26"; 1258 | } 1259 | 1260 | .lni-mashroom::before { 1261 | content: "\eb27"; 1262 | } 1263 | 1264 | .lni-mastercard::before { 1265 | content: "\eb28"; 1266 | } 1267 | 1268 | .lni-medium::before { 1269 | content: "\eb29"; 1270 | } 1271 | 1272 | .lni-menu::before { 1273 | content: "\eb2a"; 1274 | } 1275 | 1276 | .lni-mic::before { 1277 | content: "\eb2b"; 1278 | } 1279 | 1280 | .lni-microphone::before { 1281 | content: "\eb2c"; 1282 | } 1283 | 1284 | .lni-microscope::before { 1285 | content: "\eb2d"; 1286 | } 1287 | 1288 | .lni-microsoft-edge::before { 1289 | content: "\eb2e"; 1290 | } 1291 | 1292 | .lni-microsoft::before { 1293 | content: "\eb2f"; 1294 | } 1295 | 1296 | .lni-minus::before { 1297 | content: "\eb30"; 1298 | } 1299 | 1300 | .lni-mobile::before { 1301 | content: "\eb31"; 1302 | } 1303 | 1304 | .lni-money-location::before { 1305 | content: "\eb32"; 1306 | } 1307 | 1308 | .lni-money-protection::before { 1309 | content: "\eb33"; 1310 | } 1311 | 1312 | .lni-more-alt::before { 1313 | content: "\eb34"; 1314 | } 1315 | 1316 | .lni-more::before { 1317 | content: "\eb35"; 1318 | } 1319 | 1320 | .lni-mouse::before { 1321 | content: "\eb36"; 1322 | } 1323 | 1324 | .lni-move::before { 1325 | content: "\eb37"; 1326 | } 1327 | 1328 | .lni-music::before { 1329 | content: "\eb38"; 1330 | } 1331 | 1332 | .lni-netlify::before { 1333 | content: "\eb39"; 1334 | } 1335 | 1336 | .lni-network::before { 1337 | content: "\eb3a"; 1338 | } 1339 | 1340 | .lni-night::before { 1341 | content: "\eb3b"; 1342 | } 1343 | 1344 | .lni-nodejs-alt::before { 1345 | content: "\eb3c"; 1346 | } 1347 | 1348 | .lni-nodejs::before { 1349 | content: "\eb3d"; 1350 | } 1351 | 1352 | .lni-notepad::before { 1353 | content: "\eb3e"; 1354 | } 1355 | 1356 | .lni-npm::before { 1357 | content: "\eb3f"; 1358 | } 1359 | 1360 | .lni-offer::before { 1361 | content: "\eb40"; 1362 | } 1363 | 1364 | .lni-opera::before { 1365 | content: "\eb41"; 1366 | } 1367 | 1368 | .lni-package::before { 1369 | content: "\eb42"; 1370 | } 1371 | 1372 | .lni-page-break::before { 1373 | content: "\eb43"; 1374 | } 1375 | 1376 | .lni-pagination::before { 1377 | content: "\eb44"; 1378 | } 1379 | 1380 | .lni-paint-bucket::before { 1381 | content: "\eb45"; 1382 | } 1383 | 1384 | .lni-paint-roller::before { 1385 | content: "\eb46"; 1386 | } 1387 | 1388 | .lni-pallet::before { 1389 | content: "\eb47"; 1390 | } 1391 | 1392 | .lni-paperclip::before { 1393 | content: "\eb48"; 1394 | } 1395 | 1396 | .lni-patreon::before { 1397 | content: "\eb49"; 1398 | } 1399 | 1400 | .lni-pause::before { 1401 | content: "\eb4a"; 1402 | } 1403 | 1404 | .lni-paypal-original::before { 1405 | content: "\eb4b"; 1406 | } 1407 | 1408 | .lni-paypal::before { 1409 | content: "\eb4c"; 1410 | } 1411 | 1412 | .lni-pencil-alt::before { 1413 | content: "\eb4d"; 1414 | } 1415 | 1416 | .lni-pencil::before { 1417 | content: "\eb4e"; 1418 | } 1419 | 1420 | .lni-phone-set::before { 1421 | content: "\eb4f"; 1422 | } 1423 | 1424 | .lni-phone::before { 1425 | content: "\eb50"; 1426 | } 1427 | 1428 | .lni-php::before { 1429 | content: "\eb51"; 1430 | } 1431 | 1432 | .lni-pie-chart::before { 1433 | content: "\eb52"; 1434 | } 1435 | 1436 | .lni-pilcrow::before { 1437 | content: "\eb53"; 1438 | } 1439 | 1440 | .lni-pin::before { 1441 | content: "\eb54"; 1442 | } 1443 | 1444 | .lni-pinterest::before { 1445 | content: "\eb55"; 1446 | } 1447 | 1448 | .lni-pizza::before { 1449 | content: "\eb56"; 1450 | } 1451 | 1452 | .lni-plane::before { 1453 | content: "\eb57"; 1454 | } 1455 | 1456 | .lni-play-store::before { 1457 | content: "\eb58"; 1458 | } 1459 | 1460 | .lni-play::before { 1461 | content: "\eb59"; 1462 | } 1463 | 1464 | .lni-playstation::before { 1465 | content: "\eb5a"; 1466 | } 1467 | 1468 | .lni-plug::before { 1469 | content: "\eb5b"; 1470 | } 1471 | 1472 | .lni-plus::before { 1473 | content: "\eb5c"; 1474 | } 1475 | 1476 | .lni-pointer-down::before { 1477 | content: "\eb5d"; 1478 | } 1479 | 1480 | .lni-pointer-left::before { 1481 | content: "\eb5e"; 1482 | } 1483 | 1484 | .lni-pointer-right::before { 1485 | content: "\eb5f"; 1486 | } 1487 | 1488 | .lni-pointer-top::before { 1489 | content: "\eb60"; 1490 | } 1491 | 1492 | .lni-pointer::before { 1493 | content: "\eb61"; 1494 | } 1495 | 1496 | .lni-popup::before { 1497 | content: "\eb62"; 1498 | } 1499 | 1500 | .lni-postcard::before { 1501 | content: "\eb63"; 1502 | } 1503 | 1504 | .lni-pound::before { 1505 | content: "\eb64"; 1506 | } 1507 | 1508 | .lni-power-switch::before { 1509 | content: "\eb65"; 1510 | } 1511 | 1512 | .lni-printer::before { 1513 | content: "\eb66"; 1514 | } 1515 | 1516 | .lni-producthunt::before { 1517 | content: "\eb67"; 1518 | } 1519 | 1520 | .lni-protection::before { 1521 | content: "\eb68"; 1522 | } 1523 | 1524 | .lni-pulse::before { 1525 | content: "\eb69"; 1526 | } 1527 | 1528 | .lni-pyramids::before { 1529 | content: "\eb6a"; 1530 | } 1531 | 1532 | .lni-python::before { 1533 | content: "\eb6b"; 1534 | } 1535 | 1536 | .lni-question-circle::before { 1537 | content: "\eb6c"; 1538 | } 1539 | 1540 | .lni-quora::before { 1541 | content: "\eb6d"; 1542 | } 1543 | 1544 | .lni-quotation::before { 1545 | content: "\eb6e"; 1546 | } 1547 | 1548 | .lni-radio-button::before { 1549 | content: "\eb6f"; 1550 | } 1551 | 1552 | .lni-rain::before { 1553 | content: "\eb70"; 1554 | } 1555 | 1556 | .lni-react::before { 1557 | content: "\eb73"; 1558 | } 1559 | 1560 | .lni-reddit::before { 1561 | content: "\eb71"; 1562 | } 1563 | 1564 | .lni-reload::before { 1565 | content: "\eb72"; 1566 | } 1567 | 1568 | .lni-remove-file::before { 1569 | content: "\eb74"; 1570 | } 1571 | 1572 | .lni-reply::before { 1573 | content: "\eb75"; 1574 | } 1575 | 1576 | .lni-restaurant::before { 1577 | content: "\eb76"; 1578 | } 1579 | 1580 | .lni-revenue::before { 1581 | content: "\eb77"; 1582 | } 1583 | 1584 | .lni-road::before { 1585 | content: "\eb78"; 1586 | } 1587 | 1588 | .lni-rocket::before { 1589 | content: "\eb79"; 1590 | } 1591 | 1592 | .lni-rss-feed::before { 1593 | content: "\eb7a"; 1594 | } 1595 | 1596 | .lni-ruler-alt::before { 1597 | content: "\eb7b"; 1598 | } 1599 | 1600 | .lni-ruler-pencil::before { 1601 | content: "\eb7c"; 1602 | } 1603 | 1604 | .lni-ruler::before { 1605 | content: "\eb7d"; 1606 | } 1607 | 1608 | .lni-rupee::before { 1609 | content: "\eb7e"; 1610 | } 1611 | 1612 | .lni-sad::before { 1613 | content: "\eb7f"; 1614 | } 1615 | 1616 | .lni-save::before { 1617 | content: "\eb80"; 1618 | } 1619 | 1620 | .lni-school-bench-alt::before { 1621 | content: "\eb81"; 1622 | } 1623 | 1624 | .lni-school-bench::before { 1625 | content: "\eb82"; 1626 | } 1627 | 1628 | .lni-scooter::before { 1629 | content: "\eb83"; 1630 | } 1631 | 1632 | .lni-scroll-down::before { 1633 | content: "\eb84"; 1634 | } 1635 | 1636 | .lni-search-alt::before { 1637 | content: "\eb85"; 1638 | } 1639 | 1640 | .lni-search::before { 1641 | content: "\eb86"; 1642 | } 1643 | 1644 | .lni-select::before { 1645 | content: "\eb87"; 1646 | } 1647 | 1648 | .lni-seo::before { 1649 | content: "\eb88"; 1650 | } 1651 | 1652 | .lni-service::before { 1653 | content: "\eb89"; 1654 | } 1655 | 1656 | .lni-share-alt-1::before { 1657 | content: "\eb8a"; 1658 | } 1659 | 1660 | .lni-share-alt::before { 1661 | content: "\eb8b"; 1662 | } 1663 | 1664 | .lni-share::before { 1665 | content: "\eb8c"; 1666 | } 1667 | 1668 | .lni-shield::before { 1669 | content: "\eb8d"; 1670 | } 1671 | 1672 | .lni-shift-left::before { 1673 | content: "\eb8e"; 1674 | } 1675 | 1676 | .lni-shift-right::before { 1677 | content: "\eb8f"; 1678 | } 1679 | 1680 | .lni-ship::before { 1681 | content: "\eb90"; 1682 | } 1683 | 1684 | .lni-shopify::before { 1685 | content: "\eb91"; 1686 | } 1687 | 1688 | .lni-shopping-basket::before { 1689 | content: "\eb92"; 1690 | } 1691 | 1692 | .lni-shortcode::before { 1693 | content: "\eb93"; 1694 | } 1695 | 1696 | .lni-shovel::before { 1697 | content: "\eb94"; 1698 | } 1699 | 1700 | .lni-shuffle::before { 1701 | content: "\eb95"; 1702 | } 1703 | 1704 | .lni-signal::before { 1705 | content: "\eb96"; 1706 | } 1707 | 1708 | .lni-sketch::before { 1709 | content: "\eb97"; 1710 | } 1711 | 1712 | .lni-skipping-rope::before { 1713 | content: "\eb98"; 1714 | } 1715 | 1716 | .lni-skype::before { 1717 | content: "\eb99"; 1718 | } 1719 | 1720 | .lni-slack-line::before { 1721 | content: "\eb9a"; 1722 | } 1723 | 1724 | .lni-slack::before { 1725 | content: "\eb9b"; 1726 | } 1727 | 1728 | .lni-slice::before { 1729 | content: "\eb9c"; 1730 | } 1731 | 1732 | .lni-slideshare::before { 1733 | content: "\eb9d"; 1734 | } 1735 | 1736 | .lni-slim::before { 1737 | content: "\eb9e"; 1738 | } 1739 | 1740 | .lni-smile::before { 1741 | content: "\eb9f"; 1742 | } 1743 | 1744 | .lni-snapchat::before { 1745 | content: "\eba0"; 1746 | } 1747 | 1748 | .lni-sort-alpha-asc::before { 1749 | content: "\eba1"; 1750 | } 1751 | 1752 | .lni-sort-amount-asc::before { 1753 | content: "\eba2"; 1754 | } 1755 | 1756 | .lni-sort-amount-dsc::before { 1757 | content: "\eba3"; 1758 | } 1759 | 1760 | .lni-soundcloud-original::before { 1761 | content: "\eba4"; 1762 | } 1763 | 1764 | .lni-soundcloud::before { 1765 | content: "\eba5"; 1766 | } 1767 | 1768 | .lni-speechless::before { 1769 | content: "\eba6"; 1770 | } 1771 | 1772 | .lni-spellcheck::before { 1773 | content: "\eba7"; 1774 | } 1775 | 1776 | .lni-spinner-arrow::before { 1777 | content: "\eba8"; 1778 | } 1779 | 1780 | .lni-spinner-solid::before { 1781 | content: "\eba9"; 1782 | } 1783 | 1784 | .lni-spinner::before { 1785 | content: "\ebaa"; 1786 | } 1787 | 1788 | .lni-spotify-original::before { 1789 | content: "\ebab"; 1790 | } 1791 | 1792 | .lni-spotify::before { 1793 | content: "\ebac"; 1794 | } 1795 | 1796 | .lni-spray::before { 1797 | content: "\ebad"; 1798 | } 1799 | 1800 | .lni-sprout::before { 1801 | content: "\ebae"; 1802 | } 1803 | 1804 | .lni-squarespace::before { 1805 | content: "\ebaf"; 1806 | } 1807 | 1808 | .lni-stackoverflow::before { 1809 | content: "\ebb0"; 1810 | } 1811 | 1812 | .lni-stamp::before { 1813 | content: "\ebb1"; 1814 | } 1815 | 1816 | .lni-star-empty::before { 1817 | content: "\ebb2"; 1818 | } 1819 | 1820 | .lni-star-filled::before { 1821 | content: "\ebb3"; 1822 | } 1823 | 1824 | .lni-star-half::before { 1825 | content: "\ebb4"; 1826 | } 1827 | 1828 | .lni-star::before { 1829 | content: "\ebb5"; 1830 | } 1831 | 1832 | .lni-stats-down::before { 1833 | content: "\ebb6"; 1834 | } 1835 | 1836 | .lni-stats-up::before { 1837 | content: "\ebb7"; 1838 | } 1839 | 1840 | .lni-steam::before { 1841 | content: "\ebb8"; 1842 | } 1843 | 1844 | .lni-sthethoscope::before { 1845 | content: "\ebb9"; 1846 | } 1847 | 1848 | .lni-stop::before { 1849 | content: "\ebba"; 1850 | } 1851 | 1852 | .lni-strikethrough::before { 1853 | content: "\ebbb"; 1854 | } 1855 | 1856 | .lni-stripe::before { 1857 | content: "\ebbc"; 1858 | } 1859 | 1860 | .lni-stumbleupon::before { 1861 | content: "\ebbd"; 1862 | } 1863 | 1864 | .lni-sun::before { 1865 | content: "\ebbe"; 1866 | } 1867 | 1868 | .lni-support::before { 1869 | content: "\ebbf"; 1870 | } 1871 | 1872 | .lni-surf-board::before { 1873 | content: "\ebc0"; 1874 | } 1875 | 1876 | .lni-suspect::before { 1877 | content: "\ebc1"; 1878 | } 1879 | 1880 | .lni-swift::before { 1881 | content: "\ebc2"; 1882 | } 1883 | 1884 | .lni-syringe::before { 1885 | content: "\ebc3"; 1886 | } 1887 | 1888 | .lni-tab::before { 1889 | content: "\ebc4"; 1890 | } 1891 | 1892 | .lni-tag::before { 1893 | content: "\ebc5"; 1894 | } 1895 | 1896 | .lni-target-customer::before { 1897 | content: "\ebc6"; 1898 | } 1899 | 1900 | .lni-target-revenue::before { 1901 | content: "\ebc7"; 1902 | } 1903 | 1904 | .lni-target::before { 1905 | content: "\ebc8"; 1906 | } 1907 | 1908 | .lni-taxi::before { 1909 | content: "\ebc9"; 1910 | } 1911 | 1912 | .lni-teabag::before { 1913 | content: "\ebca"; 1914 | } 1915 | 1916 | .lni-telegram-original::before { 1917 | content: "\ebcb"; 1918 | } 1919 | 1920 | .lni-telegram::before { 1921 | content: "\ebcc"; 1922 | } 1923 | 1924 | .lni-text-align-center::before { 1925 | content: "\ebcd"; 1926 | } 1927 | 1928 | .lni-text-align-justify::before { 1929 | content: "\ebce"; 1930 | } 1931 | 1932 | .lni-text-align-left::before { 1933 | content: "\ebcf"; 1934 | } 1935 | 1936 | .lni-text-align-right::before { 1937 | content: "\ebd0"; 1938 | } 1939 | 1940 | .lni-text-format-remove::before { 1941 | content: "\ebd4"; 1942 | } 1943 | 1944 | .lni-text-format::before { 1945 | content: "\ebd1"; 1946 | } 1947 | 1948 | .lni-thought::before { 1949 | content: "\ebd2"; 1950 | } 1951 | 1952 | .lni-thumbs-down::before { 1953 | content: "\ebd3"; 1954 | } 1955 | 1956 | .lni-thumbs-up::before { 1957 | content: "\ebd5"; 1958 | } 1959 | 1960 | .lni-thunder-alt::before { 1961 | content: "\ebd6"; 1962 | } 1963 | 1964 | .lni-thunder::before { 1965 | content: "\ebd7"; 1966 | } 1967 | 1968 | .lni-ticket-alt::before { 1969 | content: "\ebd8"; 1970 | } 1971 | 1972 | .lni-ticket::before { 1973 | content: "\ebd9"; 1974 | } 1975 | 1976 | .lni-tiktok::before { 1977 | content: "\ebda"; 1978 | } 1979 | 1980 | .lni-timer::before { 1981 | content: "\ebdb"; 1982 | } 1983 | 1984 | .lni-tounge::before { 1985 | content: "\ebdc"; 1986 | } 1987 | 1988 | .lni-train-alt::before { 1989 | content: "\ebdd"; 1990 | } 1991 | 1992 | .lni-train::before { 1993 | content: "\ebde"; 1994 | } 1995 | 1996 | .lni-trash-can::before { 1997 | content: "\ebdf"; 1998 | } 1999 | 2000 | .lni-travel::before { 2001 | content: "\ebe0"; 2002 | } 2003 | 2004 | .lni-tree::before { 2005 | content: "\ebe1"; 2006 | } 2007 | 2008 | .lni-trees::before { 2009 | content: "\ebe2"; 2010 | } 2011 | 2012 | .lni-trello::before { 2013 | content: "\ebe3"; 2014 | } 2015 | 2016 | .lni-trowel::before { 2017 | content: "\ebe4"; 2018 | } 2019 | 2020 | .lni-tshirt::before { 2021 | content: "\ebe5"; 2022 | } 2023 | 2024 | .lni-tumblr::before { 2025 | content: "\ebe6"; 2026 | } 2027 | 2028 | .lni-twitch::before { 2029 | content: "\ebe7"; 2030 | } 2031 | 2032 | .lni-twitter-filled::before { 2033 | content: "\ebe8"; 2034 | } 2035 | 2036 | .lni-twitter-original::before { 2037 | content: "\ebe9"; 2038 | } 2039 | 2040 | .lni-twitter::before { 2041 | content: "\ebea"; 2042 | } 2043 | 2044 | .lni-ubuntu::before { 2045 | content: "\ebeb"; 2046 | } 2047 | 2048 | .lni-underline::before { 2049 | content: "\ebec"; 2050 | } 2051 | 2052 | .lni-unlink::before { 2053 | content: "\ebed"; 2054 | } 2055 | 2056 | .lni-unlock::before { 2057 | content: "\ebee"; 2058 | } 2059 | 2060 | .lni-unsplash::before { 2061 | content: "\ebef"; 2062 | } 2063 | 2064 | .lni-upload::before { 2065 | content: "\ebf0"; 2066 | } 2067 | 2068 | .lni-user::before { 2069 | content: "\ebf1"; 2070 | } 2071 | 2072 | .lni-users::before { 2073 | content: "\ebf6"; 2074 | } 2075 | 2076 | .lni-ux::before { 2077 | content: "\ebf2"; 2078 | } 2079 | 2080 | .lni-vector::before { 2081 | content: "\ebf3"; 2082 | } 2083 | 2084 | .lni-video::before { 2085 | content: "\ebf4"; 2086 | } 2087 | 2088 | .lni-vimeo::before { 2089 | content: "\ebf5"; 2090 | } 2091 | 2092 | .lni-visa::before { 2093 | content: "\ebf7"; 2094 | } 2095 | 2096 | .lni-vk::before { 2097 | content: "\ebf8"; 2098 | } 2099 | 2100 | .lni-volume-high::before { 2101 | content: "\ebf9"; 2102 | } 2103 | 2104 | .lni-volume-low::before { 2105 | content: "\ebfa"; 2106 | } 2107 | 2108 | .lni-volume-medium::before { 2109 | content: "\ebfb"; 2110 | } 2111 | 2112 | .lni-volume-mute::before { 2113 | content: "\ebfc"; 2114 | } 2115 | 2116 | .lni-volume::before { 2117 | content: "\ebfd"; 2118 | } 2119 | 2120 | .lni-wallet::before { 2121 | content: "\ebfe"; 2122 | } 2123 | 2124 | .lni-warning::before { 2125 | content: "\ebff"; 2126 | } 2127 | 2128 | .lni-website-alt::before { 2129 | content: "\ec00"; 2130 | } 2131 | 2132 | .lni-website::before { 2133 | content: "\ec01"; 2134 | } 2135 | 2136 | .lni-wechat::before { 2137 | content: "\ec02"; 2138 | } 2139 | 2140 | .lni-weight::before { 2141 | content: "\ec03"; 2142 | } 2143 | 2144 | .lni-whatsapp::before { 2145 | content: "\ec04"; 2146 | } 2147 | 2148 | .lni-wheelbarrow::before { 2149 | content: "\ec05"; 2150 | } 2151 | 2152 | .lni-wheelchair::before { 2153 | content: "\ec06"; 2154 | } 2155 | 2156 | .lni-windows::before { 2157 | content: "\ec07"; 2158 | } 2159 | 2160 | .lni-wordpress-filled::before { 2161 | content: "\ec08"; 2162 | } 2163 | 2164 | .lni-wordpress::before { 2165 | content: "\ec09"; 2166 | } 2167 | 2168 | .lni-world-alt::before { 2169 | content: "\ec0a"; 2170 | } 2171 | 2172 | .lni-world::before { 2173 | content: "\ec0c"; 2174 | } 2175 | 2176 | .lni-write::before { 2177 | content: "\ec0b"; 2178 | } 2179 | 2180 | .lni-xbox::before { 2181 | content: "\ec0d"; 2182 | } 2183 | 2184 | .lni-yahoo::before { 2185 | content: "\ec0e"; 2186 | } 2187 | 2188 | .lni-ycombinator::before { 2189 | content: "\ec0f"; 2190 | } 2191 | 2192 | .lni-yen::before { 2193 | content: "\ec10"; 2194 | } 2195 | 2196 | .lni-youtube::before { 2197 | content: "\ec13"; 2198 | } 2199 | 2200 | .lni-zip::before { 2201 | content: "\ec11"; 2202 | } 2203 | 2204 | .lni-zoom-in::before { 2205 | content: "\ec12"; 2206 | } 2207 | 2208 | .lni-zoom-out::before { 2209 | content: "\ec14"; 2210 | } 2211 | -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Open+Sans&display=swap"); 2 | .hero-section .hero-content .scroll-bottom, .feature-section .single-feature .icon, .box-style .icon, .footer .widget-wrapper .footer-widget .socials li a { 3 | display: -webkit-box; 4 | display: -ms-flexbox; 5 | display: flex; 6 | -webkit-box-pack: center; 7 | -ms-flex-pack: center; 8 | justify-content: center; 9 | -webkit-box-align: center; 10 | -ms-flex-align: center; 11 | align-items: center; 12 | } 13 | 14 | /*=========================== 15 | 01.COMMON css 16 | ===========================*/ 17 | html { 18 | scroll-behavior: smooth; 19 | } 20 | 21 | body { 22 | font-family: Arimo; 23 | font-weight: normal; 24 | font-style: normal; 25 | color: #5B657E; 26 | overflow-x: hidden; 27 | } 28 | 29 | * { 30 | margin: 0; 31 | padding: 0; 32 | -webkit-box-sizing: border-box; 33 | box-sizing: border-box; 34 | } 35 | 36 | a:focus, 37 | input:focus, 38 | textarea:focus, 39 | button:focus, 40 | .btn:focus, 41 | .btn.focus, 42 | .btn:not(:disabled):not(.disabled).active, 43 | .btn:not(:disabled):not(.disabled):active { 44 | text-decoration: none; 45 | outline: none; 46 | -webkit-box-shadow: none; 47 | box-shadow: none; 48 | } 49 | 50 | a:hover { 51 | color: #5864FF; 52 | } 53 | 54 | a { 55 | -webkit-transition: all 0.3s ease-out 0s; 56 | transition: all 0.3s ease-out 0s; 57 | } 58 | 59 | a, 60 | a:focus, 61 | a:hover { 62 | text-decoration: none; 63 | } 64 | 65 | i, 66 | span, 67 | a { 68 | display: inline-block; 69 | } 70 | 71 | audio, 72 | canvas, 73 | iframe, 74 | img, 75 | svg, 76 | video { 77 | vertical-align: middle; 78 | } 79 | 80 | h1, 81 | h2, 82 | h3, 83 | h4, 84 | h5, 85 | h6 { 86 | font-family: Arimo; 87 | font-weight: 700; 88 | margin: 0px; 89 | color: #162447; 90 | } 91 | 92 | .section-title p { 93 | font-size: 18px; 94 | line-height: 28px; 95 | } 96 | 97 | h1 a, 98 | h2 a, 99 | h3 a, 100 | h4 a, 101 | h5 a, 102 | h6 a { 103 | color: inherit; 104 | } 105 | 106 | h1 { 107 | font-size: 45px; 108 | } 109 | 110 | @media only screen and (min-width: 1200px) and (max-width: 1399px) { 111 | .section-title h2 { 112 | font-size: 40px; 113 | } 114 | } 115 | 116 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 117 | .section-title h2 { 118 | font-size: 35px; 119 | } 120 | } 121 | 122 | @media only screen and (min-width: 768px) and (max-width: 991px) { 123 | .section-title h2 { 124 | font-size: 40px; 125 | } 126 | } 127 | 128 | @media (max-width: 767px) { 129 | .section-title h2 { 130 | font-size: 28px; 131 | } 132 | } 133 | 134 | @media only screen and (min-width: 480px) and (max-width: 767px) { 135 | .section-title h2 { 136 | font-size: 32px; 137 | } 138 | } 139 | 140 | .section-title span { 141 | font-size: 25px; 142 | color: #162447; 143 | margin-bottom: 30px; 144 | display: -webkit-box; 145 | display: -ms-flexbox; 146 | display: flex; 147 | -webkit-box-align: center; 148 | -ms-flex-align: center; 149 | align-items: center; 150 | } 151 | 152 | @media (max-width: 767px) { 153 | .section-title span { 154 | font-size: 18px; 155 | } 156 | } 157 | 158 | .section-title span img { 159 | max-width: 100%; 160 | margin-right: 20px; 161 | } 162 | 163 | h2 { 164 | font-size: 30px; 165 | } 166 | 167 | h3 { 168 | font-size: 25px; 169 | } 170 | 171 | h4 { 172 | font-size: 20px; 173 | } 174 | 175 | h5 { 176 | font-size: 18px; 177 | } 178 | 179 | h6 { 180 | font-size: 16px; 181 | } 182 | 183 | ul, 184 | ol { 185 | margin: 0px; 186 | padding: 0px; 187 | list-style-type: none; 188 | } 189 | 190 | p { 191 | font-size: 18px; 192 | font-weight: 400; 193 | line-height: 26px; 194 | margin: 0px; 195 | font-family: "Open Sans", sans-serif; 196 | } 197 | 198 | .img-bg { 199 | background-position: center center; 200 | background-size: cover; 201 | background-repeat: no-repeat; 202 | width: 100%; 203 | height: 100%; 204 | } 205 | 206 | .error { 207 | color: orangered; 208 | } 209 | 210 | .success { 211 | color: green; 212 | } 213 | 214 | @media (max-width: 767px) { 215 | .container { 216 | padding-left: 20px; 217 | padding-right: 20px; 218 | } 219 | } 220 | 221 | .main-btn { 222 | display: inline-block; 223 | font-weight: 700; 224 | text-align: center; 225 | white-space: nowrap; 226 | vertical-align: middle; 227 | -webkit-user-select: none; 228 | -moz-user-select: none; 229 | -ms-user-select: none; 230 | user-select: none; 231 | padding: 18px 38px; 232 | font-size: 18px; 233 | border-radius: 50px; 234 | color: #fff; 235 | cursor: pointer; 236 | z-index: 5; 237 | -webkit-transition: all 0.4s ease-in-out; 238 | transition: all 0.4s ease-in-out; 239 | border: none; 240 | background: #5864FF; 241 | overflow: hidden; 242 | } 243 | 244 | .main-btn:hover { 245 | color: #fff; 246 | } 247 | 248 | .main-btn.border-btn { 249 | border: 2px solid #5864FF; 250 | background: transparent; 251 | color: #5864FF; 252 | } 253 | 254 | .btn-hover { 255 | position: relative; 256 | overflow: hidden; 257 | } 258 | 259 | .btn-hover::after { 260 | content: ""; 261 | position: absolute; 262 | width: 0%; 263 | height: 0%; 264 | border-radius: 50%; 265 | background: rgba(0, 0, 0, 0.05); 266 | top: 50%; 267 | left: 50%; 268 | padding: 50%; 269 | z-index: -1; 270 | -webkit-transition: all 0.3s ease-out 0s; 271 | transition: all 0.3s ease-out 0s; 272 | -webkit-transform: translate3d(-50%, -50%, 0) scale(0); 273 | transform: translate3d(-50%, -50%, 0) scale(0); 274 | } 275 | 276 | .btn-hover:hover::after { 277 | -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3); 278 | transform: translate3d(-50%, -50%, 0) scale(1.3); 279 | } 280 | 281 | .scroll-top { 282 | width: 45px; 283 | height: 45px; 284 | background: #5864FF; 285 | display: -webkit-box; 286 | display: -ms-flexbox; 287 | display: flex; 288 | -webkit-box-pack: center; 289 | -ms-flex-pack: center; 290 | justify-content: center; 291 | -webkit-box-align: center; 292 | -ms-flex-align: center; 293 | align-items: center; 294 | font-size: 18px; 295 | color: #fff; 296 | border-radius: 5px; 297 | position: fixed; 298 | bottom: 150px; 299 | right: 30px; 300 | z-index: 9; 301 | cursor: pointer; 302 | -webkit-transition: all 0.3s ease-out 0s; 303 | transition: all 0.3s ease-out 0s; 304 | -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 305 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 306 | } 307 | 308 | .scroll-top:hover { 309 | color: #fff; 310 | background: rgba(88, 100, 255, 0.8); 311 | } 312 | 313 | .social-media-one { 314 | width: 45px; 315 | height: 45px; 316 | background: #5864FF; 317 | display: -webkit-box; 318 | display: -ms-flexbox; 319 | display: flex; 320 | -webkit-box-pack: center; 321 | -ms-flex-pack: center; 322 | justify-content: center; 323 | -webkit-box-align: center; 324 | -ms-flex-align: center; 325 | align-items: center; 326 | font-size: 18px; 327 | color: #fff; 328 | border-radius: 5px; 329 | position: fixed; 330 | bottom: 90px; 331 | right: 30px; 332 | z-index: 9; 333 | cursor: pointer; 334 | -webkit-transition: all 0.3s ease-out 0s; 335 | transition: all 0.3s ease-out 0s; 336 | -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 337 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 338 | } 339 | 340 | .social-media-two { 341 | width: 45px; 342 | height: 45px; 343 | background: #5864FF; 344 | display: -webkit-box; 345 | display: -ms-flexbox; 346 | display: flex; 347 | -webkit-box-pack: center; 348 | -ms-flex-pack: center; 349 | justify-content: center; 350 | -webkit-box-align: center; 351 | -ms-flex-align: center; 352 | align-items: center; 353 | font-size: 18px; 354 | color: #fff; 355 | border-radius: 5px; 356 | position: fixed; 357 | bottom: 30px; 358 | right: 30px; 359 | z-index: 9; 360 | cursor: pointer; 361 | -webkit-transition: all 0.3s ease-out 0s; 362 | transition: all 0.3s ease-out 0s; 363 | -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 364 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 365 | } 366 | 367 | .scroll-social-media:hover { 368 | color: #fff; 369 | background: rgba(88, 100, 255, 0.8); 370 | } 371 | 372 | @keyframes animation1 { 373 | 0% { 374 | -webkit-transform: translateY(30px); 375 | transform: translateY(30px); 376 | } 377 | 50% { 378 | -webkit-transform: translateY(-30px); 379 | transform: translateY(-30px); 380 | } 381 | 100% { 382 | -webkit-transform: translateY(30px); 383 | transform: translateY(30px); 384 | } 385 | } 386 | 387 | @-webkit-keyframes animation1 { 388 | 0% { 389 | -webkit-transform: translateY(30px); 390 | transform: translateY(30px); 391 | } 392 | 50% { 393 | -webkit-transform: translateY(-30px); 394 | transform: translateY(-30px); 395 | } 396 | 100% { 397 | -webkit-transform: translateY(30px); 398 | transform: translateY(30px); 399 | } 400 | } 401 | 402 | /*===== All Preloader Style =====*/ 403 | .preloader { 404 | /* Body Overlay */ 405 | position: fixed; 406 | top: 0; 407 | left: 0; 408 | display: table; 409 | height: 100%; 410 | width: 100%; 411 | /* Change Background Color */ 412 | background: #fff; 413 | z-index: 99999; 414 | } 415 | 416 | .preloader .loader { 417 | display: table-cell; 418 | vertical-align: middle; 419 | text-align: center; 420 | } 421 | 422 | .preloader .loader .ytp-spinner { 423 | position: absolute; 424 | left: 50%; 425 | top: 50%; 426 | width: 64px; 427 | margin-left: -32px; 428 | z-index: 18; 429 | pointer-events: none; 430 | } 431 | 432 | .preloader .loader .ytp-spinner .ytp-spinner-container { 433 | pointer-events: none; 434 | position: absolute; 435 | width: 100%; 436 | padding-bottom: 100%; 437 | top: 50%; 438 | left: 50%; 439 | margin-top: -50%; 440 | margin-left: -50%; 441 | -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite; 442 | animation: ytp-spinner-linspin 1568.2353ms linear infinite; 443 | } 444 | 445 | .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator { 446 | position: absolute; 447 | width: 100%; 448 | height: 100%; 449 | -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 450 | animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 451 | } 452 | 453 | .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left { 454 | position: absolute; 455 | top: 0; 456 | left: 0; 457 | bottom: 0; 458 | overflow: hidden; 459 | right: 50%; 460 | } 461 | 462 | .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right { 463 | position: absolute; 464 | top: 0; 465 | right: 0; 466 | bottom: 0; 467 | overflow: hidden; 468 | left: 50%; 469 | } 470 | 471 | .preloader .loader .ytp-spinner-circle { 472 | -webkit-box-sizing: border-box; 473 | box-sizing: border-box; 474 | position: absolute; 475 | width: 200%; 476 | height: 100%; 477 | border-style: solid; 478 | /* Spinner Color */ 479 | border-color: #5864FF #5864FF #ddd; 480 | border-radius: 50%; 481 | border-width: 6px; 482 | } 483 | 484 | .preloader .loader .ytp-spinner-left .ytp-spinner-circle { 485 | left: 0; 486 | right: -100%; 487 | border-right-color: #ddd; 488 | -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 489 | animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 490 | } 491 | 492 | .preloader .loader .ytp-spinner-right .ytp-spinner-circle { 493 | left: -100%; 494 | right: 0; 495 | border-left-color: #ddd; 496 | -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 497 | animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; 498 | } 499 | 500 | /* Preloader Animations */ 501 | @-webkit-keyframes ytp-spinner-linspin { 502 | to { 503 | -webkit-transform: rotate(360deg); 504 | transform: rotate(360deg); 505 | } 506 | } 507 | 508 | @keyframes ytp-spinner-linspin { 509 | to { 510 | -webkit-transform: rotate(360deg); 511 | transform: rotate(360deg); 512 | } 513 | } 514 | 515 | @-webkit-keyframes ytp-spinner-easespin { 516 | 12.5% { 517 | -webkit-transform: rotate(135deg); 518 | transform: rotate(135deg); 519 | } 520 | 25% { 521 | -webkit-transform: rotate(270deg); 522 | transform: rotate(270deg); 523 | } 524 | 37.5% { 525 | -webkit-transform: rotate(405deg); 526 | transform: rotate(405deg); 527 | } 528 | 50% { 529 | -webkit-transform: rotate(540deg); 530 | transform: rotate(540deg); 531 | } 532 | 62.5% { 533 | -webkit-transform: rotate(675deg); 534 | transform: rotate(675deg); 535 | } 536 | 75% { 537 | -webkit-transform: rotate(810deg); 538 | transform: rotate(810deg); 539 | } 540 | 87.5% { 541 | -webkit-transform: rotate(945deg); 542 | transform: rotate(945deg); 543 | } 544 | to { 545 | -webkit-transform: rotate(1080deg); 546 | transform: rotate(1080deg); 547 | } 548 | } 549 | 550 | @keyframes ytp-spinner-easespin { 551 | 12.5% { 552 | -webkit-transform: rotate(135deg); 553 | transform: rotate(135deg); 554 | } 555 | 25% { 556 | -webkit-transform: rotate(270deg); 557 | transform: rotate(270deg); 558 | } 559 | 37.5% { 560 | -webkit-transform: rotate(405deg); 561 | transform: rotate(405deg); 562 | } 563 | 50% { 564 | -webkit-transform: rotate(540deg); 565 | transform: rotate(540deg); 566 | } 567 | 62.5% { 568 | -webkit-transform: rotate(675deg); 569 | transform: rotate(675deg); 570 | } 571 | 75% { 572 | -webkit-transform: rotate(810deg); 573 | transform: rotate(810deg); 574 | } 575 | 87.5% { 576 | -webkit-transform: rotate(945deg); 577 | transform: rotate(945deg); 578 | } 579 | to { 580 | -webkit-transform: rotate(1080deg); 581 | transform: rotate(1080deg); 582 | } 583 | } 584 | 585 | @-webkit-keyframes ytp-spinner-left-spin { 586 | 0% { 587 | -webkit-transform: rotate(130deg); 588 | transform: rotate(130deg); 589 | } 590 | 50% { 591 | -webkit-transform: rotate(-5deg); 592 | transform: rotate(-5deg); 593 | } 594 | to { 595 | -webkit-transform: rotate(130deg); 596 | transform: rotate(130deg); 597 | } 598 | } 599 | 600 | @keyframes ytp-spinner-left-spin { 601 | 0% { 602 | -webkit-transform: rotate(130deg); 603 | transform: rotate(130deg); 604 | } 605 | 50% { 606 | -webkit-transform: rotate(-5deg); 607 | transform: rotate(-5deg); 608 | } 609 | to { 610 | -webkit-transform: rotate(130deg); 611 | transform: rotate(130deg); 612 | } 613 | } 614 | 615 | @-webkit-keyframes ytp-right-spin { 616 | 0% { 617 | -webkit-transform: rotate(-130deg); 618 | transform: rotate(-130deg); 619 | } 620 | 50% { 621 | -webkit-transform: rotate(5deg); 622 | transform: rotate(5deg); 623 | } 624 | to { 625 | -webkit-transform: rotate(-130deg); 626 | transform: rotate(-130deg); 627 | } 628 | } 629 | 630 | @keyframes ytp-right-spin { 631 | 0% { 632 | -webkit-transform: rotate(-130deg); 633 | transform: rotate(-130deg); 634 | } 635 | 50% { 636 | -webkit-transform: rotate(5deg); 637 | transform: rotate(5deg); 638 | } 639 | to { 640 | -webkit-transform: rotate(-130deg); 641 | transform: rotate(-130deg); 642 | } 643 | } 644 | 645 | /*===== NAVBAR =====*/ 646 | .navbar-area { 647 | position: absolute; 648 | top: 0; 649 | left: 0; 650 | width: 100%; 651 | z-index: 99; 652 | -webkit-transition: all 0.3s ease-out 0s; 653 | transition: all 0.3s ease-out 0s; 654 | } 655 | 656 | .sticky { 657 | position: fixed; 658 | z-index: 99; 659 | background-color: rgba(255, 255, 255, 0.8); 660 | -webkit-backdrop-filter: blur(5px); 661 | backdrop-filter: blur(5px); 662 | -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); 663 | box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); 664 | -webkit-transition: all 0.3s ease-out 0s; 665 | transition: all 0.3s ease-out 0s; 666 | } 667 | 668 | .sticky .navbar { 669 | padding: 10px 0; 670 | } 671 | 672 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 673 | .sticky .navbar { 674 | padding: 15px 0; 675 | } 676 | } 677 | 678 | .sticky .navbar .navbar-nav .nav-item a { 679 | color: #162447; 680 | } 681 | 682 | .sticky .navbar .navbar-nav .nav-item a::before { 683 | color: #162447; 684 | } 685 | 686 | .sticky .navbar .navbar-toggler .toggler-icon { 687 | background: #162447; 688 | } 689 | 690 | .navbar { 691 | padding: 0; 692 | border-radius: 5px; 693 | position: relative; 694 | -webkit-transition: all 0.3s ease-out 0s; 695 | transition: all 0.3s ease-out 0s; 696 | padding: 20px 0; 697 | } 698 | 699 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 700 | .navbar { 701 | padding: 17px 0; 702 | } 703 | } 704 | 705 | .navbar-brand { 706 | padding: 0; 707 | } 708 | 709 | .navbar-brand img { 710 | max-width: 180px; 711 | } 712 | 713 | .navbar-toggler { 714 | padding: 0; 715 | } 716 | 717 | .navbar-toggler:focus { 718 | outline: none; 719 | -webkit-box-shadow: none; 720 | box-shadow: none; 721 | } 722 | 723 | .navbar-toggler .toggler-icon { 724 | width: 30px; 725 | height: 2px; 726 | background-color: #fff; 727 | display: block; 728 | margin: 5px 0; 729 | position: relative; 730 | -webkit-transition: all 0.3s ease-out 0s; 731 | transition: all 0.3s ease-out 0s; 732 | } 733 | 734 | .navbar-toggler.active .toggler-icon:nth-of-type(1) { 735 | -webkit-transform: rotate(45deg); 736 | transform: rotate(45deg); 737 | top: 7px; 738 | } 739 | 740 | .navbar-toggler.active .toggler-icon:nth-of-type(2) { 741 | opacity: 0; 742 | } 743 | 744 | .navbar-toggler.active .toggler-icon:nth-of-type(3) { 745 | -webkit-transform: rotate(135deg); 746 | transform: rotate(135deg); 747 | top: -7px; 748 | } 749 | 750 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 751 | .navbar-collapse { 752 | position: absolute; 753 | top: 100%; 754 | left: 0; 755 | width: 100%; 756 | background-color: #fff; 757 | z-index: 9; 758 | -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); 759 | box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); 760 | } 761 | } 762 | 763 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 764 | .navbar-nav { 765 | padding: 20px 30px; 766 | } 767 | } 768 | 769 | .navbar-nav .nav-item { 770 | position: relative; 771 | margin-left: 40px; 772 | } 773 | 774 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 775 | .navbar-nav .nav-item { 776 | margin-left: 0px; 777 | } 778 | } 779 | 780 | .navbar-nav .nav-item a { 781 | font-size: 18px; 782 | font-weight: 400; 783 | color: #fff; 784 | -webkit-transition: all 0.3s ease-out 0s; 785 | transition: all 0.3s ease-out 0s; 786 | padding: 10px 0; 787 | position: relative; 788 | z-index: 1; 789 | } 790 | 791 | .navbar-nav .nav-item a::before { 792 | content: ""; 793 | position: absolute; 794 | height: 5px; 795 | width: 0; 796 | border-radius: 16px; 797 | background: #fdd446; 798 | bottom: 15px; 799 | left: 0; 800 | z-index: -1; 801 | -webkit-transition: all 0.3s ease-out 0s; 802 | transition: all 0.3s ease-out 0s; 803 | } 804 | 805 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 806 | .navbar-nav .nav-item a::before { 807 | top: auto; 808 | bottom: 0; 809 | } 810 | } 811 | 812 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 813 | .navbar-nav .nav-item a { 814 | display: inline-block; 815 | padding: 6px 0px; 816 | color: #162447; 817 | } 818 | } 819 | 820 | .navbar-nav .nav-item a:hover::before, .navbar-nav .nav-item a.active::before { 821 | width: 100%; 822 | } 823 | 824 | /* ====== hero-area ===== */ 825 | .hero-section { 826 | position: relative; 827 | z-index: 1; 828 | padding: 160px 0 50px; 829 | background-image: url("../img/hero/hero-bg.svg"); 830 | background-position: top center; 831 | background-repeat: no-repeat; 832 | } 833 | 834 | @media (max-width: 767px) { 835 | .hero-section { 836 | padding-top: 130px; 837 | } 838 | } 839 | 840 | .hero-section .hero-content { 841 | margin-bottom: 100px; 842 | } 843 | 844 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 845 | .hero-section .hero-content { 846 | margin-bottom: 0px; 847 | } 848 | } 849 | 850 | .hero-section .hero-content h1 { 851 | font-size: 60px; 852 | margin-bottom: 35px; 853 | color: #fff; 854 | } 855 | 856 | @media only screen and (min-width: 1200px) and (max-width: 1399px) { 857 | .hero-section .hero-content h1 { 858 | font-size: 52px; 859 | } 860 | } 861 | 862 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 863 | .hero-section .hero-content h1 { 864 | font-size: 42px; 865 | } 866 | } 867 | 868 | @media (max-width: 767px) { 869 | .hero-section .hero-content h1 { 870 | font-size: 32px; 871 | } 872 | } 873 | 874 | @media only screen and (min-width: 480px) and (max-width: 767px) { 875 | .hero-section .hero-content h1 { 876 | font-size: 42px; 877 | } 878 | } 879 | 880 | .hero-section .hero-content p { 881 | margin-bottom: 40px; 882 | font-size: 18px; 883 | line-height: 28px; 884 | color: #fff; 885 | } 886 | 887 | @media only screen and (min-width: 1400px) { 888 | .hero-section .hero-content p { 889 | padding-right: 120px; 890 | } 891 | } 892 | 893 | @media only screen and (min-width: 1200px) and (max-width: 1399px) { 894 | .hero-section .hero-content p { 895 | padding-right: 70px; 896 | } 897 | } 898 | 899 | .hero-section .hero-content .main-btn { 900 | border-color: #fff; 901 | color: #fff; 902 | } 903 | 904 | .hero-section .hero-content .main-btn::after { 905 | background: rgba(255, 255, 255, 0.15); 906 | } 907 | 908 | .hero-section .hero-content .scroll-bottom { 909 | position: absolute; 910 | width: 40px; 911 | height: 40px; 912 | border-radius: 50%; 913 | background: #fff; 914 | border: 3px solid #5864FF; 915 | color: #5864FF; 916 | left: 15px; 917 | bottom: 0; 918 | z-index: 9; 919 | } 920 | 921 | .hero-section .hero-content .scroll-bottom i { 922 | font-weight: 700; 923 | } 924 | 925 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 926 | .hero-section .hero-img { 927 | padding-top: 30px; 928 | padding-bottom: 50px; 929 | } 930 | } 931 | 932 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 933 | .hero-section .hero-img img { 934 | width: 100%; 935 | } 936 | } 937 | 938 | .hero-section .hero-shape .shape { 939 | position: absolute; 940 | z-index: -1; 941 | } 942 | 943 | .hero-section .hero-shape .shape.shape-1 { 944 | top: -285px; 945 | right: -300px; 946 | } 947 | 948 | @media only screen and (min-width: 1200px) and (max-width: 1399px) { 949 | .hero-section .hero-shape .shape.shape-1 { 950 | top: -420px; 951 | right: -550px; 952 | } 953 | } 954 | 955 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 956 | .hero-section .hero-shape .shape.shape-1 { 957 | top: -400px; 958 | right: -550px; 959 | } 960 | } 961 | 962 | @media only screen and (min-width: 768px) and (max-width: 991px) { 963 | .hero-section .hero-shape .shape.shape-1 { 964 | display: none; 965 | } 966 | } 967 | 968 | @media (max-width: 767px) { 969 | .hero-section .hero-shape .shape.shape-1 { 970 | display: none; 971 | } 972 | } 973 | 974 | /* ====== feature css ====== */ 975 | @media (max-width: 767px) { 976 | .feature-section.pt-120 { 977 | padding-top: 80px; 978 | } 979 | } 980 | 981 | .feature-section .single-feature { 982 | text-align: center; 983 | padding: 30px 10px; 984 | } 985 | 986 | @media only screen and (min-width: 1400px) { 987 | .feature-section .single-feature { 988 | padding: 30px 40px; 989 | } 990 | } 991 | 992 | .feature-section .single-feature .icon { 993 | width: 130px; 994 | height: 130px; 995 | border-radius: 50%; 996 | background: rgba(88, 100, 255, 0.1); 997 | color: #5864FF; 998 | margin: auto; 999 | margin-bottom: 30px; 1000 | font-size: 65px; 1001 | line-height: 1; 1002 | } 1003 | 1004 | .feature-section .single-feature .content h3 { 1005 | margin-bottom: 20px; 1006 | } 1007 | 1008 | .feature-section .single-feature .content p { 1009 | font-size: 18px; 1010 | line-height: 28px; 1011 | } 1012 | 1013 | .box-style { 1014 | border-radius: 39px; 1015 | background: #fff; 1016 | -webkit-box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35); 1017 | box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35); 1018 | padding: 50px 30px 30px; 1019 | border-bottom: 5px solid; 1020 | text-align: center; 1021 | margin-bottom: 40px; 1022 | } 1023 | 1024 | @media only screen and (min-width: 1400px) { 1025 | .box-style { 1026 | padding: 50px 40px 30px; 1027 | } 1028 | } 1029 | 1030 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1031 | .box-style { 1032 | padding: 50px 20px 30px; 1033 | } 1034 | } 1035 | 1036 | .box-style .icon { 1037 | width: 85px; 1038 | height: 85px; 1039 | margin: auto; 1040 | margin-bottom: 30px; 1041 | font-size: 70px; 1042 | } 1043 | 1044 | .box-style .content h3 { 1045 | margin-bottom: 25px; 1046 | } 1047 | 1048 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1049 | .box-style .content h3 { 1050 | font-size: 22px; 1051 | } 1052 | } 1053 | 1054 | .box-style .content p { 1055 | margin-bottom: 30px; 1056 | font-size: 18px; 1057 | line-height: 26px; 1058 | } 1059 | 1060 | .box-style .content a { 1061 | color: #5B657E; 1062 | font-size: 30px; 1063 | font-weight: 700; 1064 | } 1065 | 1066 | .box-style .content ul li { 1067 | margin-bottom: 5px; 1068 | } 1069 | 1070 | .box-style .content a.main-btn { 1071 | padding: 10px 30px; 1072 | font-size: 18px; 1073 | font-weight: 400; 1074 | color: #fff; 1075 | } 1076 | 1077 | .box-style .content a.main-btn.border-btn { 1078 | color: #5B657E; 1079 | } 1080 | 1081 | .box-style .content a.main-btn.border-btn:hover { 1082 | color: #5864FF; 1083 | } 1084 | 1085 | .box-style .content a.main-btn.border-btn:hover::after { 1086 | background: rgba(88, 100, 255, 0.2); 1087 | } 1088 | 1089 | .box-style.color-1 { 1090 | border-color: #ff92a5; 1091 | } 1092 | 1093 | .box-style.color-1 .icon { 1094 | color: #ff92a5; 1095 | } 1096 | 1097 | .box-style.color-1 .content a:hover { 1098 | color: #ff92a5; 1099 | } 1100 | 1101 | .box-style.color-2 { 1102 | border-color: #5864FF; 1103 | } 1104 | 1105 | .box-style.color-2 .icon { 1106 | color: #5864FF; 1107 | } 1108 | 1109 | .box-style.color-2 .content a:hover { 1110 | color: #5864FF; 1111 | } 1112 | 1113 | .box-style.color-2 .content .main-btn:hover { 1114 | color: #fff; 1115 | } 1116 | 1117 | .box-style.color-3 { 1118 | border-color: #b89cfe; 1119 | } 1120 | 1121 | .box-style.color-3 .icon { 1122 | color: #b89cfe; 1123 | } 1124 | 1125 | .box-style.color-3 .content a:hover { 1126 | color: #b89cfe; 1127 | } 1128 | 1129 | /* ===== about css ====== */ 1130 | .about-section { 1131 | position: relative; 1132 | z-index: 1; 1133 | } 1134 | 1135 | @media (max-width: 767px) { 1136 | .about-section.pt-150 { 1137 | padding-top: 100px; 1138 | } 1139 | } 1140 | 1141 | .about-section .about-img { 1142 | position: relative; 1143 | z-index: 1; 1144 | padding: 75px 0; 1145 | } 1146 | 1147 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 1148 | .about-section .about-img { 1149 | margin-bottom: 70px; 1150 | } 1151 | } 1152 | 1153 | .about-section .about-img .shape { 1154 | position: absolute; 1155 | z-index: -1; 1156 | } 1157 | 1158 | .about-section .about-img .shape.shape-1 { 1159 | top: 50%; 1160 | -webkit-transform: translateY(-50%); 1161 | transform: translateY(-50%); 1162 | left: -70px; 1163 | } 1164 | 1165 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1166 | .about-section .about-img .shape.shape-1 { 1167 | width: 80%; 1168 | } 1169 | } 1170 | 1171 | @media (max-width: 767px) { 1172 | .about-section .about-img .shape.shape-1 { 1173 | width: 70%; 1174 | } 1175 | } 1176 | 1177 | .about-section .about-img .shape.shape-2 { 1178 | bottom: 0; 1179 | right: 50px; 1180 | } 1181 | 1182 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1183 | .about-section .about-img .shape.shape-2 { 1184 | width: 75%; 1185 | } 1186 | } 1187 | 1188 | @media only screen and (min-width: 768px) and (max-width: 991px) { 1189 | .about-section .about-img .shape.shape-2 { 1190 | right: 120px; 1191 | } 1192 | } 1193 | 1194 | @media (max-width: 767px) { 1195 | .about-section .about-img .shape.shape-2 { 1196 | bottom: 30px; 1197 | } 1198 | } 1199 | 1200 | .about-section .about-img-2 { 1201 | position: relative; 1202 | z-index: 1; 1203 | padding: 75px 0; 1204 | } 1205 | 1206 | @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { 1207 | .about-section .about-img-2 { 1208 | margin-bottom: 70px; 1209 | } 1210 | } 1211 | 1212 | .about-section .about-img-2 .shape { 1213 | position: absolute; 1214 | z-index: -1; 1215 | } 1216 | 1217 | .about-section .about-img-2 .shape.shape-1 { 1218 | top: 50%; 1219 | -webkit-transform: translateY(-50%); 1220 | transform: translateY(-50%); 1221 | right: -70px; 1222 | } 1223 | 1224 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1225 | .about-section .about-img-2 .shape.shape-1 { 1226 | width: 80%; 1227 | } 1228 | } 1229 | 1230 | @media (max-width: 767px) { 1231 | .about-section .about-img-2 .shape.shape-1 { 1232 | width: 70%; 1233 | } 1234 | } 1235 | 1236 | .about-section .about-img-2 .shape.shape-2 { 1237 | bottom: 0; 1238 | left: 50px; 1239 | } 1240 | 1241 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1242 | .about-section .about-img-2 .shape.shape-2 { 1243 | width: 75%; 1244 | } 1245 | } 1246 | 1247 | @media only screen and (min-width: 768px) and (max-width: 991px) { 1248 | .about-section .about-img-2 .shape.shape-2 { 1249 | left: 120px; 1250 | } 1251 | } 1252 | 1253 | @media (max-width: 767px) { 1254 | .about-section .about-img-2 .shape.shape-2 { 1255 | bottom: 30px; 1256 | } 1257 | } 1258 | 1259 | .about-section .about-content ul li { 1260 | padding-left: 40px; 1261 | font-size: 20px; 1262 | /* font-weight: 600; */ 1263 | color: #162447; 1264 | margin-bottom: 25px; 1265 | position: relative; 1266 | } 1267 | 1268 | .about-section .about-content ul li::before { 1269 | content: ""; 1270 | width: 18px; 1271 | height: 18px; 1272 | border-radius: 50%; 1273 | background: #5864FF; 1274 | position: absolute; 1275 | left: 0; 1276 | top: 6.5px; 1277 | -webkit-box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26); 1278 | box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26); 1279 | } 1280 | 1281 | /* ====== feature-extended css ====== */ 1282 | .feature-extended-section .feature-extended-wrapper { 1283 | padding: 70px 0; 1284 | background: rgba(88, 100, 255, 0.1); 1285 | } 1286 | 1287 | .feature-extended-section .single-feature-extended { 1288 | padding: 30px; 1289 | } 1290 | 1291 | @media only screen and (min-width: 992px) and (max-width: 1199px) { 1292 | .feature-extended-section .single-feature-extended { 1293 | padding: 30px 10px; 1294 | } 1295 | } 1296 | 1297 | @media only screen and (min-width: 768px) and (max-width: 991px) { 1298 | .feature-extended-section .single-feature-extended { 1299 | padding: 30px 0px; 1300 | } 1301 | } 1302 | 1303 | .feature-extended-section .single-feature-extended .icon { 1304 | font-size: 65px; 1305 | line-height: 1; 1306 | margin-bottom: 30px; 1307 | color: #5864FF; 1308 | } 1309 | 1310 | .feature-extended-section .single-feature-extended .content h3 { 1311 | margin-bottom: 20px; 1312 | } 1313 | 1314 | .feature-extended-section .single-feature-extended .content p { 1315 | font-size: 18px; 1316 | font-weight: 400; 1317 | line-height: 28px; 1318 | } 1319 | 1320 | /* ======= subscribe css ======= */ 1321 | @media (max-width: 767px) { 1322 | .subscribe-section .section-title h2 { 1323 | font-size: 24px; 1324 | } 1325 | } 1326 | 1327 | @media only screen and (min-width: 480px) and (max-width: 767px) { 1328 | .subscribe-section .section-title h2 { 1329 | font-size: 32px; 1330 | } 1331 | } 1332 | 1333 | .subscribe-section .subscribe-wrapper { 1334 | background-image: url("../img/subscribe/subscribe-bg.svg"); 1335 | padding: 65px 50px 50px; 1336 | border-radius: 30px; 1337 | } 1338 | 1339 | @media (max-width: 767px) { 1340 | .subscribe-section .subscribe-wrapper { 1341 | padding-left: 20px; 1342 | padding-right: 20px; 1343 | } 1344 | } 1345 | 1346 | @media only screen and (min-width: 480px) and (max-width: 767px) { 1347 | .subscribe-section .subscribe-wrapper { 1348 | padding-left: 30px; 1349 | padding-right: 30px; 1350 | } 1351 | } 1352 | 1353 | .subscribe-section .subscribe-wrapper .subscribe-form { 1354 | position: relative; 1355 | margin-bottom: 15px; 1356 | } 1357 | 1358 | .subscribe-section .subscribe-wrapper .subscribe-form input { 1359 | width: 100%; 1360 | padding: 20px 30px; 1361 | padding-right: 142px; 1362 | border-radius: 18px; 1363 | background: #fff; 1364 | color: #5B657E; 1365 | border: 1px solid transparent; 1366 | -webkit-transition: all 0.3s ease-out 0s; 1367 | transition: all 0.3s ease-out 0s; 1368 | } 1369 | 1370 | .subscribe-section .subscribe-wrapper .subscribe-form input:focus { 1371 | -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35); 1372 | box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35); 1373 | } 1374 | 1375 | .subscribe-section .subscribe-wrapper .subscribe-form input::-webkit-input-placeholder { 1376 | opacity: 0.7; 1377 | color: #5B657E; 1378 | } 1379 | 1380 | .subscribe-section .subscribe-wrapper .subscribe-form input:-ms-input-placeholder { 1381 | opacity: 0.7; 1382 | color: #5B657E; 1383 | } 1384 | 1385 | .subscribe-section .subscribe-wrapper .subscribe-form input::-ms-input-placeholder { 1386 | opacity: 0.7; 1387 | color: #5B657E; 1388 | } 1389 | 1390 | .subscribe-section .subscribe-wrapper .subscribe-form input::placeholder { 1391 | opacity: 0.7; 1392 | color: #5B657E; 1393 | } 1394 | 1395 | .subscribe-section .subscribe-wrapper .subscribe-form button { 1396 | position: absolute; 1397 | top: 2px; 1398 | right: 2px; 1399 | padding: 17.5px 25px; 1400 | font-weight: 700; 1401 | font-size: 18px; 1402 | border-radius: 18px; 1403 | } 1404 | 1405 | @media (max-width: 767px) { 1406 | .subscribe-section .subscribe-wrapper .subscribe-form button { 1407 | position: static; 1408 | margin-top: 20px; 1409 | background: #fff; 1410 | color: #5864FF; 1411 | padding: 17.5px 35px; 1412 | } 1413 | } 1414 | 1415 | @media only screen and (min-width: 480px) and (max-width: 767px) { 1416 | .subscribe-section .subscribe-wrapper .subscribe-form button { 1417 | position: absolute; 1418 | margin-top: 0px; 1419 | color: #fff; 1420 | background: #5864FF; 1421 | padding: 17.5px 25px; 1422 | } 1423 | } 1424 | 1425 | /* ======= footer css ======= */ 1426 | .footer { 1427 | background-image: url("../img/footer/footer-bg.svg"); 1428 | background-size: cover; 1429 | background-position: top right; 1430 | padding-top: 260px; 1431 | margin-top: 100px; 1432 | } 1433 | 1434 | @media only screen and (min-width: 768px) and (max-width: 991px) { 1435 | .footer { 1436 | padding-top: 250px; 1437 | } 1438 | } 1439 | 1440 | @media (max-width: 767px) { 1441 | .footer { 1442 | padding-top: 120px; 1443 | background: #5864FF; 1444 | } 1445 | } 1446 | 1447 | .footer .widget-wrapper .footer-widget { 1448 | margin-bottom: 40px; 1449 | } 1450 | 1451 | @media only screen and (min-width: 1400px) { 1452 | .footer .widget-wrapper .footer-widget .desc { 1453 | padding-right: 100px; 1454 | } 1455 | } 1456 | 1457 | @media only screen and (min-width: 480px) and (max-width: 767px) { 1458 | .footer .widget-wrapper .footer-widget .desc { 1459 | padding-right: 50px; 1460 | } 1461 | } 1462 | 1463 | .shape-responsive { 1464 | right: 20px !important; 1465 | } 1466 | 1467 | .footer .widget-wrapper .footer-widget .socials { 1468 | display: -webkit-box; 1469 | display: -ms-flexbox; 1470 | display: flex; 1471 | -webkit-box-align: center; 1472 | -ms-flex-align: center; 1473 | align-items: center; 1474 | } 1475 | 1476 | .footer .widget-wrapper .footer-widget .socials li { 1477 | margin-right: 20px; 1478 | } 1479 | 1480 | .footer .widget-wrapper .footer-widget .socials li:last-child { 1481 | margin-right: 0; 1482 | } 1483 | 1484 | .footer .widget-wrapper .footer-widget .socials li a { 1485 | width: 40px; 1486 | height: 40px; 1487 | border-radius: 50%; 1488 | background: rgba(255, 255, 255, 0.13); 1489 | color: #fff; 1490 | } 1491 | 1492 | .footer .widget-wrapper .footer-widget .socials li a:hover { 1493 | color: #5864FF; 1494 | background: #fff; 1495 | } 1496 | 1497 | .footer .widget-wrapper .footer-widget h3 { 1498 | margin-bottom: 25px; 1499 | color: #fff; 1500 | } 1501 | 1502 | .footer .widget-wrapper .footer-widget ul.links li { 1503 | font-size: 18px; 1504 | line-height: 34px; 1505 | } 1506 | 1507 | .footer .widget-wrapper .footer-widget ul.links li a { 1508 | color: #fff; 1509 | } 1510 | 1511 | .footer .widget-wrapper .footer-widget ul.links li a:hover { 1512 | padding-left: 8px; 1513 | } 1514 | 1515 | .mt-5 { 1516 | margin-top: 5px; 1517 | } 1518 | 1519 | .mt-10 { 1520 | margin-top: 10px; 1521 | } 1522 | 1523 | .mt-15 { 1524 | margin-top: 15px; 1525 | } 1526 | 1527 | .mt-20 { 1528 | margin-top: 20px; 1529 | } 1530 | 1531 | .mt-25 { 1532 | margin-top: 25px; 1533 | } 1534 | 1535 | .mt-30 { 1536 | margin-top: 30px; 1537 | } 1538 | 1539 | .mt-35 { 1540 | margin-top: 35px; 1541 | } 1542 | 1543 | .mt-40 { 1544 | margin-top: 40px; 1545 | } 1546 | 1547 | .mt-45 { 1548 | margin-top: 45px; 1549 | } 1550 | 1551 | .mt-50 { 1552 | margin-top: 50px; 1553 | } 1554 | 1555 | .mt-55 { 1556 | margin-top: 55px; 1557 | } 1558 | 1559 | .mt-60 { 1560 | margin-top: 60px; 1561 | } 1562 | 1563 | .mt-65 { 1564 | margin-top: 65px; 1565 | } 1566 | 1567 | .mt-70 { 1568 | margin-top: 70px; 1569 | } 1570 | 1571 | .mt-75 { 1572 | margin-top: 75px; 1573 | } 1574 | 1575 | .mt-80 { 1576 | margin-top: 80px; 1577 | } 1578 | 1579 | .mt-85 { 1580 | margin-top: 85px; 1581 | } 1582 | 1583 | .mt-90 { 1584 | margin-top: 90px; 1585 | } 1586 | 1587 | .mt-95 { 1588 | margin-top: 95px; 1589 | } 1590 | 1591 | .mt-100 { 1592 | margin-top: 100px; 1593 | } 1594 | 1595 | .mt-105 { 1596 | margin-top: 105px; 1597 | } 1598 | 1599 | .mt-110 { 1600 | margin-top: 110px; 1601 | } 1602 | 1603 | .mt-115 { 1604 | margin-top: 115px; 1605 | } 1606 | 1607 | .mt-120 { 1608 | margin-top: 120px; 1609 | } 1610 | 1611 | .mt-125 { 1612 | margin-top: 125px; 1613 | } 1614 | 1615 | .mt-130 { 1616 | margin-top: 130px; 1617 | } 1618 | 1619 | .mt-135 { 1620 | margin-top: 135px; 1621 | } 1622 | 1623 | .mt-140 { 1624 | margin-top: 140px; 1625 | } 1626 | 1627 | .mt-145 { 1628 | margin-top: 145px; 1629 | } 1630 | 1631 | .mt-150 { 1632 | margin-top: 150px; 1633 | } 1634 | 1635 | .mt-155 { 1636 | margin-top: 155px; 1637 | } 1638 | 1639 | .mt-160 { 1640 | margin-top: 160px; 1641 | } 1642 | 1643 | .mt-165 { 1644 | margin-top: 165px; 1645 | } 1646 | 1647 | .mt-170 { 1648 | margin-top: 170px; 1649 | } 1650 | 1651 | .mt-175 { 1652 | margin-top: 175px; 1653 | } 1654 | 1655 | .mt-180 { 1656 | margin-top: 180px; 1657 | } 1658 | 1659 | .mt-185 { 1660 | margin-top: 185px; 1661 | } 1662 | 1663 | .mt-190 { 1664 | margin-top: 190px; 1665 | } 1666 | 1667 | .mt-195 { 1668 | margin-top: 195px; 1669 | } 1670 | 1671 | .mt-200 { 1672 | margin-top: 200px; 1673 | } 1674 | 1675 | .mt-205 { 1676 | margin-top: 205px; 1677 | } 1678 | 1679 | .mt-210 { 1680 | margin-top: 210px; 1681 | } 1682 | 1683 | .mt-215 { 1684 | margin-top: 215px; 1685 | } 1686 | 1687 | .mt-220 { 1688 | margin-top: 220px; 1689 | } 1690 | 1691 | .mt-225 { 1692 | margin-top: 225px; 1693 | } 1694 | 1695 | .mb-5 { 1696 | margin-bottom: 5px; 1697 | } 1698 | 1699 | .mb-10 { 1700 | margin-bottom: 10px; 1701 | } 1702 | 1703 | .mb-15 { 1704 | margin-bottom: 15px; 1705 | } 1706 | 1707 | .mb-20 { 1708 | margin-bottom: 20px; 1709 | } 1710 | 1711 | .mb-25 { 1712 | margin-bottom: 25px; 1713 | } 1714 | 1715 | .mb-30 { 1716 | margin-bottom: 30px; 1717 | } 1718 | 1719 | .mb-35 { 1720 | margin-bottom: 35px; 1721 | } 1722 | 1723 | .mb-40 { 1724 | margin-bottom: 40px; 1725 | } 1726 | 1727 | .mb-45 { 1728 | margin-bottom: 45px; 1729 | } 1730 | 1731 | .mb-50 { 1732 | margin-bottom: 50px; 1733 | } 1734 | 1735 | .mb-55 { 1736 | margin-bottom: 55px; 1737 | } 1738 | 1739 | .mb-60 { 1740 | margin-bottom: 60px; 1741 | } 1742 | 1743 | .mb-65 { 1744 | margin-bottom: 65px; 1745 | } 1746 | 1747 | .mb-70 { 1748 | margin-bottom: 70px; 1749 | } 1750 | 1751 | .mb-75 { 1752 | margin-bottom: 75px; 1753 | } 1754 | 1755 | .mb-80 { 1756 | margin-bottom: 80px; 1757 | } 1758 | 1759 | .mb-85 { 1760 | margin-bottom: 85px; 1761 | } 1762 | 1763 | .mb-90 { 1764 | margin-bottom: 90px; 1765 | } 1766 | 1767 | .mb-95 { 1768 | margin-bottom: 95px; 1769 | } 1770 | 1771 | .mb-100 { 1772 | margin-bottom: 100px; 1773 | } 1774 | 1775 | .mb-105 { 1776 | margin-bottom: 105px; 1777 | } 1778 | 1779 | .mb-110 { 1780 | margin-bottom: 110px; 1781 | } 1782 | 1783 | .mb-115 { 1784 | margin-bottom: 115px; 1785 | } 1786 | 1787 | .mb-120 { 1788 | margin-bottom: 120px; 1789 | } 1790 | 1791 | .mb-125 { 1792 | margin-bottom: 125px; 1793 | } 1794 | 1795 | .mb-130 { 1796 | margin-bottom: 130px; 1797 | } 1798 | 1799 | .mb-135 { 1800 | margin-bottom: 135px; 1801 | } 1802 | 1803 | .mb-140 { 1804 | margin-bottom: 140px; 1805 | } 1806 | 1807 | .mb-145 { 1808 | margin-bottom: 145px; 1809 | } 1810 | 1811 | .mb-150 { 1812 | margin-bottom: 150px; 1813 | } 1814 | 1815 | .mb-155 { 1816 | margin-bottom: 155px; 1817 | } 1818 | 1819 | .mb-160 { 1820 | margin-bottom: 160px; 1821 | } 1822 | 1823 | .mb-165 { 1824 | margin-bottom: 165px; 1825 | } 1826 | 1827 | .mb-170 { 1828 | margin-bottom: 170px; 1829 | } 1830 | 1831 | .mb-175 { 1832 | margin-bottom: 175px; 1833 | } 1834 | 1835 | .mb-180 { 1836 | margin-bottom: 180px; 1837 | } 1838 | 1839 | .mb-185 { 1840 | margin-bottom: 185px; 1841 | } 1842 | 1843 | .mb-190 { 1844 | margin-bottom: 190px; 1845 | } 1846 | 1847 | .mb-195 { 1848 | margin-bottom: 195px; 1849 | } 1850 | 1851 | .mb-200 { 1852 | margin-bottom: 200px; 1853 | } 1854 | 1855 | .mb-205 { 1856 | margin-bottom: 205px; 1857 | } 1858 | 1859 | .mb-210 { 1860 | margin-bottom: 210px; 1861 | } 1862 | 1863 | .mb-215 { 1864 | margin-bottom: 215px; 1865 | } 1866 | 1867 | .mb-220 { 1868 | margin-bottom: 220px; 1869 | } 1870 | 1871 | .mb-225 { 1872 | margin-bottom: 225px; 1873 | } 1874 | 1875 | .pt-5 { 1876 | padding-top: 5px; 1877 | } 1878 | 1879 | .pt-10 { 1880 | padding-top: 10px; 1881 | } 1882 | 1883 | .pt-15 { 1884 | padding-top: 15px; 1885 | } 1886 | 1887 | .pt-20 { 1888 | padding-top: 20px; 1889 | } 1890 | 1891 | .pt-25 { 1892 | padding-top: 25px; 1893 | } 1894 | 1895 | .pt-30 { 1896 | padding-top: 30px; 1897 | } 1898 | 1899 | .pt-35 { 1900 | padding-top: 35px; 1901 | } 1902 | 1903 | .pt-40 { 1904 | padding-top: 40px; 1905 | } 1906 | 1907 | .pt-45 { 1908 | padding-top: 45px; 1909 | } 1910 | 1911 | .pt-50 { 1912 | padding-top: 50px; 1913 | } 1914 | 1915 | .pt-55 { 1916 | padding-top: 55px; 1917 | } 1918 | 1919 | .pt-60 { 1920 | padding-top: 60px; 1921 | } 1922 | 1923 | .pt-65 { 1924 | padding-top: 65px; 1925 | } 1926 | 1927 | .pt-70 { 1928 | padding-top: 70px; 1929 | } 1930 | 1931 | .pt-75 { 1932 | padding-top: 75px; 1933 | } 1934 | 1935 | .pt-80 { 1936 | padding-top: 80px; 1937 | } 1938 | 1939 | .pt-85 { 1940 | padding-top: 85px; 1941 | } 1942 | 1943 | .pt-90 { 1944 | padding-top: 90px; 1945 | } 1946 | 1947 | .pt-95 { 1948 | padding-top: 95px; 1949 | } 1950 | 1951 | .pt-100 { 1952 | padding-top: 100px; 1953 | } 1954 | 1955 | .pt-105 { 1956 | padding-top: 105px; 1957 | } 1958 | 1959 | .pt-110 { 1960 | padding-top: 110px; 1961 | } 1962 | 1963 | .pt-115 { 1964 | padding-top: 115px; 1965 | } 1966 | 1967 | .pt-120 { 1968 | padding-top: 120px; 1969 | } 1970 | 1971 | .pt-125 { 1972 | padding-top: 125px; 1973 | } 1974 | 1975 | .pt-130 { 1976 | padding-top: 130px; 1977 | } 1978 | 1979 | .pt-135 { 1980 | padding-top: 135px; 1981 | } 1982 | 1983 | .pt-140 { 1984 | padding-top: 140px; 1985 | } 1986 | 1987 | .pt-145 { 1988 | padding-top: 145px; 1989 | } 1990 | 1991 | .pt-150 { 1992 | padding-top: 150px; 1993 | } 1994 | 1995 | .pt-155 { 1996 | padding-top: 155px; 1997 | } 1998 | 1999 | .pt-160 { 2000 | padding-top: 160px; 2001 | } 2002 | 2003 | .pt-165 { 2004 | padding-top: 165px; 2005 | } 2006 | 2007 | .pt-170 { 2008 | padding-top: 170px; 2009 | } 2010 | 2011 | .pt-175 { 2012 | padding-top: 175px; 2013 | } 2014 | 2015 | .pt-180 { 2016 | padding-top: 180px; 2017 | } 2018 | 2019 | .pt-185 { 2020 | padding-top: 185px; 2021 | } 2022 | 2023 | .pt-190 { 2024 | padding-top: 190px; 2025 | } 2026 | 2027 | .pt-195 { 2028 | padding-top: 195px; 2029 | } 2030 | 2031 | .pt-200 { 2032 | padding-top: 200px; 2033 | } 2034 | 2035 | .pt-205 { 2036 | padding-top: 205px; 2037 | } 2038 | 2039 | .pt-210 { 2040 | padding-top: 210px; 2041 | } 2042 | 2043 | .pt-215 { 2044 | padding-top: 215px; 2045 | } 2046 | 2047 | .pt-220 { 2048 | padding-top: 220px; 2049 | } 2050 | 2051 | .pt-225 { 2052 | padding-top: 225px; 2053 | } 2054 | 2055 | .pb-5 { 2056 | padding-bottom: 5px; 2057 | } 2058 | 2059 | .pb-10 { 2060 | padding-bottom: 10px; 2061 | } 2062 | 2063 | .pb-15 { 2064 | padding-bottom: 15px; 2065 | } 2066 | 2067 | .pb-20 { 2068 | padding-bottom: 20px; 2069 | } 2070 | 2071 | .pb-25 { 2072 | padding-bottom: 25px; 2073 | } 2074 | 2075 | .pb-30 { 2076 | padding-bottom: 30px; 2077 | } 2078 | 2079 | .pb-35 { 2080 | padding-bottom: 35px; 2081 | } 2082 | 2083 | .pb-40 { 2084 | padding-bottom: 40px; 2085 | } 2086 | 2087 | .pb-45 { 2088 | padding-bottom: 45px; 2089 | } 2090 | 2091 | .pb-50 { 2092 | padding-bottom: 50px; 2093 | } 2094 | 2095 | .pb-55 { 2096 | padding-bottom: 55px; 2097 | } 2098 | 2099 | .pb-60 { 2100 | padding-bottom: 60px; 2101 | } 2102 | 2103 | .pb-65 { 2104 | padding-bottom: 65px; 2105 | } 2106 | 2107 | .pb-70 { 2108 | padding-bottom: 70px; 2109 | } 2110 | 2111 | .pb-75 { 2112 | padding-bottom: 75px; 2113 | } 2114 | 2115 | .pb-80 { 2116 | padding-bottom: 80px; 2117 | } 2118 | 2119 | .pb-85 { 2120 | padding-bottom: 85px; 2121 | } 2122 | 2123 | .pb-90 { 2124 | padding-bottom: 90px; 2125 | } 2126 | 2127 | .pb-95 { 2128 | padding-bottom: 95px; 2129 | } 2130 | 2131 | .pb-100 { 2132 | padding-bottom: 100px; 2133 | } 2134 | 2135 | .pb-105 { 2136 | padding-bottom: 105px; 2137 | } 2138 | 2139 | .pb-110 { 2140 | padding-bottom: 110px; 2141 | } 2142 | 2143 | .pb-115 { 2144 | padding-bottom: 115px; 2145 | } 2146 | 2147 | .pb-120 { 2148 | padding-bottom: 120px; 2149 | } 2150 | 2151 | .pb-125 { 2152 | padding-bottom: 125px; 2153 | } 2154 | 2155 | .pb-130 { 2156 | padding-bottom: 130px; 2157 | } 2158 | 2159 | .pb-135 { 2160 | padding-bottom: 135px; 2161 | } 2162 | 2163 | .pb-140 { 2164 | padding-bottom: 140px; 2165 | } 2166 | 2167 | .pb-145 { 2168 | padding-bottom: 145px; 2169 | } 2170 | 2171 | .pb-150 { 2172 | padding-bottom: 150px; 2173 | } 2174 | 2175 | .pb-155 { 2176 | padding-bottom: 155px; 2177 | } 2178 | 2179 | .pb-160 { 2180 | padding-bottom: 160px; 2181 | } 2182 | 2183 | .pb-165 { 2184 | padding-bottom: 165px; 2185 | } 2186 | 2187 | .pb-170 { 2188 | padding-bottom: 170px; 2189 | } 2190 | 2191 | .pb-175 { 2192 | padding-bottom: 175px; 2193 | } 2194 | 2195 | .pb-180 { 2196 | padding-bottom: 180px; 2197 | } 2198 | 2199 | .pb-185 { 2200 | padding-bottom: 185px; 2201 | } 2202 | 2203 | .pb-190 { 2204 | padding-bottom: 190px; 2205 | } 2206 | 2207 | .pb-195 { 2208 | padding-bottom: 195px; 2209 | } 2210 | 2211 | .pb-200 { 2212 | padding-bottom: 200px; 2213 | } 2214 | 2215 | .pb-205 { 2216 | padding-bottom: 205px; 2217 | } 2218 | 2219 | .pb-210 { 2220 | padding-bottom: 210px; 2221 | } 2222 | 2223 | .pb-215 { 2224 | padding-bottom: 215px; 2225 | } 2226 | 2227 | .pb-220 { 2228 | padding-bottom: 220px; 2229 | } 2230 | 2231 | .pb-225 { 2232 | padding-bottom: 225px; 2233 | } 2234 | --------------------------------------------------------------------------------