-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2414 lines (2366 loc) · 119 KB
/
index.html
File metadata and controls
2414 lines (2366 loc) · 119 KB
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
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-CM">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta
name="keywords"
content="coworking space Yaoundé, coworking Yaoundé, office rental Yaoundé, office space Yaoundé, flexible workspace Yaoundé, flexible office Yaoundé, private office Yaoundé, private office rental Yaoundé, shared office Yaoundé, shared office rental Yaoundé, dedicated desk Yaoundé, dedicated desk rental Yaoundé, conference room rental Yaoundé, meeting room Yaoundé, meeting space Yaoundé, meeting room hire Yaoundé, soundproof office Yaoundé, soundproof coworking Yaoundé, high-speed internet Yaoundé, fast wifi Yaoundé, productivity workspace Yaoundé, business center Yaoundé, remote work space Yaoundé, startup office Yaoundé, professional office Yaoundé, office solutions Yaoundé, workspace solutions Yaoundé, rent office Yaoundé, lease office Yaoundé, Offizone Yaoundé, Cirronyx Yaoundé, coworking Cameroon, office rental Cameroon, flexible workspace Cameroon, Yaoundé office space, Yaoundé coworking"
/>
<meta
name="description"
content="Boost productivity at Offizone, Yaoundé's premier soundproofed coworking space. Flexible private offices, shared desks, and conference rooms with ultra-fast internet. Book your ideal workspace today!"
/>
<meta name="author" content="cirronyx.com" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="google" content="notranslate" />
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-TileImage"
content="images/favicon/ms-icon-144x144.png"
/>
<meta
property="og:image"
content="https://www.offizone.cm/images/workspaces/Coworking/Landing.png"
/>
<meta
property="og:image:alt"
content="Offizone Coworking Space in Yaoundé"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha384-k6RqeWeci5ZR/Lv4MR0sA0FfDOM8d7x1z5l5e5c5e5e5e5e5e5e5e5e5e5e5e"
crossorigin="anonymous"
/>
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-title"
content="Offizone Coworking Space Yaoundé"
/>
<meta name="application-name" content="Offizone Coworking Space Yaoundé" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@offizonecowork" />
<meta name="twitter:creator" content="@offizonecowork" />
<title>Offizone Coworking Space | Flexible Offices in Yaoundé</title>
<link rel="canonical" href="https://www.offizone.cm/index.html" />
<meta
property="og:title"
content="Offizone Coworking Space Yaoundé | Flexible & Soundproofed Offices"
/>
<meta
property="og:description"
content="Boost productivity at Offizone, Yaoundé's premier soundproofed coworking space. Offering flexible private offices, shared desks, and conference rooms with ultra-fast internet. Book your ideal workspace!"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.offizone.cm/index.html" />
<meta
property="og:image"
content="https://www.offizone.cm/images/workspaces/Coworking/IMG_8058 2_compressed.webp"
/>
<meta
property="og:image:alt"
content="Offizone Coworking Space in Yaoundé"
/>
<meta property="og:locale" content="en_CM" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@offizonecowork" />
<meta name="twitter:creator" content="@offizonecowork" />
<meta
name="twitter:title"
content="Offizone Coworking Space Yaoundé | Flexible & Soundproofed Offices"
/>
<meta
name="twitter:description"
content="Boost productivity at Offizone, Yaoundé's premier soundproofed coworking space. Offering flexible private offices, shared desks, and conference rooms with ultra-fast internet. Book your ideal workspace!"
/>
<meta
name="twitter:image"
content="https://www.offizone.cm/images/workspaces/Coworking/IMG_8058 2_compressed.webp"
/>
<meta
name="twitter:image:alt"
content="Offizone Coworking Space in Yaoundé"
/>
<link
rel="shortcut icon"
href="/images/favicon/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/images/favicon/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/images/favicon/android-chrome-512x512.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/images/favicon-16x16.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/images/favicon/apple-touch-icon.png"
/>
<link rel="manifest" href="/images/favicon/site.webmanifest" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=AW-16911629100"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "AW-16911629100");
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Offizone Coworking Space Yaoundé",
"url": "https://offizone.cm/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://offizone.cm/?s={search_term_string}",
"query-input": "required name=search_term_string"
},
"mainEntity": {
"@type": "SiteNavigationElement",
"name": [
"About Us",
"Services",
"Pricing",
"Location",
"Contact",
"Book Now"
],
"url": [
"https://offizone.cm/#about",
"https://offizone.cm/#services",
"https://offizone.cm/#pricing",
"https://offizone.cm/#location",
"https://offizone.cm/#contact",
"https://offizone.cm/booking"
]
}
}
</script>
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] =
c[a] ||
function () {
(c[a].q = c[a].q || []).push(arguments);
};
t = l.createElement(r);
t.async = 1;
t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "rj7z9t0sef");
</script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap"
as="style"
onload="this.rel = 'stylesheet'"
/>
<style>
/* Critical CSS for above-the-fold content */
.main-banner {
display: flex;
align-items: center;
justify-content: center;
}
.banner-image img {
max-width: 100%;
height: auto;
}
</style>
<link rel="stylesheet" href="/css/font-awesome/all.min.css" />
<link rel="stylesheet" href="/css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="/css/owl-carousel/owl.carousel.min.css" />
<link rel="stylesheet" href="/css/swiper/swiper.min.css" />
<link rel="stylesheet" href="/css/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="/css/nice-select/nice-select.css" />
<link
rel="stylesheet"
href="/css/style.css"
media="print"
onload="this.media = 'all'"
/>
<style>
#cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: #333;
color: white;
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 9999;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}
#cookie-consent a {
color: #ffd700;
text-decoration: underline;
}
#cookie-consent button {
border: none;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
}
#cookie-consent button#accept-cookies {
background: #ffd700;
color: black;
}
#cookie-consent button#close-cookies {
background: #555;
color: white;
}
/* Add social media buttons styles */
.social-media-buttons {
display: flex;
gap: 10px;
margin-top: 20px;
}
.btn-social {
display: flex;
align-items: center;
padding: 10px 15px;
background-color: #f4f4f4;
border: 1px solid #ddd;
border-radius: 5px;
text-decoration: none;
color: #333;
font-size: 14px;
transition: background-color 0.3s;
}
.btn-social i {
margin-right: 8px;
font-size: 16px;
}
.btn-social:hover {
background-color: #e0e0e0;
}
/* Add styles for social icons */
.social-icons {
display: flex;
gap: 10px;
margin-top: 10px;
}
.social-icons a {
color: #333;
font-size: 20px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #007bff;
}
</style>
</head>
<body>
<!--=================================
cursor -->
<div id="cursor">
<div class="cursor__circle"></div>
</div>
<!--=================================
cursor -->
<div id="page" class="main">
<!--=================================
Header -->
<header class="header header-default header-absolute header-sticky">
<div class="header-inner">
<div class="site-logo">
<a class="navbar-brand" href="index.html"
><img
class="img-fluid"
src="images/Logo/white/logo-main.png"
width="250"
alt="logo"
/></a>
</div>
<div class="site-menu d-none d-xl-block">
<ul class="main-menu">
<li class="nav-item active">
<a class="nav-link" href="#">Home </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#location">Location</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sdai/">SDAI</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/booking/">Book Now</a>
</li>
</ul>
</div>
<div class="site-action d-none d-xl-block">
<div class="action-hamburger">
<a
class="hamburger"
href="#"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasRight"
aria-controls="offcanvasRight"
>
<span class="hamburger-container">
<span class="hamburger-inner"></span>
<span class="hamburger-hidden"></span>
</span>
</a>
</div>
</div>
<div class="mobile-action d-block d-xl-none">
<div class="mobile-hamburger">
<a
class="hamburger"
href="#"
data-bs-toggle="offcanvas"
data-bs-target="#menuOffcanvas"
aria-controls="menuOffcanvas"
>
<span class="hamburger-container">
<span class="hamburger-inner"></span>
<span class="hamburger-hidden"></span>
</span>
</a>
</div>
</div>
</div>
</header>
<!--=================================
Main Menu OffCanvas -->
<div
class="offcanvas main-menu-offcanvas offcanvas-end"
tabindex="-1"
id="menuOffcanvas"
aria-labelledby="menuOffcanvasLabel"
>
<div class="offcanvas-header">
<a id="menuOffcanvasLabel" class="navbar-brand" href="index.html"
><img
class="img-fluid"
src="images/Logo/white/logo-main.png"
alt="logo"
/></a>
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"
>
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<div class="offcanvas-body">
<div class="body-inner">
<nav class="navbar">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link"
href="#"
role="button"
data-bs-toggle=""
aria-expanded="false"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#location">Location</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sdai/">SDAI</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/booking/">Book Now</a>
</li>
</ul>
</nav>
<div class="bottom-info">
<div class="contact-info">
<a class="number" href="tel:+237672422585">+237 672422585</a>
<a class="number" href="tel:+237689748280">+237 689748280</a>
<a class="mail" href="mailto:info@cirronyx.com">
<i class="fa-regular fa-envelope"></i>info@cirronyx.com
</a>
<div class="social-icons">
<a
href="https://www.facebook.com/offizonecoworking/"
target="_blank"
rel="noopener"
>
<i class="fab fa-facebook"></i>
</a>
<a
href="https://www.instagram.com/offizonecoworking/"
target="_blank"
rel="noopener"
>
<i class="fab fa-instagram"></i>
</a>
<a
href="https://x.com/offizonecowork"
target="_blank"
rel="noopener"
>
<i class="fab fa-twitter"></i>
</a>
<a
href="https://www.linkedin.com/company/offizonecoworking/"
target="_blank"
rel="noopener"
>
<i class="fab fa-linkedin"></i>
</a>
<a
href="https://whatsapp.com/channel/0029VbBLqxaCHDysHr3u0815"
target="_blank"
rel="noopener"
>
<i class="fab fa-whatsapp"></i>
</a>
</div>
<span class="text">
Are you looking for a space where you can work effortlessly
with all amenities ready for you? Collaborate with us to find
your ideal office solution at Offizone.
</span>
</div>
</div>
</div>
</div>
</div>
<!--=================================
Header Side Panel -->
<div
class="offcanvas offcanvas-end sidepanel-offcanvas"
tabindex="-1"
id="offcanvasRight"
>
<div class="offcanvas-header">
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"
>
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<div class="offcanvas-body">
<div class="body-inner">
<div class="about-info">
<h4 class="title mb-3">
Scalable Office Spaces for Startups, Individuals and
professionals
</h4>
<p>
At Offizone, we provide flexible, fully-equipped office spaces
designed for startups to scale and grow. Maximize productivity
in a space where everything is ready for you—just move in and
start building your business.
</p>
</div>
<div class="contact-info">
<a class="number" href="tel:+237672422585">+237 672422585</a>
<a class="number" href="tel:+237689748280">+237 689748280</a>
<a class="mail" href="mailto:info@cirronyx.com">
<i class="fa-regular fa-envelope"></i>info@cirronyx.com
</a>
<span class="text">
Looking for a fully-equipped space where you can collaborate and
grow your next creative project? Get in touch with us today!
</span>
</div>
</div>
</div>
</div>
<div class="site-content">
<!--=================================
Main Banner -->
<div class="main-banner main-banner-2 section-bg-effect mt-5">
<div class="banner-inner">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7">
<div class="title-area">
<h2 class="banner-title-fill">Coworking &</h2>
<h2 class="banner-title-outline">Office spaces</h2>
</div>
<div class="button-and-description">
<a class="btn arrow-down btn-effect" href="/booking/">
<span>Book Now</span></a
>
<div class="description">
Meet, pause, think, and create in a space where work feels
effortless. Offizone offers a unique, hybrid experience
unlike traditional coworking spaces. Discover an
environment designed for clarity, productivity, and
innovation.
</div>
</div>
</div>
<div class="col-lg-5 text-center mt-5 mt-lg-0">
<div class="banner-image">
<img
class="img-fluid main-img"
src="images/workspaces/Coworking/Landing_compressed.webp"
alt="Coworking Space in Yaoundé"
width="800"
height="600"
loading="lazy"
/>
<img
class="img-fluid image-border"
src="images/banner/banner-02/image-border.png"
alt="Decorative Image Border"
width="800"
height="600"
loading="lazy"
/>
<img
class="img-fluid img-shape"
src="images/banner/banner-02/image-bg.png"
alt="Decorative Background Image"
width="800"
height="600"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content-wrapper">
<!--=================================
Infobox -->
<section class="space-pt">
<div class="container">
<!-- SDAI Announcement Banner -->
<div class="row mb-5 justify-content-center">
<div class="col-lg-11">
<div
class="bg-light border p-3 d-flex flex-column flex-md-row align-items-center justify-content-between radius-15 shadow-sm"
>
<div
class="d-flex align-items-center flex-column flex-md-row mb-3 mb-md-0 text-center text-md-start"
>
<span
class="bg-primary text-white px-3 py-1 radius-15 me-md-3 mb-2 mb-md-0 fw-bold"
style="font-size: 0.8rem; border-radius: 15px"
>NEW</span
>
<span class="text-dark fw-bold"
>Student Digital Access Initiative (SDAI)</span
>
<span class="d-none d-lg-inline ms-2 text-muted fw-normal"
>- Affordable workspaces tailored for students</span
>
</div>
<a
class="btn btn-primary btn-effect"
href="/sdai/"
style="
padding: 0.5rem 1.5rem;
font-size: 0.875rem;
line-height: 1.5;
"
>
<span>Explore Packages</span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-8 col-lg-12">
<div class="section-title">
<h2 class="title">
What we are offering to creative people.
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-4 col-lg-2 col-md-1"></div>
<div class="col-xl-6 col-lg-7 col-md-8">
<p>
There is really no magic to it and it's not reserved only
for a select few people. As such, success really has nothing
to do with luck, coincidence or fate. It really comes down
to understanding the steps in the process and then executing
on those steps.
</p>
</div>
<div
class="col-xl-2 col-lg-3 col-md-3 mt-3 mt-md-0 text-start text-md-end"
>
<a class="btn btn-effect" href="#services"
><span>Explore All</span></a
>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<div
class="infoboxs grid-wrapper grid-xl-4 grid-lg-2 grid-md-2 grid-sm-2 grid-xs-1"
>
<div class="infobox-wrapper text-center">
<div class="infobox-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Layer 1"
viewBox="0 0 100 100"
x="0px"
y="0px"
>
<defs>
<style>
.cls-1 {
fill-rule: evenodd;
}
</style>
<linearGradient id="mygradient" class="mygradient">
<stop offset="0" class="start-color" />
<stop offset="1" class="end-color" />
</linearGradient>
</defs>
<title>a</title>
<path
class="cls-1"
d="M45.22,8.275c-2.037-1.613-2.336-1.613-4.373,0-2.209,1.75-2.935,1.922-5.685,1.3-2.388-.543-2.558-.462-3.572,1.751-1.163,2.54-1.756,3.019-4.49,3.6-2.356.5-2.47.64-2.451,3.051.022,2.8-.313,3.483-2.524,5.194-1.966,1.523-2.014,1.742-.95,4.019,1.227,2.623,1.227,3.4,0,6.022-1.064,2.277-1.016,2.495.95,4.018,2.21,1.712,2.546,2.4,2.524,5.194-.019,2.412.095,2.552,2.451,3.052,2.734.579,3.327,1.057,4.49,3.6,1.014,2.214,1.185,2.294,3.572,1.751,2.75-.625,3.476-.453,5.685,1.3,2.037,1.614,2.336,1.614,4.373,0,2.209-1.75,2.935-1.921,5.685-1.3,2.388.543,2.558.462,3.572-1.751,1.163-2.54,1.756-3.018,4.49-3.6,2.356-.5,2.47-.64,2.451-3.052-.022-2.8.313-3.482,2.524-5.194,1.966-1.523,2.014-1.741.95-4.018-1.227-2.624-1.227-3.4,0-6.022,1.064-2.278,1.016-2.5-.95-4.019-2.21-1.711-2.546-2.4-2.524-5.194.019-2.411-.095-2.552-2.451-3.051-2.734-.579-3.327-1.058-4.49-3.6-1.014-2.213-1.184-2.294-3.572-1.751-2.751.625-3.476.453-5.685-1.3ZM43.034,5c2.277,0,3.883,2.474,5.272,2.8s3.843-1.2,5.806-.234,2.255,3.837,3.308,4.682,3.912.5,5.27,2.189.4,4.419,1.006,5.645,3.36,2.181,3.866,4.34S66.037,28.67,66.037,30.2s2.031,3.618,1.525,5.773S64.3,39.088,63.7,40.309s.352,3.954-1.006,5.645-4.226,1.352-5.27,2.189-1.344,3.719-3.308,4.683-4.42-.56-5.806-.235-3,2.8-5.272,2.8-3.884-2.474-5.273-2.8-3.843,1.2-5.806.235-2.255-3.837-3.308-4.683-3.912-.5-5.27-2.189-.4-4.418-1.006-5.645-3.36-2.181-3.866-4.34S20.03,31.721,20.03,30.2,18,26.577,18.505,24.422s3.267-3.119,3.866-4.34-.352-3.953,1.006-5.645,4.226-1.351,5.27-2.189,1.344-3.719,3.308-4.682,4.42.559,5.806.234,3-2.8,5.273-2.8ZM53.142,17.9a1.027,1.027,0,1,1,1.3-1.586,17.959,17.959,0,1,1-4.373-2.657,1.028,1.028,0,1,1-.8,1.892A15.924,15.924,0,1,0,53.142,17.9Zm-8,9.568a1.023,1.023,0,0,0,.806.584v0l4.918.618-3.618,3.394a1.028,1.028,0,0,0-.306.942h0l.932,4.872-4.346-2.393a1.028,1.028,0,0,0-1,.006l-4.337,2.387.932-4.872a1.025,1.025,0,0,0-.336-.97L35.2,28.669l4.918-.618a1.029,1.029,0,0,0,.841-.665l2.075-4.415,2.11,4.492Zm-1.181-7.341,2.8,5.955,6.532.821a1.03,1.03,0,0,1,.533,1.816l-4.756,4.46,1.238,6.467A1.03,1.03,0,0,1,48.8,40.736L43.034,37.56l-5.769,3.176a1.03,1.03,0,0,1-1.506-1.095L37,33.174l-4.8-4.5a1.029,1.029,0,0,1,.58-1.769v0l6.532-.821,2.8-5.955a1.027,1.027,0,0,1,1.859,0Zm25.465,72.39L88.02,73.92l-4.646-4.646a3.4,3.4,0,0,0-4.79,0L64.817,83.041a1.02,1.02,0,0,1-.418.493,3.408,3.408,0,0,0,.383,4.333l4.646,4.645ZM64.006,80.938a7.829,7.829,0,0,0-6.792-3.131v0H34.3c-7.15-.606-11.808-7.1-17.679-15.294-1.175-1.64-2.4-3.345-3.713-5.1h0c-1.661-2.267-1.917-3.849-.1-5.671a3.944,3.944,0,0,1,5.558,0L29.221,62.586a6,6,0,0,0,5.822,7.4H46.865a1.031,1.031,0,0,0,0-2.061H35.043a3.931,3.931,0,0,1,0-7.861H53.678a1.03,1.03,0,0,0,.348-.06q8.521-2.176,14.3.012a15.953,15.953,0,0,1,8.532,8.069L64.006,80.938Zm26.2-6.29L70.156,94.7a1.031,1.031,0,0,1-1.457,0l-5.374-5.374a5.466,5.466,0,0,1-.725-6.807c-1.266-1.975-3.037-2.654-5.386-2.657v0H34.261a.714.714,0,0,1-.08,0c-8.133-.661-13.043-7.512-19.236-16.152-1.177-1.641-2.4-3.349-3.688-5.072h0c-2.281-3.034-2.458-5.8.1-8.358a6.006,6.006,0,0,1,8.473,0l10.3,10.3a5.992,5.992,0,0,1,4.914-2.573H53.567q9.123-2.32,15.48.089a17.8,17.8,0,0,1,9.458,8.72,5.467,5.467,0,0,1,6.327,1l5.374,5.374A1.031,1.031,0,0,1,90.206,74.648Z"
/>
</svg>
</div>
<div class="infobox-content">
<h5 class="infobox-title">
<a href="#">Coworking Office Space</a>
</h5>
<p>
Work in a shared, collaborative environment with all
the amenities you need to boost productivity.
</p>
</div>
</div>
<div class="infobox-wrapper text-center">
<div class="infobox-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Layer 1"
viewBox="0 0 100 100"
x="0px"
y="0px"
>
<defs>
<style>
.cls-1 {
fill-rule: evenodd;
}
</style>
<linearGradient id="mygradient2" class="mygradient">
<stop offset="0" class="start-color" />
<stop offset="1" class="end-color" />
</linearGradient>
</defs>
<path
d="M86.592,13.31H26.279a7.417,7.417,0,0,0-7.408,7.408V42.455h-1.42a1.089,1.089,0,0,0-1.078.934L15.9,46.67a16.019,16.019,0,0,0-3.321,1.444L10.048,46.22a1.09,1.09,0,0,0-1.424.1L4.507,50.439a1.09,1.09,0,0,0-.1,1.424l1.986,2.655a16.045,16.045,0,0,0-1.328,3.368l-3.129.451A1.09,1.09,0,0,0,1,59.416v5.822a1.09,1.09,0,0,0,.934,1.079l3.281.473a15.988,15.988,0,0,0,1.444,3.32L4.766,72.642a1.089,1.089,0,0,0,.1,1.423l4.117,4.118a1.09,1.09,0,0,0,1.423.1L13.064,76.3a15.9,15.9,0,0,0,3.368,1.328l.451,3.129a1.089,1.089,0,0,0,1.078.935h5.823a1.091,1.091,0,0,0,1.079-.935l.472-3.281a16.019,16.019,0,0,0,3.321-1.444l2.531,1.894a1.09,1.09,0,0,0,1.424-.1l4.117-4.117a1.09,1.09,0,0,0,.1-1.424l-1.086-1.452H86.592A7.416,7.416,0,0,0,94,63.421v-42.7A7.417,7.417,0,0,0,86.592,13.31ZM26.279,15.49H86.592a5.234,5.234,0,0,1,5.228,5.228v3.806H59.942a1.09,1.09,0,0,0-.707.26L56.281,27.3H21.051V20.718A5.235,5.235,0,0,1,26.279,15.49Zm5.458,60.123-2.365-1.77A1.09,1.09,0,0,0,28.13,73.8a13.834,13.834,0,0,1-4.043,1.763,1.09,1.09,0,0,0-.808.9L22.84,79.51H18.905l-.421-2.924a1.09,1.09,0,0,0-.846-.909,13.821,13.821,0,0,1-4.1-1.614,1.092,1.092,0,0,0-1.208.065L9.859,75.974,7.076,73.192l1.77-2.366a1.092,1.092,0,0,0,.045-1.242,13.834,13.834,0,0,1-1.763-4.043,1.09,1.09,0,0,0-.9-.807l-3.048-.44V60.36L6.1,59.938a1.089,1.089,0,0,0,.91-.846,13.815,13.815,0,0,1,1.614-4.1,1.09,1.09,0,0,0-.066-1.208L6.716,51.313,9.5,48.531l2.366,1.77a1.089,1.089,0,0,0,1.241.044,13.845,13.845,0,0,1,4.043-1.763,1.09,1.09,0,0,0,.808-.9l.439-3.048H22.33l.421,2.924a1.09,1.09,0,0,0,.846.909,13.821,13.821,0,0,1,4.1,1.614,1.09,1.09,0,0,0,1.208-.065l2.467-1.846,2.783,2.782-1.77,2.366a1.092,1.092,0,0,0-.045,1.242A13.834,13.834,0,0,1,34.107,58.6a1.09,1.09,0,0,0,.9.807l3.048.44v3.934l-2.923.422a1.087,1.087,0,0,0-.909.846,13.845,13.845,0,0,1-1.615,4.1,1.09,1.09,0,0,0,.066,1.208l1.845,2.467Zm54.855-6.964H35.32a16.036,16.036,0,0,0,.852-2.391l3.129-.451a1.09,1.09,0,0,0,.934-1.079V58.906a1.09,1.09,0,0,0-.934-1.079l-3.281-.473a15.988,15.988,0,0,0-1.444-3.32L36.469,51.5a1.088,1.088,0,0,0-.1-1.423L32.25,45.961a1.09,1.09,0,0,0-1.423-.1l-2.656,1.987A15.948,15.948,0,0,0,24.8,46.518l-.451-3.129a1.089,1.089,0,0,0-1.078-.934H21.051V29.484H56.682a1.093,1.093,0,0,0,.708-.261l2.954-2.52H91.82V63.421A5.234,5.234,0,0,1,86.592,68.649ZM67.374,23.26a3.253,3.253,0,1,0-3.253-3.253A3.257,3.257,0,0,0,67.374,23.26Zm0-4.326A1.073,1.073,0,1,1,66.3,20.007,1.074,1.074,0,0,1,67.374,18.934Zm7.977,4.326A3.253,3.253,0,1,0,72.1,20.007,3.256,3.256,0,0,0,75.351,23.26Zm0-4.326a1.073,1.073,0,1,1-1.073,1.073A1.075,1.075,0,0,1,75.351,18.934Zm7.978,4.326a3.253,3.253,0,1,0-3.253-3.253A3.256,3.256,0,0,0,83.329,23.26Zm0-4.326a1.073,1.073,0,1,1-1.073,1.073A1.074,1.074,0,0,1,83.329,18.934ZM27.6,23.567a1.09,1.09,0,0,1,1.089-1.089h6.052a1.09,1.09,0,1,1,0,2.179H28.689A1.09,1.09,0,0,1,27.6,23.567Zm0-4.341a1.09,1.09,0,0,1,1.089-1.089h6.052a1.09,1.09,0,1,1,0,2.179H28.689A1.09,1.09,0,0,1,27.6,19.226ZM62.18,37.258,52.719,61.293a1.09,1.09,0,1,1-2.028-.8l9.461-24.035a1.09,1.09,0,1,1,2.028.8ZM49.47,43.145,41.8,48.876l7.675,5.731a1.09,1.09,0,1,1-1.3,1.746l-8.844-6.6a1.089,1.089,0,0,1,0-1.746l8.844-6.6a1.09,1.09,0,0,1,1.3,1.746Zm24.518,5.731a1.09,1.09,0,0,1-.438.873l-8.844,6.6a1.09,1.09,0,1,1-1.3-1.746l7.675-5.731L63.4,43.145a1.09,1.09,0,1,1,1.3-1.746L73.55,48A1.091,1.091,0,0,1,73.988,48.876Zm-53.37,5.18a8.016,8.016,0,1,0,8.016,8.016A8.025,8.025,0,0,0,20.618,54.056Zm0,13.853a5.837,5.837,0,1,1,5.836-5.837A5.844,5.844,0,0,1,20.618,67.909Z"
/>
</svg>
</div>
<div class="infobox-content">
<h5 class="infobox-title">
<a href="#">Private Office Space</a>
</h5>
<p>
Enjoy a dedicated and private space to work quietly,
giving you the focus needed to get things done.
</p>
</div>
</div>
<div class="infobox-wrapper text-center">
<div class="infobox-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Layer 1"
viewBox="0 0 100 100"
x="0px"
y="0px"
>
<defs>
<style>
.cls-1 {
fill-rule: evenodd;
}
</style>
<linearGradient id="mygradient3" class="mygradient">
<stop offset="0" class="start-color" />
<stop offset="1" class="end-color" />
</linearGradient>
</defs>
<title>a</title>
<path
class="cls-1"
d="M45.22,8.275c-2.037-1.613-2.336-1.613-4.373,0-2.209,1.75-2.935,1.922-5.685,1.3-2.388-.543-2.558-.462-3.572,1.751-1.163,2.54-1.756,3.019-4.49,3.6-2.356.5-2.47.64-2.451,3.051.022,2.8-.313,3.483-2.524,5.194-1.966,1.523-2.014,1.742-.95,4.019,1.227,2.623,1.227,3.4,0,6.022-1.064,2.277-1.016,2.495.95,4.018,2.21,1.712,2.546,2.4,2.524,5.194-.019,2.412.095,2.552,2.451,3.052,2.734.579,3.327,1.057,4.49,3.6,1.014,2.214,1.185,2.294,3.572,1.751,2.75-.625,3.476-.453,5.685,1.3,2.037,1.614,2.336,1.614,4.373,0,2.209-1.75,2.935-1.921,5.685-1.3,2.388.543,2.558.462,3.572-1.751,1.163-2.54,1.756-3.018,4.49-3.6,2.356-.5,2.47-.64,2.451-3.052-.022-2.8.313-3.482,2.524-5.194,1.966-1.523,2.014-1.741.95-4.018-1.227-2.624-1.227-3.4,0-6.022,1.064-2.278,1.016-2.5-.95-4.019-2.21-1.711-2.546-2.4-2.524-5.194.019-2.411-.095-2.552-2.451-3.051-2.734-.579-3.327-1.058-4.49-3.6-1.014-2.213-1.184-2.294-3.572-1.751-2.751.625-3.476.453-5.685-1.3ZM43.034,5c2.277,0,3.883,2.474,5.272,2.8s3.843-1.2,5.806-.234,2.255,3.837,3.308,4.682,3.912.5,5.27,2.189.4,4.419,1.006,5.645,3.36,2.181,3.866,4.34S66.037,28.67,66.037,30.2s2.031,3.618,1.525,5.773S64.3,39.088,63.7,40.309s.352,3.954-1.006,5.645-4.226,1.352-5.27,2.189-1.344,3.719-3.308,4.683-4.42-.56-5.806-.235-3,2.8-5.272,2.8-3.884-2.474-5.273-2.8-3.843,1.2-5.806.235-2.255-3.837-3.308-4.683-3.912-.5-5.27-2.189-.4-4.418-1.006-5.645-3.36-2.181-3.866-4.34S20.03,31.721,20.03,30.2,18,26.577,18.505,24.422s3.267-3.119,3.866-4.34-.352-3.953,1.006-5.645,4.226-1.351,5.27-2.189,1.344-3.719,3.308-4.682,4.42.559,5.806.234,3-2.8,5.273-2.8ZM53.142,17.9a1.027,1.027,0,1,1,1.3-1.586,17.959,17.959,0,1,1-4.373-2.657,1.028,1.028,0,1,1-.8,1.892A15.924,15.924,0,1,0,53.142,17.9Zm-8,9.568a1.023,1.023,0,0,0,.806.584v0l4.918.618-3.618,3.394a1.028,1.028,0,0,0-.306.942h0l.932,4.872-4.346-2.393a1.028,1.028,0,0,0-1,.006l-4.337,2.387.932-4.872a1.025,1.025,0,0,0-.336-.97L35.2,28.669l4.918-.618a1.029,1.029,0,0,0,.841-.665l2.075-4.415,2.11,4.492Zm-1.181-7.341,2.8,5.955,6.532.821a1.03,1.03,0,0,1,.533,1.816l-4.756,4.46,1.238,6.467A1.03,1.03,0,0,1,48.8,40.736L43.034,37.56l-5.769,3.176a1.03,1.03,0,0,1-1.506-1.095L37,33.174l-4.8-4.5a1.029,1.029,0,0,1,.58-1.769v0l6.532-.821,2.8-5.955a1.027,1.027,0,0,1,1.859,0Zm25.465,72.39L88.02,73.92l-4.646-4.646a3.4,3.4,0,0,0-4.79,0L64.817,83.041a1.02,1.02,0,0,1-.418.493,3.408,3.408,0,0,0,.383,4.333l4.646,4.645ZM64.006,80.938a7.829,7.829,0,0,0-6.792-3.131v0H34.3c-7.15-.606-11.808-7.1-17.679-15.294-1.175-1.64-2.4-3.345-3.713-5.1h0c-1.661-2.267-1.917-3.849-.1-5.671a3.944,3.944,0,0,1,5.558,0L29.221,62.586a6,6,0,0,0,5.822,7.4H46.865a1.031,1.031,0,0,0,0-2.061H35.043a3.931,3.931,0,0,1,0-7.861H53.678a1.03,1.03,0,0,0,.348-.06q8.521-2.176,14.3.012a15.953,15.953,0,0,1,8.532,8.069L64.006,80.938Zm26.2-6.29L70.156,94.7a1.031,1.031,0,0,1-1.457,0l-5.374-5.374a5.466,5.466,0,0,1-.725-6.807c-1.266-1.975-3.037-2.654-5.386-2.657v0H34.261a.714.714,0,0,1-.08,0c-8.133-.661-13.043-7.512-19.236-16.152-1.177-1.641-2.4-3.349-3.688-5.072h0c-2.281-3.034-2.458-5.8.1-8.358a6.006,6.006,0,0,1,8.473,0l10.3,10.3a5.992,5.992,0,0,1,4.914-2.573H53.567q9.123-2.32,15.48.089a17.8,17.8,0,0,1,9.458,8.72,5.467,5.467,0,0,1,6.327,1l5.374,5.374A1.031,1.031,0,0,1,90.206,74.648Z"
/>
</svg>
</div>
<div class="infobox-content">
<h5 class="infobox-title">
<a href="#">Fast Internet</a>
</h5>
<p>
High-speed internet is available to ensure you stay
connected and work without interruptions.
</p>
</div>
</div>
<div class="infobox-wrapper text-center">
<div class="infobox-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Layer 1"
viewBox="0 0 100 100"
x="0px"
y="0px"
>
<defs>
<style>
.cls-1 {
fill-rule: evenodd;
}
</style>
<linearGradient id="mygradient4" class="mygradient">
<stop offset="0" class="start-color" />
<stop offset="1" class="end-color" />
</linearGradient>
</defs>
<path
d="M86.592,13.31H26.279a7.417,7.417,0,0,0-7.408,7.408V42.455h-1.42a1.089,1.089,0,0,0-1.078.934L15.9,46.67a16.019,16.019,0,0,0-3.321,1.444L10.048,46.22a1.09,1.09,0,0,0-1.424.1L4.507,50.439a1.09,1.09,0,0,0-.1,1.424l1.986,2.655a16.045,16.045,0,0,0-1.328,3.368l-3.129.451A1.09,1.09,0,0,0,1,59.416v5.822a1.09,1.09,0,0,0,.934,1.079l3.281.473a15.988,15.988,0,0,0,1.444,3.32L4.766,72.642a1.089,1.089,0,0,0,.1,1.423l4.117,4.118a1.09,1.09,0,0,0,1.423.1L13.064,76.3a15.9,15.9,0,0,0,3.368,1.328l.451,3.129a1.089,1.089,0,0,0,1.078.935h5.823a1.091,1.091,0,0,0,1.079-.935l.472-3.281a16.019,16.019,0,0,0,3.321-1.444l2.531,1.894a1.09,1.09,0,0,0,1.424-.1l4.117-4.117a1.09,1.09,0,0,0,.1-1.424l-1.086-1.452H86.592A7.416,7.416,0,0,0,94,63.421v-42.7A7.417,7.417,0,0,0,86.592,13.31ZM26.279,15.49H86.592a5.234,5.234,0,0,1,5.228,5.228v3.806H59.942a1.09,1.09,0,0,0-.707.26L56.281,27.3H21.051V20.718A5.235,5.235,0,0,1,26.279,15.49Zm5.458,60.123-2.365-1.77A1.09,1.09,0,0,0,28.13,73.8a13.834,13.834,0,0,1-4.043,1.763,1.09,1.09,0,0,0-.808.9L22.84,79.51H18.905l-.421-2.924a1.09,1.09,0,0,0-.846-.909,13.821,13.821,0,0,1-4.1-1.614,1.092,1.092,0,0,0-1.208.065L9.859,75.974,7.076,73.192l1.77-2.366a1.092,1.092,0,0,0,.045-1.242,13.834,13.834,0,0,1-1.763-4.043,1.09,1.09,0,0,0-.9-.807l-3.048-.44V60.36L6.1,59.938a1.089,1.089,0,0,0,.91-.846,13.815,13.815,0,0,1,1.614-4.1,1.09,1.09,0,0,0-.066-1.208L6.716,51.313,9.5,48.531l2.366,1.77a1.089,1.089,0,0,0,1.241.044,13.845,13.845,0,0,1,4.043-1.763,1.09,1.09,0,0,0,.808-.9l.439-3.048H22.33l.421,2.924a1.09,1.09,0,0,0,.846.909,13.821,13.821,0,0,1,4.1,1.614,1.09,1.09,0,0,0,1.208-.065l2.467-1.846,2.783,2.782-1.77,2.366a1.092,1.092,0,0,0-.045,1.242A13.834,13.834,0,0,1,34.107,58.6a1.09,1.09,0,0,0,.9.807l3.048.44v3.934l-2.923.422a1.087,1.087,0,0,0-.909.846,13.845,13.845,0,0,1-1.615,4.1,1.09,1.09,0,0,0,.066,1.208l1.845,2.467Zm54.855-6.964H35.32a16.036,16.036,0,0,0,.852-2.391l3.129-.451a1.09,1.09,0,0,0,.934-1.079V58.906a1.09,1.09,0,0,0-.934-1.079l-3.281-.473a15.988,15.988,0,0,0-1.444-3.32L36.469,51.5a1.088,1.088,0,0,0-.1-1.423L32.25,45.961a1.09,1.09,0,0,0-1.423-.1l-2.656,1.987A15.948,15.948,0,0,0,24.8,46.518l-.451-3.129a1.089,1.089,0,0,0-1.078-.934H21.051V29.484H56.682a1.093,1.093,0,0,0,.708-.261l2.954-2.52H91.82V63.421A5.234,5.234,0,0,1,86.592,68.649ZM67.374,23.26a3.253,3.253,0,1,0-3.253-3.253A3.257,3.257,0,0,0,67.374,23.26Zm0-4.326A1.073,1.073,0,1,1,66.3,20.007,1.074,1.074,0,0,1,67.374,18.934Zm7.977,4.326A3.253,3.253,0,1,0,72.1,20.007,3.256,3.256,0,0,0,75.351,23.26Zm0-4.326a1.073,1.073,0,1,1-1.073,1.073A1.075,1.075,0,0,1,75.351,18.934Zm7.978,4.326a3.253,3.253,0,1,0-3.253-3.253A3.256,3.256,0,0,0,83.329,23.26Zm0-4.326a1.073,1.073,0,1,1-1.073,1.073A1.074,1.074,0,0,1,83.329,18.934ZM27.6,23.567a1.09,1.09,0,0,1,1.089-1.089h6.052a1.09,1.09,0,1,1,0,2.179H28.689A1.09,1.09,0,0,1,27.6,23.567Zm0-4.341a1.09,1.09,0,0,1,1.089-1.089h6.052a1.09,1.09,0,1,1,0,2.179H28.689A1.09,1.09,0,0,1,27.6,19.226ZM62.18,37.258,52.719,61.293a1.09,1.09,0,1,1-2.028-.8l9.461-24.035a1.09,1.09,0,1,1,2.028.8ZM49.47,43.145,41.8,48.876l7.675,5.731a1.09,1.09,0,1,1-1.3,1.746l-8.844-6.6a1.089,1.089,0,0,1,0-1.746l8.844-6.6a1.09,1.09,0,0,1,1.3,1.746Zm24.518,5.731a1.09,1.09,0,0,1-.438.873l-8.844,6.6a1.09,1.09,0,1,1-1.3-1.746l7.675-5.731L63.4,43.145a1.09,1.09,0,1,1,1.3-1.746L73.55,48A1.091,1.091,0,0,1,73.988,48.876Zm-53.37,5.18a8.016,8.016,0,1,0,8.016,8.016A8.025,8.025,0,0,0,20.618,54.056Zm0,13.853a5.837,5.837,0,1,1,5.836-5.837A5.844,5.844,0,0,1,20.618,67.909Z"
/>
</svg>
</div>
<div class="infobox-content">
<h5 class="infobox-title">
<a href="#">Computers Available</a>
</h5>
<p>
Access fully equipped workstations with modern
computers to make your creative process seamless.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=================================
Marquee -->
<section class="space-p">
<div class="container-fluid g-0">
<div class="row g-0">
<div class="col-lg-12">
<div class="image-gradient">
<div class="marquee-bg-img">
<img
class="img-fluid"
src="images/workspaces/Conference/IMG_0533.JPG"
alt=""
/>
</div>
<div
class="marquee-wrapper bg-primary-gradient marquee-left"
>
<div class="marquee-inner">
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Coworking Office Space</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Private Office Space</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Fast Internet</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Computers Available</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title"
>Bluetooth Headsets Available</span
>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Conference Rooms</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Printers</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Kitchen Facilities</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Meeting Rooms</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Networking Events</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">24/7 Access</span>
</div>
<div class="marquee-item">
<span class="icon">❈</span
><span class="title">Support Staff</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=================================
About Section -->
<section id="services" class="space-ptb bg-dark">
<div class="container">
<div class="row align-items-center">
<div
class="col-xl-5 mb-lg-5 text-center text-xl-start mb-5 mb-xl-0"
>
<div class="image-with-price">
<div class="price-box">
<h5 class="symbol">From</h5>
<div class="price-valid">
<h5 class="price">CFA60,000</h5>
<h6 class="valid">per</h6>
</div>
<h6 class="month">month!</h6>
</div>
<img
class="img-fluid radius-15"
src="/images/workspaces/Coworking/IMG_8053 2_compressed.jpg"
alt="About Image"
/>
</div>
</div>
<div class="col-xl-7 ps-xl-5 pe-lg-5">
<div class="section-title pe-xxl-5 me-xxl-5">
<h2 class="title">Creating spaces that inspire</h2>
</div>
<div class="ps-xxl-5 ms-0 ms-md-5">
<div class="row">
<div class="col-lg-10 mb-3">
<p class="text-white">
Unlocking your potential in the professional world
involves several essential components. While opinions
may vary on how many key areas contribute to success,
it's evident that the right office space rental can
provide you with vital resources, including:
</p>
</div>
</div>
<div class="row align-items-center">
<div class="col-md-9">
<div class="list-wrapper list-light">
<ul class="list col-2">
<li>
<i class="fa-regular fa-snowflake"></i>Co-Working
Office Space
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Private
Office Space
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Fast
Internet Access
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Available
Computers
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Conference
Rooms
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Kitchen and
Break Areas
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Bluetooth
Noise Cancelling Headsets Available
</li>
<li>
<i class="fa-regular fa-snowflake"></i>Printing
Services
</li>
</ul>
</div>
</div>
<div class="col-md-3 mt-5 mt-md-0">
<a class="btn btn-effect" href="#contact">
<span>Contact Us</span>
</a>
</div>
</div>
</div>
<!-- <div class="row mt-5">
<div class="col-lg-4 col-sm-4 mt-4">
<div class="counter counter-light">
<div class="counter-number">
<span