-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogdetails.html
614 lines (533 loc) · 33.7 KB
/
blogdetails.html
1
2
3
4
5
6
7
8
9
10
11
12
13
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qfolio - Responsive HTML Portfolio Template | Blog Details</title>
<!-- FAVICON-ICON -->
<link rel="shortcut icon" href="assets/images/logo/favicon.svg" type="image/svg+xml">
<!-- BACK-TO-TOP -->
<link rel="stylesheet" href="assets/css/back-top/back-top.css">
<!-- INTERNATIONAL-TEL-INPUT-CSS(CDN) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/css/intlTelInput.css">
<!-- AOS-CSS -->
<link rel="stylesheet" href="assets/css/aos/aos.css">
<!-- BOOTSTRAP CSS -->
<link rel="stylesheet" href="assets/css/bootstrap/bootstrap.min.css">
<!-- CUSTOM-CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="pe-0">
<!-- PAGE-LOADER START -->
<div class="preloader" id="preloader">
<div class="spinner">
<span class="blade blade1"></span>
<span class="blade blade2"></span>
<span class="blade blade3"></span>
</div>
</div>
<!-- PAGE-LOADER END -->
<!-- HEADER-SECTION START -->
<header class="header fixed-top pe-0 me-0">
<div class="container">
<nav id="header-nav" class="header-nav" aria-label="header-nav">
<a href="index.html" class="logo">
<img src="assets/images/logo/logo.svg" alt="brand-logo">
</a>
<div class="menu">
<div class="d-none d-lg-block">
<button type="button" class="btn-download">Download Resume</button>
</div>
<button type="button" class="btn-hamburger" data-bs-toggle="offcanvas" data-bs-target="#hamburgerMenu" aria-controls="hamburgerMenu">
<svg class="hamicon" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M4 5.33334H28V8.00001H4V5.33334ZM12 14.6667H28V17.3333H12V14.6667ZM4 24H28V26.6667H4V24Z" fill="white"/>
</g>
<defs>
<clipPath>
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
<svg class="closeicon d-none" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M16 14.1147L22.6 7.51468L24.4853 9.40001L17.8853 16L24.4853 22.6L22.6 24.4853L16 17.8853L9.39998 24.4853L7.51465 22.6L14.1146 16L7.51465 9.40001L9.39998 7.51468L16 14.1147Z" fill="white"/>
</g>
<defs>
<clipPath>
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
</button>
</div>
</nav>
</div>
</header>
<!-- HEADER-SECTION END -->
<!-- HAMBURGER-MENU START -->
<div class="offcanvas offcanvas-bottom pe-0" data-bs-backdrop="false" tabindex="-1" id="hamburgerMenu" aria-labelledby="hamburgerMenu">
<div class="offcanvas-header">
<div class="d-none">
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
</div>
<div class="offcanvas-body p-0">
<nav id="main-nav" class="main-nav" aria-label="main-nav">
<ul class="mainlist">
<li class="mainlist-item">
<a href="#" class="mainlist-link">
My Short bio
</a>
</li>
<li class="mainlist-item">
<a href="#" class="mainlist-link">
Work Process
</a>
</li>
<li class="mainlist-item">
<a href="#" class="mainlist-link">
Previous Works
</a>
</li>
<li class="mainlist-item">
<a href="#" class="mainlist-link">
Testimonial
</a>
</li>
<li class="mainlist-item">
<a href="#" class="mainlist-link">
Blog
</a>
</li>
<li class="mainlist-item">
<a href="#" class="mainlist-link">
Contact with me
</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- HAMBURGER-MENU END -->
<!-- BANNER-SECTION START -->
<section class="blogbanner">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-lg-7" data-aos="fade-right">
<div class="bannercontent">
<div class="titlebox">
<h1 class="title">
Why UX is important for business in 2023 | A All-In-One Guide
</h1>
</div>
<p class="date">Last Update: Jan 2, 2023</p>
</div>
</div>
<div class="col-lg-5" data-aos="fade-left">
<figure class="bannerthumb">
<img src="assets/images/blog-details/blog-thumb.png" alt="blogbanner-thumb">
</figure>
</div>
</div>
</div>
</section>
<!-- BANNER-SECTION END -->
<!-- MAIN-SECTION START -->
<main class="mainsection">
<div class="container">
<div class="row g-4">
<div class="col-lg-7">
<div class="leftcontent">
<div class="bloginfo" data-aos="flip-up">
<div class="titlebox">
<figure class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="18" height="18" rx="2.4" fill="#000903"/>
<rect x="6" y="6" width="18" height="18" rx="2.4" fill="#007C89"/>
</svg>
</figure>
<h3 class="title">What is UX?</h3>
</div>
<div class="info">
<p class="text">
Howdy, all the Businessman!
</p>
<p class="text">
UX is crucial to the success of any business, as it directly impacts customer satisfaction and loyalty. A well-designed user experience can help businesses differentiate themselves from their competitors.
</p>
<p class="text">
Attract and retain customers, and increase sales and revenue. By investing in UX, businesses can ensure that their.
</p>
<p class="text">
In today's digital age, where consumers have high expectations for the products and services they use, prioritizing UX can make all the difference in a company's success.
</p>
</div>
</div>
<div class="bloginfo" data-aos="flip-up">
<div class="boxtitle">
<h3 class="title">
Why User Experience design mattetrs that much?
</h3>
</div>
<div class="info">
<p class="text">
UX is crucial to the success of any business, as it directly impacts customer satisfaction and loyalty. A well-designed user experience can help businesses differentiate!
</p>
<p class="text">
UX is crucial to the success of any business, as it directly impacts customer satisfaction and loyalty.
</p>
</div>
<div class="info">
<ol class="bloglist">
<li class="bloglist-item">
UX stands for User Experience, which refers to the overall experience that a user has when interacting with a product or service.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
<li class="bloglist-item">
A good UX design focuses on understanding the user's needs, goals, and behaviors to create an optimal experience.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
</ol>
</div>
</div>
<div class="bloginfo" data-aos="flip-up">
<div class="boxtitle">
<h3 class="title">
Why User Experience design mattetrs that much?
</h3>
</div>
<div class="info">
<p class="text">
UX is crucial to the success of any business, as it directly impacts customer satisfaction and loyalty. A well-designed user experience can help businesses differentiate!
</p>
<p class="text">
UX is crucial to the success of any business, as it directly impacts customer satisfaction and loyalty.
</p>
</div>
<div class="info">
<ol class="bloglist">
<li class="bloglist-item">
UX stands for User Experience, which refers to the overall experience that a user has when interacting with a product or service.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
<li class="bloglist-item">
A good UX design focuses on understanding the user's needs, goals, and behaviors to create an optimal experience.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
<li class="bloglist-item">
UX design involves creating digital interfaces that are user-friendly, easy to navigate, and visually appealing.
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="rightcontent">
<div class="rightcontent-header" data-aos="fade-up">
<h4 class="title">Related Posts</h4>
</div>
<div class="rightcontent-body">
<a href="#" class="relatedlink" data-aos="fade-up">
<div class="relatedpost popular">
<figure class="relatedthumb">
<img src="assets/images/relatedposts/post-1.png" alt="post-thumbnail">
</figure>
<div class="relatedpost-detail">
<h5 class="title">What is Customer Experience</h5>
<p class="date">6 July 2023</p>
<span class="relatedbadge">Most Popular</span>
</div>
</div>
</a>
<a href="#" class="relatedlink" data-aos="fade-up">
<div class="relatedpost">
<figure class="relatedthumb">
<img src="assets/images/relatedposts/post-2.png" alt="post-thumbnail">
</figure>
<div class="relatedpost-detail">
<h5 class="title">What is Customer Experience</h5>
<p class="date">6 July 2023</p>
</div>
</div>
</a>
<a href="#" class="relatedlink" data-aos="fade-up">
<div class="relatedpost">
<figure class="relatedthumb">
<img src="assets/images/relatedposts/post-1.png" alt="post-thumbnail">
</figure>
<div class="relatedpost-detail">
<h5 class="title">What is Customer Experience</h5>
<p class="date">6 July 2023</p>
</div>
</div>
</a>
<a href="#" class="relatedlink" data-aos="fade-up">
<div class="relatedpost">
<figure class="relatedthumb">
<img src="assets/images/relatedposts/post-3.png" alt="post-thumbnail">
</figure>
<div class="relatedpost-detail">
<h5 class="title">What is Customer Experience</h5>
<p class="date">6 July 2023</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- MAIN-SECTION END -->
<!-- CONTACT SECTION START -->
<section id="contact" class="contact">
<div class="container">
<div class="contact-details" data-aos="zoom-in-up">
<div class="row g-4">
<div class="col-lg-5">
<div class="contactinfo">
<div class="contactinfo-header">
<h2 class="title">Let’s discuss your Project</h2>
<p class="text">
There are many variations of passages of Lorem Ipsu available.
but the majority have suffered alte.
</p>
</div>
<div class="contactinfo-body">
<div class="contactbox">
<figure class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.9999 4.47991C16.4086 2.88861 14.2504 1.99463 11.9999 1.99463C9.74949 1.99463 7.59123 2.88861 5.99993 4.47991C4.40863 6.07121 3.51465 8.22947 3.51465 10.4799C3.51465 12.7303 4.40863 14.8886 5.99993 16.4799L11.2699 21.7599C11.3629 21.8536 11.4735 21.928 11.5954 21.9788C11.7172 22.0296 11.8479 22.0557 11.9799 22.0557C12.1119 22.0557 12.2426 22.0296 12.3645 21.9788C12.4864 21.928 12.597 21.8536 12.6899 21.7599L17.9999 16.4299C19.5846 14.8452 20.4748 12.696 20.4748 10.4549C20.4748 8.21386 19.5846 6.06459 17.9999 4.47991V4.47991ZM16.5699 14.9999L11.9999 19.5899L7.42993 14.9999C6.52707 14.0962 5.91241 12.9452 5.66362 11.6922C5.41484 10.4392 5.54312 9.14066 6.03223 7.96059C6.52135 6.78052 7.34935 5.77196 8.41156 5.06239C9.47377 4.35281 10.7225 3.97409 11.9999 3.97409C13.2773 3.97409 14.5261 4.35281 15.5883 5.06239C16.6505 5.77196 17.4785 6.78052 17.9676 7.96059C18.4567 9.14066 18.585 10.4392 18.3362 11.6922C18.0875 12.9452 17.4728 14.0962 16.5699 14.9999V14.9999ZM8.99993 7.40991C8.19264 8.21968 7.73932 9.31648 7.73932 10.4599C7.73932 11.6033 8.19264 12.7001 8.99993 13.5099C9.59969 14.1107 10.3635 14.521 11.1956 14.6893C12.0276 14.8576 12.8909 14.7765 13.677 14.4561C14.4631 14.1356 15.1371 13.5902 15.6144 12.8882C16.0917 12.1861 16.3511 11.3588 16.3599 10.5099C16.3644 9.94311 16.2553 9.38117 16.0388 8.8573C15.8224 8.33343 15.5032 7.85827 15.0999 7.45991C14.7036 7.05449 14.231 6.73145 13.7094 6.50938C13.1877 6.2873 12.6273 6.17059 12.0603 6.16594C11.4934 6.16129 10.9311 6.26881 10.4059 6.4823C9.88067 6.69579 9.40285 7.01104 8.99993 7.40991V7.40991ZM13.6899 12.0899C13.311 12.4747 12.8101 12.7158 12.2731 12.7722C11.736 12.8285 11.196 12.6966 10.7454 12.3988C10.2949 12.1011 9.96173 11.6562 9.80294 11.14C9.64415 10.6238 9.66958 10.0685 9.87489 9.56907C10.0802 9.06958 10.4526 8.65693 10.9285 8.40165C11.4044 8.14637 11.9542 8.06432 12.4839 8.16953C13.0135 8.27474 13.4902 8.56067 13.8324 8.97844C14.1746 9.39621 14.3611 9.91988 14.3599 10.4599C14.3454 11.0772 14.0864 11.6634 13.6399 12.0899H13.6899Z" fill="#009DAE"/>
</svg>
</figure>
<div class="info">
<span class="title">Address:</span>
<p class="text">New Mexico 31134</p>
</div>
</div>
<div class="contactbox">
<figure class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#009DAE" class="bi bi-envelope" viewBox="0 0 16 16">
<path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"/>
</svg>
</figure>
<div class="info">
<span class="title">My Email:</span>
<p class="text">mymail@mail.com</p>
</div>
</div>
<div class="contactbox">
<figure class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#009DAE" class="bi bi-telephone" viewBox="0 0 16 16">
<path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"/>
</svg>
</figure>
<div class="info">
<span class="title">Call Me Now:</span>
<p class="text">00-1234 00000</p>
</div>
</div>
</div>
<div class="contactinfo-footer">
<ul class="followlist">
<li class="followlist-item">
<a href="https://www.facebook.com" class="followlist-link" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Follow on facebook">
<svg width="19" height="20" viewBox="0 0 19 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.1897 0.0124512H11.1331C9.31916 0.0124512 7.30158 0.790288 7.30158 3.47109C7.31043 4.40518 7.30158 5.29977 7.30158 6.30656H5.20312V9.71117H7.36652V19.5125H11.3419V9.64649H13.9657L14.2031 6.29701H11.2734C11.2734 6.29701 11.2799 4.80702 11.2734 4.37432C11.2734 3.31493 12.3545 3.37559 12.4196 3.37559C12.9341 3.37559 13.9344 3.37712 14.1912 3.37559V0.0124512H14.1897Z" fill="#009DAE"/>
</svg>
</a>
</li>
<li class="followlist-item">
<a href="https://www.dribbble.com" class="followlist-link" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Follow on dribbble">
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M0.703125 9.76245C0.703125 8.13044 1.10514 6.62446 1.90912 5.24445C2.71313 3.86445 3.80514 2.77246 5.18512 1.96845C6.56513 1.16445 8.07114 0.762451 9.70312 0.762451C11.3351 0.762451 12.8411 1.16445 14.2211 1.96845C15.6011 2.77246 16.6931 3.86445 17.4971 5.24445C18.3011 6.62446 18.7031 8.13044 18.7031 9.76245C18.7031 11.3945 18.3011 12.9004 17.4971 14.2805C16.6931 15.6605 15.6011 16.7524 14.2211 17.5565C12.8411 18.3605 11.3351 18.7625 9.70312 18.7625C8.07114 18.7625 6.56513 18.3605 5.18512 17.5565C3.80514 16.7524 2.71313 15.6605 1.90912 14.2805C1.10514 12.9004 0.703125 11.3945 0.703125 9.76245ZM2.19712 9.76245C2.19712 11.6345 2.82712 13.2845 4.08712 14.7125C4.66312 13.5844 5.57513 12.5105 6.82312 11.4905C8.07114 10.4704 9.28912 9.82846 10.4771 9.56445C10.2971 9.14446 10.1231 8.76646 9.95512 8.43045C7.89114 9.09046 5.65914 9.42045 3.25912 9.42045C2.79112 9.42045 2.44313 9.41446 2.21512 9.40245C2.21512 9.45046 2.21214 9.51045 2.20612 9.58245C2.20013 9.65445 2.19712 9.71444 2.19712 9.76245ZM2.43112 7.90845C2.69513 7.93244 3.08514 7.94445 3.60112 7.94445C5.60514 7.94445 7.50712 7.67445 9.30712 7.13445C8.39514 5.51445 7.39313 4.16445 6.30112 3.08445C5.35314 3.56446 4.54013 4.23046 3.86212 5.08245C3.18414 5.93444 2.70714 6.87646 2.43112 7.90845ZM5.11312 15.6845C6.46914 16.7405 7.99914 17.2685 9.70312 17.2685C10.5911 17.2685 11.4731 17.1005 12.3491 16.7645C12.1091 14.7125 11.6411 12.7265 10.9451 10.8065C9.84113 11.0464 8.72814 11.6525 7.60612 12.6245C6.48413 13.5965 5.65312 14.6165 5.11312 15.6845ZM7.86712 2.50845C8.92313 3.60046 9.90112 4.96244 10.8011 6.59445C12.4331 5.91045 13.6631 5.04046 14.4911 3.98445C13.0991 2.83245 11.5031 2.25645 9.70312 2.25645C9.09112 2.25645 8.47912 2.34046 7.86712 2.50845ZM11.4491 7.87245C11.6291 8.25644 11.8331 8.74244 12.0611 9.33045C12.9491 9.24644 13.9151 9.20445 14.9591 9.20445C15.7031 9.20445 16.4411 9.22245 17.1731 9.25845C17.0771 7.62644 16.4891 6.17446 15.4091 4.90245C14.6291 6.06646 13.3091 7.05646 11.4491 7.87245ZM12.5111 10.5905C13.1231 12.3665 13.5371 14.1905 13.7531 16.0625C14.7011 15.4505 15.4751 14.6644 16.0751 13.7045C16.6751 12.7445 17.0351 11.7065 17.1551 10.5905C16.2791 10.5305 15.4811 10.5005 14.7611 10.5005C14.1011 10.5005 13.3511 10.5305 12.5111 10.5905Z" fill="#009DAE"/>
</g>
<defs>
<clipPath>
<rect width="18" height="18" fill="white" transform="translate(0.703125 0.762451)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="followlist-item">
<a href="https://www.instagram.com" class="followlist-link" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Follow on instagram">
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M6.70361 9.76245C6.70361 8.10567 8.04634 6.76221 9.70313 6.76221C11.3599 6.76221 12.7034 8.10567 12.7034 9.76245C12.7034 11.4192 11.3599 12.7627 9.70313 12.7627C8.04634 12.7627 6.70361 11.4192 6.70361 9.76245ZM5.08172 9.76245C5.08172 12.3149 7.1507 14.3839 9.70313 14.3839C12.2555 14.3839 14.3245 12.3149 14.3245 9.76245C14.3245 7.21003 12.2555 5.14105 9.70313 5.14105C7.1507 5.14105 5.08172 7.21003 5.08172 9.76245ZM13.4274 4.95785C13.4274 5.55397 13.9109 6.03814 14.5077 6.03814C15.1039 6.03814 15.588 5.55397 15.588 4.95785C15.588 4.36172 15.1046 3.87828 14.5077 3.87828C13.9109 3.87828 13.4274 4.36172 13.4274 4.95785ZM6.06678 17.0882C5.18931 17.0482 4.71241 16.9021 4.39545 16.7785C3.97526 16.615 3.67574 16.4201 3.36023 16.1053C3.04545 15.7906 2.84989 15.491 2.68705 15.0709C2.56346 14.7539 2.41734 14.277 2.37736 13.3995C2.33374 12.4508 2.32502 12.1658 2.32502 9.76245C2.32502 7.35906 2.33447 7.07481 2.37736 6.12538C2.41734 5.24791 2.56419 4.77174 2.68705 4.45405C2.85062 4.03386 3.04545 3.73434 3.36023 3.41883C3.67502 3.10405 3.97453 2.90849 4.39545 2.74565C4.71241 2.62206 5.18931 2.47594 6.06678 2.43596C7.01548 2.39234 7.30046 2.38361 9.70313 2.38361C12.1065 2.38361 12.3908 2.39306 13.3402 2.43596C14.2177 2.47594 14.6938 2.62279 15.0115 2.74565C15.4317 2.90849 15.7312 3.10405 16.0467 3.41883C16.3615 3.73361 16.5564 4.03386 16.7199 4.45405C16.8435 4.77101 16.9896 5.24791 17.0296 6.12538C17.0732 7.07481 17.082 7.35906 17.082 9.76245C17.082 12.1651 17.0732 12.4501 17.0296 13.3995C16.9896 14.277 16.8428 14.7539 16.7199 15.0709C16.5564 15.491 16.3615 15.7906 16.0467 16.1053C15.732 16.4201 15.4317 16.615 15.0115 16.7785C14.6946 16.9021 14.2177 17.0482 13.3402 17.0882C12.3915 17.1318 12.1065 17.1406 9.70313 17.1406C7.30046 17.1406 7.01548 17.1318 6.06678 17.0882ZM5.99262 0.816975C5.03447 0.860593 4.38018 1.01253 3.80805 1.23499C3.21629 1.46471 2.71468 1.77295 2.21379 2.27311C1.71363 2.77328 1.40539 3.27489 1.17566 3.86738C0.953206 4.43951 0.801267 5.09379 0.757648 6.05195C0.713303 7.01156 0.703125 7.31835 0.703125 9.76245C0.703125 12.2066 0.713303 12.5133 0.757648 13.473C0.801267 14.4311 0.953206 15.0854 1.17566 15.6575C1.40539 16.2493 1.7129 16.7516 2.21379 17.2518C2.71395 17.7519 3.21556 18.0595 3.80805 18.2899C4.38091 18.5124 5.03447 18.6643 5.99262 18.7079C6.95296 18.7515 7.25902 18.7625 9.70313 18.7625C12.148 18.7625 12.454 18.7523 13.4136 18.7079C14.3718 18.6643 15.0261 18.5124 15.5982 18.2899C16.19 18.0595 16.6916 17.7519 17.1925 17.2518C17.6926 16.7516 18.0001 16.2493 18.2306 15.6575C18.453 15.0854 18.6057 14.4311 18.6486 13.473C18.6922 12.5126 18.7024 12.2066 18.7024 9.76245C18.7024 7.31835 18.6922 7.01156 18.6486 6.05195C18.605 5.09379 18.453 4.43951 18.2306 3.86738C18.0001 3.27562 17.6926 2.774 17.1925 2.27311C16.6923 1.77295 16.19 1.46471 15.5989 1.23499C15.0261 1.01253 14.3718 0.859866 13.4144 0.816975C12.4547 0.773356 12.148 0.762451 9.70385 0.762451C7.25902 0.762451 6.95296 0.772629 5.99262 0.816975Z" fill="#009DAE"/>
</g>
<defs>
<clipPath>
<rect width="18" height="18" fill="white" transform="translate(0.703125 0.762451)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="followlist-item">
<a href="https://linkedin.com" class="followlist-link" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Follow on linkedin">
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M0.703125 2.85311C0.703125 2.24704 0.905833 1.74704 1.31123 1.35312C1.71663 0.95917 2.24367 0.762207 2.89231 0.762207C3.52939 0.762207 4.04482 0.956134 4.43865 1.34402C4.84405 1.74402 5.04675 2.26522 5.04675 2.90766C5.04675 3.48948 4.84985 3.97431 4.45602 4.3622C4.05062 4.7622 3.5178 4.9622 2.85757 4.9622H2.84019C2.20312 4.9622 1.68769 4.7622 1.29386 4.3622C0.90003 3.9622 0.703125 3.45917 0.703125 2.85311ZM0.928994 18.7622V6.61674H4.78614V18.7622H0.928994ZM6.9232 18.7622H10.7803V11.9804C10.7803 11.5561 10.8267 11.2288 10.9193 10.9986C11.0815 10.5864 11.3276 10.2379 11.6578 9.9531C11.9879 9.66825 12.402 9.52583 12.9 9.52583C14.1973 9.52583 14.846 10.441 14.846 12.2713V18.7622H18.7031V11.7986C18.7031 10.0046 18.2977 8.64401 17.4869 7.71674C16.6761 6.78947 15.6047 6.32583 14.2726 6.32583C12.7784 6.32583 11.6143 6.99856 10.7803 8.34401V8.38038H10.763L10.7803 8.34401V6.61674H6.9232C6.94636 7.00461 6.95795 8.21067 6.95795 10.2349C6.95795 12.2592 6.94636 15.1016 6.9232 18.7622Z" fill="#009DAE"/>
</g>
<defs>
<clipPath>
<rect width="18" height="18" fill="white" transform="translate(0.703125 0.762451)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="followlist-item">
<a href="https://behance.net" class="followlist-link" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Follow on behance">
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M7.96643 8.79201C7.96643 8.79201 9.66952 8.66721 9.66952 6.69594C9.66952 4.72453 8.27618 3.76245 6.51121 3.76245H0.703369V14.779H6.51121C6.51121 14.779 10.0567 14.8895 10.0567 11.5274C10.0567 11.5274 10.2113 8.79201 7.96643 8.79201ZM6.09316 5.72051H6.51121C6.51121 5.72051 7.30066 5.72051 7.30066 6.86673C7.30066 8.01281 6.83638 8.17897 6.30976 8.17897H3.26238V5.72051H6.09316ZM6.34709 12.821H3.26238V9.87694H6.51121C6.51121 9.87694 7.68785 9.86171 7.68785 11.3899C7.68785 12.6784 6.80901 12.8112 6.34709 12.821ZM14.7852 6.56537C10.493 6.56537 10.4968 10.7982 10.4968 10.7982C10.4968 10.7982 10.2023 15.0094 14.7852 15.0094C14.7852 15.0094 18.6042 15.2247 18.6042 12.0799H16.6401C16.6401 12.0799 16.7056 13.2642 14.8507 13.2642C14.8507 13.2642 12.8863 13.3942 12.8863 11.3476H18.6697C18.6697 11.3476 19.3025 6.56537 14.7852 6.56537ZM12.8647 9.87694C12.8647 9.87694 13.1046 8.17894 14.8288 8.17894C16.5527 8.17894 16.5311 9.87694 16.5311 9.87694H12.8647ZM16.9887 5.76807H12.3839V4.41146H16.9887V5.76807Z" fill="#009DAE"/>
</g>
<defs>
<clipPath>
<rect width="18" height="18" fill="white" transform="translate(0.703125 0.762451)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="offset-lg-1 col-lg-6">
<form class="contactform">
<div class="row g-4">
<div class="col-lg-6">
<div class="inputbox">
<label for="firstname" class="inputlabel">First name</label>
<input type="text" id="firstname" class="inputfield" placeholder="First name">
</div>
</div>
<div class="col-lg-6">
<div class="inputbox">
<label for="lastname" class="inputlabel">Last name</label>
<input type="text" id="lastname" class="inputfield" placeholder="Last name">
</div>
</div>
<div class="col-12">
<div class="inputbox">
<label for="emailaddress" class="inputlabel">Email</label>
<input type="email" id="emailaddress" class="inputfield" placeholder="Email address">
</div>
</div>
<div class="col-12">
<div class="inputbox">
<label for="phonenumber" class="inputlabel">Phone number</label>
<input type="tel" pattern="[0-9]{3} [0-9]{8}" id="phonenumber" class="inputfield" placeholder="+1 (555) 000-0000">
</div>
</div>
<div class="col-12">
<div class="inputbox">
<label for="message" class="inputlabel">Message</label>
<textarea class="inputfield" id="message" rows="6" placeholder="Enter your message"></textarea>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn-submit">Send message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT SECTION END -->
<!-- FOOTER-SECTION START -->
<footer class="footer">
<div class="footerdetail">
<div class="container">
<div class="row g-4">
<div class="col-md-4">
<div class="footerinfo">
<figure class="footerlogo">
<img src="assets/images/logo/logo.svg" alt="footer-logo">
</figure>
<div class="info">
<p class="text">
Simple innate summer fat appear basket his desire joy.
</p>
</div>
</div>
</div>
<div class="col-md-8">
<ul class="footerlist">
<li class="footerlist-item">
<a href="#" class="footerlist-link">My Short bio</a>
</li>
<li class="footerlist-item">
<a href="#" class="footerlist-link">Work Process</a>
</li>
<li class="footerlist-item">
<a href="#" class="footerlist-link">Previous Works</a>
</li>
<li class="footerlist-item">
<a href="#" class="footerlist-link">Testimonials</a>
</li>
<li class="footerlist-item">
<a href="#" class="footerlist-link">Blog</a>
</li>
<li class="footerlist-item">
<a href="#" class="footerlist-link">Contact with me</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="copyrights">
<div class="container">
<p class="copyright-text">
Copyright © Mr.Q <span class="currentyear"></span>. All Rights Reserved.
</p>
</div>
</div>
<figure class="footericon">
<svg width="388" height="327" viewBox="0 0 388 327" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="240" cy="240" r="210" stroke="#E31B54" stroke-width="60"/>
</svg>
</figure>
</footer>
<!-- FOOTER-SECTION END -->
<!-- BOOTSTRAP-JS -->
<script src="assets/js/bootsrap/bootstrap.bundle.min.js"></script>
<!-- PRELOADER-JS -->
<script src="assets/js/loader/loader.js"></script>
<!-- HAMBURGER-JS -->
<script src="assets/js/hamburger/hamburger.js"></script>
<!-- TOOLTIP-JS -->
<script src="assets/js/tooltip/tooltip.js"></script>
<!-- BACK-TO-TOP-JS -->
<script src="assets/js/back-top/back-top.js"></script>
<script src="assets/js/back-top/backtotop.js"></script>
<!-- COPYRIGHT-JS -->
<script src="assets/js/copyright/copyright.js"></script>
<!-- INTERNATIONAL-TEL-INPUT-JS(CDN) -->
<script src="https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/js/intlTelInput.min.js"></script>
<script src="assets/js/intlTelInput/phoneno.js"></script>
<!-- AOS-JS -->
<script src="assets/js/aos/aos.js"></script>
<script src="assets/js/aos/scrollanimations.js"></script>
</body>
</html>