-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2092 lines (2033 loc) · 115 KB
/
index.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
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
<html
class="js sizes customelements history pointerevents postmessage webgl websockets cssanimations csscolumns csscolumns-width csscolumns-span csscolumns-fill csscolumns-gap csscolumns-rule csscolumns-rulecolor csscolumns-rulestyle csscolumns-rulewidth csscolumns-breakbefore csscolumns-breakafter csscolumns-breakinside flexbox picture srcset webworkers"
lang="en">
<head>
<meta charset="utf-8">
<title>Eklavya Coaching Classes</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="shortcut icon" href="assets/logo/title_logo - Copy.jpeg" type="image/png"> -->
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/assets/favicon/manifest.json">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/assets/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/swiper.min.css">
<link rel="stylesheet" href="css/lineicons.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/meetteam.css">
<link rel="stylesheet" href="css/style.css">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<div class="preloader" style="display: none;">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<header class="header-area">
<div class="navbar-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img src="assets/logo/title_logo - Copy.jpeg" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="collapse navbar-collapse sub-menu-bar" id="navbarSupportedContent">
<ul id="nav" class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="page-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#why">Course</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#features">Materials</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#team">Our Team</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#pricing">Gallery</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#download">Events</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
<div id="home" class="header-hero bg_cover d-lg-flex align-items-center">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
<div class="container">
<div class="row align-items-center justify-content-center justify-content-lg-between">
<div class="col-lg-6 col-md-10">
<div class="header-hero-content">
<h3 class="header-title wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="0.2s"
style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: fadeInLeftBig;">
<span>Great Students</span> With Great Future.</h3>
<h4 class="wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: fadeInLeftBig;border-bottom: 2px solid;
width: max-content;
margin-top: 30px;">Vision</h4>
<p class="text wow fadeInLeftBig writing-animation" style="color: #61088e;
font-weight: 600; margin-top: 10px;" data-wow-duration="1.3s" data-wow-delay="0.6s">
To be a respected educational academy in India through the power of nurturing.</p>
<h4 class="wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: fadeInLeftBig;border-bottom: 2px solid;
width: max-content;
margin-top: 30px;">Mision</h4>
<ul class="msn-vsn-ul">
<li class="text wow fadeInLeftBig writing-animation" data-wow-duration="1.3s" data-wow-delay="0.6s">To
improve students’ result by analysing their learning styles</li>
<li class="text wow fadeInLeftBig writing-animation" data-wow-duration="1.3s" data-wow-delay="0.6s">To
make them better learners and users of English</li>
<li class="text wow fadeInLeftBig writing-animation" data-wow-duration="1.3s" data-wow-delay="0.6s">To
develop their soft skills</li>
<li class="text wow fadeInLeftBig writing-animation" data-wow-duration="1.3s" data-wow-delay="0.6s">To
help them set and achieve their goals</li>
</ul>
<!-- <ul class="d-flex">
<li><a href="#" class="main-btn wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="0.8s"
style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.8s; animation-name: fadeInLeftBig;">Download
Now</a></li>
<li><a href="https://www.youtube.com/watch?v=r44RKWyfcFw"
class="header-video video-popup wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="1.2s"
style="visibility: visible; animation-duration: 1.3s; animation-delay: 1.2s; animation-name: fadeInLeftBig;"><i
class="lni lni-play"></i></a></li>
</ul> -->
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 col-sm-6 col-10">
<div class="header-image">
<img src="assets/images/header-app.png" alt="app" class="image wow fadeInRightBig"
data-wow-duration="1.3s" data-wow-delay="0.5s"
style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.5s; animation-name: fadeInRightBig;">
<div class="image-shape wow fadeInRightBig" data-wow-duration="1.3s" data-wow-delay="0.8s"
style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.8s; animation-name: fadeInRightBig;">
</div>
</div>
</div> -->
</div>
</div>
<div class="header-shape-1 d-none d-md-block"></div>
<div class="header-shape-2">
<img src="assets/images/header-shape-2.svg" alt="shape">
</div>
</div>
</header>
<section id="why" class="services-area pt-110 pb-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center pb-25">
<h3 class="title">Our Courses</h3>
<p class="text">We provide coaching in Gujarati medium and english medium with NCERT pattern in CBSE and
GSEB board. Also we enable english learners with our special courses of spoken english.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-6 my-3">
<div
class="card custom-card bg-blue-purple-gradient single-services services-color-1 text-center mt-30 wow fadeInUpBig"
data-wow-duration="1.3s" data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<!-- <div class="services-icon d-flex align-items-center justify-content-center">
<i class="lni lni-layers"></i>
</div> -->
<div class="card-content">
<div class="text-center text-uppercase">
<h5 class="card-title">Grade 1 to 12</h5>
<h6 class="card-text">Gujarati Medium</h6>
</div>
<p class="card-text">Focus on Conceptual learning with personalised learning programs
</p>
<ul class="card-list">
<li>
સતત માનસિક શક્તિ ખીલવવા માટે વિડિઓ લેક્ચર દ્વારા માર્ગદર્શન
</li>
<li>
સાપ્તાહિક કસોટી અને મોડેલ TEST દ્વારા વિદ્યાર્થીઓના રિઝલ્ટ ઉપર સતત ધ્યાન
</li>
<li>
ધીમું શીખનારાઓ માટે ખાસ તકનીકો
</li>
<li>
વિદ્યાર્થીઓની માતા-પિતા સાથે સતત સંપર્ક
</li>
<li>
આનંદ અને પરિણામમાં વધારો એજ અમારી પ્રબળ માન્યતા
</li>
<li>
360 ડિગ્રી growth માટે વિદ્યાર્થીઓ અને વાલીઓનું Special Counselling
</li>
</ul>
<a href="#" class="btn btn-slate-blue-gradient card-btn">Get Started <svg
xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<path fill="#FFF" fill-rule="evenodd"
d="M8.933.419C8.595.017 8.008-.124 7.54.12a1.082 1.082 0 0 0-.347 1.666l3.09 3.672c.151.179.022.448-.215.448H1.164c-.583 0-1.103.417-1.159.985-.063.652.458 1.2 1.11 1.2h8.952c.237 0 .366.27.216.448l-3.056 3.632c-.395.469-.367 1.18.108 1.571.21.173.464.257.718.257.322 0 .641-.136.862-.398l4.733-5.624c.47-.558.47-1.4 0-1.957L8.933.419z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 my-3">
<div
class="card custom-card bg-orange-yellow-gradient single-services services-color-1 text-center mt-30 wow fadeInUpBig"
data-wow-duration="1.3s" data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<!-- <div class="services-icon d-flex align-items-center justify-content-center">
<i class="lni lni-layers"></i>
</div> -->
<div class="card-content">
<div class="text-center text-uppercase">
<h5 class="card-title">Grade 1 to 12</h5>
<h6 class="card-text">English Medium</h6>
</div>
<p class="card-text">Focus on Conceptual learning with personalised learning programs
</p>
<ul class="card-list">
<li>
By Engaging Video Lectures Increasing catching Capacity
</li>
<li>
Continuous Track of students growth by Weekly Test and Model test
</li>
<li>
Special techniques for slow learners
</li>
<li>
Continuous Contact With Parents for growth of students
</li>
<li>Strong belief of Happiness and Increment in Result</li>
<li>Special Counselling of students and Parents for 360 Degree Growth.</li>
</ul>
<a href="#" class="btn btn-slate-blue-gradient card-btn">Get Started <svg
xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<path fill="#FFF" fill-rule="evenodd"
d="M8.933.419C8.595.017 8.008-.124 7.54.12a1.082 1.082 0 0 0-.347 1.666l3.09 3.672c.151.179.022.448-.215.448H1.164c-.583 0-1.103.417-1.159.985-.063.652.458 1.2 1.11 1.2h8.952c.237 0 .366.27.216.448l-3.056 3.632c-.395.469-.367 1.18.108 1.571.21.173.464.257.718.257.322 0 .641-.136.862-.398l4.733-5.624c.47-.558.47-1.4 0-1.957L8.933.419z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 my-3">
<div
class="card custom-card bg-light-blue-gradient single-services services-color-1 text-center mt-30 wow fadeInUpBig"
data-wow-duration="1.3s" data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<!-- <div class="services-icon d-flex align-items-center justify-content-center">
<i class="lni lni-layers"></i>
</div> -->
<div class="card-content">
<div class="text-center text-uppercase">
<h5 class="card-title">Spoken English</h5>
<!-- <h6 class="card-text">Gujarati Medium</h6> -->
</div>
<p class="card-text">Focus on Conceptual learning with personalised learning programs
</p>
<ul class="card-list">
<li>
Unique method of teaching tenses
</li>
<li>
Special Speaking practice sessions
</li>
<li>
More than 1000 satisfied student
</li>
<li>
More than 20 students flew to abroad
</li>
<li>Special Batches for group of Housewives </li>
<li>Special Corporate English Batches for Businessmen</li>
</ul>
<a href="#" class="btn btn-slate-blue-gradient card-btn">Get Started <svg
xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<path fill="#FFF" fill-rule="evenodd"
d="M8.933.419C8.595.017 8.008-.124 7.54.12a1.082 1.082 0 0 0-.347 1.666l3.09 3.672c.151.179.022.448-.215.448H1.164c-.583 0-1.103.417-1.159.985-.063.652.458 1.2 1.11 1.2h8.952c.237 0 .366.27.216.448l-3.056 3.632c-.395.469-.367 1.18.108 1.571.21.173.464.257.718.257.322 0 .641-.136.862-.398l4.733-5.624c.47-.558.47-1.4 0-1.957L8.933.419z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 my-3">
<div
class="card custom-card bg-blue-purple-gradient single-services services-color-1 text-center mt-30 wow fadeInUpBig"
data-wow-duration="1.3s" data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<!-- <div class="services-icon d-flex align-items-center justify-content-center">
<i class="lni lni-layers"></i>
</div> -->
<div class="card-content">
<div class="text-center text-uppercase">
<h5 class="card-title">Self Development</h5>
<!-- <h6 class="card-text">Gujarati Medium</h6> -->
</div>
<p class="card-text">Focus on Conceptual learning with personalised learning programs
</p>
<ul class="card-list">
<li>
Mastery of concepts through personalized learning journeys
</li>
<li>
Engaging video lessons from India's best teachers
</li>
<li>
Application and simulation games to guide experiential learning
</li>
<li>
Programs tailored to every student learning speed and need
</li>
</ul>
<a href="https://chetanpatel.world/" target="_blank" class="btn btn-slate-blue-gradient card-btn">Get
Started <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<path fill="#FFF" fill-rule="evenodd"
d="M8.933.419C8.595.017 8.008-.124 7.54.12a1.082 1.082 0 0 0-.347 1.666l3.09 3.672c.151.179.022.448-.215.448H1.164c-.583 0-1.103.417-1.159.985-.063.652.458 1.2 1.11 1.2h8.952c.237 0 .366.27.216.448l-3.056 3.632c-.395.469-.367 1.18.108 1.571.21.173.464.257.718.257.322 0 .641-.136.862-.398l4.733-5.624c.47-.558.47-1.4 0-1.957L8.933.419z">
</path>
</svg></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="why" class="services-area pb-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<div class="section-title text-center pb-25">
<h3 class="title">Why You Should Join Eklavya</h3>
<p class="text">Alii nusquam cu duo, vim eu consulatu percipitur, meis dolor comprehensam at vis. Vel ut
percipitur dignissim signiferumque.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-6">
<div class="single-services services-color-1 text-center mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<div class="services-icon d-flex align-items-center justify-content-center">
<!-- <i class="lni lni-layers"></i> -->
<svg id="Capa_1" enable-background="new 0 0 512 512" height="60" viewBox="0 0 512 512" width="512"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<linearGradient id="SVGID_1_" gradientTransform="matrix(0 -1 1 0 3192 -1616)"
gradientUnits="userSpaceOnUse" x1="-1612.383" x2="-2096.841" y1="-2279.739" y2="-3634.137">
<stop offset=".2202" stop-color="#e2ccff" />
<stop offset="1" stop-color="#fff" stop-opacity="0" />
</linearGradient>
<g>
<g>
<path
d="m180.252.001c-100.63.534-151.151 173.599-170.006 262.559-18.855 88.961.847 271.458 147.096 247.249 23.64-3.913 29.158-4.715 48.645-14.497 34.685-17.411 75.734-29.661 112.83-33.359 15.211-1.516 34.445-6.538 44.624-8.368 81.626-14.679 164.928-93.76 139.709-176.622-18.939-62.228-74.428-87.278-129.998-83.834-30.518 1.891-62.997-16.011-69.51-35.788-21.214-64.417-45.612-157.752-123.39-157.34z"
fill="url(#SVGID_1_)" />
</g>
<g>
<g>
<path
d="m180.224 42.179h-3v-3c0-2.762-2.239-5-5-5s-5 2.238-5 5v3h-3c-2.761 0-5 2.238-5 5s2.239 5 5 5h3v3c0 2.762 2.239 5 5 5s5-2.238 5-5v-3h3c2.761 0 5-2.238 5-5s-2.239-5-5-5z"
fill="#c182f9" />
<path
d="m214.057 68.193h-3v-3c0-2.762-2.239-5-5-5s-5 2.238-5 5v3h-3c-2.761 0-5 2.238-5 5s2.239 5 5 5h3v3c0 2.762 2.239 5 5 5s5-2.238 5-5v-3h3c2.761 0 5-2.238 5-5s-2.239-5-5-5z"
fill="#fdd250" />
<path
d="m225.51 461h-3v-3c0-2.762-2.239-5-5-5s-5 2.238-5 5v3h-3c-2.761 0-5 2.238-5 5s2.239 5 5 5h3v3c0 2.762 2.239 5 5 5s5-2.238 5-5v-3h3c2.761 0 5-2.238 5-5s-2.239-5-5-5z"
fill="#fdd250" />
<path
d="m149.724 457.656c-1.28 0-2.559-.488-3.536-1.465l-4.464-4.464-4.464 4.464c-1.953 1.953-5.118 1.953-7.071 0-1.953-1.952-1.953-5.118 0-7.07l8-8c1.953-1.953 5.118-1.953 7.071 0l8 8c1.953 1.952 1.953 5.118 0 7.07-.977.977-2.256 1.465-3.536 1.465z"
fill="#ffa052" />
<path
d="m388.754 85.191c-1.28 0-2.559-.488-3.536-1.465l-4.464-4.464-4.464 4.464c-1.953 1.953-5.118 1.953-7.071 0-1.953-1.952-1.953-5.118 0-7.07l8-8c1.953-1.953 5.118-1.953 7.071 0l8 8c1.953 1.952 1.953 5.118 0 7.07-.977.977-2.256 1.465-3.536 1.465z"
fill="#ffa052" />
<g>
<path
d="m481.99 391.95v25.21c0 5.52-4.47 10-10 10h-431.98c-5.53 0-10-4.48-10-10v-25.21c0-5.52 4.47-10 10-10h136.005c1.451 0 2.831.63 3.78 1.728l12.875 14.872h126.66l12.875-14.872c.95-1.097 2.329-1.728 3.78-1.728h136.005c5.53 0 10 4.48 10 10z"
fill="#590bb2" opacity=".1" />
<path
d="m452.044 378.634h-392.088v-249.734c0-9.505 7.705-17.21 17.21-17.21h357.669c9.505 0 17.21 7.705 17.21 17.21v249.734z"
fill="#c182f9" />
<path
d="m481.99 364.95v25.21c0 5.52-4.47 10-10 10h-431.98c-5.53 0-10-4.48-10-10v-25.21c0-5.52 4.47-10 10-10h136.005c1.451 0 2.831.63 3.78 1.728l12.875 14.872h126.66l12.875-14.872c.95-1.097 2.329-1.728 3.78-1.728h136.005c5.53 0 10 4.48 10 10z"
fill="#e2ccff" />
<g fill="#590bb2">
<path
d="m59.956 181.366c2.761 0 5-2.238 5-5v-47.467c0-6.732 5.477-12.21 12.209-12.21h357.669c6.732 0 12.209 5.478 12.209 12.21v47.467c0 2.762 2.239 5 5 5s5-2.238 5-5v-47.467c0-12.247-9.963-22.21-22.209-22.21h-357.668c-12.247 0-22.209 9.963-22.209 22.21v47.467c-.001 2.762 2.238 5 4.999 5z" />
<path
d="m471.99 349.95h-14.946v-142.983c0-2.762-2.239-5-5-5s-5 2.238-5 5v142.983h-111.059c-2.905 0-5.661 1.26-7.561 3.455l-11.379 13.145h-122.09l-11.378-13.144c-1.9-2.196-4.656-3.456-7.562-3.456h-111.059v-142.983c0-2.762-2.239-5-5-5s-5 2.238-5 5v142.983h-14.946c-8.271 0-15 6.729-15 15v25.21c0 8.271 6.729 15 15 15h431.98c8.271 0 15-6.729 15-15v-25.21c0-8.271-6.729-15-15-15zm5 40.21c0 2.757-2.243 5-5 5h-431.98c-2.757 0-5-2.243-5-5v-25.21c0-2.757 2.243-5 5-5h136.005l12.875 14.872c.95 1.097 2.329 1.728 3.78 1.728h126.66c1.451 0 2.831-.631 3.78-1.728l12.875-14.872h136.005c2.757 0 5 2.243 5 5z" />
</g>
<path
d="m423.828 330.976h-335.656c-2.761 0-5-2.239-5-5v-184.432c0-2.761 2.239-5 5-5h335.656c2.761 0 5 2.239 5 5v184.432c0 2.761-2.238 5-5 5z"
fill="#fff" />
</g>
<path
d="m250.369 248.776c-2.042 0-3.905-1.25-4.658-3.189l-13.928-35.853h-14.273c-2.761 0-5-2.238-5-5s2.239-5 5-5h17.695c2.063 0 3.914 1.267 4.661 3.189l8.233 21.192 8.871-62.815c.348-2.467 2.459-4.301 4.951-4.301h132.963c2.761 0 5 2.238 5 5s-2.239 5-5 5h-128.62l-10.941 77.476c-.318 2.253-2.117 4.007-4.376 4.268-.194.023-.387.033-.578.033z"
fill="#ffa052" />
<g>
<g fill="#ffa052">
<path
d="m205.391 281.784c-2.761 0-5-2.238-5-5v-19.333c0-2.762 2.239-5 5-5s5 2.238 5 5v19.333c0 2.762-2.239 5-5 5z" />
<path
d="m215.057 272.118h-19.333c-2.761 0-5-2.238-5-5s2.239-5 5-5h19.333c2.761 0 5 2.238 5 5s-2.239 5-5 5z" />
<path
d="m175.224 272.118h-67c-2.761 0-5-2.238-5-5s2.239-5 5-5h67c2.761 0 5 2.238 5 5s-2.239 5-5 5z" />
</g>
<g>
<g fill="#cca1ff">
<path
d="m128 196.989h-5.332c-6.508 0-11.803-5.295-11.803-11.803v-16.457c0-6.508 5.295-11.803 11.803-11.803h5.332c6.508 0 11.803 5.295 11.803 11.803v16.457c0 6.508-5.295 11.803-11.803 11.803zm-5.332-30.062c-.994 0-1.803.809-1.803 1.803v16.457c0 .994.809 1.803 1.803 1.803h5.332c.994 0 1.803-.809 1.803-1.803v-16.457c0-.994-.809-1.803-1.803-1.803z" />
<g>
<path
d="m160.715 181.958h-9.395c-2.761 0-5-2.238-5-5s2.239-5 5-5h9.395c1.387 0 2.516-1.129 2.516-2.516s-1.128-2.516-2.516-2.516h-9.395c-2.761 0-5-2.238-5-5s2.239-5 5-5h9.395c6.901 0 12.516 5.614 12.516 12.516s-5.615 12.516-12.516 12.516z" />
<path
d="m160.715 196.989h-9.395c-2.761 0-5-2.238-5-5s2.239-5 5-5h9.395c1.387 0 2.516-1.129 2.516-2.516s-1.128-2.516-2.516-2.516h-9.395c-2.761 0-5-2.238-5-5s2.239-5 5-5h9.395c6.901 0 12.516 5.614 12.516 12.516s-5.615 12.516-12.516 12.516z" />
</g>
</g>
<g>
<path
d="m129.497 250.082h-5.332c-6.508 0-11.802-5.295-11.802-11.803v-16.457c0-6.508 5.294-11.803 11.802-11.803h5.332c6.508 0 11.803 5.295 11.803 11.803v16.457c0 6.508-5.295 11.803-11.803 11.803zm-5.331-30.062c-.994 0-1.802.809-1.802 1.803v16.457c0 .994.809 1.803 1.802 1.803h5.332c.994 0 1.803-.809 1.803-1.803v-16.457c0-.994-.809-1.803-1.803-1.803z"
fill="#cca1ff" />
</g>
<g fill="#cca1ff">
<path
d="m166.599 232.955h-14.025c-2.761 0-5-2.238-5-5v-12.935c0-2.762 2.239-5 5-5s5 2.238 5 5v7.936h9.025c2.761 0 5 2.238 5 5s-2.239 4.999-5 4.999z" />
<path
d="m168.196 249.466c-2.761 0-5-2.238-5-5v-29.446c0-2.762 2.239-5 5-5s5 2.238 5 5v29.446c0 2.762-2.238 5-5 5z" />
</g>
</g>
</g>
<g fill="#cca1ff">
<path
d="m324.786 222.919c-2.761 0-5-2.238-5-5v-25.062h-.444c-2.761 0-5-2.238-5-5s2.239-5 5-5h5.444c2.761 0 5 2.238 5 5v30.062c0 2.762-2.239 5-5 5z" />
<path
d="m305.715 222.699h-18.108c-2.122 0-4.012-1.34-4.716-3.341-.705-2.001-.068-4.229 1.586-5.559 5.042-4.05 12.845-11.452 14.406-15.229.6-1.451.505-3.051-.247-4.176-.585-.875-1.455-1.318-2.586-1.318-1.898 0-3.442 1.544-3.442 3.442 0 2.762-2.239 5-5 5s-5-2.238-5-5c0-7.412 6.03-13.442 13.442-13.442 4.479 0 8.451 2.1 10.899 5.759 2.623 3.923 3.063 8.99 1.177 13.556-1.354 3.274-4.398 6.997-7.594 10.308h5.184c2.761 0 5 2.238 5 5s-2.24 5-5.001 5z" />
</g>
<g fill="#cca1ff">
<path
d="m346.669 214.724c-1.28 0-2.559-.488-3.536-1.465-1.953-1.952-1.953-5.118 0-7.07l13.67-13.671c1.953-1.953 5.118-1.953 7.071 0 1.953 1.952 1.953 5.118 0 7.07l-13.67 13.671c-.976.976-2.255 1.465-3.535 1.465z" />
<path
d="m360.339 214.724c-1.28 0-2.559-.488-3.536-1.465l-13.67-13.671c-1.953-1.952-1.953-5.118 0-7.07 1.954-1.953 5.119-1.952 7.071 0l13.67 13.671c1.953 1.952 1.953 5.118 0 7.07-.976.976-2.255 1.465-3.535 1.465z" />
</g>
<g>
<g>
<g>
<path
d="m305.979 290.657h-49.52c-2.762 0-5-2.239-5-5s2.238-5 5-5h49.52c2.762 0 5 2.239 5 5s-2.239 5-5 5z"
fill="#c182f9" />
</g>
<g>
<path
d="m332.979 308.16h-76.52c-2.762 0-5-2.239-5-5s2.238-5 5-5h76.52c2.762 0 5 2.239 5 5s-2.239 5-5 5z"
fill="#c182f9" />
</g>
</g>
<g fill="#c182f9">
<circle cx="258.006" cy="267.607" r="5" />
<circle cx="274.256" cy="267.607" r="5" />
</g>
</g>
<path d="m408.004 330.976h-54.5v-90.651c0-2.761 2.239-5 5-5h44.5c2.761 0 5 2.239 5 5z"
fill="#ffe783" />
</g>
<path d="m217.51 330.976h-112.01v-27.816c0-2.761 2.239-5 5-5h102.01c2.761 0 5 2.239 5 5z"
fill="#ffe783" />
</g>
</g>
</svg>
</div>
<div class="services-content">
<h4 class="services-title"><a href="#">Learn with Fun</a></h4>
<p class="text">Lorem ipsum dolor sitam etco snsetetur sadipscing elitr sed diam nonumy.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single-services services-color-2 text-center mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.4s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.4s; animation-name: none;">
<div class="services-icon d-flex align-items-center justify-content-center">
<!-- <i class="lni lni-layout"></i> -->
<svg height="60" viewBox="0 -89 452.00001 452" width="452pt" xmlns="http://www.w3.org/2000/svg">
<path
d="m446 116.292969v102.679687c-.007812 11.722656-9.203125 21.382813-20.910156 21.96875-.359375.019532-.71875.03125-1.089844.03125h-396c-12.148438-.003906-21.996094-9.851562-22-22v-102.679687c.003906-12.148438 9.851562-21.996094 22-22h213.398438c0 48.597656 39.402343 88 88 88 48.601562 0 88-39.402344 88-88h6.601562c12.148438.003906 21.996094 9.851562 22 22zm-290.398438 95.339843v-88h-22v88zm-46.203124 0v-88h-22v88zm-46.199219 0v-88h-22v88zm0 0"
fill="#e48e66" />
<path
d="m425.101562 241.332031v26.398438h-99v-26.757813h97.898438c.371094 0 .730469-.011718 1.089844-.03125zm0 0"
fill="#e2d574" />
<path
d="m417.398438 93.929688v.363281c0 48.597656-39.398438 88-88 88-48.597657 0-88-39.402344-88-88v-.363281c0-48.597657 39.402343-88 88-88 48.601562 0 88 39.402343 88 88zm-33.007813.363281c.007813-.121094.007813-.242188.007813-.363281 0-30.375-24.621094-55-55-55-30.375 0-55 24.625-55 55 0 .121093 0 .242187.011718.363281.183594 30.238281 24.75 54.65625 54.988282 54.65625 30.242187 0 54.808593-24.417969 54.992187-54.65625zm0 0"
fill="#f8ec7d" />
<path
d="m384.398438 93.929688c0 .121093 0 .242187-.007813.363281-.183594 30.238281-24.75 54.65625-54.992187 54.65625-30.238282 0-54.804688-24.417969-54.988282-54.65625-.011718-.121094-.011718-.242188-.011718-.363281 0-30.375 24.625-55 55-55 30.378906 0 55 24.625 55 55zm0 0"
fill="#6fe3ff" />
<path d="m133.601562 123.632812h22v88h-22zm0 0" fill="#f8ec7d" />
<path d="m127 241.332031v26.398438h-99v-26.757813h99zm0 0" fill="#e2d574" />
<path d="m87.398438 123.632812h22v88h-22zm0 0" fill="#f8ec7d" />
<path d="m41.199219 123.632812h22v88h-22zm0 0" fill="#f8ec7d" />
<g fill="#63316d">
<path
d="m424 88.292969h-.773438c-3.019531-49.609375-44.128906-88.292969-93.824218-88.292969-49.699219 0-90.808594 38.683594-93.828125 88.292969h-207.574219c-15.457031.015625-27.9804688 12.542969-28 28v102.679687c.0195312 13.144532 9.164062 24.511719 22 27.34375v21.414063c0 3.316406 2.6875 6 6 6h99c3.3125 0 6-2.683594 6-6v-20.757813h187.101562v20.757813c0 3.316406 2.683594 6 6 6h99c3.3125 0 6-2.683594 6-6v-21.671875c12.320313-3.21875 20.910157-14.351563 20.898438-27.085938v-102.679687c-.019531-15.457031-12.542969-27.984375-28-28zm-176.601562 5.636719c0-45.285157 36.714843-82 82-82 45.289062 0 82 36.714843 82 82v.34375c.007812 45.289062-36.703126 82.003906-81.988282 82.007812-45.289062.007812-82.003906-36.703125-82.011718-81.988281zm-126.398438 167.800781h-87v-14.757813h87zm298.101562 0h-87v-14.757813h87zm20.898438-42.757813c.007812 8.539063-6.703125 15.578125-15.234375 15.976563-.253906.015625-.5.023437-.765625.023437h-396c-8.832031-.011718-15.988281-7.167968-16-16v-102.679687c.011719-8.832031 7.167969-15.992188 16-16h207.621094c3.347656 49.328125 44.335937 87.632812 93.78125 87.632812 49.441406 0 90.429687-38.304687 93.777344-87.632812h.820312c8.832031.007812 15.988281 7.167969 16 16zm0 0" />
<path
d="m329.398438 154.929688c33.4375-.078126 60.609374-27 60.992187-60.433594.007813-.1875.007813-.378906.007813-.566406 0-33.6875-27.308594-61-61-61-33.6875 0-61 27.3125-61 61 0 .183593 0 .367187.011718.550781.378906 33.4375 27.550782 60.371093 60.988282 60.449219zm-49.007813-61.125.007813.125c0-27.058594 21.941406-49 49-49 27.0625 0 49 21.941406 49 49-.003907.109374-.007813.214843-.007813.320312-.171875 26.933594-22.054687 48.675781-48.992187 48.675781-26.933594 0-48.816407-21.742187-48.988282-48.675781 0-.148438-.011718-.296875-.019531-.445312zm0 0" />
<path
d="m63.199219 117.632812h-22c-3.3125 0-6 2.683594-6 6v88c0 3.3125 2.6875 6 6 6h22c3.316406 0 6-2.6875 6-6v-88c0-3.316406-2.683594-6-6-6zm-6 88h-10v-76h10zm0 0" />
<path
d="m109.398438 117.632812h-22c-3.3125 0-6 2.683594-6 6v88c0 3.3125 2.6875 6 6 6h22c3.316406 0 6-2.6875 6-6v-88c0-3.316406-2.683594-6-6-6zm-6 88h-10v-76h10zm0 0" />
<path
d="m155.601562 117.632812h-22c-3.316406 0-6 2.683594-6 6v88c0 3.3125 2.683594 6 6 6h22c3.3125 0 6-2.6875 6-6v-88c0-3.316406-2.6875-6-6-6zm-6 88h-10v-76h10zm0 0" />
<path
d="m344.175781 73.125c3.066407 1.875 5.679688 4.398438 7.664063 7.394531 4.316406 6.492188 5.125 14.433594 2.40625 23.609375-.941406 3.175782.871094 6.515625 4.050781 7.457032 3.175781.941406 6.515625-.875 7.457031-4.050782 7.433594-25.101562-7.195312-40.421875-15.96875-45.019531-2.929687-1.546875-6.5625-.429687-8.109375 2.5-1.550781 2.929687-.429687 6.5625 2.5 8.109375zm0 0" />
</g>
</svg>
</div>
<div class="services-content">
<h4 class="services-title"><a href="#">Projector Lectures</a></h4>
<p class="text">Lorem ipsum dolor sitam etco snsetetur sadipscing elitr sed diam nonumy.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single-services services-color-3 text-center mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.6s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.6s; animation-name: none;">
<div class="services-icon d-flex align-items-center justify-content-center">
<!-- <i class="lni lni-bolt"></i> -->
<svg height="60" viewBox="0 -80 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg">
<path
d="m40.160156 136.160156v8c0 8.808594-7.191406 16-16 16-8.871094 0-16-7.191406-16-16h-.082031v-8zm0 0"
fill="#ffce54" />
<path d="m136.078125 136.160156v8c0 8.808594-7.117187 16-16 16-8.796875 0-16-7.191406-16-16v-8zm0 0"
fill="#ffce54" />
<path d="m480 223.992188h24v24h-24zm0 0" fill="#965353" />
<path
d="m480 256v88h-176v-160c0-13.28125 10.71875-24 24-24v.078125h32v-.078125h48v.078125h48v-.078125c13.28125 0 24 10.71875 24 24zm0 0"
fill="#656d78" />
<path
d="m392 160c-30.960938 0-56-25.121094-56-56 0 0 16 32 56 32s56-32 56-32c0 30.878906-25.121094 56-56 56zm0 0"
fill="#eac6bb" />
<path
d="m424 16v24c13.28125 0 23.921875 10.71875 24 24v40s-16 32-56 32-56-32-56-32v-40c0-26.480469 21.441406-48 48-48zm0 0"
fill="#965353" />
<path
d="m448 104v-40c-.078125-13.28125-10.71875-24-24-24v-24h-16v24c0 8.832031 7.167969 16 16 16 4.464844 0 7.976562 3.550781 8 8.078125v58.402344c11.097656-8.738281 16-18.480469 16-18.480469zm0 0"
fill="#844747" />
<path
d="m272 78.960938c-13.761719-18-22.160156-21.199219-32-19.121094l16-32.488282c10 10.640626 16 24.960938 16 40.640626zm0 0"
fill="#f6bb42" />
<path
d="m256 27.359375-16 32.488281c-15.039062 3.191406-33.519531 18.632813-80 13.273438-2.558594-.320313-5.199219-.640625-8-1.121094v-4c0-33.121094 26.878906-60 60-60 17.441406 0 33.121094 7.441406 44 19.359375zm0 0"
fill="#ffce54" />
<path
d="m272 78.960938v17.039062c0 22.320312-13.039062 41.601562-32 50.558594-7.28125 3.519531-15.359375 5.441406-24 5.441406s-16.71875-1.921875-24-5.441406c-18.960938-8.957032-32-28.238282-32-50.558594v-22.878906c46.480469 5.359375 64.960938-10.082032 80-13.273438 9.839844-2.085937 18.238281 1.113282 32 19.113282zm0 0"
fill="#eac6bb" />
<path
d="m255.984375 62.832031v33.167969c0 22.320312-13.039063 41.601562-32 50.558594-4.976563 2.410156-10.34375 3.992187-15.992187 4.808594 2.617187.375 5.273437.632812 8.007812.632812 8.640625 0 16.71875-1.921875 24-5.441406 18.960938-8.957032 32-28.238282 32-50.558594v-17.039062c-6.230469-8.160157-11.34375-13.160157-16.015625-16.128907zm0 0"
fill="#d3b1a9" />
<path
d="m240 176v.078125l-8 7.921875-16-8-16 8-8-7.921875v-29.519531c7.28125 3.519531 15.359375 5.441406 24 5.441406s16.71875-1.921875 24-5.441406zm0 0"
fill="#f5f7fa" />
<path
d="m232 184 8-7.921875h16v-.078125c13.28125 0 24 10.71875 24 24v24h-128v-24c0-13.28125 10.71875-24 24-24v.078125h16l8 7.921875 16-8zm0 0"
fill="#e6e9ed" />
<path
d="m256 176v.078125h-15.230469c12.902344.425781 23.214844 10.90625 23.214844 23.921875v24h16.015625v-24c0-13.28125-10.71875-24-24-24zm0 0"
fill="#ccd1d9" />
<path d="m304 224v24h-296v-24zm0 0" fill="#965353" />
<path d="m304 280v64h-240v-56c4.398438 0 8-3.519531 8-8zm0 0" fill="#965353" />
<path d="m304 248v32h-232c0 4.480469-3.601562 8-8 8v56h-32v-96zm0 0" fill="#844747" />
<path
d="m432 122.480469v20.640625c9.878906-10.105469 16-23.898438 16-39.121094 0 0-4.902344 9.742188-16 18.480469zm0 0"
fill="#d3b1a9" />
<path
d="m160.03125 104c-4.421875 0-8-3.574219-8-8v-22.945312c0-4.421876 3.578125-8 8-8 4.425781 0 8 3.578124 8 8v22.945312c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m272.03125 104c-4.421875 0-8-3.574219-8-8v-28.007812c0-4.425782 3.578125-8 8-8 4.425781 0 8 3.574218 8 8v28.007812c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m272.03125 75.992188c-4.421875 0-8-3.578126-8-8 0-28.671876-23.335938-51.992188-52.015625-51.992188-28.664063 0-51.984375 23.320312-51.984375 51.992188 0 4.421874-3.574219 8-8 8-4.421875 0-8-3.578126-8-8 0-37.496094 30.503906-67.992188 67.984375-67.992188 37.503906 0 68.015625 30.503906 68.015625 67.992188 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m272.039062 86.960938c-2.40625 0-4.78125-1.082032-6.359374-3.136719-15.441407-20.167969-19.648438-18.511719-35.3125-12.304688-15.015626 5.960938-37.71875 14.960938-79.582032 8.335938-4.359375-.6875-7.34375-4.785157-6.648437-9.152344.679687-4.359375 4.785156-7.367187 9.152343-6.648437 37.527344 5.921874 56.992188-1.78125 71.191407-7.414063 19.296875-7.648437 32.214843-10.871094 53.902343 17.449219 2.6875 3.503906 2.023438 8.527344-1.488281 11.214844-1.445312 1.121093-3.160156 1.65625-4.855469 1.65625zm0 0" />
<path
d="m240.023438 67.808594c-1.175782 0-2.382813-.265625-3.519532-.824219-3.960937-1.945313-5.59375-6.746094-3.648437-10.703125l16-32.570312c1.945312-3.976563 6.710937-5.597657 10.710937-3.65625 3.960938 1.945312 5.59375 6.746093 3.648438 10.707031l-16 32.566406c-1.390625 2.839844-4.238282 4.480469-7.191406 4.480469zm0 0" />
<path
d="m152.039062 207.960938c-4.421874 0-8-3.578126-8-8 0-17.640626 14.351563-31.992188 32-31.992188 4.425782 0 8 3.574219 8 8 0 4.421875-3.574218 8-8 8-8.824218 0-16 7.167969-16 15.992188 0 4.421874-3.574218 8-8 8zm0 0" />
<path
d="m192.03125 184.015625h-15.992188c-4.421874 0-8-3.574219-8-8 0-4.421875 3.578126-8 8-8h15.992188c4.425781 0 8 3.578125 8 8 0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m152.039062 232c-4.421874 0-8-3.574219-8-8v-24.039062c0-4.425782 3.578126-8 8-8 4.425782 0 8 3.574218 8 8v24.039062c0 4.425781-3.574218 8-8 8zm0 0" />
<path
d="m280.023438 207.960938c-4.421876 0-8-3.578126-8-8 0-8.824219-7.175782-15.992188-16-15.992188-4.421876 0-8-3.578125-8-8 0-4.425781 3.578124-8 8-8 17.648437 0 32 14.351562 32 31.992188 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m256.023438 184.015625h-15.992188c-4.421875 0-8-3.574219-8-8 0-4.421875 3.578125-8 8-8h15.992188c4.425781 0 8 3.578125 8 8 0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m280.023438 232c-4.421876 0-8-3.574219-8-8v-24.039062c0-4.425782 3.578124-8 8-8 4.425781 0 8 3.574218 8 8v24.039062c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m192.03125 184.015625c-4.421875 0-8-3.574219-8-8v-29.472656c0-4.421875 3.578125-8 8-8 4.425781 0 8 3.578125 8 8v29.472656c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m240.03125 183.960938c-4.421875 0-8-3.578126-8-8v-29.417969c0-4.421875 3.578125-8 8-8 4.425781 0 8 3.578125 8 8v29.417969c0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m216.03125 159.9375c-35.289062 0-64-28.707031-64-63.976562 0-4.425782 3.578125-8 8-8 4.425781 0 8 3.574218 8 8 0 26.453124 21.527344 47.976562 48 47.976562s48-21.523438 48-47.976562c0-4.425782 3.578125-8 8-8 4.425781 0 8 3.574218 8 8 0 35.269531-28.710938 63.976562-64 63.976562zm0 0" />
<path
d="m200.039062 191.960938c-2.933593 0-5.757812-1.617188-7.167968-4.425782-1.976563-3.949218-.375-8.757812 3.578125-10.734375l16-8c3.949219-1.960937 8.757812-.375 10.734375 3.574219 1.976562 3.953125.375 8.761719-3.574219 10.738281l-16 8c-1.144531.574219-2.371094.847657-3.570313.847657zm0 0" />
<path
d="m232.03125 191.960938c-2.046875 0-4.09375-.785157-5.65625-2.34375-3.128906-3.128907-3.128906-8.183594 0-11.3125l8-8c3.128906-3.128907 8.183594-3.128907 11.3125 0 3.128906 3.128906 3.128906 8.183593 0 11.3125l-8 8c-1.558594 1.558593-3.609375 2.34375-5.65625 2.34375zm0 0" />
<path
d="m200.03125 191.960938c-2.046875 0-4.09375-.785157-5.65625-2.34375l-8-8c-3.128906-3.128907-3.128906-8.183594 0-11.3125 3.128906-3.128907 8.183594-3.128907 11.3125 0l8 8c3.128906 3.128906 3.128906 8.183593 0 11.3125-1.558594 1.558593-3.609375 2.34375-5.65625 2.34375zm0 0" />
<path
d="m232.023438 191.960938c-1.199219 0-2.421876-.273438-3.566407-.839844l-16-8c-3.953125-1.976563-5.554687-6.785156-3.578125-10.738282 1.984375-3.949218 6.777344-5.535156 10.738282-3.574218l16 8c3.949218 1.976562 5.550781 6.785156 3.574218 10.734375-1.40625 2.800781-4.230468 4.417969-7.167968 4.417969zm0 0" />
<path
d="m448.023438 72.007812c-4.421876 0-8-3.574218-8-8 0-8.832031-7.183594-16.007812-16.015626-16.007812-4.421874 0-8-3.574219-8-8s3.578126-8 8-8c17.65625 0 32.015626 14.359375 32.015626 32.007812 0 4.425782-3.574219 8-8 8zm0 0" />
<path
d="m424.007812 48c-4.421874 0-8-3.574219-8-8v-24c0-4.425781 3.578126-8 8-8 4.425782 0 8 3.574219 8 8v24c0 4.425781-3.574218 8-8 8zm0 0" />
<path
d="m336.007812 72c-4.421874 0-8-3.574219-8-8 0-30.871094 25.128907-56 56-56 4.425782 0 8 3.574219 8 8s-3.574218 8-8 8c-22.054687 0-40 17.945312-40 40 0 4.425781-3.574218 8-8 8zm0 0" />
<path
d="m424.007812 24h-40c-4.421874 0-8-3.574219-8-8s3.578126-8 8-8h40c4.425782 0 8 3.574219 8 8s-3.574218 8-8 8zm0 0" />
<path
d="m392.007812 144c-44.433593 0-62.414062-34.9375-63.160156-36.425781-1.976562-3.949219-.375-8.757813 3.578125-10.734375 3.933594-1.953125 8.734375-.382813 10.71875 3.542968.597657 1.160157 14.566407 27.617188 48.863281 27.617188 34.65625 0 48.703126-27.304688 48.839844-27.574219 1.976563-3.953125 6.785156-5.546875 10.738282-3.578125 3.949218 1.976563 5.550781 6.785156 3.574218 10.738282-.734375 1.476562-18.71875 36.414062-63.152344 36.414062zm0 0" />
<path
d="m336.007812 112c-4.421874 0-8-3.574219-8-8v-40.03125c0-4.425781 3.578126-8 8-8 4.425782 0 8 3.574219 8 8v40.03125c0 4.425781-3.574218 8-8 8zm0 0" />
<path
d="m448.007812 112c-4.421874 0-8-3.574219-8-8v-40.03125c0-4.425781 3.578126-8 8-8 4.425782 0 8 3.574219 8 8v40.03125c0 4.425781-3.574218 8-8 8zm0 0" />
<path
d="m304.015625 191.960938c-4.421875 0-8-3.578126-8-8 0-17.640626 14.351563-31.992188 32-31.992188 4.425781 0 8 3.574219 8 8 0 4.421875-3.574219 8-8 8-8.824219 0-16 7.167969-16 15.992188 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m360 168.015625h-31.984375c-4.421875 0-8-3.574219-8-8 0-4.421875 3.578125-8 8-8h31.984375c4.425781 0 8 3.578125 8 8 0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m304.015625 352c-4.421875 0-8-3.574219-8-8v-160.039062c0-4.425782 3.578125-8 8-8 4.425781 0 8 3.574218 8 8v160.039062c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m480 191.960938c-4.425781 0-8-3.578126-8-8 0-8.824219-7.175781-15.992188-16-15.992188-4.425781 0-8-3.578125-8-8 0-4.425781 3.574219-8 8-8 17.648438 0 32 14.351562 32 31.992188 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m456 168.015625h-48c-4.425781 0-8-3.574219-8-8 0-4.421875 3.574219-8 8-8h48c4.425781 0 8 3.578125 8 8 0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m480 352c-4.425781 0-8-3.574219-8-8v-160.039062c0-4.425782 3.574219-8 8-8s8 3.574218 8 8v160.039062c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m392.007812 167.9375c-35.289062 0-64-28.707031-64-63.976562 0-4.425782 3.578126-8 8-8 4.425782 0 8 3.574218 8 8 0 26.453124 21.527344 47.976562 48 47.976562 26.472657 0 48-21.523438 48-47.976562 0-4.425782 3.578126-8 8-8 4.425782 0 8 3.574218 8 8 0 35.269531-28.710937 63.976562-64 63.976562zm0 0" />
<path
d="m408 167.960938h-48c-4.425781 0-8-3.578126-8-8 0-4.425782 3.574219-8 8-8h48c4.425781 0 8 3.574218 8 8 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m304.015625 256h-296.015625c-4.425781 0-8-3.574219-8-8s3.574219-8 8-8h296.015625c4.425781 0 8 3.574219 8 8s-3.574219 8-8 8zm0 0" />
<path
d="m504 255.992188h-24c-4.425781 0-8-3.578126-8-8 0-4.425782 3.574219-8 8-8h24c4.425781 0 8 3.574218 8 8 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m504 255.992188c-4.425781 0-8-3.578126-8-8v-24c0-4.425782 3.574219-8 8-8s8 3.574218 8 8v24c0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m504 231.992188h-24c-4.425781 0-8-3.578126-8-8 0-4.425782 3.574219-8 8-8h24c4.425781 0 8 3.574218 8 8 0 4.421874-3.574219 8-8 8zm0 0" />
<path
d="m304.015625 232h-296.015625c-4.425781 0-8-3.574219-8-8s3.574219-8 8-8h296.015625c4.425781 0 8 3.574219 8 8s-3.574219 8-8 8zm0 0" />
<path
d="m8 256c-4.425781 0-8-3.574219-8-8v-24c0-4.425781 3.574219-8 8-8s8 3.574219 8 8v24c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m32 352c-4.425781 0-8-3.574219-8-8v-88c0-4.425781 3.574219-8 8-8s8 3.574219 8 8v88c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m440.007812 232h-96c-4.421874 0-8-3.574219-8-8s3.578126-8 8-8h96c4.425782 0 8 3.574219 8 8s-3.574218 8-8 8zm0 0" />
<path
d="m440.007812 280h-96c-4.421874 0-8-3.574219-8-8s3.578126-8 8-8h96c4.425782 0 8 3.574219 8 8s-3.574218 8-8 8zm0 0" />
<path
d="m440.007812 328h-96c-4.421874 0-8-3.574219-8-8s3.578126-8 8-8h96c4.425782 0 8 3.574219 8 8s-3.574218 8-8 8zm0 0" />
<path
d="m304.015625 288h-232.015625c-4.425781 0-8-3.574219-8-8s3.574219-8 8-8h232.015625c4.425781 0 8 3.574219 8 8s-3.574219 8-8 8zm0 0" />
<path
d="m64 352c-4.425781 0-8-3.574219-8-8v-56.007812c0-4.425782 3.574219-8 8-8s8 3.574218 8 8v56.007812c0 4.425781-3.574219 8-8 8zm0 0" />
<path
d="m64 296c-4.425781 0-8-3.574219-8-8s3.574219-8 8-8c0-4.425781 3.574219-8 8-8s8 3.574219 8 8c0 8.824219-7.175781 16-16 16zm0 0" />
<path
d="m120.097656 96.121094h-95.9375c-4.425781 0-8-3.578125-8-8 0-4.425782 3.574219-8 8-8h95.9375c4.421875 0 8 3.574218 8 8 0 4.421875-3.585937 8-8 8zm0 0" />
<path
d="m72.136719 208.113281c-4.425781 0-8-3.578125-8-8v-127.984375c0-4.425781 3.574219-8 8-8 4.421875 0 8 3.574219 8 8v127.984375c0 4.414063-3.585938 8-8 8zm0 0" />
<path
d="m112.113281 208.113281h-79.953125c-4.425781 0-8-3.578125-8-8 0-4.425781 3.574219-8 8-8h79.953125c4.421875 0 8 3.574219 8 8 0 4.421875-3.585937 8-8 8zm0 0" />
<path
d="m120.105469 168.113281c-13.234375 0-24-10.769531-24-24 0-4.425781 3.574219-8 8-8 4.421875 0 8 3.574219 8 8 0 4.414063 3.582031 8 8 8 4.414062 0 8-3.585937 8-8 0-4.425781 3.574219-8 8-8 4.421875 0 8 3.574219 8 8 0 13.230469-10.769531 24-24 24zm0 0" />
<path
d="m104.105469 144.105469c-.832031 0-1.691407-.136719-2.53125-.417969-4.183594-1.390625-6.453125-5.917969-5.054688-10.121094l15.992188-47.980468c1.390625-4.1875 5.894531-6.472657 10.121093-5.058594 4.183594 1.394531 6.457032 5.921875 5.054688 10.121094l-15.992188 47.984374c-1.128906 3.351563-4.238281 5.472657-7.589843 5.472657zm0 0" />
<path
d="m136.089844 144.105469c-3.355469 0-6.472656-2.121094-7.585938-5.472657l-15.992187-47.984374c-1.398438-4.191407.863281-8.726563 5.054687-10.121094 4.226563-1.414063 8.722656.863281 10.121094 5.058594l15.992188 47.980468c1.398437 4.195313-.863282 8.730469-5.054688 10.121094-.847656.28125-1.703125.417969-2.535156.417969zm0 0" />
<path
d="m24.160156 168.113281c-13.230468 0-24-10.769531-24-24 0-4.425781 3.574219-8 8-8 4.425782 0 8 3.574219 8 8 0 4.414063 3.582032 8 8 8 4.414063 0 8-3.585937 8-8 0-4.425781 3.574219-8 8-8 4.425782 0 8 3.574219 8 8 0 13.230469-10.769531 24-24 24zm0 0" />
<path
d="m8.160156 144.105469c-.832031 0-1.6875-.136719-2.527344-.417969-4.183593-1.390625-6.457031-5.917969-5.058593-10.121094l15.992187-47.980468c1.402344-4.1875 5.882813-6.472657 10.121094-5.058594 4.183594 1.394531 6.457031 5.921875 5.054688 10.121094l-15.988282 47.984374c-1.128906 3.351563-4.25 5.472657-7.59375 5.472657zm0 0" />
<path
d="m40.144531 144.105469c-3.351562 0-6.472656-2.121094-7.585937-5.472657l-16-47.984374c-1.398438-4.191407.867187-8.726563 5.058594-10.121094 4.230468-1.414063 8.71875.863281 10.117187 5.058594l15.992187 47.980468c1.402344 4.195313-.863281 8.730469-5.054687 10.121094-.839844.28125-1.695313.417969-2.527344.417969zm0 0" />
<path
d="m40.144531 144.105469h-31.984375c-4.425781 0-8-3.578125-8-8 0-4.425781 3.574219-8 8-8h31.984375c4.421875 0 8 3.574219 8 8 0 4.421875-3.585937 8-8 8zm0 0" />
<path
d="m136.089844 144.105469h-31.984375c-4.425781 0-8-3.578125-8-8 0-4.425781 3.574219-8 8-8h31.984375c4.421875 0 8 3.574219 8 8 0 4.421875-3.585938 8-8 8zm0 0" />
<path
d="m40.160156 152.113281c-4.417968 0-7.992187-3.570312-8-7.984375l-.015625-8.007812c-.007812-4.425782 3.558594-8.007813 7.984375-8.015625h.015625c4.414063 0 7.992188 3.566406 8 7.984375l.015625 8.007812c.007813 4.421875-3.558594 8.007813-7.984375 8.015625-.007812 0-.007812 0-.015625 0zm0 0" />
<path
d="m136.097656 152.113281c-4.417968 0-7.992187-3.570312-8-7.984375l-.019531-8.007812c-.007813-4.425782 3.5625-8.007813 7.984375-8.015625h.015625c4.417969 0 7.992187 3.566406 8 7.984375l.019531 8.007812c.007813 4.421875-3.625 8.300782-8 8.015625zm0 0" />
<path
d="m8.136719 152.113281c-4.417969 0-7.992188-3.570312-8-7.984375l-.015625-8.007812c-.007813-4.425782 3.558594-8.007813 7.984375-8.015625h.015625c4.414062 0 7.992187 3.566406 8 7.984375l.015625 8.007812c.007812 4.421875-3.5625 8.007813-7.984375 8.015625-.007813 0-.007813 0-.015625 0zm0 0" />
<path
d="m104.121094 152.113281c-4.425782 0-8-3.578125-8-8v-8.007812c0-4.425781 3.574218-8 8-8 4.421875 0 8 3.574219 8 8v8.007812c0 4.414063-3.585938 8-8 8zm0 0" />
</svg>
</div>
<div class="services-content">
<h4 class="services-title"><a href="#">Personal counselling</a></h4>
<p class="text">Lorem ipsum dolor sitam etco snsetetur sadipscing elitr sed diam nonumy.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single-services services-color-4 text-center mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.8s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.8s; animation-name: none;">
<div class="services-icon d-flex align-items-center justify-content-center">
<!-- <i class="lni lni-protection"></i> -->
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg height="55" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512.001 512.001"
style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<path style="fill:#E4EAF8;" d="M432.552,459.035H26.483C11.857,459.035,0,447.178,0,432.552V79.449
c0-14.626,11.857-26.483,26.483-26.483h406.069c14.626,0,26.483,11.857,26.483,26.483v353.103
C459.034,447.178,447.178,459.035,432.552,459.035z" />
<g>
<path style="fill:#FF5050;" d="M105.931,114.759c4.879,0,8.828-3.948,8.828-8.828c0-4.879-3.948-8.828-8.828-8.828H52.966
c-4.879,0-8.828,3.948-8.828,8.828v88.276c0,4.879,3.948,8.828,8.828,8.828h52.966c4.879,0,8.828-3.948,8.828-8.828
c0-4.879-3.948-8.828-8.828-8.828H61.793v-26.483h35.31c4.879,0,8.828-3.948,8.828-8.828c0-4.879-3.948-8.828-8.828-8.828h-35.31
v-26.483H105.931z" />
<path style="fill:#FF5050;" d="M208.552,99.035c-3.81-3.043-9.362-2.406-12.414,1.379l-28.414,35.518l-28.414-35.518
c-3.043-3.801-8.595-4.431-12.414-1.379c-3.801,3.052-4.423,8.604-1.379,12.414l30.897,38.621l-30.897,38.621
c-3.043,3.81-2.422,9.362,1.379,12.414c1.63,1.302,3.577,1.931,5.508,1.931c2.595,0,5.155-1.138,6.905-3.31l28.414-35.517
l28.414,35.517c1.75,2.182,4.31,3.31,6.905,3.31c1.931,0,3.88-0.629,5.508-1.931c3.801-3.052,4.423-8.604,1.379-12.414
l-30.897-38.621l30.897-38.621C212.974,107.638,212.353,102.087,208.552,99.035z" />
<path style="fill:#FF5050;" d="M271.629,97.104h-13.603c-10.474,0-19.577,7.457-21.638,17.741l-15.525,77.63
c-0.957,4.785,2.146,9.431,6.922,10.388c4.767,0.957,9.431-2.138,10.388-6.922l3.878-19.388h45.555l3.878,19.388
c0.836,4.199,4.526,7.095,8.647,7.095c0.569,0,1.155-0.052,1.741-0.172c4.776-0.957,7.88-5.603,6.922-10.388l-15.526-77.63
C291.207,104.561,282.103,97.104,271.629,97.104z M245.581,158.897l8.117-40.586c0.414-2.06,2.232-3.552,4.328-3.552h13.603
c2.094,0,3.914,1.492,4.328,3.552l8.117,40.586H245.581z" />
<path style="fill:#FF5050;"
d="M408.561,97.466c-3.785-1.138-7.801,0.396-9.913,3.69l-32.302,50.241l-32.301-50.241
c-2.121-3.285-6.138-4.828-9.913-3.69c-3.758,1.103-6.336,4.552-6.336,8.466v88.276c0,4.879,3.948,8.828,8.828,8.828
s8.828-3.948,8.828-8.828v-58.216l23.474,36.509c3.242,5.052,11.604,5.052,14.845,0l23.474-36.509v58.216
c0,4.879,3.948,8.828,8.828,8.828c4.879,0,8.828-3.948,8.828-8.828v-88.276C414.897,102.018,412.319,98.569,408.561,97.466z" />
<circle style="fill:#FF5050;" cx="70.621" cy="256" r="17.655" />
<circle style="fill:#FF5050;" cx="70.621" cy="326.621" r="17.655" />
<circle style="fill:#FF5050;" cx="70.621" cy="397.242" r="17.655" />
</g>
<path style="fill:#707487;" d="M264.828,264.828H123.586c-4.879,0-8.828-3.948-8.828-8.828c0-4.879,3.948-8.828,8.828-8.828h141.241
c4.879,0,8.828,3.948,8.828,8.828C273.655,260.88,269.707,264.828,264.828,264.828z" />
<path style="fill:#7F8499;" d="M158.897,335.449h-35.31c-4.879,0-8.828-3.948-8.828-8.828c0-4.879,3.948-8.828,8.828-8.828h35.31
c4.879,0,8.828,3.948,8.828,8.828C167.724,331.501,163.776,335.449,158.897,335.449z" />
<path style="fill:#707487;" d="M211.862,406.069h-88.276c-4.879,0-8.828-3.948-8.828-8.828c0-4.879,3.948-8.828,8.828-8.828h88.276
c4.879,0,8.828,3.948,8.828,8.828C220.69,402.121,216.742,406.069,211.862,406.069z" />
<path style="fill:#7F8499;" d="M388.414,335.449H194.207c-4.879,0-8.828-3.948-8.828-8.828c0-4.879,3.948-8.828,8.828-8.828h194.207
c4.879,0,8.828,3.948,8.828,8.828C397.241,331.501,393.293,335.449,388.414,335.449z" />
<path style="fill:#D5DCED;" d="M459.034,141.242L261.043,339.232l-22.635,48.505c-2.805,6.012,3.43,12.247,9.441,9.441
l48.504-22.636l162.681-162.68V141.242z" />
<polygon style="fill:#707487;"
points="353.103,317.794 282.483,317.794 264.828,335.449 335.448,335.449 " />
<path style="fill:#FFDC64;" d="M229.565,388.981l42.868-20.004c3.73-1.74,7.126-4.119,10.036-7.029l226.946-226.946
c3.447-3.447,3.447-9.037,0-12.484l-22.827-22.828c-3.447-3.447-9.037-3.447-12.484,0L247.157,326.635
c-2.91,2.91-5.289,6.306-7.029,10.036l-20.004,42.868C217.318,385.552,223.552,391.786,229.565,388.981z" />
<path style="fill:#FFC850;" d="M221.538,387.566c1.96,1.96,5.021,2.817,8.026,1.415l42.868-20.004
c3.73-1.741,7.126-4.119,10.036-7.03l206.707-206.707l-17.655-17.655L221.538,387.566z" />
<path style="fill:#FAEBC8;" d="M291.31,353.104L256,317.794l-8.843,8.843c-2.91,2.91-5.289,6.306-7.029,10.036l-20.004,42.867
c-2.805,6.012,3.43,12.246,9.441,9.441l42.867-20.004c3.73-1.74,7.126-4.119,10.036-7.03L291.31,353.104z" />
<path style="fill:#F5DCB4;" d="M273.655,335.449l-52.117,52.117c1.96,1.96,5.021,2.817,8.026,1.415l42.868-20.004
c3.73-1.74,7.126-4.119,10.036-7.03l8.842-8.842L273.655,335.449z" />
<path style="fill:#FAEBC8;" d="M486.589,99.689c-3.448-3.448-9.036-3.448-12.484,0l-20.241,20.241l35.31,35.31L509.415,135
c3.448-3.448,3.448-9.037,0-12.484L486.589,99.689z" />
<path style="fill:#F5DCB4;" d="M509.415,122.515l-11.413-11.413l-26.483,26.483l17.655,17.655L509.415,135
C512.862,131.552,512.862,125.962,509.415,122.515z" />
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
</div>
<div class="services-content">
<h4 class="services-title"><a href="#">Regular Exams</a></h4>
<p class="text">Lorem ipsum dolor sitam etco snsetetur sadipscing elitr sed diam nonumy.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="about" class="about-area pt-70 pb-120">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="about-image mt-50 wow fadeInLeftBig" data-wow-duration="1.3s" data-wow-delay="0.5s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.5s; animation-name: none;">
<div class="about-shape"></div>
<img class="app" src="assets/images/about-app.png" alt="app">
</div>
</div>
<div class="col-lg-6">
<div class="about-content mt-50 wow fadeInRightBig" data-wow-duration="1.3s" data-wow-delay="0.5s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.5s; animation-name: none;">
<div class="section-title">
<h3 class="title">Comes With All You Need.</h3>
<p class="text">Alii nusquam cu duo, vim eu consulatu percipitur, meis doorcomprehen sam at vis. Vel ut
dignissim signiferumq Alii nusquam cuduo, vim eusde consulatu percipitur, meis dolor comprehensam at
vij. Alii nusquam cu duo, vim eu consulatu percipitur, meis doorcomprehen sam at vis. Vel ut dignissim
signiferumq nusquam.</p>
</div>
<a href="#" class="main-btn">Get The App</a>
</div>
</div>
</div>
</div>
</section> -->
<!-- <section id="features" class="features-area pt-110">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<div class="section-title text-center pb-25">
<h3 class="title">Awesome Key Features.</h3>
<p class="text">Alii nusquam cu duo, vim eu consulatu percipitur, meis dolor comprehensam at vis. Vel ut
percipitur dignissim signiferumque.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="features-items">
<div class="single-features features-color-1 d-sm-flex mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.2s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.2s; animation-name: none;">
<div class="features-icon d-flex justify-content-center align-items-center">
<i class="lni lni-laptop-phone"></i>
</div>
<div class="features-content media-body">
<h4 class="features-title">Fully Responsive</h4>
<p class="text">Lorem ipsum dolor sit ametco snsetetur sadipscing elitr sed diam nonumy eirmod.</p>
</div>
</div>
<div class="single-features features-color-2 d-sm-flex mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.4s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.4s; animation-name: none;">
<div class="features-icon d-flex justify-content-center align-items-center">
<i class="lni lni-leaf"></i>
</div>
<div class="features-content media-body">
<h4 class="features-title">Refreshing Design</h4>
<p class="text">Lorem ipsum dolor sit ametco snsetetur sadipscing elitr sed diam nonumy eirmod.</p>
</div>
</div>
<div class="single-features features-color-3 d-sm-flex mt-30 wow fadeInUpBig" data-wow-duration="1.3s"
data-wow-delay="0.6s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.6s; animation-name: none;">
<div class="features-icon d-flex justify-content-center align-items-center">
<i class="lni lni-bootstrap"></i>
</div>
<div class="features-content media-body">
<h4 class="features-title">Bootstrap 4</h4>
<p class="text">Lorem ipsum dolor sit ametco snsetetur sadipscing elitr sed diam nonumy eirmod.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="features-image wow fadeInRightBig" data-wow-duration="1.3s" data-wow-delay="0.5s"
style="visibility: hidden; animation-duration: 1.3s; animation-delay: 0.5s; animation-name: none;">
<img class="image" src="assets/images/features-app.png" alt="App">
<div class="features-shape-1"></div>
<div class="features-shape-2">
<svg xmlns="http://www.w3.org/2000/svg" width="599.709" height="549.102" viewBox="0 0 599.709 549.102"
class="svg replaced-svg">
<path id="Polygon_7" data-name="Polygon 7"
d="M199.061,66.775a61,61,0,0,1,98.266,0L424.9,240.16c29.639,40.281.877,97.152-49.133,97.152H120.617c-50.01,0-78.772-56.871-49.133-97.152Z"
transform="matrix(-0.848, -0.53, 0.53, -0.848, 420.961, 549.102)" fill="#0898e7"></path>
</svg>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- <section id="screenshots" class="screenshots-area pt-110 pb-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<div class="section-title text-center pb-45">
<h3 class="title">App Screenshots.</h3>
<p class="text">Alii nusquam cu duo, vim eu consulatu percipitur, meis dolor comprehensam at vis. Vel ut
percipitur dignissim signiferumque.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="screenshot-slider">
<div
class="swiper-container swiper-container-coverflow swiper-container-3d swiper-container-initialized swiper-container-horizontal">
<div class="swiper-wrapper" style="transition-duration: 0ms; transform: translate3d(-840px, 0px, 0px);">
<div class="swiper-slide swiper-slide-duplicate swiper-slide-duplicate-active"
data-swiper-slide-index="0"
style="transition-duration: 0ms; transform: translate3d(160px, 0px, -600px) rotateX(0deg) rotateY(0deg); z-index: -3;">
<div class="slider-image">
<img src="assets/images/screenshot-1.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide swiper-slide-duplicate swiper-slide-duplicate-next" data-swiper-slide-index="1"
style="transition-duration: 0ms; transform: translate3d(120px, 0px, -450px) rotateX(0deg) rotateY(0deg); z-index: -2;">
<div class="slider-image">
<img src="assets/images/screenshot-2.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide swiper-slide-duplicate" data-swiper-slide-index="2"
style="transition-duration: 0ms; transform: translate3d(80px, 0px, -300px) rotateX(0deg) rotateY(0deg); z-index: -1;">
<div class="slider-image">
<img src="assets/images/screenshot-3.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide swiper-slide-duplicate swiper-slide-prev" data-swiper-slide-index="3"
style="transition-duration: 0ms; transform: translate3d(40px, 0px, -150px) rotateX(0deg) rotateY(0deg); z-index: 0;">
<div class="slider-image">
<img src="assets/images/screenshot-4.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide swiper-slide-active" data-swiper-slide-index="0"
style="transition-duration: 0ms; transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg); z-index: 1;">
<div class="slider-image">
<img src="assets/images/screenshot-1.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide swiper-slide-next" data-swiper-slide-index="1"
style="transition-duration: 0ms; transform: translate3d(-40px, 0px, -150px) rotateX(0deg) rotateY(0deg); z-index: 0;">
<div class="slider-image">
<img src="assets/images/screenshot-2.jpg" alt="screenshot">
</div>
</div>
<div class="swiper-slide" data-swiper-slide-index="2"
style="transition-duration: 0ms; transform: translate3d(-80px, 0px, -300px) rotateX(0deg) rotateY(0deg); z-index: -1;">
<div class="slider-image">
<img src="assets/images/screenshot-3.jpg" alt="screenshot">
</div>
</div>