-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1971 lines (1852 loc) · 140 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>تبیان</title>
<link rel="stylesheet" type="text/css" href="css/style1.css"/>
<link rel="stylesheet" href="./css/video-single-light.css"/>
<link rel="stylesheet" href="./css/video-single-dark.css"/>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/b4Megamenu.css">
<link rel="stylesheet" type="text/css" href="css/search.css">
<link rel="stylesheet" href="css/responsive.css" media="(min-width:991px)">
<link href="./css/materialdesignicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/hamburger.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/owl.carousel.min.css"/>
<link rel="stylesheet" type="text/css" href="css/owl.theme.default.min.css"/>
<link rel="stylesheet" href="css/style.css">
</head>
<body >
<div class="container-fluid main-layout">
<nav class="bottom_nav d-lg-none mx-auto font-20">
<span type="" class="nav__link bottom_navigation_menu" data-toggle="modal" data-target="#modalCart">
<i class="mdi mdi-menu nav__icon mdi-24px"></i>
</span>
<span class="nav__link">
<i class="mdi mdi-play-outline nav__icon mdi-24px"></i>
</span>
<span class="nav__link nav__link__active">
<i class="mdi mdi-home-outline nav__icon mdi-24px"></i>
</span>
<span class="nav__link bottom_navigation_search">
<i class="mdi mdi-magnify nav__icon mdi-24px"></i>
</span>
<span class="nav__link">
<i class="mdi mdi-account-circle-outline nav__icon mdi-24px"></i>
</span>
</nav>
<div class="modal fade modal-menu d-lg-none" id="modalCart" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl modal-dialog-scrollable" role="dialog">
<div class="modal-content border-0 shadow">
<!--Header-->
<div class="modal-header border-0">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!--Body-->
<div class="modal-body">
<div class="container">
<div class="row">
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
<a href="#" class="col-md-2 col-sm-3 col-4 d-flex flex-column justify-content-center align-items-center flex-nowrap px-2 mb-4 cursor-pointer">
<div class="svg-container p-3 shadow border-radius-10">
<img src="img/Mask%20Group%2047.svg" alt="image" width="50" height="50">
</div>
<span class="mt-2 text-center main-color font-18 logo-info" >همسان گزینی</span>
</a>
</div>
</div>
</div>
<div class="modal-footer border-0">
<div class="container-fluid">
<div class="row">
<div class="col-6">
<i class="mdi mdi-square-edit-outline ml-2" aria-hidden="true"></i>
<span>بازخورد</span>
</div>
<div class="col-6 text-left">
<i class="mdi mdi-cog ml-2" aria-hidden="true"></i>
<span>تنظیمات</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row pt-3 pb-0 px-xl-5 px-lg-4 px-2">
<div class="col-12 mt-2 shadow main-container">
<!-- header-->
<div class="row">
<div class="col-12 d-flex flex-row flex-wrap align-items-center p-2 main-background-color header-container">
<div class="col-lg-2 col-6 d-flex flex-row justify-content-start align-items-center order-1 logoHeader">
<picture>
<source media="(max-width:576px)" srcset="./img/tebyan-logo-header.png">
<img src="./img/tebyan-logo-header.png" class="img-fluid pr-5 pr-lg-0">
</picture>
</div>
<div id="search-box" class="col-lg-4 d-none d-lg-flex flex-lg-row align-items-center rounded-pill py-1 my-2 order-lg-2 order-3 pl-lg-0">
<input type="text" class="d-flex flex-grow-1 border-0 text-white" placeholder="هر چیز که در جستن آنی ، آنی..." />
<i class="fa fa-search text-white px-2 font-18"></i>
</div>
<div class="col-lg-4 col-6 d-flex flex-grow-1 flex-row justify-content-end align-items-center order-lg-3 order-2 px-0 px-sm-3 mr-auto">
<div class="dropdown ml-sm-3 ml-2 cursor-pointer calendar order-2 order-sm-1">
<a class="dropdown-toggle" data-toggle="dropdown">
<picture>
<source media="(max-width:576px)" srcset="./img/icons8-calendar-50-2.png">
<img src="./img/icons8-calendar-50-2.png" width="40" height="40">
</picture>
</a>
<div class="dropdown-menu shadow border-0 p-3">
<div class="row text-muted">
<div class="col-12 d-flex flex-row flex-wrap flex-start mb-2">
<span>اوقات شرعی تهران-یکشنبه 4 خرداد 98</span>
</div>
<div class="col-12 d-flex flex-row flex-wrap flex-start justify-content-between align-items-baseline mb-2">
<span class="ml-2"><i class="mdi mdi-clock-outline"></i></span>
<span class="ml-auto">غروب آفتاب : 17:30</span>
<span class="mr-auto" >طلوع آفتاب : 17:30</span>
</div>
<div class="col-12 d-flex flex-row flex-wrap flex-start align-items-baseline event-container">
<span class="ml-2"><i class="mdi mdi-calendar-month"></i></span>
<span class="event-title"></span>
</div>
<div class="col-12 d-flex flex-row flex-wrap flex-start justify-content-between align-items-baseline font-weight-bold">
<p>دوشنبه 15 آبان 98</p>
<p class="font-25">12:25</p>
</div>
</div>
</div>
</div>
<div class="dropdown ml-sm-3 ml-2 cursor-pointer weather order-3 order-sm-2">
<a class="dropdown-toggle" data-toggle="dropdown">
<picture>
<source media="(max-width:576px)" srcset="./img/abr.png">
<img src="./img/abr.png" width="40" height="40">
</picture>
</a>
<div class="dropdown-menu shadow border-0 p-2">
<div class="d-flex flex-column align-items-center justify-content-center">
<div class="col-12 d-flex flex-row justify-content-center align-items-center p-0">
<div class="col-6 text-right pl-0">
<div class="d-flex flex-column align-items-start justify-content-center">
<div class="d-flex flex-row justify-content-start align-items-baseline">
<span><i class="fa fa-circle ml-2 secondary-color font-12"></i></span>
<span class="text-muted font-10">استفاده از موقعیت مکانی</span>
</div>
<div class="d-flex flex-row justify-content-start align-items-baseline main-color my-location">
<span><i class="fa fa-chevron-down ml-2 font-weight-bold font-12"></i></span>
</div>
<span class="text-muted font-10 today-temp-desc"></span>
</div>
</div>
<div class="col-6 d-flex flex-row justify-content-center align-items-center today-temp-logo"></div>
</div>
<div class="col-12 d-flex flex-row justify-content-center align-items-center p-0 my-2">
<div class="col-6 d-flex flex-row justify-content-center align-items-start today-temp">
<span class="font-40 main-color">°</span>
<span class="main-color font-12 degree-sign">سانتی گراد</span>
</div>
<div class="col-6 flex-row justify-content-between align-items-center px-0 px-sm-3">
<div class="col-12 d-flex flex-row justify-content-between align-items-center">
<div class="d-flex flex-column justify-content-center align-items-center">
<span><i class="mdi mdi-umbrella-outline text-danger umbrella"></i></span>
</div>
<div class="d-flex flex-column justify-content-center align-items-center">
<span><i class="mdi mdi-hand-water water"></i></span>
</div>
<div class="d-flex flex-column justify-content-center align-items-center">
<span><i class="mdi mdi-weather-windy wind"></i></span>
</div>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-center px-3 mb-2 font-weight-bold main-color font-12">
<span>امروز</span>
<span>هفت روز آینده</span>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-center px-3 weekdays-container"></div>
</div>
</div>
</div>
<picture class="order-1 order-sm-3 ml-1 ml-md-3 d-sm-block d-none">
<source media="(max-width:576px)" srcset="./img/face1.png">
<img src="./img/face1.png" alt="image" width="45" height="45">
</picture>
<span class="text-white d-sm-block d-none ml-md-3 order-1 order-sm-3 font-14">محد امین جوکار</span>
<span class="mr-3 d-sm-block d-none order-1 order-sm-3"><i class="mdi mdi-dots-vertical mdi-18px text-white"></i></span>
</div>
</div>
</div>
<!-- header-->
<!-- under-header-->
<div class="row">
<div class="col-12 shadow secondary-background-color under-header"></div>
</div>
<!-- under-header-->
<!-- menu-->
<div class="banner-area d-lg-block d-none">
<div class="row">
<div class="col-12 p-0">
<nav class="navbar navbar-expand-lg navbar-light bg-white p-x-3 py-0 m-0 align-items-baseline shadow">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar"
aria-controls="navbars" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbar">
<ul class="navbar-nav d-flex justify-content-start w-100 flex-row-reverse flex-wrap align-items-center">
<li class="nav-item dropdown menu-area p-0">
<a class="nav-link py-3 px-2 dropdown-toggle m-0 text-right" href="#" id="mega-one"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="mdi mdi-menu ml-2 text-white main-background-color d-flex align-items-center"></i>
</a>
<div class="dropdown-menu mega-area border-0 mt-0"
aria-labelledby="mega-one">
<div class="row">
<div class="col-12 d-flex flex-row justify-content-start align-items-start flex-row-reverse ">
<div class="col-12 d-flex flex-column justify-content-start align-items-start text-right">
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-row justify-content-between align-items-end">
<div class="w-100 mb-3 mt-3 d-flex flex-row justify-content-end align-items-baseline secondary-color title">
<a href="#">تبیان آنلاین</a>
<i class="mdi mdi-feature-search-outline ml-2"></i>
</div>
</div>
<div class="col-2 d-flex flex-row justify-content-between align-items-end">
<div class="w-100 mb-3 mt-3 d-flex flex-row justify-content-end align-items-baseline secondary-color title">
<a href="#">دیدنی ، شنیدنی</a>
<i class="mdi mdi-feature-search-outline ml-2"></i>
</div>
</div>
<div class="col-2 d-flex flex-row justify-content-between align-items-end">
<div class="w-100 mb-3 mt-3 d-flex flex-row justify-content-end align-items-baseline secondary-color title">
<a href="#">سرویس ها و محصولات</a>
<i class="mdi mdi-feature-search-outline ml-2"></i>
</div>
</div>
<div class="col-2 d-flex flex-row justify-content-between align-items-end">
<div class="w-100 mb-3 mt-3 d-flex flex-row justify-content-end align-items-baseline secondary-color title">
</div>
</div>
<div class="col-2 d-flex flex-row justify-content-between align-items-end">
<div class="w-100 mb-3 mt-3 d-flex flex-row justify-content-end align-items-baseline secondary-color title">
<a href="#">تیم تبیان</a>
<i class="mdi mdi-feature-search-outline ml-2"></i>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">نشانک</a>
<i class="mdi mdi-bookmark-minus-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">فرهنگ</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">هنر</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">آیین دینی</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">ویدیو</a>
<i class="mdi mdi-filmstrip ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">ویدیو و تحلیل های سیاسی</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">انیمیشن</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">پرسان</a>
<i class="mdi mdi-comment-question ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">پرسش</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">پاسخ</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">تجربه</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">همدم</a>
<i class="mdi mdi-heart-multiple-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<span class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">ازدواج</span>
<span class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">زندگی</span>
<span class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">خانواده</span>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">روابط عمومی</a>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">جیب</a>
<i class="mdi mdi-wallet-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مدیریت اقتتصادی خانواده</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">نبض بازار</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">صوت</a>
<i class="mdi mdi-microphone ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مداحی</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">پادکست</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">سخنرانی</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">رژیم آنلاین</a>
<i class="mdi mdi-scale-bathroom ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">سلامتی</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">رژیم</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">تندرستی</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">جشنواره دانش آموزی</a>
<i class="mdi mdi-certificate-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">پروژه</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">خلاقیت</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مسابقه</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">درباره ما</a>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">آسمانه</a>
<i class="mdi mdi-image-auto-adjust ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">دین و زندگی</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">دهه اول محرم</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">عاشورا</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">آلبوم تصاویر</a>
<i class="mdi mdi-image-album ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">گالری تصاویر</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">اخبار تصویری</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">دیتا سنتر</a>
<i class="mdi mdi-server ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">سرور</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">هاست</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">فضای ابری</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">ذکر آنلاین</a>
<i class="mdi mdi-head-plus-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">قرآن</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">تلاوت</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">تدبر</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">تماس با ما</a>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">روایت روز</a>
<i class="mdi mdi-newspaper-variant-multiple-outline ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">خبر</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">زندگی</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">ویدیو</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">اطلاع نگاشت</a>
<i class="mdi mdi-chart-pie ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">آمار و اطلاعات تحلیلی به روایت تصویر</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">کتابخانه</a>
<i class="mdi mdi-library-shelves ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">کتاب</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مطالعه</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">ارتباطات هوشمند تبیان</a>
</div>
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">سلامت</a>
<i class="mdi mdi-medical-bag ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">بهداشت</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">تغذیه</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">رژیم</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">کرونا</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">مجازیست</a>
<i class="mdi mdi-atom-variant ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">محتوا</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">پلتفرم</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">رسانه</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
</div>
<div class="col-12 d-flex flex-row justify-content-between align-items-start flex-row-reverse px-0 mb-3">
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">خواندنی ها</a>
<i class="mdi mdi-book-open-page-variant ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مقاله</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">یادداشت</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">گزارش</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
<div class="w-100 d-flex flex-row justify-content-end align-items-baseline text-right sub-title">
<a href="#" class="font-weight-bold">میم</a>
<i class="mdi mdi-teach ml-2"></i>
</div>
<div class="w-100 d-flex flex-row flex-wrap justify-content-start flex-row-reverse flex-xl-nowrap menu-pill-container">
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مادر</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">معلم</a>
<a href="#" class="badge rounded-pill p-2 ml-1 my-1 menu-pill-backgroud">مربی</a>
</div>
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
<div class="col-2 d-flex flex-column justify-content-between align-items-end pr-4 pl-0 main-color">
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item d-flex flex-row justify-content-end">
<div class="d-inline-block text-muted mx-4 h-100 menu-divider">|</div>
<span class="menu-fast-access font-weight-bold">دسترسی سریع</span>
</li>
<li class="nav-item d-flex justify-content-center align-items-center"><i class="ml-3 mr-0 mdi mdi-trending-up"></i></li>
<li class="nav-item d-flex justify-content-center align-items-center"><a href="#" class="p-2 ml-2 nav-item-link font-12">مهاجرت<span class="ml-1 hashtag">#</span></a></li>
<li class="nav-item d-flex justify-content-center align-items-center"><a href="#" class="p-2 ml-2 nav-item-link font-12">دهه اول محرم<span class="ml-1 hashtag">#</span></a></li>
<li class="nav-item d-flex justify-content-center align-items-center"><a href="#" class="p-2 ml-2 nav-item-link font-12">عاشورا<span class="ml-1 hashtag">#</span></a></li>
<li class="nav-item d-flex justify-content-center align-items-center"><a href="#" class="p-2 ml-2 nav-item-link font-12">مارک_ویلموتس<span class="ml-1 hashtag">#</span></a></li>
<li class="nav-item d-flex justify-content-center align-items-center"><a href="#" class="p-2 ml-2 nav-item-link font-12">ملت_امام_حسین<span class="ml-1 hashtag">#</span></a></li>
<li class="nav-item d-flex justify-content-center align-items-end mr-auto ml-2">
<a href="#" class="p-2 nav-item-link font-18 d-flex align-items-center">
<span class="font-12">آگهی های بازار</span>
<i class="mdi mdi-storefront-outline ml-2 d-flex align-items-center justify-content-center font-14"></i>
</a>
<a href="#" class="p-2 nav-item-link font-18 d-flex align-items-center ml-2">
<span class="font-12">تبیان قدیم</span>
<i class="mdi mdi-page-previous-outline ml-2 d-flex align-items-center justify-content-center font-14"></i>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<!-- menu-->
<!-- under-menu-section-->
<div class="row">
<div id="video-threater" class="col-12"></div>
</div>
<div class="row mb-3 mt-3 px-2 px-lg-3">
<div class="col-md-2 sidebar px-0">
<ul class="home-list pt-4">
<li>
<a href="#" class="active">
<span
class="mdi mdi-home-outline pl-md-2 pl-sm-1 pl-0"
></span>
خانه
</a>
</li>
<li>
<a href="#">
<span class="mdi mdi-equalizer pl-md-2 pl-sm-1 pl-0"></span>
موضوعات داغ
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-bookmark-check-outline pl-md-2 pl-sm-1 pl-0"
></span>
اشتراکات من
</a>
</li>
</ul>
<h5 class="mr-3 mr-sm-4 mt-3 font-weight-bold">آرشیو</h5>
<ul class="archive-list">
<li>
<a href="#">
<span class="mdi mdi-history pl-md-2 pl-sm-1 pl-0"></span>
تاریخچه
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-clock-outline pl-md-2 pl-sm-1 pl-0"
></span>
انتظار مشاهده
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-heart-box-outline pl-md-2 pl-sm-1 pl-0"
></span>
علاقه مندی ها
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-dots-vertical pl-md-2 pl-sm-1 pl-0"
></span>
بیشتر
</a>
</li>
</ul>
<h5 class="mr-2 mr-sm-3 mt-3 font-weight-bold">
دسته بندی محتوایی
</h5>
<ul class="sections-list">
<li>
<a href="#">
<span
class="mdi mdi-animation-play pl-md-2 pl-sm-1 pl-0"
></span>
انیمیشن و کارتون
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-gamepad-circle-left pl-md-2 pl-sm-1 pl-0"
></span>
طنز و تفریحی
</a>
</li>
<li>
<a href="#">
<span class="mdi mdi-soccer pl-md-2 pl-sm-1 pl-0"></span>
ورزش و گیم
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-book-open-page-variant pl-md-2 pl-sm-1 pl-0"
></span>
آموزشی،هنری
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-television-classic pl-md-2 pl-sm-1 pl-0"
></span>
فیلم و سریال
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-moon-waning-crescent pl-md-2 pl-sm-1 pl-0"
></span>
ویژه های مذهبی
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-newspaper-variant-outline pl-md-2 pl-sm-1 pl-0"
></span>
خبری،سیاسی
</a>
</li>
<li>
<a href="#">
<span class="mdi mdi-react pl-md-2 pl-sm-1 pl-0"></span>
علم و تکنولوژی
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-wallet-travel pl-md-2 pl-sm-1 pl-0"
></span>
مستند،گردشگری
</a>
</li>
<li>
<a href="#">
<span class="mdi mdi-clover pl-md-2 pl-sm-1 pl-0"></span>
خانواده و ازدواج
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-human-child pl-md-2 pl-sm-1 pl-0"
></span>
کودک و نوجوان
</a>
</li>
<li>
<a href="#">
<span
class="mdi mdi-medical-bag pl-md-2 pl-sm-1 pl-0"
></span>
بهداشت و سلامت
</a>
</li>
</ul>
</div>
<!-- main -->
<div class="col-12 col-sm-12 col-lg-10 pl-lg-0 px-0 px-sm-2 pr-lg-3 mainSection" >
<!-- <div class="row">
<div class="col-12">
<div class="advertise w-100">
<h1 class="main-color py-4 mb-0">تبلیغات</h1>
</div>
</div>
</div> -->
<!-- section1 -->
<div class="row" id="slider_section">
<div class="col-12 mb-3">
<div class="slider-section pt-1 px-2 px-sm-3 d-flex flex-column">
<div class="col-12 d-flex justify-content-between">
<h4 class="main-color title my-sm-3 my-2">پیشنهاد سردبیر</h4>
</div>
<div class="d-flex flex-column flex-xl-row">
<div class="col-12 col-xl-8 px-0 videoContainer" id="default-palyer" >
<div class="myplayer video video-container pb-0 over-flow-hidden">
<video
src="./sample2.mp4" id="player"
width="100%"
height="100%"
poster="./img/nature-photos-2.jpg"
style="object-fit:cover"
>
</video>
</div>
<div class="d-flex justify-content-between align-items-center" id="chileElm">
<div class="side-left-section-title">
<h5 class="mt-3 mb-2">هنر گلدوزی در خانه های ایران</h5>
</div>
<div class="side-left-section-footer d-flex justify-content-between">
<span class="text-muted">دو روز پیش</span>
</div>
</div>
</div>
<div class="col-12 col-xl-4 px-0 sideVideo">
<div class="header-slider mt-3 mt-sm-0">
<div class="d-flex d-xl-block flex-wrap justify-content-between align-items-center px-0 pl-md-0 pr-md-3 my-sm-3 mt-xl-0">
<div class="side-left-section col-12 col-sm-6 col-xl-12 px-0 pl-sm-1 pr-sm-0 px-xl-0 d-xl-flex">
<div class="img-container1">
<img src="./img/tab-image.png" class="img-fluid" alt=""/>
</div>
<div class="side-left-section-title d-md-flex flex-md-column align-items-md-start justify-content-md-around mr-md-2 pb-1">
<span class="mt-3 mt-xl-0"> هنر گلدوزی در خانه های ایران گلدوزی به زبان ساده </span>
<small class="d-none d-xl-block">هنر گلدوزی در خانه های ایرانی</small>
<div class="side-left-section-footer d-flex justify-content-between w-100">
<small class="text-muted">مدت زمان:۱۰:۲۳</small>
</div>
</div>
</div>
<div class="side-left-section col-12 col-sm-6 col-xl-12 px-0 pr-sm-1 pl-sm-0 px-xl-0 d-xl-flex mt-3 mt-sm-0 mt-xl-3">
<div class="img-container1">
<img src="./img/tab-image.png" class="img-fluid" alt=""/>
</div>
<div class="side-left-section-title d-md-flex flex-md-column align-items-md-start justify-content-md-around mr-md-2 pb-1">
<span class="mt-3 mt-xl-0"> هنر گلدوزی در خانه های ایران گلدوزی به زبان ساده </span>
<small class="d-none d-xl-block">هنر گلدوزی در خانه های ایرانی</small>
<div class="side-left-section-footer d-flex justify-content-between w-100">
<small class="text-muted">مدت زمان:۱۰:۲۳</small>
</div>
</div>
</div>
<div class="side-left-section col-12 col-sm-6 col-xl-12 px-0 pl-sm-1 pr-sm-0 px-xl-0 d-xl-flex mt-3">
<div class="img-container1">
<img src="./img/tab-image.png" class="img-fluid" alt=""/>
</div>
<div class="side-left-section-title d-md-flex flex-md-column align-items-md-start justify-content-md-around mr-md-2 pb-1">
<span class="mt-3 mt-xl-0"> هنر گلدوزی در خانه های ایران گلدوزی به زبان ساده </span>
<small class="d-none d-xl-block">هنر گلدوزی در خانه های ایرانی</small>
<div class="side-left-section-footer d-flex justify-content-between w-100">
<small class="text-muted">مدت زمان:۱۰:۲۳</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- slider -->
<div class="row">
<div class="col-md-12 mb-3">
<div class="slider-section py-3 px-2 px-sm-3 ">
<div class="header-slider d-flex justify-content-between align-items-center mb-3">
<h4 class="main-color title mt-3">مطالب برگزیده</h4>
<div class="controls">
<button class="right-control ml-1" id="next">
<span class="mdi mdi-chevron-right"></span>
</button>
<button class="left-control mr-1" id="pervious">
<span class="mdi mdi-chevron-left" ></span>
</button>
</div>
</div>
<div class="slides d-flex owl-carousel" id="slider">
<div class="side-left-section">
<div class="img-container">
<img src="./img/tab-image.png" class="img-fluid" alt="">
</div>
<div class="side-left-section-title">
<h5 class="mt-3">هنر گلدوزی در خانه های ایران</h5>
</div>
<div class="side-left-section-footer d-flex justify-content-between">
<span class="text-muted">دو روز پیش</span>
<span class="text-muted">مدت زمان:۱۰:۲۳</span>
</div>
</div>
<div class="side-left-section">
<div class="img-container">
<img src="./img/tab-image.png" class="img-fluid" alt="">
</div>
<div class="side-left-section-title">
<h5 class="mt-3">هنر گلدوزی در خانه های ایران</h5>
</div>
<div class="side-left-section-footer d-flex justify-content-between">
<span class="text-muted">دو روز پیش</span>
<span class="text-muted">مدت زمان:۱۰:۲۳</span>
</div>
</div>
<div class="side-left-section">
<div class="img-container">
<img src="./img/tab-image.png" class="img-fluid" alt="">
</div>
<div class="side-left-section-title">
<h5 class="mt-3">هنر گلدوزی در خانه های ایران</h5>
</div>
<div class="side-left-section-footer d-flex justify-content-between">
<span class="text-muted">دو روز پیش</span>
<span class="text-muted">مدت زمان:۱۰:۲۳</span>
</div>
</div>
<div class="side-left-section">
<div class="img-container">